diff --git a/README.md b/README.md index 469145b7..e2750f0e 100644 --- a/README.md +++ b/README.md @@ -2,9 +2,10 @@ Mapping tool for [*EVE ONLINE*](https://www.eveonline.com) - Project [https://www.pathfinder.exodus4d.de](https://www.pathfinder.exodus4d.de) -- Community [google +](https://plus.google.com/u/0/b/110257318165279088853/110257318165279088853) +- Official Forum post [https://forums.eveonline.com](https://forums.eveonline.com/default.aspx?g=posts&m=6021776#post6021776) - Screenshots [imgur.com](http://imgur.com/a/k2aVa) -- Media [youtube.com](https://www.youtube.com/channel/UC7HU7XEoMbqRwqxDTbMjSPg) +- Video [youtube.com](https://www.youtube.com/channel/UC7HU7XEoMbqRwqxDTbMjSPg) +- Community [google +](https://plus.google.com/u/0/b/110257318165279088853/110257318165279088853) - Licence [MIT](http://opensource.org/licenses/MIT) ##### IMPORTANT Information @@ -23,10 +24,6 @@ If you are looking for installation help, please check the [wiki](https://github |-- cron.ini --> config cronjobs |-- pathfinder.ini --> config pathfinder |-- routes.ini --> config routes - |-- (0755) build_js --> JS build folder and source maps (minified, uglified) - |-- app --> "PATHFINDER" core files - |-- lib --> 3rd partie extension/library - |-- build.txt --> generated build summary |-- (0755) js --> JS source files (raw) |-- app --> "PASTHFINDER" core files (not used for production ) |-- lib --> 3rd partie extension/library (not used for production ) @@ -39,7 +36,7 @@ If you are looking for installation help, please check the [wiki](https://github |-- css --> CSS dist/build folder (minified) |-- fonts --> (icon)-Fonts |-- img --> images - |-- js --> JS dist/build folder + |-- js --> JS dist/build folder and source maps (minified, uglified) |-- templates --> templates |-- sass --> SCSS source (not used for production ) |-- ... diff --git a/app/main/controller/api/signature.php b/app/main/controller/api/signature.php index 565f3efb..bd43f344 100644 --- a/app/main/controller/api/signature.php +++ b/app/main/controller/api/signature.php @@ -77,11 +77,15 @@ class Signature extends \Controller\AccessController{ $user = $this->_getUser(); if($user){ - $activeCharacter = $user->getActiveUserCharacter(); + $activeUserCharacter = $user->getActiveUserCharacter(); + $activeCharacter = $activeUserCharacter->getCharacter(); $system = Model\BasicModel::getNew('SystemModel'); // update/add all submitted signatures foreach($signatureData as $data){ + // this key should not be saved (it is an obj) + unset($data['updated']); + $system->getById( (int)$data['systemId']); if(!$system->dry()){ @@ -99,12 +103,11 @@ class Signature extends \Controller\AccessController{ $signature = Model\BasicModel::getNew('SystemSignatureModel'); } - $signature->updatedCharacterId = $activeCharacter->getCharacter(); - if($signature->dry()){ // new signature $signature->systemId = $system; - $signature->createdCharacterId = $activeCharacter->getCharacter(); + $signature->updatedCharacterId = $activeCharacter; + $signature->createdCharacterId = $activeCharacter; $signature->setData($data); }else{ // update signature @@ -126,10 +129,13 @@ class Signature extends \Controller\AccessController{ }else{ // update complete signature (signature reader dialog) + // systemId should not be updated + unset( $data['systemId'] ); + // description should not be updated unset( $data['description'] ); - // wormhole typeID canīt figured out/saved by the sig reader dialog + // wormhole typeID can not figured out/saved by the sig reader dialog if($data['groupId'] == 5){ unset( $data['typeId'] ); } @@ -137,10 +143,13 @@ class Signature extends \Controller\AccessController{ $newData = $data; } - $signature->setData($newData); + if( $signature->hasChanged($newData) ){ + // Character should only be changed if something else has changed + $signature->updatedCharacterId = $activeCharacter; + $signature->setData($newData); + } } - $signature->save(); // get a fresh signature object with the new data. This is a bad work around! diff --git a/app/main/data/mapper/ccpsystemsmapper.php b/app/main/data/mapper/ccpsystemsmapper.php index e77efadb..b407892a 100644 --- a/app/main/data/mapper/ccpsystemsmapper.php +++ b/app/main/data/mapper/ccpsystemsmapper.php @@ -68,17 +68,36 @@ class CcpSystemsMapper extends \RecursiveArrayIterator { $iterator['security'] == 8 || $iterator['security'] == 9 ){ + // k-space system $trueSec = round($iterator['trueSec'], 3); if($trueSec <= 0){ $security = '0.0'; - }elseif($trueSec < 0.5){ - $security = 'L'; }else{ - $security = 'H'; + // more precise rounding required for "low sec" and "high sec" distinction + $trueSec = round($trueSec, 1); + + if($trueSec < 0.5){ + $security = 'L'; + }else{ + $security = 'H'; + } } - }else{ + }elseif( + $iterator['security'] == 1 || + $iterator['security'] == 2 || + $iterator['security'] == 3 || + $iterator['security'] == 4 || + $iterator['security'] == 5 || + $iterator['security'] == 6 + ){ + // standard wormhole system $security = 'C' . $iterator['security']; + }elseif( + $iterator['security'] == 13 + ){ + // shattered wormhole system + $security = 'SH'; } return $security; diff --git a/app/main/model/systemmodel.php b/app/main/model/systemmodel.php index 41b0ec7f..9ba6a362 100644 --- a/app/main/model/systemmodel.php +++ b/app/main/model/systemmodel.php @@ -307,8 +307,8 @@ class SystemModel extends BasicModel { // check if this system is a wormhole if($this->isWormhole()){ - $systemStaticModel = self::getNew('SystemStaticModel'); - $systemStatics = $systemStaticModel->find([ + $systemWormholeModel = self::getNew('SystemWormholeModel'); + $systemStatics = $systemWormholeModel->find([ 'constellationId = :constellationId', ':constellationId' => $this->constellationId ]); diff --git a/app/main/model/systemsignaturemodel.php b/app/main/model/systemsignaturemodel.php index bab1648c..feaacdc2 100644 --- a/app/main/model/systemsignaturemodel.php +++ b/app/main/model/systemsignaturemodel.php @@ -69,12 +69,33 @@ class SystemSignatureModel extends BasicModel { 'character' => $this->updatedCharacterId->getData(), 'updated' => strtotime($this->updated) ] - ]; return $signatureData; } + /** + * compares a new data set (array) with the current values + * and checks if something has changed + * @param $signatureData + * @return bool + */ + public function hasChanged($signatureData){ + $hasChanged = false; + + foreach((array)$signatureData as $key => $value){ + if( + $this->exists($key) && + $this->$key != $value + ){ + $hasChanged = true; + break; + } + } + + return $hasChanged; + } + /** * check object for model access * @param $accessObject diff --git a/app/main/model/systemstaticmodel.php b/app/main/model/systemstaticmodel.php deleted file mode 100644 index 395ba250..00000000 --- a/app/main/model/systemstaticmodel.php +++ /dev/null @@ -1,28 +0,0 @@ -security = $this->security; - $systemStaticData->name = $this->name; - - return $systemStaticData; - } -} diff --git a/app/main/model/systemwormholemodel.php b/app/main/model/systemwormholemodel.php new file mode 100644 index 00000000..a866b3d0 --- /dev/null +++ b/app/main/model/systemwormholemodel.php @@ -0,0 +1,32 @@ + [ + 'belongs-to-one' => 'Model\WormholeModel' + ] + ]; + + /** + * get wormhole data as object + * @return object + */ + public function getData(){ + + $systemWormholeData = $this->wormholeId->getData(); + + return $systemWormholeData; + } +} diff --git a/app/main/model/usermodel.php b/app/main/model/usermodel.php index 5d812cd5..f7f6b144 100644 --- a/app/main/model/usermodel.php +++ b/app/main/model/usermodel.php @@ -17,9 +17,9 @@ class UserModel extends BasicModel { protected $table = 'user'; protected $fieldConf = [ - 'lastLogin' => array( + 'lastLogin' => [ 'type' => Schema::DT_TIMESTAMP - ), + ], 'apis' => [ 'has-many' => ['Model\UserApiModel', 'userId'] ], diff --git a/app/main/model/wormholemodel.php b/app/main/model/wormholemodel.php new file mode 100644 index 00000000..d0b32980 --- /dev/null +++ b/app/main/model/wormholemodel.php @@ -0,0 +1,60 @@ +name = $this->name; + $systemStaticData->security = $this->security; + + // total (max) available wormhole mass + $systemStaticData->massTotal = (object) []; + $systemStaticData->massTotal->value = $this->massTotal; + $systemStaticData->massTotal->format = self::formatMassValue($this->massTotal) . ' Kg'; + + // individual jump mass (max) per jump + $systemStaticData->massIndividual = (object) []; + $systemStaticData->massIndividual->value = $this->massIndividual; + $systemStaticData->massIndividual->format = self::formatMassValue($this->massIndividual) . ' Kg'; + + // lifetime (max) for this wormhole + $systemStaticData->maxStableTime = (object) []; + $systemStaticData->maxStableTime->value = $this->maxStableTime; + $systemStaticData->maxStableTime->format = $this->maxStableTime . ' h'; + + // mass regeneration value per day + if($this->massRegeneration > 0){ + $systemStaticData->massRegeneration = (object) []; + $systemStaticData->massRegeneration->value = $this->massRegeneration; + $systemStaticData->massRegeneration->format = self::formatMassValue($this->massRegeneration) . ' Kg/day'; + } + + return $systemStaticData; + } +} \ No newline at end of file diff --git a/app/pathfinder.ini b/app/pathfinder.ini index ecd4b4fa..34fb619d 100644 --- a/app/pathfinder.ini +++ b/app/pathfinder.ini @@ -1,7 +1,7 @@ [PATHFINDER] NAME = "PATHFINDER" ; installed version (used for CSS/JS cache busting) -VERSION = "v0.0.15" +VERSION = "v0.0.16" ; contact information (DO NOT CHANGE) CONTACT = "https://github.com/exodus4d" ; source code (DO NOT CHANGE) diff --git a/js/app/config/signature_type.js b/js/app/config/signature_type.js index d7348aad..8078a9cc 100644 --- a/js/app/config/signature_type.js +++ b/js/app/config/signature_type.js @@ -254,6 +254,42 @@ define([], function() { 7: { // Ghost 1: 'Superior Blood Raider Covert Research Facility' //* } + }, + 13: { // Shattered Wormholes + 5: { // Wormhole (some of them are static) + 1: 'P060 - C1', + 2: 'Z647 - C1', + 3: 'D382 - C2', + 4: 'L005 - C2', + 5: 'N766 - C2', + 6: 'C247 - C3', + 7: 'K346 - C3', + 8: 'M267 - C3', + 9: 'O477 - C3', + 10: 'X877 - C4', + 11: 'Y683 - C4', + 12: 'H296 - C5', + 13: 'H900 - C5', + 14: 'H296 - C5', + 15: 'N062 - C5', + 16: 'V911 - C5', + 17: 'U574 - C6', + 18: 'V753 - C6', + 19: 'W237 - C6', + 20: 'B274 - HS', + 21: 'D792 - HS', + 22: 'D845 - HS', + 23: 'N110 - HS', + 24: 'A239 - LS', + 25: 'C391 - LS', + 26: 'J244 - LS', + 27: 'U201 - LS', + 28: 'U210 - LS', + 29: 'C248 - NS', + 30: 'E545 - NS', + 31: 'K346 - NS', + 32: 'Z060 - NS' + } } }, // system type (k-space) 2: { diff --git a/js/app/init.js b/js/app/init.js index da8d0a38..8529c0b3 100644 --- a/js/app/init.js +++ b/js/app/init.js @@ -147,6 +147,9 @@ define(['jquery'], function($) { security: { class: 'pf-system-sec' }, + 'SH': { + class: 'pf-system-sec-unknown' + }, 'H': { class: 'pf-system-sec-highSec' }, @@ -352,6 +355,16 @@ define(['jquery'], function($) { 1: 'E004 - C1', 2: 'Z006 - C3', 5: 'Q003 - 0.0' + }, + 13: { // Shattered Wormholes (some of them are static) + 1: 'E004 - C1', + 2: 'L005 - C2', + 3: 'Z006 - C3', + 4: 'M001 - C4', + 5: 'C008 - C5', + 6: 'G008 - C6', + 7: 'Q003 - C7' + } }, // incoming wormholes diff --git a/js/app/landingpage.js b/js/app/landingpage.js index d2d36702..43ebd01e 100644 --- a/js/app/landingpage.js +++ b/js/app/landingpage.js @@ -77,10 +77,11 @@ define([ // login buttons ------------------------------------------------ - $('.' + config.loginButtonClass).on('click', function(e){ + var loginForm = $('#' + config.loginFormId); + + loginForm.on('submit', function(e){ e.preventDefault(); - var loginForm = $('#' + config.loginFormId); var loginFormMessageContainer = $('#' + config.loginMessageContainerId); // validate form @@ -144,7 +145,6 @@ define([ }; $('[title]').not('.slide img').tooltip(mapTooltipOptions); - }; /** diff --git a/js/app/map/contextmenu.js b/js/app/map/contextmenu.js index 5180b605..f85ee0c5 100644 --- a/js/app/map/contextmenu.js +++ b/js/app/map/contextmenu.js @@ -54,7 +54,7 @@ define([ duration: animationInDuration, complete: function(){ // set context menu "click" observer - $(this).off('click').one('click', {component: component, position:{x: getLeftLocation(originalEvent), y: getTopLocation(originalEvent)}}, function (e) { + $(this).off('click').one('click', {component: component, position:{x: originalEvent.offsetX, y: originalEvent.offsetY}}, function (e) { // hide contextmenu $(this).hide(); @@ -64,7 +64,6 @@ define([ position: e.data.position }; - settings.menuSelected.call(this, params); }); } diff --git a/js/app/ui/system_info.js b/js/app/ui/system_info.js index 1c40ce56..c32b2739 100644 --- a/js/app/ui/system_info.js +++ b/js/app/ui/system_info.js @@ -28,6 +28,7 @@ define([ systemInfoEffectInfoClass: 'pf-system-info-effect', // class for "effect" information element systemInfoStatusLabelClass: 'pf-system-info-status-label', // class for "status" information element systemInfoStatusAttributeName: 'data-status', // attribute name for status label + systemInfoWormholeClass: 'pf-system-info-wormhole-', // class prefix for static wormhole element // description field descriptionArea: 'pf-system-info-description-area', // class for "description" area @@ -56,6 +57,7 @@ define([ }); }; + /** * shows the tool action element by animation */ @@ -192,6 +194,22 @@ define([ parentElement.prepend(moduleElement); + // shattered wormhole info data + var shatteredWormholeInfo = false; + + // add security class for statics + if( + systemData.statics && + systemData.statics.length > 0 + ){ + for(var i = 0; i < systemData.statics.length; i++){ + systemData.statics[i].class = Util.getSecurityClassForSystem( systemData.statics[i].security ); + } + }else if(systemData.type.id === 1){ + // system type "wormhole" but no statics => "shattered wormhole" + shatteredWormholeInfo = true; + } + var effectName = Util.getEffectInfoForSystem(systemData.effect, 'name'); var effectClass = Util.getEffectInfoForSystem(systemData.effect, 'class'); @@ -338,6 +356,15 @@ define([ }); } + // init static wormhole information ---------------------------------------------------------- + if(systemData.statics){ + for(var i = 0; i < systemData.statics.length; i++){ + var staticData = systemData.statics[i]; + var staticRowElement = tempModuleElement.find('.' + config.systemInfoWormholeClass + staticData.name); + staticRowElement.addWormholeInfoTooltip(staticData); + } + } + // constellation popover --------------------------------------------------------------------- tempModuleElement.find('a.popup-ajax').popover({ html: true, @@ -350,7 +377,6 @@ define([ } }); - function details_in_popup(popoverElement){ popoverElement = $(popoverElement); var popover = popoverElement.data('bs.popover'); @@ -373,18 +399,12 @@ define([ } }; - // add security class for statics - if(systemData.statics){ - for(var i = 0; i < systemData.statics.length; i++){ - systemData.statics[i].class = Util.getSecurityClassForSystem( systemData.statics[i].security ); - } - } - var moduleData = { system: systemData, tableClass: config.systemInfoTableClass, nameInfoClass: config.systemInfoNameInfoClass, effectInfoClass: config.systemInfoEffectInfoClass, + wormholePrefixClass: config.systemInfoWormholeClass, statusInfoClass: config.systemInfoStatusLabelClass, systemTypeName: Util.getSystemTypeInfo(systemData.type.id, 'name'), @@ -402,6 +422,8 @@ define([ descriptionTextareaClass: config.descriptionTextareaElementClass, descriptionTooltipClass: config.descriptionTextareaTooltipClass, + shatteredWormholeInfo: shatteredWormholeInfo, + ajaxConstellationInfoUrl: Init.path.getConstellationData, systemConstellationLinkClass: config.constellationLinkClass, diff --git a/js/app/ui/system_signature.js b/js/app/ui/system_signature.js index 268e4bd1..6bd680b2 100644 --- a/js/app/ui/system_signature.js +++ b/js/app/ui/system_signature.js @@ -7,9 +7,8 @@ define([ 'app/init', 'app/util', 'app/render', - 'config/signature_type', 'bootbox' -], function($, Init, Util, Render, SignatureType, bootbox) { +], function($, Init, Util, Render, bootbox) { 'use strict'; var config = { @@ -171,16 +170,19 @@ define([ * Updates a signature table, changes all signatures where name matches * add all new signatures as a row * - * @param signatureData + * @param signatureDataOrig * @param deleteOutdatedSignatures -> set to "true" if signatures should be deleted that are not included in "signatureData" */ - $.fn.updateSignatureTable = function(signatureData, deleteOutdatedSignatures){ + $.fn.updateSignatureTable = function(signatureDataOrig, deleteOutdatedSignatures){ // check if table update is allowed if(disableTableUpdate === true){ return; } + // clone signature array because of further manipulation + var signatureData = $.extend([], signatureDataOrig); + // disable update until function is ready; disableTableUpdate = true; @@ -241,20 +243,19 @@ define([ // delete signatures ==================================================== if(deleteOutdatedSignatures === true){ + + // callback function after row deleted + var toggleTableRowCallback = function(tempRowElement){ + // hide open editable fields on the row before removing them + tempRowElement.find('.editable').editable('destroy'); + + // delete signature row + signatureTableApi.row(tempRowElement).remove().draw(); + }; + for(var l = 0; l < tableData.length; l++){ - var rowElement = signatureTableApi.row(tableData[l].index).nodes().to$(); - - rowElement.toggleTableRow(function(tempRowElement){ - - // hide open editable fields on the row before removing them - tempRowElement.find('.editable').editable('destroy'); - - // delete signature row - signatureTableApi.row(tempRowElement).remove().draw(); - }); - - + rowElement.toggleTableRow(toggleTableRowCallback); notificationCounter.deleted++; } } @@ -432,6 +433,14 @@ define([ } } }); + + // dialog shown event + signatureReaderDialog.on('shown.bs.modal', function(e) { + // set focus on sig-input textarea + signatureReaderDialog.find('textarea').focus(); + }); + + }); }; @@ -453,6 +462,9 @@ define([ if(signatureData.length > 0){ // save signature data + // lock update function until request is finished + disableTableUpdate = true; + // lock copy during request (prevent spamming (ctrl + c ) disableCopyFromClipboard = true; @@ -466,6 +478,8 @@ define([ data: requestData, dataType: 'json' }).done(function(responseData){ + disableTableUpdate = false; + // updates table with new/updated signature information moduleElement.updateSignatureTable(responseData.signatures, false); }).fail(function( jqXHR, status, error) { @@ -473,6 +487,7 @@ define([ Util.showNotify({title: jqXHR.status + ': Update signatures', text: reason, type: 'warning'}); $(document).setProgramStatus('problem'); }).always(function() { + disableTableUpdate = false; disableCopyFromClipboard = false; }); } @@ -681,7 +696,7 @@ define([ var selectedRows = getSelectedRows(signatureTable); - bootbox.confirm('Delete ' + selectedRows.length + ' signature?', function(result) { + bootbox.confirm('Delete ' + selectedRows.data().length + ' signature?', function(result) { if(result){ deleteSignatures(selectedRows); } @@ -1787,6 +1802,7 @@ define([ */ var getSelectedRows = function(table){ var tableApi = table.api(); + var selectedRows = tableApi.rows('.selected'); return selectedRows; diff --git a/js/app/util.js b/js/app/util.js index db225967..7b97fa4e 100644 --- a/js/app/util.js +++ b/js/app/util.js @@ -522,7 +522,6 @@ define([ }; requirejs(['text!templates/tooltip/character_info.html', 'mustache'], function(template, Mustache) { - var content = Mustache.render(template, data); element.popover({ @@ -541,13 +540,46 @@ define([ // set new popover content var popover = element.data('bs.popover'); popover.options.content = content; - }); } } }; + /** + * add a wormhole tooltip with wh specific data to elements + * @param tooltipData + * @returns {*} + */ + $.fn.addWormholeInfoTooltip = function(tooltipData){ + return this.each(function() { + var element = $(this); + + requirejs(['text!templates/tooltip/wormhole_info.html', 'mustache'], function (template, Mustache) { + var content = Mustache.render(template, tooltipData); + + element.popover({ + placement: 'top', + html: true, + trigger: 'hover', + content: '', + container: 'body', + title: tooltipData.name + + '' + tooltipData.security + '', + delay: { + show: 250, + hide: 0 + } + }); + + // set new popover content + var popover = element.data('bs.popover'); + popover.options.content = content; + }); + + }); + }; + /** * display a custom message (info/warning/error) to a container element * check: $.fn.showFormMessage() for an other way of showing messages @@ -1334,6 +1366,9 @@ define([ case '0.0': areaId = 12; break; + case 'SH': + areaId = 13; + break; default: // w-space for(var i = 1; i <= 6; i++){ diff --git a/package.json b/package.json index b03b07fe..bef78b72 100644 --- a/package.json +++ b/package.json @@ -1,8 +1,8 @@ { "name": "pathfinder-eve", "version": "0.0.10", - "engines" : { - "node" : "4.0.x" + "engines": { + "node": "4.0.x" }, "description": "Pathfinder is a system mapping tool for EVE ONLINE", "main": "index.php", @@ -12,12 +12,12 @@ "devDependencies": { "gulp": "^3.9.0", "gulp-clean": "^0.3.1", - "gulp-if": "^1.2.5", + "gulp-if": "^2.0.0", "gulp-jshint": "^1.11.2", "gulp-notify": "^2.2.0", "gulp-param": "^0.6.3", "gulp-plumber": "^1.0.1", - "jshint": "^2.8.0", + "jshint": "^2.9.1-rc1", "jshint-stylish": "^2.0.1", "run-sequence": "^1.1.2" }, @@ -39,7 +39,7 @@ "license": "MIT", "bugs": { "url": "https://github.com/exodus4d/pathfinder/issues", - "email" : "pathfinder@exodus4d.de" + "email": "pathfinder@exodus4d.de" }, "homepage": "https://github.com/exodus4d/pathfinder#readme", "private": true diff --git a/pathfinder.sql b/pathfinder.sql index 1039a748..4cd1c154 100644 --- a/pathfinder.sql +++ b/pathfinder.sql @@ -19,7 +19,7 @@ -- Current Database: `pathfinder_clean` -- -CREATE DATABASE /*!32312 IF NOT EXISTS*/ `pathfinder_clean` /*!40100 DEFAULT CHARACTER SET utf8 COLLATE utf8_bin */; +CREATE DATABASE /*!32312 IF NOT EXISTS*/ `pathfinder_clean` /*!40100 DEFAULT CHARACTER SET utf8 */; USE `pathfinder_clean`; @@ -50,7 +50,6 @@ CREATE TABLE `alliance` ( LOCK TABLES `alliance` WRITE; /*!40000 ALTER TABLE `alliance` DISABLE KEYS */; -INSERT INTO `alliance` VALUES (386292982,'2015-08-16 00:52:55','2015-08-16 00:52:55',1,'Pandemic Legion',0); /*!40000 ALTER TABLE `alliance` ENABLE KEYS */; UNLOCK TABLES; @@ -124,7 +123,6 @@ CREATE TABLE `character` ( LOCK TABLES `character` WRITE; /*!40000 ALTER TABLE `character` DISABLE KEYS */; -INSERT INTO `character` VALUES (90581222,'2015-08-19 17:26:41','2015-08-19 17:26:41',1,'Exodus 3D Gidrine',1000114,NULL,0,''),(91301110,'2015-08-19 17:26:41','2015-08-19 17:26:41',1,'Exodus 2D Gidrine',1000172,NULL,0,''),(93289067,'2015-09-01 19:56:27','2015-09-01 19:56:27',1,'Exodus 7D Gidrine',98073247,NULL,0,''),(94154320,'2015-09-01 19:24:57','2015-09-01 19:56:27',1,'Exodus 5D Gidrine',1000107,NULL,0,''),(94940499,'2015-08-29 19:16:38','2015-08-29 19:16:38',1,'Exodus 8D Gidrine',1000166,NULL,0,''),(94959630,'2015-08-19 17:26:42','2015-08-19 17:26:42',1,'Exodus 6D Gidrine',1000045,NULL,0,''),(1578790678,'2015-08-16 00:52:55','2015-08-16 00:52:55',1,'Mark Hadden',828800677,386292982,0,''),(1946320202,'2015-08-29 19:16:38','2015-08-29 19:16:38',1,'Exodus 4D',1000080,NULL,0,''); /*!40000 ALTER TABLE `character` ENABLE KEYS */; UNLOCK TABLES; @@ -193,7 +191,7 @@ CREATE TABLE `character_status` ( LOCK TABLES `character_status` WRITE; /*!40000 ALTER TABLE `character_status` DISABLE KEYS */; -INSERT INTO `character_status` VALUES (1,'2015-04-01 19:09:47','2015-04-01 19:09:47',1,'corporation','pf-user-status-corp'),(2,'2015-04-01 19:09:47','2015-04-01 19:09:47',1,'alliance','pf-user-status-ally'),(3,'2015-04-01 19:09:47','2015-04-01 19:09:47',1,'own','pf-user-status-own'); +INSERT INTO `character_status` VALUES (1,'2015-04-01 19:09:47','2015-04-01 19:09:47',1,'corporation','pf-user-status-corp'),(2,'2015-04-01 19:09:47','2015-04-01 19:09:47',1,'alliance','pf-user-status-ally'),(3,'2015-10-25 17:40:41','2015-10-25 17:40:41',1,'own','pf-user-status-own'); /*!40000 ALTER TABLE `character_status` ENABLE KEYS */; UNLOCK TABLES; @@ -343,7 +341,7 @@ DROP TABLE IF EXISTS `map`; /*!40101 SET character_set_client = utf8 */; CREATE TABLE `map` ( `id` int(11) NOT NULL AUTO_INCREMENT, - `created` datetime NOT NULL DEFAULT CURRENT_TIMESTAMP, + `created` timestamp NOT NULL DEFAULT CURRENT_TIMESTAMP, `updated` timestamp NOT NULL DEFAULT CURRENT_TIMESTAMP ON UPDATE CURRENT_TIMESTAMP, `active` tinyint(1) NOT NULL DEFAULT '1', `scopeId` int(11) NOT NULL, @@ -452,7 +450,7 @@ CREATE TABLE `registration_key` ( KEY `created` (`created`), KEY `updated` (`updated`), KEY `active` (`active`) -) ENGINE=InnoDB AUTO_INCREMENT=4 DEFAULT CHARSET=utf8 COLLATE=utf8_bin; +) ENGINE=InnoDB AUTO_INCREMENT=2 DEFAULT CHARSET=utf8 COLLATE=utf8_bin; /*!40101 SET character_set_client = @saved_cs_client */; -- @@ -461,7 +459,7 @@ CREATE TABLE `registration_key` ( LOCK TABLES `registration_key` WRITE; /*!40000 ALTER TABLE `registration_key` DISABLE KEYS */; -INSERT INTO `registration_key` VALUES (1,'2015-08-29 14:52:55','2015-10-05 20:26:05',1,'',0,'','F189BA453407620195ABC3EE2CDE716AD59339AC'),(2,'2015-08-29 14:52:55','2015-10-05 20:25:55',1,'',0,'','325687653523CEFDCEE0C45431491D68EABFD1BB'),(3,'2015-08-29 14:52:55','2015-10-05 20:26:00',1,'',0,'','C677D32C10F9F567F8DF09780BABBD01CC224D5B'); +INSERT INTO `registration_key` VALUES (1,'2015-08-29 14:52:55','2015-11-19 20:39:05',1,'',0,'','F189BA453407620195ABC3EE2CDE716AD53339AC'); /*!40000 ALTER TABLE `registration_key` ENABLE KEYS */; UNLOCK TABLES; @@ -506,20 +504,20 @@ CREATE TABLE `system` ( `active` tinyint(1) NOT NULL DEFAULT '1', `mapId` int(11) NOT NULL, `systemId` int(11) NOT NULL, - `name` varchar(255) COLLATE utf8_bin NOT NULL, - `alias` varchar(255) COLLATE utf8_bin NOT NULL, + `name` varchar(255) COLLATE utf8_bin NOT NULL DEFAULT '', + `alias` varchar(255) COLLATE utf8_bin NOT NULL DEFAULT '', `regionId` int(11) NOT NULL, - `region` varchar(255) COLLATE utf8_bin NOT NULL, + `region` varchar(255) COLLATE utf8_bin NOT NULL DEFAULT '', `constellationId` int(11) NOT NULL, - `constellation` varchar(255) COLLATE utf8_bin NOT NULL, - `effect` varchar(100) COLLATE utf8_bin NOT NULL, + `constellation` varchar(255) COLLATE utf8_bin NOT NULL DEFAULT '', + `effect` varchar(100) COLLATE utf8_bin NOT NULL DEFAULT '', `typeId` tinyint(1) NOT NULL, - `security` varchar(10) COLLATE utf8_bin NOT NULL, + `security` varchar(10) COLLATE utf8_bin NOT NULL DEFAULT '', `trueSec` decimal(2,1) NOT NULL, `statusId` tinyint(1) NOT NULL DEFAULT '1', `locked` tinyint(1) NOT NULL DEFAULT '0', `rally` tinyint(1) NOT NULL DEFAULT '0', - `description` mediumtext COLLATE utf8_bin NOT NULL, + `description` mediumtext COLLATE utf8_bin NOT NULL DEFAULT '', `posX` int(11) NOT NULL DEFAULT '0', `posY` int(11) NOT NULL DEFAULT '0', `createdCharacterId` int(11) NOT NULL, @@ -606,7 +604,7 @@ CREATE TABLE `system_jumps` ( LOCK TABLES `system_jumps` WRITE; /*!40000 ALTER TABLE `system_jumps` DISABLE KEYS */; -INSERT INTO `system_jumps` VALUES (1,'2015-03-10 21:49:29','2015-08-29 14:46:00',1,30000995,7,18,24,22,22,26,23,11,41,56,11,9,17,60,31,12,5,5,10,10,33,50,33,30),(2,'2015-03-10 21:49:29','2015-08-29 14:46:00',1,30001779,5,1,2,3,7,7,1,6,9,32,13,9,16,4,0,3,7,6,4,0,2,4,13,10),(3,'2015-03-10 21:49:29','2015-08-29 14:46:00',1,30000838,12,8,12,15,9,24,17,13,47,50,44,51,67,61,52,53,64,29,33,46,68,81,53,39),(4,'2015-03-10 21:49:29','2015-08-29 14:46:00',1,30001904,0,3,3,8,5,8,22,13,11,13,15,11,12,13,15,39,12,4,9,18,27,22,26,27),(5,'2015-03-10 21:49:29','2015-08-29 14:46:00',1,30004510,4,4,5,1,1,1,2,7,2,5,5,5,0,3,5,4,4,3,0,1,0,1,1,3),(6,'2015-03-10 21:49:29','2015-08-29 14:46:00',1,30003693,24,15,22,18,13,18,9,17,5,3,9,9,4,9,6,12,2,4,7,7,5,6,21,15),(7,'2015-03-10 21:49:29','2015-08-29 14:46:00',1,30001287,15,4,5,8,4,5,5,1,13,22,2,8,23,49,26,4,6,8,3,9,6,2,12,8),(8,'2015-03-10 21:49:29','2015-08-29 14:46:00',1,30000480,1,1,2,0,1,6,9,5,1,3,6,2,0,1,1,3,0,0,0,0,2,2,0,1),(9,'2015-03-10 21:49:29','2015-08-29 14:46:00',1,30002454,44,23,58,66,50,43,42,28,10,23,39,71,12,18,18,38,30,11,17,15,19,32,24,13),(10,'2015-03-10 21:49:29','2015-08-29 14:46:00',1,30004756,28,3,13,8,11,3,11,34,20,36,23,13,25,40,37,34,16,12,10,38,23,19,18,18),(11,'2015-03-10 21:49:29','2015-08-29 14:46:00',1,30004674,2,1,2,0,1,7,7,5,6,8,3,2,10,6,9,3,11,4,12,3,3,7,6,12),(12,'2015-03-10 21:49:29','2015-08-29 14:46:00',1,30001150,3,2,1,0,0,0,1,0,0,0,2,2,0,0,0,5,3,5,0,1,2,0,0,0),(13,'2015-03-10 21:49:29','2015-08-29 14:46:00',1,30004930,19,42,15,13,8,7,3,9,21,11,8,9,12,14,8,23,11,2,8,8,20,12,12,10),(14,'2015-03-10 21:49:29','2015-08-29 14:46:00',1,30001322,23,28,12,13,13,16,5,12,10,10,12,22,13,44,18,12,10,12,22,26,31,29,11,15),(15,'2015-03-10 21:49:29','2015-08-29 14:46:00',1,30003114,30,40,24,20,39,65,19,23,12,12,14,17,15,7,9,13,22,19,15,18,7,17,23,27),(16,'2015-03-10 21:49:29','2015-08-29 14:46:00',1,30003198,4,1,0,5,3,4,0,3,3,1,1,2,1,0,1,3,3,2,1,1,8,5,3,6),(17,'2015-03-10 21:49:29','2015-08-29 14:46:00',1,30000222,11,11,24,16,13,21,12,4,7,4,5,4,23,6,12,45,15,14,12,9,14,4,5,4),(18,'2015-03-10 21:49:29','2015-08-29 14:46:00',1,30001065,1,6,1,3,5,1,0,2,5,1,7,11,2,8,6,6,10,1,2,1,2,1,2,2),(19,'2015-03-10 21:49:29','2015-08-29 14:46:00',1,30005191,4,15,4,14,10,72,1,2,6,9,11,8,12,15,9,3,1,17,59,5,22,14,1,1),(20,'2015-03-10 21:49:29','2015-08-29 14:46:00',1,30003615,3,9,7,9,13,12,6,14,5,3,5,6,25,8,6,3,9,6,5,6,4,3,6,9),(21,'2015-03-10 21:49:29','2015-08-29 14:46:00',1,30000799,1,3,10,11,7,3,3,5,0,0,3,3,1,1,1,2,0,0,0,0,0,0,1,1),(22,'2015-03-10 21:49:29','2015-08-29 14:46:00',1,30000440,9,7,8,9,8,19,5,6,27,35,49,37,41,84,67,40,22,12,78,45,33,35,25,11),(23,'2015-03-10 21:49:29','2015-08-29 14:46:00',1,30003947,20,10,27,21,19,18,13,10,23,15,9,9,28,35,12,16,13,8,12,19,7,12,11,14),(24,'2015-03-10 21:49:29','2015-08-29 14:46:00',1,30004509,4,2,3,1,0,0,1,6,1,1,2,3,0,1,1,0,2,1,0,0,0,1,0,1),(25,'2015-03-10 21:49:29','2015-08-29 14:46:00',1,30001295,11,1,2,17,12,3,2,4,0,0,3,2,3,6,2,0,4,7,4,0,5,5,7,1),(26,'2015-03-10 21:49:29','2015-08-29 14:46:00',1,30000857,24,113,25,31,28,70,26,33,82,109,357,289,64,105,70,28,16,23,24,28,37,38,30,27),(27,'2015-03-10 21:49:29','2015-08-29 14:46:00',1,30004656,1,1,0,2,2,4,0,1,2,3,8,3,3,4,3,1,7,1,0,8,4,4,1,3),(28,'2015-03-10 21:49:29','2015-08-29 14:46:00',1,30004596,14,9,7,8,10,11,9,17,152,44,167,127,138,28,34,37,42,36,34,40,48,44,32,32),(29,'2015-03-10 21:49:29','2015-08-29 14:46:00',1,30004068,28,124,29,32,32,16,10,28,19,24,11,11,17,12,19,11,18,6,23,9,16,18,22,16),(30,'2015-03-10 21:49:29','2015-08-29 14:46:00',1,30005186,7,24,4,15,10,94,2,3,6,12,18,14,16,30,23,3,4,35,40,6,32,21,3,3),(31,'2015-03-10 21:49:29','2015-08-29 14:46:00',1,30002609,6,2,2,5,7,2,7,4,0,0,1,1,0,0,0,0,3,0,2,0,2,6,2,0),(32,'2015-03-10 21:49:29','2015-08-29 14:46:00',1,30003149,21,29,30,47,29,60,41,65,35,40,26,41,49,79,63,40,26,44,46,34,83,61,40,30),(33,'2015-03-10 21:49:29','2015-08-29 14:46:00',1,30000707,7,3,6,2,1,2,11,9,5,2,1,5,5,0,1,2,1,1,0,4,2,2,1,0),(34,'2015-03-10 21:49:29','2015-08-29 14:46:00',1,30000822,1,9,11,13,8,2,0,10,3,0,4,4,5,3,2,6,8,1,16,18,6,5,8,8),(35,'2015-03-10 21:49:29','2015-08-29 14:46:00',1,30002460,37,24,36,34,34,28,18,22,43,58,52,60,31,29,31,33,41,10,30,38,55,65,29,40),(36,'2015-03-10 21:49:29','2015-08-29 14:46:00',1,30000623,0,0,2,0,0,1,0,0,2,2,0,0,0,0,0,1,3,0,1,2,2,1,2,1),(37,'2015-03-10 21:49:29','2015-08-29 14:46:00',1,30000216,23,28,24,13,6,9,15,7,5,9,8,7,21,23,33,27,23,19,19,27,24,33,31,16),(38,'2015-03-10 21:49:29','2015-08-29 14:46:00',1,30001120,16,22,25,25,29,10,23,25,7,6,22,3,3,1,5,10,6,0,6,2,0,1,3,5),(39,'2015-03-10 21:49:29','2015-08-29 14:46:00',1,30000596,2,3,6,5,2,1,0,1,5,16,3,1,5,3,2,49,0,16,12,10,1,1,1,0),(40,'2015-03-10 21:49:29','2015-08-29 14:46:00',1,30002168,29,107,46,74,64,43,32,11,49,58,73,49,63,109,95,72,51,53,144,183,75,72,44,41),(41,'2015-03-10 21:49:29','2015-08-29 14:46:00',1,30004954,8,5,3,11,8,4,11,5,2,4,8,14,5,3,3,19,2,2,1,3,5,5,1,1),(42,'2015-03-10 21:49:29','2015-08-29 14:46:00',1,30003743,30,44,16,28,45,23,14,19,69,43,37,35,39,61,33,33,36,67,26,42,46,33,55,76),(43,'2015-03-10 21:49:29','2015-03-10 21:49:29',1,30000351,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(44,'2015-03-10 21:49:29','2015-08-29 14:46:00',1,30004947,15,45,15,22,19,25,23,36,47,52,15,15,24,44,44,44,37,8,12,63,31,38,29,21),(45,'2015-03-10 21:49:29','2015-08-29 14:46:00',1,30003782,18,14,16,20,18,14,27,40,30,26,9,14,17,41,24,17,15,11,20,7,9,8,37,28),(46,'2015-03-10 21:49:29','2015-08-29 14:46:00',1,30004214,2,3,1,5,5,8,4,5,1,4,5,5,5,1,3,1,5,0,4,12,8,7,2,5),(47,'2015-03-10 21:49:29','2015-08-29 14:46:00',1,30004549,14,2,10,11,5,13,16,2,2,2,6,3,9,20,5,7,3,5,5,4,4,4,9,4),(48,'2015-03-10 21:49:29','2015-08-29 14:46:00',1,30004917,18,19,6,23,16,12,11,7,36,26,12,13,15,22,26,14,21,11,11,8,12,12,7,14),(49,'2015-03-10 21:49:29','2015-08-29 14:46:00',1,30003296,4,9,5,6,5,1,3,1,20,17,9,3,14,5,8,2,4,6,2,8,5,6,3,7),(50,'2015-03-10 21:49:29','2015-08-29 14:46:00',1,30005102,8,17,9,4,8,7,1,2,4,2,2,1,3,14,14,6,7,6,6,5,8,6,11,11),(51,'2015-03-10 21:49:29','2015-08-29 14:46:00',1,30001889,4,1,1,3,8,8,9,2,15,14,10,13,12,11,8,14,9,5,10,10,17,14,5,7),(52,'2015-03-10 21:49:29','2015-08-29 14:46:00',1,30001856,15,20,11,3,6,16,10,6,25,16,39,45,31,58,43,38,42,12,13,13,43,56,39,35),(53,'2015-03-10 21:49:29','2015-08-29 14:46:00',1,30000522,6,4,6,6,7,5,0,3,0,1,4,3,4,4,2,9,8,1,2,2,13,6,5,0),(54,'2015-03-10 21:49:29','2015-03-10 21:49:29',1,30001643,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(55,'2015-03-10 21:49:29','2015-08-29 14:46:00',1,30001551,1,3,2,3,2,0,12,0,5,6,13,6,11,6,4,6,14,3,24,5,1,1,9,10),(56,'2015-03-10 21:49:29','2015-08-29 14:46:00',1,30000267,17,42,14,9,11,9,6,8,19,121,129,18,18,81,76,11,9,14,9,144,14,17,4,10),(57,'2015-03-10 21:49:29','2015-08-29 14:46:00',1,30003330,19,32,30,28,22,65,11,20,24,27,24,14,47,13,15,14,24,14,37,18,25,28,26,10),(58,'2015-03-10 21:49:29','2015-08-29 14:46:00',1,30000645,0,0,1,0,0,0,0,3,1,3,0,1,2,1,1,1,1,0,3,1,8,7,1,2),(59,'2015-03-10 21:49:29','2015-08-29 14:46:00',1,30003647,0,4,14,4,3,1,0,7,2,2,4,6,7,6,2,1,2,4,1,0,0,3,0,0),(60,'2015-03-10 21:49:29','2015-08-29 14:46:00',1,30002308,1,1,3,2,6,5,6,7,6,10,11,8,4,2,3,1,1,10,8,5,4,4,4,4),(61,'2015-03-10 21:49:29','2015-03-10 21:49:29',1,30001521,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(62,'2015-03-10 21:49:29','2015-08-29 14:46:00',1,30000262,30,19,25,12,4,18,15,13,10,12,11,14,62,34,46,39,20,32,32,40,67,54,45,27),(63,'2015-03-10 21:49:29','2015-08-29 14:46:00',1,30004720,19,3,15,12,15,17,15,11,10,12,17,10,8,12,45,27,16,8,3,4,14,17,4,19),(64,'2015-03-10 21:49:29','2015-08-29 14:46:00',1,30000929,2,3,1,0,5,2,1,0,1,3,2,1,5,1,1,0,4,2,0,3,1,0,2,2),(65,'2015-03-10 21:49:29','2015-08-29 14:46:00',1,30004950,8,25,18,10,7,14,13,20,54,41,10,5,19,17,40,9,10,14,36,24,17,17,26,21),(66,'2015-03-10 21:49:29','2015-08-29 14:46:00',1,30004483,11,66,1,6,19,35,12,9,11,10,15,25,21,21,30,48,29,13,16,34,31,24,41,33),(67,'2015-03-10 21:49:29','2015-08-29 14:46:00',1,30002899,11,11,18,17,16,10,26,24,66,124,164,156,84,115,84,109,131,37,56,64,83,100,92,92),(68,'2015-03-10 21:49:29','2015-08-29 14:46:00',1,30004874,54,23,21,34,20,38,38,25,14,11,9,9,3,3,4,9,4,1,4,1,5,8,14,8),(69,'2015-03-10 21:49:29','2015-08-29 14:46:00',1,30004322,10,37,10,31,44,12,25,13,4,5,8,6,4,3,3,5,6,3,4,4,4,10,13,8),(70,'2015-03-10 21:49:29','2015-08-29 14:46:00',1,30000966,1,6,3,5,7,2,1,0,6,2,9,8,1,4,1,4,2,3,14,3,3,7,1,2),(71,'2015-03-10 21:49:29','2015-08-29 14:46:00',1,30003251,6,88,14,7,4,11,4,4,3,2,3,0,3,3,0,5,4,2,1,3,5,1,1,1),(72,'2015-03-10 21:49:29','2015-08-29 14:46:00',1,30000290,7,24,16,17,16,21,6,23,43,55,56,76,27,36,18,29,55,26,13,24,78,72,30,41),(73,'2015-03-10 21:49:29','2015-08-29 14:46:00',1,30000940,0,0,2,0,0,0,0,1,1,1,1,2,1,3,1,3,2,0,0,3,1,2,0,2),(74,'2015-03-10 21:49:29','2015-08-29 14:46:00',1,30000566,7,4,3,7,1,3,1,1,3,3,3,2,3,0,1,1,3,10,8,2,6,22,3,4),(75,'2015-03-10 21:49:29','2015-03-10 21:49:29',1,30001458,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(76,'2015-03-10 21:49:29','2015-08-29 14:46:00',1,30002846,9,9,14,23,22,2,4,18,10,8,13,15,31,25,15,7,14,2,1,14,11,14,19,16),(77,'2015-03-10 21:49:29','2015-08-29 14:46:00',1,30001009,14,64,84,31,27,45,40,32,153,194,90,46,177,96,103,86,49,49,64,77,43,32,110,56),(78,'2015-03-10 21:49:29','2015-08-29 14:46:00',1,30004695,26,51,9,16,36,21,13,18,19,18,12,36,37,25,21,13,16,15,9,36,34,19,24,31),(79,'2015-03-10 21:49:29','2015-08-29 14:46:00',1,30003349,16,10,14,16,10,32,14,29,73,80,45,20,29,53,36,52,15,7,34,34,63,42,44,71),(80,'2015-03-10 21:49:29','2015-08-29 14:46:00',1,30001961,5,5,2,3,2,1,2,8,3,5,0,1,1,2,3,2,1,1,2,2,3,2,3,1),(81,'2015-03-10 21:49:29','2015-08-29 14:46:00',1,30003957,5,105,25,23,36,15,38,12,14,15,14,10,21,16,20,13,12,50,9,9,8,5,6,12),(82,'2015-03-10 21:49:29','2015-08-29 14:46:00',1,30000543,2,18,7,4,0,10,15,17,9,11,7,8,2,6,8,8,16,6,12,2,2,5,4,14),(83,'2015-03-10 21:49:29','2015-08-29 14:46:00',1,30000781,9,18,4,8,12,14,9,7,5,4,8,5,10,7,8,7,3,4,14,4,1,3,6,10),(84,'2015-03-10 21:49:29','2015-08-29 14:46:00',1,30002934,6,12,5,5,3,9,3,6,9,5,1,3,4,8,7,4,4,6,10,3,7,3,11,8),(85,'2015-03-10 21:49:29','2015-08-29 14:46:00',1,30004843,4,1,0,0,1,1,2,3,1,2,1,0,3,1,3,3,0,2,9,10,1,4,0,0),(86,'2015-03-10 21:49:29','2015-08-29 14:46:00',1,30005157,0,2,2,4,6,3,1,1,4,3,0,1,7,11,9,5,8,5,0,4,20,20,21,22),(87,'2015-03-10 21:49:29','2015-08-29 14:46:00',1,30001837,21,18,15,12,17,18,20,8,46,46,35,36,44,20,31,47,45,20,29,25,33,39,32,30),(88,'2015-03-10 21:49:29','2015-03-10 21:49:29',1,30001599,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(89,'2015-03-10 21:49:29','2015-08-29 14:46:00',1,30004677,3,2,2,3,2,7,7,11,4,8,5,3,6,6,10,7,6,4,6,6,5,3,5,7),(90,'2015-03-10 21:49:29','2015-08-29 14:46:00',1,30001757,1,2,2,2,2,0,1,4,0,1,0,0,0,2,1,1,2,0,0,1,3,2,4,4),(91,'2015-03-10 21:49:29','2015-08-29 14:46:00',1,30003766,59,71,46,41,31,22,18,21,35,41,104,65,51,103,93,54,57,32,37,80,39,51,48,30),(92,'2015-03-10 21:49:29','2015-08-29 14:46:00',1,30004801,5,41,24,29,9,7,5,18,13,11,18,19,30,21,14,17,18,22,22,13,35,28,12,11),(93,'2015-03-10 21:49:29','2015-08-29 14:46:00',1,30004037,14,28,24,42,27,44,8,12,13,21,16,9,10,17,21,12,8,9,41,3,18,21,9,8),(94,'2015-03-10 21:49:29','2015-08-29 14:46:00',1,30004650,1,6,21,5,1,10,6,12,14,8,8,8,8,8,6,7,9,19,40,48,30,19,16,13),(95,'2015-03-10 21:49:29','2015-08-29 14:46:00',1,30000573,27,71,28,35,28,53,16,45,2,5,4,5,34,18,28,6,15,7,27,18,19,23,4,6),(96,'2015-03-10 21:49:29','2015-08-29 14:46:00',1,30000734,8,29,4,5,5,0,3,3,2,2,0,1,1,0,2,2,0,0,2,4,1,1,4,1),(97,'2015-03-10 21:49:29','2015-08-29 14:46:00',1,30002581,1,4,5,3,0,9,2,4,11,5,8,10,14,3,1,6,9,5,7,5,2,7,5,4),(98,'2015-03-10 21:49:29','2015-08-29 14:46:00',1,30003258,23,43,30,19,14,28,35,24,5,2,6,2,4,39,21,13,2,2,11,16,6,9,18,16),(99,'2015-03-10 21:49:29','2015-08-29 14:46:00',1,30001109,7,2,9,4,4,22,2,3,16,8,7,7,6,8,8,26,8,6,2,7,2,7,9,7),(100,'2015-03-10 21:49:29','2015-08-29 14:46:00',1,30000301,30,37,60,27,32,36,14,21,10,12,19,21,73,49,46,77,41,17,28,93,22,21,62,72),(101,'2015-03-10 21:49:29','2015-08-29 14:46:00',1,30000463,1,0,2,3,2,2,1,5,4,1,1,0,4,3,1,2,2,1,2,0,3,3,3,2),(102,'2015-03-10 21:49:29','2015-08-29 14:46:00',1,30003215,16,11,28,24,31,15,12,13,16,17,14,16,9,15,18,13,18,7,21,15,11,10,14,3),(103,'2015-03-10 21:49:29','2015-08-29 14:46:00',1,30002823,5,7,5,6,4,11,4,7,24,22,9,10,11,7,10,6,7,0,0,11,20,16,6,2),(104,'2015-03-10 21:49:29','2015-08-29 14:46:00',1,30004940,54,28,58,35,30,34,21,16,25,22,6,11,15,11,14,9,10,7,8,12,17,20,15,8),(105,'2015-03-10 21:49:29','2015-08-29 14:46:00',1,30003297,7,5,4,3,4,3,0,12,2,5,5,3,4,4,4,2,6,2,7,1,4,6,10,5),(106,'2015-03-10 21:49:29','2015-08-29 14:46:00',1,30004048,18,21,3,9,6,7,4,5,11,13,7,8,16,30,28,19,6,14,13,13,30,26,14,14),(107,'2015-03-10 21:49:29','2015-08-29 14:46:00',1,30000474,0,2,0,0,0,0,1,1,1,1,5,3,0,2,1,4,1,0,0,3,2,1,4,3),(108,'2015-03-10 21:49:29','2015-08-29 14:46:00',1,30004738,52,121,64,67,58,71,59,79,321,496,156,109,296,253,307,230,134,119,245,266,209,164,208,249),(109,'2015-03-10 21:49:29','2015-08-29 14:46:00',1,30001270,15,9,22,20,23,16,8,17,45,69,55,34,34,68,53,53,53,13,27,14,28,31,27,26),(110,'2015-03-10 21:49:29','2015-08-29 14:46:00',1,30003336,6,23,7,7,10,17,6,3,13,23,25,22,20,5,10,7,19,1,3,11,6,14,7,3),(111,'2015-03-10 21:49:29','2015-08-29 14:46:00',1,30003147,6,0,4,8,8,5,2,0,2,3,3,3,3,1,2,1,3,3,1,4,3,0,3,1),(112,'2015-03-10 21:49:29','2015-08-29 14:46:00',1,30001975,25,26,9,10,14,8,11,13,2,0,1,0,3,2,4,3,1,6,3,2,8,4,3,3),(113,'2015-03-10 21:49:29','2015-08-29 14:46:00',1,30001066,5,2,4,3,1,5,5,4,5,3,0,2,3,1,5,27,7,2,3,0,1,1,6,6),(114,'2015-03-10 21:49:29','2015-08-29 14:46:00',1,30004639,7,5,3,21,20,30,1,3,7,6,4,2,2,3,3,1,5,2,1,3,4,7,7,6),(115,'2015-03-10 21:49:29','2015-08-29 14:46:00',1,30004611,0,0,1,0,0,0,1,1,7,12,14,9,7,9,3,1,4,10,10,7,13,16,11,8),(116,'2015-03-10 21:49:29','2015-08-29 14:46:00',1,30000861,54,166,129,136,88,68,72,87,179,271,676,328,273,131,129,145,67,36,79,55,79,122,135,133),(117,'2015-03-10 21:49:29','2015-03-10 21:49:29',1,30000425,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(118,'2015-03-10 21:49:29','2015-08-29 14:46:00',1,30000931,0,1,0,1,2,1,0,0,3,2,2,1,3,0,1,2,2,0,0,0,1,0,0,0),(119,'2015-03-10 21:49:29','2015-08-29 14:46:00',1,30004849,4,8,8,3,4,4,28,39,18,18,14,8,10,5,7,8,3,22,15,7,3,8,13,10),(120,'2015-03-10 21:49:29','2015-08-29 14:46:00',1,30003122,13,4,9,6,9,10,2,8,11,11,15,17,28,19,12,22,13,39,16,17,10,10,26,32),(121,'2015-03-10 21:49:29','2015-08-29 14:46:00',1,30003768,3,12,12,11,3,8,1,1,4,4,2,4,3,2,8,3,8,1,4,4,2,3,1,6),(122,'2015-03-10 21:49:29','2015-03-10 21:49:29',1,30000342,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(123,'2015-03-10 21:49:29','2015-08-29 14:46:00',1,30003785,24,14,16,18,16,20,39,14,32,27,28,25,8,52,41,21,22,6,9,6,25,23,14,20),(124,'2015-03-10 21:49:29','2015-08-29 14:46:00',1,30005117,6,15,13,10,10,5,7,3,7,4,7,4,6,12,9,2,3,9,7,40,15,5,1,2),(125,'2015-03-10 21:49:29','2015-08-29 14:46:00',1,30002317,2,0,2,3,6,2,4,6,3,5,1,0,0,1,1,2,1,3,0,0,0,1,3,3),(126,'2015-03-10 21:49:29','2015-08-29 14:46:00',1,30004728,21,7,6,5,11,13,7,16,10,11,10,9,14,19,18,27,13,12,8,18,26,25,16,8),(127,'2015-03-10 21:49:29','2015-08-29 14:46:00',1,30003624,1,5,2,5,5,7,6,2,1,0,3,3,3,9,5,2,8,4,5,4,2,2,3,4),(128,'2015-03-10 21:49:29','2015-08-29 14:46:00',1,30000963,0,0,0,2,2,0,3,2,8,2,3,0,4,1,1,0,4,3,7,5,2,2,5,4),(129,'2015-03-10 21:49:29','2015-03-10 21:49:29',1,30001524,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(130,'2015-03-10 21:49:29','2015-08-29 14:46:00',1,30004688,5,3,2,4,4,4,4,4,2,4,3,0,4,3,4,1,3,2,3,1,1,2,6,7),(131,'2015-03-10 21:49:29','2015-08-29 14:46:00',1,30004710,53,63,24,45,38,81,26,77,200,208,65,83,97,188,230,129,51,37,77,114,91,159,165,220),(132,'2015-03-10 21:49:29','2015-08-29 14:46:00',1,30004759,3,154,3,7,2,6,5,9,33,18,19,36,44,134,15,16,29,7,13,19,25,24,12,11),(133,'2015-03-10 21:49:29','2015-08-29 14:46:00',1,30004964,6,4,13,10,7,8,14,7,8,8,7,4,4,3,6,7,3,0,6,5,3,2,3,3),(134,'2015-03-10 21:49:29','2015-08-29 14:46:00',1,30003211,20,12,36,20,29,16,22,14,16,16,17,16,11,12,19,12,18,7,21,18,14,11,16,3),(135,'2015-03-10 21:49:29','2015-08-29 14:46:00',1,30004367,8,14,25,19,14,13,12,7,23,21,36,20,10,83,46,23,25,9,22,11,10,6,14,14),(136,'2015-03-10 21:49:29','2015-08-29 14:46:00',1,30002332,1,2,1,3,9,3,4,3,16,29,17,11,5,4,4,1,2,13,9,6,7,8,2,0),(137,'2015-03-10 21:49:29','2015-08-29 14:46:00',1,30004226,2,0,0,0,1,1,1,0,0,0,0,0,0,0,0,0,1,0,0,1,0,1,0,0),(138,'2015-03-10 21:49:29','2015-08-29 14:46:00',1,30001880,17,18,1,19,24,8,1,4,27,39,36,36,7,20,8,30,8,23,11,21,18,19,31,37),(139,'2015-03-10 21:49:29','2015-08-29 14:46:00',1,30001952,4,7,3,0,3,6,1,2,10,11,2,2,2,5,4,1,4,2,0,1,6,3,7,6),(140,'2015-03-10 21:49:29','2015-08-29 14:46:00',1,30002329,1,0,1,2,1,0,2,1,0,0,0,0,0,1,0,2,1,0,0,0,0,0,0,0),(141,'2015-03-10 21:49:29','2015-03-10 21:49:29',1,30000395,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(142,'2015-03-10 21:49:29','2015-08-29 14:46:00',1,30001540,7,7,5,10,15,4,2,11,23,12,7,2,9,3,3,7,7,0,1,11,5,3,1,0),(143,'2015-03-10 21:49:29','2015-08-29 14:46:00',1,30004920,9,25,17,25,20,26,19,20,15,17,28,28,28,28,21,6,15,13,78,6,15,13,18,17),(144,'2015-03-10 21:49:29','2015-08-29 14:46:00',1,30004393,12,15,13,14,29,16,24,15,23,16,33,32,27,15,9,12,10,4,10,5,14,10,14,10),(145,'2015-03-10 21:49:29','2015-08-29 14:46:00',1,30000445,8,6,10,20,12,27,9,13,42,62,75,68,60,87,82,64,64,18,31,34,60,82,65,45),(146,'2015-03-10 21:49:29','2015-08-29 14:46:00',1,30000962,6,7,3,3,4,2,7,10,8,5,4,5,6,4,3,0,5,7,9,9,6,5,6,4),(147,'2015-03-10 21:49:29','2015-08-29 14:46:00',1,30004501,10,14,7,7,10,11,10,6,3,3,14,13,7,27,26,32,17,6,16,12,15,10,8,15),(148,'2015-03-10 21:49:29','2015-08-29 14:46:00',1,30000579,31,81,77,155,44,70,44,34,59,59,14,22,70,46,48,59,36,139,266,61,178,161,28,30),(149,'2015-03-10 21:49:29','2015-08-29 14:46:00',1,30003952,1,0,2,1,1,6,5,0,5,7,13,12,7,9,7,2,12,1,6,3,0,0,0,1),(150,'2015-03-10 21:49:29','2015-08-29 14:46:00',1,30004189,2,3,3,1,2,11,0,2,9,8,8,12,17,2,10,9,7,1,1,6,15,13,7,10),(151,'2015-03-10 21:49:29','2015-08-29 14:46:00',1,30000294,2,13,8,3,3,5,1,4,10,16,10,12,2,26,5,4,13,2,4,2,8,7,5,8),(152,'2015-03-10 21:49:29','2015-08-29 14:46:00',1,30001081,3,10,2,4,3,10,12,20,14,17,21,15,11,16,26,9,19,3,4,0,14,16,22,15),(153,'2015-03-10 21:49:29','2015-08-29 14:46:00',1,30003233,3,1,2,1,0,0,0,2,1,0,0,1,0,1,3,3,1,0,0,0,1,1,0,0),(154,'2015-03-10 21:49:29','2015-08-29 14:46:00',1,30001170,8,18,12,14,10,6,14,13,26,21,25,22,51,23,25,15,17,13,46,39,18,12,16,10),(155,'2015-03-10 21:49:29','2015-08-29 14:46:00',1,30002365,12,32,17,31,20,17,31,21,6,7,15,14,24,21,28,36,14,15,26,10,12,8,5,9),(156,'2015-03-10 21:49:29','2015-03-10 21:49:29',1,30000336,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(157,'2015-03-10 21:49:29','2015-08-29 14:46:00',1,30003617,22,24,16,21,19,26,11,20,3,9,7,7,14,6,8,18,10,3,22,4,12,7,11,8),(158,'2015-03-10 21:49:29','2015-08-29 14:46:00',1,30000720,11,44,32,10,17,38,29,8,33,72,24,21,26,113,68,84,23,112,43,51,114,49,25,46),(159,'2015-03-10 21:49:29','2015-03-10 21:49:29',1,30000378,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(160,'2015-03-10 21:49:29','2015-08-29 14:46:00',1,30002866,15,9,10,13,12,12,6,6,17,19,14,17,18,31,28,14,36,2,5,24,25,30,15,23),(161,'2015-03-10 21:49:29','2015-03-10 21:49:29',1,30001452,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(162,'2015-03-10 21:49:29','2015-08-29 14:46:00',1,30000766,1,2,0,2,2,0,0,6,4,3,2,4,6,2,2,3,0,0,1,3,5,11,7,5),(163,'2015-03-10 21:49:29','2015-03-10 21:49:29',1,30000424,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(164,'2015-03-10 21:49:29','2015-08-29 14:46:00',1,30000680,32,102,40,69,72,49,44,24,37,57,30,58,66,122,86,45,34,10,51,178,58,41,49,32),(165,'2015-03-10 21:49:29','2015-08-29 14:46:00',1,30000286,19,20,19,8,6,6,8,14,13,6,3,9,14,13,12,6,46,4,11,9,14,15,8,9),(166,'2015-03-10 21:49:29','2015-08-29 14:46:00',1,30000288,19,15,19,5,6,6,11,12,10,8,5,7,12,14,13,19,12,2,7,13,10,11,11,12),(167,'2015-03-10 21:49:29','2015-08-29 14:46:00',1,30000836,4,16,7,4,34,7,4,16,2,8,3,1,1,6,7,1,8,3,0,5,2,0,0,1),(168,'2015-03-10 21:49:29','2015-08-29 14:46:00',1,30000611,4,10,12,13,6,11,3,5,9,10,106,69,14,14,7,14,20,12,17,23,23,22,17,17),(169,'2015-03-10 21:49:29','2015-08-29 14:46:00',1,30003668,10,12,23,6,7,53,8,4,9,18,5,3,11,8,8,10,9,0,6,4,1,1,5,5),(170,'2015-03-10 21:49:29','2015-03-10 21:49:29',1,30000349,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(171,'2015-03-10 21:49:29','2015-08-29 14:46:00',1,30002007,66,58,40,48,45,42,23,24,67,17,29,33,37,5,12,36,32,35,38,152,36,40,17,32),(172,'2015-03-10 21:49:29','2015-08-29 14:46:00',1,30001786,1,0,0,2,4,0,2,0,10,10,10,14,15,76,18,11,8,0,2,30,32,19,15,9),(173,'2015-03-10 21:49:29','2015-08-29 14:46:00',1,30004184,5,3,3,8,9,4,2,9,6,8,14,20,9,4,11,13,7,1,0,3,9,8,2,4),(174,'2015-03-10 21:49:29','2015-08-29 14:46:00',1,30004454,4,1,3,0,1,2,0,0,0,1,0,1,0,2,0,1,0,3,0,22,0,0,2,2),(175,'2015-03-10 21:49:29','2015-08-29 14:46:00',1,30002903,39,77,79,49,43,109,57,38,134,118,89,97,114,151,120,100,93,101,94,76,69,67,80,64),(176,'2015-03-10 21:49:29','2015-08-29 14:46:00',1,30000684,2,70,10,6,4,12,8,6,2,0,9,10,11,4,4,19,5,1,4,11,12,7,9,10),(177,'2015-03-10 21:49:29','2015-03-10 21:49:29',1,30001598,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(178,'2015-03-10 21:49:29','2015-08-29 14:46:00',1,30000756,14,15,2,7,8,3,8,28,7,3,14,9,9,8,12,14,41,5,14,3,4,8,5,5),(179,'2015-03-10 21:49:29','2015-08-29 14:46:00',1,30004492,6,14,2,1,0,8,3,2,1,0,0,0,0,0,1,1,0,13,2,3,1,5,5,5),(180,'2015-03-10 21:49:29','2015-08-29 14:46:00',1,30003754,33,71,91,44,27,42,18,22,120,117,102,81,209,160,54,139,51,34,114,63,85,182,88,57),(181,'2015-03-10 21:49:29','2015-08-29 14:46:00',1,30001864,11,10,12,13,15,13,10,6,41,55,75,87,42,57,51,59,104,10,18,41,202,76,100,108),(182,'2015-03-10 21:49:29','2015-08-29 14:46:00',1,30003188,3,60,4,1,1,3,2,0,3,4,3,2,4,10,6,2,4,6,7,2,6,2,3,2),(183,'2015-03-10 21:49:29','2015-08-29 14:46:00',1,30000473,0,3,0,0,0,0,0,0,3,2,8,5,3,4,2,11,3,1,137,14,23,24,11,3),(184,'2015-03-10 21:49:29','2015-08-29 14:46:00',1,30005139,8,9,0,2,4,5,7,9,0,0,0,0,1,1,2,2,2,0,0,2,6,5,1,1),(185,'2015-03-10 21:49:29','2015-08-29 14:46:00',1,30003238,2,0,0,0,0,1,0,0,20,19,13,13,0,2,0,1,0,0,0,0,0,0,0,1),(186,'2015-03-10 21:49:29','2015-08-29 14:46:00',1,30004734,0,1,1,0,0,1,1,2,20,22,10,2,4,19,13,8,3,9,9,0,0,0,1,0),(187,'2015-03-10 21:49:29','2015-08-29 14:46:00',1,30004467,6,6,11,13,16,20,10,28,31,44,50,43,34,57,56,44,41,41,22,75,62,34,34,40),(188,'2015-03-10 21:49:29','2015-08-29 14:46:00',1,30001784,3,0,1,4,9,0,3,3,16,24,15,21,29,52,35,33,23,7,9,33,48,28,35,35),(189,'2015-03-10 21:49:29','2015-08-29 14:46:00',1,30001258,43,33,33,33,17,20,15,22,32,30,31,33,41,32,48,31,41,62,24,64,92,33,18,19),(190,'2015-03-10 21:49:29','2015-08-29 14:46:00',1,30000832,1,6,5,2,34,1,1,17,1,1,5,1,12,4,4,3,3,2,1,4,1,1,6,12),(191,'2015-03-10 21:49:29','2015-08-29 14:46:00',1,30000996,8,18,35,25,30,22,23,20,45,59,12,12,20,67,39,15,4,3,11,12,36,57,39,29),(192,'2015-03-10 21:49:29','2015-08-29 14:46:00',1,30004071,2,18,4,6,7,5,2,2,9,19,5,8,9,9,10,8,8,12,9,120,16,18,7,14),(193,'2015-03-10 21:49:29','2015-08-29 14:46:00',1,30000714,3,17,8,3,2,4,1,10,1,0,8,8,0,1,1,11,4,2,2,3,7,1,10,6),(194,'2015-03-10 21:49:29','2015-08-29 14:46:00',1,30003171,19,9,4,4,6,8,5,31,11,10,23,23,4,27,21,9,3,3,3,0,6,5,6,8),(195,'2015-03-10 21:49:29','2015-08-29 14:46:00',1,30005182,2,2,0,4,3,0,1,0,11,14,2,4,5,3,2,1,3,0,1,7,25,30,9,8),(196,'2015-03-10 21:49:29','2015-08-29 14:46:00',1,30001949,4,5,7,0,18,22,2,2,12,10,8,5,23,12,8,3,12,1,12,7,9,6,6,3),(197,'2015-03-10 21:49:29','2015-08-29 14:46:00',1,30002342,3,6,6,10,5,10,8,5,3,4,7,10,3,35,26,9,1,10,25,1,24,19,1,0),(198,'2015-03-10 21:49:29','2015-08-29 14:46:00',1,30004394,2,0,2,8,5,0,8,0,2,1,3,4,2,0,1,2,1,1,5,7,1,0,1,1),(199,'2015-03-10 21:49:29','2015-08-29 14:46:00',1,30000898,40,46,47,36,38,31,10,37,20,17,20,20,36,26,29,34,39,10,28,22,52,50,18,20),(200,'2015-03-10 21:49:29','2015-08-29 14:46:00',1,30001965,28,9,28,49,33,55,41,54,51,74,118,117,29,83,85,20,65,11,6,12,42,35,46,38),(201,'2015-03-10 21:49:29','2015-08-29 14:46:00',1,30000292,18,14,21,15,18,12,4,13,43,49,42,54,21,52,21,18,42,14,11,24,39,40,25,42),(202,'2015-03-10 21:49:29','2015-08-29 14:46:00',1,30002424,50,29,25,30,23,44,14,19,20,21,26,29,24,24,13,30,41,10,26,37,30,24,22,19),(203,'2015-03-10 21:49:29','2015-03-10 21:49:29',1,30000403,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(204,'2015-03-10 21:49:29','2015-08-29 14:46:00',1,30001746,12,2,11,12,7,3,2,5,1,3,1,1,0,10,4,5,5,0,1,2,13,7,9,5),(205,'2015-03-10 21:49:29','2015-08-29 14:46:00',1,30001136,0,1,0,0,0,0,0,0,7,8,0,0,0,2,4,1,2,0,1,4,1,1,1,1),(206,'2015-03-10 21:49:29','2015-08-29 14:46:00',1,30002283,3,18,13,7,12,8,8,5,12,5,7,9,11,8,5,7,6,17,4,41,11,9,5,2),(207,'2015-03-10 21:49:29','2015-08-29 14:46:00',1,30003370,2,2,7,4,7,2,4,5,3,3,1,2,5,6,5,4,2,7,0,1,6,6,1,1),(208,'2015-03-10 21:49:29','2015-08-29 14:46:00',1,30002455,23,9,24,26,20,20,14,20,8,13,12,26,5,10,11,22,13,9,6,7,14,21,19,9),(209,'2015-03-10 21:49:29','2015-08-29 14:46:00',1,30004693,13,9,11,8,9,11,12,16,19,21,10,33,35,26,13,12,19,10,9,25,35,16,11,23),(210,'2015-03-10 21:49:29','2015-08-29 14:46:00',1,30001352,2,3,1,2,7,2,0,3,2,0,0,4,0,1,1,1,1,1,3,1,1,2,1,1),(211,'2015-03-10 21:49:29','2015-08-29 14:46:00',1,30001774,7,2,3,7,12,22,4,10,23,43,11,7,18,7,4,2,10,7,4,3,5,5,18,15),(212,'2015-03-10 21:49:29','2015-08-29 14:46:00',1,30001860,15,22,8,5,8,20,19,16,155,158,67,63,78,92,86,65,32,17,17,61,211,21,42,34),(213,'2015-03-10 21:49:29','2015-08-29 14:46:00',1,30000881,0,2,3,2,1,3,2,2,0,1,3,1,3,3,6,7,5,2,1,6,5,4,0,0),(214,'2015-03-10 21:49:29','2015-08-29 14:46:00',1,30001169,24,16,22,14,9,12,13,17,54,67,24,28,69,18,30,13,23,16,25,17,34,31,15,21),(215,'2015-03-10 21:49:29','2015-08-29 14:46:00',1,30004531,1,4,1,2,1,1,2,1,1,3,4,2,23,9,10,3,2,1,0,3,0,1,1,1),(216,'2015-03-10 21:49:29','2015-08-29 14:46:00',1,30000757,5,28,13,9,8,8,11,24,32,20,12,8,6,10,13,15,16,5,22,5,4,10,5,10),(217,'2015-03-10 21:49:29','2015-03-10 21:49:29',1,30001510,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(218,'2015-03-10 21:49:29','2015-08-29 14:46:00',1,30002175,13,32,13,20,23,23,17,19,20,28,30,20,11,46,54,17,17,2,8,26,21,18,13,11),(219,'2015-03-10 21:49:29','2015-08-29 14:46:00',1,30002909,38,101,42,40,57,62,41,50,88,86,65,58,182,169,146,105,80,107,110,74,93,103,69,80),(220,'2015-03-10 21:49:29','2015-08-29 14:46:00',1,30003332,9,32,17,25,17,41,4,11,8,12,23,13,8,8,10,10,14,13,31,5,21,17,10,3),(221,'2015-03-10 21:49:29','2015-08-29 14:46:00',1,30004830,10,10,25,12,13,20,31,4,3,7,0,1,3,8,4,4,2,5,4,3,3,1,7,7),(222,'2015-03-10 21:49:29','2015-08-29 14:46:00',1,30001319,6,4,3,4,3,2,1,2,2,1,0,4,0,1,2,0,3,1,4,4,6,5,1,2),(223,'2015-03-10 21:49:29','2015-08-29 14:46:00',1,30003304,6,2,1,2,4,1,0,1,1,1,0,1,0,6,9,2,1,1,0,0,4,7,0,0),(224,'2015-03-10 21:49:29','2015-08-29 14:46:00',1,30002905,61,228,208,69,92,210,92,66,323,287,224,193,263,292,210,136,176,108,173,159,277,238,149,143),(225,'2015-03-10 21:49:29','2015-08-29 14:46:00',1,30003182,5,5,6,2,1,8,6,4,4,4,3,0,6,9,8,4,7,3,3,2,1,1,3,5),(226,'2015-03-10 21:49:29','2015-03-10 21:49:29',1,30001615,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(227,'2015-03-10 21:49:29','2015-08-29 14:46:00',1,30001333,6,10,5,16,12,8,7,8,22,24,36,32,21,30,22,6,14,10,11,22,14,9,20,10),(228,'2015-03-10 21:49:29','2015-08-29 14:46:00',1,30004447,1,3,1,1,1,0,0,11,0,2,1,0,4,1,1,2,0,1,0,0,7,3,0,1),(229,'2015-03-10 21:49:29','2015-08-29 14:46:00',1,30001770,2,2,5,4,4,1,1,2,0,8,1,0,0,0,0,3,0,0,3,0,1,1,1,1),(230,'2015-03-10 21:49:29','2015-08-29 14:46:00',1,30003774,39,35,52,34,66,14,16,31,53,66,44,38,71,58,41,49,83,74,31,44,50,41,74,85),(231,'2015-03-10 21:49:29','2015-08-29 14:46:00',1,30005096,4,18,12,11,11,2,7,1,5,4,6,5,4,15,8,3,3,2,4,5,11,5,1,4),(232,'2015-03-10 21:49:29','2015-08-29 14:46:00',1,30001799,0,1,0,1,2,0,0,0,7,1,1,2,17,4,5,16,8,0,2,6,7,2,2,4),(233,'2015-03-10 21:49:29','2015-08-29 14:46:00',1,30003275,11,23,11,13,13,37,11,11,14,28,7,30,8,15,15,33,16,15,13,25,34,34,23,22),(234,'2015-03-10 21:49:29','2015-08-29 14:46:00',1,30000909,0,7,8,5,8,6,9,2,2,2,7,9,4,9,5,4,7,4,5,6,2,7,6,21),(235,'2015-03-10 21:49:29','2015-08-29 14:46:00',1,30001103,3,38,40,12,17,31,10,3,41,35,25,16,31,18,14,11,1,6,9,5,68,54,11,10),(236,'2015-03-10 21:49:29','2015-08-29 14:46:00',1,30001116,0,0,1,0,0,0,3,0,1,1,1,1,2,0,0,2,2,0,2,4,0,0,0,0),(237,'2015-03-10 21:49:29','2015-08-29 14:46:00',1,30000823,6,14,8,7,3,2,1,4,12,13,102,64,11,13,8,7,26,7,15,5,12,12,5,9),(238,'2015-03-10 21:49:29','2015-08-29 14:46:00',1,30000452,1,4,2,1,0,3,1,1,7,12,15,8,35,36,28,32,16,27,19,53,25,3,14,11),(239,'2015-03-10 21:49:29','2015-08-29 14:46:00',1,30004466,1,1,1,2,3,1,1,4,11,7,10,10,2,16,7,24,11,22,13,6,2,2,7,11),(240,'2015-03-10 21:49:29','2015-03-10 21:49:29',1,30001642,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(241,'2015-03-10 21:49:29','2015-08-29 14:46:00',1,30004764,8,47,8,3,0,2,1,4,11,4,16,36,39,123,7,7,40,4,8,26,17,26,12,22),(242,'2015-03-10 21:49:29','2015-08-29 14:46:00',1,30004019,28,129,34,29,45,39,47,23,16,17,34,37,38,18,31,26,32,49,21,25,31,15,13,18),(243,'2015-03-10 21:49:29','2015-03-10 21:49:29',1,30000341,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(244,'2015-03-10 21:49:29','2015-08-29 14:46:00',1,30003356,9,8,3,8,5,2,0,7,6,7,3,0,10,6,6,10,1,9,8,6,3,3,1,3),(245,'2015-03-10 21:49:29','2015-03-10 21:49:29',1,30000343,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(246,'2015-03-10 21:49:29','2015-08-29 14:46:00',1,30004004,62,22,26,17,26,10,10,27,26,32,47,23,141,35,24,14,18,37,15,14,21,16,30,36),(247,'2015-03-10 21:49:29','2015-08-29 14:46:00',1,30003231,5,2,13,5,4,4,1,3,0,0,1,1,0,1,2,1,2,1,0,0,1,1,2,0),(248,'2015-03-10 21:49:29','2015-08-29 14:46:00',1,30000448,2,5,7,2,1,6,9,0,44,31,22,19,52,50,42,39,26,80,130,62,100,99,36,28),(249,'2015-03-10 21:49:29','2015-08-29 14:46:00',1,30004358,6,8,14,11,16,48,27,18,8,17,11,12,5,7,12,11,6,6,6,5,3,5,6,5),(250,'2015-03-10 21:49:29','2015-08-29 14:46:00',1,30001199,18,16,30,18,18,33,19,10,106,111,73,71,341,238,216,89,78,103,193,153,106,134,97,52),(251,'2015-03-10 21:49:29','2015-08-29 14:46:00',1,30001820,2,1,2,1,1,2,0,2,18,16,24,5,0,0,0,0,0,0,0,1,0,0,0,0),(252,'2015-03-10 21:49:29','2015-08-29 14:46:00',1,30003675,8,6,9,8,7,8,8,9,1,0,0,5,1,5,4,8,14,1,0,1,2,2,0,0),(253,'2015-03-10 21:49:29','2015-08-29 14:46:00',1,30001212,14,12,9,1,5,6,9,7,2,4,10,7,6,5,2,9,8,7,5,7,3,1,6,9),(254,'2015-03-10 21:49:29','2015-08-29 14:46:00',1,30004336,8,15,12,14,10,5,8,11,6,4,4,2,20,49,11,4,9,2,11,13,7,12,14,12),(255,'2015-03-10 21:49:29','2015-08-29 14:46:00',1,30002582,0,4,3,3,0,10,1,7,10,5,11,10,13,3,2,6,8,5,6,19,2,8,4,7),(256,'2015-03-10 21:49:29','2015-03-10 21:49:29',1,30001500,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(257,'2015-03-10 21:49:29','2015-08-29 14:46:00',1,30004405,4,5,17,5,6,3,7,21,11,8,13,13,26,23,34,33,16,15,14,15,61,27,35,27),(258,'2015-03-10 21:49:29','2015-08-29 14:46:00',1,30003632,26,35,21,19,17,24,18,11,13,25,15,7,10,8,3,12,10,3,11,3,5,12,10,6),(259,'2015-03-10 21:49:29','2015-08-29 14:46:00',1,30000534,17,16,7,6,4,2,5,9,8,6,8,15,3,15,23,12,13,21,12,9,7,19,15,17),(260,'2015-03-10 21:49:29','2015-08-29 14:46:00',1,30003329,21,46,38,34,28,69,28,32,24,21,13,11,45,11,13,7,12,10,42,22,16,19,30,20),(261,'2015-03-10 21:49:29','2015-08-29 14:46:00',1,30004387,11,4,4,4,10,4,8,13,0,1,0,1,2,2,3,5,7,1,3,1,1,3,1,1),(262,'2015-03-10 21:49:29','2015-08-29 14:46:00',1,30004722,45,27,43,32,50,30,26,70,71,47,51,39,48,60,85,68,46,36,39,63,125,110,31,46),(263,'2015-03-10 21:49:29','2015-08-29 14:46:00',1,30004786,5,0,6,0,0,0,7,5,7,4,9,6,6,9,6,12,3,8,3,2,3,10,0,2),(264,'2015-03-10 21:49:29','2015-08-29 14:46:00',1,30001841,5,4,5,1,4,4,2,4,4,6,6,8,5,6,2,4,10,1,3,2,1,1,1,2),(265,'2015-03-10 21:49:29','2015-08-29 14:46:00',1,30004668,7,6,4,3,4,8,16,3,8,15,21,16,18,15,18,18,14,16,11,9,6,10,13,11),(266,'2015-03-10 21:49:29','2015-08-29 14:46:00',1,30003642,4,4,1,5,6,2,0,3,1,1,3,3,13,5,6,1,6,2,0,0,2,6,4,2),(267,'2015-03-10 21:49:29','2015-08-29 14:46:00',1,30004517,9,24,16,9,10,17,19,24,11,15,2,5,39,74,70,29,27,3,4,7,23,33,22,12),(268,'2015-03-10 21:49:29','2015-08-29 14:46:00',1,30002919,4,23,2,5,4,3,13,7,8,11,8,9,1,7,6,4,2,1,4,1,3,3,11,6),(269,'2015-03-10 21:49:29','2015-08-29 14:46:00',1,30004928,44,57,38,31,19,10,11,10,13,12,10,10,24,18,10,10,15,7,8,9,28,27,12,9),(270,'2015-03-10 21:49:29','2015-08-29 14:46:00',1,30003312,11,27,5,10,3,8,10,2,21,19,9,13,29,37,36,14,4,16,6,9,10,19,14,14),(271,'2015-03-10 21:49:29','2015-08-29 14:46:00',1,30001157,40,79,69,37,26,44,39,66,182,196,187,112,206,203,300,101,143,197,109,169,142,233,121,107),(272,'2015-03-10 21:49:29','2015-08-29 14:46:00',1,30001947,1,6,3,7,4,3,6,1,6,10,6,6,2,7,12,5,9,1,3,4,4,6,3,2),(273,'2015-03-10 21:49:29','2015-08-29 14:46:00',1,30001868,8,20,19,15,11,8,8,8,52,279,192,41,38,53,55,46,32,17,17,24,53,43,404,64),(274,'2015-03-10 21:49:29','2015-08-29 14:46:00',1,30000535,0,0,0,0,0,0,0,0,2,4,1,1,2,1,4,1,0,0,0,1,1,1,0,0),(275,'2015-03-10 21:49:29','2015-08-29 14:46:00',1,30004632,10,12,11,10,8,4,3,12,21,5,7,9,16,20,26,17,13,27,27,23,29,17,19,15),(276,'2015-03-10 21:49:29','2015-08-29 14:46:00',1,30000829,2,5,1,1,3,4,2,11,3,1,3,4,6,5,3,6,18,2,14,4,7,8,5,5),(277,'2015-03-10 21:49:29','2015-08-29 14:46:00',1,30002444,26,15,38,26,16,30,8,18,26,22,29,26,26,17,17,27,12,9,16,23,134,67,33,36),(278,'2015-03-10 21:49:29','2015-08-29 14:46:00',1,30004766,26,22,2,3,3,5,8,39,44,40,23,19,46,44,40,58,21,12,15,41,59,53,43,43),(279,'2015-03-10 21:49:29','2015-08-29 14:46:00',1,30001281,29,16,20,54,54,40,14,11,27,48,73,68,19,93,97,33,8,21,53,104,17,18,16,16),(280,'2015-03-10 21:49:29','2015-08-29 14:46:00',1,30000798,9,44,14,34,36,17,31,15,4,4,10,5,6,9,7,11,11,0,0,1,5,8,8,9),(281,'2015-03-10 21:49:29','2015-08-29 14:46:00',1,30004000,0,1,1,0,1,2,1,0,2,6,16,14,5,3,8,4,0,0,4,2,3,0,3,4),(282,'2015-03-10 21:49:29','2015-03-10 21:49:29',1,30000428,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(283,'2015-03-10 21:49:29','2015-08-29 14:46:00',1,30003786,91,70,43,47,89,52,31,34,52,66,73,53,44,69,71,64,58,30,39,59,58,46,78,75),(284,'2015-03-10 21:49:29','2015-08-29 14:46:00',1,30004036,1,0,1,3,1,2,1,0,1,0,6,6,0,3,1,0,1,2,1,2,0,1,1,2),(285,'2015-03-10 21:49:29','2015-08-29 14:46:00',1,30003609,7,17,11,9,9,16,4,11,5,7,6,7,7,11,14,3,5,4,3,2,2,3,9,6),(286,'2015-03-10 21:49:29','2015-03-10 21:49:29',1,30001474,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(287,'2015-03-10 21:49:29','2015-08-29 14:46:00',1,30001553,4,13,3,7,5,1,5,2,3,3,3,1,8,0,0,6,12,0,2,8,9,9,8,8),(288,'2015-03-10 21:49:29','2015-08-29 14:46:00',1,30004390,30,23,26,50,47,19,48,28,39,29,55,53,32,21,29,18,12,15,38,18,18,16,15,6),(289,'2015-03-10 21:49:29','2015-08-29 14:46:00',1,30004900,1,0,1,2,2,2,0,1,3,0,2,2,1,2,1,1,0,0,1,2,0,1,5,3),(290,'2015-03-10 21:49:29','2015-08-29 14:46:00',1,30002302,6,10,2,4,5,10,4,1,7,26,147,50,6,8,10,3,1,1,17,3,8,7,5,2),(291,'2015-03-10 21:49:29','2015-08-29 14:46:00',1,30000876,5,11,23,7,3,1,13,12,6,6,3,4,0,0,0,2,0,4,1,4,2,3,7,8),(292,'2015-03-10 21:49:29','2015-08-29 14:46:00',1,30001200,23,26,26,21,27,47,23,36,232,214,42,42,296,361,359,49,133,67,96,136,220,170,126,105),(293,'2015-03-10 21:49:29','2015-08-29 14:46:00',1,30003748,154,191,56,60,95,90,38,66,129,140,139,101,430,103,72,58,73,53,202,831,95,71,65,67),(294,'2015-03-10 21:49:29','2015-08-29 14:46:00',1,30002325,4,2,1,0,1,0,1,0,0,0,0,0,0,0,0,1,0,0,0,0,1,2,2,0),(295,'2015-03-10 21:49:29','2015-08-29 14:46:00',1,30004520,8,4,14,12,10,7,4,4,5,4,6,6,19,6,2,7,23,6,1,2,3,17,1,1),(296,'2015-03-10 21:49:29','2015-08-29 14:46:00',1,30000228,34,13,20,22,33,28,20,18,2,2,8,8,4,6,11,7,15,9,1,15,15,16,6,8),(297,'2015-03-10 21:49:29','2015-08-29 14:46:00',1,30002357,17,16,21,23,21,8,2,0,0,0,0,0,2,0,0,0,1,0,2,4,2,1,3,0),(298,'2015-03-10 21:49:29','2015-08-29 14:46:00',1,30002937,13,18,4,8,7,6,5,6,6,5,14,13,13,7,8,7,3,6,2,3,7,8,9,5),(299,'2015-03-10 21:49:29','2015-08-29 14:46:00',1,30003781,76,69,47,40,89,58,37,48,117,110,87,63,86,140,135,77,65,40,49,68,68,94,91,100),(300,'2015-03-10 21:49:29','2015-08-29 14:46:00',1,30004403,8,6,14,6,4,17,3,3,2,1,0,0,5,1,1,2,8,11,26,2,1,2,1,1),(301,'2015-03-10 21:49:29','2015-08-29 14:46:00',1,30003322,20,42,21,13,18,22,16,21,10,12,15,10,27,33,26,22,21,13,11,18,32,44,10,16),(302,'2015-03-10 21:49:29','2015-08-29 14:46:00',1,30004419,14,21,20,38,34,12,16,45,13,14,15,14,37,29,34,28,35,37,64,37,68,26,36,38),(303,'2015-03-10 21:49:29','2015-08-29 14:46:00',1,30004808,16,15,30,20,15,22,66,43,15,43,27,20,33,26,33,23,14,10,32,35,19,18,14,12),(304,'2015-03-10 21:49:29','2015-08-29 14:46:00',1,30005166,2,0,2,5,3,3,12,3,4,4,4,6,1,9,11,1,9,0,2,6,1,3,2,3),(305,'2015-03-10 21:49:29','2015-08-29 14:46:00',1,30003324,10,3,18,21,18,40,5,16,11,12,13,8,14,10,7,8,19,37,24,27,11,12,110,107),(306,'2015-03-10 21:49:29','2015-08-29 14:46:00',1,30002917,5,15,6,13,10,9,9,7,33,38,44,37,24,37,20,20,19,13,12,17,13,13,49,31),(307,'2015-03-10 21:49:29','2015-08-29 14:46:00',1,30004951,11,43,20,12,9,21,12,22,40,33,8,5,27,24,49,5,10,7,31,21,18,16,19,20),(308,'2015-03-10 21:49:29','2015-08-29 14:46:00',1,30004682,8,8,15,17,11,12,15,10,20,38,25,15,15,25,28,9,8,3,5,24,21,26,23,18),(309,'2015-03-10 21:49:29','2015-08-29 14:46:00',1,30000590,2,4,1,0,0,0,1,2,9,4,0,0,5,14,10,2,3,1,0,1,6,4,4,4),(310,'2015-03-10 21:49:29','2015-08-29 14:46:00',1,30004868,8,6,8,6,5,1,15,5,6,2,4,1,2,7,8,8,1,4,1,8,1,10,10,11),(311,'2015-03-10 21:49:29','2015-08-29 14:46:00',1,30002921,48,168,118,50,53,36,40,83,56,70,46,63,88,126,108,88,30,145,147,57,64,65,71,43),(312,'2015-03-10 21:49:29','2015-08-29 14:46:00',1,30000733,5,7,2,3,1,2,2,4,0,0,0,1,1,0,2,2,0,0,2,3,1,1,2,3),(313,'2015-03-10 21:49:29','2015-08-29 14:46:00',1,30002486,2,1,3,2,2,7,4,3,4,3,4,4,2,1,1,2,1,1,2,3,2,6,1,1),(314,'2015-03-10 21:49:29','2015-08-29 14:46:00',1,30002938,55,67,54,53,42,77,90,94,51,63,39,31,39,55,53,51,25,16,30,40,45,33,37,33),(315,'2015-03-10 21:49:29','2015-08-29 14:46:00',1,30000782,12,35,14,27,26,15,9,19,6,6,12,8,8,11,10,5,5,0,14,4,3,6,7,8),(316,'2015-03-10 21:49:29','2015-08-29 14:46:00',1,30002449,15,13,24,28,28,18,6,14,32,31,48,42,8,24,19,26,29,12,13,21,62,40,16,23),(317,'2015-03-10 21:49:29','2015-08-29 14:46:00',1,30002011,12,14,12,9,3,13,4,6,3,5,7,16,2,11,18,15,13,8,22,33,17,17,11,9),(318,'2015-03-10 21:49:29','2015-08-29 14:46:00',1,30003191,8,86,9,10,8,14,17,6,6,7,3,2,6,8,4,4,4,7,14,7,12,11,7,5),(319,'2015-03-10 21:49:29','2015-08-29 14:46:00',1,30004555,36,47,32,23,26,18,14,38,179,145,41,46,420,32,20,46,46,60,96,237,39,48,16,14),(320,'2015-03-10 21:49:29','2015-08-29 14:46:00',1,30004628,0,0,2,3,3,2,9,4,84,125,1,30,0,11,11,1,1,7,1,3,5,2,3,1),(321,'2015-03-10 21:49:29','2015-08-29 14:46:00',1,30001260,96,25,15,23,19,12,16,42,28,22,25,30,76,20,22,37,39,49,31,89,65,57,25,29),(322,'2015-03-10 21:49:29','2015-08-29 14:46:00',1,30005149,12,1,5,4,5,0,0,10,1,0,1,4,0,0,1,4,1,0,5,0,7,5,2,0),(323,'2015-03-10 21:49:29','2015-08-29 14:46:00',1,30004014,12,12,9,19,18,1,0,8,9,7,9,10,21,15,16,13,6,6,9,13,17,21,15,24),(324,'2015-03-10 21:49:29','2015-08-29 14:46:00',1,30000730,11,21,2,3,3,2,6,6,23,15,18,16,6,7,9,4,9,13,8,10,3,7,5,6),(325,'2015-03-10 21:49:29','2015-08-29 14:46:00',1,30004317,6,23,1,16,24,3,10,16,7,16,14,9,4,23,15,6,5,2,4,3,3,4,9,3),(326,'2015-03-10 21:49:29','2015-08-29 14:46:00',1,30001318,5,2,3,1,1,2,1,2,3,3,3,6,0,1,1,1,3,2,4,2,3,3,1,1),(327,'2015-03-10 21:49:29','2015-08-29 14:46:00',1,30002015,28,39,41,33,29,93,17,15,19,9,15,12,29,16,17,19,27,38,16,57,18,23,13,19),(328,'2015-03-10 21:49:29','2015-08-29 14:46:00',1,30004360,7,6,26,14,14,51,30,29,2,2,9,7,4,5,10,9,3,9,4,4,2,10,4,5),(329,'2015-03-10 21:49:29','2015-08-29 14:46:00',1,30000718,28,60,47,67,68,44,33,15,53,48,28,36,156,165,85,68,22,66,97,110,136,96,29,37),(330,'2015-03-10 21:49:29','2015-08-29 14:46:00',1,30002441,9,4,8,16,12,7,3,8,6,7,6,7,3,4,2,7,10,16,25,6,7,6,12,7),(331,'2015-03-10 21:49:29','2015-08-29 14:46:00',1,30000576,30,47,29,27,24,43,14,30,1,1,0,0,1,0,6,0,5,3,0,1,0,0,2,1),(332,'2015-03-10 21:49:29','2015-08-29 14:46:00',1,30004553,24,52,24,21,28,20,8,33,170,176,48,42,315,28,14,43,33,42,51,158,24,39,13,10),(333,'2015-03-10 21:49:29','2015-08-29 14:46:00',1,30002144,0,2,0,3,3,1,1,2,3,2,0,1,0,0,2,0,1,0,0,0,0,0,3,2),(334,'2015-03-10 21:49:29','2015-08-29 14:46:00',1,30004007,1,6,1,21,19,3,2,21,11,5,3,1,32,10,10,0,1,1,1,1,0,0,0,1),(335,'2015-03-10 21:49:29','2015-08-29 14:46:00',1,30000240,17,23,38,35,24,50,25,63,13,37,16,20,48,41,39,28,25,30,53,18,68,40,19,14),(336,'2015-03-10 21:49:29','2015-03-10 21:49:29',1,30000431,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(337,'2015-03-10 21:49:29','2015-08-29 14:46:00',1,30004828,2,7,1,7,4,6,0,1,1,0,2,1,0,1,0,0,3,4,2,2,2,0,1,1),(338,'2015-03-10 21:49:29','2015-08-29 14:46:00',1,30003366,4,0,0,2,4,3,4,5,0,3,1,1,3,0,1,0,0,1,0,1,2,1,1,0),(339,'2015-03-10 21:49:29','2015-08-29 14:46:00',1,30005121,1,12,9,7,0,0,1,0,1,0,2,1,0,2,5,0,0,0,0,0,3,0,0,1),(340,'2015-03-10 21:49:29','2015-08-29 14:46:00',1,30002613,2,5,8,13,2,3,0,4,5,3,8,11,10,48,10,11,8,3,19,5,5,4,17,19),(341,'2015-03-10 21:49:29','2015-08-29 14:46:00',1,30000582,11,2,1,0,1,0,1,0,2,3,4,2,0,3,3,9,2,11,0,2,34,40,7,4),(342,'2015-03-10 21:49:29','2015-08-29 14:46:00',1,30003105,17,12,15,8,5,17,11,22,36,22,28,20,88,94,93,50,47,36,35,93,72,48,70,63),(343,'2015-03-10 21:49:29','2015-08-29 14:46:00',1,30004811,4,14,23,17,12,22,58,8,11,7,17,15,21,19,14,11,13,12,19,19,15,16,15,14),(344,'2015-03-10 21:49:29','2015-08-29 14:46:00',1,30004165,10,13,17,10,3,6,3,5,19,32,10,10,8,11,9,2,7,6,1,3,4,3,8,9),(345,'2015-03-10 21:49:29','2015-08-29 14:46:00',1,30002344,8,2,4,7,9,1,11,1,5,5,14,9,12,7,5,6,24,21,29,14,9,6,5,2),(346,'2015-03-10 21:49:29','2015-08-29 14:46:00',1,30001867,9,23,10,5,5,5,3,5,42,266,182,45,23,39,41,37,31,13,11,20,47,40,100,50),(347,'2015-03-10 21:49:29','2015-08-29 14:46:00',1,30001894,5,16,9,7,4,5,10,9,16,21,32,37,32,42,51,37,21,19,22,18,43,22,54,37),(348,'2015-03-10 21:49:29','2015-08-29 14:46:00',1,30002864,15,10,3,9,18,19,6,5,4,6,5,5,1,2,2,5,1,0,1,2,7,4,5,3),(349,'2015-03-10 21:49:29','2015-08-29 14:46:00',1,30004224,0,0,0,0,0,0,11,1,0,0,2,1,0,2,0,0,0,1,1,0,1,0,0,0),(350,'2015-03-10 21:49:29','2015-08-29 14:46:00',1,30001349,9,24,7,8,9,7,7,7,7,13,6,6,13,12,10,10,9,6,14,27,9,15,5,6),(351,'2015-03-10 21:49:29','2015-08-29 14:46:00',1,30002350,7,9,7,3,5,10,5,4,7,3,2,4,13,10,7,13,7,6,5,33,7,3,12,31),(352,'2015-03-10 21:49:29','2015-08-29 14:46:00',1,30001340,1,2,3,1,1,2,0,1,5,9,4,4,4,5,3,0,1,0,1,2,0,2,1,0),(353,'2015-03-10 21:49:29','2015-08-29 14:46:00',1,30002941,31,30,13,19,20,14,24,43,26,21,13,7,9,29,29,15,8,6,8,5,8,8,19,6),(354,'2015-03-10 21:49:29','2015-08-29 14:46:00',1,30002616,0,6,4,6,0,4,1,2,0,4,7,5,0,0,0,7,1,0,9,0,6,6,16,16),(355,'2015-03-10 21:49:29','2015-08-29 14:46:00',1,30003131,20,14,15,40,38,34,22,24,25,24,24,46,59,200,185,23,21,25,34,35,46,44,28,35),(356,'2015-03-10 21:49:29','2015-08-29 14:46:00',1,30004878,50,54,38,77,70,90,45,47,74,50,41,26,50,47,64,51,34,12,133,163,49,65,59,41),(357,'2015-03-10 21:49:29','2015-08-29 14:46:00',1,30000255,11,16,27,20,5,20,2,0,9,9,6,14,6,14,13,9,9,10,5,5,14,14,7,14),(358,'2015-03-10 21:49:29','2015-08-29 14:46:00',1,30004949,8,6,7,10,9,20,11,7,10,13,11,8,16,10,7,17,7,4,10,11,12,15,20,18),(359,'2015-03-10 21:49:29','2015-08-29 14:46:00',1,30000251,37,18,15,18,11,26,7,16,8,13,19,19,12,17,16,17,8,17,9,4,19,15,23,18),(360,'2015-03-10 21:49:29','2015-08-29 14:46:00',1,30004009,108,15,25,25,27,6,22,43,25,35,34,33,95,20,23,36,36,38,17,45,35,38,17,32),(361,'2015-03-10 21:49:29','2015-08-29 14:46:00',1,30003708,143,212,52,47,93,65,22,71,141,113,96,68,447,106,72,54,53,83,215,466,83,53,46,44),(362,'2015-03-10 21:49:29','2015-08-29 14:46:00',1,30005165,3,1,0,0,0,0,1,0,0,0,0,0,0,1,1,0,1,0,0,0,0,0,0,3),(363,'2015-03-10 21:49:29','2015-08-29 14:46:00',1,30004188,5,1,10,4,7,16,4,8,17,19,15,13,2,14,10,13,11,1,0,0,40,55,20,22),(364,'2015-03-10 21:49:29','2015-08-29 14:46:00',1,30001882,2,6,0,6,3,6,0,3,9,11,25,17,3,8,4,9,5,4,6,17,11,7,9,12),(365,'2015-03-10 21:49:29','2015-08-29 14:46:00',1,30004415,0,1,1,0,0,1,5,6,1,1,1,1,2,1,2,2,0,0,0,0,0,1,1,2),(366,'2015-03-10 21:49:29','2015-08-29 14:46:00',1,30001815,7,11,6,9,7,5,0,12,35,33,42,15,20,26,42,12,14,7,12,20,31,27,16,12),(367,'2015-03-10 21:49:29','2015-08-29 14:46:00',1,30003706,86,102,87,105,139,88,56,120,372,316,99,78,433,178,207,93,96,224,227,483,77,106,108,134),(368,'2015-03-10 21:49:29','2015-08-29 14:46:00',1,30004504,33,19,27,13,15,23,29,23,30,29,48,42,31,37,49,61,31,21,28,16,23,23,19,33),(369,'2015-03-10 21:49:29','2015-03-10 21:49:29',1,30000376,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(370,'2015-03-10 21:49:29','2015-08-29 14:46:00',1,30000795,6,12,4,6,11,23,7,11,5,4,6,12,13,14,6,6,21,4,6,6,1,2,2,4),(371,'2015-03-10 21:49:29','2015-08-29 14:46:00',1,30002469,6,5,16,9,10,6,5,6,3,3,11,14,2,0,1,16,5,1,7,4,7,5,1,1),(372,'2015-03-10 21:49:29','2015-08-29 14:46:00',1,30001578,3,10,8,11,19,2,1,0,4,2,0,0,0,0,0,0,5,9,1,0,0,0,0,5),(373,'2015-03-10 21:49:29','2015-08-29 14:46:00',1,30000749,0,4,1,0,0,0,1,7,0,1,2,3,5,2,2,6,3,2,0,0,1,3,1,0),(374,'2015-03-10 21:49:29','2015-08-29 14:46:00',1,30004384,40,23,25,22,26,23,38,15,19,27,13,8,25,21,27,31,31,11,25,19,18,22,27,18),(375,'2015-03-10 21:49:29','2015-08-29 14:46:00',1,30002154,5,1,2,0,4,4,0,5,1,0,2,4,5,3,6,5,2,0,16,31,8,8,2,3),(376,'2015-03-10 21:49:29','2015-08-29 14:46:00',1,30000701,4,2,2,0,2,0,0,1,2,3,2,7,5,3,6,4,9,0,0,2,7,9,6,3),(377,'2015-03-10 21:49:29','2015-08-29 14:46:00',1,30005159,7,6,7,17,14,5,14,9,20,20,15,11,3,18,22,1,18,0,5,9,9,14,5,9),(378,'2015-03-10 21:49:29','2015-08-29 14:46:00',1,30000536,20,11,3,2,5,0,1,8,5,4,6,6,6,10,18,78,12,120,31,13,4,12,4,4),(379,'2015-03-10 21:49:29','2015-08-29 14:46:00',1,30005154,8,13,9,5,5,5,5,3,8,5,4,3,8,16,15,13,14,18,12,10,13,11,23,31),(380,'2015-03-10 21:49:29','2015-03-10 21:49:29',1,30000361,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(381,'2015-03-10 21:49:29','2015-08-29 14:46:00',1,30001858,20,27,18,13,17,27,21,15,123,295,273,144,98,126,109,105,128,21,27,81,237,100,165,136),(382,'2015-03-10 21:49:29','2015-08-29 14:46:00',1,30004216,2,3,0,0,0,1,0,4,2,1,0,2,8,7,2,2,1,0,4,1,1,1,4,6),(383,'2015-03-10 21:49:29','2015-08-29 14:46:00',1,30000239,7,9,17,7,4,15,9,22,2,20,4,5,12,12,14,7,5,12,24,6,10,9,5,6),(384,'2015-03-10 21:49:29','2015-08-29 14:46:00',1,30001785,1,4,7,2,1,0,2,0,6,5,0,0,2,0,0,0,2,0,0,1,3,7,9,3),(385,'2015-03-10 21:49:29','2015-08-29 14:46:00',1,30001558,9,0,1,2,2,2,1,0,9,8,5,3,12,1,2,4,15,3,2,10,4,2,11,4),(386,'2015-03-10 21:49:29','2015-08-29 14:46:00',1,30004661,13,7,9,11,7,11,4,4,56,67,29,40,41,276,173,123,13,31,355,185,5,7,17,16),(387,'2015-03-10 21:49:29','2015-08-29 14:46:00',1,30001844,6,13,3,19,22,6,3,5,21,20,4,10,14,18,18,29,18,3,10,25,22,14,13,23),(388,'2015-03-10 21:49:29','2015-08-29 14:46:00',1,30001869,5,18,11,9,6,4,5,6,19,17,20,26,34,34,39,37,22,15,20,22,46,35,58,46),(389,'2015-03-10 21:49:29','2015-08-29 14:46:00',1,30004716,2,29,3,7,9,12,9,18,162,59,161,42,58,71,59,44,51,29,33,59,12,18,13,20),(390,'2015-03-10 21:49:29','2015-08-29 14:46:00',1,30002495,3,4,0,1,1,2,0,1,2,3,7,8,5,15,5,2,6,0,4,3,4,2,7,8),(391,'2015-03-10 21:49:29','2015-08-29 14:46:00',1,30003351,27,15,29,38,32,48,16,30,67,99,41,40,26,27,10,17,14,3,42,33,58,50,13,17),(392,'2015-03-10 21:49:29','2015-08-29 14:46:00',1,30000818,1,3,20,23,22,2,0,2,4,6,2,4,2,0,0,4,2,0,12,1,1,2,2,6),(393,'2015-03-10 21:49:29','2015-08-29 14:46:00',1,30002297,13,5,4,7,10,12,10,8,1,4,5,7,3,2,2,2,2,3,2,2,3,7,2,18),(394,'2015-03-10 21:49:29','2015-08-29 14:46:00',1,30004206,16,18,17,12,14,6,5,5,1,3,3,3,18,7,8,8,8,1,16,44,11,12,49,41),(395,'2015-03-10 21:49:29','2015-08-29 14:46:00',1,30001201,5,1,3,1,1,2,1,0,4,8,4,7,6,9,10,3,28,95,10,4,29,30,3,2),(396,'2015-03-10 21:49:29','2015-08-29 14:46:00',1,30000976,0,2,2,2,1,5,0,1,2,1,0,0,0,3,2,5,0,3,0,0,1,0,2,1),(397,'2015-03-10 21:49:29','2015-08-29 14:46:00',1,30000776,0,3,16,12,14,3,5,1,0,0,2,2,1,0,0,0,0,0,1,0,1,0,1,2),(398,'2015-03-10 21:49:29','2015-08-29 14:46:00',1,30002944,10,21,22,29,32,24,64,38,33,40,10,6,7,31,29,9,4,1,6,19,23,16,10,11),(399,'2015-03-10 21:49:29','2015-08-29 14:46:00',1,30001251,33,41,75,27,16,41,8,22,32,36,33,31,42,57,58,42,73,32,21,66,57,42,19,29),(400,'2015-03-10 21:49:29','2015-08-29 14:46:00',1,30000455,15,16,22,26,19,45,16,18,47,72,106,103,78,151,126,73,125,10,24,24,148,126,78,193),(401,'2015-03-10 21:49:29','2015-08-29 14:46:00',1,30002456,9,4,7,10,7,8,5,1,0,3,19,20,2,7,5,6,9,0,5,1,1,4,1,1),(402,'2015-03-10 21:49:29','2015-08-29 14:46:00',1,30004746,22,3,0,1,1,4,2,13,26,31,19,15,45,36,38,44,26,13,13,25,32,39,31,25),(403,'2015-03-10 21:49:29','2015-08-29 14:46:00',1,30001828,21,8,26,19,20,10,1,3,0,4,2,0,0,1,3,6,7,1,0,5,3,5,3,6),(404,'2015-03-10 21:49:29','2015-08-29 14:46:00',1,30002585,10,10,29,8,6,21,11,33,13,11,3,7,44,14,40,26,14,14,22,183,9,10,17,23),(405,'2015-03-10 21:49:29','2015-08-29 14:46:00',1,30001149,0,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0),(406,'2015-03-10 21:49:29','2015-08-29 14:46:00',1,30002625,0,12,8,10,5,4,9,4,0,0,4,6,1,10,3,3,1,1,0,5,0,1,1,0),(407,'2015-03-10 21:49:29','2015-08-29 14:46:00',1,30001300,29,11,12,4,3,9,6,5,16,28,13,17,21,64,32,6,12,8,4,14,14,9,13,12),(408,'2015-03-10 21:49:29','2015-08-29 14:46:00',1,30001335,1,1,3,1,0,0,1,0,2,1,6,7,1,0,0,1,3,1,2,1,4,4,3,2),(409,'2015-03-10 21:49:29','2015-08-29 14:46:00',1,30000630,0,2,19,5,3,1,1,0,4,1,5,8,6,2,2,2,5,3,3,2,2,2,3,1),(410,'2015-03-10 21:49:29','2015-08-29 14:46:00',1,30004221,0,1,0,4,4,3,0,2,0,0,0,0,0,0,0,0,0,0,11,2,5,4,0,1),(411,'2015-03-10 21:49:29','2015-03-10 21:49:29',1,30000415,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(412,'2015-03-10 21:49:29','2015-03-10 21:49:29',1,30001512,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(413,'2015-03-10 21:49:29','2015-08-29 14:46:00',1,30002889,12,73,10,13,8,7,12,10,140,57,105,29,238,43,261,59,10,14,17,82,37,146,30,35),(414,'2015-03-10 21:49:29','2015-08-29 14:46:00',1,30002461,4,2,10,3,4,4,2,3,2,2,3,4,0,2,2,2,6,0,3,6,9,8,7,4),(415,'2015-03-10 21:49:29','2015-08-29 14:46:00',1,30004736,15,3,2,4,5,8,8,13,142,58,205,168,94,204,65,55,41,28,37,59,29,30,8,11),(416,'2015-03-10 21:49:29','2015-08-29 14:46:00',1,30001940,9,2,0,6,5,8,11,3,2,4,12,13,9,14,9,10,16,6,11,4,5,3,8,8),(417,'2015-03-10 21:49:29','2015-08-29 14:46:00',1,30004673,4,1,4,2,3,5,11,3,5,7,7,4,9,9,7,6,9,12,12,2,4,11,7,13),(418,'2015-03-10 21:49:29','2015-08-29 14:46:00',1,30000646,7,14,9,13,10,7,2,6,21,22,128,70,14,17,9,10,25,12,12,10,17,16,18,13),(419,'2015-03-10 21:49:29','2015-08-29 14:46:00',1,30004391,4,7,6,18,9,10,10,9,18,7,17,10,12,4,4,1,4,6,7,3,1,4,3,0),(420,'2015-03-10 21:49:29','2015-08-29 14:46:00',1,30000762,5,14,13,11,8,6,7,35,30,17,4,7,5,8,9,17,15,2,12,6,6,8,5,10),(421,'2015-03-10 21:49:29','2015-08-29 14:46:00',1,30004166,2,2,3,3,5,3,9,8,0,1,0,0,0,1,0,1,1,1,1,0,0,0,0,0),(422,'2015-03-10 21:49:29','2015-08-29 14:46:00',1,30004789,2,0,8,0,0,0,2,9,21,16,12,17,9,20,24,25,15,4,9,11,10,6,10,10),(423,'2015-03-10 21:49:29','2015-08-29 14:46:00',1,30003310,1,2,1,0,1,1,5,3,1,2,2,2,2,0,0,1,0,2,1,0,1,0,3,3),(424,'2015-03-10 21:49:29','2015-08-29 14:46:00',1,30003214,11,7,5,8,23,7,8,6,3,6,2,3,2,1,0,1,0,0,0,2,1,0,1,0),(425,'2015-03-10 21:49:29','2015-08-29 14:46:00',1,30003111,1,1,1,2,2,2,2,2,2,2,6,5,25,2,4,4,3,2,1,3,1,4,1,1),(426,'2015-03-10 21:49:29','2015-08-29 14:46:00',1,30001972,23,11,10,6,10,8,9,9,2,0,1,0,3,3,5,3,1,7,2,2,8,4,5,3),(427,'2015-03-10 21:49:29','2015-08-29 14:46:00',1,30001101,0,0,0,2,2,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,1,1,0,0),(428,'2015-03-10 21:49:29','2015-08-29 14:46:00',1,30004774,5,4,2,4,5,9,17,8,175,99,248,194,137,227,106,93,66,41,46,79,21,20,14,16),(429,'2015-03-10 21:49:29','2015-08-29 14:46:00',1,30004670,3,2,0,0,2,1,2,1,3,7,7,8,5,5,4,9,5,2,2,6,1,4,5,3),(430,'2015-03-10 21:49:29','2015-08-29 14:46:00',1,30004573,16,15,18,9,10,7,13,21,49,49,66,37,373,28,24,25,20,36,67,33,27,31,19,14),(431,'2015-03-10 21:49:29','2015-08-29 14:46:00',1,30003290,13,4,5,10,10,5,5,2,7,8,3,6,12,6,8,5,6,9,3,6,6,15,5,5),(432,'2015-03-10 21:49:29','2015-08-29 14:46:00',1,30003321,19,59,30,23,23,45,12,14,14,19,12,8,14,12,9,12,21,10,8,30,42,55,16,10),(433,'2015-03-10 21:49:29','2015-08-29 14:46:00',1,30003267,2,15,2,2,1,1,4,0,0,0,0,0,0,5,0,3,3,0,0,0,1,0,1,0),(434,'2015-03-10 21:49:29','2015-08-29 14:46:00',1,30004412,0,5,6,2,5,2,10,20,10,5,5,2,7,11,10,11,5,0,2,2,0,3,7,6),(435,'2015-03-10 21:49:29','2015-08-29 14:46:00',1,30004455,4,5,12,11,15,4,5,23,4,3,13,17,6,22,14,29,17,20,7,25,8,5,10,11),(436,'2015-03-10 21:49:29','2015-08-29 14:46:00',1,30004039,21,22,23,27,12,22,7,15,13,9,18,14,5,9,10,8,11,10,7,15,29,21,19,16),(437,'2015-03-10 21:49:29','2015-08-29 14:46:00',1,30000705,2,1,7,3,3,3,12,6,3,6,4,3,4,1,2,1,1,0,0,3,4,4,1,0),(438,'2015-03-10 21:49:29','2015-08-29 14:46:00',1,30001241,2,2,4,4,3,5,2,2,25,35,50,36,41,26,30,46,21,32,53,33,46,45,52,26),(439,'2015-03-10 21:49:29','2015-08-29 14:46:00',1,30004865,2,0,0,2,1,0,0,0,2,1,1,1,1,2,2,2,1,0,2,2,3,2,1,1),(440,'2015-03-10 21:49:29','2015-08-29 14:46:00',1,30003630,43,17,20,7,11,37,10,18,8,9,5,7,26,7,8,6,13,11,0,3,15,23,11,11),(441,'2015-03-10 21:49:29','2015-08-29 14:46:00',1,30004374,1,6,5,4,7,1,1,4,6,5,2,2,21,8,9,9,4,7,5,7,3,4,8,11),(442,'2015-03-10 21:49:29','2015-03-10 21:49:29',1,30001478,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(443,'2015-03-10 21:49:29','2015-08-29 14:46:00',1,30003302,12,26,2,13,18,0,18,6,4,3,1,1,1,10,13,7,0,9,2,1,10,13,3,8),(444,'2015-03-10 21:49:29','2015-08-29 14:46:00',1,30005151,9,30,16,14,8,36,6,7,9,14,20,19,17,39,32,6,7,32,44,6,35,24,6,3),(445,'2015-03-10 21:49:29','2015-08-29 14:46:00',1,30002883,1,2,2,1,1,1,0,1,4,8,24,7,3,5,1,2,2,2,0,0,0,0,0,0),(446,'2015-03-10 21:49:29','2015-08-29 14:46:00',1,30003346,5,1,13,16,10,0,1,4,2,1,3,2,1,4,3,2,3,3,10,4,0,1,1,2),(447,'2015-03-10 21:49:29','2015-03-10 21:49:29',1,30001641,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(448,'2015-03-10 21:49:29','2015-08-29 14:46:00',1,30000912,14,15,15,11,16,12,5,4,9,13,7,8,18,21,12,9,14,4,5,7,14,13,3,5),(449,'2015-03-10 21:49:29','2015-08-29 14:46:00',1,30003354,8,1,5,6,5,4,8,10,11,9,4,8,3,26,9,3,5,0,27,8,6,4,0,3),(450,'2015-03-10 21:49:29','2015-08-29 14:46:00',1,30000453,0,4,2,1,0,3,2,2,7,11,15,10,36,44,36,26,14,25,20,54,26,4,16,12),(451,'2015-03-10 21:49:29','2015-08-29 14:46:00',1,30004344,40,22,36,31,34,29,44,44,10,27,21,33,14,17,28,25,16,15,22,14,18,19,22,27),(452,'2015-03-10 21:49:29','2015-08-29 14:46:00',1,30000989,10,9,9,3,8,6,1,4,3,4,3,2,1,4,4,0,4,9,10,22,11,7,0,0),(453,'2015-03-10 21:49:29','2015-08-29 14:46:00',1,30002480,4,6,4,5,3,3,8,5,4,4,1,4,9,4,2,7,2,1,2,1,9,6,3,2),(454,'2015-03-10 21:49:29','2015-03-10 21:49:29',1,30001480,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(455,'2015-03-10 21:49:29','2015-08-29 14:46:00',1,30000908,3,9,17,9,10,4,14,2,3,9,15,11,13,6,4,5,7,3,3,5,8,11,6,21),(456,'2015-03-10 21:49:29','2015-08-29 14:46:00',1,30004643,4,7,9,23,28,19,6,2,7,7,6,5,2,14,18,12,6,48,16,12,34,31,13,16),(457,'2015-03-10 21:49:29','2015-08-29 14:46:00',1,30003350,18,18,22,26,12,39,13,33,78,108,50,42,24,34,12,20,11,3,36,38,72,48,17,37),(458,'2015-03-10 21:49:29','2015-08-29 14:46:00',1,30001850,12,11,9,2,3,5,1,4,27,22,19,17,18,14,15,22,19,10,9,28,22,15,33,28),(459,'2015-03-10 21:49:29','2015-08-29 14:46:00',1,30004212,14,13,15,16,19,15,10,12,16,19,6,5,3,3,2,2,9,3,8,9,18,24,22,27),(460,'2015-03-10 21:49:29','2015-08-29 14:46:00',1,30004675,2,2,1,1,2,4,4,3,1,1,3,1,7,3,3,11,3,2,4,2,5,5,4,8),(461,'2015-03-10 21:49:29','2015-08-29 14:46:00',1,30001104,8,70,60,22,22,57,15,12,58,53,34,37,36,35,26,17,5,6,13,20,89,79,23,17),(462,'2015-03-10 21:49:29','2015-08-29 14:46:00',1,30004761,2,114,3,6,4,2,2,11,15,19,10,4,7,8,6,17,9,12,7,5,25,11,14,7),(463,'2015-03-10 21:49:29','2015-08-29 14:46:00',1,30000844,7,5,1,2,6,5,5,11,2,1,4,4,6,8,7,12,9,15,15,9,11,9,4,4),(464,'2015-03-10 21:49:29','2015-08-29 14:46:00',1,30000562,11,3,10,10,3,5,4,4,16,22,11,8,29,14,15,36,9,30,13,25,11,13,5,8),(465,'2015-03-10 21:49:29','2015-08-29 14:46:00',1,30000554,28,45,19,15,14,27,18,5,12,22,11,11,33,60,37,40,31,18,9,41,61,44,35,22),(466,'2015-03-10 21:49:29','2015-08-29 14:46:00',1,30004168,6,0,9,4,2,6,0,2,18,18,11,13,3,11,14,8,9,8,1,3,18,16,2,5),(467,'2015-03-10 21:49:29','2015-08-29 14:46:00',1,30001014,0,6,1,1,3,3,7,1,3,3,1,2,7,7,3,3,6,2,6,3,3,3,4,2),(468,'2015-03-10 21:49:29','2015-08-29 14:46:00',1,30004175,8,11,9,11,10,17,5,7,22,35,17,20,19,9,12,17,6,1,4,2,19,15,40,33),(469,'2015-03-10 21:49:29','2015-08-29 14:46:00',1,30004193,50,43,43,38,27,36,44,32,9,17,8,13,15,28,42,23,18,1,4,15,8,9,22,23),(470,'2015-03-10 21:49:29','2015-08-29 14:46:00',1,30004445,6,11,1,1,2,1,3,18,0,3,1,1,0,4,2,3,2,1,0,5,17,11,0,2),(471,'2015-03-10 21:49:29','2015-08-29 14:46:00',1,30000637,0,2,7,5,3,0,3,1,3,3,18,16,6,38,35,5,10,2,4,3,0,3,3,2),(472,'2015-03-10 21:49:29','2015-08-29 14:46:00',1,30002501,12,33,19,13,12,31,17,3,10,11,9,8,11,2,3,11,13,17,4,7,12,12,13,16),(473,'2015-03-10 21:49:29','2015-08-29 14:46:00',1,30000992,2,5,7,5,4,8,3,3,4,3,3,1,1,4,2,0,1,3,1,5,3,7,0,0),(474,'2015-03-10 21:49:29','2015-08-29 14:46:00',1,30002591,0,1,2,4,2,4,1,4,48,35,2,1,2,5,4,9,10,6,5,4,6,6,12,5),(475,'2015-03-10 21:49:29','2015-08-29 14:46:00',1,30000581,4,3,5,3,3,2,9,1,26,22,6,10,43,25,28,16,14,97,121,38,113,111,18,16),(476,'2015-03-10 21:49:29','2015-08-29 14:46:00',1,30004185,4,6,8,6,5,13,0,10,17,18,17,15,35,4,16,24,16,2,1,5,8,7,18,14),(477,'2015-03-10 21:49:29','2015-08-29 14:46:00',1,30000820,0,11,12,15,9,2,0,11,5,1,4,4,4,3,2,8,7,1,17,18,5,6,8,9),(478,'2015-03-10 21:49:29','2015-08-29 14:46:00',1,30003720,13,18,7,10,11,9,7,7,20,22,52,28,24,27,37,20,33,9,10,10,15,15,28,28),(479,'2015-03-10 21:49:29','2015-08-29 14:46:00',1,30002291,1,3,1,4,2,2,1,1,1,3,7,7,0,29,15,0,2,0,0,1,43,45,1,1),(480,'2015-03-10 21:49:29','2015-08-29 14:46:00',1,30001951,6,16,6,4,6,16,4,5,17,20,9,4,6,20,17,9,19,7,7,12,13,8,16,14),(481,'2015-03-10 21:49:29','2015-08-29 14:46:00',1,30000442,3,1,0,2,2,1,1,1,1,0,3,2,0,2,4,2,2,3,0,0,0,8,1,1),(482,'2015-03-10 21:49:29','2015-08-29 14:46:00',1,30003223,3,2,2,1,1,5,4,3,1,1,0,1,3,0,3,2,3,1,0,0,4,3,2,3),(483,'2015-03-10 21:49:29','2015-08-29 14:46:00',1,30003738,20,7,8,15,19,21,6,11,15,16,29,31,17,24,25,24,12,12,8,20,15,22,21,29),(484,'2015-03-10 21:49:29','2015-08-29 14:46:00',1,30003348,1,1,0,1,1,0,1,1,3,2,0,0,3,1,1,4,6,3,8,1,1,1,1,1),(485,'2015-03-10 21:49:29','2015-08-29 14:46:00',1,30001532,8,4,2,1,4,1,1,1,15,15,5,6,12,12,7,28,10,21,10,21,7,10,21,21),(486,'2015-03-10 21:49:29','2015-08-29 14:46:00',1,30004345,30,17,24,29,24,12,35,20,8,15,19,26,6,10,17,15,14,13,9,5,10,18,20,21),(487,'2015-03-10 21:49:29','2015-08-29 14:46:00',1,30000741,0,5,13,4,7,4,8,2,1,2,6,4,6,7,4,3,1,2,0,1,4,3,8,6),(488,'2015-03-10 21:49:29','2015-08-29 14:46:00',1,30000609,2,2,1,0,0,3,2,0,1,1,0,0,1,2,1,0,0,7,0,1,2,20,20,2),(489,'2015-03-10 21:49:29','2015-08-29 14:46:00',1,30000468,6,1,5,6,5,7,2,3,48,16,14,13,19,53,39,5,3,1,2,19,15,8,2,0),(490,'2015-03-10 21:49:29','2015-08-29 14:46:00',1,30004477,1,0,3,0,1,1,8,0,8,8,5,10,7,10,5,8,22,3,10,5,21,24,9,7),(491,'2015-03-10 21:49:29','2015-08-29 14:46:00',1,30000564,0,0,9,10,0,1,3,1,11,10,3,3,9,6,7,6,1,7,5,8,3,4,2,1),(492,'2015-03-10 21:49:29','2015-08-29 14:46:00',1,30004067,9,3,3,2,1,7,1,0,1,2,0,0,6,1,4,2,7,0,0,0,1,3,9,6),(493,'2015-03-10 21:49:29','2015-08-29 14:46:00',1,30002950,14,10,5,5,4,2,8,13,8,9,4,2,7,10,8,7,3,2,4,2,4,3,4,0),(494,'2015-03-10 21:49:29','2015-08-29 14:46:00',1,30005115,2,4,1,10,3,7,0,3,6,2,2,3,1,0,2,4,3,4,3,4,15,8,1,3),(495,'2015-03-10 21:49:29','2015-08-29 14:46:00',1,30000299,12,29,18,26,25,34,8,22,51,50,26,51,22,29,11,35,45,16,7,12,54,52,31,29),(496,'2015-03-10 21:49:29','2015-08-29 14:46:00',1,30002313,0,2,2,0,1,1,0,0,2,1,0,0,1,5,2,3,1,17,1,5,1,0,4,1),(497,'2015-03-10 21:49:29','2015-08-29 14:46:00',1,30004008,36,7,23,8,12,2,7,7,16,13,23,15,57,17,13,6,7,32,10,10,6,11,16,21),(498,'2015-03-10 21:49:29','2015-08-29 14:46:00',1,30005152,7,11,13,10,11,5,8,4,7,7,5,6,8,15,12,6,8,16,9,5,12,8,3,4),(499,'2015-03-10 21:49:29','2015-03-10 21:49:29',1,30001626,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(500,'2015-03-10 21:49:29','2015-08-29 14:46:00',1,30002927,33,79,38,14,21,12,31,41,27,34,41,45,34,51,39,34,18,17,31,29,30,31,26,25),(501,'2015-03-10 21:49:29','2015-08-29 14:46:00',1,30004508,27,14,12,9,3,16,9,16,13,12,14,17,6,13,12,9,11,6,1,5,3,6,11,18),(502,'2015-03-10 21:49:29','2015-08-29 14:46:00',1,30004432,2,0,23,9,10,14,3,10,0,0,10,4,15,7,11,25,12,5,20,10,18,10,14,17),(503,'2015-03-10 21:49:29','2015-08-29 14:46:00',1,30000218,4,2,3,3,3,3,1,1,0,0,1,0,1,1,3,4,1,4,0,0,1,3,1,1),(504,'2015-03-10 21:49:29','2015-08-29 14:46:00',1,30005110,25,49,41,41,29,36,3,18,18,5,8,6,6,11,11,6,4,31,41,14,27,21,2,4),(505,'2015-03-10 21:49:29','2015-08-29 14:46:00',1,30002005,117,116,83,89,93,87,73,112,96,86,74,86,126,78,106,102,97,89,67,166,141,107,79,81),(506,'2015-03-10 21:49:29','2015-08-29 14:46:00',1,30005111,19,52,25,26,22,39,6,14,10,4,7,11,5,23,16,9,6,32,37,12,31,25,6,4),(507,'2015-03-10 21:49:29','2015-03-10 21:49:29',1,30001503,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(508,'2015-03-10 21:49:29','2015-08-29 14:46:00',1,30004053,20,9,18,28,28,18,6,5,21,14,8,11,32,8,8,9,21,4,0,5,5,5,10,9),(509,'2015-03-10 21:49:29','2015-08-29 14:46:00',1,30005114,10,12,25,6,4,13,3,1,2,0,0,0,0,1,3,1,0,0,0,1,0,0,0,0),(510,'2015-03-10 21:49:29','2015-08-29 14:46:00',1,30003640,22,18,7,25,17,26,10,19,6,4,9,11,32,8,9,4,24,4,0,1,9,21,10,2),(511,'2015-03-10 21:49:29','2015-08-29 14:46:00',1,30003280,22,44,46,48,40,35,28,25,91,55,34,45,80,65,72,63,45,122,66,47,49,33,35,46),(512,'2015-03-10 21:49:29','2015-08-29 14:46:00',1,30004486,2,30,1,10,10,23,5,7,5,6,7,12,14,3,18,24,14,5,8,20,20,16,34,24),(513,'2015-03-10 21:49:29','2015-08-29 14:46:00',1,30000706,13,25,25,13,17,37,12,8,9,26,15,15,2,16,32,7,5,6,11,26,44,50,19,41),(514,'2015-03-10 21:49:29','2015-08-29 14:46:00',1,30001759,3,4,3,2,2,0,1,7,0,0,0,0,0,1,1,1,2,1,1,1,7,5,5,5),(515,'2015-03-10 21:49:29','2015-03-10 21:49:29',1,30001603,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(516,'2015-03-10 21:49:29','2015-08-29 14:46:00',1,30002167,13,27,12,10,16,14,14,2,19,33,37,26,29,67,62,37,31,15,30,44,38,38,16,16),(517,'2015-03-10 21:49:29','2015-08-29 14:46:00',1,30004810,21,12,22,14,12,5,25,47,5,4,4,4,11,5,14,8,2,4,17,6,5,4,3,4),(518,'2015-03-10 21:49:29','2015-08-29 14:46:00',1,30001167,22,24,30,13,4,11,10,13,76,80,35,22,34,15,21,18,26,20,49,40,40,37,22,20),(519,'2015-03-10 21:49:29','2015-08-29 14:46:00',1,30000728,5,3,1,0,0,1,4,1,2,1,0,0,1,1,5,1,0,5,3,1,1,2,0,0),(520,'2015-03-10 21:49:29','2015-08-29 14:46:00',1,30000557,17,12,2,9,10,3,4,3,6,8,8,11,21,41,32,68,29,116,30,12,30,13,30,19),(521,'2015-03-10 21:49:29','2015-08-29 14:46:00',1,30001184,0,2,5,8,9,4,6,2,22,23,12,9,24,20,14,25,15,10,17,7,15,10,19,14),(522,'2015-03-10 21:49:29','2015-03-10 21:49:29',1,30001492,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(523,'2015-03-10 21:49:29','2015-08-29 14:46:00',1,30004347,14,3,9,9,9,8,8,16,6,23,11,27,3,18,20,11,5,3,11,6,10,8,11,8),(524,'2015-03-10 21:49:29','2015-08-29 14:46:00',1,30003745,37,63,50,46,44,36,16,32,93,76,93,80,68,68,53,59,53,70,50,51,106,68,78,94),(525,'2015-03-10 21:49:29','2015-03-10 21:49:29',1,30001488,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(526,'2015-03-10 21:49:29','2015-08-29 14:46:00',1,30003145,11,2,0,7,8,6,7,1,5,7,2,9,3,1,0,3,7,0,8,7,4,3,9,2),(527,'2015-03-10 21:49:29','2015-08-29 14:46:00',1,30003316,18,34,12,10,11,9,13,16,20,16,1,7,24,51,45,10,5,28,6,10,14,19,8,10),(528,'2015-03-10 21:49:29','2015-08-29 14:46:00',1,30001111,2,2,8,5,6,6,9,3,6,6,12,7,0,6,2,22,12,2,5,6,2,7,5,8),(529,'2015-03-10 21:49:29','2015-08-29 14:46:00',1,30003956,10,49,17,16,18,8,23,15,10,9,9,3,8,6,8,3,9,28,4,5,5,3,6,5),(530,'2015-03-10 21:49:29','2015-08-29 14:46:00',1,30003315,2,1,3,2,0,3,3,2,4,5,4,5,34,18,25,4,2,14,2,0,1,6,8,3),(531,'2015-03-10 21:49:29','2015-08-29 14:46:00',1,30000513,4,13,21,13,6,24,18,12,19,20,9,7,10,26,16,15,10,22,113,9,10,13,8,5),(532,'2015-03-10 21:49:29','2015-08-29 14:46:00',1,30001092,0,0,0,1,1,2,0,0,1,2,1,1,5,1,0,0,0,0,1,0,4,6,0,1),(533,'2015-03-10 21:49:29','2015-08-29 14:46:00',1,30001317,10,1,0,7,7,2,1,2,2,1,1,1,0,0,0,2,3,5,5,1,1,1,1,2),(534,'2015-03-10 21:49:29','2015-08-29 14:46:00',1,30004923,14,44,9,25,21,49,14,25,14,12,20,18,41,13,36,32,31,17,82,20,31,28,30,28),(535,'2015-03-10 21:49:29','2015-08-29 14:46:00',1,30000289,14,19,13,8,7,22,9,23,11,19,29,35,7,12,5,16,22,14,17,22,36,30,10,16),(536,'2015-03-10 21:49:29','2015-08-29 14:46:00',1,30000985,4,13,9,3,3,10,3,7,1,2,2,5,1,0,0,6,16,2,5,0,3,3,8,7),(537,'2015-03-10 21:49:29','2015-08-29 14:46:00',1,30004604,8,12,6,11,11,7,1,8,2,2,7,7,3,4,5,12,1,1,26,18,10,7,3,3),(538,'2015-03-10 21:49:29','2015-08-29 14:46:00',1,30000791,12,22,4,9,12,18,11,7,5,6,10,15,12,9,12,7,19,8,20,9,1,3,7,12),(539,'2015-03-10 21:49:29','2015-08-29 14:46:00',1,30002593,7,10,14,16,4,32,2,15,17,21,23,20,13,43,25,24,40,14,9,10,23,23,23,23),(540,'2015-03-10 21:49:29','2015-03-10 21:49:29',1,30001624,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(541,'2015-03-10 21:49:29','2015-08-29 14:46:00',1,30001134,1,6,1,1,3,3,3,2,0,2,1,0,0,0,0,0,0,0,1,0,0,1,6,6),(542,'2015-03-10 21:49:29','2015-08-29 14:46:00',1,30002623,0,0,0,2,0,0,0,3,0,0,1,1,1,2,2,0,1,0,0,0,0,1,6,4),(543,'2015-03-10 21:49:29','2015-08-29 14:46:00',1,30000764,0,9,6,7,5,0,5,18,29,16,3,6,2,6,7,10,4,1,11,3,4,8,5,10),(544,'2015-03-10 21:49:29','2015-03-10 21:49:29',1,30000371,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(545,'2015-03-10 21:49:29','2015-08-29 14:46:00',1,30001257,7,19,4,7,3,4,7,9,45,43,42,45,27,25,35,28,25,21,16,32,35,27,6,21),(546,'2015-03-10 21:49:29','2015-08-29 14:46:00',1,30003270,31,272,68,31,23,66,22,40,68,48,20,47,52,80,58,47,56,99,33,79,105,77,55,46),(547,'2015-03-10 21:49:29','2015-08-29 14:46:00',1,30002619,1,14,13,15,10,18,5,12,12,14,12,15,5,7,6,8,18,4,2,6,19,20,18,25),(548,'2015-03-10 21:49:29','2015-08-29 14:46:00',1,30000907,7,5,9,6,7,8,2,2,1,4,14,15,22,9,4,8,4,2,5,2,10,10,2,2),(549,'2015-03-10 21:49:29','2015-08-29 14:46:00',1,30003139,5,3,6,9,11,3,0,4,1,2,7,8,4,3,1,3,2,1,1,1,7,4,3,3),(550,'2015-03-10 21:49:29','2015-08-29 14:46:00',1,30004591,20,20,16,13,12,8,9,7,12,24,13,10,502,15,12,7,19,12,16,22,16,14,10,4),(551,'2015-03-10 21:49:29','2015-03-10 21:49:29',1,30000402,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(552,'2015-03-10 21:49:29','2015-08-29 14:46:00',1,30002855,10,8,10,2,6,6,1,4,8,15,13,18,8,29,33,12,19,1,2,39,10,14,23,16),(553,'2015-03-10 21:49:29','2015-08-29 14:46:00',1,30002025,6,16,18,15,8,23,11,3,19,17,6,6,7,8,6,6,9,5,6,11,10,11,7,8),(554,'2015-03-10 21:49:29','2015-08-29 14:46:00',1,30002459,37,36,41,44,40,31,23,28,30,30,33,29,10,18,22,35,24,16,28,42,100,79,27,40),(555,'2015-03-10 21:49:29','2015-08-29 14:46:00',1,30001290,51,66,34,18,18,20,17,14,50,57,24,37,39,17,13,14,31,5,26,21,60,38,31,17),(556,'2015-03-10 21:49:29','2015-08-29 14:46:00',1,30004442,2,7,9,4,10,2,0,3,6,5,14,4,6,7,8,4,13,13,4,12,1,3,5,10),(557,'2015-03-10 21:49:29','2015-08-29 14:46:00',1,30004073,7,32,6,30,18,5,1,2,2,2,3,3,2,7,9,2,2,17,0,3,5,7,5,6),(558,'2015-03-10 21:49:29','2015-08-29 14:46:00',1,30000457,0,6,3,0,0,1,5,1,2,6,13,5,7,6,6,2,8,1,2,0,5,7,6,6),(559,'2015-03-10 21:49:29','2015-08-29 14:46:00',1,30003648,1,2,4,1,6,1,2,8,2,1,0,3,2,0,1,2,4,0,0,0,5,3,3,1),(560,'2015-03-10 21:49:29','2015-08-29 14:46:00',1,30004740,31,98,43,36,33,48,41,34,208,218,80,75,136,162,209,99,50,49,101,126,76,108,163,204),(561,'2015-03-10 21:49:29','2015-08-29 14:46:00',1,30005128,0,0,1,4,2,1,0,1,1,0,0,0,0,0,0,0,1,1,0,0,0,0,1,1),(562,'2015-03-10 21:49:29','2015-03-10 21:49:29',1,30000364,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(563,'2015-03-10 21:49:29','2015-08-29 14:46:00',1,30001930,10,10,4,4,6,2,23,11,10,9,8,17,13,15,17,12,17,20,7,7,16,13,19,24),(564,'2015-03-10 21:49:29','2015-08-29 14:46:00',1,30003303,3,5,0,1,4,0,4,12,1,2,0,0,1,1,3,1,0,2,0,0,1,2,0,3),(565,'2015-03-10 21:49:29','2015-08-29 14:46:00',1,30004070,56,121,28,26,32,20,14,29,12,20,10,15,15,14,12,22,8,10,24,7,11,13,27,18),(566,'2015-03-10 21:49:29','2015-08-29 14:46:00',1,30002446,17,13,26,22,13,30,7,15,22,20,25,21,22,17,17,27,22,8,13,10,110,67,29,34),(567,'2015-03-10 21:49:29','2015-08-29 14:46:00',1,30003179,4,11,3,4,2,18,18,3,8,7,5,3,4,4,12,11,7,3,2,3,5,2,5,6),(568,'2015-03-10 21:49:29','2015-08-29 14:46:00',1,30004908,5,35,23,42,32,33,10,14,14,11,8,10,23,39,40,18,20,10,140,10,10,17,13,17),(569,'2015-03-10 21:49:29','2015-08-29 14:46:00',1,30001545,1,0,0,0,0,0,1,0,28,22,13,4,0,0,0,4,0,1,11,2,0,2,8,8),(570,'2015-03-10 21:49:29','2015-08-29 14:46:00',1,30003210,21,19,36,26,29,18,25,11,6,11,11,7,10,11,18,6,17,5,19,20,11,16,24,16),(571,'2015-03-10 21:49:29','2015-08-29 14:46:00',1,30001339,2,3,2,1,1,3,0,1,2,0,5,5,1,4,2,0,4,0,3,3,1,1,1,0),(572,'2015-03-10 21:49:29','2015-08-29 14:46:00',1,30001067,0,0,0,0,1,0,0,0,0,0,0,0,0,1,1,0,0,1,1,4,1,0,0,0),(573,'2015-03-10 21:49:29','2015-08-29 14:46:00',1,30002832,4,0,1,0,0,6,0,2,0,0,0,1,0,0,0,2,0,0,1,0,0,1,2,0),(574,'2015-03-10 21:49:29','2015-08-29 14:46:00',1,30004608,58,42,17,15,25,5,43,34,173,45,52,45,63,60,43,44,50,92,117,78,51,55,44,31),(575,'2015-03-10 21:49:29','2015-08-29 14:46:00',1,30001574,7,4,6,4,22,3,0,2,5,5,0,0,1,1,0,0,14,21,2,0,4,1,5,14),(576,'2015-03-10 21:49:29','2015-08-29 14:46:00',1,30001276,78,64,57,66,73,54,42,61,63,74,112,115,120,132,155,131,97,35,58,69,123,230,97,96),(577,'2015-03-10 21:49:29','2015-08-29 14:46:00',1,30000967,4,10,11,6,10,2,6,5,8,4,1,2,23,12,4,8,11,31,31,13,1,7,19,20),(578,'2015-03-10 21:49:29','2015-08-29 14:46:00',1,30000258,6,7,19,14,3,5,0,0,4,2,4,4,1,3,4,4,1,5,4,4,4,3,2,1),(579,'2015-03-10 21:49:29','2015-08-29 14:46:00',1,30001197,21,24,40,32,25,26,31,39,40,56,33,30,58,32,39,40,30,25,51,31,27,25,41,27),(580,'2015-03-10 21:49:29','2015-08-29 14:46:00',1,30001907,7,11,17,22,18,16,11,3,10,7,10,5,12,14,27,17,6,6,18,10,16,13,11,11),(581,'2015-03-10 21:49:29','2015-08-29 14:46:00',1,30000297,9,19,8,16,16,11,5,15,16,14,15,22,4,12,7,24,12,14,4,3,7,4,12,9),(582,'2015-03-10 21:49:29','2015-08-29 14:46:00',1,30002465,14,29,29,18,23,42,22,12,18,24,12,12,7,5,10,11,14,23,21,13,37,19,20,16),(583,'2015-03-10 21:49:29','2015-08-29 14:46:00',1,30004792,4,8,7,14,12,9,15,8,21,27,19,8,13,5,5,9,10,3,15,6,12,10,5,10),(584,'2015-03-10 21:49:29','2015-08-29 14:46:00',1,30004057,2,9,9,16,9,4,0,4,1,1,2,1,5,8,7,2,3,3,4,4,6,7,5,5),(585,'2015-03-10 21:49:29','2015-08-29 14:46:00',1,30001328,8,7,4,2,0,2,2,1,5,7,3,6,1,3,3,1,7,0,1,1,0,0,4,6),(586,'2015-03-10 21:49:29','2015-08-29 14:46:00',1,30001075,7,28,34,16,10,25,20,36,13,17,51,13,9,13,17,15,12,7,0,12,18,19,13,15),(587,'2015-03-10 21:49:29','2015-08-29 14:46:00',1,30004525,1,16,13,7,5,2,4,6,3,3,7,6,8,5,3,12,3,5,2,3,1,7,5,1),(588,'2015-03-10 21:49:29','2015-08-29 14:46:00',1,30004925,5,26,14,22,15,37,12,32,6,6,11,7,43,15,32,53,24,19,79,21,31,42,22,20),(589,'2015-03-10 21:49:29','2015-08-29 14:46:00',1,30004585,2,0,1,3,5,0,0,3,2,0,0,1,3,0,0,2,0,1,6,12,2,3,2,1),(590,'2015-03-10 21:49:29','2015-03-10 21:49:29',1,30001608,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(591,'2015-03-10 21:49:29','2015-08-29 14:46:00',1,30000525,6,2,12,5,6,5,1,1,4,5,4,5,10,23,3,6,3,1,1,9,4,3,10,1),(592,'2015-03-10 21:49:29','2015-08-29 14:46:00',1,30000919,13,9,14,6,8,10,2,3,5,10,7,6,14,16,4,5,6,3,4,8,2,6,2,5),(593,'2015-03-10 21:49:29','2015-08-29 14:46:00',1,30000759,5,21,6,8,7,6,11,26,5,6,14,10,6,3,2,8,13,1,0,5,5,5,2,2),(594,'2015-03-10 21:49:29','2015-08-29 14:46:00',1,30000224,11,13,21,17,20,22,13,6,8,10,9,6,23,8,7,48,15,12,15,9,10,6,6,2),(595,'2015-03-10 21:49:29','2015-08-29 14:46:00',1,30004790,5,15,9,16,18,6,16,5,29,27,18,18,19,22,18,23,30,8,18,9,72,59,10,19),(596,'2015-03-10 21:49:29','2015-08-29 14:46:00',1,30000487,0,4,4,1,0,2,1,1,7,13,16,10,12,32,20,22,5,12,7,21,14,4,14,11),(597,'2015-03-10 21:49:29','2015-08-29 14:46:00',1,30000287,1,3,4,13,10,12,10,11,2,0,0,2,1,3,2,2,1,3,3,8,2,4,0,0),(598,'2015-03-10 21:49:29','2015-08-29 14:46:00',1,30001588,10,6,10,15,16,7,34,5,12,78,4,3,7,7,8,4,3,2,1,5,3,5,2,2),(599,'2015-03-10 21:49:29','2015-08-29 14:46:00',1,30000217,34,35,38,36,20,28,12,23,13,6,15,15,18,21,22,26,11,25,9,11,26,32,24,18),(600,'2015-03-10 21:49:29','2015-08-29 14:46:00',1,30003217,5,2,11,15,13,3,7,9,0,3,2,4,1,7,6,0,2,1,2,2,5,2,6,1),(601,'2015-03-10 21:49:29','2015-08-29 14:46:00',1,30001884,2,3,0,2,1,4,0,1,5,5,14,16,2,5,2,4,2,0,1,7,6,3,3,4),(602,'2015-03-10 21:49:29','2015-08-29 14:46:00',1,30001057,12,1,12,4,2,7,11,3,48,65,46,31,5,9,7,12,3,0,0,0,12,11,9,3),(603,'2015-03-10 21:49:29','2015-08-29 14:46:00',1,30002158,0,0,0,0,1,1,1,0,0,0,7,3,1,0,2,2,0,5,0,4,6,8,0,1),(604,'2015-03-10 21:49:29','2015-08-29 14:46:00',1,30000726,1,2,0,0,0,1,5,0,1,2,1,1,1,8,7,2,3,0,0,0,3,1,4,3),(605,'2015-03-10 21:49:29','2015-08-29 14:46:00',1,30004893,1,0,9,0,1,3,1,0,3,1,0,0,6,2,2,2,0,0,1,5,3,2,0,0),(606,'2015-03-10 21:49:29','2015-08-29 14:46:00',1,30002848,10,14,13,27,28,9,8,17,14,11,14,19,34,25,19,8,13,2,1,15,12,16,17,11),(607,'2015-03-10 21:49:29','2015-08-29 14:46:00',1,30000787,19,49,16,12,18,70,11,22,12,30,16,23,23,22,37,14,43,10,31,30,58,66,19,43),(608,'2015-03-10 21:49:29','2015-03-10 21:49:29',1,30000333,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(609,'2015-03-10 21:49:29','2015-08-29 14:46:00',1,30000827,1,8,15,5,8,0,3,2,1,1,1,2,3,0,0,15,32,0,5,16,4,6,1,1),(610,'2015-03-10 21:49:29','2015-08-29 14:46:00',1,30004429,7,3,4,7,6,4,2,11,2,2,6,3,22,8,13,20,11,2,7,12,14,6,5,4),(611,'2015-03-10 21:49:29','2015-08-29 14:46:00',1,30004620,44,76,68,95,68,110,29,44,59,77,97,70,125,110,89,71,106,77,60,126,146,108,93,97),(612,'2015-03-10 21:49:29','2015-08-29 14:46:00',1,30004045,10,7,4,3,3,1,18,10,8,6,13,14,7,4,10,29,2,8,5,9,13,16,9,8),(613,'2015-03-10 21:49:29','2015-08-29 14:46:00',1,30000483,6,18,7,11,8,15,13,17,56,35,34,25,28,50,50,30,13,1,4,79,21,33,19,20),(614,'2015-03-10 21:49:29','2015-08-29 14:46:00',1,30000773,30,107,69,41,28,78,30,42,49,95,38,27,43,135,114,59,69,8,9,36,146,128,44,79),(615,'2015-03-10 21:49:29','2015-08-29 14:46:00',1,30004816,0,7,3,3,1,7,0,2,5,2,6,5,7,2,1,4,5,3,11,4,0,3,2,3),(616,'2015-03-10 21:49:29','2015-08-29 14:46:00',1,30002125,1,18,3,5,4,6,1,3,1,1,3,3,5,3,4,1,0,5,8,8,6,7,4,11),(617,'2015-03-10 21:49:29','2015-08-29 14:46:00',1,30005145,20,28,24,26,21,42,6,21,10,3,8,12,6,29,23,12,9,32,42,12,27,26,9,5),(618,'2015-03-10 21:49:29','2015-03-10 21:49:29',1,30001639,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(619,'2015-03-10 21:49:29','2015-08-29 14:46:00',1,30004635,2,7,14,4,2,0,0,2,1,1,7,7,6,3,6,1,8,2,4,9,7,6,8,4),(620,'2015-03-10 21:49:29','2015-08-29 14:46:00',1,30004616,26,7,1,2,4,0,18,13,149,13,20,30,35,12,6,13,19,30,109,30,16,24,26,15),(621,'2015-03-10 21:49:29','2015-03-10 21:49:29',1,30000360,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(622,'2015-03-10 21:49:29','2015-08-29 14:46:00',1,30002046,7,16,3,15,16,7,5,15,28,31,42,17,32,22,10,7,7,3,5,16,2,4,6,4),(623,'2015-03-10 21:49:29','2015-08-29 14:46:00',1,30003671,16,17,14,24,14,20,5,9,2,0,2,2,5,11,6,3,22,2,3,1,8,11,1,0),(624,'2015-03-10 21:49:29','2015-08-29 14:46:00',1,30000840,5,2,6,7,10,3,7,8,8,8,9,6,18,9,11,20,27,14,15,24,11,15,15,7),(625,'2015-03-10 21:49:29','2015-08-29 14:46:00',1,30001817,2,2,3,1,1,4,2,2,26,30,26,14,12,18,31,11,13,8,5,21,20,19,4,8),(626,'2015-03-10 21:49:29','2015-08-29 14:46:00',1,30000323,14,16,18,8,7,7,8,14,17,7,6,7,19,14,12,5,62,12,16,10,15,16,14,11),(627,'2015-03-10 21:49:29','2015-08-29 14:46:00',1,30004768,1,0,0,1,1,2,1,8,13,11,4,2,6,15,10,14,4,1,1,6,11,7,13,6),(628,'2015-03-10 21:49:29','2015-08-29 14:46:00',1,30003948,19,8,22,25,22,21,9,10,27,18,9,8,23,33,10,15,12,6,12,18,10,16,12,17),(629,'2015-03-10 21:49:29','2015-03-10 21:49:29',1,30001457,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(630,'2015-03-10 21:49:29','2015-08-29 14:46:00',1,30000955,4,8,8,3,2,5,1,6,3,4,10,3,1,0,0,5,10,4,3,4,2,4,3,3),(631,'2015-03-10 21:49:29','2015-08-29 14:46:00',1,30005176,0,0,0,0,0,0,0,0,2,2,0,0,3,4,4,1,1,0,0,0,1,1,1,2),(632,'2015-03-10 21:49:29','2015-08-29 14:46:00',1,30000606,7,4,2,3,0,3,11,0,3,4,1,1,2,0,0,0,2,11,1,1,5,21,5,4),(633,'2015-03-10 21:49:29','2015-08-29 14:46:00',1,30004872,31,17,23,32,22,37,34,24,11,14,11,9,2,7,6,11,5,3,3,7,7,15,21,16),(634,'2015-03-10 21:49:29','2015-08-29 14:46:00',1,30000745,1,4,0,2,0,0,2,2,2,1,8,8,3,1,2,2,15,4,2,0,2,3,4,1),(635,'2015-03-10 21:49:29','2015-08-29 14:46:00',1,30004926,4,21,16,15,13,35,15,27,5,6,16,10,36,23,38,26,24,10,86,21,27,31,27,29),(636,'2015-03-10 21:49:29','2015-08-29 14:46:00',1,30001218,5,2,6,2,2,10,2,11,72,58,37,33,31,45,63,39,19,50,28,23,25,26,23,20),(637,'2015-03-10 21:49:29','2015-03-10 21:49:29',1,30000383,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(638,'2015-03-10 21:49:29','2015-08-29 14:46:00',1,30005138,2,4,3,8,4,2,0,0,3,1,0,0,1,11,10,0,5,1,1,4,0,0,0,0),(639,'2015-03-10 21:49:29','2015-08-29 14:46:00',1,30004860,1,1,0,1,3,2,0,1,2,2,1,1,9,1,2,1,0,0,1,1,2,3,3,3),(640,'2015-03-10 21:49:29','2015-08-29 14:46:00',1,30001232,66,74,45,50,39,53,22,43,180,164,52,41,80,100,80,30,26,34,104,76,58,43,32,33),(641,'2015-03-10 21:49:29','2015-08-29 14:46:00',1,30005146,2,5,0,2,3,6,1,3,6,2,11,14,1,8,9,4,4,0,2,2,3,2,3,1),(642,'2015-03-10 21:49:29','2015-03-10 21:49:29',1,30000353,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(643,'2015-03-10 21:49:29','2015-08-29 14:46:00',1,30003165,3,5,3,2,2,3,1,7,23,16,4,5,10,12,8,5,4,14,14,11,17,19,16,9),(644,'2015-03-10 21:49:29','2015-08-29 14:46:00',1,30000943,51,58,36,37,33,31,23,20,44,53,41,33,55,63,59,48,36,65,51,72,24,50,50,42),(645,'2015-03-10 21:49:29','2015-08-29 14:46:00',1,30001845,23,21,19,8,12,14,19,7,50,52,48,48,53,30,44,71,60,31,43,31,38,47,34,31),(646,'2015-03-10 21:49:29','2015-08-29 14:46:00',1,30002016,30,93,62,79,38,142,10,48,18,27,14,17,41,22,12,41,10,27,19,27,11,13,32,18),(647,'2015-03-10 21:49:29','2015-08-29 14:46:00',1,30001141,0,0,1,0,3,0,4,0,1,3,1,1,3,0,0,1,0,0,0,0,3,3,2,4),(648,'2015-03-10 21:49:29','2015-08-29 14:46:00',1,30002929,5,3,2,1,1,3,6,2,10,8,8,9,9,14,11,9,10,8,10,4,6,5,13,12),(649,'2015-03-10 21:49:29','2015-08-29 14:46:00',1,30004788,1,0,1,9,10,0,0,4,2,5,3,3,8,6,9,5,9,6,2,3,6,9,4,6),(650,'2015-03-10 21:49:29','2015-08-29 14:46:00',1,30003945,20,6,26,18,17,15,17,10,15,14,10,10,28,33,12,14,11,12,14,17,6,10,12,14),(651,'2015-03-10 21:49:29','2015-08-29 14:46:00',1,30004587,3,2,7,10,5,0,0,6,0,2,3,6,4,0,0,2,4,0,3,0,18,10,5,4),(652,'2015-03-10 21:49:29','2015-08-29 14:46:00',1,30002031,1,3,9,15,8,1,1,4,2,1,1,1,5,1,0,0,1,1,1,0,0,1,0,1),(653,'2015-03-10 21:49:29','2015-08-29 14:46:00',1,30002177,2,11,1,3,4,5,10,8,12,8,7,12,15,18,16,12,8,1,3,9,9,16,5,3),(654,'2015-03-10 21:49:29','2015-08-29 14:46:00',1,30003778,7,7,12,14,35,8,7,17,23,18,28,29,17,31,26,21,26,7,12,19,21,23,33,47),(655,'2015-03-10 21:49:29','2015-08-29 14:46:00',1,30001071,0,2,2,1,1,0,1,4,3,8,11,7,0,7,14,8,0,6,3,0,10,5,1,0),(656,'2015-03-10 21:49:29','2015-08-29 14:46:00',1,30004351,47,52,35,72,56,82,64,59,21,31,23,24,25,32,33,23,15,12,34,18,19,26,25,13),(657,'2015-03-10 21:49:29','2015-08-29 14:46:00',1,30004869,13,8,9,7,7,1,23,8,8,3,5,1,2,9,8,11,1,4,1,7,1,2,11,13),(658,'2015-03-10 21:49:29','2015-08-29 14:46:00',1,30001768,27,13,20,35,30,12,16,12,26,34,23,19,9,13,19,41,18,4,7,16,11,18,16,16),(659,'2015-03-10 21:49:29','2015-08-29 14:46:00',1,30004862,4,1,0,3,3,2,2,24,4,4,4,3,5,5,6,6,6,3,2,4,3,6,6,12),(660,'2015-03-10 21:49:29','2015-08-29 14:46:00',1,30000614,0,2,20,4,2,2,2,0,0,0,3,6,4,3,3,7,4,0,3,2,3,3,3,2),(661,'2015-03-10 21:49:29','2015-08-29 14:46:00',1,30004001,2,1,8,7,1,2,0,0,0,0,3,4,3,0,0,1,0,0,0,1,0,0,1,0),(662,'2015-03-10 21:49:29','2015-08-29 14:46:00',1,30003282,17,34,14,22,19,13,13,12,20,13,17,18,10,17,13,16,6,15,16,12,14,9,27,23),(663,'2015-03-10 21:49:29','2015-08-29 14:46:00',1,30002484,20,39,19,20,19,29,24,34,22,18,18,28,20,7,2,24,5,13,10,12,7,19,59,40),(664,'2015-03-10 21:49:29','2015-08-29 14:46:00',1,30002293,3,4,1,3,2,6,3,2,16,18,9,7,2,2,4,4,5,0,0,1,14,9,7,4),(665,'2015-03-10 21:49:29','2015-08-29 14:46:00',1,30000542,2,17,8,6,1,8,6,24,3,6,1,0,1,7,6,3,4,2,1,0,1,1,2,5),(666,'2015-03-10 21:49:29','2015-03-10 21:49:29',1,30000334,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(667,'2015-03-10 21:49:29','2015-08-29 14:46:00',1,30003985,10,20,18,16,13,24,5,3,17,44,39,8,3,28,25,21,9,6,0,3,26,23,7,4),(668,'2015-03-10 21:49:29','2015-08-29 14:46:00',1,30000628,13,9,12,13,13,4,14,9,6,6,11,19,13,9,5,16,9,12,12,18,2,3,9,9),(669,'2015-03-10 21:49:29','2015-08-29 14:46:00',1,30000312,13,30,16,17,9,6,2,8,11,6,8,5,6,8,5,8,10,5,8,9,7,9,2,3),(670,'2015-03-10 21:49:29','2015-03-10 21:49:29',1,30001514,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(671,'2015-03-10 21:49:29','2015-03-10 21:49:29',1,30001627,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(672,'2015-03-10 21:49:29','2015-08-29 14:46:00',1,30000648,7,13,10,7,3,5,1,3,13,16,125,67,13,13,8,7,31,9,14,6,19,18,12,9),(673,'2015-03-10 21:49:29','2015-08-29 14:46:00',1,30000775,8,18,18,10,21,16,11,17,6,5,6,6,14,7,8,6,5,2,5,5,11,20,4,4),(674,'2015-03-10 21:49:29','2015-08-29 14:46:00',1,30004025,21,40,17,22,20,3,7,8,22,16,16,41,79,139,29,21,56,7,17,35,25,40,17,31),(675,'2015-03-10 21:49:29','2015-08-29 14:46:00',1,30001745,9,10,24,11,10,7,5,5,5,4,1,0,7,18,17,7,7,1,2,4,6,6,6,3),(676,'2015-03-10 21:49:29','2015-08-29 14:46:00',1,30003189,1,5,2,2,0,1,2,0,2,0,2,3,0,0,0,0,2,0,0,1,4,2,2,1),(677,'2015-03-10 21:49:29','2015-08-29 14:46:00',1,30002924,20,49,21,16,16,23,5,23,15,26,16,7,9,27,19,10,13,17,19,13,16,11,20,20),(678,'2015-03-10 21:49:29','2015-08-29 14:46:00',1,30001132,4,27,5,8,12,10,20,9,19,18,29,17,8,8,7,3,2,6,7,9,6,6,6,11),(679,'2015-03-10 21:49:29','2015-08-29 14:46:00',1,30002885,0,12,19,5,3,6,23,9,8,10,9,10,6,10,2,2,2,1,2,0,10,13,15,14),(680,'2015-03-10 21:49:29','2015-08-29 14:46:00',1,30004190,23,22,14,16,18,17,14,17,27,30,12,17,23,28,35,29,11,2,9,14,16,10,41,29),(681,'2015-03-10 21:49:29','2015-08-29 14:46:00',1,30004640,5,11,1,23,30,12,0,1,72,96,87,47,57,152,49,83,31,59,139,101,16,20,16,15),(682,'2015-03-10 21:49:29','2015-08-29 14:46:00',1,30000770,17,37,29,29,22,38,32,29,29,33,9,16,16,47,19,5,2,0,1,4,12,14,3,1),(683,'2015-03-10 21:49:29','2015-08-29 14:46:00',1,30002346,14,16,62,15,19,18,22,16,5,6,29,14,12,5,4,23,13,14,36,19,10,17,8,7),(684,'2015-03-10 21:49:29','2015-08-29 14:46:00',1,30002314,5,9,7,3,4,10,6,4,7,3,2,5,12,10,8,13,8,6,5,38,6,3,13,33),(685,'2015-03-10 21:49:29','2015-08-29 14:46:00',1,30001053,3,2,3,1,1,6,2,8,9,7,0,3,3,5,10,25,4,1,1,0,1,1,6,5),(686,'2015-03-10 21:49:29','2015-08-29 14:46:00',1,30001219,8,6,12,6,8,16,8,4,20,30,22,22,130,27,19,34,12,53,82,51,33,36,43,16),(687,'2015-03-10 21:49:29','2015-08-29 14:46:00',1,30005164,2,2,0,3,2,0,1,2,2,1,0,0,1,0,0,0,2,0,0,1,2,2,0,1),(688,'2015-03-10 21:49:29','2015-08-29 14:46:00',1,30003974,3,1,1,2,2,4,7,3,9,6,13,17,57,11,7,9,8,11,8,17,2,2,12,2),(689,'2015-03-10 21:49:29','2015-08-29 14:46:00',1,30003771,3,6,10,4,11,10,3,7,15,13,10,7,3,8,3,4,7,9,11,12,6,5,14,5),(690,'2015-03-10 21:49:29','2015-08-29 14:46:00',1,30001144,0,0,1,0,3,0,2,0,0,1,1,1,4,0,0,1,1,0,0,0,3,2,2,6),(691,'2015-03-10 21:49:29','2015-08-29 14:46:00',1,30001298,4,2,1,6,5,2,2,0,0,0,2,1,3,3,2,1,4,5,2,0,2,2,3,1),(692,'2015-03-10 21:49:29','2015-08-29 14:46:00',1,30000731,1,0,0,0,0,0,0,0,6,3,3,2,1,0,0,0,0,7,5,1,5,1,2,2),(693,'2015-03-10 21:49:29','2015-08-29 14:46:00',1,30000910,7,1,13,11,8,7,11,1,3,2,2,2,19,5,0,7,7,3,6,3,8,4,3,2),(694,'2015-03-10 21:49:29','2015-08-29 14:46:00',1,30000748,2,4,1,2,4,4,2,2,2,2,5,3,8,7,7,6,5,1,1,0,0,3,2,4),(695,'2015-03-10 21:49:29','2015-08-29 14:46:00',1,30004574,6,3,5,1,3,1,9,6,133,5,7,10,39,8,8,11,5,6,3,8,8,5,8,8),(696,'2015-03-10 21:49:29','2015-08-29 14:46:00',1,30004781,25,16,8,11,8,3,13,32,24,19,11,6,12,10,9,10,42,10,8,18,35,23,10,10),(697,'2015-03-10 21:49:29','2015-08-29 14:46:00',1,30000494,3,9,0,2,4,2,3,6,1,0,5,3,4,9,7,9,5,27,16,3,9,6,3,7),(698,'2015-03-10 21:49:29','2015-08-29 14:46:00',1,30000771,0,1,0,2,3,0,0,0,0,3,5,5,4,0,0,1,0,0,2,0,0,0,0,0),(699,'2015-03-10 21:49:29','2015-08-29 14:46:00',1,30001017,32,116,20,46,39,24,14,42,47,21,12,20,158,72,59,18,19,30,69,51,23,21,26,19),(700,'2015-03-10 21:49:29','2015-08-29 14:46:00',1,30001776,4,2,2,4,3,16,3,2,13,21,8,6,7,7,4,0,2,6,4,3,2,3,10,8),(701,'2015-03-10 21:49:29','2015-08-29 14:46:00',1,30002354,17,14,12,12,21,21,6,9,10,12,13,11,41,17,16,22,14,10,7,31,59,20,24,38),(702,'2015-03-10 21:49:29','2015-08-29 14:46:00',1,30001887,22,7,2,18,14,8,6,1,38,38,35,40,25,35,20,36,21,12,20,14,58,46,35,47),(703,'2015-03-10 21:49:29','2015-08-29 14:46:00',1,30004942,3,3,21,6,3,30,8,5,13,11,2,3,3,6,7,5,4,2,1,0,9,7,4,3),(704,'2015-03-10 21:49:29','2015-08-29 14:46:00',1,30002442,12,26,53,17,40,25,48,25,19,25,25,19,41,16,14,46,33,3,7,17,46,40,28,35),(705,'2015-03-10 21:49:29','2015-03-10 21:49:29',1,30000391,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(706,'2015-03-10 21:49:29','2015-08-29 14:46:00',1,30001879,2,3,5,2,3,6,3,1,5,9,10,10,6,4,2,5,8,1,3,1,12,15,18,19),(707,'2015-03-10 21:49:29','2015-08-29 14:46:00',1,30000652,2,39,4,11,10,4,1,2,5,5,5,4,7,46,6,9,7,11,9,19,5,4,9,9),(708,'2015-03-10 21:49:29','2015-08-29 14:46:00',1,30001561,1,2,1,4,30,1,0,1,2,3,4,5,3,1,2,47,2,1,3,2,2,1,1,2),(709,'2015-03-10 21:49:29','2015-08-29 14:46:00',1,30003750,131,211,57,57,97,80,42,57,156,147,136,98,423,102,62,66,68,51,202,1097,91,68,87,82),(710,'2015-03-10 21:49:29','2015-08-29 14:46:00',1,30000697,8,27,3,1,18,6,3,2,70,50,34,18,32,36,21,26,16,12,17,47,41,32,20,11),(711,'2015-03-10 21:49:29','2015-08-29 14:46:00',1,30004681,5,7,13,17,7,10,10,9,14,23,22,10,12,16,16,5,7,3,4,10,16,16,20,16),(712,'2015-03-10 21:49:29','2015-08-29 14:46:00',1,30003702,19,22,60,78,84,32,10,9,6,10,27,15,17,36,22,26,6,14,9,8,11,11,7,8),(713,'2015-03-10 21:49:29','2015-08-29 14:46:00',1,30004012,31,2,8,10,14,2,9,26,16,31,24,20,23,24,22,21,11,9,2,22,23,14,12,18),(714,'2015-03-10 21:49:29','2015-08-29 14:46:00',1,30004056,12,117,36,53,31,9,7,21,38,27,8,8,12,18,16,10,28,7,25,6,12,12,16,6),(715,'2015-03-10 21:49:29','2015-08-29 14:46:00',1,30001805,12,6,6,12,15,5,40,5,17,47,11,8,14,13,19,14,12,2,3,7,3,6,7,7),(716,'2015-03-10 21:49:29','2015-08-29 14:46:00',1,30004771,8,5,1,1,1,1,3,19,10,6,2,4,11,8,11,16,1,5,7,4,19,9,13,13),(717,'2015-03-10 21:49:29','2015-03-10 21:49:29',1,30001523,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(718,'2015-03-10 21:49:29','2015-08-29 14:46:00',1,30002004,43,32,31,29,32,66,24,49,55,70,24,36,55,91,97,44,76,8,11,29,64,41,54,47),(719,'2015-03-10 21:49:29','2015-08-29 14:46:00',1,30002930,49,153,65,64,71,34,63,67,58,72,46,37,78,86,66,51,36,38,45,49,44,38,54,37),(720,'2015-03-10 21:49:29','2015-08-29 14:46:00',1,30000242,35,52,48,81,57,61,40,50,19,23,19,17,47,27,35,83,41,55,51,16,52,45,28,18),(721,'2015-03-10 21:49:29','2015-03-10 21:49:29',1,30001614,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(722,'2015-03-10 21:49:29','2015-08-29 14:46:00',1,30003320,30,104,50,31,31,60,30,21,37,38,33,21,63,59,48,44,32,13,8,35,39,50,20,23),(723,'2015-03-10 21:49:29','2015-08-29 14:46:00',1,30003695,17,44,38,32,29,22,26,17,7,13,6,5,10,16,19,12,12,11,6,28,13,15,9,11),(724,'2015-03-10 21:49:29','2015-08-29 14:46:00',1,30004760,2,158,2,5,3,3,5,18,26,16,5,2,10,10,8,10,10,8,7,5,29,11,11,5),(725,'2015-03-10 21:49:29','2015-08-29 14:46:00',1,30002171,10,13,15,14,15,11,8,5,10,21,26,19,30,47,56,12,9,10,11,29,26,16,22,16),(726,'2015-03-10 21:49:29','2015-08-29 14:46:00',1,30000942,39,56,39,37,32,24,28,18,30,40,29,29,70,70,56,35,32,88,50,73,16,59,51,48),(727,'2015-03-10 21:49:29','2015-08-29 14:46:00',1,30001877,9,18,8,19,25,9,4,2,37,44,38,43,24,51,46,40,29,3,11,23,37,65,36,37),(728,'2015-03-10 21:49:29','2015-08-29 14:46:00',1,30000469,3,2,3,6,5,8,3,5,33,5,6,5,17,39,32,3,5,1,1,18,12,8,1,1),(729,'2015-03-10 21:49:29','2015-08-29 14:46:00',1,30002868,12,9,15,4,6,7,2,4,25,30,34,25,17,34,32,13,19,2,2,57,20,17,33,21),(730,'2015-03-10 21:49:29','2015-08-29 14:46:00',1,30001273,70,67,85,73,70,61,52,53,164,110,103,96,81,172,156,274,62,32,45,92,70,187,71,51),(731,'2015-03-10 21:49:29','2015-08-29 14:46:00',1,30000939,2,1,3,3,3,1,0,1,1,1,6,7,3,1,0,3,4,1,3,2,1,4,0,2),(732,'2015-03-10 21:49:29','2015-08-29 14:46:00',1,30004059,9,19,15,19,12,7,2,12,5,10,8,12,13,21,12,8,22,10,19,20,22,17,11,13),(733,'2015-03-10 21:49:29','2015-08-29 14:46:00',1,30004219,0,1,1,1,2,12,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,1,2),(734,'2015-03-10 21:49:29','2015-08-29 14:46:00',1,30001279,19,10,7,9,11,7,16,15,7,8,11,9,12,12,8,13,17,14,1,8,5,7,14,21),(735,'2015-03-10 21:49:29','2015-08-29 14:46:00',1,30001166,19,23,21,17,10,4,9,4,106,131,46,19,26,34,16,20,19,14,29,29,41,33,18,13),(736,'2015-03-10 21:49:29','2015-08-29 14:46:00',1,30004879,47,41,42,65,61,65,33,46,35,37,42,30,16,24,17,31,15,5,51,58,19,22,35,17),(737,'2015-03-10 21:49:29','2015-08-29 14:46:00',1,30004397,20,13,25,13,16,109,10,11,21,23,5,3,64,15,8,23,50,25,36,44,14,13,23,19),(738,'2015-03-10 21:49:29','2015-03-10 21:49:29',1,30001600,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(739,'2015-03-10 21:49:29','2015-03-10 21:49:29',1,30001484,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(740,'2015-03-10 21:49:29','2015-08-29 14:46:00',1,30005148,6,2,3,4,1,2,0,9,1,2,10,10,0,0,3,1,1,0,0,1,8,10,6,3),(741,'2015-03-10 21:49:29','2015-08-29 14:46:00',1,30003704,58,36,32,41,143,25,49,79,72,72,31,23,290,209,174,33,36,117,65,143,38,81,88,114),(742,'2015-03-10 21:49:29','2015-08-29 14:46:00',1,30000318,12,11,13,12,13,16,2,6,16,22,31,18,17,17,22,44,30,8,16,25,215,65,35,40),(743,'2015-03-10 21:49:29','2015-08-29 14:46:00',1,30003961,3,1,1,0,0,0,5,5,3,4,2,0,2,2,2,2,0,0,0,1,1,0,0,0),(744,'2015-03-10 21:49:29','2015-08-29 14:46:00',1,30002590,2,2,5,6,3,11,1,6,69,17,7,8,2,7,7,10,14,8,3,5,8,7,16,7),(745,'2015-03-10 21:49:29','2015-08-29 14:46:00',1,30002450,3,12,17,21,20,14,7,8,29,24,38,36,8,23,19,23,17,8,5,18,50,32,12,15),(746,'2015-03-10 21:49:29','2015-08-29 14:46:00',1,30004826,5,16,7,21,16,13,66,6,4,1,5,1,3,3,1,1,12,10,5,8,11,0,6,5),(747,'2015-03-10 21:49:29','2015-08-29 14:46:00',1,30000454,6,8,10,7,3,25,6,6,7,12,14,9,8,12,9,9,8,4,1,12,9,11,7,7),(748,'2015-03-10 21:49:29','2015-08-29 14:46:00',1,30001266,6,71,8,9,6,3,5,4,128,42,101,27,159,43,249,57,11,13,17,81,31,134,27,37),(749,'2015-03-10 21:49:29','2015-08-29 14:46:00',1,30004557,16,19,23,11,11,8,12,24,279,243,92,52,788,33,28,49,43,66,72,216,39,43,18,14),(750,'2015-03-10 21:49:29','2015-08-29 14:46:00',1,30004201,21,15,39,27,16,42,20,30,19,16,10,12,12,10,18,6,13,0,12,31,17,16,47,56),(751,'2015-03-10 21:49:29','2015-08-29 14:46:00',1,30002159,34,34,46,15,14,46,12,14,25,43,19,11,8,31,20,9,15,3,25,32,5,7,14,14),(752,'2015-03-10 21:49:29','2015-08-29 14:46:00',1,30005168,4,14,2,11,12,3,5,0,12,14,6,5,9,8,7,4,7,1,2,8,7,8,18,23),(753,'2015-03-10 21:49:29','2015-08-29 14:46:00',1,30004409,2,8,17,13,13,6,11,22,11,8,13,12,19,23,29,17,20,21,19,16,49,19,25,24),(754,'2015-03-10 21:49:29','2015-08-29 14:46:00',1,30001814,12,22,15,31,31,6,8,28,7,15,15,15,19,6,4,9,19,2,0,5,5,6,8,7),(755,'2015-03-10 21:49:29','2015-03-10 21:49:29',1,30001609,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(756,'2015-03-10 21:49:29','2015-08-29 14:46:00',1,30003253,5,40,7,8,5,6,5,3,3,3,1,1,6,1,0,5,4,0,2,6,6,5,6,6),(757,'2015-03-10 21:49:29','2015-08-29 14:46:00',1,30000994,4,2,3,2,5,1,0,2,1,0,3,1,2,4,3,0,0,1,1,12,3,6,0,0),(758,'2015-03-10 21:49:29','2015-08-29 14:46:00',1,30001312,5,15,10,18,12,13,13,9,39,39,32,28,23,75,28,10,18,13,14,11,8,6,12,6),(759,'2015-03-10 21:49:29','2015-08-29 14:46:00',1,30001284,9,0,0,3,1,3,0,1,5,6,2,3,7,2,5,6,2,14,32,8,0,1,4,1),(760,'2015-03-10 21:49:29','2015-08-29 14:46:00',1,30001990,22,144,36,30,23,14,14,30,23,16,11,8,25,13,11,7,22,82,10,12,15,23,19,15),(761,'2015-03-10 21:49:29','2015-08-29 14:46:00',1,30002895,15,67,14,13,14,5,13,19,266,257,377,243,495,474,434,333,197,404,208,301,903,200,114,115),(762,'2015-03-10 21:49:29','2015-08-29 14:46:00',1,30002131,6,0,1,2,7,3,1,0,0,11,5,2,4,0,1,3,2,3,1,1,0,0,0,6),(763,'2015-03-10 21:49:29','2015-08-29 14:46:00',1,30000271,8,6,12,2,20,1,6,1,0,0,0,0,0,4,0,0,1,0,1,0,3,4,0,0),(764,'2015-03-10 21:49:29','2015-08-29 14:46:00',1,30005130,2,2,2,1,0,0,0,0,8,6,0,6,2,2,3,9,9,0,2,1,1,1,1,0),(765,'2015-03-10 21:49:29','2015-08-29 14:46:00',1,30003301,35,105,17,41,49,25,24,16,25,13,26,22,12,31,29,20,21,22,10,13,33,32,29,28),(766,'2015-03-10 21:49:29','2015-03-10 21:49:29',1,30000392,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(767,'2015-03-10 21:49:29','2015-08-29 14:46:00',1,30003373,10,15,13,9,9,2,8,2,6,6,0,1,9,9,15,9,2,12,5,6,11,12,2,2),(768,'2015-03-10 21:49:29','2015-08-29 14:46:00',1,30004914,29,35,2,21,19,18,8,6,40,28,13,22,13,38,29,7,41,26,30,11,13,13,10,20),(769,'2015-03-10 21:49:29','2015-08-29 14:46:00',1,30000616,0,2,10,4,3,1,2,0,1,2,4,7,4,0,0,5,4,2,2,3,3,3,4,4),(770,'2015-03-10 21:49:29','2015-08-29 14:46:00',1,30000724,3,1,1,9,8,1,1,1,3,3,5,11,2,3,4,4,4,0,2,1,5,4,6,3),(771,'2015-03-10 21:49:29','2015-08-29 14:46:00',1,30003979,80,31,23,25,33,16,14,18,13,23,28,21,71,16,19,13,14,42,9,14,15,10,25,30),(772,'2015-03-10 21:49:29','2015-08-29 14:46:00',1,30002949,3,4,9,7,13,9,19,42,24,25,6,5,14,12,16,11,13,3,7,11,20,17,10,6),(773,'2015-03-10 21:49:29','2015-08-29 14:46:00',1,30004629,0,0,1,4,4,3,6,2,61,6,1,2,1,1,0,0,2,5,1,4,3,3,2,0),(774,'2015-03-10 21:49:29','2015-08-29 14:46:00',1,30004646,4,5,6,12,14,9,4,2,22,20,11,12,14,15,9,14,18,20,23,39,12,17,14,20),(775,'2015-03-10 21:49:29','2015-08-29 14:46:00',1,30003954,11,66,22,20,19,9,28,21,21,18,12,8,9,12,12,13,8,22,5,15,5,4,8,6),(776,'2015-03-10 21:49:29','2015-08-29 14:46:00',1,30002284,7,19,16,7,14,21,18,13,15,7,8,13,12,10,7,11,6,39,5,46,9,14,16,41),(777,'2015-03-10 21:49:29','2015-08-29 14:46:00',1,30004366,3,11,8,6,10,15,78,24,15,19,9,5,3,14,16,6,11,8,6,7,3,4,6,7),(778,'2015-03-10 21:49:29','2015-08-29 14:46:00',1,30001079,1,19,34,7,9,26,14,5,38,35,7,3,33,11,11,12,10,6,8,12,79,57,7,7),(779,'2015-03-10 21:49:29','2015-08-29 14:46:00',1,30003249,6,43,5,4,4,8,6,6,3,6,6,3,4,5,0,2,4,2,4,4,10,6,6,4),(780,'2015-03-10 21:49:29','2015-08-29 14:46:00',1,30000875,21,22,27,26,19,24,25,41,5,1,3,5,1,12,15,8,9,13,10,11,4,10,20,15),(781,'2015-03-10 21:49:29','2015-08-29 14:46:00',1,30004796,15,22,15,13,5,4,6,33,25,23,13,9,23,14,9,11,44,13,6,16,31,21,10,9),(782,'2015-03-10 21:49:29','2015-08-29 14:46:00',1,30003338,6,16,5,4,4,18,3,1,8,19,16,10,9,4,6,4,14,1,0,6,0,2,3,1),(783,'2015-03-10 21:49:29','2015-08-29 14:46:00',1,30002589,9,12,24,9,9,25,13,48,19,11,17,13,46,42,47,34,36,11,32,122,27,28,28,34),(784,'2015-03-10 21:49:29','2015-08-29 14:46:00',1,30001306,13,19,6,10,14,5,2,10,16,28,15,20,15,54,42,3,4,6,18,18,8,12,5,4),(785,'2015-03-10 21:49:29','2015-08-29 14:46:00',1,30005180,2,10,0,4,5,0,1,0,11,13,2,4,5,3,2,1,5,0,1,5,12,18,8,10),(786,'2015-03-10 21:49:29','2015-03-10 21:49:29',1,30000429,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(787,'2015-03-10 21:49:29','2015-08-29 14:46:00',1,30004169,18,1,14,6,3,8,3,3,22,25,13,12,15,10,10,6,9,2,1,2,9,10,5,8),(788,'2015-03-10 21:49:29','2015-08-29 14:46:00',1,30001154,28,73,80,53,33,55,47,121,152,176,157,101,183,182,286,80,107,187,81,170,134,216,102,105),(789,'2015-03-10 21:49:29','2015-08-29 14:46:00',1,30000723,2,0,5,0,2,1,5,1,2,2,4,3,2,2,2,7,5,1,5,4,6,5,8,19),(790,'2015-03-10 21:49:29','2015-08-29 14:46:00',1,30004884,3,0,1,3,4,1,7,2,4,2,6,2,4,12,7,3,3,54,22,16,8,5,17,22),(791,'2015-03-10 21:49:29','2015-03-10 21:49:29',1,30000399,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(792,'2015-03-10 21:49:29','2015-08-29 14:46:00',1,30000458,1,8,4,4,3,1,19,3,3,9,12,6,8,7,8,5,6,2,7,0,7,10,6,5),(793,'2015-03-10 21:49:29','2015-08-29 14:46:00',1,30001128,0,1,4,0,0,3,7,8,8,7,3,4,4,3,2,24,4,0,5,4,2,1,7,9),(794,'2015-03-10 21:49:29','2015-08-29 14:46:00',1,30004780,25,16,8,12,9,3,13,33,20,19,11,7,9,10,8,9,40,13,8,19,30,20,7,7),(795,'2015-03-10 21:49:29','2015-08-29 14:46:00',1,30004582,0,2,2,1,0,0,3,3,0,0,0,0,14,2,3,11,2,13,3,3,1,0,0,0),(796,'2015-03-10 21:49:29','2015-08-29 14:46:00',1,30001886,5,5,2,9,8,4,0,1,4,5,17,15,9,14,2,4,2,5,3,6,6,5,3,7),(797,'2015-03-10 21:49:29','2015-08-29 14:46:00',1,30000800,6,26,5,16,24,6,21,4,6,3,7,9,3,6,6,8,13,0,0,3,2,2,6,5),(798,'2015-03-10 21:49:29','2015-08-29 14:46:00',1,30000247,51,31,56,38,34,49,38,23,16,28,60,13,23,20,22,22,16,34,13,10,18,13,71,37),(799,'2015-03-10 21:49:29','2015-08-29 14:46:00',1,30002287,1,17,5,6,10,8,4,5,12,7,15,23,10,4,3,5,4,12,12,12,15,9,3,1),(800,'2015-03-10 21:49:29','2015-08-29 14:46:00',1,30002472,21,11,15,13,14,23,9,6,27,29,14,24,27,31,27,26,42,8,12,35,33,31,15,26),(801,'2015-03-10 21:49:29','2015-08-29 14:46:00',1,30000668,26,203,33,57,45,102,4,40,14,20,27,30,29,49,33,25,17,8,44,58,47,24,46,28),(802,'2015-03-10 21:49:29','2015-08-29 14:46:00',1,30002339,1,4,3,4,3,3,1,1,1,0,2,2,0,30,14,1,0,0,1,0,21,19,0,0),(803,'2015-03-10 21:49:29','2015-08-29 14:46:00',1,30004569,3,0,4,1,1,2,2,3,8,9,6,4,4,5,8,5,8,1,5,4,13,11,1,1),(804,'2015-03-10 21:49:29','2015-08-29 14:46:00',1,30001840,21,77,53,37,45,31,14,19,62,71,58,55,59,116,101,68,62,17,56,73,57,76,69,55),(805,'2015-03-10 21:49:29','2015-08-29 14:46:00',1,30001796,2,4,2,5,5,2,5,1,15,9,2,17,59,9,10,77,13,2,6,12,8,0,3,7),(806,'2015-03-10 21:49:29','2015-08-29 14:46:00',1,30004022,3,0,3,3,2,1,0,0,3,1,0,2,1,4,5,2,6,0,3,6,1,1,0,0),(807,'2015-03-10 21:49:29','2015-08-29 14:46:00',1,30000883,2,6,1,5,2,6,5,3,1,2,0,2,1,1,1,5,0,2,2,3,2,0,0,0),(808,'2015-03-10 21:49:29','2015-08-29 14:46:00',1,30000969,6,14,14,17,28,4,6,5,15,5,13,15,28,16,9,14,11,22,64,20,17,24,41,43),(809,'2015-03-10 21:49:29','2015-08-29 14:46:00',1,30004672,2,2,1,0,1,4,6,2,6,5,9,7,1,7,9,8,6,3,3,2,6,5,8,8),(810,'2015-03-10 21:49:29','2015-08-29 14:46:00',1,30003341,1,0,2,1,3,3,1,0,1,0,3,6,2,0,1,7,5,0,0,2,0,1,1,0),(811,'2015-03-10 21:49:29','2015-08-29 14:46:00',1,30001857,13,19,10,3,6,11,8,5,23,14,40,42,29,57,43,35,42,6,15,13,32,45,38,34),(812,'2015-03-10 21:49:29','2015-08-29 14:46:00',1,30003707,208,419,152,154,187,144,80,162,495,376,195,184,955,297,272,194,164,269,462,674,225,193,186,206),(813,'2015-03-10 21:49:29','2015-08-29 14:46:00',1,30005137,2,16,13,13,10,1,4,3,3,1,0,0,0,2,2,0,6,1,2,2,1,1,0,0),(814,'2015-03-10 21:49:29','2015-03-10 21:49:29',1,30000412,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(815,'2015-03-10 21:49:29','2015-08-29 14:46:00',1,30001764,1,5,4,6,7,2,1,11,0,0,15,6,0,4,0,3,0,0,2,2,4,9,1,3),(816,'2015-03-10 21:49:29','2015-08-29 14:46:00',1,30002618,0,2,1,2,0,3,0,1,0,0,1,2,0,0,0,1,0,0,1,0,3,3,6,6),(817,'2015-03-10 21:49:29','2015-08-29 14:46:00',1,30004179,3,1,8,14,15,6,5,8,11,6,14,18,11,2,10,4,6,3,5,5,3,5,12,11),(818,'2015-03-10 21:49:29','2015-08-29 14:46:00',1,30004619,17,28,34,30,22,22,8,17,20,21,21,21,46,20,27,38,12,76,46,25,41,8,21,25),(819,'2015-03-10 21:49:29','2015-08-29 14:46:00',1,30003650,4,5,2,7,5,7,13,2,0,0,2,3,6,10,6,3,6,1,8,8,3,3,3,5),(820,'2015-03-10 21:49:29','2015-08-29 14:46:00',1,30003319,1,1,0,0,0,1,4,2,1,0,0,1,1,0,0,1,0,4,1,0,1,0,6,3),(821,'2015-03-10 21:49:29','2015-08-29 14:46:00',1,30000587,5,8,3,1,1,1,1,5,15,6,2,0,7,21,15,2,7,2,2,2,7,5,7,5),(822,'2015-03-10 21:49:29','2015-08-29 14:46:00',1,30003977,3,1,4,6,2,9,1,4,7,10,4,6,0,9,8,6,7,3,5,2,6,7,14,13),(823,'2015-03-10 21:49:29','2015-08-29 14:46:00',1,30004544,7,9,2,4,1,16,8,7,4,4,5,4,4,3,2,7,5,1,0,5,2,3,5,0),(824,'2015-03-10 21:49:29','2015-08-29 14:46:00',1,30000491,0,2,4,1,0,2,1,1,7,14,15,11,13,29,19,22,6,11,76,41,29,18,25,17),(825,'2015-03-10 21:49:29','2015-08-29 14:46:00',1,30001193,37,22,36,37,23,27,33,46,52,69,46,42,66,50,51,52,36,31,67,42,35,28,48,35),(826,'2015-03-10 21:49:29','2015-08-29 14:46:00',1,30000702,8,2,2,1,0,0,1,0,1,3,1,1,7,2,0,0,2,0,0,1,0,0,0,0),(827,'2015-03-10 21:49:29','2015-08-29 14:46:00',1,30001283,8,1,1,8,5,3,0,2,2,2,1,1,7,2,3,8,4,6,11,28,2,1,3,1),(828,'2015-03-10 21:49:29','2015-08-29 14:46:00',1,30003967,15,6,6,7,10,8,15,28,9,19,17,14,29,20,11,11,8,14,14,19,8,9,26,23),(829,'2015-03-10 21:49:29','2015-08-29 14:46:00',1,30000476,1,2,3,4,4,1,3,3,3,4,7,8,12,20,10,15,11,21,187,5,11,11,8,2),(830,'2015-03-10 21:49:29','2015-08-29 14:46:00',1,30003100,20,20,14,9,21,30,9,7,6,6,10,11,8,16,17,12,17,8,19,23,13,14,17,23),(831,'2015-03-10 21:49:29','2015-08-29 14:46:00',1,30000852,2,1,1,1,0,15,5,7,3,1,2,6,3,3,2,1,0,0,0,0,7,3,1,4),(832,'2015-03-10 21:49:29','2015-08-29 14:46:00',1,30001954,7,13,3,3,2,15,1,7,13,9,8,4,5,12,7,7,13,16,7,9,10,10,13,13),(833,'2015-03-10 21:49:29','2015-08-29 14:46:00',1,30004708,28,70,24,36,28,44,20,16,194,209,55,59,43,152,201,93,45,47,75,100,67,106,161,202),(834,'2015-03-10 21:49:29','2015-08-29 14:46:00',1,30004359,14,16,31,17,26,60,26,27,15,14,4,3,15,16,23,16,9,4,3,5,6,11,9,6),(835,'2015-03-10 21:49:29','2015-08-29 14:46:00',1,30001870,6,19,8,9,6,4,6,6,20,16,19,25,34,37,43,38,22,15,23,27,48,38,57,39),(836,'2015-03-10 21:49:29','2015-08-29 14:46:00',1,30004605,13,20,24,31,37,32,8,9,10,11,8,6,3,10,12,14,8,43,28,28,36,26,13,16),(837,'2015-03-10 21:49:29','2015-08-29 14:46:00',1,30001537,5,31,2,1,4,2,1,0,1,3,7,6,0,3,4,3,7,0,10,4,5,6,5,7),(838,'2015-03-10 21:49:29','2015-08-29 14:46:00',1,30000314,7,7,12,12,6,5,1,6,9,10,17,7,13,9,10,17,22,2,5,8,11,11,5,8),(839,'2015-03-10 21:49:29','2015-08-29 14:46:00',1,30004850,1,0,0,0,1,0,8,17,10,13,8,3,23,5,8,5,3,12,4,11,4,5,4,1),(840,'2015-03-10 21:49:29','2015-08-29 14:46:00',1,30003335,23,39,22,29,21,57,3,13,8,14,21,11,20,10,12,11,11,12,40,13,16,10,11,7),(841,'2015-03-10 21:49:29','2015-08-29 14:46:00',1,30000769,1,7,11,8,13,0,4,20,34,21,13,17,8,2,0,5,5,1,11,8,0,2,3,3),(842,'2015-03-10 21:49:29','2015-08-29 14:46:00',1,30001210,47,47,41,21,22,23,25,29,21,14,39,33,47,21,6,25,28,28,29,34,16,25,17,23),(843,'2015-03-10 21:49:29','2015-03-10 21:49:29',1,30000362,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(844,'2015-03-10 21:49:29','2015-08-29 14:46:00',1,30001950,3,2,3,0,13,8,1,1,7,7,4,5,16,10,6,2,14,2,4,2,4,3,2,1),(845,'2015-03-10 21:49:29','2015-08-29 14:46:00',1,30002836,3,0,7,3,5,2,2,9,2,5,12,5,2,1,2,1,4,4,2,7,2,9,3,38),(846,'2015-03-10 21:49:29','2015-08-29 14:46:00',1,30003305,4,17,3,7,10,0,16,5,2,4,0,0,4,9,10,4,2,4,1,2,6,7,2,5),(847,'2015-03-10 21:49:29','2015-08-29 14:46:00',1,30001077,1,4,4,3,3,7,11,9,3,3,5,3,7,2,5,7,8,1,0,0,4,4,4,3),(848,'2015-03-10 21:49:29','2015-08-29 14:46:00',1,30003125,54,34,55,37,61,78,26,46,42,41,30,68,127,197,175,37,28,35,46,45,61,57,54,54),(849,'2015-03-10 21:49:29','2015-08-29 14:46:00',1,30002611,7,0,3,5,5,0,2,9,1,1,0,0,1,2,0,1,2,1,1,1,1,2,5,5),(850,'2015-03-10 21:49:29','2015-08-29 14:46:00',1,30005167,2,0,0,3,2,0,5,1,2,4,2,2,0,1,0,0,0,0,2,1,0,0,0,1),(851,'2015-03-10 21:49:29','2015-08-29 14:46:00',1,30003655,6,25,7,3,5,7,10,15,3,10,3,1,8,5,5,8,7,3,14,23,13,16,8,8),(852,'2015-03-10 21:49:29','2015-08-29 14:46:00',1,30003942,32,12,36,28,24,22,15,16,53,75,55,33,69,67,53,41,45,27,46,34,37,43,38,41),(853,'2015-03-10 21:49:29','2015-08-29 14:46:00',1,30000794,32,26,16,22,22,50,31,49,25,15,31,32,24,55,73,37,30,9,16,27,29,22,19,14),(854,'2015-03-10 21:49:29','2015-08-29 14:46:00',1,30004550,5,0,4,7,3,10,45,0,1,1,4,2,3,6,2,5,2,3,3,4,1,1,5,3),(855,'2015-03-10 21:49:29','2015-08-29 14:46:00',1,30003944,0,1,0,2,2,0,5,1,6,22,8,8,7,11,8,10,7,8,12,1,4,5,9,8),(856,'2015-03-10 21:49:29','2015-03-10 21:49:29',1,30000409,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(857,'2015-03-10 21:49:29','2015-08-29 14:46:00',1,30000317,7,4,10,6,8,5,2,3,6,6,16,7,4,6,16,24,22,2,2,4,25,7,1,7),(858,'2015-03-10 21:49:29','2015-08-29 14:46:00',1,30002113,1,13,3,0,0,5,2,0,0,0,0,1,0,2,1,0,0,0,1,1,1,0,3,2),(859,'2015-03-10 21:49:29','2015-08-29 14:46:00',1,30002952,23,18,18,26,35,26,11,31,29,21,29,25,26,32,30,17,23,5,25,23,25,25,19,14),(860,'2015-03-10 21:49:29','2015-08-29 14:46:00',1,30001896,8,17,20,10,3,1,7,9,8,13,12,14,38,26,29,23,19,18,17,26,30,22,17,16),(861,'2015-03-10 21:49:29','2015-08-29 14:46:00',1,30003150,0,4,3,4,6,5,5,2,0,1,4,2,2,1,1,6,1,3,0,0,0,1,1,0),(862,'2015-03-10 21:49:29','2015-08-29 14:46:00',1,30004558,2,1,2,1,0,2,1,6,1,0,0,0,1,3,2,1,1,0,2,1,1,1,2,1),(863,'2015-03-10 21:49:29','2015-08-29 14:46:00',1,30000259,5,10,12,17,10,12,4,0,9,8,7,23,10,12,11,7,10,2,5,6,14,11,13,21),(864,'2015-03-10 21:49:29','2015-08-29 14:46:00',1,30001993,44,39,24,22,28,19,11,13,8,11,15,9,10,14,7,13,4,16,14,6,11,11,15,8),(865,'2015-03-10 21:49:29','2015-08-29 14:46:00',1,30005092,1,6,2,3,5,3,3,3,4,1,0,2,2,22,6,0,2,1,1,20,4,3,1,0),(866,'2015-03-10 21:49:29','2015-03-10 21:49:29',1,30001459,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(867,'2015-03-10 21:49:29','2015-08-29 14:46:00',1,30003331,2,9,2,1,3,8,24,3,6,4,2,2,3,3,3,4,5,3,4,5,15,15,7,9),(868,'2015-03-10 21:49:29','2015-08-29 14:46:00',1,30004690,8,6,4,6,5,15,5,4,10,7,5,4,4,9,8,3,5,3,3,3,2,2,7,8),(869,'2015-03-10 21:49:29','2015-08-29 14:46:00',1,30001285,7,0,0,5,3,2,0,0,1,2,0,2,2,2,4,1,2,3,1,0,1,1,4,1),(870,'2015-03-10 21:49:29','2015-08-29 14:46:00',1,30001396,53,31,47,33,37,63,40,53,40,46,56,53,123,80,64,94,83,49,47,84,71,77,57,57),(871,'2015-03-10 21:49:29','2015-08-29 14:46:00',1,30001022,1,8,1,0,0,0,0,3,7,4,4,5,8,6,6,3,0,1,0,0,6,6,4,3),(872,'2015-03-10 21:49:29','2015-08-29 14:46:00',1,30003293,4,6,1,5,8,3,3,7,8,12,4,5,13,5,4,3,4,13,4,5,6,4,1,6),(873,'2015-03-10 21:49:29','2015-08-29 14:46:00',1,30000914,12,7,0,5,3,2,5,4,5,6,6,4,5,6,5,2,3,0,3,3,12,15,2,4),(874,'2015-03-10 21:49:29','2015-08-29 14:46:00',1,30000147,59,69,64,75,67,43,18,27,84,86,77,64,55,78,79,82,69,37,38,68,68,72,55,78),(875,'2015-03-10 21:49:29','2015-08-29 14:46:00',1,30001694,53,89,68,74,72,61,58,85,157,155,183,152,106,185,158,136,191,85,160,266,307,305,274,280),(876,'2015-03-10 21:49:29','2015-08-29 14:46:00',1,30003512,20,30,36,26,35,11,11,16,34,43,44,54,47,33,37,37,22,9,32,27,30,28,29,30),(877,'2015-03-10 21:49:29','2015-08-29 14:46:00',1,30004090,56,94,95,76,78,62,61,70,94,126,113,77,112,116,98,65,87,75,120,121,126,107,109,94),(878,'2015-03-10 21:49:29','2015-08-29 14:46:00',1,30005062,18,19,14,11,17,10,6,11,40,30,10,12,31,13,18,22,20,12,23,46,16,21,7,6),(879,'2015-03-10 21:49:29','2015-08-29 14:46:00',1,30004831,21,3,5,2,1,3,38,27,7,7,12,9,12,7,9,11,8,5,13,5,7,14,3,4),(880,'2015-03-10 21:49:29','2015-08-29 14:46:00',1,30002713,30,44,60,48,54,36,37,24,44,55,64,63,45,60,65,52,55,51,50,57,44,44,39,27),(881,'2015-03-10 21:49:29','2015-08-29 14:46:00',1,30000105,14,26,7,14,14,10,6,20,23,16,30,36,36,42,44,25,34,65,14,23,19,24,16,13),(882,'2015-03-10 21:49:29','2015-08-29 14:46:00',1,30005254,5,15,5,10,7,6,7,6,26,35,39,35,21,28,14,31,23,5,8,16,14,19,11,9),(883,'2015-03-10 21:49:29','2015-08-29 14:46:00',1,30013410,15,3,12,13,8,8,8,9,12,7,4,5,11,8,11,10,14,16,11,11,15,13,11,11),(884,'2015-03-10 21:49:29','2015-08-29 14:46:00',1,30002507,294,470,434,440,397,320,291,377,431,495,406,366,488,541,545,529,347,365,362,467,483,411,432,386),(885,'2015-03-10 21:49:29','2015-08-29 14:46:00',1,30004984,78,108,84,142,171,70,98,104,357,281,109,81,183,148,169,145,90,206,126,80,221,171,109,106),(886,'2015-03-10 21:49:29','2015-08-29 14:46:00',1,30002160,25,9,26,5,1,17,1,9,3,4,8,3,4,5,2,1,1,2,13,17,3,5,4,8),(887,'2015-03-10 21:49:29','2015-08-29 14:46:00',1,30004563,1,2,2,2,0,0,4,1,4,1,37,3,3,1,1,1,0,5,0,0,0,0,11,4),(888,'2015-03-10 21:49:29','2015-08-29 14:46:00',1,30005266,18,20,22,19,22,31,6,24,26,28,10,10,20,10,11,7,4,14,19,9,47,24,24,20),(889,'2015-03-10 21:49:29','2015-08-29 14:46:00',1,30003028,23,37,43,22,22,25,13,14,31,40,43,41,48,44,41,32,48,42,38,35,34,39,32,38),(890,'2015-03-10 21:49:29','2015-08-29 14:46:00',1,30004981,16,14,25,22,25,15,30,8,38,35,27,27,26,33,30,14,38,23,24,24,33,20,38,34),(891,'2015-03-10 21:49:29','2015-08-29 14:46:00',1,30002478,5,22,14,13,9,10,21,14,16,11,17,10,18,17,12,20,8,6,8,11,56,45,22,126),(892,'2015-03-10 21:49:29','2015-08-29 14:46:00',1,30002892,4,3,1,2,2,1,5,3,3,2,2,0,2,0,0,1,1,0,1,0,3,1,3,5),(893,'2015-03-10 21:49:29','2015-08-29 14:46:00',1,30003832,38,49,38,36,41,76,26,22,44,39,56,47,61,77,60,61,49,16,38,67,62,47,53,53),(894,'2015-03-10 21:49:29','2015-08-29 14:46:00',1,30001648,10,8,7,11,11,7,4,5,9,13,7,7,20,21,16,7,6,3,3,3,9,12,9,21),(895,'2015-03-10 21:49:29','2015-08-29 14:46:00',1,30015305,15,36,33,37,34,37,26,43,35,35,40,33,26,54,52,29,30,22,18,40,57,50,46,39),(896,'2015-03-10 21:49:29','2015-08-29 14:46:00',1,30001717,5,3,0,2,2,13,3,3,6,12,10,15,10,15,15,9,9,9,8,4,3,6,3,7),(897,'2015-03-10 21:49:29','2015-08-29 14:46:00',1,30003059,2,5,8,18,10,6,2,7,9,12,5,8,5,6,10,17,7,7,1,6,2,5,1,2),(898,'2015-03-10 21:49:29','2015-08-29 14:46:00',1,30003439,30,17,20,18,22,8,16,9,9,10,16,21,14,13,11,23,18,5,7,9,17,26,15,17),(899,'2015-03-10 21:49:29','2015-08-29 14:46:00',1,30002268,8,9,9,9,10,11,2,3,20,23,17,15,27,11,9,10,12,3,11,13,13,7,5,5),(900,'2015-03-10 21:49:29','2015-08-29 14:46:00',1,30002710,78,101,146,91,97,118,67,76,112,117,130,108,149,158,175,140,154,89,104,115,135,142,131,106),(901,'2015-03-10 21:49:29','2015-08-29 14:46:00',1,30005003,29,48,35,19,21,52,22,39,59,52,42,44,36,54,53,55,45,17,28,30,41,22,37,32),(902,'2015-03-10 21:49:29','2015-08-29 14:46:00',1,30002704,21,34,16,21,18,36,16,25,29,35,36,31,44,49,33,35,34,20,26,27,35,31,58,42),(903,'2015-03-10 21:49:29','2015-08-29 14:46:00',1,30005021,23,18,20,19,29,44,13,14,38,45,46,27,29,37,36,26,31,19,30,27,44,39,42,52),(904,'2015-03-10 21:49:29','2015-08-29 14:46:00',1,30002639,104,161,159,131,140,127,84,122,204,206,163,142,211,264,229,198,163,116,138,187,194,208,154,151),(905,'2015-03-10 21:49:29','2015-08-29 14:46:00',1,30002393,43,67,58,53,34,44,22,34,64,47,49,45,80,71,66,71,63,71,70,71,73,72,65,58),(906,'2015-03-10 21:49:29','2015-08-29 14:46:00',1,30002383,91,122,113,142,121,115,78,98,184,173,131,128,178,198,214,188,182,99,110,132,206,162,122,126),(907,'2015-03-10 21:49:29','2015-08-29 14:46:00',1,30002419,27,27,19,17,15,15,8,16,19,21,36,50,36,22,23,27,26,37,42,39,29,34,16,14),(908,'2015-03-10 21:49:29','2015-08-29 14:46:00',1,30005006,30,31,23,27,19,37,16,15,31,53,56,48,51,47,48,44,25,27,29,39,37,36,28,28),(909,'2015-03-10 21:49:29','2015-08-29 14:46:00',1,30005008,74,117,89,108,105,97,66,63,135,137,168,108,133,147,143,139,133,89,53,120,128,102,92,96),(910,'2015-03-10 21:49:29','2015-08-29 14:46:00',1,30003585,8,12,12,13,19,5,5,8,7,6,11,12,5,6,8,7,11,2,7,6,9,10,6,4),(911,'2015-03-10 21:49:29','2015-08-29 14:46:00',1,30002729,9,35,24,8,11,12,15,7,34,26,29,31,18,11,7,20,17,19,8,25,13,12,29,20),(912,'2015-03-10 21:49:29','2015-08-29 14:46:00',1,30002107,1,0,0,0,1,1,1,3,2,3,3,0,3,8,11,2,5,1,0,3,0,1,1,1),(913,'2015-03-10 21:49:29','2015-08-29 14:46:00',1,30003535,11,31,17,25,31,22,14,15,8,9,21,24,15,24,20,14,11,10,13,19,9,15,16,11),(914,'2015-03-10 21:49:29','2015-08-29 14:46:00',1,30002587,8,10,22,8,9,20,11,33,10,14,3,8,41,15,41,21,13,13,22,127,10,11,19,23),(915,'2015-03-10 21:49:29','2015-08-29 14:46:00',1,30003903,57,86,48,69,71,96,33,35,110,87,82,46,86,110,86,62,56,41,62,102,78,81,65,69),(916,'2015-03-10 21:49:29','2015-08-29 14:46:00',1,30004271,3,20,6,12,9,6,5,10,42,45,8,15,5,25,34,18,11,16,28,12,9,4,9,7),(917,'2015-03-10 21:49:29','2015-08-29 14:46:00',1,30001539,8,37,5,2,9,5,5,0,5,4,17,14,18,9,14,16,20,2,5,22,15,13,10,16),(918,'2015-03-10 21:49:29','2015-08-29 14:46:00',1,30005292,41,16,14,19,17,8,15,6,41,23,31,30,24,23,19,15,19,23,14,18,24,24,17,14),(919,'2015-03-10 21:49:29','2015-08-29 14:46:00',1,30003600,21,39,21,24,31,56,6,70,23,22,31,34,49,29,24,19,23,35,28,41,32,36,24,25),(920,'2015-03-10 21:49:29','2015-08-29 14:46:00',1,30000760,3,11,5,8,9,5,11,14,5,5,7,3,5,2,1,7,8,1,0,4,2,0,2,2),(921,'2015-03-10 21:49:29','2015-08-29 14:46:00',1,30002933,29,24,11,18,18,14,14,27,47,24,16,14,44,32,15,14,10,8,15,10,10,14,24,12),(922,'2015-03-10 21:49:29','2015-08-29 14:46:00',1,30000061,6,16,14,18,15,8,4,2,13,17,13,21,19,20,20,13,6,3,3,15,16,12,7,2),(923,'2015-03-10 21:49:29','2015-08-29 14:46:00',1,30002220,141,168,176,159,145,244,92,85,152,169,142,127,183,202,179,182,137,107,161,151,236,220,145,126),(924,'2015-03-10 21:49:29','2015-08-29 14:46:00',1,30003862,105,157,138,127,117,153,64,108,228,253,203,171,238,218,262,194,141,182,177,196,222,235,166,150),(925,'2015-03-10 21:49:29','2015-08-29 14:46:00',1,30003787,125,409,130,129,129,142,111,76,213,212,169,123,345,191,167,114,126,223,189,346,370,351,149,161),(926,'2015-03-10 21:49:29','2015-08-29 14:46:00',1,30002658,65,90,108,76,90,67,60,52,111,129,120,109,124,100,92,111,97,107,133,145,149,136,103,85),(927,'2015-03-10 21:49:29','2015-08-29 14:46:00',1,30003404,18,15,33,31,16,8,5,6,12,17,11,9,8,14,22,7,10,7,15,14,18,18,12,14),(928,'2015-03-10 21:49:29','2015-08-29 14:46:00',1,30004323,23,38,21,20,57,37,22,38,28,44,29,33,20,77,60,8,12,4,21,28,25,20,10,2),(929,'2015-03-10 21:49:29','2015-08-29 14:46:00',1,30000691,16,42,18,12,9,11,10,25,10,5,17,11,6,9,13,16,29,4,21,19,16,11,5,19),(930,'2015-03-10 21:49:29','2015-08-29 14:46:00',1,30002247,19,20,15,6,8,42,11,10,30,31,23,17,29,111,21,13,14,15,10,10,8,25,19,24),(931,'2015-03-10 21:49:29','2015-08-29 14:46:00',1,30004082,59,72,82,92,83,74,39,48,103,105,84,88,140,137,127,109,95,107,115,164,111,126,84,83),(932,'2015-03-10 21:49:29','2015-08-29 14:46:00',1,30005196,5,7,7,5,5,1,6,6,4,7,6,7,6,6,7,14,11,31,22,26,9,7,9,9),(933,'2015-03-10 21:49:29','2015-08-29 14:46:00',1,30001697,3,10,5,20,16,14,9,6,12,12,13,14,20,11,13,13,13,3,6,18,25,30,21,31),(934,'2015-03-10 21:49:29','2015-08-29 14:46:00',1,30002266,6,18,8,24,22,9,13,19,20,14,12,9,5,8,7,12,5,5,3,14,9,10,11,8),(935,'2015-03-10 21:49:29','2015-08-29 14:46:00',1,30004279,1,11,7,6,5,0,2,8,1,1,3,2,9,3,4,5,12,4,2,0,0,0,3,5),(936,'2015-03-10 21:49:29','2015-08-29 14:46:00',1,30001649,38,44,43,29,30,50,25,23,52,43,43,39,36,59,42,44,28,24,22,24,67,32,41,42),(937,'2015-03-10 21:49:29','2015-08-29 14:46:00',1,30001741,4,6,10,13,3,9,4,2,17,19,30,11,6,8,4,5,3,8,9,12,17,12,16,2),(938,'2015-03-10 21:49:29','2015-08-29 14:46:00',1,30045328,181,216,182,170,137,107,143,141,162,174,205,164,215,223,257,257,210,132,172,175,228,228,179,201),(939,'2015-03-10 21:49:29','2015-08-29 14:46:00',1,30000125,39,22,32,17,30,26,33,27,44,33,41,39,34,46,57,70,36,25,20,25,29,30,30,38),(940,'2015-03-10 21:49:29','2015-08-29 14:46:00',1,30002752,281,378,333,394,379,207,173,180,375,343,316,303,400,406,374,350,263,170,234,330,312,349,308,239),(941,'2015-03-10 21:49:29','2015-08-29 14:46:00',1,30000933,0,8,4,2,9,2,14,7,13,6,6,6,9,6,7,20,8,3,2,8,3,15,23,20),(942,'2015-03-10 21:49:29','2015-08-29 14:46:00',1,30003015,44,71,98,62,66,46,32,54,98,123,109,93,112,102,110,91,93,46,35,84,85,86,112,103),(943,'2015-03-10 21:49:29','2015-08-29 14:46:00',1,30002289,3,4,1,3,2,7,0,2,17,18,9,8,5,1,3,4,5,0,0,1,14,7,4,2),(944,'2015-03-10 21:49:29','2015-08-29 14:46:00',1,30005307,229,251,229,199,203,217,122,134,190,226,204,191,247,292,257,228,189,181,240,262,252,281,238,250),(945,'2015-03-10 21:49:29','2015-08-29 14:46:00',1,30001418,5,18,7,11,8,6,45,5,4,3,7,10,10,5,6,13,19,10,7,7,10,6,11,24),(946,'2015-03-10 21:49:29','2015-08-29 14:46:00',1,30002753,58,91,89,87,67,93,66,78,143,139,123,107,117,93,92,99,74,51,70,79,108,104,106,96),(947,'2015-03-10 21:49:29','2015-08-29 14:46:00',1,30003566,17,9,2,7,9,4,6,12,7,4,7,6,3,8,8,9,14,6,21,7,19,26,16,7),(948,'2015-03-10 21:49:29','2015-08-29 14:46:00',1,30002736,94,119,131,89,83,78,35,73,100,112,142,122,173,202,174,169,133,97,109,119,172,161,130,117),(949,'2015-03-10 21:49:29','2015-08-29 14:46:00',1,30003895,11,12,18,5,4,11,1,11,53,78,80,26,6,11,13,12,13,5,20,15,20,18,11,13),(950,'2015-03-10 21:49:29','2015-08-29 14:46:00',1,30000185,186,174,318,213,203,207,149,155,243,309,251,245,202,255,233,276,251,142,151,213,258,255,226,220),(951,'2015-03-10 21:49:29','2015-08-29 14:46:00',1,30001404,347,454,445,384,400,397,266,317,500,553,470,510,478,595,579,600,500,333,408,519,574,512,486,394),(952,'2015-03-10 21:49:29','2015-08-29 14:46:00',1,30000166,33,57,27,22,20,32,28,22,65,59,49,39,51,54,47,68,48,27,45,37,70,72,41,39),(953,'2015-03-10 21:49:29','2015-08-29 14:46:00',1,30002222,8,17,17,21,16,16,11,4,8,14,13,14,18,8,18,17,12,11,7,9,14,11,15,11),(954,'2015-03-10 21:49:29','2015-08-29 14:46:00',1,30001431,23,36,34,39,32,25,10,28,37,37,41,41,25,31,32,24,38,30,25,18,37,29,47,35),(955,'2015-03-10 21:49:29','2015-08-29 14:46:00',1,30045340,94,159,71,70,85,35,53,79,135,124,75,81,209,68,76,82,74,40,85,105,80,73,74,81),(956,'2015-03-10 21:49:29','2015-08-29 14:46:00',1,30001414,37,21,30,24,21,22,20,29,29,31,39,31,28,23,20,33,32,16,35,33,56,55,28,23),(957,'2015-03-10 21:49:29','2015-08-29 14:46:00',1,30001289,23,41,12,2,2,8,8,4,15,27,13,15,14,9,8,6,10,7,3,13,15,14,17,14),(958,'2015-03-10 21:49:29','2015-08-29 14:46:00',1,30004717,25,33,11,12,16,22,33,50,72,87,63,51,78,67,58,75,61,56,53,60,88,80,42,38),(959,'2015-03-10 21:49:29','2015-08-29 14:46:00',1,30004277,4,4,7,4,3,2,3,10,7,12,8,4,4,7,7,6,11,11,4,4,1,0,7,7),(960,'2015-03-10 21:49:29','2015-08-29 14:46:00',1,30005098,7,9,0,2,4,1,4,6,0,0,0,1,1,2,4,2,2,0,0,3,6,3,2,1),(961,'2015-03-10 21:49:29','2015-08-29 14:46:00',1,30003291,15,6,3,1,4,6,2,1,3,5,6,8,4,5,6,7,9,12,4,4,9,9,12,7),(962,'2015-03-10 21:49:29','2015-08-29 14:46:00',1,30002992,14,19,21,23,18,21,3,8,2,9,10,16,21,8,11,19,9,22,36,23,20,18,19,20),(963,'2015-03-10 21:49:29','2015-08-29 14:46:00',1,30000088,5,4,4,3,3,3,2,1,5,8,6,9,13,20,19,6,6,2,3,4,13,12,6,7),(964,'2015-03-10 21:49:29','2015-08-29 14:46:00',1,30004147,7,39,6,6,7,5,1,5,10,12,9,9,9,16,13,8,17,9,7,9,12,16,15,10),(965,'2015-03-10 21:49:29','2015-08-29 14:46:00',1,30000065,9,16,4,12,9,9,3,25,23,17,26,23,11,12,12,21,16,8,14,9,44,38,12,13),(966,'2015-03-10 21:49:29','2015-08-29 14:46:00',1,30002197,186,257,247,265,253,266,158,184,267,351,258,247,348,477,373,327,249,181,239,282,395,292,282,259),(967,'2015-03-10 21:49:29','2015-08-29 14:46:00',1,30015042,9,20,6,8,3,5,2,1,10,7,7,7,3,6,5,12,10,8,7,7,12,10,6,3),(968,'2015-03-10 21:49:29','2015-08-29 14:46:00',1,30011407,120,161,159,140,139,140,92,102,183,202,192,205,161,231,242,252,207,153,175,210,185,171,181,161),(969,'2015-03-10 21:49:29','2015-08-29 14:46:00',1,30045342,245,265,155,131,136,113,144,186,296,317,200,192,504,240,228,253,206,101,207,234,258,228,163,187),(970,'2015-03-10 21:49:29','2015-08-29 14:46:00',1,30003479,14,14,8,12,19,8,10,16,17,22,13,11,17,16,21,28,25,10,7,30,15,14,16,14),(971,'2015-03-10 21:49:29','2015-08-29 14:46:00',1,30000178,102,131,142,120,129,133,89,128,150,202,160,162,199,194,207,230,180,121,131,155,211,213,143,120),(972,'2015-03-10 21:49:29','2015-08-29 14:46:00',1,30000200,46,58,112,46,60,47,51,38,155,94,86,67,78,114,144,50,72,50,53,85,126,77,151,218),(973,'2015-03-10 21:49:29','2015-08-29 14:46:00',1,30001382,129,163,190,140,119,140,79,132,155,164,173,191,175,188,203,197,179,88,122,128,167,148,167,161),(974,'2015-03-10 21:49:29','2015-08-29 14:46:00',1,30000163,98,93,131,97,106,63,56,73,109,149,165,150,245,173,325,283,127,82,88,124,161,132,165,269),(975,'2015-03-10 21:49:29','2015-08-29 14:46:00',1,30000003,140,160,163,158,167,101,92,123,230,246,198,193,250,288,257,196,171,142,189,205,182,145,164,164),(976,'2015-03-10 21:49:29','2015-08-29 14:46:00',1,30001534,11,13,5,8,13,4,11,5,36,41,16,6,15,9,9,10,16,3,10,13,12,11,10,10),(977,'2015-03-10 21:49:29','2015-08-29 14:46:00',1,30004578,31,9,8,2,15,4,14,10,168,13,14,10,274,23,23,17,16,29,55,22,13,9,9,7),(978,'2015-03-10 21:49:29','2015-08-29 14:46:00',1,30002652,27,30,75,41,34,30,7,14,72,62,39,36,89,70,72,54,38,66,47,55,68,63,57,63),(979,'2015-03-10 21:49:29','2015-08-29 14:46:00',1,30003042,4,12,6,10,8,9,20,5,15,14,13,16,21,32,18,28,21,22,36,11,27,35,26,29),(980,'2015-03-10 21:49:29','2015-08-29 14:46:00',1,30002512,80,89,97,97,77,78,76,88,91,92,90,93,94,107,112,120,73,74,59,74,122,107,72,64),(981,'2015-03-10 21:49:29','2015-08-29 14:46:00',1,30005225,7,8,11,4,9,13,10,5,23,11,21,8,22,29,14,16,16,26,28,35,13,11,20,22),(982,'2015-03-10 21:49:29','2015-08-29 14:46:00',1,30003854,31,24,64,39,52,32,16,30,43,47,16,12,84,47,20,52,34,16,40,27,84,93,36,39),(983,'2015-03-10 21:49:29','2015-08-29 14:46:00',1,30002338,1,3,3,4,3,4,1,1,0,0,3,3,0,29,14,1,0,0,0,0,21,19,0,0),(984,'2015-03-10 21:49:29','2015-08-29 14:46:00',1,30003415,80,81,104,92,105,77,66,87,134,141,95,101,117,154,167,209,110,128,93,114,110,104,116,102),(985,'2015-03-10 21:49:29','2015-08-29 14:46:00',1,30002216,9,24,14,25,22,7,7,6,8,10,9,5,13,21,15,13,14,2,14,32,5,7,8,9),(986,'2015-03-10 21:49:29','2015-08-29 14:46:00',1,30003464,20,19,16,21,24,28,10,19,28,29,23,21,35,33,24,15,28,16,15,18,18,19,19,26),(987,'2015-03-10 21:49:29','2015-08-29 14:46:00',1,30003379,18,15,20,19,15,10,5,16,13,7,9,10,22,21,16,16,15,7,15,14,51,49,16,11),(988,'2015-03-10 21:49:29','2015-08-29 14:46:00',1,30003837,159,307,237,195,221,121,131,131,332,332,151,130,458,309,211,175,134,161,252,351,197,163,129,112),(989,'2015-03-10 21:49:29','2015-08-29 14:46:00',1,30003416,35,73,39,70,81,52,39,53,77,86,82,68,75,69,82,132,96,39,75,66,74,57,63,68),(990,'2015-03-10 21:49:29','2015-08-29 14:46:00',1,30005302,89,134,187,167,128,108,87,102,122,121,117,108,157,184,224,160,162,109,139,184,186,181,156,173),(991,'2015-03-10 21:49:29','2015-08-29 14:46:00',1,30005304,512,706,678,666,585,531,434,473,582,657,603,524,777,936,857,740,634,590,625,760,875,886,669,617),(992,'2015-03-10 21:49:29','2015-08-29 14:46:00',1,30003380,49,32,57,46,47,39,51,55,81,71,48,48,85,80,72,73,54,54,56,57,97,71,54,56),(993,'2015-03-10 21:49:29','2015-08-29 14:46:00',1,30003811,24,51,41,32,24,38,31,27,42,36,42,43,69,72,60,52,64,47,41,20,64,44,21,33),(994,'2015-03-10 21:49:29','2015-08-29 14:46:00',1,30004972,903,1211,1136,1175,1101,945,723,798,1374,1412,1371,1212,1553,1648,1644,1492,1200,939,1105,1190,1472,1402,1195,1093),(995,'2015-03-10 21:49:29','2015-08-29 14:46:00',1,30002698,58,10,8,12,10,17,13,14,13,8,18,22,12,9,12,13,10,15,5,15,14,15,10,5),(996,'2015-03-10 21:49:29','2015-08-29 14:46:00',1,30002754,362,493,545,411,428,355,278,346,431,474,475,448,457,554,550,568,463,310,363,418,519,488,464,436),(997,'2015-03-10 21:49:29','2015-08-29 14:46:00',1,30002712,83,121,151,135,131,127,98,70,155,143,181,166,145,180,167,166,158,122,163,156,183,136,121,103),(998,'2015-03-10 21:49:29','2015-08-29 14:46:00',1,30003521,115,150,126,113,119,147,77,126,232,189,177,146,186,240,251,190,158,146,152,170,199,190,173,183),(999,'2015-03-10 21:49:29','2015-08-29 14:46:00',1,30000034,9,21,23,22,12,16,4,9,21,19,29,22,32,27,32,18,21,14,19,17,23,14,13,13),(1000,'2015-03-10 21:49:29','2015-08-29 14:46:00',1,30004995,31,23,54,50,46,40,37,55,33,38,25,19,31,45,44,31,31,32,19,26,50,40,42,51),(1001,'2015-03-10 21:49:29','2015-08-29 14:46:00',1,30005009,25,30,20,28,20,17,15,9,23,26,43,53,24,33,20,20,36,33,21,20,33,40,25,31),(1002,'2015-03-10 21:49:29','2015-08-29 14:46:00',1,30002664,28,45,39,37,42,75,30,41,35,43,45,50,53,75,74,88,79,52,65,76,73,49,52,43),(1003,'2015-03-10 21:49:29','2015-08-29 14:46:00',1,30002727,11,26,22,9,8,15,18,9,46,29,26,26,18,13,9,18,15,17,8,20,13,11,45,30),(1004,'2015-03-10 21:49:29','2015-08-29 14:46:00',1,30003850,34,57,67,82,81,23,31,48,64,75,54,60,170,74,63,46,50,43,42,46,78,75,65,66),(1005,'2015-03-10 21:49:29','2015-08-29 14:46:00',1,30003800,79,118,98,96,104,67,56,74,38,52,63,46,40,47,62,24,32,36,45,44,36,44,93,88),(1006,'2015-03-10 21:49:29','2015-08-29 14:46:00',1,30001730,12,18,16,28,26,5,9,10,15,12,17,17,24,26,26,37,9,15,12,11,17,16,10,8),(1007,'2015-03-10 21:49:29','2015-08-29 14:46:00',1,30003841,43,217,46,37,33,45,25,32,33,25,31,35,69,112,62,33,18,33,11,39,24,28,34,23),(1008,'2015-03-10 21:49:29','2015-08-29 14:46:00',1,30002678,9,11,12,6,6,17,8,6,11,16,16,9,18,28,28,25,16,8,19,24,19,10,9,15),(1009,'2015-03-10 21:49:29','2015-08-29 14:46:00',1,30002407,10,4,6,9,7,5,2,5,6,10,8,5,13,11,14,3,12,2,2,4,6,5,11,8),(1010,'2015-03-10 21:49:29','2015-08-29 14:46:00',1,30003389,133,183,134,147,149,172,103,176,269,296,220,206,271,287,291,324,232,183,187,201,263,251,217,196),(1011,'2015-03-10 21:49:29','2015-08-29 14:46:00',1,30003917,32,46,25,23,33,36,18,15,56,46,23,27,59,47,40,36,34,16,49,86,50,52,42,26),(1012,'2015-03-10 21:49:29','2015-08-29 14:46:00',1,30002537,239,343,245,250,233,176,186,299,488,394,230,194,355,447,445,294,356,330,351,357,410,276,279,269),(1013,'2015-03-10 21:49:29','2015-08-29 14:46:00',1,30004983,7,6,19,12,10,5,16,9,30,36,23,26,13,17,15,9,28,17,23,16,8,11,24,22),(1014,'2015-03-10 21:49:29','2015-08-29 14:46:00',1,30002187,1624,2022,1957,1855,1785,1640,1160,1391,2277,2451,2213,2050,2527,2640,2606,2475,2061,1715,2046,2317,2509,2372,2123,2122),(1015,'2015-03-10 21:49:29','2015-08-29 14:46:00',1,30003848,9,7,7,3,4,7,2,11,17,15,14,18,16,28,27,10,9,14,17,8,22,14,19,19),(1016,'2015-03-10 21:49:29','2015-08-29 14:46:00',1,30003012,35,37,51,37,26,39,24,30,79,92,73,81,60,75,65,53,38,49,32,30,99,62,65,69),(1017,'2015-03-10 21:49:29','2015-08-29 14:46:00',1,30002644,139,86,95,83,77,103,93,99,79,77,98,92,121,121,129,96,118,83,136,87,114,92,139,135),(1018,'2015-03-10 21:49:29','2015-08-29 14:46:00',1,30005036,180,182,201,199,213,209,124,171,226,237,212,173,264,309,264,258,213,135,217,243,256,245,213,214),(1019,'2015-03-10 21:49:29','2015-08-29 14:46:00',1,30002511,150,194,137,176,168,157,169,94,223,210,213,221,212,252,229,222,223,155,185,209,232,207,211,190),(1020,'2015-03-10 21:49:29','2015-08-29 14:46:00',1,30005035,52,64,60,49,52,85,24,66,98,91,67,57,134,102,77,54,65,45,80,80,72,74,61,59),(1021,'2015-03-10 21:49:29','2015-08-29 14:46:00',1,30002547,146,143,150,162,130,161,74,142,187,190,160,149,216,256,221,220,161,107,171,178,204,206,186,162),(1022,'2015-03-10 21:49:29','2015-08-29 14:46:00',1,30002055,31,44,39,46,49,31,41,37,30,34,53,43,54,91,75,53,69,50,47,48,88,89,54,69),(1023,'2015-03-10 21:49:29','2015-08-29 14:46:00',1,30003480,17,14,8,12,13,7,9,10,13,14,10,7,9,12,18,28,23,10,3,27,15,12,15,15),(1024,'2015-03-10 21:49:29','2015-08-29 14:46:00',1,30005329,16,6,8,8,8,14,5,8,10,12,35,18,4,12,13,17,12,11,7,18,22,23,11,9),(1025,'2015-03-10 21:49:29','2015-08-29 14:46:00',1,30003847,14,20,21,19,9,20,5,12,34,30,17,26,31,49,43,28,19,25,29,17,37,28,32,42),(1026,'2015-03-10 21:49:29','2015-08-29 14:46:00',1,30000058,41,51,45,38,42,67,38,27,62,53,82,88,84,145,124,70,53,100,49,63,90,78,43,49),(1027,'2015-03-10 21:49:29','2015-08-29 14:46:00',1,30001392,107,110,150,123,128,115,91,107,137,136,138,123,132,163,153,165,125,63,99,138,167,148,121,106),(1028,'2015-03-10 21:49:29','2015-08-29 14:46:00',1,30005311,42,53,69,53,40,34,38,22,59,63,56,53,57,69,75,56,62,41,37,43,50,61,59,50),(1029,'2015-03-10 21:49:29','2015-08-29 14:46:00',1,30004527,20,13,8,11,10,11,9,14,21,9,13,19,20,6,8,6,14,9,3,5,4,6,12,14),(1030,'2015-03-10 21:49:29','2015-08-29 14:46:00',1,30003552,3,0,0,3,2,2,8,4,2,1,4,4,5,5,6,4,6,0,4,3,8,17,12,13),(1031,'2015-03-10 21:49:29','2015-08-29 14:46:00',1,30005279,14,1,8,5,3,4,5,3,13,17,8,4,9,5,7,13,10,1,3,20,20,19,4,13),(1032,'2015-03-10 21:49:29','2015-08-29 14:46:00',1,30004301,39,25,6,12,20,13,8,17,16,24,16,13,30,29,20,28,16,9,24,27,22,26,18,13),(1033,'2015-03-10 21:49:29','2015-08-29 14:46:00',1,30003398,21,16,16,7,5,11,1,6,14,15,17,14,16,11,15,9,6,5,5,7,26,25,30,27),(1034,'2015-03-10 21:49:29','2015-08-29 14:46:00',1,30003840,72,67,112,72,94,64,55,56,74,74,77,56,93,104,105,68,51,43,52,94,51,51,83,78),(1035,'2015-03-10 21:49:29','2015-08-29 14:46:00',1,30003571,36,81,43,44,31,28,19,31,47,65,48,34,39,56,42,27,25,30,28,54,39,33,21,25),(1036,'2015-03-10 21:49:29','2015-08-29 14:46:00',1,30003485,75,60,57,53,48,62,48,40,57,54,66,73,104,82,54,63,53,60,57,57,74,66,72,70),(1037,'2015-03-10 21:49:29','2015-08-29 14:46:00',1,30005028,9,17,12,12,11,13,12,2,10,6,9,6,15,13,16,12,21,8,4,11,24,22,12,5),(1038,'2015-03-10 21:49:29','2015-08-29 14:46:00',1,30005049,25,46,38,36,43,49,11,34,61,50,54,49,100,66,64,58,50,38,51,52,66,70,41,46),(1039,'2015-03-10 21:49:29','2015-08-29 14:46:00',1,30005022,15,19,18,12,11,23,14,8,13,18,8,8,7,10,8,20,23,18,17,8,12,18,24,18),(1040,'2015-03-10 21:49:29','2015-08-29 14:46:00',1,30003062,19,13,14,26,24,19,16,9,44,28,62,17,20,23,17,32,14,29,8,58,19,25,18,29),(1041,'2015-03-10 21:49:29','2015-08-29 14:46:00',1,30005264,19,27,26,38,46,25,12,24,32,36,13,10,30,13,20,8,14,19,20,10,46,26,27,30),(1042,'2015-03-10 21:49:29','2015-08-29 14:46:00',1,30003046,29,65,69,94,53,35,43,78,92,95,94,69,74,124,98,96,49,68,55,62,65,55,79,81),(1043,'2015-03-10 21:49:29','2015-08-29 14:46:00',1,30002051,70,67,85,44,51,51,53,50,73,72,65,78,92,91,82,67,60,44,66,71,68,74,62,55),(1044,'2015-03-10 21:49:29','2015-08-29 14:46:00',1,30003515,62,136,107,91,76,85,79,55,111,113,94,98,98,122,116,117,116,64,65,120,89,97,118,74),(1045,'2015-03-10 21:49:29','2015-08-29 14:46:00',1,30001439,2,29,8,17,13,8,8,11,23,31,25,20,14,11,18,21,11,17,11,15,12,11,29,23),(1046,'2015-03-10 21:49:29','2015-08-29 14:46:00',1,30001647,152,222,191,214,186,158,118,144,270,278,271,254,257,308,319,320,280,214,186,265,330,314,274,213),(1047,'2015-03-10 21:49:29','2015-08-29 14:46:00',1,30003071,70,111,97,72,98,49,31,35,69,73,60,39,86,58,63,49,48,52,88,93,77,51,48,53),(1048,'2015-03-10 21:49:29','2015-08-29 14:46:00',1,30025042,10,22,11,3,3,15,5,12,22,24,18,12,20,28,25,11,19,17,12,14,24,35,9,17),(1049,'2015-03-10 21:49:29','2015-08-29 14:46:00',1,30004989,4,6,16,12,9,13,4,12,13,16,9,5,14,19,16,6,12,12,7,9,13,9,7,6),(1050,'2015-03-10 21:49:29','2015-08-29 14:46:00',1,30003791,26,10,14,19,16,21,21,7,25,30,9,12,19,30,28,20,14,12,15,13,66,50,18,17),(1051,'2015-03-10 21:49:29','2015-08-29 14:46:00',1,30002776,119,115,141,113,113,62,102,70,166,163,183,143,166,158,186,205,163,63,87,145,158,145,126,111),(1052,'2015-03-10 21:49:29','2015-08-29 14:46:00',1,30005326,41,68,68,81,69,54,29,43,54,46,51,62,78,99,119,116,88,90,49,66,89,75,88,91),(1053,'2015-03-10 21:49:29','2015-08-29 14:46:00',1,30004291,0,5,7,2,2,12,28,10,15,13,7,8,9,15,10,6,14,2,11,8,14,25,3,5),(1054,'2015-03-10 21:49:29','2015-08-29 14:46:00',1,30005309,116,120,138,151,127,116,104,98,115,125,142,120,213,235,210,199,125,108,143,161,167,161,137,135),(1055,'2015-03-10 21:49:29','2015-08-29 14:46:00',1,30004104,12,10,14,9,18,26,6,6,32,39,12,3,8,16,18,7,2,13,23,8,7,7,12,17),(1056,'2015-03-10 21:49:29','2015-08-29 14:46:00',1,30002081,11,3,12,7,5,15,19,4,24,12,36,42,5,8,8,10,6,3,4,5,6,6,17,17),(1057,'2015-03-10 21:49:29','2015-08-29 14:46:00',1,30003440,3,8,7,4,2,5,1,4,4,3,3,6,3,1,4,3,5,9,4,1,4,4,7,6),(1058,'2015-03-10 21:49:29','2015-08-29 14:46:00',1,30000132,108,131,96,104,102,87,102,86,122,128,147,122,151,154,160,160,97,57,91,116,127,115,95,117),(1059,'2015-03-10 21:49:29','2015-08-29 14:46:00',1,30002669,71,102,105,104,109,70,41,78,106,84,103,89,95,123,96,121,101,72,101,104,118,119,80,83),(1060,'2015-03-10 21:49:29','2015-08-29 14:46:00',1,30003426,23,12,16,9,17,8,6,15,7,12,6,7,17,21,21,11,8,3,12,13,8,11,13,15),(1061,'2015-03-10 21:49:29','2015-08-29 14:46:00',1,30005261,36,51,52,65,64,67,43,27,47,58,40,36,87,41,36,41,29,55,38,59,56,46,52,50),(1062,'2015-03-10 21:49:29','2015-08-29 14:46:00',1,30001357,16,8,12,22,23,26,22,11,35,25,43,62,40,55,81,68,46,11,44,65,33,22,50,57),(1063,'2015-03-10 21:49:29','2015-08-29 14:46:00',1,30003051,63,81,53,55,74,30,62,48,95,100,95,65,75,124,127,85,49,58,52,51,64,50,69,77),(1064,'2015-03-10 21:49:29','2015-08-29 14:46:00',1,30002805,428,628,589,586,521,489,421,444,562,601,612,555,656,758,751,706,589,426,484,564,709,720,645,589),(1065,'2015-03-10 21:49:29','2015-08-29 14:46:00',1,30005249,42,46,46,58,42,45,30,31,186,185,179,170,144,91,74,83,36,43,58,103,109,97,94,80),(1066,'2015-03-10 21:49:29','2015-08-29 14:46:00',1,30005252,5,11,11,5,4,14,7,4,22,30,40,13,20,14,10,18,8,9,8,13,18,18,14,16),(1067,'2015-03-10 21:49:29','2015-08-29 14:46:00',1,30004006,0,0,0,1,1,0,0,0,3,3,5,3,1,0,3,0,5,0,2,1,0,0,4,4),(1068,'2015-03-10 21:49:29','2015-08-29 14:46:00',1,30001216,15,15,31,27,25,21,23,35,88,78,35,37,66,76,109,86,44,46,52,163,44,43,32,27),(1069,'2015-03-10 21:49:29','2015-08-29 14:46:00',1,30021407,36,29,18,33,32,20,17,22,19,30,32,28,28,39,29,26,23,10,26,31,32,38,30,28),(1070,'2015-03-10 21:49:29','2015-08-29 14:46:00',1,30002453,33,13,38,52,30,26,25,12,5,10,37,44,8,11,9,20,10,1,9,4,1,12,5,4),(1071,'2015-03-10 21:49:29','2015-08-29 14:46:00',1,30005216,318,469,262,294,266,232,212,251,395,474,423,394,435,535,506,538,447,232,261,339,602,578,486,502),(1072,'2015-03-10 21:49:29','2015-08-29 14:46:00',1,30001114,0,1,6,8,5,0,11,0,3,3,0,0,0,1,1,4,5,0,4,2,0,0,4,4),(1073,'2015-03-10 21:49:29','2015-08-29 14:46:00',1,30004079,184,218,230,229,232,163,105,157,278,300,274,261,356,372,366,293,278,199,288,347,307,320,231,204),(1074,'2015-03-10 21:49:29','2015-08-29 14:46:00',1,30004124,14,11,15,16,11,7,16,14,7,13,17,6,13,17,9,5,10,3,6,17,7,2,13,14),(1075,'2015-03-10 21:49:29','2015-08-29 14:46:00',1,30004576,27,15,13,12,12,10,16,18,173,59,181,136,389,42,48,46,31,52,86,83,56,52,48,38),(1076,'2015-03-10 21:49:29','2015-08-29 14:46:00',1,30005019,46,45,50,48,45,53,34,23,43,51,51,43,67,97,80,88,49,26,53,55,66,71,58,65),(1077,'2015-03-10 21:49:29','2015-08-29 14:46:00',1,30002565,20,20,13,20,14,15,15,22,25,32,28,26,18,18,24,29,23,7,7,9,11,9,18,17),(1078,'2015-03-10 21:49:29','2015-08-29 14:46:00',1,30003656,7,5,2,5,7,0,7,5,0,0,0,1,2,6,3,7,3,2,4,2,1,6,8,8),(1079,'2015-03-10 21:49:29','2015-08-29 14:46:00',1,30001740,8,2,3,4,4,4,9,5,6,1,5,8,8,20,31,27,20,13,12,6,18,21,3,5),(1080,'2015-03-10 21:49:29','2015-08-29 14:46:00',1,30002551,19,9,18,56,32,16,28,23,49,69,17,15,19,15,20,6,29,5,7,7,13,8,12,9),(1081,'2015-03-10 21:49:29','2015-08-29 14:46:00',1,30002817,28,21,25,43,41,26,27,20,27,36,41,33,29,43,32,27,18,29,35,29,21,28,31,31),(1082,'2015-03-10 21:49:29','2015-08-29 14:46:00',1,30000092,4,3,3,6,5,13,4,3,19,19,19,16,6,10,15,5,9,5,7,7,13,11,10,16),(1083,'2015-03-10 21:49:29','2015-08-29 14:46:00',1,30004994,104,116,134,126,112,118,94,100,114,109,119,112,215,149,156,128,115,97,143,160,164,144,149,136),(1084,'2015-03-10 21:49:29','2015-08-29 14:46:00',1,30003590,27,48,63,103,85,37,21,33,51,62,48,43,34,62,51,68,34,31,19,48,79,74,64,58),(1085,'2015-03-10 21:49:29','2015-08-29 14:46:00',1,30002977,35,21,20,22,18,14,25,12,8,13,19,11,23,20,10,22,13,12,4,10,25,18,14,16),(1086,'2015-03-10 21:49:29','2015-08-29 14:46:00',1,30003487,141,211,229,195,166,150,119,163,233,283,197,215,270,306,314,278,254,168,176,220,233,227,231,239),(1087,'2015-03-10 21:49:29','2015-08-29 14:46:00',1,30004669,1,1,2,1,1,3,8,4,10,7,10,5,3,1,4,4,1,3,2,2,3,3,5,4),(1088,'2015-03-10 21:49:29','2015-08-29 14:46:00',1,30003824,17,56,44,29,33,25,22,14,31,22,33,30,44,48,47,33,36,24,25,18,42,31,15,15),(1089,'2015-03-10 21:49:29','2015-08-29 14:46:00',1,30002702,5,5,1,3,5,7,2,2,5,10,6,8,21,13,7,10,5,4,5,4,11,10,42,32),(1090,'2015-03-10 21:49:29','2015-08-29 14:46:00',1,30003030,196,208,288,206,159,220,147,152,324,286,272,282,367,385,380,335,266,212,220,294,331,330,320,282),(1091,'2015-03-10 21:49:29','2015-08-29 14:46:00',1,30002058,97,115,85,88,98,93,63,66,210,215,175,165,171,230,204,145,150,159,150,211,264,231,167,200),(1092,'2015-03-10 21:49:29','2015-08-29 14:46:00',1,30002648,60,74,118,81,54,107,51,77,145,121,93,92,153,158,155,116,102,84,73,123,120,109,120,103),(1093,'2015-03-10 21:49:29','2015-08-29 14:46:00',1,30003852,45,43,51,47,59,26,43,51,71,70,56,47,133,61,59,45,45,36,34,46,79,72,47,57),(1094,'2015-03-10 21:49:29','2015-08-29 14:46:00',1,30004118,10,9,9,6,4,4,10,6,6,28,8,7,18,10,17,14,9,8,4,7,17,10,9,10),(1095,'2015-03-10 21:49:29','2015-08-29 14:46:00',1,30002231,26,31,29,9,14,38,13,17,30,16,23,24,26,15,23,45,42,12,28,28,28,28,27,27),(1096,'2015-03-10 21:49:29','2015-08-29 14:46:00',1,30000099,15,5,7,18,19,6,8,15,12,16,29,17,9,20,25,22,25,17,15,13,28,27,21,15),(1097,'2015-03-10 21:49:29','2015-08-29 14:46:00',1,30002244,56,92,107,75,84,55,54,44,129,157,148,131,93,275,161,101,55,59,56,50,72,98,81,68),(1098,'2015-03-10 21:49:29','2015-08-29 14:46:00',1,30000656,39,182,33,113,77,115,15,53,65,59,63,40,60,94,83,47,22,26,53,61,72,45,54,47),(1099,'2015-03-10 21:49:29','2015-08-29 14:46:00',1,30002080,4,10,13,8,1,6,8,6,14,19,27,24,24,20,16,16,6,9,15,15,20,20,24,25),(1100,'2015-03-10 21:49:29','2015-08-29 14:46:00',1,30005239,34,49,21,38,44,24,21,20,32,48,18,18,41,30,36,41,29,47,31,45,61,52,56,49),(1101,'2015-03-10 21:49:29','2015-08-29 14:46:00',1,30003595,8,0,5,4,4,7,4,12,14,15,15,8,3,8,3,9,5,6,6,6,9,3,8,9),(1102,'2015-03-10 21:49:29','2015-08-29 14:46:00',1,30001704,16,8,4,10,13,5,8,5,11,9,14,7,3,2,7,3,2,6,10,9,6,9,1,2),(1103,'2015-03-10 21:49:29','2015-08-29 14:46:00',1,30003411,135,125,151,113,118,117,94,87,191,198,149,136,207,211,212,232,156,108,125,170,169,160,169,139),(1104,'2015-03-10 21:49:29','2015-08-29 14:46:00',1,30003374,56,70,65,50,57,59,49,35,102,89,69,79,97,133,109,121,100,56,71,64,93,63,72,56),(1105,'2015-03-10 21:49:29','2015-08-29 14:46:00',1,30002205,63,83,62,92,79,43,63,50,66,59,85,86,118,115,80,75,64,56,88,77,125,110,88,83),(1106,'2015-03-10 21:49:29','2015-08-29 14:46:00',1,30003009,50,45,75,53,56,30,26,53,69,85,84,57,60,64,82,102,80,59,41,44,76,61,63,58),(1107,'2015-03-10 21:49:29','2015-08-29 14:46:00',1,30002066,123,137,70,85,79,70,64,93,288,266,97,71,129,141,126,142,192,155,116,178,141,104,127,97),(1108,'2015-03-10 21:49:29','2015-08-29 14:46:00',1,30000112,23,37,42,31,26,55,18,21,40,47,38,37,57,67,81,74,45,30,39,56,66,59,32,30),(1109,'2015-03-10 21:49:29','2015-08-29 14:46:00',1,30005001,197,332,273,294,293,281,192,190,347,421,423,388,412,474,498,452,294,227,300,331,413,358,336,345),(1110,'2015-03-10 21:49:29','2015-08-29 14:46:00',1,30002064,27,59,59,46,20,28,40,36,91,112,35,31,74,82,89,52,40,69,57,76,80,61,56,50),(1111,'2015-03-10 21:49:29','2015-08-29 14:46:00',1,30002240,3,1,5,3,4,7,4,3,13,27,4,3,1,7,4,9,3,7,2,7,4,4,2,2),(1112,'2015-03-10 21:49:29','2015-08-29 14:46:00',1,30005330,86,81,117,107,85,82,67,80,122,153,141,108,120,155,156,154,96,69,68,112,158,152,88,83),(1113,'2015-03-10 21:49:29','2015-08-29 14:46:00',1,30002253,8,14,9,19,23,15,11,2,8,12,12,9,28,6,10,18,8,13,19,35,17,7,22,14),(1114,'2015-03-10 21:49:29','2015-08-29 14:46:00',1,30002687,11,14,11,8,8,6,4,10,16,14,5,7,6,7,10,9,13,7,2,2,5,9,15,12),(1115,'2015-03-10 21:49:29','2015-08-29 14:46:00',1,30003556,13,23,11,3,5,12,7,21,5,20,19,22,22,19,16,13,14,9,12,11,16,12,12,19),(1116,'2015-03-10 21:49:29','2015-08-29 14:46:00',1,30002278,34,19,27,28,23,25,15,7,40,41,39,27,28,37,39,43,32,26,23,65,42,33,30,20),(1117,'2015-03-10 21:49:29','2015-08-29 14:46:00',1,30001381,38,29,41,44,47,50,20,25,48,61,31,42,77,65,64,60,52,29,23,28,34,31,45,41),(1118,'2015-03-10 21:49:29','2015-08-29 14:46:00',1,30003007,1,2,3,6,6,4,3,4,2,3,5,8,4,4,1,9,8,17,11,19,17,7,5,6),(1119,'2015-03-10 21:49:29','2015-08-29 14:46:00',1,30002078,10,7,11,9,9,6,4,6,14,16,16,10,21,15,13,9,5,9,9,10,7,8,9,7),(1120,'2015-03-10 21:49:29','2015-08-29 14:46:00',1,30005086,7,3,3,5,3,18,7,2,0,0,1,1,5,4,5,2,6,1,2,9,3,3,5,5),(1121,'2015-03-10 21:49:29','2015-08-29 14:46:00',1,30002960,104,128,132,77,77,96,68,66,74,87,66,61,86,80,88,83,39,76,52,84,70,52,64,65),(1122,'2015-03-10 21:49:29','2015-08-29 14:46:00',1,30003885,74,94,81,77,76,86,41,67,160,122,78,60,112,167,186,107,74,64,100,113,107,118,89,95),(1123,'2015-03-10 21:49:29','2015-08-29 14:46:00',1,30005065,29,11,19,9,13,7,15,21,41,35,4,6,12,12,17,15,7,18,5,14,18,22,7,8),(1124,'2015-03-10 21:49:29','2015-08-29 14:46:00',1,30003921,0,7,2,6,10,2,2,6,3,2,2,1,9,5,9,7,4,0,7,6,5,3,4,6),(1125,'2015-03-10 21:49:29','2015-08-29 14:46:00',1,30000012,60,38,28,25,16,23,22,13,52,55,62,35,133,43,59,51,47,45,65,58,49,43,39,32),(1126,'2015-03-10 21:49:29','2015-08-29 14:46:00',1,30045332,123,907,69,91,119,73,95,87,123,126,132,130,160,220,194,236,140,98,59,107,163,149,122,90),(1127,'2015-03-10 21:49:29','2015-08-29 14:46:00',1,30005251,6,11,9,12,7,13,9,4,112,58,39,55,31,11,16,12,3,9,8,17,18,10,10,9),(1128,'2015-03-10 21:49:29','2015-08-29 14:46:00',1,30001689,65,95,72,100,95,92,43,80,317,316,396,345,130,173,173,160,114,86,102,106,114,110,81,84),(1129,'2015-03-10 21:49:29','2015-08-29 14:46:00',1,30002084,48,48,61,55,61,32,89,40,139,112,71,63,89,108,103,94,110,72,61,78,109,95,89,109),(1130,'2015-03-10 21:49:29','2015-08-29 14:46:00',1,30001708,75,103,93,103,101,62,51,61,85,78,90,76,101,153,158,148,109,95,109,125,151,144,117,127),(1131,'2015-03-10 21:49:29','2015-08-29 14:46:00',1,30003384,69,73,86,70,69,70,31,52,94,91,62,59,95,77,105,107,94,50,84,68,129,139,90,79),(1132,'2015-03-10 21:49:29','2015-08-29 14:46:00',1,30000084,68,87,93,88,90,49,47,67,102,127,99,91,132,131,107,98,63,84,119,113,79,79,76,80),(1133,'2015-03-10 21:49:29','2015-08-29 14:46:00',1,30002978,75,70,63,49,43,44,40,40,35,46,44,26,47,59,46,61,30,38,40,60,36,33,45,46),(1134,'2015-03-10 21:49:29','2015-08-29 14:46:00',1,30003491,1756,1869,1761,1791,1737,1484,1069,1235,2022,2277,2036,1932,2236,2438,2426,2320,1970,1492,1695,1946,2268,2153,1934,1901),(1135,'2015-03-10 21:49:29','2015-08-29 14:46:00',1,30003890,3,20,11,1,5,13,5,13,37,58,9,13,21,10,10,14,12,21,17,13,10,6,4,12),(1136,'2015-03-10 21:49:29','2015-08-29 14:46:00',1,30045311,46,118,35,29,32,34,47,35,62,82,27,32,53,62,25,52,54,29,47,51,48,71,35,35),(1137,'2015-03-10 21:49:29','2015-08-29 14:46:00',1,30003919,22,33,23,15,21,30,15,12,30,33,18,27,43,38,26,20,21,12,42,61,33,39,31,27),(1138,'2015-03-10 21:49:29','2015-08-29 14:46:00',1,30003886,53,50,60,36,36,39,26,38,103,74,47,38,68,82,136,72,47,39,57,51,51,52,49,56),(1139,'2015-03-10 21:49:29','2015-08-29 14:46:00',1,30005214,227,789,334,298,256,258,186,204,313,358,347,327,358,459,466,441,338,211,251,302,421,428,415,399),(1140,'2015-03-10 21:49:29','2015-08-29 14:46:00',1,30000095,3,2,3,2,5,5,2,5,16,18,7,10,2,2,4,0,2,7,1,3,15,12,7,12),(1141,'2015-03-10 21:49:29','2015-08-29 14:46:00',1,30004093,19,16,22,11,16,18,8,9,19,21,31,27,36,44,39,48,20,20,12,26,30,29,20,18),(1142,'2015-03-10 21:49:29','2015-08-29 14:46:00',1,30002272,11,8,11,10,5,7,7,14,9,6,7,10,12,10,7,10,15,6,10,5,18,12,8,5),(1143,'2015-03-10 21:49:29','2015-08-29 14:46:00',1,30004156,35,55,37,36,38,34,18,20,50,54,59,81,60,87,70,58,48,73,67,38,35,43,36,52),(1144,'2015-03-10 21:49:29','2015-08-29 14:46:00',1,30000075,79,44,34,32,79,13,32,49,92,113,23,22,280,73,81,42,24,20,35,142,69,85,64,99),(1145,'2015-03-10 21:49:29','2015-08-29 14:46:00',1,30005224,15,14,16,11,11,13,16,11,30,19,25,17,37,31,19,21,26,40,33,43,17,18,23,24),(1146,'2015-03-10 21:49:29','2015-08-29 14:46:00',1,30001723,23,53,46,34,26,25,38,26,49,63,46,34,53,51,62,58,56,29,59,49,65,62,42,33),(1147,'2015-03-10 21:49:29','2015-08-29 14:46:00',1,30002724,23,27,33,24,19,32,12,17,41,26,38,28,25,42,24,23,17,20,12,21,27,30,20,26),(1148,'2015-03-10 21:49:29','2015-08-29 14:46:00',1,30000113,19,21,24,15,17,69,14,16,35,26,26,24,37,53,59,39,43,14,14,30,45,47,31,35),(1149,'2015-03-10 21:49:29','2015-08-29 14:46:00',1,30045323,11,21,14,12,18,48,44,23,21,30,23,26,15,18,26,38,23,30,33,18,60,54,58,55),(1150,'2015-03-10 21:49:29','2015-08-29 14:46:00',1,30001419,10,13,17,14,13,20,3,10,24,8,21,19,13,15,9,10,24,17,27,23,19,19,22,19),(1151,'2015-03-10 21:49:29','2015-08-29 14:46:00',1,30005077,15,42,20,35,40,14,12,23,26,16,18,20,25,23,28,42,37,10,21,35,31,21,24,21),(1152,'2015-03-10 21:49:29','2015-08-29 14:46:00',1,30002557,1,7,2,9,8,3,4,3,5,9,5,6,6,16,14,4,2,6,5,7,12,21,5,3),(1153,'2015-03-10 21:49:29','2015-08-29 14:46:00',1,30003031,117,190,146,140,155,122,87,103,171,165,163,131,206,256,239,194,170,134,161,172,193,180,171,162),(1154,'2015-03-10 21:49:29','2015-08-29 14:46:00',1,30003856,3,16,7,8,5,4,10,8,8,12,6,8,12,2,4,5,3,11,1,10,12,16,9,12),(1155,'2015-03-10 21:49:29','2015-08-29 14:46:00',1,30002701,36,49,23,30,29,63,15,20,44,29,43,39,71,72,59,62,68,36,22,51,61,49,48,42),(1156,'2015-03-10 21:49:29','2015-08-29 14:46:00',1,30002695,28,17,29,24,18,15,11,24,39,36,45,46,43,47,42,48,43,33,42,56,48,56,44,35),(1157,'2015-03-10 21:49:29','2015-08-29 14:46:00',1,30002489,34,44,45,38,26,34,21,27,24,22,29,37,25,21,18,39,24,25,10,39,102,50,65,53),(1158,'2015-03-10 21:49:29','2015-08-29 14:46:00',1,30005024,46,70,66,60,58,88,34,44,64,66,63,47,74,71,72,66,66,46,58,56,79,76,82,65),(1159,'2015-03-10 21:49:29','2015-08-29 14:46:00',1,30003038,83,130,152,156,147,155,100,110,174,191,200,192,226,275,229,286,238,186,204,173,196,217,225,212),(1160,'2015-03-10 21:49:29','2015-08-29 14:46:00',1,30002389,49,45,57,66,43,52,62,43,109,108,67,48,98,77,57,62,54,60,52,89,71,59,48,37),(1161,'2015-03-10 21:49:29','2015-08-29 14:46:00',1,30005010,10,24,16,9,7,20,9,13,21,15,21,31,12,23,20,22,24,33,14,13,13,17,17,23),(1162,'2015-03-10 21:49:29','2015-08-29 14:46:00',1,30003455,6,11,7,4,5,7,4,13,6,9,18,10,13,6,10,6,20,8,7,15,17,13,7,12),(1163,'2015-03-10 21:49:29','2015-08-29 14:46:00',1,30001678,57,45,43,50,63,41,48,32,63,66,75,66,73,62,86,82,94,35,34,60,91,83,88,63),(1164,'2015-03-10 21:49:29','2015-08-29 14:46:00',1,30004654,0,0,2,0,0,4,0,1,0,0,0,2,0,1,0,1,0,1,5,3,6,1,2,3),(1165,'2015-03-10 21:49:29','2015-08-29 14:46:00',1,30005197,22,20,10,4,10,12,22,11,12,11,12,12,18,16,15,16,9,35,14,21,38,40,7,5),(1166,'2015-03-10 21:49:29','2015-08-29 14:46:00',1,30005004,63,112,106,97,80,86,68,77,159,182,133,142,152,181,160,142,88,74,109,102,168,164,114,121),(1167,'2015-03-10 21:49:29','2015-08-29 14:46:00',1,30003273,11,25,2,8,9,7,4,12,5,11,4,9,8,11,5,15,11,6,7,6,5,22,7,4),(1168,'2015-03-10 21:49:29','2015-08-29 14:46:00',1,30002834,0,0,1,0,0,0,0,0,0,0,1,1,1,0,0,1,1,0,0,0,0,0,0,0),(1169,'2015-03-10 21:49:29','2015-08-29 14:46:00',1,30003827,76,181,92,71,87,62,62,57,94,84,106,112,131,151,140,112,163,76,107,144,112,102,101,91),(1170,'2015-03-10 21:49:29','2015-08-29 14:46:00',1,30002709,103,157,189,128,144,179,84,120,181,175,191,173,218,197,205,213,205,140,186,188,193,198,162,147),(1171,'2015-03-10 21:49:29','2015-08-29 14:46:00',1,30003849,9,6,2,1,2,7,3,3,6,9,14,18,6,17,13,8,6,9,7,5,12,5,15,15),(1172,'2015-03-10 21:49:29','2015-08-29 14:46:00',1,30002684,30,37,33,36,39,27,46,28,63,79,45,40,36,58,58,48,49,28,24,36,61,54,51,72),(1173,'2015-03-10 21:49:29','2015-08-29 14:46:00',1,30002395,17,47,30,31,19,19,14,14,20,17,10,9,27,21,19,33,15,27,26,22,37,40,32,19),(1174,'2015-03-10 21:49:29','2015-08-29 14:46:00',1,30002641,511,689,752,736,651,517,455,482,785,859,708,620,849,954,932,837,687,568,585,745,841,818,741,680),(1175,'2015-03-10 21:49:29','2015-08-29 14:46:00',1,30002542,170,244,182,170,169,120,95,190,312,272,207,147,354,436,435,272,425,255,327,387,329,262,230,201),(1176,'2015-03-10 21:49:29','2015-08-29 14:46:00',1,30002680,84,120,114,92,98,86,98,99,156,174,115,105,131,161,159,147,146,103,82,93,168,153,142,155),(1177,'2015-03-10 21:49:29','2015-08-29 14:46:00',1,30003818,49,45,55,88,116,26,29,36,90,56,54,52,46,51,36,43,30,27,46,29,73,86,55,65),(1178,'2015-03-10 21:49:29','2015-08-29 14:46:00',1,30001398,83,78,61,84,78,85,49,85,118,112,86,81,70,146,155,76,95,79,127,77,125,100,121,107),(1179,'2015-03-10 21:49:29','2015-08-29 14:46:00',1,30002059,15,19,16,27,30,13,20,19,12,21,34,26,24,44,31,29,49,28,20,28,25,23,18,26),(1180,'2015-03-10 21:49:29','2015-08-29 14:46:00',1,30002657,66,78,66,80,80,69,51,54,109,124,147,120,145,150,149,137,102,93,126,166,135,128,97,66),(1181,'2015-03-10 21:49:29','2015-08-29 14:46:00',1,30003801,132,151,122,155,155,82,69,87,103,68,81,73,74,77,74,67,46,45,72,53,81,101,133,108),(1182,'2015-03-10 21:49:29','2015-08-29 14:46:00',1,30002716,61,88,104,86,72,56,54,43,87,77,83,73,86,115,96,80,65,54,112,78,92,74,78,69),(1183,'2015-03-10 21:49:29','2015-08-29 14:46:00',1,30003915,6,2,4,1,2,1,3,1,6,8,12,11,7,3,4,3,2,3,2,1,7,6,8,7),(1184,'2015-03-10 21:49:29','2015-08-29 14:46:00',1,30002561,8,9,1,2,3,4,2,7,8,11,9,7,6,10,11,8,16,5,3,4,11,7,7,3),(1185,'2015-03-10 21:49:29','2015-08-29 14:46:00',1,30001361,37,93,46,43,44,67,34,47,120,91,111,122,115,120,121,72,66,59,57,97,88,102,76,63),(1186,'2015-03-10 21:49:29','2015-08-29 14:46:00',1,30003821,21,10,11,14,17,11,25,8,26,21,15,15,29,13,17,15,4,4,10,7,28,28,22,11),(1187,'2015-03-10 21:49:29','2015-08-29 14:46:00',1,30002523,76,120,114,116,105,89,69,105,168,156,123,131,144,151,165,127,131,72,85,100,156,120,111,120),(1188,'2015-03-10 21:49:29','2015-08-29 14:46:00',1,30001411,54,37,56,53,32,51,53,40,38,55,61,61,55,74,86,83,67,40,64,98,78,75,74,58),(1189,'2015-03-10 21:49:29','2015-08-29 14:46:00',1,30001384,105,122,127,112,98,87,56,70,99,111,162,142,119,174,177,136,148,88,91,111,172,163,135,138),(1190,'2015-03-10 21:49:29','2015-08-29 14:46:00',1,30002656,151,122,195,146,138,149,99,89,173,227,216,202,287,260,245,257,172,174,177,223,211,205,181,160),(1191,'2015-03-10 21:49:29','2015-08-29 14:46:00',1,30002744,112,214,219,300,292,78,70,70,115,89,98,86,92,106,107,137,105,66,91,109,150,173,135,95),(1192,'2015-03-10 21:49:29','2015-08-29 14:46:00',1,30004614,0,4,1,3,1,0,10,6,133,3,4,15,3,4,5,1,1,7,68,13,7,10,8,8),(1193,'2015-03-10 21:49:29','2015-08-29 14:46:00',1,30004249,42,125,28,78,54,39,34,51,12,12,14,10,26,20,25,24,8,14,23,36,26,23,9,17),(1194,'2015-03-10 21:49:29','2015-08-29 14:46:00',1,30002270,16,27,28,19,24,21,11,13,32,33,45,44,62,27,33,45,53,45,45,39,35,20,11,10),(1195,'2015-03-10 21:49:29','2015-08-29 14:46:00',1,30003843,22,30,10,11,14,9,9,13,13,35,17,17,24,29,24,35,14,18,19,39,24,24,32,19),(1196,'2015-03-10 21:49:29','2015-08-29 14:46:00',1,30003053,22,54,44,43,29,62,26,36,74,81,64,67,79,81,83,78,41,33,45,52,40,36,63,64),(1197,'2015-03-10 21:49:29','2015-08-29 14:46:00',1,30002089,15,24,37,35,36,18,53,11,49,56,27,32,34,43,44,41,48,23,15,21,47,41,57,61),(1198,'2015-03-10 21:49:29','2015-08-29 14:46:00',1,30003047,21,34,47,45,36,17,18,21,45,44,20,18,50,51,40,33,33,41,42,49,21,25,49,42),(1199,'2015-03-10 21:49:29','2015-08-29 14:46:00',1,30002530,109,191,156,174,172,137,112,151,171,189,143,128,175,207,209,188,122,115,111,181,174,151,155,138),(1200,'2015-03-10 21:49:29','2015-08-29 14:46:00',1,30005215,308,1219,335,400,353,340,218,241,391,464,445,424,440,576,587,515,436,253,290,372,506,540,526,539),(1201,'2015-03-10 21:49:29','2015-08-29 14:46:00',1,30000860,30,157,44,35,38,46,15,44,81,96,319,223,23,54,63,34,23,29,30,40,48,49,16,24),(1202,'2015-03-10 21:49:29','2015-08-29 14:46:00',1,30001203,11,11,21,12,6,15,19,37,342,165,107,89,105,130,213,305,47,90,263,312,223,194,50,36),(1203,'2015-03-10 21:49:29','2015-08-29 14:46:00',1,30004904,11,37,28,30,33,30,14,27,20,23,15,21,16,36,35,16,19,11,27,14,17,24,26,25),(1204,'2015-03-10 21:49:29','2015-08-29 14:46:00',1,30003756,61,78,76,61,43,44,28,26,66,71,74,57,244,40,38,35,42,40,61,103,28,47,44,32),(1205,'2015-03-10 21:49:29','2015-08-29 14:46:00',1,30003746,77,61,72,45,80,18,16,36,75,86,104,88,66,112,104,102,101,77,43,112,88,62,144,124),(1206,'2015-03-10 21:49:29','2015-08-29 14:46:00',1,30005094,5,7,6,1,3,1,2,1,1,0,4,4,3,7,4,7,9,1,1,1,5,2,0,1),(1207,'2015-03-10 21:49:29','2015-08-29 14:46:00',1,30003055,77,85,119,136,88,94,80,117,191,187,132,99,151,145,151,128,85,114,123,94,138,121,129,120),(1208,'2015-03-10 21:49:29','2015-08-29 14:46:00',1,30003093,8,17,10,23,18,7,8,8,5,5,9,9,16,19,20,13,2,31,25,14,17,7,9,6),(1209,'2015-03-10 21:49:29','2015-08-29 14:46:00',1,30002717,16,28,34,43,39,21,14,17,37,37,20,11,22,36,37,33,23,16,30,27,23,27,29,22),(1210,'2015-03-10 21:49:29','2015-08-29 14:46:00',1,30001342,2,3,1,0,0,1,0,2,2,1,2,1,2,1,0,0,1,0,1,2,2,3,2,2),(1211,'2015-03-10 21:49:29','2015-08-29 14:46:00',1,30000672,7,22,23,2,5,28,0,7,12,9,9,7,1,12,9,0,5,3,4,3,9,8,3,6),(1212,'2015-03-10 21:49:29','2015-08-29 14:46:00',1,30001070,3,35,37,10,17,29,10,2,29,23,21,17,26,19,13,12,1,7,5,3,71,53,12,11),(1213,'2015-03-10 21:49:29','2015-08-29 14:46:00',1,30000265,21,40,17,23,24,22,12,12,29,124,139,31,62,100,92,20,24,18,15,150,33,29,13,21),(1214,'2015-03-10 21:49:29','2015-08-29 14:46:00',1,30005275,36,26,15,40,52,33,19,13,50,68,41,35,38,34,31,31,47,21,23,40,56,79,59,39),(1215,'2015-03-10 21:49:29','2015-08-29 14:46:00',1,30003018,86,115,132,129,147,118,90,106,176,201,170,155,229,235,187,215,202,168,219,235,215,200,185,179),(1216,'2015-03-10 21:49:29','2015-08-29 14:46:00',1,30001711,57,72,67,98,95,66,37,55,63,68,69,71,101,121,111,97,69,50,76,112,133,122,109,106),(1217,'2015-03-10 21:49:29','2015-08-29 14:46:00',1,30000920,15,37,19,16,16,4,18,9,16,10,11,10,13,27,18,19,9,19,30,36,4,7,26,25),(1218,'2015-03-10 21:49:29','2015-08-29 14:46:00',1,30001705,10,13,0,8,12,11,4,6,13,14,4,4,3,11,15,25,17,7,9,20,38,20,7,11),(1219,'2015-03-10 21:49:29','2015-08-29 14:46:00',1,30002265,4,16,10,12,5,16,4,23,13,7,20,22,13,11,11,11,9,15,6,16,14,10,17,4),(1220,'2015-03-10 21:49:29','2015-08-29 14:46:00',1,30004450,11,17,30,16,19,27,21,63,23,17,30,20,96,74,78,55,57,50,48,144,83,45,65,65),(1221,'2015-03-10 21:49:29','2015-08-29 14:46:00',1,30000716,21,24,10,36,5,27,4,6,45,30,19,18,102,42,43,7,6,14,12,45,82,58,7,4),(1222,'2015-03-10 21:49:29','2015-08-29 14:46:00',1,30001944,3,0,1,4,1,2,3,2,3,3,4,6,3,6,3,4,7,0,2,1,1,1,4,2),(1223,'2015-03-10 21:49:29','2015-08-29 14:46:00',1,30002334,8,6,4,8,11,3,9,3,30,33,21,11,20,7,8,7,15,22,23,19,5,9,5,1),(1224,'2015-03-10 21:49:29','2015-08-29 14:46:00',1,30001156,37,35,108,15,16,57,28,61,208,294,253,131,249,270,289,254,151,267,108,206,165,196,150,126),(1225,'2015-03-10 21:49:29','2015-08-29 14:46:00',1,30000211,41,8,30,25,19,19,5,9,0,0,1,1,3,5,1,1,2,7,13,4,2,4,9,10),(1226,'2015-03-10 21:49:29','2015-08-29 14:46:00',1,30000435,3,6,1,0,0,4,17,1,2,2,4,3,11,4,4,5,4,1,3,2,3,2,2,0),(1227,'2015-03-10 21:49:29','2015-08-29 14:46:00',1,30004873,38,28,25,28,17,41,35,21,8,11,8,8,1,2,4,9,4,1,4,5,5,11,14,11),(1228,'2015-03-10 21:49:29','2015-08-29 14:46:00',1,30004030,12,0,2,6,11,2,1,7,15,17,3,3,14,12,11,8,19,4,6,11,30,40,21,19),(1229,'2015-03-10 21:49:29','2015-08-29 14:46:00',1,30005160,12,25,16,16,16,12,9,6,19,16,5,6,2,11,19,2,5,6,7,16,10,12,3,9),(1230,'2015-03-10 21:49:29','2015-08-29 14:46:00',1,30002029,25,86,129,157,70,24,16,18,10,9,4,2,19,13,8,32,8,7,4,19,7,7,11,11),(1231,'2015-03-10 21:49:29','2015-08-29 14:46:00',1,30002108,6,2,2,5,2,3,5,0,0,0,2,0,0,2,2,0,3,0,0,6,1,1,2,2),(1232,'2015-03-10 21:49:29','2015-08-29 14:46:00',1,30005088,6,7,2,13,14,11,10,12,10,6,6,10,12,33,19,11,10,7,5,7,11,8,3,3),(1233,'2015-03-10 21:49:29','2015-08-29 14:46:00',1,30001321,14,4,6,3,2,3,1,3,3,1,0,5,0,4,2,2,4,1,9,1,8,10,1,4),(1234,'2015-03-10 21:49:29','2015-08-29 14:46:00',1,30004040,49,137,70,165,119,48,10,35,74,88,77,45,50,40,30,38,30,35,103,45,30,32,18,18),(1235,'2015-03-10 21:49:29','2015-03-10 21:49:29',1,30000423,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(1236,'2015-03-10 21:49:29','2015-08-29 14:46:00',1,30000307,11,17,14,18,19,36,5,6,44,29,16,17,15,20,18,28,30,5,5,11,38,39,17,11),(1237,'2015-03-10 21:49:29','2015-08-29 14:46:00',1,30003250,2,23,4,1,1,4,3,0,2,4,3,0,2,3,0,1,2,2,1,1,4,0,1,1),(1238,'2015-03-10 21:49:29','2015-08-29 14:46:00',1,30002496,41,22,32,10,16,24,44,30,20,27,12,13,9,3,4,22,20,3,7,1,18,26,20,35),(1239,'2015-03-10 21:49:29','2015-08-29 14:46:00',1,30001910,2,2,13,8,8,7,5,4,3,3,6,3,13,11,16,14,3,2,9,4,10,12,11,8),(1240,'2015-03-10 21:49:29','2015-08-29 14:46:00',1,30004328,11,7,5,2,4,4,8,7,10,8,7,9,27,46,41,1,9,1,6,7,5,7,2,2),(1241,'2015-03-10 21:49:29','2015-08-29 14:46:00',1,30000817,0,3,0,0,3,1,2,5,7,11,8,11,3,1,1,3,1,0,0,4,0,1,8,5),(1242,'2015-03-10 21:49:29','2015-08-29 14:46:00',1,30002143,20,38,20,15,22,42,10,5,6,45,17,9,5,29,22,8,11,7,16,22,4,4,12,8),(1243,'2015-03-10 21:49:29','2015-08-29 14:46:00',1,30002157,3,0,0,0,0,0,0,2,0,0,0,0,3,0,0,1,2,0,1,4,2,5,4,3),(1244,'2015-03-10 21:49:29','2015-08-29 14:46:00',1,30000961,3,0,0,1,2,0,1,2,3,2,1,1,1,2,1,1,1,2,0,0,2,1,3,5),(1245,'2015-03-10 21:49:29','2015-08-29 14:46:00',1,30002105,10,70,18,17,15,25,19,8,45,44,18,12,21,52,53,24,20,5,38,16,38,38,18,16),(1246,'2015-03-10 21:49:29','2015-08-29 14:46:00',1,30000854,16,25,23,9,7,10,5,16,34,23,21,16,29,38,36,19,33,20,19,21,13,22,17,16),(1247,'2015-03-10 21:49:29','2015-08-29 14:46:00',1,30000624,22,29,35,23,18,6,21,17,12,10,22,23,16,45,39,25,24,20,15,23,4,4,13,16),(1248,'2015-03-10 21:49:29','2015-08-29 14:46:00',1,30004194,30,22,49,29,24,32,22,38,5,9,7,12,12,15,22,19,20,2,4,12,6,8,18,24),(1249,'2015-03-10 21:49:29','2015-08-29 14:46:00',1,30001076,6,18,37,16,8,18,22,22,15,16,50,22,13,12,20,13,21,6,5,12,17,15,18,14),(1250,'2015-03-10 21:49:29','2015-08-29 14:46:00',1,30000970,7,14,14,17,31,4,6,6,19,7,13,15,37,17,13,19,11,35,68,23,26,32,41,45),(1251,'2015-03-10 21:49:29','2015-08-29 14:46:00',1,30003730,50,74,72,74,51,89,52,94,67,73,86,97,120,179,155,89,72,118,89,78,82,83,97,76),(1252,'2015-03-10 21:49:29','2015-08-29 14:46:00',1,30000610,9,2,1,1,3,1,12,0,1,2,0,0,2,2,0,4,5,11,2,2,23,22,12,5),(1253,'2015-03-10 21:49:29','2015-08-29 14:46:00',1,30001215,1,6,2,13,14,2,3,7,32,29,11,9,52,34,46,41,22,12,20,16,25,24,4,7),(1254,'2015-03-10 21:49:29','2015-03-10 21:49:29',1,30001611,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(1255,'2015-03-10 21:49:29','2015-08-29 14:46:00',1,30004532,20,9,10,8,4,10,4,14,9,2,12,11,4,5,6,3,9,7,3,2,6,6,14,12),(1256,'2015-03-10 21:49:29','2015-08-29 14:46:00',1,30004590,66,29,21,14,23,10,24,16,149,34,27,16,535,35,34,27,34,52,72,42,27,23,17,15),(1257,'2015-03-10 21:49:29','2015-08-29 14:46:00',1,30003180,1,2,2,1,0,0,4,2,5,3,4,1,3,13,13,6,10,2,2,0,1,1,4,2),(1258,'2015-03-10 21:49:29','2015-08-29 14:46:00',1,30002850,15,9,6,14,15,8,10,10,0,4,8,6,21,18,18,9,7,2,3,1,7,14,13,10),(1259,'2015-03-10 21:49:29','2015-08-29 14:46:00',1,30002165,18,60,24,20,18,23,18,4,27,37,38,30,36,73,68,35,27,10,58,31,46,47,16,22),(1260,'2015-03-10 21:49:29','2015-08-29 14:46:00',1,30001115,0,0,0,1,1,9,1,3,4,1,0,0,3,1,2,1,2,1,1,0,1,1,3,1),(1261,'2015-03-10 21:49:29','2015-08-29 14:46:00',1,30004599,1,8,5,2,2,2,3,2,3,2,2,1,2,2,3,2,1,3,4,0,0,3,6,4),(1262,'2015-03-10 21:49:29','2015-08-29 14:46:00',1,30001346,23,42,35,26,26,18,19,20,20,30,19,14,31,26,31,23,24,15,23,33,17,9,19,18),(1263,'2015-03-10 21:49:29','2015-08-29 14:46:00',1,30002860,4,1,2,1,3,1,0,0,0,1,4,4,3,4,3,4,1,0,0,1,1,1,8,6),(1264,'2015-03-10 21:49:29','2015-08-29 14:46:00',1,30002436,1,4,2,0,2,2,2,2,0,1,8,4,0,2,2,1,1,1,2,1,2,2,0,1),(1265,'2015-03-10 21:49:29','2015-08-29 14:46:00',1,30001555,9,3,2,3,3,3,10,1,9,12,9,5,10,1,4,9,19,3,5,12,13,12,18,9),(1266,'2015-03-10 21:49:29','2015-08-29 14:46:00',1,30002012,11,6,6,9,3,15,3,1,1,4,3,10,1,2,4,10,4,3,2,2,8,6,6,5),(1267,'2015-03-10 21:49:29','2015-08-29 14:46:00',1,30004848,2,7,6,2,3,2,27,44,12,10,4,5,8,4,6,8,1,20,14,7,7,6,12,6),(1268,'2015-03-10 21:49:29','2015-08-29 14:46:00',1,30004346,35,31,29,30,32,24,39,24,17,28,20,22,24,26,26,18,26,11,28,21,17,22,29,18),(1269,'2015-03-10 21:49:29','2015-08-29 14:46:00',1,30002110,11,40,18,13,20,31,18,17,5,2,13,19,6,19,22,22,22,1,34,29,29,16,21,18),(1270,'2015-03-10 21:49:29','2015-08-29 14:46:00',1,30001529,9,3,2,4,6,2,0,2,23,20,9,5,11,11,5,10,13,18,12,17,10,10,12,18),(1271,'2015-03-10 21:49:29','2015-08-29 14:46:00',1,30005127,0,1,4,4,1,2,0,6,6,7,2,7,5,1,1,9,2,15,31,7,10,10,0,1),(1272,'2015-03-10 21:49:29','2015-08-29 14:46:00',1,30003601,25,55,17,32,51,84,10,26,19,15,26,24,31,17,17,25,22,24,19,89,24,23,5,11),(1273,'2015-03-10 21:49:29','2015-08-29 14:46:00',1,30003888,77,125,82,72,64,91,51,54,369,441,475,433,89,73,64,86,88,78,81,79,61,63,48,62),(1274,'2015-03-10 21:49:29','2015-08-29 14:46:00',1,30003525,541,605,599,529,486,486,300,342,512,576,509,496,583,682,673,674,481,412,501,535,696,638,566,512),(1275,'2015-03-10 21:49:29','2015-08-29 14:46:00',1,30003502,84,170,142,98,101,93,63,91,182,202,197,145,172,226,262,178,136,124,124,125,159,156,102,100),(1276,'2015-03-10 21:49:29','2015-08-29 14:46:00',1,30000041,6,4,4,4,6,19,3,3,11,10,10,13,14,14,8,18,5,18,25,7,8,10,5,5),(1277,'2015-03-10 21:49:29','2015-08-29 14:46:00',1,30003910,3,1,2,3,4,7,2,4,0,2,9,5,8,6,18,18,3,0,5,4,7,5,6,4),(1278,'2015-03-10 21:49:29','2015-08-29 14:46:00',1,30004261,13,5,8,9,7,4,2,15,10,9,11,14,8,3,6,13,6,17,15,15,5,7,8,8),(1279,'2015-03-10 21:49:29','2015-08-29 14:46:00',1,30002528,67,78,72,50,55,70,47,44,73,72,93,91,67,85,93,88,107,36,55,61,75,97,78,69),(1280,'2015-03-10 21:49:29','2015-08-29 14:46:00',1,30002634,642,906,916,918,822,658,542,610,932,1027,939,813,1121,1234,1180,1023,850,712,756,988,1092,1006,933,856),(1281,'2015-03-10 21:49:29','2015-08-29 14:46:00',1,30002690,5,10,8,5,3,3,5,11,15,12,8,7,6,5,9,11,11,7,7,2,4,4,9,13),(1282,'2015-03-10 21:49:29','2015-08-29 14:46:00',1,30005294,16,8,19,11,14,10,11,6,26,24,12,14,16,19,16,20,8,8,7,7,14,11,18,15),(1283,'2015-03-10 21:49:29','2015-08-29 14:46:00',1,30005257,28,53,20,34,45,31,22,16,54,74,48,35,34,34,35,39,51,23,31,50,64,55,44,34),(1284,'2015-03-10 21:49:29','2015-08-29 14:46:00',1,30004296,18,14,15,24,20,35,10,21,96,198,172,62,92,226,170,104,68,104,225,146,29,24,16,16),(1285,'2015-03-10 21:49:29','2015-08-29 14:46:00',1,30000085,77,78,108,70,69,44,53,35,80,113,68,52,163,99,98,113,62,73,86,96,80,87,76,66),(1286,'2015-03-10 21:49:29','2015-08-29 14:46:00',1,30003920,28,40,17,19,20,31,25,23,34,29,24,31,48,38,29,27,18,15,37,58,30,43,22,24),(1287,'2015-03-10 21:49:29','2015-08-29 14:46:00',1,30003548,383,382,370,324,305,247,162,206,355,385,333,347,382,429,413,443,302,288,346,394,472,400,401,369),(1288,'2015-03-10 21:49:29','2015-08-29 14:46:00',1,30002071,134,120,194,137,105,154,137,135,171,145,177,159,213,277,235,241,197,74,108,198,243,219,180,171),(1289,'2015-03-10 21:49:29','2015-08-29 14:46:00',1,30003819,64,50,56,57,83,29,36,34,98,71,49,50,46,54,37,42,32,23,43,28,74,87,61,69),(1290,'2015-03-10 21:49:29','2015-08-29 14:46:00',1,30002683,12,17,21,9,11,12,11,7,13,17,19,14,18,19,21,13,16,17,14,17,22,24,15,26),(1291,'2015-03-10 21:49:29','2015-08-29 14:46:00',1,30003478,15,46,25,18,27,11,18,19,34,35,17,27,46,33,49,56,52,15,15,42,29,31,54,39),(1292,'2015-03-10 21:49:29','2015-08-29 14:46:00',1,30002666,2,5,4,1,4,20,1,2,9,8,2,8,4,7,6,12,12,3,31,12,23,9,10,3),(1293,'2015-03-10 21:49:29','2015-08-29 14:46:00',1,30002199,100,157,146,147,141,135,90,93,177,250,211,215,222,346,282,222,175,110,153,137,258,199,170,157),(1294,'2015-03-10 21:49:29','2015-08-29 14:46:00',1,30003908,2,7,4,7,4,11,8,7,16,12,20,18,20,21,21,8,6,2,12,14,18,12,15,16),(1295,'2015-03-10 21:49:29','2015-08-29 14:46:00',1,30001670,72,120,73,109,99,99,76,118,216,251,239,175,180,242,241,213,239,180,305,492,365,348,331,330),(1296,'2015-03-10 21:49:29','2015-08-29 14:46:00',1,30002700,56,78,40,46,49,88,20,26,60,48,85,70,114,123,90,87,93,65,38,66,102,103,77,72),(1297,'2015-03-10 21:49:29','2015-08-29 14:46:00',1,30000039,9,5,7,6,8,2,6,11,13,10,13,18,19,28,21,21,9,15,30,17,11,12,6,6),(1298,'2015-03-10 21:49:29','2015-08-29 14:46:00',1,30004252,41,83,59,69,47,83,90,129,13,14,8,7,12,11,10,18,5,5,11,20,11,8,8,7),(1299,'2015-03-10 21:49:29','2015-08-29 14:46:00',1,30004851,2,0,2,1,1,0,8,5,1,1,1,1,2,1,1,0,0,0,1,0,1,3,1,0),(1300,'2015-03-10 21:49:29','2015-08-29 14:46:00',1,30001976,38,36,17,19,27,16,20,27,9,7,7,7,7,10,10,6,2,19,15,8,12,17,11,6),(1301,'2015-03-10 21:49:29','2015-08-29 14:46:00',1,30002498,10,2,11,0,2,3,5,5,2,2,0,2,2,0,0,2,2,1,2,0,10,4,3,4),(1302,'2015-03-10 21:49:29','2015-08-29 14:46:00',1,30005129,4,10,3,10,4,8,1,2,26,24,5,10,5,25,18,6,10,2,7,22,27,27,14,10),(1303,'2015-03-10 21:49:29','2015-08-29 14:46:00',1,30002048,582,747,830,760,702,627,500,534,833,928,811,688,912,1038,1049,916,736,616,678,789,978,923,839,785),(1304,'2015-03-10 21:49:29','2015-08-29 14:46:00',1,30005234,21,15,12,12,16,14,2,5,19,17,20,15,30,19,18,14,13,20,15,11,13,12,17,27),(1305,'2015-03-10 21:49:29','2015-08-29 14:46:00',1,30000110,7,8,2,1,4,6,5,4,8,12,5,6,40,13,11,4,4,8,6,7,15,10,4,5),(1306,'2015-03-10 21:49:29','2015-08-29 14:46:00',1,30003014,154,221,257,215,220,172,114,170,273,297,329,251,323,396,371,391,308,219,211,247,359,329,268,248),(1307,'2015-03-10 21:49:29','2015-08-29 14:46:00',1,30004138,9,7,3,3,7,3,1,2,7,13,2,3,9,5,3,29,10,4,5,6,10,11,15,16),(1308,'2015-03-10 21:49:29','2015-08-29 14:46:00',1,30000109,50,81,57,61,57,61,48,51,92,87,70,74,147,123,112,81,110,58,43,57,73,72,62,54),(1309,'2015-03-10 21:49:29','2015-08-29 14:46:00',1,30001885,0,4,3,3,3,6,0,1,11,13,11,11,1,4,0,4,2,5,1,5,5,5,4,5),(1310,'2015-03-10 21:49:29','2015-08-29 14:46:00',1,30004506,43,17,14,9,9,24,9,19,33,18,28,45,29,19,28,19,18,11,3,11,11,11,24,30),(1311,'2015-03-10 21:49:29','2015-03-10 21:49:29',1,30000355,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(1312,'2015-03-10 21:49:29','2015-08-29 14:46:00',1,30004427,3,1,0,1,0,0,5,1,0,1,0,0,2,5,2,3,2,12,2,1,0,0,2,0),(1313,'2015-03-10 21:49:29','2015-08-29 14:46:00',1,30002876,0,2,0,0,0,1,0,0,0,3,0,0,0,0,0,0,0,0,1,1,1,1,0,0),(1314,'2015-03-10 21:49:29','2015-08-29 14:46:00',1,30004417,0,2,1,0,0,0,1,2,2,1,1,0,2,2,7,3,1,0,1,0,0,1,2,3),(1315,'2015-03-10 21:49:29','2015-08-29 14:46:00',1,30005267,271,303,325,272,246,257,234,220,408,433,397,370,433,490,505,482,452,240,279,331,453,448,434,410),(1316,'2015-03-10 21:49:29','2015-08-29 14:46:00',1,30002282,648,869,850,814,759,625,524,660,1194,1233,1220,997,1137,1273,1320,1211,986,818,1108,1473,1232,1256,1108,1078),(1317,'2015-03-10 21:49:29','2015-08-29 14:46:00',1,30004163,10,7,10,15,25,14,9,16,2,4,3,4,0,4,6,2,5,3,2,0,4,3,5,5),(1318,'2015-03-10 21:49:29','2015-08-29 14:46:00',1,30002252,31,39,46,60,65,17,39,18,51,45,39,36,39,33,29,22,23,30,53,56,28,34,25,26),(1319,'2015-03-10 21:49:29','2015-08-29 14:46:00',1,30003040,26,49,36,30,23,37,23,32,38,49,57,55,53,45,40,41,50,40,22,42,55,63,45,52),(1320,'2015-03-10 21:49:29','2015-08-29 14:46:00',1,30000115,10,15,11,10,5,9,3,4,7,7,6,5,15,13,6,8,8,23,12,5,35,31,9,8),(1321,'2015-03-10 21:49:29','2015-08-29 14:46:00',1,30003561,45,28,43,25,21,31,15,23,31,30,34,58,39,66,56,38,43,101,29,54,24,33,59,46),(1322,'2015-03-10 21:49:29','2015-08-29 14:46:00',1,30003555,37,37,12,24,29,26,14,13,23,18,16,30,13,13,15,28,14,14,15,24,27,18,30,27),(1323,'2015-03-10 21:49:29','2015-08-29 14:46:00',1,30004444,9,13,1,3,5,3,3,16,0,4,0,2,0,6,5,4,5,2,1,9,9,7,1,2),(1324,'2015-03-10 21:49:29','2015-03-10 21:49:29',1,30001469,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(1325,'2015-03-10 21:49:29','2015-08-29 14:46:00',1,30004422,4,3,12,11,14,8,3,43,18,19,11,9,20,28,27,17,29,43,32,38,53,17,42,47),(1326,'2015-03-10 21:49:29','2015-08-29 14:46:00',1,30003757,6,5,11,8,6,11,2,6,11,12,14,9,15,6,2,75,12,4,8,18,27,17,12,14),(1327,'2015-03-10 21:49:29','2015-08-29 14:46:00',1,30004333,89,169,127,197,165,124,172,135,52,84,57,49,47,103,90,50,48,28,60,41,46,50,49,34),(1328,'2015-03-10 21:49:29','2015-03-10 21:49:29',1,30001497,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(1329,'2015-03-10 21:49:29','2015-08-29 14:46:00',1,30003026,34,44,53,45,39,48,30,33,61,72,85,68,98,79,67,90,68,49,61,89,68,70,59,64),(1330,'2015-03-10 21:49:29','2015-08-29 14:46:00',1,30004420,10,15,7,8,10,5,7,18,5,6,1,3,5,13,15,33,17,9,30,17,13,9,16,18),(1331,'2015-03-10 21:49:29','2015-08-29 14:46:00',1,30000619,5,10,14,11,5,5,4,9,11,10,104,65,14,17,10,16,27,9,15,29,15,15,8,11),(1332,'2015-03-10 21:49:29','2015-08-29 14:46:00',1,30002843,3,0,1,0,0,0,0,0,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(1333,'2015-03-10 21:49:29','2015-08-29 14:46:00',1,30003327,33,67,62,39,35,71,63,78,43,46,35,38,33,25,24,29,20,19,69,167,57,46,40,31),(1334,'2015-03-10 21:49:29','2015-08-29 14:46:00',1,30004539,6,8,8,5,2,14,7,9,6,3,8,7,4,7,4,4,13,2,1,4,4,3,11,4),(1335,'2015-03-10 21:49:29','2015-08-29 14:46:00',1,30002438,59,31,64,50,49,66,35,42,58,60,56,63,26,43,39,68,61,30,68,72,135,103,74,62),(1336,'2015-03-10 21:49:29','2015-08-29 14:46:00',1,30002318,6,6,12,6,8,17,14,15,11,6,4,8,6,4,2,6,7,33,4,22,2,12,15,41),(1337,'2015-03-10 21:49:29','2015-08-29 14:46:00',1,30004545,9,9,3,5,2,15,8,3,4,3,6,4,4,4,3,7,4,1,1,5,3,4,7,5),(1338,'2015-03-10 21:49:29','2015-08-29 14:46:00',1,30002553,15,3,11,32,11,10,16,13,37,57,14,7,8,7,13,1,16,2,3,6,11,3,2,4),(1339,'2015-03-10 21:49:29','2015-08-29 14:46:00',1,30002649,6,3,6,8,5,13,1,7,19,13,9,8,16,14,12,12,7,14,10,6,7,4,8,5),(1340,'2015-03-10 21:49:29','2015-08-29 14:46:00',1,30003913,10,7,9,4,2,8,8,17,41,37,10,11,27,14,14,11,11,14,9,31,12,12,39,34),(1341,'2015-03-10 21:49:29','2015-08-29 14:46:00',1,30003397,43,38,37,14,22,30,5,22,43,42,36,25,42,42,46,32,18,24,24,43,71,76,64,49),(1342,'2015-03-10 21:49:29','2015-08-29 14:46:00',1,30002188,125,207,168,163,173,136,105,134,172,199,216,207,226,281,292,211,197,148,158,255,200,216,254,236),(1343,'2015-03-10 21:49:29','2015-08-29 14:46:00',1,30004106,13,27,15,20,18,34,6,18,29,36,18,19,9,18,18,18,15,53,49,23,19,23,12,19),(1344,'2015-03-10 21:49:29','2015-08-29 14:46:00',1,30002514,51,42,68,56,47,45,34,47,57,44,41,49,72,115,106,53,48,56,62,62,67,55,52,41),(1345,'2015-03-10 21:49:29','2015-08-29 14:46:00',1,30002387,85,71,94,56,54,55,41,55,84,50,73,62,166,118,138,151,98,77,60,109,117,94,126,113),(1346,'2015-03-10 21:49:29','2015-08-29 14:46:00',1,30002661,768,1023,1106,913,858,935,703,777,1137,1148,1180,1072,1381,1585,1484,1275,1111,922,1116,1280,1362,1255,1116,1053),(1347,'2015-03-10 21:49:29','2015-08-29 14:46:00',1,30002238,4,1,3,4,2,3,2,3,18,94,31,23,11,6,12,20,6,4,5,8,12,11,12,25),(1348,'2015-03-10 21:49:29','2015-08-29 14:46:00',1,30002715,264,390,407,413,356,323,252,261,466,468,424,401,553,557,510,495,435,310,417,440,480,422,412,373),(1349,'2015-03-10 21:49:29','2015-08-29 14:46:00',1,30003574,42,57,61,65,64,35,27,37,61,59,66,53,54,83,85,80,49,31,31,59,64,56,42,41),(1350,'2015-03-10 21:49:29','2015-08-29 14:46:00',1,30000504,0,1,3,0,0,0,2,3,0,0,3,1,2,3,3,4,1,2,0,0,2,2,2,0),(1351,'2015-03-10 21:49:29','2015-08-29 14:46:00',1,30001037,3,3,2,11,11,1,3,2,18,19,10,3,29,32,38,15,9,7,4,44,10,8,11,9),(1352,'2015-03-10 21:49:29','2015-08-29 14:46:00',1,30003230,9,13,14,17,14,5,4,6,0,0,5,3,4,1,0,0,1,0,0,2,2,0,0,0),(1353,'2015-03-10 21:49:29','2015-08-29 14:46:00',1,30000311,9,13,20,36,21,6,5,4,8,14,17,8,3,11,9,18,22,2,5,5,10,11,7,10),(1354,'2015-03-10 21:49:29','2015-08-29 14:46:00',1,30001235,38,46,45,47,38,77,32,46,150,159,71,52,46,39,56,40,44,21,26,15,26,25,25,36),(1355,'2015-03-10 21:49:29','2015-08-29 14:46:00',1,30002699,168,175,132,97,103,170,94,108,152,176,224,186,261,261,225,207,178,133,138,155,238,234,190,179),(1356,'2015-03-10 21:49:29','2015-08-29 14:46:00',1,30003789,32,6,15,14,22,22,26,11,11,8,10,14,18,27,24,14,16,8,10,11,17,24,8,9),(1357,'2015-03-10 21:49:29','2015-08-29 14:46:00',1,30003809,15,2,4,5,4,11,12,12,11,7,9,14,20,24,18,13,21,18,15,6,13,9,8,6),(1358,'2015-03-10 21:49:29','2015-08-29 14:46:00',1,30005034,6,5,8,8,12,5,3,4,9,9,4,7,66,7,9,11,12,6,4,11,8,10,1,2),(1359,'2015-03-10 21:49:29','2015-08-29 14:46:00',1,30002067,8,13,8,3,11,24,13,10,16,24,10,16,14,14,14,12,16,21,10,13,11,6,16,17),(1360,'2015-03-10 21:49:29','2015-08-29 14:46:00',1,30000986,5,13,12,9,7,5,5,21,8,11,15,19,2,1,1,9,21,4,6,0,6,6,13,9),(1361,'2015-03-10 21:49:29','2015-08-29 14:46:00',1,30003375,29,28,28,13,12,30,24,30,65,62,40,38,50,36,38,66,30,31,34,32,76,56,31,23),(1362,'2015-03-10 21:49:29','2015-08-29 14:46:00',1,30002703,21,21,19,9,15,18,8,18,12,18,32,15,16,19,29,23,12,16,14,15,26,25,17,18),(1363,'2015-03-10 21:49:29','2015-08-29 14:46:00',1,30000643,2,6,4,3,5,3,1,8,6,15,87,81,4,69,35,6,16,11,9,5,15,13,5,5),(1364,'2015-03-10 21:49:29','2015-08-29 14:46:00',1,30004399,0,8,7,2,4,14,1,3,21,25,20,11,46,31,19,23,41,42,54,49,13,16,18,23),(1365,'2015-03-10 21:49:29','2015-08-29 14:46:00',1,30000081,4,3,3,17,20,5,3,7,3,3,5,6,20,28,14,12,24,4,9,9,17,18,10,11),(1366,'2015-03-10 21:49:29','2015-08-29 14:46:00',1,30003866,80,129,116,110,97,142,60,90,247,243,163,164,195,241,274,195,141,194,163,183,208,219,152,160),(1367,'2015-03-10 21:49:29','2015-08-29 14:46:00',1,30002577,4,29,13,11,12,7,9,14,10,23,11,8,14,19,13,13,19,2,11,11,10,6,11,16),(1368,'2015-03-10 21:49:29','2015-08-29 14:46:00',1,30004117,10,14,11,12,4,9,12,7,9,29,8,5,17,14,16,19,11,9,6,8,21,11,15,12),(1369,'2015-03-10 21:49:29','2015-08-29 14:46:00',1,30001245,1,10,13,9,5,14,16,16,114,116,68,54,191,118,98,124,122,76,100,116,62,82,84,47),(1370,'2015-03-10 21:49:29','2015-08-29 14:46:00',1,30001286,21,26,23,16,14,14,14,13,39,47,5,17,49,60,33,12,20,11,19,19,40,25,27,18),(1371,'2015-03-10 21:49:29','2015-08-29 14:46:00',1,30002828,10,1,4,8,3,1,1,2,0,0,1,3,0,1,1,4,3,1,2,2,0,5,6,1),(1372,'2015-03-10 21:49:29','2015-08-29 14:46:00',1,30004804,1,4,6,10,17,9,13,4,10,32,17,9,26,16,15,12,7,1,12,14,9,10,6,7),(1373,'2015-03-10 21:49:29','2015-08-29 14:46:00',1,30002440,206,134,287,179,188,182,149,143,174,200,199,164,237,119,102,285,182,92,94,146,364,264,233,212),(1374,'2015-03-10 21:49:29','2015-08-29 14:46:00',1,30004371,2,3,5,7,4,2,4,4,15,11,18,18,53,49,14,25,10,4,19,28,11,15,20,15),(1375,'2015-03-10 21:49:29','2015-03-10 21:49:29',1,30001629,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(1376,'2015-03-10 21:49:29','2015-08-29 14:46:00',1,30004029,23,0,12,13,13,4,4,6,18,17,4,4,22,16,16,10,39,5,10,20,28,35,30,35),(1377,'2015-03-10 21:49:29','2015-08-29 14:46:00',1,30003993,2,3,2,0,2,10,0,4,0,4,1,0,1,0,0,0,1,1,1,3,1,1,1,0),(1378,'2015-03-10 21:49:29','2015-08-29 14:46:00',1,30002305,4,1,2,1,2,7,0,1,2,0,7,6,1,0,0,0,0,1,14,4,4,5,7,2),(1379,'2015-03-10 21:49:29','2015-08-29 14:46:00',1,30003138,6,6,6,3,11,9,1,5,4,7,12,17,13,4,2,6,2,3,2,9,11,10,7,10),(1380,'2015-03-10 21:49:29','2015-08-29 14:46:00',1,30003328,4,6,7,9,7,11,7,14,11,11,8,13,8,6,8,7,5,0,16,66,19,12,9,9),(1381,'2015-03-10 21:49:29','2015-08-29 14:46:00',1,30000925,5,1,12,4,2,1,2,0,2,1,2,2,3,4,1,2,0,2,2,5,1,1,4,5),(1382,'2015-03-10 21:49:29','2015-08-29 14:46:00',1,30004562,3,8,15,6,4,1,11,9,381,249,419,494,649,36,26,25,45,170,62,398,14,21,15,13),(1383,'2015-03-10 21:49:29','2015-08-29 14:46:00',1,30003121,9,8,7,2,5,5,6,10,15,18,5,12,4,4,3,1,3,4,4,3,2,3,1,5),(1384,'2015-03-10 21:49:29','2015-08-29 14:46:00',1,30002882,6,16,10,11,11,14,13,16,27,32,45,18,34,41,16,21,24,3,2,3,47,14,16,17),(1385,'2015-03-10 21:49:29','2015-08-29 14:46:00',1,30004434,2,0,19,20,7,14,4,6,0,0,7,4,9,9,11,23,13,5,16,9,23,12,15,19),(1386,'2015-03-10 21:49:29','2015-08-29 14:46:00',1,30002375,5,6,7,10,8,22,11,22,16,17,17,20,16,117,503,10,21,4,6,4,5,8,9,5),(1387,'2015-03-10 21:49:29','2015-08-29 14:46:00',1,30004378,48,46,23,31,41,21,57,39,38,39,40,45,29,34,36,27,17,18,48,21,30,25,29,11),(1388,'2015-03-10 21:49:29','2015-08-29 14:46:00',1,30000550,2,1,0,0,1,7,0,1,2,1,1,3,0,1,0,0,2,0,0,0,0,1,6,7),(1389,'2015-03-10 21:49:29','2015-08-29 14:46:00',1,30000632,4,9,6,5,4,1,13,0,4,2,12,12,5,35,35,3,8,0,3,3,0,2,4,3),(1390,'2015-03-10 21:49:29','2015-08-29 14:46:00',1,30003995,24,9,12,20,21,32,11,11,12,7,13,12,10,4,6,15,6,25,2,4,9,7,7,8),(1391,'2015-03-10 21:49:29','2015-08-29 14:46:00',1,30003976,4,6,21,9,6,5,1,1,2,2,2,1,0,0,0,1,2,0,1,1,1,1,0,0),(1392,'2015-03-10 21:49:29','2015-08-29 14:46:00',1,30001576,6,14,8,6,17,3,0,0,5,10,2,0,0,0,0,0,10,21,2,0,3,2,3,7),(1393,'2015-03-10 21:49:29','2015-08-29 14:46:00',1,30004564,0,1,5,0,0,0,5,2,140,24,232,129,10,14,7,4,11,7,6,0,3,5,5,4),(1394,'2015-03-10 21:49:29','2015-08-29 14:46:00',1,30000278,2,4,3,5,8,19,2,4,0,0,0,0,3,0,0,0,1,0,0,2,0,0,2,0),(1395,'2015-03-10 21:49:29','2015-08-29 14:46:00',1,30004818,28,8,8,10,7,3,55,39,4,4,5,4,13,9,13,9,2,5,18,5,5,4,2,4),(1396,'2015-03-10 21:49:29','2015-08-29 14:46:00',1,30004651,3,0,1,1,0,2,0,2,3,3,0,1,0,0,1,1,1,0,3,3,6,1,2,1),(1397,'2015-03-10 21:49:29','2015-08-29 14:46:00',1,30000302,12,20,28,15,15,22,7,10,3,12,2,4,8,22,22,10,10,3,5,15,2,4,12,23),(1398,'2015-03-10 21:49:29','2015-08-29 14:46:00',1,30001992,37,37,24,24,31,15,15,15,7,9,13,8,15,14,14,10,2,15,11,5,11,10,13,8),(1399,'2015-03-10 21:49:29','2015-08-29 14:46:00',1,30004319,12,51,24,27,43,19,23,21,15,23,16,11,7,26,26,12,13,4,7,2,6,11,13,6),(1400,'2015-03-10 21:49:29','2015-08-29 14:46:00',1,30000772,52,140,95,86,103,83,53,83,41,63,39,38,59,87,68,44,69,10,12,31,34,34,28,27),(1401,'2015-03-10 21:49:29','2015-08-29 14:46:00',1,30000273,6,1,5,5,4,4,10,1,0,0,5,5,2,0,0,0,0,0,0,0,0,1,1,2),(1402,'2015-03-10 21:49:29','2015-08-29 14:46:00',1,30001085,0,6,0,0,0,3,1,1,0,2,2,1,1,2,2,0,0,0,4,0,0,0,0,0),(1403,'2015-03-10 21:49:29','2015-08-29 14:46:00',1,30004372,1,6,6,4,4,7,5,6,12,22,25,23,68,31,17,30,17,16,19,40,15,20,27,25),(1404,'2015-03-10 21:49:29','2015-08-29 14:46:00',1,30004365,22,46,40,33,33,32,147,51,47,48,41,23,27,78,65,47,40,31,38,25,20,25,28,27),(1405,'2015-03-10 21:49:29','2015-08-29 14:46:00',1,30000567,4,7,12,8,4,8,10,8,5,2,0,0,0,0,1,0,1,0,0,1,1,2,1,2),(1406,'2015-03-10 21:49:29','2015-08-29 14:46:00',1,30004600,32,12,13,12,13,15,12,18,163,60,175,134,158,50,55,44,49,69,56,53,41,42,36,43),(1407,'2015-03-10 21:49:29','2015-08-29 14:46:00',1,30001124,3,7,11,0,2,5,6,5,2,3,25,7,8,5,4,7,4,2,0,3,5,5,7,7),(1408,'2015-03-10 21:49:29','2015-08-29 14:46:00',1,30003692,46,48,45,34,26,27,16,37,13,14,20,19,8,14,6,18,7,6,11,17,11,11,36,36),(1409,'2015-03-10 21:49:29','2015-08-29 14:46:00',1,30003169,12,11,24,9,7,23,9,21,36,31,18,26,29,31,20,22,15,27,17,34,82,87,115,70),(1410,'2015-03-10 21:49:29','2015-08-29 14:46:00',1,30002367,0,18,1,7,6,11,21,5,0,0,1,4,0,4,3,3,1,7,1,1,1,1,0,0),(1411,'2015-03-10 21:49:29','2015-08-29 14:46:00',1,30004380,32,43,30,20,19,26,46,26,21,27,13,15,20,14,20,12,20,10,25,19,16,21,23,13),(1412,'2015-03-10 21:49:29','2015-08-29 14:46:00',1,30003113,22,13,7,9,19,36,12,5,6,6,7,7,4,4,3,9,14,7,12,18,5,7,9,11),(1413,'2015-03-10 21:49:29','2015-08-29 14:46:00',1,30004889,0,0,0,1,1,0,4,0,3,2,2,0,0,1,1,0,0,3,4,7,0,1,0,0),(1414,'2015-03-10 21:49:29','2015-08-29 14:46:00',1,30003670,14,13,8,23,15,18,11,8,2,0,2,3,5,6,8,5,16,1,0,1,9,10,3,0),(1415,'2015-03-10 21:49:29','2015-08-29 14:46:00',1,30000568,12,16,9,13,5,7,10,13,6,7,8,8,9,4,7,4,6,11,9,7,6,26,3,4),(1416,'2015-03-10 21:49:29','2015-08-29 14:46:00',1,30004493,27,44,16,14,21,23,18,24,9,13,16,12,22,25,15,23,24,15,18,25,32,42,31,30),(1417,'2015-03-10 21:49:29','2015-08-29 14:46:00',1,30003780,14,10,15,8,10,4,6,16,8,11,16,12,8,18,13,15,21,13,4,6,12,7,12,12),(1418,'2015-03-10 21:49:29','2015-08-29 14:46:00',1,30000821,6,23,12,14,8,4,4,12,13,13,105,67,14,16,9,18,24,8,16,23,16,19,9,13),(1419,'2015-03-10 21:49:29','2015-08-29 14:46:00',1,30004597,1,10,3,1,2,2,5,2,3,1,1,1,2,4,7,2,3,3,4,0,0,6,8,8),(1420,'2015-03-10 21:49:29','2015-08-29 14:46:00',1,30004191,32,28,15,19,16,11,1,0,5,7,4,4,9,12,14,24,1,0,0,11,1,0,6,4),(1421,'2015-03-10 21:49:29','2015-08-29 14:46:00',1,30001355,3,2,1,1,2,2,0,1,4,3,2,2,2,16,15,0,1,2,6,1,2,1,1,1),(1422,'2015-03-10 21:49:29','2015-08-29 14:46:00',1,30000863,38,146,90,76,61,54,60,71,143,275,382,178,166,88,81,131,48,38,42,61,48,102,126,83),(1423,'2015-03-10 21:49:29','2015-08-29 14:46:00',1,30004824,16,16,21,24,24,25,95,11,7,11,22,18,13,17,16,6,7,7,9,9,11,6,15,13),(1424,'2015-03-10 21:49:29','2015-08-29 14:46:00',1,30005190,0,4,3,5,6,45,2,0,1,2,4,3,11,1,1,3,3,8,12,11,1,6,1,1),(1425,'2015-03-10 21:49:29','2015-08-29 14:46:00',1,30002858,21,9,10,8,7,1,3,2,37,43,30,27,16,33,29,14,18,2,5,15,9,14,21,20),(1426,'2015-03-10 21:49:29','2015-08-29 14:46:00',1,30004798,21,46,15,11,4,8,10,48,39,34,17,45,53,140,21,29,43,30,23,30,42,31,23,29),(1427,'2015-03-10 21:49:29','2015-08-29 14:46:00',1,30003697,53,47,75,122,135,73,47,46,17,38,110,102,164,108,61,62,22,44,41,27,32,28,41,37),(1428,'2015-03-10 21:49:29','2015-08-29 14:46:00',1,30000446,1,5,5,1,1,2,4,2,13,13,19,12,44,51,36,38,31,64,178,75,55,44,31,24),(1429,'2015-03-10 21:49:29','2015-08-29 14:46:00',1,30001533,9,18,6,3,5,3,9,0,34,28,15,4,20,7,8,13,23,6,8,22,14,16,5,8),(1430,'2015-03-10 21:49:29','2015-08-29 14:46:00',1,30005122,7,10,13,8,9,5,7,4,7,6,6,4,8,12,10,4,5,15,9,4,9,5,2,3),(1431,'2015-03-10 21:49:29','2015-08-29 14:46:00',1,30004791,0,3,0,3,1,0,6,4,20,16,19,11,30,37,25,33,20,7,15,7,28,18,9,15),(1432,'2015-03-10 21:49:29','2015-08-29 14:46:00',1,30002915,7,65,11,7,10,10,8,4,41,43,46,43,19,36,17,22,13,18,19,18,14,18,34,17),(1433,'2015-03-10 21:49:29','2015-08-29 14:46:00',1,30000700,7,8,5,6,7,0,3,2,4,9,24,16,15,1,7,4,4,1,0,4,6,1,0,0),(1434,'2015-03-10 21:49:29','2015-08-29 14:46:00',1,30003676,31,40,42,81,47,103,56,25,230,118,150,140,261,98,138,130,70,63,116,119,82,66,33,42),(1435,'2015-03-10 21:49:29','2015-08-29 14:46:00',1,30000743,5,13,1,5,6,6,7,13,3,1,6,8,9,6,7,10,27,5,2,0,2,10,1,3),(1436,'2015-03-10 21:49:29','2015-08-29 14:46:00',1,30000892,1,0,1,1,1,1,4,2,6,9,6,1,6,7,2,5,5,3,2,3,7,4,4,0),(1437,'2015-03-10 21:49:29','2015-08-29 14:46:00',1,30003109,20,13,17,7,13,18,19,29,29,26,39,59,100,230,230,59,68,39,41,125,86,51,91,78),(1438,'2015-03-10 21:49:29','2015-08-29 14:46:00',1,30002315,0,2,3,0,1,1,0,0,2,1,0,0,0,4,1,3,1,18,1,4,2,1,5,2),(1439,'2015-03-10 21:49:29','2015-08-29 14:46:00',1,30003934,4,23,1,5,3,8,5,5,4,3,15,10,6,1,3,1,1,2,1,1,3,4,2,0),(1440,'2015-03-10 21:49:29','2015-08-29 14:46:00',1,30003569,6,5,3,2,2,2,2,19,7,8,7,2,13,3,6,4,6,5,9,3,10,12,5,2),(1441,'2015-03-10 21:49:29','2015-08-29 14:46:00',1,30002207,9,7,21,10,13,6,1,6,3,2,1,2,4,12,9,6,9,1,0,8,10,13,7,4),(1442,'2015-03-10 21:49:29','2015-08-29 14:46:00',1,30000049,15,9,4,17,22,7,1,7,25,24,16,13,18,23,14,20,10,4,2,14,8,7,11,12),(1443,'2015-03-10 21:49:29','2015-08-29 14:46:00',1,30005287,3,7,4,0,0,9,2,0,1,3,0,0,2,2,2,3,3,8,1,7,9,7,2,2),(1444,'2015-03-10 21:49:29','2015-08-29 14:46:00',1,30002735,117,139,121,80,76,93,45,105,108,122,170,136,210,218,183,182,139,118,130,147,210,180,137,100),(1445,'2015-03-10 21:49:29','2015-08-29 14:46:00',1,30003048,50,107,158,169,126,98,70,88,198,190,168,139,183,189,184,146,123,157,157,125,129,150,183,162),(1446,'2015-03-10 21:49:29','2015-08-29 14:46:00',1,30002645,24,20,8,10,9,31,16,21,33,26,17,18,21,12,19,25,17,24,33,21,10,8,16,23),(1447,'2015-03-10 21:49:29','2015-08-29 14:46:00',1,30004973,135,153,156,147,143,159,151,141,169,196,240,181,241,259,229,210,213,148,175,219,271,268,229,210),(1448,'2015-03-10 21:49:29','2015-08-29 14:46:00',1,30005026,86,118,161,131,148,118,87,91,154,158,125,94,171,161,160,160,130,106,85,99,137,135,132,104),(1449,'2015-03-10 21:49:29','2015-08-29 14:46:00',1,30001205,78,45,67,62,65,29,53,70,192,171,107,109,157,142,132,118,88,89,131,180,133,142,63,91),(1450,'2015-03-10 21:49:29','2015-08-29 14:46:00',1,30001895,5,12,17,13,4,5,8,12,12,26,27,22,49,26,21,25,14,11,20,22,19,14,34,16),(1451,'2015-03-10 21:49:29','2015-08-29 14:46:00',1,30001206,44,27,48,58,42,22,39,47,94,58,62,60,65,63,55,78,55,73,108,152,63,67,46,64),(1452,'2015-03-10 21:49:29','2015-08-29 14:46:00',1,30004180,1,0,0,6,4,4,1,3,2,1,2,4,0,0,0,2,1,0,4,2,5,3,5,2),(1453,'2015-03-10 21:49:29','2015-08-29 14:46:00',1,30004841,0,0,0,0,1,1,1,1,2,3,2,0,3,0,2,2,0,0,0,1,1,3,2,0),(1454,'2015-03-10 21:49:29','2015-08-29 14:46:00',1,30002906,58,197,89,56,72,156,56,44,250,215,147,111,204,193,146,96,124,61,118,91,154,167,79,71),(1455,'2015-03-10 21:49:29','2015-08-29 14:46:00',1,30005283,16,21,9,11,14,13,17,21,34,23,8,6,39,12,15,9,20,25,14,10,65,21,10,14),(1456,'2015-03-10 21:49:29','2015-08-29 14:46:00',1,30004407,4,10,19,15,17,6,13,34,12,9,14,14,26,26,40,27,22,23,19,19,68,36,38,31),(1457,'2015-03-10 21:49:29','2015-08-29 14:46:00',1,30002483,4,2,8,7,5,3,2,7,4,2,0,2,0,0,0,0,3,2,9,4,5,7,2,0),(1458,'2015-03-10 21:49:29','2015-08-29 14:46:00',1,30004401,27,22,34,23,11,161,14,17,28,41,11,14,64,16,12,18,32,21,47,61,18,8,26,20),(1459,'2015-03-10 21:49:29','2015-08-29 14:46:00',1,30004601,4,6,5,1,2,4,2,5,5,5,2,2,4,10,11,5,4,14,15,2,4,7,6,6),(1460,'2015-03-10 21:49:29','2015-08-29 14:46:00',1,30002688,18,55,62,51,54,55,29,46,59,58,80,92,81,80,84,88,81,52,131,72,78,77,60,73),(1461,'2015-03-10 21:49:29','2015-08-29 14:46:00',1,30035042,7,16,28,25,18,9,4,4,20,15,10,11,6,15,18,10,10,25,12,9,4,6,16,17),(1462,'2015-03-10 21:49:29','2015-08-29 14:46:00',1,30003905,23,18,11,11,12,15,16,14,18,24,10,14,21,25,28,26,19,19,23,26,19,24,38,35),(1463,'2015-03-10 21:49:29','2015-08-29 14:46:00',1,30005228,3,0,2,0,1,2,4,1,5,4,6,4,2,3,1,8,6,0,10,11,1,2,3,2),(1464,'2015-03-10 21:49:29','2015-08-29 14:46:00',1,30001664,2,1,5,3,2,5,4,3,10,6,5,9,7,4,5,3,3,10,6,7,4,2,4,6),(1465,'2015-03-10 21:49:29','2015-08-29 14:46:00',1,30004108,5,3,3,5,1,15,4,7,2,3,1,1,1,7,6,7,3,19,38,8,9,16,7,13),(1466,'2015-03-10 21:49:29','2015-08-29 14:46:00',1,30025305,4,16,12,13,12,13,24,15,18,13,14,12,13,20,30,24,20,24,16,26,11,13,39,44),(1467,'2015-03-10 21:49:29','2015-08-29 14:46:00',1,30004122,20,23,32,40,32,27,31,45,25,31,36,40,50,43,49,27,23,21,16,40,41,35,41,33),(1468,'2015-03-10 21:49:29','2015-08-29 14:46:00',1,30005331,181,193,265,185,154,166,138,152,248,254,254,216,253,329,284,311,200,213,197,238,309,282,190,167),(1469,'2015-03-10 21:49:29','2015-08-29 14:46:00',1,30003834,9,15,12,10,7,34,9,1,15,12,14,15,12,12,13,12,17,2,6,20,25,19,14,17),(1470,'2015-03-10 21:49:29','2015-08-29 14:46:00',1,30004976,52,52,71,68,64,43,50,46,83,67,75,68,117,98,88,70,75,57,64,58,100,93,78,69),(1471,'2015-03-10 21:49:29','2015-08-29 14:46:00',1,30002224,38,40,41,20,21,38,15,10,50,60,43,41,70,62,50,51,34,37,65,60,86,65,42,32),(1472,'2015-03-10 21:49:29','2015-08-29 14:46:00',1,30003489,161,252,215,232,217,160,148,162,211,252,227,237,244,276,261,244,227,170,180,238,247,240,267,263),(1473,'2015-03-10 21:49:29','2015-08-29 14:46:00',1,30005237,36,56,26,35,49,44,10,27,30,40,24,21,47,43,39,41,44,50,38,74,51,45,37,37),(1474,'2015-03-10 21:49:29','2015-08-29 14:46:00',1,30002667,52,52,55,62,54,71,41,44,78,72,63,72,118,115,93,110,76,81,86,99,82,101,93,58),(1475,'2015-03-10 21:49:29','2015-08-29 14:46:00',1,30003529,62,78,42,42,42,54,36,28,62,74,78,77,56,71,59,53,66,43,47,85,88,79,52,50),(1476,'2015-03-10 21:49:29','2015-08-29 14:46:00',1,30003019,38,43,46,41,33,47,31,39,84,64,71,75,79,56,68,65,77,64,55,74,85,55,60,58),(1477,'2015-03-10 21:49:29','2015-08-29 14:46:00',1,30005327,31,48,54,65,54,40,24,30,37,34,39,38,51,58,70,60,56,65,35,41,47,32,50,63),(1478,'2015-03-10 21:49:29','2015-08-29 14:46:00',1,30003527,45,39,33,42,43,48,35,22,37,44,44,51,52,47,45,38,51,34,52,54,62,52,48,48),(1479,'2015-03-10 21:49:29','2015-08-29 14:46:00',1,30004250,18,31,4,20,30,7,14,7,8,10,7,5,9,3,5,12,5,3,7,16,12,12,11,11),(1480,'2015-03-10 21:49:29','2015-08-29 14:46:00',1,30000010,20,19,14,15,15,11,9,7,17,18,18,29,18,37,25,21,7,26,32,33,5,8,9,9),(1481,'2015-03-10 21:49:29','2015-08-29 14:46:00',1,30005253,4,3,7,5,4,4,2,7,12,13,32,18,16,16,13,10,3,15,10,15,1,9,19,12),(1482,'2015-03-10 21:49:29','2015-08-29 14:46:00',1,30003925,17,27,12,7,19,28,34,23,24,33,44,32,41,38,30,34,19,11,19,38,38,46,25,18),(1483,'2015-03-10 21:49:29','2015-08-29 14:46:00',1,30005051,23,41,33,20,15,36,30,41,52,59,45,43,32,52,54,53,30,16,14,44,39,50,33,34),(1484,'2015-03-10 21:49:29','2015-08-29 14:46:00',1,30002965,67,78,53,59,72,64,29,52,90,62,60,50,129,152,149,107,76,66,67,103,87,83,81,66),(1485,'2015-03-10 21:49:29','2015-08-29 14:46:00',1,30004210,6,7,9,15,11,4,4,8,5,9,6,5,5,13,7,0,7,0,0,3,9,18,5,11),(1486,'2015-03-10 21:49:29','2015-08-29 14:46:00',1,30000951,10,7,8,8,4,4,1,3,10,2,10,4,3,0,3,6,6,5,2,4,1,4,2,5),(1487,'2015-03-10 21:49:29','2015-08-29 14:46:00',1,30003363,11,0,3,6,8,2,4,7,1,5,5,1,6,0,1,1,3,3,0,6,1,2,0,0),(1488,'2015-03-10 21:49:29','2015-08-29 14:46:00',1,30005305,387,507,443,410,397,404,326,295,452,498,467,417,579,638,562,533,430,399,482,548,559,646,521,457),(1489,'2015-03-10 21:49:29','2015-08-29 14:46:00',1,30001926,6,12,14,13,31,8,9,4,21,12,8,9,26,20,13,22,13,5,13,9,7,7,10,8),(1490,'2015-03-10 21:49:29','2015-08-29 14:46:00',1,30002127,24,16,8,5,3,4,0,2,6,4,2,5,5,14,13,11,8,10,11,10,6,7,1,3),(1491,'2015-03-10 21:49:29','2015-08-29 14:46:00',1,30002170,75,116,65,108,93,96,79,45,85,95,78,67,104,138,121,108,44,86,246,226,103,104,72,69),(1492,'2015-03-10 21:49:29','2015-08-29 14:46:00',1,30001042,4,23,12,21,23,1,8,3,26,26,25,11,67,54,44,22,16,13,20,58,23,22,17,14),(1493,'2015-03-10 21:49:29','2015-08-29 14:46:00',1,30001025,49,109,22,44,36,25,16,25,48,43,31,38,139,88,86,38,28,45,60,54,28,36,47,31),(1494,'2015-03-10 21:49:29','2015-08-29 14:46:00',1,30004565,1,1,2,2,1,0,4,1,2,1,2,3,1,1,2,0,0,3,0,0,0,0,8,3),(1495,'2015-03-10 21:49:29','2015-08-29 14:46:00',1,30002362,13,39,36,65,52,33,33,45,36,37,21,18,81,57,45,24,36,21,18,23,39,36,11,16),(1496,'2015-03-10 21:49:29','2015-08-29 14:46:00',1,30004458,0,3,0,3,4,0,2,1,0,0,1,0,0,2,4,1,1,0,1,2,0,0,0,0),(1497,'2015-03-10 21:49:29','2015-08-29 14:46:00',1,30001981,14,20,19,11,9,16,10,19,10,9,7,5,9,6,7,14,13,12,4,15,8,6,12,12),(1498,'2015-03-10 21:49:29','2015-08-29 14:46:00',1,30035305,17,29,35,27,20,7,13,12,35,31,36,35,27,28,30,20,21,29,17,21,25,18,22,22),(1499,'2015-03-10 21:49:29','2015-08-29 14:46:00',1,30003896,31,26,38,22,16,26,26,32,39,26,30,26,50,66,106,40,12,20,48,24,21,28,29,32),(1500,'2015-03-10 21:49:29','2015-08-29 14:46:00',1,30002275,5,9,4,0,3,3,1,1,11,12,17,13,8,16,20,9,15,2,5,7,10,5,11,4),(1501,'2015-03-10 21:49:29','2015-08-29 14:46:00',1,30005324,77,117,124,148,104,123,52,68,109,112,107,84,153,168,184,176,105,121,122,140,152,141,109,105),(1502,'2015-03-10 21:49:29','2015-08-29 14:46:00',1,30002708,41,74,102,69,64,74,57,61,72,85,96,73,123,94,108,118,132,89,83,82,102,96,116,88),(1503,'2015-03-10 21:49:29','2015-03-10 21:49:29',1,30001616,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(1504,'2015-03-10 21:49:29','2015-08-29 14:46:00',1,30045305,122,149,158,147,129,154,132,132,251,241,229,226,289,281,267,208,171,164,208,257,251,223,208,186),(1505,'2015-03-10 21:49:29','2015-08-29 14:46:00',1,30005194,74,44,50,32,43,41,32,38,57,62,45,47,66,56,53,58,27,50,36,54,86,77,45,38),(1506,'2015-03-10 21:49:29','2015-08-29 14:46:00',1,30005023,4,4,5,2,3,10,9,4,4,6,2,2,4,2,3,4,4,6,7,1,4,5,8,3),(1507,'2015-03-10 21:49:29','2015-08-29 14:46:00',1,30001100,5,2,4,6,3,0,0,1,1,2,0,2,1,1,2,1,2,1,2,0,2,2,0,2),(1508,'2015-03-10 21:49:29','2015-08-29 14:46:00',1,30001254,36,24,48,24,16,17,12,17,35,23,21,29,41,44,50,31,64,46,20,63,52,38,16,30),(1509,'2015-03-10 21:49:29','2015-08-29 14:46:00',1,30001825,25,32,42,38,38,11,8,33,9,20,29,23,19,11,11,18,19,2,2,13,6,11,13,10),(1510,'2015-03-10 21:49:29','2015-08-29 14:46:00',1,30004887,3,0,1,6,12,5,1,3,9,8,7,2,4,13,14,0,3,62,14,13,10,7,4,4),(1511,'2015-03-10 21:49:29','2015-08-29 14:46:00',1,30003904,17,39,21,16,13,23,20,10,49,33,40,19,24,73,41,29,19,15,17,38,30,24,21,33),(1512,'2015-03-10 21:49:29','2015-08-29 14:46:00',1,30003041,4,22,13,12,12,11,7,10,14,23,22,16,14,17,17,14,22,22,12,23,32,23,31,33),(1513,'2015-03-10 21:49:29','2015-08-29 14:46:00',1,30002682,522,658,706,653,605,519,420,447,758,825,666,585,781,913,907,798,648,521,564,706,794,747,708,671),(1514,'2015-03-10 21:49:29','2015-08-29 14:46:00',1,30045042,50,63,57,77,79,55,49,70,59,61,44,34,72,89,83,73,54,44,68,59,70,74,65,64),(1515,'2015-03-10 21:49:29','2015-08-29 14:46:00',1,30003565,10,48,15,29,36,8,12,19,26,19,17,16,17,21,12,26,26,19,36,21,30,33,17,11),(1516,'2015-03-10 21:49:29','2015-08-29 14:46:00',1,30005298,12,23,35,47,42,35,24,25,42,37,22,18,61,46,38,32,29,40,16,74,37,34,16,24),(1517,'2015-03-10 21:49:29','2015-08-29 14:46:00',1,30014971,167,240,188,186,186,195,139,150,288,285,289,272,333,327,312,255,221,188,228,251,282,274,187,183),(1518,'2015-03-10 21:49:29','2015-08-29 14:46:00',1,30003795,46,108,79,58,55,62,37,37,49,46,40,33,38,51,60,41,33,29,35,35,52,100,82,83),(1519,'2015-03-10 21:49:29','2015-08-29 14:46:00',1,30003123,4,2,6,0,1,2,1,5,12,9,13,11,12,20,16,6,13,23,7,10,0,1,6,8),(1520,'2015-03-10 21:49:29','2015-08-29 14:46:00',1,30002003,10,9,5,6,7,8,9,17,3,2,7,6,4,1,2,7,5,5,5,6,1,2,6,4),(1521,'2015-03-10 21:49:29','2015-08-29 14:46:00',1,30003678,15,19,22,27,26,32,11,11,59,54,137,209,277,77,73,88,54,49,88,111,62,44,29,37),(1522,'2015-03-10 21:49:29','2015-08-29 14:46:00',1,30000845,1,4,1,0,2,6,2,9,2,1,3,4,6,5,3,7,8,3,13,11,12,10,3,3),(1523,'2015-03-10 21:49:29','2015-08-29 14:46:00',1,30002691,106,62,73,70,74,85,66,85,55,54,73,71,85,87,91,82,86,56,163,70,79,60,101,102),(1524,'2015-03-10 21:49:29','2015-08-29 14:46:00',1,30002705,11,22,11,16,15,26,6,9,23,13,14,10,27,24,22,28,25,11,9,20,21,17,16,14),(1525,'2015-03-10 21:49:29','2015-08-29 14:46:00',1,30000923,22,42,22,22,31,15,19,10,32,24,15,13,28,55,27,23,23,23,45,38,16,16,29,27),(1526,'2015-03-10 21:49:29','2015-08-29 14:46:00',1,30004357,14,26,36,24,35,59,45,25,21,31,10,6,17,30,50,23,22,11,12,11,21,18,11,11),(1527,'2015-03-10 21:49:29','2015-08-29 14:46:00',1,30001275,67,49,43,55,64,50,34,51,44,65,108,109,110,127,142,87,76,39,60,93,134,317,90,93),(1528,'2015-03-10 21:49:29','2015-08-29 14:46:00',1,30004530,4,6,2,7,4,2,4,2,3,6,7,5,8,2,3,4,6,8,4,6,1,2,3,2),(1529,'2015-03-10 21:49:29','2015-08-29 14:46:00',1,30002373,1,0,3,4,2,4,2,2,13,12,7,5,34,263,435,7,5,1,4,2,3,7,4,3),(1530,'2015-03-10 21:49:29','2015-08-29 14:46:00',1,30002896,9,13,9,10,11,3,7,17,180,124,163,99,189,191,168,225,89,182,85,173,277,113,61,59),(1531,'2015-03-10 21:49:29','2015-08-29 14:46:00',1,30003802,51,77,73,50,46,50,27,32,56,40,27,29,18,27,31,32,25,19,26,17,39,77,50,59),(1532,'2015-03-10 21:49:29','2015-08-29 14:46:00',1,30004200,24,29,63,39,29,51,23,34,21,18,21,23,22,15,28,15,22,1,16,43,18,19,74,77),(1533,'2015-03-10 21:49:29','2015-08-29 14:46:00',1,30001034,5,1,3,1,2,5,1,1,6,0,7,5,3,3,4,4,4,3,8,8,5,6,12,16),(1534,'2015-03-10 21:49:29','2015-03-10 21:49:29',1,30001472,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(1535,'2015-03-10 21:49:29','2015-08-29 14:46:00',1,30004939,15,21,19,8,4,3,6,80,21,20,9,34,32,125,8,11,8,6,23,29,28,15,14,15),(1536,'2015-03-10 21:49:29','2015-08-29 14:46:00',1,30004335,8,20,18,20,13,7,10,14,8,8,7,4,18,51,14,4,8,2,14,12,6,12,18,10),(1537,'2015-03-10 21:49:29','2015-08-29 14:46:00',1,30001224,2,3,5,4,4,6,3,1,16,22,22,14,29,21,20,39,13,22,43,20,29,27,33,11),(1538,'2015-03-10 21:49:29','2015-08-29 14:46:00',1,30004072,6,30,17,34,26,3,3,4,10,10,4,6,6,4,5,7,9,15,9,110,12,12,4,11),(1539,'2015-03-10 21:49:29','2015-08-29 14:46:00',1,30004799,4,36,9,9,3,4,5,31,8,13,9,10,27,15,5,16,17,25,22,18,26,23,7,8),(1540,'2015-03-10 21:49:29','2015-08-29 14:46:00',1,30001979,6,31,11,19,20,8,25,28,2,4,4,1,8,12,9,14,11,8,7,13,7,5,7,9),(1541,'2015-03-10 21:49:29','2015-08-29 14:46:00',1,30003371,3,30,2,2,1,4,6,2,4,5,0,1,7,0,0,2,2,5,0,2,4,6,0,0),(1542,'2015-03-10 21:49:29','2015-08-29 14:46:00',1,30002312,5,11,9,3,5,11,6,4,9,4,6,5,12,12,7,12,7,24,4,35,7,4,14,30),(1543,'2015-03-10 21:49:29','2015-03-10 21:49:29',1,30001496,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(1544,'2015-03-10 21:49:29','2015-08-29 14:46:00',1,30003134,7,3,3,5,5,1,1,3,2,3,5,4,5,4,2,5,3,1,3,5,2,3,8,5),(1545,'2015-03-10 21:49:29','2015-08-29 14:46:00',1,30002953,19,56,18,19,30,19,8,28,23,18,22,20,21,23,24,17,14,2,20,16,17,16,18,13),(1546,'2015-03-10 21:49:29','2015-08-29 14:46:00',1,30001253,30,25,60,29,17,28,11,17,35,29,28,25,40,43,55,40,64,31,18,55,49,40,20,33),(1547,'2015-03-10 21:49:29','2015-08-29 14:46:00',1,30000461,4,11,12,7,7,25,9,5,3,13,20,14,18,19,12,12,7,2,2,9,5,11,6,5),(1548,'2015-03-10 21:49:29','2015-08-29 14:46:00',1,30004750,22,3,19,15,18,16,23,62,68,47,46,36,47,60,52,38,51,30,44,65,78,84,30,31),(1549,'2015-03-10 21:49:29','2015-08-29 14:46:00',1,30000613,0,2,19,4,3,4,2,0,0,1,3,6,4,1,0,6,6,0,1,3,2,2,3,2),(1550,'2015-03-10 21:49:29','2015-08-29 14:46:00',1,30002838,0,0,1,0,1,0,1,0,0,0,1,3,1,0,0,1,0,0,1,0,0,0,1,2),(1551,'2015-03-10 21:49:29','2015-08-29 14:46:00',1,30003727,32,53,24,19,31,40,18,12,53,95,53,63,140,48,37,101,31,26,16,51,81,52,88,82),(1552,'2015-03-10 21:49:29','2015-08-29 14:46:00',1,30001272,57,75,66,67,82,64,40,44,33,72,74,74,66,163,141,328,53,24,55,57,52,188,42,27),(1553,'2015-03-10 21:49:29','2015-08-29 14:46:00',1,30004813,0,1,3,1,0,2,6,2,5,4,4,6,4,4,4,8,5,4,3,0,3,4,5,5),(1554,'2015-03-10 21:49:29','2015-08-29 14:46:00',1,30003358,2,2,1,2,1,1,0,2,2,3,1,0,2,1,1,4,0,3,2,2,1,1,0,0),(1555,'2015-03-10 21:49:29','2015-08-29 14:46:00',1,30002149,3,14,3,1,2,6,4,5,0,0,7,11,1,10,17,5,0,2,0,5,0,0,13,17),(1556,'2015-03-10 21:49:29','2015-08-29 14:46:00',1,30002304,2,10,3,3,8,10,5,7,3,11,13,9,13,5,5,1,1,12,11,8,6,6,8,5),(1557,'2015-03-10 21:49:29','2015-08-29 14:46:00',1,30003115,10,13,9,7,12,18,5,8,2,2,4,5,4,2,3,3,3,2,1,6,2,1,7,7),(1558,'2015-03-10 21:49:29','2015-08-29 14:46:00',1,30003709,43,139,113,53,40,37,28,93,270,122,131,86,252,234,87,147,62,171,220,103,89,185,42,84),(1559,'2015-03-10 21:49:29','2015-08-29 14:46:00',1,30002481,64,64,67,54,48,52,52,58,42,38,36,51,31,22,14,52,31,27,25,50,108,60,87,69),(1560,'2015-03-10 21:49:29','2015-08-29 14:46:00',1,30002347,17,7,36,11,18,15,13,9,11,7,33,14,23,11,8,9,0,18,31,25,11,11,4,2),(1561,'2015-03-10 21:49:29','2015-08-29 14:46:00',1,30001761,28,21,42,33,26,3,3,11,1,3,1,1,22,11,13,6,5,7,2,6,13,14,18,8),(1562,'2015-03-10 21:49:29','2015-08-29 14:46:00',1,30002626,0,0,2,3,2,3,1,4,88,59,3,2,2,5,4,7,9,4,3,4,4,7,11,5),(1563,'2015-03-10 21:49:29','2015-08-29 14:46:00',1,30002366,5,17,10,17,7,7,14,17,5,7,11,9,22,12,22,33,15,8,18,9,8,7,6,9),(1564,'2015-03-10 21:49:29','2015-08-29 14:46:00',1,30000826,2,8,8,3,10,0,1,3,2,1,3,5,2,3,1,11,32,0,2,17,11,9,2,3),(1565,'2015-03-10 21:49:29','2015-03-10 21:49:29',1,30000340,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(1566,'2015-03-10 21:49:29','2015-08-29 14:46:00',1,30003135,30,12,20,28,40,15,10,14,12,26,26,31,31,20,16,22,16,11,15,11,34,31,28,28),(1567,'2015-03-10 21:49:29','2015-08-29 14:46:00',1,30004622,16,43,64,24,25,28,15,15,2,3,8,4,7,9,7,8,10,7,6,21,16,8,8,7),(1568,'2015-03-10 21:49:29','2015-08-29 14:46:00',1,30005125,0,2,2,5,3,3,0,1,5,4,2,2,5,0,0,7,0,17,30,7,7,7,0,1),(1569,'2015-03-10 21:49:29','2015-08-29 14:46:00',1,30001299,4,10,3,12,11,1,1,2,0,0,1,2,2,3,0,0,3,3,2,0,2,3,2,1),(1570,'2015-03-10 21:49:29','2015-08-29 14:46:00',1,30004730,5,45,4,9,9,15,12,18,175,71,165,70,94,192,63,49,51,31,39,62,23,29,17,18),(1571,'2015-03-10 21:49:29','2015-08-29 14:46:00',1,30002430,2,16,7,4,8,2,2,15,6,2,3,4,3,4,5,3,4,3,10,13,2,5,6,4),(1572,'2015-03-10 21:49:29','2015-08-29 14:46:00',1,30002036,6,75,40,45,49,111,8,1,2,5,1,3,11,0,5,4,5,1,7,3,1,6,3,5),(1573,'2015-03-10 21:49:29','2015-08-29 14:46:00',1,30004588,1,0,4,6,2,0,0,3,0,1,1,3,2,0,1,1,1,1,1,0,7,3,0,1),(1574,'2015-03-10 21:49:29','2015-08-29 14:46:00',1,30004902,2,0,3,5,3,4,1,5,0,2,1,1,0,5,4,1,1,0,1,3,0,0,6,3),(1575,'2015-03-10 21:49:29','2015-08-29 14:46:00',1,30002295,0,0,0,0,0,0,0,0,2,3,1,1,0,0,0,0,0,0,0,0,0,0,0,0),(1576,'2015-03-10 21:49:29','2015-08-29 14:46:00',1,30004491,8,10,4,7,4,29,13,27,20,21,20,13,12,29,22,23,18,18,12,38,46,55,124,79),(1577,'2015-03-10 21:49:29','2015-08-29 14:46:00',1,30004626,4,4,12,8,10,1,25,8,286,95,186,314,454,254,59,43,63,148,111,426,14,16,11,11),(1578,'2015-03-10 21:49:29','2015-08-29 14:46:00',1,30004386,24,10,7,9,8,5,8,8,8,13,7,3,10,26,25,11,19,7,19,15,9,9,12,11),(1579,'2015-03-10 21:49:29','2015-08-29 14:46:00',1,30004502,10,13,8,7,9,21,9,7,3,9,19,20,12,24,27,40,22,8,16,12,19,12,9,16),(1580,'2015-03-10 21:49:29','2015-08-29 14:46:00',1,30003724,39,166,75,70,73,56,20,49,120,107,77,75,174,74,54,89,62,98,210,224,135,95,98,71),(1581,'2015-03-10 21:49:29','2015-08-29 14:46:00',1,30004480,14,32,1,1,10,11,13,8,16,11,11,17,7,18,19,35,15,9,10,20,6,8,14,11),(1582,'2015-03-10 21:49:29','2015-08-29 14:46:00',1,30000867,108,131,180,139,138,105,106,92,129,287,255,141,246,352,266,99,76,55,106,197,130,120,87,87),(1583,'2015-03-10 21:49:29','2015-08-29 14:46:00',1,30001968,43,10,25,17,15,57,41,47,52,67,17,25,34,88,93,36,80,8,10,16,49,39,45,37),(1584,'2015-03-10 21:49:29','2015-08-29 14:46:00',1,30003345,17,4,9,15,12,40,7,8,4,5,17,10,9,9,6,8,15,14,6,7,12,9,7,6),(1585,'2015-03-10 21:49:29','2015-08-29 14:46:00',1,30001010,18,66,85,29,28,36,36,29,145,183,82,45,178,106,101,65,46,42,69,80,43,32,103,72),(1586,'2015-03-10 21:49:29','2015-03-10 21:49:29',1,30000327,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(1587,'2015-03-10 21:49:29','2015-08-29 14:46:00',1,30001881,10,16,4,13,15,5,0,1,6,10,25,24,14,22,4,10,2,15,5,13,11,10,9,11),(1588,'2015-03-10 21:49:29','2015-08-29 14:46:00',1,30004222,16,17,8,5,7,4,4,5,0,3,3,1,3,8,7,6,8,2,15,31,9,11,29,18),(1589,'2015-03-10 21:49:29','2015-08-29 14:46:00',1,30001660,19,45,28,19,17,25,10,21,42,36,52,34,43,67,80,74,47,25,43,46,45,56,63,63),(1590,'2015-03-10 21:49:29','2015-08-29 14:46:00',1,30001921,7,11,9,7,10,16,3,9,12,28,34,20,29,22,20,14,17,13,33,50,11,14,9,14),(1591,'2015-03-10 21:49:29','2015-08-29 14:46:00',1,30001083,4,16,3,10,11,1,3,13,0,9,6,1,21,9,7,4,9,0,13,2,8,6,8,8),(1592,'2015-03-10 21:49:29','2015-08-29 14:46:00',1,30002233,7,6,4,5,5,6,5,4,9,10,7,9,17,9,23,19,10,2,3,11,7,9,23,16),(1593,'2015-03-10 21:49:29','2015-08-29 14:46:00',1,30002541,30,70,66,64,44,30,82,106,87,41,51,56,57,47,36,57,53,40,41,90,72,37,56,42),(1594,'2015-03-10 21:49:29','2015-08-29 14:46:00',1,30002513,76,67,98,84,81,67,69,79,56,55,67,65,68,69,65,77,61,57,55,64,104,90,52,45),(1595,'2015-03-10 21:49:29','2015-08-29 14:46:00',1,30003912,21,35,22,14,9,9,13,15,75,60,43,37,46,29,30,25,36,24,26,47,38,39,55,51),(1596,'2015-03-10 21:49:29','2015-08-29 14:46:00',1,30004097,45,63,70,50,57,40,34,34,59,60,60,46,72,92,82,84,79,27,48,68,90,86,55,57),(1597,'2015-03-10 21:49:29','2015-08-29 14:46:00',1,30003451,15,20,13,25,25,19,2,13,11,15,19,21,29,22,28,33,25,22,15,23,39,54,27,20),(1598,'2015-03-10 21:49:29','2015-08-29 14:46:00',1,30001356,29,143,44,41,39,72,37,50,122,68,87,74,107,76,86,57,56,56,83,117,81,83,53,41),(1599,'2015-03-10 21:49:29','2015-08-29 14:46:00',1,30005044,98,139,145,138,140,137,67,94,211,198,162,160,253,235,200,227,174,144,194,198,232,217,212,206),(1600,'2015-03-10 21:49:29','2015-08-29 14:46:00',1,30005074,8,9,10,13,12,31,4,19,19,15,7,8,20,20,15,14,13,9,18,23,15,11,11,16),(1601,'2015-03-10 21:49:29','2015-08-29 14:46:00',1,30001420,57,58,37,44,46,48,23,38,66,66,39,28,36,42,40,28,32,47,85,31,38,36,56,31),(1602,'2015-03-10 21:49:29','2015-08-29 14:46:00',1,30003797,44,95,92,77,81,46,55,45,121,100,115,87,145,107,139,62,84,127,119,180,135,144,119,106),(1603,'2015-03-10 21:49:29','2015-08-29 14:46:00',1,30003405,24,13,18,27,15,9,10,14,6,10,7,4,7,20,24,10,11,7,8,6,12,19,10,8),(1604,'2015-03-10 21:49:29','2015-08-29 14:46:00',1,30000253,40,36,46,30,26,63,27,56,22,47,27,34,67,42,38,43,26,36,53,18,108,53,37,36),(1605,'2015-03-10 21:49:29','2015-08-29 14:46:00',1,30004524,5,4,11,6,4,2,4,3,5,4,6,6,9,6,3,9,4,5,2,2,1,8,3,1),(1606,'2015-03-10 21:49:29','2015-08-29 14:46:00',1,30004470,8,11,10,14,10,14,8,2,21,23,26,11,12,28,20,24,24,13,24,36,51,43,31,33),(1607,'2015-03-10 21:49:29','2015-08-29 14:46:00',1,30004595,1,5,2,1,0,18,2,0,2,4,1,0,3,5,3,2,3,3,1,9,5,2,0,0),(1608,'2015-03-10 21:49:29','2015-08-29 14:46:00',1,30000877,29,31,64,33,21,34,37,46,5,5,5,15,2,7,16,9,11,17,10,14,6,9,17,17),(1609,'2015-03-10 21:49:29','2015-08-29 14:46:00',1,30003364,6,1,1,5,8,7,9,7,0,5,3,2,7,0,1,1,2,2,0,5,1,0,2,1),(1610,'2015-03-10 21:49:29','2015-08-29 14:46:00',1,30004311,10,16,5,6,28,6,1,11,14,22,13,20,10,50,36,5,2,6,20,14,11,9,4,4),(1611,'2015-03-10 21:49:29','2015-08-29 14:46:00',1,30003644,2,9,12,10,11,2,12,11,5,5,6,4,6,3,2,2,3,3,3,0,3,2,2,0),(1612,'2015-03-10 21:49:29','2015-08-29 14:46:00',1,30002631,2,4,4,1,1,5,15,4,20,33,2,1,3,0,0,4,6,4,2,3,2,3,3,1),(1613,'2015-03-10 21:49:29','2015-08-29 14:46:00',1,30000663,15,29,27,54,13,28,13,16,15,10,4,8,12,7,9,42,10,21,19,17,53,37,0,0),(1614,'2015-03-10 21:49:29','2015-08-29 14:46:00',1,30005093,5,8,6,15,13,7,4,5,8,1,7,9,3,22,17,3,4,6,4,7,21,12,5,5),(1615,'2015-03-10 21:49:29','2015-08-29 14:46:00',1,30000954,5,8,8,5,4,5,1,5,4,3,9,5,4,1,0,4,8,4,2,2,2,4,2,4),(1616,'2015-03-10 21:49:29','2015-08-29 14:46:00',1,30005285,4,2,0,0,1,3,8,9,6,5,0,0,6,2,2,2,8,2,1,9,22,4,1,3),(1617,'2015-03-10 21:49:29','2015-08-29 14:46:00',1,30002635,8,30,14,15,11,15,12,7,35,39,49,32,40,23,30,17,20,2,17,33,57,29,22,30),(1618,'2015-03-10 21:49:29','2015-08-29 14:46:00',1,30013489,68,100,119,84,81,64,55,81,130,147,97,108,137,137,160,134,136,79,84,115,109,114,97,113),(1619,'2015-03-10 21:49:29','2015-08-29 14:46:00',1,30004284,35,47,26,31,25,37,25,27,78,235,80,51,100,158,156,154,79,69,228,118,97,95,67,64),(1620,'2015-03-10 21:49:29','2015-08-29 14:46:00',1,30004105,5,2,6,2,8,15,2,1,6,6,4,0,1,4,6,1,0,1,2,0,1,0,5,7),(1621,'2015-03-10 21:49:29','2015-08-29 14:46:00',1,30002681,543,714,763,731,664,537,466,491,812,919,729,638,860,984,986,844,728,580,622,766,852,808,767,723),(1622,'2015-03-10 21:49:29','2015-08-29 14:46:00',1,30004987,39,71,95,70,54,65,29,47,52,64,46,50,69,79,87,69,48,57,49,58,61,58,56,58),(1623,'2015-03-10 21:49:29','2015-08-29 14:46:00',1,30005025,60,59,67,79,76,93,52,47,52,48,47,43,75,83,78,66,61,50,54,45,70,79,81,59),(1624,'2015-03-10 21:49:29','2015-08-29 14:46:00',1,30004985,53,66,57,92,84,86,79,56,135,133,45,38,185,148,136,89,81,112,81,113,128,102,99,104),(1625,'2015-03-10 21:49:29','2015-08-29 14:46:00',1,30000816,1,1,13,9,12,2,0,2,4,7,2,4,1,0,0,3,2,0,12,1,0,1,3,5),(1626,'2015-03-10 21:49:29','2015-08-29 14:46:00',1,30001557,2,2,1,3,2,1,1,0,1,2,2,3,0,3,3,4,6,0,3,0,8,8,6,2),(1627,'2015-03-10 21:49:29','2015-08-29 14:46:00',1,30000441,18,14,24,27,23,56,17,19,218,116,142,126,105,162,150,106,109,18,106,49,123,122,100,118),(1628,'2015-03-10 21:49:29','2015-08-29 14:46:00',1,30004016,14,39,9,21,21,3,0,7,10,6,10,12,22,13,15,10,4,5,7,13,19,25,16,22),(1629,'2015-03-10 21:49:29','2015-08-29 14:46:00',1,30003187,4,46,6,2,1,3,4,2,6,3,2,4,2,6,2,0,4,3,3,1,5,3,3,4),(1630,'2015-03-10 21:49:29','2015-08-29 14:46:00',1,30005229,151,170,179,164,165,159,128,131,270,245,232,195,250,266,273,259,224,155,195,249,249,245,231,182),(1631,'2015-03-10 21:49:29','2015-08-29 14:46:00',1,30003156,23,22,12,14,7,8,60,17,0,4,11,13,2,5,4,10,1,2,2,1,8,9,16,14),(1632,'2015-03-10 21:49:29','2015-08-29 14:46:00',1,30002967,34,52,41,29,39,36,19,38,30,22,27,34,34,40,43,40,42,34,46,38,51,54,28,26),(1633,'2015-03-10 21:49:29','2015-08-29 14:46:00',1,30003924,0,5,3,3,0,0,6,5,2,2,4,0,2,3,3,1,1,0,1,0,1,2,0,0),(1634,'2015-03-10 21:49:29','2015-08-29 14:46:00',1,30002646,15,4,5,16,15,12,12,13,31,32,22,41,11,22,23,14,19,7,15,21,24,29,14,13),(1635,'2015-03-10 21:49:29','2015-08-29 14:46:00',1,30003461,54,95,72,74,62,74,49,34,76,86,56,67,132,150,131,118,106,47,74,94,86,86,94,86),(1636,'2015-03-10 21:49:29','2015-08-29 14:46:00',1,30002968,136,112,104,89,79,72,51,66,122,104,97,99,187,186,181,167,128,88,162,170,155,148,128,99),(1637,'2015-03-10 21:49:29','2015-08-29 14:46:00',1,30001781,17,7,8,19,23,6,41,8,25,67,23,16,89,17,35,18,21,10,5,20,4,13,18,17),(1638,'2015-03-10 21:49:29','2015-08-29 14:46:00',1,30005262,24,31,28,42,44,27,23,22,15,27,19,14,38,20,19,9,14,19,29,39,51,29,27,23),(1639,'2015-03-10 21:49:29','2015-08-29 14:46:00',1,30004903,0,0,3,2,2,0,0,0,0,0,1,0,0,2,3,0,1,1,2,1,0,0,4,2),(1640,'2015-03-10 21:49:29','2015-08-29 14:46:00',1,30001994,35,42,19,16,16,12,9,11,3,3,7,5,2,2,1,9,3,7,4,3,3,10,7,7),(1641,'2015-03-10 21:49:29','2015-08-29 14:46:00',1,30004207,2,3,4,9,7,4,0,2,1,0,0,2,8,4,2,4,3,0,1,1,3,3,16,17),(1642,'2015-03-10 21:49:29','2015-08-29 14:46:00',1,30001960,3,3,0,3,0,5,1,4,1,3,1,1,1,2,1,1,2,1,4,1,2,1,2,2),(1643,'2015-03-10 21:49:29','2015-08-29 14:46:00',1,30002920,9,17,6,19,15,8,6,7,25,32,46,37,26,44,32,20,19,14,14,30,12,9,42,26),(1644,'2015-03-10 21:49:29','2015-08-29 14:46:00',1,30003170,19,14,16,20,14,44,20,43,33,27,28,34,9,43,36,20,6,21,18,10,40,23,14,13),(1645,'2015-03-10 21:49:29','2015-08-29 14:46:00',1,30000879,17,11,29,11,7,15,10,8,5,8,13,8,5,9,12,14,10,9,3,10,10,13,4,6),(1646,'2015-03-10 21:49:29','2015-03-10 21:49:29',1,30001632,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(1647,'2015-03-10 21:49:29','2015-08-29 14:46:00',1,30004195,39,17,15,18,12,14,36,30,19,18,2,8,9,34,39,17,14,2,9,14,11,9,24,16),(1648,'2015-03-10 21:49:29','2015-08-29 14:46:00',1,30003157,8,9,11,7,9,7,5,13,15,18,6,7,13,9,8,7,6,3,3,5,3,3,6,4),(1649,'2015-03-10 21:49:29','2015-08-29 14:46:00',1,30003762,45,24,42,29,36,45,18,25,49,82,54,58,52,54,67,83,43,34,46,36,45,43,40,35),(1650,'2015-03-10 21:49:29','2015-08-29 14:46:00',1,30003681,66,304,127,102,74,135,45,67,243,205,145,116,148,139,94,71,110,61,97,83,85,85,82,75),(1651,'2015-03-10 21:49:29','2015-08-29 14:46:00',1,30001130,3,16,3,11,11,2,4,6,3,6,2,1,20,6,8,5,6,1,7,3,3,10,9,9),(1652,'2015-03-10 21:49:29','2015-08-29 14:46:00',1,30002685,15,27,38,33,29,28,16,29,51,39,43,52,57,66,84,93,67,37,120,54,77,67,49,59),(1653,'2015-03-10 21:49:29','2015-08-29 14:46:00',1,30002659,663,888,938,808,743,732,601,606,974,933,961,882,1184,1318,1289,1146,939,845,943,1111,1176,1128,989,949),(1654,'2015-03-10 21:49:29','2015-08-29 14:46:00',1,30005226,4,6,3,4,6,17,10,3,20,11,18,5,14,20,10,14,15,10,24,20,9,6,10,13),(1655,'2015-03-10 21:49:29','2015-08-29 14:46:00',1,30000038,9,9,8,8,9,7,8,3,12,17,14,17,18,25,20,13,7,27,31,24,7,14,7,11),(1656,'2015-03-10 21:49:29','2015-08-29 14:46:00',1,30001047,36,28,28,23,17,16,29,14,58,61,32,50,71,37,46,30,39,24,74,75,46,38,41,31),(1657,'2015-03-10 21:49:29','2015-08-29 14:46:00',1,30003807,13,43,34,10,10,21,16,12,31,47,20,14,38,27,25,27,26,25,22,34,24,23,29,26),(1658,'2015-03-10 21:49:29','2015-08-29 14:46:00',1,30002706,106,154,175,153,144,115,114,141,166,190,154,125,184,209,220,174,174,126,133,187,201,186,174,174),(1659,'2015-03-10 21:49:29','2015-08-29 14:46:00',1,30005293,131,115,122,109,105,111,123,175,166,188,155,143,141,151,127,114,103,83,161,189,196,168,164,142),(1660,'2015-03-10 21:49:29','2015-08-29 14:46:00',1,30002014,35,46,31,33,28,41,17,14,21,9,19,20,23,7,14,25,27,35,47,171,27,32,9,22),(1661,'2015-03-10 21:49:29','2015-08-29 14:46:00',1,30001912,0,1,3,3,2,3,2,2,1,4,4,3,10,8,6,7,8,5,10,4,1,1,1,1),(1662,'2015-03-10 21:49:29','2015-08-29 14:46:00',1,30003721,33,30,19,23,29,11,11,13,46,57,73,59,50,74,90,57,70,29,44,44,47,72,56,61),(1663,'2015-03-10 21:49:29','2015-08-29 14:46:00',1,30003314,1,3,2,1,1,1,3,0,5,5,3,2,10,14,14,0,2,17,1,0,3,5,7,1),(1664,'2015-03-10 21:49:29','2015-08-29 14:46:00',1,30002184,23,27,16,25,23,53,21,12,38,34,29,25,33,56,51,45,18,16,28,41,70,78,24,30),(1665,'2015-03-10 21:49:29','2015-08-29 14:46:00',1,30004078,219,261,248,274,273,179,136,178,335,359,331,314,410,419,413,313,256,271,341,414,355,389,254,242),(1666,'2015-03-10 21:49:29','2015-08-29 14:46:00',1,30005011,13,21,16,5,4,18,6,6,13,6,15,17,7,13,12,18,12,12,9,15,21,25,13,14),(1667,'2015-03-10 21:49:29','2015-08-29 14:46:00',1,30003992,17,5,14,16,10,8,10,9,3,4,5,5,4,4,3,9,4,0,1,2,5,2,2,2),(1668,'2015-03-10 21:49:29','2015-08-29 14:46:00',1,30003193,16,89,28,37,20,34,26,16,8,12,7,3,5,10,13,15,6,10,11,11,11,11,10,8),(1669,'2015-03-10 21:49:29','2015-08-29 14:46:00',1,30001831,15,19,24,19,28,41,15,35,216,196,38,32,117,335,348,37,104,57,65,114,119,90,80,75),(1670,'2015-03-10 21:49:29','2015-03-10 21:49:29',1,30001610,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(1671,'2015-03-10 21:49:29','2015-08-29 14:46:00',1,30004806,1,3,5,2,5,8,18,5,10,34,14,5,26,15,15,11,6,2,15,17,10,9,6,7),(1672,'2015-03-10 21:49:29','2015-08-29 14:46:00',1,30002041,2,5,18,9,9,13,2,0,0,2,0,0,3,0,2,2,2,1,0,1,1,1,1,1),(1673,'2015-03-10 21:49:29','2015-08-29 14:46:00',1,30003108,13,11,13,4,10,13,15,25,27,24,38,54,100,223,216,55,58,35,43,95,85,54,92,69),(1674,'2015-03-10 21:49:29','2015-08-29 14:46:00',1,30002633,584,777,802,762,692,589,465,553,867,895,872,736,1061,1040,1040,937,755,632,736,826,957,912,776,729),(1675,'2015-03-10 21:49:29','2015-08-29 14:46:00',1,30002076,22,30,33,36,22,30,12,14,60,56,75,76,56,45,45,36,26,30,27,29,30,44,50,42),(1676,'2015-03-10 21:49:29','2015-03-10 21:49:29',1,30000396,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(1677,'2015-03-10 21:49:29','2015-08-29 14:46:00',1,30002520,44,57,39,18,30,38,18,35,45,39,44,42,66,73,65,62,49,36,41,38,46,37,58,64),(1678,'2015-03-10 21:49:29','2015-08-29 14:46:00',1,30002670,78,93,115,89,97,73,35,84,100,85,97,78,95,118,82,125,93,66,72,84,105,113,76,81),(1679,'2015-03-10 21:49:29','2015-08-29 14:46:00',1,30000595,0,3,5,2,1,4,0,2,2,17,5,2,3,3,2,31,0,13,9,3,0,0,0,0),(1680,'2015-03-10 21:49:29','2015-08-29 14:46:00',1,30004971,115,131,134,120,115,110,66,108,130,145,134,107,169,175,175,157,137,81,102,135,158,142,105,106),(1681,'2015-03-10 21:49:29','2015-08-29 14:46:00',1,30004418,4,9,16,21,20,9,10,24,11,8,13,12,23,24,28,20,22,29,49,24,55,19,27,25),(1682,'2015-03-10 21:49:29','2015-08-29 14:46:00',1,30003359,2,1,1,3,2,0,0,4,5,5,2,0,3,5,4,2,1,3,4,2,1,1,35,9),(1683,'2015-03-10 21:49:29','2015-03-10 21:49:29',1,30001504,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(1684,'2015-03-10 21:49:29','2015-08-29 14:46:00',1,30001581,9,15,3,5,9,2,0,2,13,11,14,8,12,28,21,26,20,21,15,28,6,9,22,18),(1685,'2015-03-10 21:49:29','2015-08-29 14:46:00',1,30000518,8,7,8,3,3,4,1,6,2,3,1,4,7,0,0,3,3,1,3,7,0,2,2,1),(1686,'2015-03-10 21:49:29','2015-08-29 14:46:00',1,30002146,3,2,2,2,4,33,5,4,1,0,4,8,0,12,19,5,0,0,0,2,5,2,6,3),(1687,'2015-03-10 21:49:29','2015-08-29 14:46:00',1,30003682,71,201,104,76,78,72,44,69,89,103,192,244,319,134,108,87,62,66,106,128,68,70,52,56),(1688,'2015-03-10 21:49:29','2015-08-29 14:46:00',1,30000516,11,9,14,5,6,4,1,7,2,3,4,6,13,3,3,9,4,1,5,10,0,1,2,2),(1689,'2015-03-10 21:49:29','2015-08-29 14:46:00',1,30000490,0,2,5,1,0,2,1,1,9,14,18,11,13,29,19,22,6,11,77,42,30,18,23,19),(1690,'2015-03-10 21:49:29','2015-08-29 14:46:00',1,30002599,2,2,4,4,1,2,0,1,0,0,3,5,6,51,12,7,39,0,0,2,5,5,5,5),(1691,'2015-03-10 21:49:29','2015-08-29 14:46:00',1,30004042,41,54,26,61,49,19,8,27,48,44,28,30,21,30,20,20,26,14,89,23,23,22,13,13),(1692,'2015-03-10 21:49:29','2015-08-29 14:46:00',1,30002119,23,107,38,32,22,16,13,18,64,75,43,31,38,50,39,37,26,15,60,35,48,52,21,27),(1693,'2015-03-10 21:49:29','2015-08-29 14:46:00',1,30002378,3,11,1,5,4,3,0,1,2,5,8,14,7,4,2,1,3,0,9,11,16,9,6,0),(1694,'2015-03-10 21:49:29','2015-08-29 14:46:00',1,30003196,17,48,22,24,25,21,23,14,10,15,14,8,10,14,21,6,16,7,18,18,8,14,24,22),(1695,'2015-03-10 21:49:29','2015-08-29 14:46:00',1,30000102,11,5,4,7,6,15,7,12,20,21,27,27,14,14,20,12,37,9,7,6,32,25,13,11),(1696,'2015-03-10 21:49:29','2015-08-29 14:46:00',1,30004852,28,7,7,10,13,7,22,34,19,16,19,10,13,19,16,10,9,29,17,13,9,17,23,24),(1697,'2015-03-10 21:49:29','2015-08-29 14:46:00',1,30000502,0,0,1,2,2,2,0,5,6,2,0,1,4,3,1,3,1,1,3,3,3,3,2,1),(1698,'2015-03-10 21:49:29','2015-08-29 14:46:00',1,30001294,3,4,4,5,5,2,0,1,0,1,1,1,1,4,3,0,0,5,2,2,5,4,3,3),(1699,'2015-03-10 21:49:29','2015-08-29 14:46:00',1,30002477,5,10,4,8,3,5,15,4,3,3,1,2,11,66,64,8,4,1,2,2,5,2,4,4),(1700,'2015-03-10 21:49:29','2015-08-29 14:46:00',1,30003677,32,40,46,81,44,95,43,25,243,151,179,245,326,103,143,109,96,61,126,131,82,67,38,50),(1701,'2015-03-10 21:49:29','2015-08-29 14:46:00',1,30000503,0,0,3,0,0,0,2,1,2,0,3,0,0,8,4,2,1,1,1,0,2,4,0,0),(1702,'2015-03-10 21:49:29','2015-08-29 14:46:00',1,30004186,4,1,9,6,10,12,4,8,11,13,9,12,7,24,19,14,9,1,0,2,33,36,10,14),(1703,'2015-03-10 21:49:29','2015-08-29 14:46:00',1,30001530,1,0,0,0,0,4,0,0,2,1,4,3,4,1,1,1,4,3,7,1,2,1,6,7),(1704,'2015-03-10 21:49:29','2015-08-29 14:46:00',1,30004567,13,19,15,9,15,10,8,12,13,10,10,7,7,8,6,11,16,20,34,29,22,25,4,6),(1705,'2015-03-10 21:49:29','2015-08-29 14:46:00',1,30004181,1,2,0,8,9,6,5,0,1,0,1,2,0,1,1,4,1,0,3,4,6,5,1,2),(1706,'2015-03-10 21:49:29','2015-08-29 14:46:00',1,30001834,9,5,8,3,8,7,4,4,16,16,19,17,18,15,20,14,25,10,11,12,8,10,12,9),(1707,'2015-03-10 21:49:29','2015-08-29 14:46:00',1,30000257,1,5,2,3,1,8,0,1,0,3,4,3,0,3,4,1,3,3,1,1,4,4,2,9),(1708,'2015-03-10 21:49:29','2015-08-29 14:46:00',1,30004948,8,41,17,15,13,22,31,25,52,55,18,14,31,43,38,28,35,8,19,54,37,38,38,35),(1709,'2015-03-10 21:49:29','2015-08-29 14:46:00',1,30004217,2,3,1,0,0,2,0,5,4,1,0,1,9,4,2,2,1,0,3,1,1,1,3,4),(1710,'2015-03-10 21:49:29','2015-08-29 14:46:00',1,30002922,54,92,75,41,48,38,30,72,47,56,34,44,47,102,91,64,27,228,130,43,63,53,55,48),(1711,'2015-03-10 21:49:29','2015-08-29 14:46:00',1,30004546,8,8,4,5,2,17,9,2,4,3,6,4,4,6,3,8,5,1,2,5,4,6,7,5),(1712,'2015-03-10 21:49:29','2015-08-29 14:46:00',1,30000531,12,13,3,4,5,0,2,6,4,16,4,1,13,13,22,79,7,116,31,17,3,21,2,2),(1713,'2015-03-10 21:49:29','2015-08-29 14:46:00',1,30000846,43,106,108,129,74,55,62,64,114,161,810,545,73,69,82,119,34,24,50,26,69,83,100,119),(1714,'2015-03-10 21:49:29','2015-08-29 14:46:00',1,30004451,7,7,12,11,13,13,5,22,2,3,8,9,9,21,17,31,15,23,8,46,8,7,23,27),(1715,'2015-03-10 21:49:29','2015-03-10 21:49:29',1,30001620,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(1716,'2015-03-10 21:49:29','2015-08-29 14:46:00',1,30000283,14,6,9,17,17,9,8,18,7,3,3,4,7,3,4,9,31,6,10,9,4,6,10,6),(1717,'2015-03-10 21:49:29','2015-08-29 14:46:00',1,30004028,10,37,8,3,1,1,2,4,11,4,10,32,50,128,11,8,44,4,9,17,9,21,8,17),(1718,'2015-03-10 21:49:29','2015-08-29 14:46:00',1,30005100,22,4,2,16,16,7,2,11,7,65,8,4,13,7,6,7,24,9,8,10,8,6,8,5),(1719,'2015-03-10 21:49:29','2015-08-29 14:46:00',1,30003732,28,27,33,44,21,30,19,17,11,15,27,30,44,31,23,25,23,27,24,22,26,30,19,28),(1720,'2015-03-10 21:49:29','2015-08-29 14:46:00',1,30001229,15,18,9,20,16,21,12,15,27,27,21,25,27,46,58,55,22,34,44,65,29,31,8,6),(1721,'2015-03-10 21:49:29','2015-08-29 14:46:00',1,30002032,63,332,163,169,139,44,31,22,21,28,46,20,40,35,14,40,10,12,9,14,7,12,20,15),(1722,'2015-03-10 21:49:29','2015-08-29 14:46:00',1,30000903,45,67,45,44,56,24,32,21,36,35,25,30,79,101,69,41,32,70,95,73,31,58,48,55),(1723,'2015-03-10 21:49:29','2015-08-29 14:46:00',1,30004208,22,20,32,27,27,37,25,46,26,29,18,20,16,15,20,6,20,1,16,48,35,36,57,72),(1724,'2015-03-10 21:49:29','2015-08-29 14:46:00',1,30001214,12,15,32,21,10,23,21,45,123,109,65,53,89,99,123,121,41,83,91,192,63,59,39,40),(1725,'2015-03-10 21:49:29','2015-08-29 14:46:00',1,30001334,7,2,6,2,2,0,1,0,5,3,14,16,1,0,4,7,4,1,3,3,8,5,6,1),(1726,'2015-03-10 21:49:29','2015-08-29 14:46:00',1,30002136,7,0,0,1,3,3,3,4,43,49,16,7,7,10,7,8,5,6,3,4,19,14,24,22),(1727,'2015-03-10 21:49:29','2015-08-29 14:46:00',1,30003136,16,8,11,14,24,12,4,9,8,18,18,23,26,11,8,13,5,10,13,13,24,27,19,20),(1728,'2015-03-10 21:49:29','2015-08-29 14:46:00',1,30000612,4,5,11,12,5,10,3,5,9,10,107,70,13,13,9,16,20,10,16,19,19,17,11,13),(1729,'2015-03-10 21:49:29','2015-08-29 14:46:00',1,30004959,1,3,6,9,6,2,3,8,4,2,1,1,2,1,0,0,1,1,6,8,1,1,1,0),(1730,'2015-03-10 21:49:29','2015-03-10 21:49:29',1,30001462,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(1731,'2015-03-10 21:49:29','2015-08-29 14:46:00',1,30001217,12,10,22,8,7,13,14,28,16,19,13,15,58,22,51,39,18,9,20,134,15,16,11,14),(1732,'2015-03-10 21:49:29','2015-08-29 14:46:00',1,30004725,16,6,9,6,11,14,11,21,12,13,10,9,13,20,18,33,13,17,8,19,26,25,11,9),(1733,'2015-03-10 21:49:29','2015-08-29 14:46:00',1,30002931,37,81,45,53,50,30,46,44,43,62,36,32,58,80,64,48,24,29,37,46,42,32,48,32),(1734,'2015-03-10 21:49:29','2015-08-29 14:46:00',1,30001527,4,0,0,3,1,2,0,1,13,9,12,9,9,4,2,2,7,5,18,4,6,5,7,14),(1735,'2015-03-10 21:49:29','2015-08-29 14:46:00',1,30000524,1,2,0,0,3,3,4,0,0,0,0,0,0,1,2,0,0,0,1,1,1,2,1,1),(1736,'2015-03-10 21:49:29','2015-08-29 14:46:00',1,30000634,0,3,8,7,3,0,4,0,3,3,22,20,4,36,35,2,9,0,4,3,0,2,3,2),(1737,'2015-03-10 21:49:29','2015-08-29 14:46:00',1,30003242,7,5,17,7,19,8,9,6,4,1,4,3,2,4,12,10,4,4,3,8,18,18,10,3),(1738,'2015-03-10 21:49:29','2015-08-29 14:46:00',1,30001909,2,3,15,9,12,6,3,4,3,4,3,1,5,7,11,8,3,2,4,3,2,0,2,4),(1739,'2015-03-10 21:49:29','2015-08-29 14:46:00',1,30002605,4,3,4,5,7,6,14,7,0,2,6,6,2,7,3,11,5,2,3,1,5,10,10,13),(1740,'2015-03-10 21:49:29','2015-08-29 14:46:00',1,30002349,14,3,15,10,13,19,9,10,5,10,28,10,16,8,7,3,0,4,26,27,9,14,5,2),(1741,'2015-03-10 21:49:29','2015-08-29 14:46:00',1,30002163,19,12,12,5,5,17,1,7,2,4,3,3,4,2,2,1,1,1,5,11,2,4,2,4),(1742,'2015-03-10 21:49:29','2015-08-29 14:46:00',1,30004499,18,28,12,8,16,15,12,12,4,4,15,12,14,29,28,32,19,7,16,20,23,15,11,14),(1743,'2015-03-10 21:49:29','2015-08-29 14:46:00',1,30003694,63,134,51,40,49,34,26,39,12,18,8,14,20,16,12,17,19,12,24,7,8,9,31,13),(1744,'2015-03-10 21:49:29','2015-08-29 14:46:00',1,30002124,18,49,23,19,13,20,0,6,4,3,4,5,2,4,5,4,7,7,7,5,7,7,2,8),(1745,'2015-03-10 21:49:29','2015-08-29 14:46:00',1,30003476,16,5,15,24,23,16,10,10,32,23,16,15,37,37,31,17,18,29,29,26,7,22,20,18),(1746,'2015-03-10 21:49:29','2015-08-29 14:46:00',1,30003438,6,38,7,8,9,6,4,10,5,4,19,17,9,3,5,4,10,3,6,6,10,13,7,9),(1747,'2015-03-10 21:49:29','2015-08-29 14:46:00',1,30003441,93,100,108,95,99,73,61,87,127,128,110,124,101,148,153,191,92,115,100,110,81,75,107,96),(1748,'2015-03-10 21:49:29','2015-08-29 14:46:00',1,30001933,2,10,2,4,8,3,3,2,8,6,6,9,7,8,9,2,5,2,3,1,3,2,3,6),(1749,'2015-03-10 21:49:29','2015-08-29 14:46:00',1,30002281,67,127,89,112,115,76,45,52,79,78,66,64,70,100,83,111,84,53,86,80,95,112,75,73),(1750,'2015-03-10 21:49:29','2015-08-29 14:46:00',1,30005291,53,22,24,25,31,16,9,14,37,43,31,38,38,33,18,43,26,18,21,22,26,26,28,36),(1751,'2015-03-10 21:49:29','2015-08-29 14:46:00',1,30002535,17,19,14,17,14,7,8,14,13,11,13,14,11,22,16,26,14,5,3,1,3,1,18,25),(1752,'2015-03-10 21:49:29','2015-08-29 14:46:00',1,30002196,17,25,14,20,19,33,4,14,34,27,14,17,23,28,31,22,32,22,10,8,16,14,21,27),(1753,'2015-03-10 21:49:29','2015-08-29 14:46:00',1,30002269,50,73,65,86,83,49,55,47,69,86,129,103,134,92,87,92,108,84,83,84,96,71,51,52),(1754,'2015-03-10 21:49:29','2015-08-29 14:46:00',1,30002536,4,0,11,7,7,4,0,3,25,21,7,4,20,18,8,6,6,2,5,2,1,1,2,1),(1755,'2015-03-10 21:49:29','2015-08-29 14:46:00',1,30002094,26,17,18,18,27,16,20,15,22,18,30,32,19,29,25,35,15,22,28,15,14,33,24,25),(1756,'2015-03-10 21:49:29','2015-08-29 14:46:00',1,30002277,79,41,34,58,54,44,48,51,90,97,64,50,77,109,104,104,62,37,57,80,95,98,66,56),(1757,'2015-03-10 21:49:29','2015-08-29 14:46:00',1,30001984,51,72,69,82,97,53,49,61,71,50,50,69,44,58,66,34,51,230,160,90,47,62,62,57),(1758,'2015-03-10 21:49:29','2015-08-29 14:46:00',1,30004020,16,0,8,4,8,11,5,3,0,2,3,4,2,6,12,6,9,2,10,0,1,1,0,0),(1759,'2015-03-10 21:49:29','2015-08-29 14:46:00',1,30003911,36,58,49,44,32,25,23,13,98,93,80,74,63,81,72,58,47,26,38,66,58,55,45,48),(1760,'2015-03-10 21:49:29','2015-08-29 14:46:00',1,30002552,38,48,25,42,25,27,29,30,45,38,39,35,30,48,52,47,57,13,18,26,36,27,29,27),(1761,'2015-03-10 21:49:29','2015-08-29 14:46:00',1,30004256,5,6,7,9,8,5,10,11,13,14,10,12,12,17,13,17,16,6,6,16,11,14,18,15),(1762,'2015-03-10 21:49:29','2015-08-29 14:46:00',1,30002518,41,69,58,43,43,58,27,27,50,64,49,66,79,83,78,36,59,53,65,55,59,53,70,77),(1763,'2015-03-10 21:49:29','2015-08-29 14:46:00',1,30000486,0,1,3,0,0,3,0,0,1,4,0,0,2,3,2,4,4,3,16,10,2,5,4,6),(1764,'2015-03-10 21:49:29','2015-08-29 14:46:00',1,30003355,23,7,6,12,15,11,3,11,7,22,6,0,28,18,9,10,4,18,16,19,4,6,132,90),(1765,'2015-03-10 21:49:29','2015-08-29 14:46:00',1,30005104,1,16,7,2,2,0,0,0,0,0,1,0,0,7,17,4,4,3,0,2,10,1,0,1),(1766,'2015-03-10 21:49:29','2015-08-29 14:46:00',1,30003892,26,28,42,37,39,34,36,15,18,18,37,38,33,12,16,22,24,32,13,19,21,12,13,12),(1767,'2015-03-10 21:49:29','2015-08-29 14:46:00',1,30000783,24,131,34,36,18,46,16,22,16,22,11,18,46,37,54,36,43,9,34,27,31,35,23,44),(1768,'2015-03-10 21:49:29','2015-08-29 14:46:00',1,30004297,29,46,25,28,26,35,22,25,56,215,56,48,63,153,145,108,70,66,232,120,64,62,51,58),(1769,'2015-03-10 21:49:29','2015-08-29 14:46:00',1,30002420,30,38,34,27,29,23,10,17,35,25,40,48,58,47,43,39,51,63,90,54,37,43,45,45),(1770,'2015-03-10 21:49:29','2015-08-29 14:46:00',1,30003401,15,1,15,4,1,15,5,12,16,14,9,7,17,21,32,18,5,9,13,13,10,10,3,5),(1771,'2015-03-10 21:49:29','2015-08-29 14:46:00',1,30002693,126,89,98,106,90,95,75,97,138,110,129,123,135,175,158,118,99,110,167,142,163,146,132,121),(1772,'2015-03-10 21:49:29','2015-08-29 14:46:00',1,30003605,4,3,11,10,5,5,7,0,6,3,7,2,7,6,8,6,4,2,2,1,21,20,7,13),(1773,'2015-03-10 21:49:29','2015-08-29 14:46:00',1,30002660,206,264,265,259,224,236,173,180,305,333,323,299,428,395,375,374,312,233,313,323,371,301,313,305),(1774,'2015-03-10 21:49:29','2015-08-29 14:46:00',1,30002099,139,160,114,128,128,110,92,128,359,310,143,118,224,249,243,202,231,279,201,253,227,137,166,148),(1775,'2015-03-10 21:49:29','2015-08-29 14:46:00',1,30002563,7,7,8,12,9,12,4,8,9,9,8,7,9,9,16,7,11,3,1,8,9,5,8,6),(1776,'2015-03-10 21:49:29','2015-03-10 21:49:29',1,30000373,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(1777,'2015-03-10 21:49:29','2015-08-29 14:46:00',1,30005108,17,40,35,17,33,8,15,5,10,6,2,2,3,7,15,1,1,4,8,22,4,1,1,1),(1778,'2015-03-10 21:49:29','2015-08-29 14:46:00',1,30045319,104,185,102,125,135,93,102,77,226,218,74,67,191,132,89,81,101,70,229,104,60,111,109,92),(1779,'2015-03-10 21:49:29','2015-08-29 14:46:00',1,30002997,18,27,15,14,9,18,15,26,13,16,18,27,15,39,36,17,11,21,31,17,37,30,25,20),(1780,'2015-03-10 21:49:29','2015-08-29 14:46:00',1,30004586,27,27,25,37,41,22,10,26,54,74,29,30,52,26,14,36,24,20,10,38,33,29,14,12),(1781,'2015-03-10 21:49:29','2015-08-29 14:46:00',1,30000249,25,43,49,28,32,56,34,51,18,47,62,27,65,36,27,30,34,31,48,21,115,48,71,45),(1782,'2015-03-10 21:49:29','2015-08-29 14:46:00',1,30002555,23,46,38,37,23,21,8,36,39,51,31,31,54,50,71,44,20,29,52,34,34,26,43,42),(1783,'2015-03-10 21:49:29','2015-08-29 14:46:00',1,30000577,4,11,5,2,2,11,8,9,2,1,0,2,0,0,1,0,0,36,50,0,0,0,1,1),(1784,'2015-03-10 21:49:29','2015-08-29 14:46:00',1,30003393,70,84,98,83,73,80,29,49,86,85,66,65,103,96,113,105,106,60,83,84,131,132,94,83),(1785,'2015-03-10 21:49:29','2015-08-29 14:46:00',1,30004946,6,8,12,10,14,3,3,5,0,1,2,3,3,2,1,2,1,1,0,1,1,1,1,0),(1786,'2015-03-10 21:49:29','2015-08-29 14:46:00',1,30000655,37,28,28,80,31,31,14,14,61,54,52,23,11,50,40,50,21,18,26,31,66,71,31,14),(1787,'2015-03-10 21:49:29','2015-08-29 14:46:00',1,30002740,21,29,51,45,48,27,28,33,46,59,59,37,50,40,36,64,39,39,53,39,40,37,45,42),(1788,'2015-03-10 21:49:29','2015-08-29 14:46:00',1,30001307,9,24,11,14,17,6,6,5,20,15,14,18,17,60,26,6,12,6,15,32,12,13,10,4),(1789,'2015-03-10 21:49:29','2015-08-29 14:46:00',1,30004204,7,6,6,3,2,3,1,1,5,5,2,2,1,3,3,3,2,0,0,6,2,4,1,2),(1790,'2015-03-10 21:49:29','2015-08-29 14:46:00',1,30000814,1,8,10,8,13,0,4,19,38,23,11,15,5,2,0,7,5,1,11,10,0,2,8,6),(1791,'2015-03-10 21:49:29','2015-08-29 14:46:00',1,30000083,29,36,26,37,39,30,31,31,43,66,36,51,49,60,49,34,27,39,29,43,33,47,23,33),(1792,'2015-03-10 21:49:29','2015-08-29 14:46:00',1,30001313,1,1,0,5,1,2,0,1,1,0,5,5,2,18,4,1,2,2,3,5,1,0,0,2),(1793,'2015-03-10 21:49:29','2015-08-29 14:46:00',1,30003494,132,83,84,62,72,85,64,78,128,123,131,114,131,128,121,129,113,78,99,103,117,140,153,147),(1794,'2015-03-10 21:49:29','2015-08-29 14:46:00',1,30000740,3,11,19,7,9,4,10,17,2,3,6,3,8,7,6,10,6,2,0,4,4,1,7,16),(1795,'2015-03-10 21:49:29','2015-08-29 14:46:00',1,30005317,38,63,49,65,57,28,45,21,60,62,54,57,74,88,77,54,53,70,63,58,68,57,57,58),(1796,'2015-03-10 21:49:29','2015-08-29 14:46:00',1,30001378,256,255,330,265,233,224,156,235,354,360,328,285,344,360,332,389,253,176,232,327,345,360,291,250),(1797,'2015-03-10 21:49:29','2015-08-29 14:46:00',1,30001970,28,12,26,11,10,9,23,14,4,1,2,4,2,4,9,16,3,7,5,8,16,7,3,4),(1798,'2015-03-10 21:49:29','2015-08-29 14:46:00',1,30001434,17,17,23,12,10,13,5,9,13,18,24,20,12,17,19,9,17,19,22,21,21,17,24,23),(1799,'2015-03-10 21:49:29','2015-08-29 14:46:00',1,30003044,18,40,42,21,16,23,19,23,49,47,113,99,44,63,51,61,59,58,38,40,33,32,25,33),(1800,'2015-03-10 21:49:29','2015-08-29 14:46:00',1,30003462,28,27,33,38,38,37,22,21,50,60,32,29,52,60,57,49,46,29,34,30,29,25,34,38),(1801,'2015-03-10 21:49:29','2015-08-29 14:46:00',1,30002398,8,24,21,16,12,11,20,8,24,25,25,21,41,34,32,30,38,40,64,42,35,53,38,38),(1802,'2015-03-10 21:49:29','2015-08-29 14:46:00',1,30005315,250,308,289,274,253,229,242,207,380,405,377,320,484,457,431,406,301,294,299,369,381,434,320,324),(1803,'2015-03-10 21:49:29','2015-08-29 14:46:00',1,30003412,157,151,173,118,129,145,131,111,246,248,197,181,282,309,290,316,190,155,169,214,245,241,205,169),(1804,'2015-03-10 21:49:29','2015-08-29 14:46:00',1,30005313,39,31,41,33,35,21,35,20,42,43,41,34,54,47,53,58,32,32,38,37,62,82,46,40),(1805,'2015-03-10 21:49:29','2015-08-29 14:46:00',1,30004149,6,9,17,15,18,7,6,15,10,16,13,16,11,16,11,12,10,6,13,14,8,16,19,11),(1806,'2015-03-10 21:49:29','2015-08-29 14:46:00',1,30001399,409,374,447,418,370,485,281,303,453,492,410,399,478,553,570,529,476,345,410,437,567,562,435,396),(1807,'2015-03-10 21:49:29','2015-08-29 14:46:00',1,30003570,25,65,27,33,29,19,17,30,33,34,41,33,23,38,34,21,17,27,25,36,38,29,21,21),(1808,'2015-03-10 21:49:29','2015-08-29 14:46:00',1,30045336,27,16,13,10,12,20,24,23,8,17,17,29,14,15,16,21,9,7,5,19,21,14,20,19),(1809,'2015-03-10 21:49:29','2015-08-29 14:46:00',1,30023410,55,69,46,40,44,50,45,59,88,76,70,64,88,86,82,75,59,50,60,77,73,72,57,55),(1810,'2015-03-10 21:49:29','2015-08-29 14:46:00',1,30004880,9,2,6,2,2,18,6,7,0,3,14,15,0,11,5,7,6,0,9,1,2,1,0,0),(1811,'2015-03-10 21:49:29','2015-08-29 14:46:00',1,30002548,66,72,88,74,66,57,35,64,88,77,70,69,121,99,99,94,54,47,96,81,84,80,86,69),(1812,'2015-03-10 21:49:29','2015-08-29 14:46:00',1,30001672,320,423,375,380,352,317,300,287,638,605,667,581,535,569,581,550,457,370,468,578,572,550,529,483),(1813,'2015-03-10 21:49:29','2015-08-29 14:46:00',1,30005202,454,702,713,637,622,553,447,427,678,785,812,743,834,984,1000,949,711,475,571,671,852,820,806,805),(1814,'2015-03-10 21:49:29','2015-08-29 14:46:00',1,30003662,11,19,3,17,18,41,11,13,7,9,5,4,6,4,2,7,14,4,10,6,17,8,0,1),(1815,'2015-03-10 21:49:29','2015-08-29 14:46:00',1,30003337,1,0,2,1,3,3,1,1,1,1,8,5,2,0,4,1,6,0,1,1,0,6,2,2),(1816,'2015-03-10 21:49:29','2015-08-29 14:46:00',1,30005082,18,16,12,20,21,5,9,13,14,10,9,10,17,17,14,16,25,12,8,31,16,9,10,10),(1817,'2015-03-10 21:49:29','2015-08-29 14:46:00',1,30045339,34,49,59,34,35,40,67,48,68,104,70,64,203,131,79,84,61,73,122,89,76,65,58,64),(1818,'2015-03-10 21:49:29','2015-08-29 14:46:00',1,30001430,21,39,36,38,31,28,11,27,40,42,42,40,27,32,30,29,63,21,30,33,42,37,42,37),(1819,'2015-03-10 21:49:29','2015-08-29 14:46:00',1,30003424,4,9,8,5,7,6,4,9,25,24,13,8,23,13,13,3,5,8,10,12,4,8,8,8),(1820,'2015-03-10 21:49:29','2015-08-29 14:46:00',1,30002769,36,16,11,15,19,17,12,6,20,19,24,23,25,19,18,18,29,32,16,36,37,27,29,40),(1821,'2015-03-10 21:49:29','2015-08-29 14:46:00',1,30002558,2,14,19,21,10,4,4,14,13,19,9,12,8,4,10,3,4,2,5,11,14,17,15,9),(1822,'2015-03-10 21:49:29','2015-08-29 14:46:00',1,30003045,36,69,115,85,92,58,32,67,112,132,114,103,109,130,121,100,94,64,55,104,88,88,102,113),(1823,'2015-03-10 21:49:29','2015-08-29 14:46:00',1,30003454,8,9,6,6,12,8,5,11,4,8,17,6,12,10,15,12,13,5,4,8,9,13,8,13),(1824,'2015-03-10 21:49:29','2015-08-29 14:46:00',1,30002412,23,30,31,40,43,33,20,27,65,99,50,32,70,35,36,64,32,34,20,40,33,23,10,15),(1825,'2015-03-10 21:49:29','2015-08-29 14:46:00',1,30002475,25,32,47,22,23,40,33,25,49,25,26,16,71,92,106,30,23,13,32,27,57,26,111,186),(1826,'2015-03-10 21:49:29','2015-08-29 14:46:00',1,30000980,0,1,1,6,2,2,0,0,1,0,0,0,0,2,3,2,6,2,1,1,2,1,0,0),(1827,'2015-03-10 21:49:29','2015-08-29 14:46:00',1,30001942,4,1,0,3,2,4,5,2,1,2,5,6,1,4,2,4,7,4,5,2,2,1,3,3),(1828,'2015-03-10 21:49:29','2015-08-29 14:46:00',1,30003612,29,59,46,40,46,51,26,32,26,39,21,18,30,27,33,23,28,16,33,42,20,10,31,35),(1829,'2015-03-10 21:49:29','2015-08-29 14:46:00',1,30002845,2,0,1,2,1,6,3,1,0,0,0,9,0,3,4,2,0,0,0,1,4,4,0,3),(1830,'2015-03-10 21:49:29','2015-08-29 14:46:00',1,30004388,16,8,5,7,9,5,14,13,12,19,5,3,13,10,16,16,24,6,18,12,9,12,21,14),(1831,'2015-03-10 21:49:29','2015-08-29 14:46:00',1,30004835,2,0,0,0,1,0,0,0,1,1,1,0,2,0,0,1,0,0,0,1,3,2,2,0),(1832,'2015-03-10 21:49:29','2015-08-29 14:46:00',1,30001035,12,0,1,7,7,4,3,6,12,7,6,7,3,15,8,2,46,1,3,3,6,9,8,11),(1833,'2015-03-10 21:49:29','2015-08-29 14:46:00',1,30000676,6,35,7,0,6,8,1,5,5,3,3,4,1,9,8,1,9,2,3,3,5,5,0,2),(1834,'2015-03-10 21:49:29','2015-08-29 14:46:00',1,30003413,258,329,306,269,297,259,240,225,425,405,351,342,435,508,495,532,331,294,290,341,425,393,332,332),(1835,'2015-03-10 21:49:29','2015-08-29 14:46:00',1,30002810,17,11,10,7,12,8,7,10,20,25,36,24,23,48,37,29,19,12,20,24,14,12,23,26),(1836,'2015-03-10 21:49:29','2015-08-29 14:46:00',1,30002969,164,190,167,201,180,149,100,153,184,218,185,191,251,233,263,275,205,119,174,247,245,214,242,238),(1837,'2015-03-10 21:49:29','2015-08-29 14:46:00',1,30033410,6,4,8,11,11,4,3,6,4,6,3,7,3,8,7,5,8,12,8,5,7,5,3,7),(1838,'2015-03-10 21:49:29','2015-08-29 14:46:00',1,30001371,143,147,163,183,147,139,101,108,135,157,171,144,147,177,182,177,156,112,113,129,195,191,179,176),(1839,'2015-03-10 21:49:29','2015-08-29 14:46:00',1,30002742,1,4,8,8,12,6,4,4,9,15,10,8,19,5,7,21,8,14,20,15,7,6,7,7),(1840,'2015-03-10 21:49:29','2015-08-29 14:46:00',1,30003472,8,11,8,8,10,11,9,8,9,12,10,16,31,27,24,21,19,10,22,29,23,31,20,21),(1841,'2015-03-10 21:49:29','2015-08-29 14:46:00',1,30003078,9,38,38,47,40,7,20,16,13,24,37,28,12,20,19,23,6,29,24,19,34,24,14,12),(1842,'2015-03-10 21:49:29','2015-08-29 14:46:00',1,30003463,35,70,40,51,46,46,35,27,55,67,46,49,78,73,74,70,58,55,59,66,64,60,70,70),(1843,'2015-03-10 21:49:29','2015-08-29 14:46:00',1,30002640,427,661,633,533,528,558,388,458,692,697,655,524,802,875,806,747,620,505,587,673,745,690,607,640),(1844,'2015-03-10 21:49:29','2015-08-29 14:46:00',1,30003425,24,4,12,8,15,9,5,8,10,11,3,5,26,23,24,9,20,6,7,13,15,17,10,10),(1845,'2015-03-10 21:49:29','2015-08-29 14:46:00',1,30003419,22,17,17,47,56,9,12,18,28,26,28,30,36,18,29,46,36,8,27,25,17,14,26,32),(1846,'2015-03-10 21:49:29','2015-08-29 14:46:00',1,30004259,14,4,6,1,1,2,0,13,4,4,8,10,8,2,3,3,5,14,4,6,2,3,8,7),(1847,'2015-03-10 21:49:29','2015-08-29 14:46:00',1,30000203,11,16,8,16,19,8,6,6,5,7,9,6,16,8,11,6,5,5,7,8,9,15,1,2),(1848,'2015-03-10 21:49:29','2015-08-29 14:46:00',1,30003867,96,137,133,113,101,115,58,112,194,221,184,154,208,191,223,177,150,141,148,155,188,217,177,178),(1849,'2015-03-10 21:49:29','2015-08-29 14:46:00',1,30001233,85,100,58,76,55,96,29,55,283,253,60,61,87,105,105,39,37,37,114,83,68,45,33,38),(1850,'2015-03-10 21:49:29','2015-08-29 14:46:00',1,30003537,4,8,1,0,0,8,1,1,4,7,6,7,5,5,5,4,2,0,5,6,14,10,5,5),(1851,'2015-03-10 21:49:29','2015-08-29 14:46:00',1,30004033,3,0,4,10,6,5,5,0,2,0,5,5,0,2,2,0,2,1,0,3,4,2,0,4),(1852,'2015-03-10 21:49:29','2015-08-29 14:46:00',1,30001029,26,25,13,16,19,20,13,14,25,28,26,31,17,94,45,34,32,1,10,13,46,52,23,29),(1853,'2015-03-10 21:49:29','2015-08-29 14:46:00',1,30001736,39,110,70,67,64,45,25,43,82,71,79,68,157,81,91,86,69,49,74,172,74,65,108,61),(1854,'2015-03-10 21:49:29','2015-08-29 14:46:00',1,30004305,2,0,1,2,1,0,3,1,13,7,16,17,9,2,4,0,3,4,3,3,16,8,2,2),(1855,'2015-03-10 21:49:29','2015-08-29 14:46:00',1,30004603,17,23,24,13,17,24,8,20,13,11,7,5,5,10,10,20,6,25,47,40,18,12,13,19),(1856,'2015-03-10 21:49:29','2015-08-29 14:46:00',1,30002964,234,326,276,282,253,236,121,200,305,315,312,290,343,387,394,425,286,223,291,350,395,355,317,283),(1857,'2015-03-10 21:49:29','2015-08-29 14:46:00',1,30003842,13,22,9,4,11,9,12,7,7,4,14,12,9,15,21,20,13,4,12,17,9,14,15,14),(1858,'2015-03-10 21:49:29','2015-08-29 14:46:00',1,30000028,4,23,15,15,24,27,9,10,16,13,26,26,24,30,27,23,20,19,21,12,31,31,8,9),(1859,'2015-03-10 21:49:29','2015-08-29 14:46:00',1,30000091,1,2,1,5,4,7,7,0,14,11,8,8,5,1,6,5,4,6,2,6,6,3,4,8),(1860,'2015-03-10 21:49:29','2015-08-29 14:46:00',1,30000137,29,30,12,11,9,19,20,20,21,18,38,38,26,21,18,29,21,19,16,23,26,30,28,32),(1861,'2015-03-10 21:49:29','2015-08-29 14:46:00',1,30002730,8,31,21,11,13,7,15,10,22,23,12,21,27,12,10,17,24,14,7,25,15,15,31,21),(1862,'2015-03-10 21:49:29','2015-08-29 14:46:00',1,30003822,12,8,11,14,6,5,6,4,0,1,2,3,3,5,3,4,2,2,4,1,10,10,2,1),(1863,'2015-03-10 21:49:29','2015-08-29 14:46:00',1,30004986,7,2,13,11,23,3,9,4,10,12,12,13,5,6,6,4,13,9,10,4,5,11,9,7),(1864,'2015-03-10 21:49:29','2015-08-29 14:46:00',1,30002260,27,32,34,45,30,25,37,17,55,54,73,60,70,57,58,50,46,30,37,67,36,47,30,36),(1865,'2015-03-10 21:49:29','2015-08-29 14:46:00',1,30002673,9,15,16,7,11,9,7,5,13,16,8,8,14,14,3,7,8,2,3,7,8,18,11,22),(1866,'2015-03-10 21:49:29','2015-08-29 14:46:00',1,30004287,13,15,19,18,13,25,8,22,56,243,136,59,77,251,177,98,69,101,231,139,47,36,48,31),(1867,'2015-03-10 21:49:29','2015-08-29 14:46:00',1,30002095,54,65,85,71,73,48,53,55,138,102,122,117,105,186,145,128,101,128,83,112,189,195,125,108),(1868,'2015-03-10 21:49:29','2015-08-29 14:46:00',1,30003517,33,50,39,29,27,26,29,37,35,37,38,33,35,26,28,37,18,12,30,49,38,27,28,16),(1869,'2015-03-10 21:49:29','2015-08-29 14:46:00',1,30003033,260,453,431,385,389,344,271,344,571,578,524,445,721,712,635,588,561,435,470,563,628,588,562,532),(1870,'2015-03-10 21:49:29','2015-08-29 14:46:00',1,30001535,7,18,3,8,13,7,10,7,12,13,18,12,18,8,10,20,34,5,9,32,19,17,20,18),(1871,'2015-03-10 21:49:29','2015-08-29 14:46:00',1,30004182,2,1,1,7,7,8,1,1,6,1,1,1,0,1,0,1,0,0,0,4,2,1,4,3),(1872,'2015-03-10 21:49:29','2015-08-29 14:46:00',1,30001571,16,6,2,19,20,9,2,13,17,88,24,17,20,10,7,18,24,11,15,13,19,16,9,5),(1873,'2015-03-10 21:49:29','2015-08-29 14:46:00',1,30003365,1,0,0,2,2,2,3,5,0,0,3,3,2,0,1,1,2,1,0,3,0,0,0,0),(1874,'2015-03-10 21:49:29','2015-08-29 14:46:00',1,30000437,0,2,0,0,0,1,1,0,1,1,1,3,2,0,1,4,0,0,1,0,0,0,1,2),(1875,'2015-03-10 21:49:29','2015-08-29 14:46:00',1,30003825,36,121,57,38,40,14,21,12,26,27,27,33,32,27,20,30,44,21,27,64,43,37,48,37),(1876,'2015-03-10 21:49:29','2015-08-29 14:46:00',1,30003466,13,15,11,11,11,16,6,18,16,12,16,12,18,19,12,14,19,8,6,12,22,12,9,21),(1877,'2015-03-10 21:49:29','2015-08-29 14:46:00',1,30003381,8,12,19,11,11,10,11,7,16,29,21,10,25,15,18,17,14,28,19,14,25,28,30,21),(1878,'2015-03-10 21:49:29','2015-08-29 14:46:00',1,30000796,1,2,1,3,6,1,5,1,0,0,2,2,3,1,1,4,5,1,0,2,4,1,1,1),(1879,'2015-03-10 21:49:29','2015-08-29 14:46:00',1,30002060,176,221,152,121,112,102,118,104,308,230,121,112,184,201,211,173,244,163,148,200,183,147,150,132),(1880,'2015-03-10 21:49:29','2015-08-29 14:46:00',1,30003839,68,63,141,94,106,44,48,61,66,66,50,55,77,87,88,62,43,39,41,58,56,45,71,58),(1881,'2015-03-10 21:49:29','2015-08-29 14:46:00',1,30003408,56,68,81,52,56,77,35,47,63,63,50,44,91,129,116,115,60,55,75,61,80,79,66,76),(1882,'2015-03-10 21:49:29','2015-08-29 14:46:00',1,30003385,74,72,79,88,77,85,38,62,97,89,77,70,97,78,99,112,98,52,83,73,142,136,94,84),(1883,'2015-03-10 21:49:29','2015-08-29 14:46:00',1,30001023,9,13,0,3,2,3,1,6,3,5,6,16,5,9,11,6,3,0,5,7,0,3,8,6),(1884,'2015-03-10 21:49:29','2015-08-29 14:46:00',1,30004314,7,24,2,13,18,3,9,16,7,15,13,11,4,23,14,6,5,2,4,3,2,4,9,3),(1885,'2015-03-10 21:49:29','2015-08-29 14:46:00',1,30001985,40,147,51,63,65,41,51,60,50,50,31,41,33,76,80,26,35,192,186,108,39,53,54,48),(1886,'2015-03-10 21:49:29','2015-08-29 14:46:00',1,30001181,28,13,20,14,15,18,20,27,79,93,19,30,84,28,29,26,41,22,25,19,38,41,19,27),(1887,'2015-03-10 21:49:29','2015-08-29 14:46:00',1,30002369,9,35,23,50,29,35,47,43,9,8,11,10,33,51,44,36,36,17,40,10,29,23,7,10),(1888,'2015-03-10 21:49:29','2015-08-29 14:46:00',1,30001252,20,15,84,12,11,21,19,53,96,123,102,76,111,151,120,143,176,78,128,84,116,99,126,93),(1889,'2015-03-10 21:49:29','2015-08-29 14:46:00',1,30005281,16,18,29,23,22,20,5,24,24,25,12,8,18,10,11,7,4,13,16,7,40,22,14,12),(1890,'2015-03-10 21:49:29','2015-08-29 14:46:00',1,30003392,77,88,84,106,116,110,56,95,150,171,141,138,160,159,162,201,154,101,122,126,170,137,119,111),(1891,'2015-03-10 21:49:29','2015-08-29 14:46:00',1,30002543,864,1090,988,992,922,902,629,807,1372,1436,1276,1188,1417,1661,1609,1502,1247,972,1041,1182,1471,1339,1104,1092),(1892,'2015-03-10 21:49:29','2015-08-29 14:46:00',1,30002085,11,0,10,3,7,15,7,8,27,22,30,30,23,24,31,36,41,19,11,18,15,13,24,20),(1893,'2015-03-10 21:49:29','2015-08-29 14:46:00',1,30003281,10,42,28,28,24,13,11,14,65,27,17,31,55,33,29,30,17,21,19,30,32,36,28,20),(1894,'2015-03-10 21:49:29','2015-08-29 14:46:00',1,30001769,2,2,4,11,8,1,8,2,2,12,3,2,2,5,9,8,2,3,1,5,5,11,3,4),(1895,'2015-03-10 21:49:29','2015-08-29 14:46:00',1,30002962,60,107,92,90,77,51,54,59,96,70,55,44,52,60,54,59,24,48,28,52,54,37,45,47),(1896,'2015-03-10 21:49:29','2015-08-29 14:46:00',1,30000559,4,2,2,0,1,2,1,4,1,15,5,1,11,3,2,30,1,17,9,3,4,7,7,6),(1897,'2015-03-10 21:49:29','2015-08-29 14:46:00',1,30002598,0,10,10,6,0,16,0,6,12,16,12,15,4,29,8,8,15,3,0,4,11,10,15,18),(1898,'2015-03-10 21:49:29','2015-08-29 14:46:00',1,30000666,17,13,19,8,9,73,0,9,23,22,27,27,22,16,7,5,13,4,8,5,5,10,2,4),(1899,'2015-03-10 21:49:29','2015-08-29 14:46:00',1,30005103,12,20,10,20,23,7,2,10,12,67,8,4,11,22,29,10,22,14,5,9,9,7,4,5),(1900,'2015-03-10 21:49:29','2015-08-29 14:46:00',1,30000856,6,12,9,4,3,16,6,7,11,6,3,5,4,11,12,2,2,1,0,1,7,5,2,7),(1901,'2015-03-10 21:49:29','2015-08-29 14:46:00',1,30003192,7,51,18,30,16,15,19,7,6,8,3,2,11,15,17,7,2,8,13,10,7,8,6,5),(1902,'2015-03-10 21:49:29','2015-08-29 14:46:00',1,30004653,0,2,13,3,1,5,4,6,4,3,2,2,3,4,4,1,5,9,22,16,11,10,10,8),(1903,'2015-03-10 21:49:29','2015-08-29 14:46:01',1,30004414,1,0,1,1,1,1,1,1,2,1,1,1,1,0,0,1,0,2,1,0,0,0,6,6),(1904,'2015-03-10 21:49:29','2015-08-29 14:46:01',1,30004327,8,3,1,5,24,6,3,3,14,12,4,6,16,41,24,1,5,1,2,9,10,7,1,2),(1905,'2015-03-10 21:49:29','2015-08-29 14:46:01',1,30004784,5,0,6,6,8,2,4,6,6,10,9,7,24,21,26,29,33,12,1,8,8,13,11,6),(1906,'2015-03-10 21:49:29','2015-08-29 14:46:01',1,30005184,0,7,0,0,1,0,0,1,0,0,0,0,0,1,0,1,1,0,0,0,1,5,0,1),(1907,'2015-03-10 21:49:29','2015-08-29 14:46:01',1,30000279,4,20,2,7,13,10,12,17,3,2,0,2,0,0,1,2,3,0,1,14,0,3,0,0),(1908,'2015-03-10 21:49:29','2015-08-29 14:46:01',1,30003737,38,20,22,35,38,36,25,22,59,49,50,48,38,66,65,55,53,26,27,52,37,47,54,56),(1909,'2015-03-10 21:49:29','2015-08-29 14:46:01',1,30000578,14,9,24,12,9,8,2,15,26,21,27,33,13,26,25,21,9,16,25,23,22,22,11,11),(1910,'2015-03-10 21:49:29','2015-08-29 14:46:01',1,30000897,21,17,27,30,35,18,7,21,12,10,20,16,35,17,16,13,13,9,19,10,40,40,9,8),(1911,'2015-03-10 21:49:29','2015-08-29 14:46:01',1,30005183,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,2,0,3,3,0,1),(1912,'2015-03-10 21:49:29','2015-03-10 21:49:29',1,30000416,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(1913,'2015-03-10 21:49:29','2015-03-10 21:49:29',1,30001635,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(1914,'2015-03-10 21:49:29','2015-08-29 14:46:01',1,30004929,31,41,32,28,21,4,12,2,3,6,2,3,2,6,5,4,1,2,3,1,10,12,5,2),(1915,'2015-03-10 21:49:29','2015-08-29 14:46:01',1,30000934,0,6,4,1,4,6,12,5,4,4,3,4,9,3,4,3,5,2,2,7,2,8,22,20),(1916,'2015-03-10 21:49:29','2015-08-29 14:46:01',1,30002019,26,124,124,126,59,120,16,22,12,12,5,3,34,15,11,35,10,13,8,21,8,7,19,15),(1917,'2015-03-10 21:49:29','2015-08-29 14:46:01',1,30004032,14,6,6,16,14,8,7,5,17,22,22,22,11,22,22,20,35,3,7,15,15,15,13,14),(1918,'2015-03-10 21:49:29','2015-08-29 14:46:01',1,30000572,30,99,73,161,44,61,35,41,17,19,5,12,31,18,28,9,24,55,105,26,34,35,6,11),(1919,'2015-03-10 21:49:29','2015-08-29 14:46:01',1,30000853,18,113,38,30,36,37,10,36,82,97,209,118,36,63,70,33,25,10,40,37,49,50,27,26),(1920,'2015-03-10 21:49:29','2015-08-29 14:46:01',1,30004757,7,1,11,6,7,9,4,9,29,22,20,15,42,41,36,29,35,21,30,4,55,46,12,7),(1921,'2015-03-10 21:49:29','2015-08-29 14:46:01',1,30001064,0,0,0,0,1,1,0,0,0,0,2,2,0,6,4,4,3,1,2,3,0,0,0,0),(1922,'2015-03-10 21:49:29','2015-08-29 14:46:01',1,30001906,4,11,9,24,14,15,11,2,6,1,10,5,5,9,16,10,8,4,12,10,13,10,14,12),(1923,'2015-03-10 21:49:29','2015-08-29 14:46:01',1,30003126,18,9,12,16,22,46,5,4,10,11,4,9,13,6,3,2,5,7,5,5,5,6,13,11),(1924,'2015-03-10 21:49:29','2015-08-29 14:46:01',1,30001801,0,0,0,0,1,0,0,0,0,0,1,0,0,2,0,2,0,0,0,1,0,0,0,1),(1925,'2015-03-10 21:49:29','2015-08-29 14:46:01',1,30001087,3,16,3,11,11,2,4,6,5,8,5,4,25,6,9,12,11,0,11,3,3,11,13,13),(1926,'2015-03-10 21:49:29','2015-08-29 14:46:01',1,30004503,11,11,15,9,12,23,9,7,6,19,35,26,19,27,36,45,23,10,17,12,21,15,10,19),(1927,'2015-03-10 21:49:29','2015-08-29 14:46:01',1,30003751,127,151,99,98,129,95,59,81,200,166,179,135,463,245,119,177,99,73,187,674,129,171,131,121),(1928,'2015-03-10 21:49:29','2015-08-29 14:46:01',1,30004867,8,6,8,6,4,1,9,3,5,1,3,2,3,7,8,4,1,4,8,8,1,4,10,11),(1929,'2015-03-10 21:49:29','2015-08-29 14:46:01',1,30005187,2,9,1,2,2,76,1,1,0,2,6,3,7,4,3,1,2,1,18,0,8,5,1,2),(1930,'2015-03-10 21:49:29','2015-08-29 14:46:01',1,30004652,0,0,4,1,1,1,0,1,0,0,0,5,0,2,2,1,2,0,4,3,6,1,1,1),(1931,'2015-03-10 21:49:29','2015-08-29 14:46:01',1,30000695,21,40,25,43,37,17,17,13,13,2,9,2,8,8,12,23,24,0,25,9,14,12,6,25),(1932,'2015-03-10 21:49:29','2015-08-29 14:46:01',1,30000804,14,25,17,10,18,15,10,16,7,4,1,1,8,5,7,7,18,2,3,2,13,15,2,4),(1933,'2015-03-10 21:49:29','2015-08-29 14:46:01',1,30004013,11,12,6,23,17,3,1,13,13,26,17,19,28,55,97,60,18,9,12,28,21,26,24,30),(1934,'2015-03-10 21:49:29','2015-08-29 14:46:01',1,30000497,3,7,0,4,4,4,11,3,4,3,11,8,4,10,14,11,14,24,7,8,13,11,8,8),(1935,'2015-03-10 21:49:29','2015-08-29 14:46:01',1,30000810,14,33,42,74,70,31,11,50,17,20,23,18,2,8,8,4,9,2,1,5,12,13,19,15),(1936,'2015-03-10 21:49:29','2015-08-29 14:46:01',1,30000754,1,3,3,8,6,3,0,5,0,1,3,1,3,3,3,2,0,0,2,3,3,2,1,0),(1937,'2015-03-10 21:49:29','2015-03-10 21:49:29',1,30000332,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(1938,'2015-03-10 21:49:29','2015-08-29 14:46:01',1,30002826,5,8,4,4,9,12,9,7,20,26,13,10,10,11,11,8,13,0,2,3,57,13,12,11),(1939,'2015-03-10 21:49:29','2015-08-29 14:46:01',1,30001171,24,33,57,34,36,40,17,17,100,110,48,42,79,55,50,45,39,36,81,108,38,30,51,40),(1940,'2015-03-10 21:49:29','2015-08-29 14:46:01',1,30000959,4,4,7,18,14,6,4,4,6,9,7,9,2,5,2,0,3,2,0,0,5,4,0,4),(1941,'2015-03-10 21:49:29','2015-08-29 14:46:01',1,30004507,1,0,1,0,0,0,1,2,2,0,1,2,1,1,1,0,1,1,0,0,3,3,0,0),(1942,'2015-03-10 21:49:29','2015-08-29 14:46:01',1,30000600,7,35,6,46,9,33,5,8,33,26,17,10,33,29,18,48,7,35,29,14,30,41,22,27),(1943,'2015-03-10 21:49:29','2015-08-29 14:46:01',1,30003269,15,145,13,7,8,19,24,35,19,20,8,7,31,29,32,23,7,29,16,25,57,54,13,14),(1944,'2015-03-10 21:49:29','2015-08-29 14:46:01',1,30002381,10,3,3,3,6,14,0,2,0,0,4,7,3,1,1,1,1,0,8,6,10,4,8,12),(1945,'2015-03-10 21:49:29','2015-08-29 14:46:01',1,30001957,6,12,6,8,8,4,6,8,2,2,6,3,1,9,8,5,10,13,8,6,7,9,13,13),(1946,'2015-03-10 21:49:29','2015-08-29 14:46:01',1,30002152,1,1,2,0,0,1,1,2,0,0,8,10,0,7,14,3,0,7,0,0,0,0,4,6),(1947,'2015-03-10 21:49:29','2015-08-29 14:46:01',1,30000981,7,21,16,19,16,28,22,8,40,56,11,8,17,60,32,14,6,4,9,10,31,45,21,27),(1948,'2015-03-10 21:49:29','2015-08-29 14:46:01',1,30004046,44,215,40,35,28,58,24,31,26,21,24,33,77,71,59,42,19,44,11,40,31,38,36,23),(1949,'2015-03-10 21:49:29','2015-08-29 14:46:01',1,30000913,13,6,4,7,14,11,12,7,15,14,8,7,17,22,10,6,11,5,5,6,16,19,5,4),(1950,'2015-03-10 21:49:29','2015-08-29 14:46:01',1,30002320,15,12,44,14,17,28,11,19,9,7,3,4,2,3,1,6,3,31,1,15,1,5,12,5),(1951,'2015-03-10 21:49:29','2015-08-29 14:46:01',1,30001153,40,113,68,60,35,29,18,75,240,82,54,55,166,279,58,150,46,165,249,89,72,168,23,92),(1952,'2015-03-10 21:49:29','2015-08-29 14:46:01',1,30000500,0,1,2,5,4,2,1,3,5,3,2,1,6,7,5,6,3,1,2,2,12,9,2,0),(1953,'2015-03-10 21:49:29','2015-08-29 14:46:01',1,30001888,19,10,4,21,19,27,17,2,46,39,43,43,53,43,34,55,30,10,37,25,61,58,37,40),(1954,'2015-03-10 21:49:29','2015-08-29 14:46:01',1,30000233,21,7,19,14,11,18,14,13,0,0,1,1,2,3,5,8,6,1,0,4,11,12,8,11),(1955,'2015-03-10 21:49:29','2015-08-29 14:46:01',1,30002221,3,4,11,1,8,89,3,4,6,9,6,3,4,7,4,7,1,14,12,10,13,22,5,4),(1956,'2015-03-10 21:49:29','2015-08-29 14:46:01',1,30003505,11,28,25,7,9,12,8,6,7,11,22,14,16,20,23,24,5,13,12,11,23,18,14,17),(1957,'2015-03-10 21:49:29','2015-08-29 14:46:01',1,30004276,4,10,5,7,5,3,3,5,17,22,11,11,8,16,15,14,4,5,2,5,2,4,2,2),(1958,'2015-03-10 21:49:29','2015-08-29 14:46:01',1,30003473,22,15,22,38,36,29,17,18,47,38,33,34,54,66,49,37,32,51,50,60,26,49,35,36),(1959,'2015-03-10 21:49:29','2015-08-29 14:46:01',1,30003002,11,6,16,11,7,18,21,7,1,9,7,11,7,15,7,4,5,9,4,4,8,7,4,2),(1960,'2015-03-10 21:49:29','2015-08-29 14:46:01',1,30003938,2,0,1,0,1,3,1,2,0,1,1,1,12,2,8,30,1,0,3,0,0,0,5,6),(1961,'2015-03-10 21:49:29','2015-08-29 14:46:01',1,30001049,0,0,1,2,4,0,2,1,2,5,1,1,3,0,2,0,3,0,1,0,4,3,1,1),(1962,'2015-03-10 21:49:29','2015-08-29 14:46:01',1,30000044,22,7,11,12,15,9,8,6,21,21,18,23,32,26,15,30,26,4,14,19,7,18,21,14),(1963,'2015-03-10 21:49:29','2015-08-29 14:46:01',1,30002651,43,25,15,22,24,13,16,16,45,46,24,25,34,33,30,14,18,23,35,27,44,40,24,20),(1964,'2015-03-10 21:49:29','2015-08-29 14:46:01',1,30003541,23,11,23,29,15,7,16,7,25,25,16,20,12,15,17,16,16,5,9,8,11,11,8,5),(1965,'2015-03-10 21:49:29','2015-08-29 14:46:01',1,30001256,38,23,31,22,14,15,14,16,14,11,16,14,33,28,41,24,39,59,20,51,74,24,11,19),(1966,'2015-03-10 21:49:29','2015-08-29 14:46:01',1,30002643,171,135,128,142,132,156,122,134,186,162,162,176,174,196,207,161,190,124,200,150,161,149,180,173),(1967,'2015-03-10 21:49:29','2015-08-29 14:46:01',1,30003599,37,65,30,29,38,101,10,38,31,28,45,46,50,47,40,28,37,38,37,46,41,38,25,21),(1968,'2015-03-10 21:49:29','2015-08-29 14:46:01',1,30002321,3,0,6,3,4,3,4,10,3,3,2,5,2,1,2,1,3,4,2,5,0,9,3,38),(1969,'2015-03-10 21:49:29','2015-08-29 14:46:01',1,30002881,5,10,4,6,9,11,9,14,20,26,17,10,10,20,11,9,14,0,4,3,64,13,14,12),(1970,'2015-03-10 21:49:29','2015-08-29 14:46:01',1,30002827,12,4,5,9,4,1,1,3,0,0,2,4,0,1,2,4,3,1,3,2,0,5,7,2),(1971,'2015-03-10 21:49:29','2015-08-29 14:46:01',1,30003718,7,8,11,10,14,9,12,4,10,7,13,15,14,21,25,9,19,12,10,6,13,17,20,24),(1972,'2015-03-10 21:49:29','2015-08-29 14:46:01',1,30003276,46,136,54,43,44,48,62,36,58,65,59,49,68,51,36,46,23,40,100,188,69,51,33,42),(1973,'2015-03-10 21:49:29','2015-08-29 14:46:01',1,30004043,38,55,26,27,36,12,8,25,44,43,24,37,23,30,21,22,27,15,90,19,23,20,14,14),(1974,'2015-03-10 21:49:29','2015-08-29 14:46:01',1,30002423,3,28,26,14,14,16,8,25,24,10,28,19,16,14,16,15,14,9,18,43,21,14,10,10),(1975,'2015-03-10 21:49:29','2015-08-29 14:46:01',1,30004821,18,8,47,10,8,9,3,1,1,2,1,2,1,3,4,0,1,0,2,4,3,3,2,1),(1976,'2015-03-10 21:49:29','2015-08-29 14:46:01',1,30002408,20,23,35,25,26,10,27,7,22,27,32,29,66,27,20,26,11,34,33,14,15,17,8,15),(1977,'2015-03-10 21:49:29','2015-08-29 14:46:01',1,30005030,51,86,52,40,46,57,37,77,64,78,48,57,144,90,93,59,78,68,65,79,68,66,42,54),(1978,'2015-03-10 21:49:29','2015-08-29 14:46:01',1,30000050,0,4,3,0,2,0,0,4,2,1,0,1,0,1,5,1,4,0,0,1,0,0,1,1),(1979,'2015-03-10 21:49:29','2015-08-29 14:46:01',1,30001709,10,10,17,10,8,11,10,8,6,8,11,8,4,31,44,29,33,38,36,21,17,28,9,12),(1980,'2015-03-10 21:49:29','2015-08-29 14:46:01',1,30004263,3,0,4,2,3,4,3,1,4,0,5,2,3,5,8,4,3,3,3,3,1,1,3,6),(1981,'2015-03-10 21:49:29','2015-08-29 14:46:01',1,30002628,1,0,4,3,2,4,3,4,85,50,6,3,3,3,2,8,10,5,3,4,4,7,6,5),(1982,'2015-03-10 21:49:29','2015-08-29 14:46:01',1,30002345,8,10,17,11,9,1,15,1,5,5,15,10,13,8,6,28,25,21,29,13,9,6,5,3),(1983,'2015-03-10 21:49:29','2015-08-29 14:46:01',1,30000226,26,50,33,54,39,51,45,28,7,6,8,5,4,6,2,33,32,10,9,8,10,9,14,10),(1984,'2015-03-10 21:49:29','2015-08-29 14:46:01',1,30001344,9,26,10,13,15,12,5,11,8,10,8,13,15,59,19,9,8,9,15,23,31,26,11,15),(1985,'2015-03-10 21:49:29','2015-03-10 21:49:29',1,30000418,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(1986,'2015-03-10 21:49:29','2015-08-29 14:46:01',1,30000495,3,10,0,4,4,3,6,4,2,1,7,3,5,8,8,7,6,27,16,4,8,6,5,6),(1987,'2015-03-10 21:49:29','2015-08-29 14:46:01',1,30004254,19,23,32,24,18,16,17,35,35,25,30,34,29,14,20,28,26,26,19,21,35,26,24,23),(1988,'2015-03-10 21:49:29','2015-08-29 14:46:01',1,30043410,6,6,4,5,5,4,8,6,6,7,6,15,7,10,16,15,11,13,8,6,10,7,10,7),(1989,'2015-03-10 21:49:29','2015-08-29 14:46:01',1,30003442,26,25,33,41,27,36,18,26,26,21,25,26,21,33,53,59,24,12,25,24,18,19,19,13),(1990,'2015-03-10 21:49:29','2015-08-29 14:46:01',1,30004110,9,5,9,7,3,10,9,11,5,6,7,7,12,10,15,14,9,22,18,26,15,10,13,9),(1991,'2015-03-10 21:49:29','2015-08-29 14:46:01',1,30003691,65,203,71,62,75,49,51,47,28,33,22,31,47,46,44,51,31,47,54,54,37,29,49,38),(1992,'2015-03-10 21:49:29','2015-08-29 14:46:01',1,30003906,4,1,2,3,5,5,2,1,1,3,9,4,2,5,5,3,9,0,0,5,5,8,2,2),(1993,'2015-03-10 21:49:29','2015-08-29 14:46:01',1,30002335,0,0,0,0,3,2,1,0,0,1,7,8,0,0,0,0,1,0,2,0,0,0,0,0),(1994,'2015-03-10 21:49:29','2015-08-29 14:46:01',1,30003234,7,1,4,2,1,0,2,2,0,0,7,6,0,0,0,1,2,0,0,0,0,0,0,0),(1995,'2015-03-10 21:49:29','2015-08-29 14:46:01',1,30002316,0,2,3,0,1,1,0,0,2,1,0,0,1,3,1,3,1,3,1,5,3,2,4,2),(1996,'2015-03-10 21:49:29','2015-08-29 14:46:01',1,30004980,49,59,77,64,80,76,77,36,172,134,50,44,204,169,137,67,85,150,98,118,216,138,86,75),(1997,'2015-03-10 21:49:29','2015-08-29 14:46:01',1,30005101,5,0,0,0,3,3,0,1,1,0,1,1,2,3,1,3,1,0,4,2,3,2,4,3),(1998,'2015-03-10 21:49:29','2015-08-29 14:46:01',1,30002082,50,54,53,41,54,40,44,36,111,93,81,60,79,106,73,83,89,65,76,88,114,97,94,114),(1999,'2015-03-10 21:49:29','2015-08-29 14:46:01',1,30003382,39,21,27,23,26,32,20,33,45,35,30,27,39,32,40,52,39,19,33,24,62,57,42,36),(2000,'2015-03-10 21:49:29','2015-08-29 14:46:01',1,30002677,16,28,40,13,16,20,25,34,34,31,26,25,68,66,73,49,31,16,40,45,38,31,36,38),(2001,'2015-03-10 21:49:29','2015-08-29 14:46:01',1,30004732,9,1,3,3,5,7,0,3,3,12,16,11,18,24,18,10,5,13,5,15,9,6,14,15),(2002,'2015-03-10 21:49:29','2015-08-29 14:46:01',1,30002898,28,80,37,39,39,21,41,42,324,357,567,419,427,575,448,412,279,468,260,340,979,296,184,178),(2003,'2015-03-10 21:49:29','2015-08-29 14:46:01',1,30000227,15,17,14,13,10,12,16,15,8,4,5,5,1,6,1,17,5,14,9,6,4,5,11,6),(2004,'2015-03-10 21:49:29','2015-08-29 14:46:01',1,30000484,5,8,4,7,4,11,18,3,29,29,24,12,6,20,16,26,11,1,4,7,10,10,8,12),(2005,'2015-03-10 21:49:29','2015-08-29 14:46:01',1,30002156,1,0,0,0,2,2,0,0,0,0,8,4,4,3,6,2,0,10,1,53,12,19,0,3),(2006,'2015-03-10 21:49:29','2015-08-29 14:46:01',1,30003118,2,3,1,3,1,3,0,5,1,2,3,6,5,2,1,5,3,3,2,4,1,3,6,7),(2007,'2015-03-10 21:49:29','2015-08-29 14:46:01',1,30000809,9,38,47,34,28,16,7,25,6,3,4,2,0,1,2,4,2,4,1,3,6,7,3,1),(2008,'2015-03-10 21:49:29','2015-03-10 21:49:29',1,30001638,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(2009,'2015-03-10 21:49:29','2015-03-10 21:49:29',1,30001487,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(2010,'2015-03-10 21:49:29','2015-08-29 14:46:01',1,30001544,2,0,0,1,1,0,0,0,118,124,73,23,1,0,0,3,2,1,14,3,1,2,4,6),(2011,'2015-03-10 21:49:29','2015-08-29 14:46:01',1,30002891,12,78,22,15,19,14,13,19,155,64,128,39,298,77,289,76,28,15,28,98,43,156,44,43),(2012,'2015-03-10 21:49:29','2015-08-29 14:46:01',1,30001148,1,29,3,0,0,2,1,1,1,0,2,2,0,0,0,0,2,0,0,2,3,1,1,0),(2013,'2015-03-10 21:49:29','2015-08-29 14:46:01',1,30004303,31,22,19,41,43,30,40,39,111,166,180,68,112,255,163,103,71,104,237,147,85,58,32,47),(2014,'2015-03-10 21:49:29','2015-08-29 14:46:01',1,30023489,35,12,9,9,12,9,4,4,12,11,8,15,5,18,19,20,12,4,8,10,15,10,15,12),(2015,'2015-03-10 21:49:29','2015-08-29 14:46:01',1,30002663,39,37,31,36,39,54,39,41,46,47,45,39,55,52,54,64,64,48,54,53,35,35,46,56),(2016,'2015-03-10 21:49:29','2015-08-29 14:46:01',1,30000023,35,85,53,42,50,22,22,28,56,55,40,55,91,80,96,83,74,46,82,79,68,71,58,46),(2017,'2015-03-10 21:49:29','2015-08-29 14:46:01',1,30004058,2,9,10,16,9,6,0,4,0,1,3,1,5,11,6,8,3,6,4,7,8,8,6,7),(2018,'2015-03-10 21:49:29','2015-08-29 14:46:01',1,30002630,1,4,4,3,1,0,6,4,63,41,3,2,6,4,6,8,9,3,3,3,10,13,9,6),(2019,'2015-03-10 21:49:29','2015-03-10 21:49:29',1,30001637,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(2020,'2015-03-10 21:49:29','2015-08-29 14:46:01',1,30000478,14,7,6,12,11,8,7,10,9,6,7,7,12,25,9,21,15,22,142,16,9,7,7,5),(2021,'2015-03-10 21:49:29','2015-08-29 14:46:01',1,30003826,59,335,61,58,63,39,67,36,122,122,51,45,246,86,92,60,56,97,101,209,172,138,56,64),(2022,'2015-03-10 21:49:29','2015-08-29 14:46:01',1,30002526,529,722,646,696,636,597,426,520,836,829,743,711,963,904,895,1020,762,595,720,833,1022,903,743,697),(2023,'2015-03-10 21:49:29','2015-08-29 14:46:01',1,30003036,71,149,100,104,118,91,69,100,115,140,134,103,155,212,214,165,140,179,175,183,177,157,143,116),(2024,'2015-03-10 21:49:29','2015-08-29 14:46:01',1,30003394,28,37,35,36,29,28,8,25,46,45,33,25,27,38,43,36,19,23,28,40,55,57,46,44),(2025,'2015-03-10 21:49:29','2015-08-29 14:46:01',1,30003420,13,11,22,13,17,4,21,12,25,27,19,13,24,16,11,34,25,5,17,30,6,7,19,31),(2026,'2015-03-10 21:49:29','2015-08-29 14:46:01',1,30002090,63,65,53,63,69,52,42,41,159,139,115,126,114,214,174,126,120,160,115,124,181,163,135,137),(2027,'2015-03-10 21:49:29','2015-08-29 14:46:01',1,30002734,130,203,130,113,104,133,83,123,182,198,217,166,274,263,214,229,149,145,152,197,241,219,167,148),(2028,'2015-03-10 21:49:29','2015-08-29 14:46:01',1,30000168,55,126,105,91,79,97,58,58,124,123,90,68,90,99,83,115,71,72,90,85,103,92,87,82),(2029,'2015-03-10 21:49:29','2015-08-29 14:46:01',1,30002180,26,54,27,38,41,83,34,20,35,35,34,25,49,68,80,57,21,14,57,62,48,48,39,46),(2030,'2015-03-10 21:49:29','2015-08-29 14:46:01',1,30003467,34,61,33,42,35,43,27,23,36,41,33,43,65,68,63,53,61,44,49,56,56,56,64,59),(2031,'2015-03-10 21:49:29','2015-03-10 21:49:29',1,30000398,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(2032,'2015-03-10 21:49:29','2015-08-29 14:46:01',1,30000219,13,11,4,5,3,3,5,4,1,4,4,5,5,1,4,8,8,2,5,4,3,4,5,5),(2033,'2015-03-10 21:49:29','2015-08-29 14:46:01',1,30003710,38,53,66,34,37,28,27,24,164,64,89,53,126,65,70,46,49,115,62,65,48,46,66,51),(2034,'2015-03-10 21:49:29','2015-08-29 14:46:01',1,30001364,259,319,340,259,224,327,223,263,352,433,445,417,429,463,430,414,334,269,279,315,343,326,270,263),(2035,'2015-03-10 21:49:29','2015-08-29 14:46:01',1,30003095,8,8,10,26,17,2,2,5,5,7,12,4,16,14,18,9,3,24,31,19,11,10,2,3),(2036,'2015-03-10 21:49:29','2015-08-29 14:46:01',1,30000199,21,23,18,34,26,24,11,17,42,71,23,23,26,47,54,41,41,12,22,39,45,61,35,31),(2037,'2015-03-10 21:49:29','2015-08-29 14:46:01',1,30000017,21,38,14,14,18,10,15,11,18,23,11,11,72,36,19,18,23,16,55,39,22,27,18,11),(2038,'2015-03-10 21:49:29','2015-08-29 14:46:01',1,30001852,14,19,17,38,15,10,21,15,43,42,44,47,47,66,42,46,46,9,13,23,50,49,49,41),(2039,'2015-03-10 21:49:29','2015-08-29 14:46:01',1,30004161,11,3,4,8,11,3,3,16,1,6,1,3,5,1,5,1,5,1,4,0,5,4,7,4),(2040,'2015-03-10 21:49:29','2015-08-29 14:46:01',1,30004197,2,10,4,4,5,4,2,1,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0),(2041,'2015-03-10 21:49:29','2015-08-29 14:46:01',1,30001775,5,1,2,3,7,6,1,6,9,29,7,4,14,3,1,4,10,6,2,1,3,4,13,10),(2042,'2015-03-10 21:49:29','2015-08-29 14:46:01',1,30000906,1,7,8,7,10,9,5,2,3,2,3,5,2,9,6,4,7,4,5,5,4,5,9,21),(2043,'2015-03-10 21:49:29','2015-08-29 14:46:01',1,30002021,16,59,90,80,56,60,9,17,15,23,7,3,10,12,7,16,10,9,9,7,10,7,11,7),(2044,'2015-03-10 21:49:29','2015-08-29 14:46:01',1,30004718,41,31,18,16,20,129,31,58,54,30,39,20,59,58,168,78,55,27,59,48,71,74,17,35),(2045,'2015-03-10 21:49:29','2015-08-29 14:46:01',1,30003711,22,24,27,23,23,23,13,13,133,34,39,35,48,24,32,24,30,11,17,48,18,19,72,48),(2046,'2015-03-10 21:49:29','2015-03-10 21:49:29',1,30001606,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(2047,'2015-03-10 21:49:29','2015-08-29 14:46:01',1,30000835,3,15,7,4,34,5,3,17,0,3,4,1,1,6,11,4,8,4,0,4,0,0,0,5),(2048,'2015-03-10 21:49:29','2015-08-29 14:46:01',1,30000850,8,1,4,4,2,3,5,2,39,33,208,150,2,3,2,0,1,2,4,2,1,3,3,3),(2049,'2015-03-10 21:49:29','2015-08-29 14:46:01',1,30000675,4,4,12,2,3,13,0,4,5,3,4,3,0,8,2,0,1,1,2,1,6,5,0,4),(2050,'2015-03-10 21:49:29','2015-08-29 14:46:01',1,30002128,11,21,16,9,6,18,0,2,3,1,4,5,1,3,4,5,4,0,0,0,3,4,1,4),(2051,'2015-03-10 21:49:29','2015-08-29 14:46:01',1,30001186,1,1,3,9,17,2,2,8,8,9,3,3,3,4,1,6,6,0,6,16,2,1,5,2),(2052,'2015-03-10 21:49:29','2015-08-29 14:46:01',1,30003213,8,6,6,11,13,1,0,2,3,6,3,3,3,3,0,4,3,0,1,1,2,0,1,0),(2053,'2015-03-10 21:49:29','2015-08-29 14:46:01',1,30001853,16,21,21,35,16,10,17,10,35,33,46,46,37,54,36,33,41,10,19,14,43,49,43,36),(2054,'2015-03-10 21:49:29','2015-08-29 14:46:01',1,30002878,6,3,4,9,13,7,1,7,2,6,5,3,31,6,8,7,4,2,4,2,9,13,20,7),(2055,'2015-03-10 21:49:29','2015-08-29 14:46:01',1,30001041,52,197,149,107,65,38,31,33,97,106,64,44,331,124,113,100,97,43,90,154,60,60,63,75),(2056,'2015-03-10 21:49:29','2015-08-29 14:46:01',1,30003949,22,42,23,28,27,24,18,13,27,24,15,8,25,17,13,24,18,9,7,21,18,19,22,21),(2057,'2015-03-10 21:49:29','2015-08-29 14:46:01',1,30003161,10,14,7,5,12,6,9,3,0,2,5,7,1,1,1,4,1,1,2,0,5,5,3,5),(2058,'2015-03-10 21:49:29','2015-08-29 14:46:01',1,30003703,55,19,26,17,90,20,36,52,65,65,18,9,263,123,96,23,19,47,37,130,38,78,77,100),(2059,'2015-03-10 21:49:29','2015-08-29 14:46:01',1,30003367,4,0,1,2,3,3,5,6,0,0,1,1,2,0,1,0,0,1,0,3,1,2,2,2),(2060,'2015-03-10 21:49:29','2015-08-29 14:46:01',1,30002476,5,16,4,12,5,5,15,2,9,7,0,2,5,69,68,11,3,2,6,6,4,4,1,1),(2061,'2015-03-10 21:49:29','2015-08-29 14:46:01',1,30001183,6,11,19,18,22,9,4,7,58,68,33,28,55,51,29,63,33,27,52,30,37,34,32,34),(2062,'2015-03-10 21:49:29','2015-08-29 14:46:01',1,30001227,69,88,77,85,63,48,44,50,229,199,97,115,178,169,165,123,71,93,280,151,139,124,71,64),(2063,'2015-03-10 21:49:29','2015-08-29 14:46:01',1,30003772,8,22,14,11,2,13,4,12,16,22,10,6,12,11,4,5,9,21,7,9,5,5,8,8),(2064,'2015-03-10 21:49:29','2015-08-29 14:46:01',1,30004892,9,12,22,8,4,11,2,2,21,18,5,11,17,14,21,8,10,50,24,12,16,17,21,18),(2065,'2015-03-10 21:49:29','2015-08-29 14:46:01',1,30004945,1,2,2,3,3,0,2,5,1,0,0,0,0,1,0,1,1,1,0,0,1,0,1,0),(2066,'2015-03-10 21:49:29','2015-08-29 14:46:01',1,30004876,20,19,14,28,22,7,34,21,6,7,9,8,3,3,3,5,4,0,7,1,4,4,14,9),(2067,'2015-03-10 21:49:29','2015-03-10 21:49:29',1,30000338,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(2068,'2015-03-10 21:49:29','2015-08-29 14:46:01',1,30000778,18,21,12,14,13,23,19,21,5,7,17,12,8,7,6,13,17,1,2,1,8,18,8,9),(2069,'2015-03-10 21:49:29','2015-08-29 14:46:01',1,30001002,25,41,29,28,26,7,11,32,48,40,58,50,41,109,87,36,29,34,23,51,65,56,48,25),(2070,'2015-03-10 21:49:29','2015-08-29 14:46:01',1,30005113,6,0,1,4,3,1,4,5,2,2,0,0,0,3,5,0,0,2,0,5,0,0,0,0),(2071,'2015-03-10 21:49:29','2015-08-29 14:46:01',1,30001802,0,4,2,3,3,6,3,4,0,1,2,2,5,3,0,4,1,2,5,5,8,12,11,5),(2072,'2015-03-10 21:49:29','2015-08-29 14:46:01',1,30003155,13,9,8,7,6,11,25,9,0,4,6,6,1,6,3,9,1,3,2,0,2,4,7,6),(2073,'2015-03-10 21:49:29','2015-08-29 14:46:01',1,30002853,11,3,9,8,10,3,4,5,2,7,23,10,4,10,16,4,5,3,4,5,6,9,17,37),(2074,'2015-03-10 21:49:29','2015-08-29 14:46:01',1,30000213,39,14,21,21,16,12,6,22,3,13,17,7,7,6,1,5,4,12,13,0,3,2,5,3),(2075,'2015-03-10 21:49:29','2015-08-29 14:46:01',1,30004696,8,38,8,7,10,9,11,7,12,15,11,36,33,154,118,12,17,17,7,31,35,16,22,32),(2076,'2015-03-10 21:49:29','2015-08-29 14:46:01',1,30001987,29,140,46,40,37,20,25,56,24,19,16,16,26,16,13,8,21,90,55,17,18,30,18,18),(2077,'2015-03-10 21:49:29','2015-08-29 14:46:01',1,30004793,3,3,0,3,5,5,12,6,10,10,9,7,9,8,11,9,15,2,5,7,48,46,8,6),(2078,'2015-03-10 21:49:29','2015-08-29 14:46:01',1,30001848,7,16,30,20,33,5,9,9,50,37,49,37,36,38,57,67,61,13,35,55,52,71,43,42),(2079,'2015-03-10 21:49:29','2015-03-10 21:49:29',1,30001607,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(2080,'2015-03-10 21:49:29','2015-08-29 14:46:01',1,30004962,38,38,57,26,23,44,45,45,45,51,36,33,30,29,65,20,21,13,27,30,25,28,33,41),(2081,'2015-03-10 21:49:29','2015-08-29 14:46:01',1,30002301,29,128,61,61,39,75,25,44,21,29,20,22,74,66,76,44,51,17,42,21,42,41,19,53),(2082,'2015-03-10 21:49:29','2015-08-29 14:46:01',1,30001036,6,3,15,13,15,17,4,9,12,10,15,9,10,17,14,14,20,2,3,3,10,10,16,20),(2083,'2015-03-10 21:49:29','2015-08-29 14:46:01',1,30004721,2,1,3,2,3,79,1,1,2,4,1,1,3,4,10,4,1,4,0,2,0,3,1,3),(2084,'2015-03-10 21:49:29','2015-08-29 14:46:01',1,30004631,8,18,16,13,12,7,1,2,5,6,14,14,8,7,14,5,14,2,11,17,24,17,19,20),(2085,'2015-03-10 21:49:29','2015-08-29 14:46:01',1,30001569,10,15,14,27,62,6,2,8,98,160,54,22,41,40,48,88,39,20,15,27,26,29,21,20),(2086,'2015-03-10 21:49:29','2015-08-29 14:46:01',1,30003184,1,1,2,0,1,2,1,0,3,0,6,4,5,4,1,3,1,2,1,4,2,0,0,2),(2087,'2015-03-10 21:49:29','2015-08-29 14:46:01',1,30004534,2,0,1,3,2,1,0,2,3,2,4,5,2,0,0,1,2,1,1,0,2,2,2,1),(2088,'2015-03-10 21:49:29','2015-08-29 14:46:01',1,30003133,38,17,23,36,47,22,14,14,21,34,35,38,38,29,23,25,20,13,20,28,34,35,40,33),(2089,'2015-03-10 21:49:29','2015-08-29 14:46:01',1,30003636,45,26,22,13,14,37,19,24,13,11,16,16,35,7,14,8,18,15,1,4,20,29,22,23),(2090,'2015-03-10 21:49:29','2015-08-29 14:46:01',1,30000537,2,0,0,1,1,0,0,0,2,1,0,0,5,5,6,8,3,0,0,3,2,2,1,0),(2091,'2015-03-10 21:49:29','2015-08-29 14:46:01',1,30004854,11,4,1,0,1,2,1,0,6,7,10,4,9,9,10,3,7,7,7,4,1,3,7,3),(2092,'2015-03-10 21:49:29','2015-08-29 14:46:01',1,30000690,8,7,0,7,2,4,10,18,12,1,25,31,8,1,8,4,6,1,4,10,8,0,6,4),(2093,'2015-03-10 21:49:29','2015-08-29 14:46:01',1,30004664,4,0,3,1,0,0,0,0,7,5,2,4,214,6,6,2,1,6,1,2,1,1,3,2),(2094,'2015-03-10 21:49:29','2015-08-29 14:46:01',1,30004697,8,2,2,0,1,1,2,3,8,11,1,1,3,4,3,1,3,1,1,15,1,0,4,3),(2095,'2015-03-10 21:49:29','2015-03-10 21:49:29',1,30001501,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(2096,'2015-03-10 21:49:29','2015-08-29 14:46:01',1,30003101,3,4,3,1,2,1,0,2,1,1,2,4,2,4,4,5,5,3,1,3,2,3,3,6),(2097,'2015-03-10 21:49:29','2015-08-29 14:46:01',1,30000460,10,16,38,23,27,27,26,16,11,18,13,7,21,30,15,17,6,6,9,13,3,13,14,8),(2098,'2015-03-10 21:49:29','2015-08-29 14:46:01',1,30002861,5,3,4,10,18,5,4,2,9,18,11,9,7,5,10,7,2,1,2,16,7,10,11,7),(2099,'2015-03-10 21:49:29','2015-08-29 14:46:01',1,30004536,4,0,4,3,0,1,0,2,3,1,1,1,1,0,0,1,3,1,0,0,6,1,1,0),(2100,'2015-03-10 21:49:29','2015-08-29 14:46:01',1,30000310,32,35,30,62,49,28,21,26,23,32,10,12,12,20,7,14,31,9,10,15,18,18,7,17),(2101,'2015-03-10 21:49:29','2015-03-10 21:49:29',1,30001517,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(2102,'2015-03-10 21:49:29','2015-08-29 14:46:01',1,30003713,41,58,64,35,45,36,27,30,99,94,95,69,137,99,96,68,57,133,70,67,72,76,75,71),(2103,'2015-03-10 21:49:29','2015-08-29 14:46:01',1,30004061,3,1,3,1,1,2,0,2,2,2,3,3,1,6,3,2,1,1,3,1,7,8,3,4),(2104,'2015-03-10 21:49:29','2015-08-29 14:46:01',1,30001982,44,60,40,102,71,164,61,58,113,80,62,39,150,105,103,106,68,67,87,79,68,64,87,58),(2105,'2015-03-10 21:49:29','2015-08-29 14:46:01',1,30004598,13,14,8,3,2,10,7,9,6,9,6,2,19,19,22,18,11,27,30,9,9,16,13,16),(2106,'2015-03-10 21:49:29','2015-08-29 14:46:01',1,30000305,7,16,39,15,16,28,12,6,7,11,13,15,41,45,36,63,35,9,13,28,15,21,29,27),(2107,'2015-03-10 21:49:29','2015-08-29 14:46:01',1,30001348,28,41,37,27,32,22,27,50,19,30,29,27,43,81,48,36,36,17,30,34,48,44,28,25),(2108,'2015-03-10 21:49:29','2015-08-29 14:46:01',1,30000545,7,6,19,7,2,1,8,1,25,45,16,14,4,10,11,4,12,8,9,6,4,8,23,11),(2109,'2015-03-10 21:49:29','2015-08-29 14:46:01',1,30000570,18,1,2,3,3,3,6,7,3,6,8,8,4,4,7,3,8,0,3,10,2,5,0,2),(2110,'2015-03-10 21:49:29','2015-08-29 14:46:01',1,30004523,1,0,0,2,1,2,0,1,0,0,2,3,1,1,0,0,1,0,0,0,1,1,1,0),(2111,'2015-03-10 21:49:29','2015-08-29 14:46:01',1,30002020,0,2,5,3,0,0,1,2,0,0,0,0,14,1,0,1,1,1,0,1,1,2,2,2),(2112,'2015-03-10 21:49:29','2015-08-29 14:46:01',1,30001811,27,48,19,39,39,8,12,38,15,27,26,18,6,12,18,10,16,2,2,8,8,11,14,9),(2113,'2015-03-10 21:49:29','2015-08-29 14:46:01',1,30003777,22,20,35,39,30,12,14,19,24,26,32,40,34,41,31,32,42,18,22,33,29,25,62,78),(2114,'2015-03-10 21:49:29','2015-08-29 14:46:01',1,30005072,8,23,19,16,12,15,6,18,13,12,20,6,28,15,17,14,18,17,7,27,15,15,17,16),(2115,'2015-03-10 21:49:29','2015-08-29 14:46:01',1,30002204,4,12,6,15,17,7,6,3,12,9,5,5,13,7,6,5,4,8,10,13,18,16,14,15),(2116,'2015-03-10 21:49:29','2015-08-29 14:46:01',1,30001698,18,21,16,23,21,12,4,7,31,29,38,32,20,23,18,18,28,8,21,56,58,50,52,61),(2117,'2015-03-10 21:49:29','2015-08-29 14:46:01',1,30003544,1,7,4,18,16,6,2,15,1,0,4,9,1,1,2,4,9,0,2,4,7,19,12,7),(2118,'2015-03-10 21:49:29','2015-08-29 14:46:01',1,30002674,6,21,12,12,10,12,7,6,26,23,10,8,17,19,15,7,15,15,11,14,14,9,20,23),(2119,'2015-03-10 21:49:29','2015-08-29 14:46:01',1,30003844,20,25,11,8,11,5,1,15,8,11,12,14,17,33,33,18,18,15,19,23,19,18,58,24),(2120,'2015-03-10 21:49:29','2015-08-29 14:46:01',1,30005273,48,50,25,67,56,37,20,26,59,65,42,29,50,42,39,52,38,82,43,67,46,84,82,54),(2121,'2015-03-10 21:49:29','2015-08-29 14:46:01',1,30004085,78,96,94,112,104,75,60,67,107,147,126,110,128,206,119,81,91,106,115,126,184,185,99,103),(2122,'2015-03-10 21:49:29','2015-08-29 14:46:01',1,30000107,39,38,51,42,40,39,34,36,47,53,36,31,108,69,53,52,60,30,32,45,52,59,38,39),(2123,'2015-03-10 21:49:29','2015-08-29 14:46:01',1,30003076,6,30,21,22,20,28,10,18,26,13,11,13,20,14,11,24,31,23,11,14,33,21,19,23),(2124,'2015-03-10 21:49:29','2015-08-29 14:46:01',1,30003805,60,54,70,98,116,37,31,35,80,53,45,46,46,50,36,38,29,31,51,27,71,89,92,73),(2125,'2015-03-10 21:49:29','2015-08-29 14:46:01',1,30004123,15,19,10,11,5,7,4,10,3,7,6,5,6,13,13,13,8,9,12,10,12,11,12,19),(2126,'2015-03-10 21:49:29','2015-08-29 14:46:01',1,30004119,10,25,9,11,7,16,10,13,13,36,18,4,26,20,23,20,10,15,5,10,25,15,13,12),(2127,'2015-03-10 21:49:29','2015-08-29 14:46:01',1,30005282,14,28,28,20,21,14,10,23,25,23,9,6,19,12,12,7,8,15,14,6,35,11,12,11),(2128,'2015-03-10 21:49:29','2015-08-29 14:46:01',1,30005240,18,39,8,19,22,35,9,12,21,34,21,14,23,23,36,33,26,40,23,35,35,22,34,26),(2129,'2015-03-10 21:49:29','2015-08-29 14:46:01',1,30000839,13,6,13,12,12,26,12,12,31,35,24,32,47,39,31,44,51,18,61,73,43,56,33,25),(2130,'2015-03-10 21:49:29','2015-08-29 14:46:01',1,30002620,11,16,11,16,15,16,13,6,7,12,8,13,4,10,7,11,13,7,9,9,15,20,7,9),(2131,'2015-03-10 21:49:29','2015-08-29 14:46:01',1,30000464,0,2,2,1,4,3,2,5,1,1,0,0,1,3,0,2,3,4,4,8,1,7,5,4),(2132,'2015-03-10 21:49:29','2015-08-29 14:46:01',1,30001862,8,7,5,5,6,6,3,5,52,260,190,46,27,35,37,49,33,13,11,24,55,52,96,58),(2133,'2015-03-10 21:49:29','2015-08-29 14:46:01',1,30000792,8,5,2,7,6,5,3,3,10,10,5,33,5,16,20,4,16,0,12,9,21,11,5,9),(2134,'2015-03-10 21:49:29','2015-08-29 14:46:01',1,30001873,13,9,14,12,16,12,14,6,43,58,66,73,35,61,52,51,109,10,18,41,206,94,107,102),(2135,'2015-03-10 21:49:29','2015-08-29 14:46:01',1,30001198,45,52,71,49,40,87,58,71,607,519,471,393,700,503,592,568,318,514,979,675,650,489,465,263),(2136,'2015-03-10 21:49:29','2015-08-29 14:46:01',1,30001177,26,11,12,11,10,7,21,13,41,52,12,22,70,13,27,21,20,14,21,17,30,33,13,25),(2137,'2015-03-10 21:49:29','2015-08-29 14:46:01',1,30002093,6,13,3,4,15,3,3,3,23,18,15,17,32,16,18,25,25,13,13,8,27,27,21,26),(2138,'2015-03-10 21:49:29','2015-08-29 14:46:01',1,30003433,64,89,74,77,80,77,26,50,82,87,53,54,83,105,113,111,87,54,71,73,98,109,82,104),(2139,'2015-03-10 21:49:29','2015-08-29 14:46:01',1,30003429,11,26,9,14,8,8,14,9,8,8,12,11,5,15,11,9,5,5,31,10,14,17,4,9),(2140,'2015-03-10 21:49:29','2015-08-29 14:46:01',1,30003897,49,46,36,23,19,38,25,25,41,28,43,34,57,77,118,42,16,18,50,34,39,43,26,26),(2141,'2015-03-10 21:49:29','2015-08-29 14:46:01',1,30000234,10,11,5,7,9,16,8,3,1,1,1,2,0,3,3,5,1,4,0,0,3,4,1,3),(2142,'2015-03-10 21:49:29','2015-08-29 14:46:01',1,30000149,181,251,221,212,235,218,185,147,252,269,227,224,326,384,377,364,293,181,207,273,355,348,258,240),(2143,'2015-03-10 21:49:29','2015-08-29 14:46:01',1,30002386,87,98,82,98,78,72,99,61,151,137,111,98,140,146,133,139,110,67,97,113,122,115,99,101),(2144,'2015-03-10 21:49:29','2015-08-29 14:46:01',1,30000087,17,24,16,19,22,15,18,15,29,54,23,30,35,43,47,35,17,34,18,23,19,34,19,25),(2145,'2015-03-10 21:49:29','2015-08-29 14:46:01',1,30001663,21,14,26,11,8,14,13,13,20,11,12,27,22,20,18,18,25,54,18,17,14,16,28,24),(2146,'2015-03-10 21:49:29','2015-08-29 14:46:01',1,30004238,16,48,17,58,48,26,13,25,26,23,30,16,25,121,194,39,17,19,31,13,29,27,16,11),(2147,'2015-03-10 21:49:29','2015-08-29 14:46:01',1,30004083,141,148,142,142,152,134,98,108,204,220,204,177,238,233,226,216,149,138,140,217,227,208,150,130),(2148,'2015-03-10 21:49:29','2015-08-29 14:46:01',1,30000126,179,265,303,170,191,216,183,177,338,342,313,290,325,406,411,358,273,243,261,289,378,361,266,249),(2149,'2015-03-10 21:49:29','2015-08-29 14:46:01',1,30002533,46,69,55,45,26,35,48,46,68,67,67,63,57,70,77,69,93,24,34,36,73,41,54,52),(2150,'2015-03-10 21:49:29','2015-08-29 14:46:01',1,30002531,92,138,102,115,101,76,88,115,164,150,144,137,153,172,163,129,141,65,70,88,145,100,112,120),(2151,'2015-03-10 21:49:29','2015-08-29 14:46:01',1,30003586,4,4,6,16,17,6,5,8,55,58,20,15,6,15,11,9,2,8,3,6,7,13,10,7),(2152,'2015-03-10 21:49:29','2015-08-29 14:46:01',1,30005244,147,145,164,138,124,151,169,281,239,250,247,238,253,218,193,193,154,113,204,223,234,218,281,238),(2153,'2015-03-10 21:49:29','2015-08-29 14:46:01',1,30003023,19,13,7,10,18,4,5,9,7,6,6,9,14,6,7,6,5,14,18,15,7,15,14,16),(2154,'2015-03-10 21:49:29','2015-08-29 14:46:01',1,30004266,2,2,4,5,7,2,6,11,8,3,8,5,9,4,4,5,6,7,7,4,4,4,5,4),(2155,'2015-03-10 21:49:29','2015-08-29 14:46:01',1,30004282,17,5,6,2,1,11,7,11,25,23,30,27,20,28,27,17,34,18,4,16,28,18,17,24),(2156,'2015-03-10 21:49:29','2015-08-29 14:46:01',1,30003871,78,118,121,109,100,110,55,82,152,193,156,121,183,174,186,137,102,126,114,123,141,168,140,134),(2157,'2015-03-10 21:49:29','2015-08-29 14:46:01',1,30000936,3,1,4,3,5,4,1,3,2,2,7,11,9,11,2,9,10,4,8,11,9,9,0,2),(2158,'2015-03-10 21:49:29','2015-08-29 14:46:01',1,30001580,10,6,2,6,9,1,0,2,21,23,18,10,20,20,20,25,15,24,13,32,12,14,22,22),(2159,'2015-03-10 21:49:29','2015-08-29 14:46:01',1,30000553,9,7,3,5,6,4,4,0,9,18,4,4,11,7,10,9,4,12,4,21,10,10,3,3),(2160,'2015-03-10 21:49:29','2015-08-29 14:46:01',1,30003202,6,1,0,1,0,0,0,1,0,0,0,0,0,0,0,0,2,1,0,0,0,0,0,1),(2161,'2015-03-10 21:49:29','2015-08-29 14:46:01',1,30004288,14,19,20,18,11,29,8,24,95,245,149,58,76,212,160,105,78,99,233,140,44,53,30,26),(2162,'2015-03-10 21:49:29','2015-08-29 14:46:01',1,30004084,87,125,109,139,132,90,78,83,146,179,166,129,164,229,156,112,125,122,164,180,213,168,164,146),(2163,'2015-03-10 21:49:29','2015-08-29 14:46:01',1,30002972,155,211,170,193,176,145,85,134,220,237,205,212,232,249,261,273,208,119,177,223,248,230,252,220),(2164,'2015-03-10 21:49:29','2015-08-29 14:46:01',1,30001714,18,13,8,8,8,5,3,2,4,12,12,15,16,18,25,28,8,3,7,19,22,26,10,10),(2165,'2015-03-10 21:49:29','2015-08-29 14:46:01',1,30004474,6,3,3,7,4,1,5,2,6,6,13,10,6,7,10,9,9,4,12,7,17,9,7,5),(2166,'2015-03-10 21:49:29','2015-08-29 14:46:01',1,30003035,97,205,155,144,164,145,100,173,254,301,246,192,330,315,284,269,235,240,225,275,282,272,238,237),(2167,'2015-03-10 21:49:29','2015-08-29 14:46:01',1,30002232,50,25,22,13,16,28,37,26,38,33,33,33,44,47,45,46,31,7,27,37,45,51,33,20),(2168,'2015-03-10 21:49:29','2015-08-29 14:46:01',1,30003877,151,228,196,169,149,166,182,223,257,284,274,236,284,312,274,237,200,160,190,236,279,260,177,201),(2169,'2015-03-10 21:49:29','2015-08-29 14:46:01',1,30000887,22,12,13,15,14,15,11,17,65,51,29,20,40,45,54,46,47,26,23,29,22,39,23,19),(2170,'2015-03-10 21:49:29','2015-08-29 14:46:01',1,30005288,183,97,125,110,95,107,107,148,153,188,153,126,138,138,130,129,82,98,138,170,151,149,135,111),(2171,'2015-03-10 21:49:29','2015-08-29 14:46:01',1,30005312,151,155,174,161,141,130,123,118,163,159,165,142,244,345,304,251,164,171,165,203,325,242,189,179),(2172,'2015-03-10 21:49:29','2015-08-29 14:46:01',1,30001192,19,11,19,20,9,15,33,42,30,80,50,34,55,52,63,52,36,25,53,50,42,29,43,34),(2173,'2015-03-10 21:49:29','2015-08-29 14:46:01',1,30003232,5,0,8,2,4,6,1,2,1,0,2,6,0,0,0,0,1,0,0,0,0,0,0,0),(2174,'2015-03-10 21:49:29','2015-08-29 14:46:01',1,30000789,9,9,2,5,6,24,9,5,3,4,7,9,12,2,31,15,10,0,9,5,4,4,5,4),(2175,'2015-03-10 21:49:29','2015-08-29 14:46:01',1,30000859,4,14,8,2,2,0,1,0,3,1,1,2,1,2,4,1,4,0,0,1,1,1,1,2),(2176,'2015-03-10 21:49:29','2015-08-29 14:46:01',1,30001122,7,14,18,13,14,6,7,20,0,0,5,4,2,2,1,3,2,0,3,2,1,1,0,1),(2177,'2015-03-10 21:49:29','2015-08-29 14:46:01',1,30002133,9,15,3,1,10,5,8,5,57,90,18,10,27,37,15,12,12,10,20,12,34,27,17,18),(2178,'2015-03-10 21:49:29','2015-08-29 14:46:01',1,30000544,21,29,28,23,16,22,18,12,79,102,109,94,71,142,122,62,118,14,26,28,138,147,86,174),(2179,'2015-03-10 21:49:29','2015-08-29 14:46:01',1,30003698,54,59,79,118,144,79,35,44,14,36,116,101,163,89,58,64,15,46,26,26,40,34,33,33),(2180,'2015-03-10 21:49:29','2015-08-29 14:46:01',1,30001178,26,8,11,8,8,8,14,13,36,50,12,23,67,14,29,12,16,15,22,15,32,32,11,23),(2181,'2015-03-10 21:49:29','2015-08-29 14:46:01',1,30000671,13,55,9,9,16,8,9,6,41,51,31,18,31,37,25,29,10,9,12,46,25,18,19,18),(2182,'2015-03-10 21:49:29','2015-08-29 14:46:01',1,30002306,1,4,0,1,3,3,0,4,1,4,3,1,10,1,0,0,0,3,4,4,0,1,5,3),(2183,'2015-03-10 21:49:29','2015-08-29 14:46:01',1,30003736,40,46,33,46,54,59,50,32,104,107,81,60,80,121,133,86,64,42,49,97,69,77,72,71),(2184,'2015-03-10 21:49:29','2015-08-29 14:46:01',1,30002725,26,39,37,37,23,26,23,18,78,37,34,28,29,35,18,27,24,31,16,30,22,18,31,35),(2185,'2015-03-10 21:49:29','2015-08-29 14:46:01',1,30000070,91,46,64,38,45,20,31,15,78,91,71,33,205,54,72,53,44,22,28,68,48,45,52,59),(2186,'2015-03-10 21:49:29','2015-08-29 14:46:01',1,30004087,47,92,70,62,68,55,23,47,74,71,105,69,78,103,83,59,59,61,47,80,105,67,98,71),(2187,'2015-03-10 21:49:29','2015-08-29 14:46:01',1,30005268,56,64,66,89,82,58,41,44,88,89,77,65,72,79,77,99,66,65,72,60,104,105,79,56),(2188,'2015-03-10 21:49:29','2015-08-29 14:46:01',1,30002403,22,31,31,28,23,33,24,22,13,20,5,5,129,12,18,15,16,23,12,15,29,16,82,89),(2189,'2015-03-10 21:49:29','2015-08-29 14:46:01',1,30001716,41,34,40,55,57,36,48,31,79,74,67,62,53,59,58,74,41,58,100,91,92,100,77,70),(2190,'2015-03-10 21:49:29','2015-08-29 14:46:01',1,30003963,17,6,10,7,9,8,17,11,14,21,13,10,20,12,9,14,12,9,13,10,13,18,20,19),(2191,'2015-03-10 21:49:29','2015-08-29 14:46:01',1,30001646,110,83,68,77,82,88,53,50,101,107,93,79,122,110,98,97,87,69,54,73,144,89,110,111),(2192,'2015-03-10 21:49:29','2015-08-29 14:46:01',1,30003509,12,16,15,14,11,12,6,7,21,25,53,58,18,26,23,28,8,13,11,12,24,21,26,16),(2193,'2015-03-10 21:49:29','2015-08-29 14:46:01',1,30003930,12,24,2,9,9,10,13,25,17,9,9,16,16,25,16,17,8,6,12,20,20,23,5,8),(2194,'2015-03-10 21:49:29','2015-08-29 14:46:01',1,30003858,48,75,67,60,57,61,39,44,288,273,347,330,83,131,128,112,78,76,99,98,112,108,85,88),(2195,'2015-03-10 21:49:29','2015-08-29 14:46:01',1,30000598,3,4,7,5,4,8,0,1,1,13,3,1,6,3,4,74,3,65,35,9,7,4,0,0),(2196,'2015-03-10 21:49:29','2015-08-29 14:46:01',1,30000552,27,45,19,15,12,29,5,5,12,16,13,14,22,53,33,71,33,119,43,24,81,46,33,19),(2197,'2015-03-10 21:49:29','2015-08-29 14:46:01',1,30004465,6,10,15,15,19,19,6,34,33,30,39,30,29,49,48,41,52,53,35,57,62,29,34,46),(2198,'2015-03-10 21:49:29','2015-08-29 14:46:01',1,30002875,3,1,5,5,7,5,1,5,2,4,0,1,15,3,6,3,0,2,4,1,6,5,14,3),(2199,'2015-03-10 21:49:29','2015-08-29 14:46:01',1,30004694,31,32,13,13,23,19,16,23,26,29,11,35,44,29,22,14,21,12,14,31,38,16,22,36),(2200,'2015-03-10 21:49:29','2015-08-29 14:46:01',1,30004167,12,1,14,7,3,7,3,4,22,32,13,15,10,13,12,3,7,6,1,3,6,3,8,8),(2201,'2015-03-10 21:49:29','2015-08-29 14:46:01',1,30004957,6,1,3,2,2,15,1,1,4,8,4,3,5,4,3,7,3,1,1,6,2,3,1,0),(2202,'2015-03-10 21:49:29','2015-08-29 14:46:01',1,30000456,0,7,4,0,0,1,3,1,2,5,13,5,7,6,6,2,8,1,1,0,5,6,5,5),(2203,'2015-03-10 21:49:29','2015-08-29 14:46:01',1,30002653,26,38,55,35,32,18,42,13,56,73,41,43,59,71,77,73,27,29,30,91,48,55,50,54),(2204,'2015-03-10 21:49:29','2015-08-29 14:46:01',1,30000593,3,2,3,1,0,4,0,4,2,16,6,2,12,3,2,31,3,14,10,5,2,3,0,4),(2205,'2015-03-10 21:49:29','2015-08-29 14:46:01',1,30002636,152,198,188,189,175,184,145,131,229,254,200,177,244,310,311,250,221,153,176,184,219,212,176,171),(2206,'2015-03-10 21:49:29','2015-08-29 14:46:01',1,30003808,17,13,12,10,18,22,16,6,16,8,27,16,14,30,19,12,17,35,18,23,13,17,17,18),(2207,'2015-03-10 21:49:29','2015-08-29 14:46:01',1,30003360,12,2,4,5,9,5,1,5,2,7,3,0,9,4,2,3,0,6,6,4,4,6,37,45),(2208,'2015-03-10 21:49:29','2015-08-29 14:46:01',1,30003057,9,31,29,22,11,20,19,14,30,29,54,31,41,36,41,38,25,58,28,30,23,27,18,24),(2209,'2015-03-10 21:49:29','2015-08-29 14:46:01',1,30002859,0,2,1,1,5,0,0,1,2,1,2,3,2,2,4,2,3,0,1,1,2,1,1,2),(2210,'2015-03-10 21:49:29','2015-08-29 14:46:01',1,30001573,0,3,4,1,1,0,0,3,1,1,1,0,0,2,0,0,0,5,1,1,0,0,0,0),(2211,'2015-03-10 21:49:29','2015-08-29 14:46:01',1,30003199,6,1,1,5,3,4,0,4,1,0,1,2,3,0,0,3,5,2,1,1,8,11,1,6),(2212,'2015-03-10 21:49:29','2015-08-29 14:46:01',1,30002328,2,4,1,1,1,0,6,2,0,0,0,0,1,0,0,1,2,0,0,1,0,0,1,0),(2213,'2015-03-10 21:49:29','2015-08-29 14:46:01',1,30001883,0,12,1,7,7,7,1,5,15,23,22,18,6,3,1,10,4,10,4,9,11,14,17,20),(2214,'2015-03-10 21:49:29','2015-08-29 14:46:01',1,30002627,0,0,0,0,0,0,0,2,2,2,0,0,0,2,3,1,1,1,1,1,1,1,5,3),(2215,'2015-03-10 21:49:29','2015-08-29 14:46:01',1,30002102,11,18,18,17,17,23,14,12,26,18,11,18,20,26,23,26,25,9,5,7,13,9,27,16),(2216,'2015-03-10 21:49:29','2015-08-29 14:46:01',1,30002384,49,49,58,48,40,57,32,31,108,87,71,86,126,123,129,130,107,66,58,83,111,107,67,66),(2217,'2015-03-10 21:49:29','2015-08-29 14:46:01',1,30002517,158,159,129,140,127,110,82,140,425,320,142,115,230,348,350,175,245,297,243,279,245,163,183,175),(2218,'2015-03-10 21:49:29','2015-08-29 14:46:01',1,30002560,28,44,46,48,18,14,29,22,76,95,33,29,57,52,62,31,33,41,38,63,55,45,37,31),(2219,'2015-03-10 21:49:29','2015-08-29 14:46:01',1,30002556,37,39,25,31,25,22,12,24,37,54,31,33,44,32,70,33,28,19,37,35,40,23,18,25),(2220,'2015-03-10 21:49:29','2015-08-29 14:46:01',1,30001347,5,2,3,2,3,0,0,0,3,0,1,0,2,1,2,2,4,3,1,4,1,0,1,3),(2221,'2015-03-10 21:49:29','2015-08-29 14:46:01',1,30003653,16,5,6,11,14,7,12,5,0,0,1,1,1,6,3,5,2,1,5,2,1,4,3,6),(2222,'2015-03-10 21:49:29','2015-08-29 14:46:01',1,30002123,25,129,43,46,36,11,16,20,25,15,24,28,28,40,27,21,12,25,31,17,24,18,13,25),(2223,'2015-03-10 21:49:29','2015-08-29 14:46:01',1,30002947,16,16,11,18,15,26,21,36,24,20,2,7,14,26,17,13,14,9,8,12,9,11,10,7),(2224,'2015-03-10 21:49:29','2015-08-29 14:46:01',1,30004778,39,28,23,24,44,10,16,45,26,26,21,13,27,24,21,25,20,21,15,23,79,69,20,29),(2225,'2015-03-10 21:49:29','2015-08-29 14:46:01',1,30001661,4,12,6,6,3,3,0,1,2,1,5,5,6,24,39,40,5,2,5,7,6,8,8,7),(2226,'2015-03-10 21:49:29','2015-03-10 21:49:29',1,30000344,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(2227,'2015-03-10 21:49:29','2015-08-29 14:46:01',1,30002529,346,541,502,551,469,442,323,398,591,604,530,517,681,656,650,709,476,445,491,606,745,637,552,527),(2228,'2015-03-10 21:49:29','2015-08-29 14:46:01',1,30002621,1,7,7,9,6,10,3,12,2,6,7,3,5,17,19,13,11,0,1,2,5,7,15,14),(2229,'2015-03-10 21:49:29','2015-08-29 14:46:01',1,30001531,2,0,0,0,0,0,0,0,10,32,11,8,6,9,7,12,12,35,23,13,13,18,29,32),(2230,'2015-03-10 21:49:29','2015-08-29 14:46:01',1,30000276,5,29,10,11,22,40,15,21,4,5,6,5,4,1,4,6,3,6,3,34,1,1,8,7),(2231,'2015-03-10 21:49:29','2015-08-29 14:46:01',1,30005123,8,11,17,22,15,16,2,12,13,4,8,2,5,5,2,5,2,19,29,7,8,8,1,2),(2232,'2015-03-10 21:49:29','2015-08-29 14:46:01',1,30003986,10,22,13,12,10,20,7,6,4,20,25,5,2,2,3,6,4,7,0,0,2,1,5,2),(2233,'2015-03-10 21:49:29','2015-08-29 14:46:01',1,30000225,23,79,44,56,53,108,47,49,17,21,20,14,23,7,5,63,42,16,21,39,11,9,16,12),(2234,'2015-03-10 21:49:29','2015-08-29 14:46:01',1,30002588,8,11,20,8,11,24,12,38,18,16,5,13,42,17,43,21,14,11,23,129,14,12,25,25),(2235,'2015-03-10 21:49:29','2015-08-29 14:46:01',1,30000974,1,2,1,1,0,0,1,2,1,2,0,0,3,1,1,2,1,0,3,0,1,2,2,1),(2236,'2015-03-10 21:49:29','2015-08-29 14:46:01',1,30000523,7,2,10,3,7,6,8,0,2,4,4,5,7,22,6,6,3,1,4,9,7,7,9,6),(2237,'2015-03-10 21:49:29','2015-08-29 14:46:01',1,30001001,51,26,46,59,54,15,78,39,66,42,59,69,30,119,83,35,53,34,25,66,87,72,65,40),(2238,'2015-03-10 21:49:29','2015-08-29 14:46:01',1,30001331,7,14,10,6,5,8,11,9,24,24,40,38,29,36,23,8,15,9,12,28,16,9,20,10),(2239,'2015-03-10 21:49:29','2015-08-29 14:46:01',1,30001129,0,0,8,1,1,0,0,0,4,1,1,1,1,0,0,0,0,0,2,1,0,1,0,1),(2240,'2015-03-10 21:49:29','2015-03-10 21:49:29',1,30001513,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(2241,'2015-03-10 21:49:29','2015-08-29 14:46:01',1,30000281,17,4,11,22,16,24,11,8,2,2,3,2,6,3,1,13,29,0,3,4,5,5,5,3),(2242,'2015-03-10 21:49:29','2015-08-29 14:46:01',1,30000444,9,6,8,16,13,16,15,5,30,37,38,27,42,67,37,38,23,11,83,63,36,33,27,11),(2243,'2015-03-10 21:49:29','2015-08-29 14:46:01',1,30005116,5,6,1,3,5,3,3,3,4,1,1,2,2,16,6,1,3,1,1,38,6,3,1,0),(2244,'2015-03-10 21:49:29','2015-08-29 14:46:01',1,30003752,19,24,13,22,17,23,19,19,29,50,51,38,31,30,17,19,28,15,16,31,25,31,31,32),(2245,'2015-03-10 21:49:29','2015-08-29 14:46:01',1,30005090,5,7,2,11,14,6,9,11,11,5,5,7,5,39,15,7,6,5,5,7,10,7,2,2),(2246,'2015-03-10 21:49:29','2015-08-29 14:46:01',1,30000547,6,39,10,41,5,33,5,4,27,18,10,9,23,14,6,38,8,25,17,6,19,19,10,13),(2247,'2015-03-10 21:49:29','2015-08-29 14:46:01',1,30004814,1,5,6,3,0,8,4,4,10,5,10,9,12,2,1,8,8,5,11,5,2,7,7,6),(2248,'2015-03-10 21:49:29','2015-08-29 14:46:01',1,30004512,7,1,2,3,1,0,1,1,2,2,1,2,0,3,4,0,1,2,0,0,0,1,0,4),(2249,'2015-03-10 21:49:29','2015-08-29 14:46:01',1,30003261,8,1,0,4,5,5,13,17,5,12,0,0,4,3,4,5,5,15,18,2,0,0,0,1),(2250,'2015-03-10 21:49:29','2015-08-29 14:46:01',1,30000268,33,13,20,20,13,15,9,22,3,6,11,10,6,5,1,4,3,1,5,0,1,3,4,2),(2251,'2015-03-10 21:49:29','2015-08-29 14:46:01',1,30004592,19,22,17,12,12,5,8,12,12,24,7,8,503,12,7,5,17,7,15,21,16,9,12,4),(2252,'2015-03-10 21:49:29','2015-08-29 14:46:01',1,30004446,1,1,1,1,0,1,2,4,0,1,0,2,0,0,0,0,0,0,0,2,5,6,0,0),(2253,'2015-03-10 21:49:29','2015-08-29 14:46:01',1,30001269,46,35,59,61,55,43,39,68,142,109,77,63,71,105,109,260,70,18,40,97,71,198,80,57),(2254,'2015-03-10 21:49:29','2015-08-29 14:46:01',1,30002120,14,33,18,13,11,9,7,6,96,114,20,18,31,44,21,26,21,15,40,31,51,49,24,23),(2255,'2015-03-10 21:49:29','2015-08-29 14:46:01',1,30001343,2,3,1,1,1,1,0,2,3,2,5,4,2,1,0,0,2,0,2,6,0,0,1,1),(2256,'2015-03-10 21:49:29','2015-08-29 14:46:01',1,30004606,0,1,3,3,2,14,3,10,0,1,0,0,1,0,0,2,0,1,4,4,2,1,3,5),(2257,'2015-03-10 21:49:29','2015-08-29 14:46:01',1,30003144,4,3,10,17,25,5,3,0,2,2,3,3,4,3,4,2,4,2,0,3,3,1,4,1),(2258,'2015-03-10 21:49:29','2015-08-29 14:46:01',1,30000223,11,12,23,15,15,22,11,2,7,5,5,4,24,3,8,45,13,10,12,9,11,3,6,2),(2259,'2015-03-10 21:49:29','2015-08-29 14:46:01',1,30000865,88,175,115,133,111,83,74,69,152,287,305,162,248,182,127,164,89,46,96,152,109,140,119,118),(2260,'2015-03-10 21:49:29','2015-08-29 14:46:01',1,30003160,18,39,19,16,28,16,15,9,0,4,10,12,2,5,4,11,3,3,4,2,15,15,8,6),(2261,'2015-03-10 21:49:29','2015-08-29 14:46:01',1,30003608,7,16,12,9,10,8,3,7,5,7,6,5,7,10,15,3,5,3,4,3,1,2,7,6),(2262,'2015-03-10 21:49:29','2015-08-29 14:46:01',1,30002043,6,15,7,13,14,8,6,16,23,33,46,17,34,20,5,12,7,5,4,17,3,6,7,5),(2263,'2015-03-10 21:49:29','2015-08-29 14:46:01',1,30004178,2,10,9,12,13,11,9,8,4,4,12,18,9,3,8,8,4,1,5,5,8,6,11,6),(2264,'2015-03-10 21:49:29','2015-03-10 21:49:29',1,30000426,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(2265,'2015-03-10 21:49:29','2015-08-29 14:46:01',1,30001575,7,9,6,4,14,3,0,1,5,5,0,0,0,0,0,0,14,28,2,1,4,1,2,6),(2266,'2015-03-10 21:49:29','2015-03-10 21:49:29',1,30000410,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(2267,'2015-03-10 21:49:29','2015-08-29 14:46:01',1,30000685,9,4,5,12,4,7,4,8,6,2,1,9,2,3,10,8,7,1,1,8,5,0,3,3),(2268,'2015-03-10 21:49:29','2015-08-29 14:46:01',1,30003723,66,243,87,85,89,100,37,84,222,183,92,108,598,115,87,144,95,154,233,257,166,112,171,141),(2269,'2015-03-10 21:49:29','2015-08-29 14:46:01',1,30000574,13,18,6,12,7,19,7,20,2,1,2,1,19,10,19,0,4,0,7,5,5,8,1,1),(2270,'2015-03-10 21:49:29','2015-08-29 14:46:01',1,30004443,16,6,5,9,8,8,5,12,0,3,0,2,0,5,2,2,13,2,12,15,9,10,7,11),(2271,'2015-03-10 21:49:29','2015-08-29 14:46:01',1,30004034,0,0,0,5,4,0,1,1,7,6,12,7,2,4,7,2,5,1,3,5,9,4,5,5),(2272,'2015-03-10 21:49:29','2015-08-29 14:46:01',1,30000973,2,3,1,2,0,2,1,3,4,2,0,0,1,10,4,10,0,6,1,3,3,5,5,3),(2273,'2015-03-10 21:49:29','2015-03-10 21:49:29',1,30001518,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(2274,'2015-03-10 21:49:29','2015-08-29 14:46:01',1,30002857,10,8,11,2,5,6,1,4,8,15,16,19,9,24,31,12,19,1,2,56,9,14,25,14),(2275,'2015-03-10 21:49:29','2015-08-29 14:46:01',1,30004678,14,7,8,16,8,19,10,14,16,31,28,4,14,16,17,11,7,5,8,6,21,15,18,19),(2276,'2015-03-10 21:49:29','2015-08-29 14:46:01',1,30003775,41,43,51,39,70,10,24,38,46,59,42,42,56,59,33,45,76,72,36,46,39,31,83,85),(2277,'2015-03-10 21:49:29','2015-08-29 14:46:01',1,30004916,9,4,3,5,3,5,1,0,2,1,1,1,2,5,2,2,17,5,10,1,0,0,1,3),(2278,'2015-03-10 21:49:29','2015-08-29 14:46:01',1,30000960,2,2,3,9,7,0,2,2,1,1,1,5,1,4,1,0,3,2,1,0,4,0,0,1),(2279,'2015-03-10 21:49:29','2015-08-29 14:46:01',1,30001424,131,162,171,194,157,173,101,116,177,192,136,135,186,199,192,166,175,141,167,160,235,232,150,142),(2280,'2015-03-10 21:49:29','2015-08-29 14:46:01',1,30002800,182,202,183,209,172,215,160,126,224,252,240,215,198,261,259,259,218,147,164,181,253,264,242,212),(2281,'2015-03-10 21:49:29','2015-08-29 14:46:01',1,30005250,20,35,20,31,23,17,11,24,83,98,104,87,68,70,45,55,33,33,41,63,62,63,69,45),(2282,'2015-03-10 21:49:29','2015-08-29 14:46:01',1,30012547,91,77,73,68,63,72,58,64,157,183,142,127,144,140,126,148,113,92,99,103,124,116,88,86),(2283,'2015-03-10 21:49:29','2015-08-29 14:46:01',1,30005223,27,13,15,25,25,7,13,6,41,30,18,20,14,11,17,16,16,21,15,11,12,16,9,8),(2284,'2015-03-10 21:49:29','2015-08-29 14:46:01',1,30002264,27,24,17,31,19,17,10,14,40,29,27,22,24,27,36,31,12,17,9,14,18,19,15,10),(2285,'2015-03-10 21:49:29','2015-08-29 14:46:01',1,30002057,95,120,72,83,99,114,45,75,182,186,157,152,174,219,239,130,138,137,160,205,226,223,122,158),(2286,'2015-03-10 21:49:29','2015-08-29 14:46:01',1,30001367,149,214,245,172,163,165,109,184,200,242,240,265,229,262,280,302,224,112,159,191,195,171,194,199),(2287,'2015-03-10 21:49:29','2015-08-29 14:46:01',1,30002050,110,131,139,93,91,87,70,91,179,150,148,150,145,161,160,141,104,116,95,123,130,130,122,102),(2288,'2015-03-10 21:49:29','2015-08-29 14:46:01',1,30003533,11,26,16,21,15,11,13,13,24,17,18,17,12,17,14,11,14,13,8,19,8,10,13,6),(2289,'2015-03-10 21:49:29','2015-08-29 14:46:01',1,30000094,7,1,1,0,1,2,1,2,13,17,5,2,4,6,9,1,7,2,3,4,3,4,4,4),(2290,'2015-03-10 21:49:29','2015-08-29 14:46:01',1,30002250,2,5,7,2,0,12,5,6,4,6,10,6,15,10,7,6,1,3,0,2,5,7,9,6),(2291,'2015-03-10 21:49:29','2015-08-29 14:46:01',1,30004248,93,243,101,147,124,147,169,233,45,49,32,25,43,41,48,51,23,30,41,61,43,45,31,35),(2292,'2015-03-10 21:49:29','2015-08-29 14:46:01',1,30005012,5,9,8,7,3,4,6,6,3,6,29,36,2,6,4,3,8,3,9,12,13,12,11,9),(2293,'2015-03-10 21:49:29','2015-08-29 14:46:01',1,30003106,1,3,4,0,0,3,2,1,8,3,6,7,2,0,0,4,8,1,0,3,2,3,1,1),(2294,'2015-03-10 21:49:29','2015-08-29 14:46:01',1,30003918,1,16,8,11,18,3,3,3,7,8,5,3,13,7,14,13,5,1,5,5,9,8,4,8),(2295,'2015-03-10 21:49:29','2015-08-29 14:46:01',1,30004257,8,8,5,2,1,6,0,10,11,6,10,11,9,5,4,5,3,11,4,2,9,12,11,12),(2296,'2015-03-10 21:49:29','2015-08-29 14:46:01',1,30003449,31,46,31,31,31,41,30,33,57,53,43,35,43,62,69,72,32,36,38,43,61,68,38,43),(2297,'2015-03-10 21:49:29','2015-08-29 14:46:01',1,30002077,3,4,11,11,10,6,10,3,20,16,12,12,17,12,14,14,6,4,4,7,4,7,12,3),(2298,'2015-03-10 21:49:29','2015-08-29 14:46:01',1,30003085,0,2,5,1,3,6,4,3,7,4,0,4,6,17,4,3,4,6,2,4,4,3,2,2),(2299,'2015-03-10 21:49:29','2015-08-29 14:46:01',1,30001448,38,88,86,69,45,46,48,87,95,93,119,66,87,98,80,75,79,59,65,48,79,59,75,58),(2300,'2015-03-10 21:49:29','2015-08-29 14:46:01',1,30002990,26,65,31,18,18,33,27,43,27,37,33,30,41,47,55,52,25,33,60,40,61,60,27,26),(2301,'2015-03-10 21:49:29','2015-08-29 14:46:01',1,30002781,677,739,786,729,663,522,356,481,747,827,754,713,851,1048,995,949,719,587,643,850,928,911,757,632),(2302,'2015-03-10 21:49:29','2015-08-29 14:46:01',1,30003003,7,14,13,23,9,7,5,12,4,15,11,12,13,16,10,14,12,16,10,14,11,17,8,7),(2303,'2015-03-10 21:49:29','2015-08-29 14:46:01',1,30002404,16,19,19,24,19,18,21,22,16,20,14,14,72,12,15,10,23,8,3,8,21,16,28,33),(2304,'2015-03-10 21:49:29','2015-08-29 14:46:01',1,30004100,2,8,3,8,7,5,5,5,10,17,6,7,2,8,9,2,1,6,2,6,5,3,1,3),(2305,'2015-03-10 21:49:29','2015-08-29 14:46:01',1,30045341,19,36,45,31,32,31,51,9,57,87,35,29,119,94,62,35,37,56,96,97,42,37,49,35),(2306,'2015-03-10 21:49:29','2015-08-29 14:46:01',1,30003010,40,57,75,60,81,43,40,46,88,89,100,74,94,102,114,100,78,41,57,81,116,119,79,82),(2307,'2015-03-10 21:49:29','2015-08-29 14:46:01',1,30002981,44,30,36,23,23,25,27,21,25,25,28,21,33,27,27,34,29,29,19,17,26,26,25,32),(2308,'2015-03-10 21:49:29','2015-08-29 14:46:01',1,30003900,25,31,20,18,14,41,18,9,36,19,19,21,41,43,34,19,24,8,36,41,29,31,35,29),(2309,'2015-03-10 21:49:29','2015-08-29 14:46:01',1,30003523,531,578,604,499,484,468,242,326,526,573,522,514,592,686,669,678,465,417,505,540,706,650,566,521),(2310,'2015-03-10 21:49:29','2015-08-29 14:46:01',1,30000152,186,216,188,182,174,156,110,181,220,241,230,197,190,262,209,279,219,161,154,233,253,244,227,218),(2311,'2015-03-10 21:49:29','2015-08-29 14:46:01',1,30003547,6,7,21,11,10,8,23,4,5,5,8,11,5,5,6,14,1,2,5,3,9,13,12,30),(2312,'2015-03-10 21:49:29','2015-08-29 14:46:01',1,30033489,6,10,10,5,1,5,0,8,7,5,6,6,13,6,9,10,9,5,7,6,15,10,15,16),(2313,'2015-03-10 21:49:29','2015-08-29 14:46:01',1,30005265,5,3,2,6,8,2,1,2,4,7,2,3,4,2,0,1,6,2,6,4,6,3,21,18),(2314,'2015-03-10 21:49:29','2015-08-29 14:46:01',1,30004145,6,19,27,36,14,11,6,5,11,21,40,37,24,33,40,46,24,12,17,16,27,26,16,11),(2315,'2015-03-10 21:49:29','2015-08-29 14:46:01',1,30003087,11,18,17,18,17,7,8,8,22,14,11,17,5,6,3,12,7,5,6,5,11,12,11,11),(2316,'2015-03-10 21:49:29','2015-08-29 14:46:01',1,30003418,6,9,12,9,13,3,6,13,24,28,20,15,18,10,14,23,21,7,20,20,8,8,17,24),(2317,'2015-03-10 21:49:29','2015-08-29 14:46:01',1,30003597,41,81,20,34,60,81,18,42,64,44,37,27,59,34,34,36,58,51,30,69,49,47,29,26),(2318,'2015-03-10 21:49:29','2015-08-29 14:46:01',1,30003017,115,188,201,164,178,178,124,160,281,288,265,231,342,323,294,312,308,219,260,291,295,263,265,269),(2319,'2015-03-10 21:49:29','2015-08-29 14:46:01',1,30003587,1,14,5,4,4,3,6,12,5,4,5,4,3,13,13,5,7,8,8,5,12,11,9,8),(2320,'2015-03-10 21:49:29','2015-08-29 14:46:01',1,30003793,30,167,46,79,75,42,36,54,55,54,41,25,47,54,39,74,71,45,55,63,61,66,48,41),(2321,'2015-03-10 21:49:29','2015-08-29 14:46:01',1,30002225,5,15,10,4,8,3,1,3,11,11,7,6,14,15,18,9,9,9,15,14,20,12,9,3),(2322,'2015-03-10 21:49:29','2015-08-29 14:46:01',1,30002758,57,174,67,77,72,56,69,82,37,40,101,57,64,125,93,53,56,51,84,83,63,73,59,60),(2323,'2015-03-10 21:49:29','2015-08-29 14:46:01',1,30000074,42,19,28,13,26,9,13,10,41,39,22,20,24,32,39,20,20,12,16,26,35,35,27,27),(2324,'2015-03-10 21:49:29','2015-08-29 14:46:01',1,30000032,44,90,98,81,44,74,36,47,88,89,102,89,101,116,122,98,87,80,112,77,83,55,58,65),(2325,'2015-03-10 21:49:29','2015-08-29 14:46:01',1,30002806,74,63,66,72,58,68,40,81,118,137,98,72,157,174,125,106,120,89,98,140,189,144,105,92),(2326,'2015-03-10 21:49:29','2015-08-29 14:46:01',1,30002764,1149,1380,1478,1324,1273,1055,889,915,1471,1553,1572,1345,1616,1769,1850,1750,1423,1022,1275,1501,1811,1722,1469,1334),(2327,'2015-03-10 21:49:29','2015-08-29 14:46:01',1,30001737,13,21,15,20,9,28,13,23,38,34,39,33,31,39,31,21,11,16,24,59,49,34,28,17),(2328,'2015-03-10 21:49:29','2015-08-29 14:46:01',1,30002994,410,487,480,414,387,340,198,245,459,472,396,390,478,536,528,536,368,346,431,449,588,515,471,442),(2329,'2015-03-10 21:49:29','2015-08-29 14:46:01',1,30003082,3,3,21,7,10,14,5,7,37,38,17,27,15,17,10,22,6,6,6,2,24,18,6,16),(2330,'2015-03-10 21:49:29','2015-08-29 14:46:01',1,30003542,19,9,19,19,9,3,14,5,17,15,9,6,9,7,9,5,11,1,6,5,7,4,4,7),(2331,'2015-03-10 21:49:29','2015-08-29 14:46:01',1,30000979,7,20,15,20,17,28,19,7,31,61,11,8,16,60,28,13,9,3,11,11,29,47,19,27),(2332,'2015-03-10 21:49:29','2015-08-29 14:46:01',1,30004228,2,12,5,6,6,5,0,3,0,3,1,0,3,3,5,5,10,1,13,25,6,9,1,2),(2333,'2015-03-10 21:49:29','2015-08-29 14:46:01',1,30003633,13,11,8,11,13,28,4,7,2,3,1,0,4,3,5,11,8,1,6,1,5,7,8,7),(2334,'2015-03-10 21:49:29','2015-08-29 14:46:01',1,30005107,5,31,10,3,3,11,6,3,6,4,4,7,1,20,11,3,1,5,3,7,11,8,5,2),(2335,'2015-03-10 21:49:29','2015-08-29 14:46:01',1,30004325,12,22,11,5,8,27,19,14,21,35,19,18,14,11,16,7,5,1,11,14,11,16,7,5),(2336,'2015-03-10 21:49:29','2015-08-29 14:46:01',1,30001292,17,15,12,27,17,5,5,3,3,11,2,6,11,12,7,2,4,10,8,4,11,7,15,4),(2337,'2015-03-10 21:49:29','2015-08-29 14:46:01',1,30000569,3,2,2,4,3,2,1,1,5,2,0,0,3,0,1,0,2,1,2,1,3,3,0,1),(2338,'2015-03-10 21:49:29','2015-08-29 14:46:01',1,30002863,2,2,4,6,10,5,1,1,9,13,8,6,10,2,7,0,5,2,1,16,7,13,5,6),(2339,'2015-03-10 21:49:29','2015-08-29 14:46:01',1,30001330,5,20,5,8,7,45,5,2,4,7,9,6,13,12,12,5,12,0,3,11,22,16,10,15),(2340,'2015-03-10 21:49:29','2015-03-10 21:49:29',1,30001482,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(2341,'2015-03-10 21:49:29','2015-08-29 14:46:01',1,30000214,56,40,39,59,40,39,13,22,14,21,61,48,13,14,16,19,15,42,33,8,9,11,17,13),(2342,'2015-03-10 21:49:29','2015-08-29 14:46:01',1,30003649,0,3,0,1,1,0,0,1,1,1,2,2,4,4,1,1,1,3,1,0,0,2,0,0),(2343,'2015-03-10 21:49:29','2015-08-29 14:46:01',1,30003435,11,13,5,5,4,10,3,6,21,16,18,22,15,5,12,8,14,23,10,3,17,17,23,23),(2344,'2015-03-10 21:49:29','2015-08-29 14:46:01',1,30024971,8,16,13,14,16,25,7,12,18,17,10,7,17,12,15,11,19,9,15,11,16,13,42,15),(2345,'2015-03-10 21:49:29','2015-08-29 14:46:01',1,30001161,66,142,101,114,100,67,34,66,333,257,117,100,136,186,219,158,110,197,191,115,146,238,98,104),(2346,'2015-03-10 21:49:29','2015-08-29 14:46:01',1,30002406,12,16,15,11,9,9,14,20,6,6,1,2,13,2,4,12,8,9,5,6,12,7,25,18),(2347,'2015-03-10 21:49:29','2015-08-29 14:46:01',1,30002579,1,8,0,2,4,4,3,6,1,4,3,2,5,9,7,5,8,2,6,9,4,2,4,5),(2348,'2015-03-10 21:49:29','2015-08-29 14:46:01',1,30002189,174,230,211,222,235,170,123,155,269,285,255,244,261,354,334,244,297,206,240,277,253,275,292,300),(2349,'2015-03-10 21:49:29','2015-08-29 14:46:01',1,30003846,14,17,6,0,1,8,2,3,7,13,8,10,15,25,22,6,4,6,14,9,16,5,50,18),(2350,'2015-03-10 21:49:29','2015-08-29 14:46:01',1,30002418,19,5,1,5,6,2,1,9,8,6,17,16,7,8,19,8,8,13,23,22,11,16,3,4),(2351,'2015-03-10 21:49:29','2015-08-29 14:46:01',1,30002390,80,51,83,53,40,52,29,52,92,56,64,60,165,97,100,142,101,70,59,95,121,92,104,85),(2352,'2015-03-10 21:49:29','2015-08-29 14:46:01',1,30002053,865,1144,1075,1100,1079,927,680,827,1322,1325,1149,1044,1339,1662,1634,1347,1149,953,1015,1192,1528,1392,1188,1122),(2353,'2015-03-10 21:49:29','2015-08-29 14:46:01',1,30002063,19,32,36,50,25,42,37,23,21,30,11,22,28,45,42,25,19,20,35,27,19,14,20,19),(2354,'2015-03-10 21:49:29','2015-08-29 14:46:01',1,30003594,39,74,34,36,32,62,14,45,58,62,45,29,50,46,40,39,31,45,38,53,50,45,32,29),(2355,'2015-03-10 21:49:29','2015-08-29 14:46:01',1,30001044,11,21,18,12,14,19,16,17,31,26,20,27,116,46,45,23,30,15,45,40,32,34,41,38),(2356,'2015-03-10 21:49:29','2015-08-29 14:46:01',1,30003902,5,3,2,1,2,10,2,2,13,14,14,11,37,13,10,6,2,5,8,2,4,3,3,3),(2357,'2015-03-10 21:49:29','2015-08-29 14:46:01',1,30034971,12,19,12,12,13,12,13,15,23,34,22,17,23,32,32,21,13,4,11,14,22,23,18,14),(2358,'2015-03-10 21:49:29','2015-08-29 14:46:01',1,30000188,74,110,106,91,93,107,77,102,130,174,108,116,166,143,153,174,129,101,118,123,155,152,96,102),(2359,'2015-03-10 21:49:29','2015-08-29 14:46:01',1,30005290,196,125,145,135,116,117,134,184,203,219,191,176,195,173,152,138,127,100,185,225,205,196,179,164),(2360,'2015-03-10 21:49:29','2015-08-29 14:46:01',1,30003528,43,31,22,33,38,33,30,22,39,45,45,57,41,46,47,37,32,32,42,48,61,49,42,45),(2361,'2015-03-10 21:49:29','2015-08-29 14:46:01',1,30005213,4,5,3,1,4,5,1,2,7,7,12,15,6,2,2,4,6,4,7,6,5,1,6,5),(2362,'2015-03-10 21:49:29','2015-08-29 14:46:01',1,30005320,32,33,28,44,44,39,45,21,61,57,29,34,68,37,36,60,28,31,35,102,43,34,31,30),(2363,'2015-03-10 21:49:29','2015-08-29 14:46:01',1,30004979,141,193,183,191,243,170,167,154,454,353,193,151,349,296,294,236,198,297,205,252,446,308,223,213),(2364,'2015-03-10 21:49:29','2015-08-29 14:46:01',1,30003937,2,0,1,1,1,2,3,3,0,1,4,3,16,1,4,9,1,0,3,1,2,1,4,7),(2365,'2015-03-10 21:49:29','2015-08-29 14:46:01',1,30003220,9,7,21,17,12,9,11,7,38,38,16,21,14,21,22,18,12,6,16,13,16,12,20,12),(2366,'2015-03-10 21:49:29','2015-08-29 14:46:01',1,30000837,6,15,6,4,34,2,4,16,0,5,3,1,2,7,8,4,8,4,0,6,1,1,2,1),(2367,'2015-03-10 21:49:29','2015-08-29 14:46:01',1,30001135,0,1,0,0,0,0,11,0,1,9,3,0,1,0,0,0,0,3,1,0,2,2,1,1),(2368,'2015-03-10 21:49:29','2015-03-10 21:49:29',1,30001509,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(2369,'2015-03-10 21:49:29','2015-08-29 14:46:01',1,30003162,4,24,13,8,25,13,6,5,0,2,3,3,2,2,1,3,2,2,2,1,12,12,6,3),(2370,'2015-03-10 21:49:29','2015-08-29 14:46:01',1,30004686,17,7,5,14,6,18,10,6,15,18,15,2,10,15,9,7,7,4,6,5,15,13,14,13),(2371,'2015-03-10 21:49:29','2015-08-29 14:46:01',1,30003679,24,29,64,58,21,63,22,16,161,115,45,40,49,22,51,26,54,12,42,22,24,28,26,24),(2372,'2015-03-10 21:49:29','2015-03-10 21:49:29',1,30001612,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(2373,'2015-03-10 21:49:29','2015-08-29 14:46:01',1,30003099,22,17,12,9,19,43,12,16,151,146,51,44,55,44,57,19,38,20,40,73,237,66,91,66),(2374,'2015-03-10 21:49:29','2015-08-29 14:46:01',1,30001662,96,61,71,62,53,46,38,46,70,88,66,79,70,85,89,88,62,103,48,59,84,85,74,57),(2375,'2015-03-10 21:49:29','2015-08-29 14:46:01',1,30004240,54,136,83,93,86,60,61,88,124,107,66,68,90,176,252,91,63,73,76,89,80,77,42,46),(2376,'2015-03-10 21:49:29','2015-08-29 14:46:01',1,30001528,6,1,2,1,1,0,3,1,88,79,43,18,42,20,18,43,33,49,52,29,35,38,38,41),(2377,'2015-03-10 21:49:29','2015-08-29 14:46:01',1,30004142,11,27,28,40,24,21,10,12,30,46,43,43,39,74,68,58,44,23,22,31,38,33,30,34),(2378,'2015-03-10 21:49:29','2015-08-29 14:46:01',1,30045338,169,333,165,178,230,99,180,113,408,397,144,120,491,312,273,168,164,263,250,339,210,169,160,153),(2379,'2015-03-10 21:49:29','2015-08-29 14:46:01',1,30001674,138,171,168,154,130,184,141,151,266,264,216,222,247,266,300,269,234,210,227,242,256,274,274,267),(2380,'2015-03-10 21:49:29','2015-08-29 14:46:01',1,30003428,66,72,74,81,73,80,14,52,78,79,62,46,94,89,80,80,59,60,57,64,97,113,58,67),(2381,'2015-03-10 21:49:29','2015-08-29 14:46:01',1,30004133,71,77,83,69,67,60,35,51,111,119,137,134,110,162,173,120,98,72,77,87,111,130,134,130),(2382,'2015-03-10 21:49:29','2015-08-29 14:46:01',1,30002214,1,5,1,4,5,1,6,3,7,8,16,22,17,13,9,4,4,11,8,5,5,5,4,6),(2383,'2015-03-10 21:49:29','2015-08-29 14:46:01',1,30004141,6,4,2,4,7,7,2,1,11,6,7,5,9,5,5,14,6,2,3,6,11,3,12,12),(2384,'2015-03-10 21:49:29','2015-08-29 14:46:01',1,30005248,28,40,30,32,24,20,29,88,25,29,31,29,27,33,29,38,26,12,35,66,56,62,70,62),(2385,'2015-03-10 21:49:29','2015-08-29 14:46:01',1,30004077,36,43,55,67,56,50,29,27,58,56,50,56,82,82,68,63,55,57,66,94,59,79,52,53),(2386,'2015-03-10 21:49:29','2015-08-29 14:46:01',1,30045345,88,100,97,114,127,95,131,68,111,93,43,47,50,122,126,69,97,118,106,185,73,54,88,105),(2387,'2015-03-10 21:49:29','2015-08-29 14:46:01',1,30000133,94,125,100,140,114,73,67,92,95,125,134,113,153,138,122,141,126,53,68,112,116,134,138,123),(2388,'2015-03-10 21:49:29','2015-08-29 14:46:01',1,30003875,83,121,120,110,96,102,57,82,158,201,153,126,185,184,184,132,107,130,112,127,157,170,137,131),(2389,'2015-03-10 21:49:29','2015-08-29 14:46:01',1,30003531,42,81,55,36,26,50,50,38,60,67,56,67,53,55,45,48,58,34,30,63,60,57,42,36),(2390,'2015-03-10 21:49:29','2015-08-29 14:46:01',1,30031407,31,28,30,41,27,39,13,15,35,34,41,35,34,39,42,31,43,22,27,44,28,28,36,36),(2391,'2015-03-10 21:49:29','2015-08-29 14:46:01',1,30004956,21,21,33,20,12,15,11,71,25,18,15,40,35,131,11,14,12,6,14,34,33,21,31,20),(2392,'2015-03-10 21:49:29','2015-08-29 14:46:01',1,30002245,15,12,23,14,17,12,9,9,14,28,32,32,14,16,13,9,11,15,20,24,17,25,20,25),(2393,'2015-03-10 21:49:29','2015-08-29 14:46:01',1,30000721,21,115,11,19,27,44,15,6,79,46,58,66,94,49,65,41,26,24,18,60,32,19,45,27),(2394,'2015-03-10 21:49:29','2015-08-29 14:46:01',1,30002468,6,5,17,12,13,6,4,13,13,12,11,13,3,2,2,5,6,1,9,2,10,8,4,3),(2395,'2015-03-10 21:49:29','2015-08-29 14:46:01',1,30002075,34,36,52,27,22,28,31,29,28,27,41,39,56,59,46,53,38,20,28,58,84,74,50,44),(2396,'2015-03-10 21:49:29','2015-08-29 14:46:01',1,30003400,86,100,134,106,108,102,68,98,98,103,83,73,168,187,193,150,70,93,123,90,117,108,104,124),(2397,'2015-03-10 21:49:29','2015-08-29 14:46:01',1,30002485,3,2,9,7,7,5,2,9,4,2,1,4,2,0,1,0,3,6,0,5,3,8,1,2),(2398,'2015-03-10 21:49:29','2015-08-29 14:46:01',1,30000828,1,8,14,5,8,1,0,3,0,1,1,1,3,0,0,15,31,0,9,16,2,5,2,2),(2399,'2015-03-10 21:49:29','2015-08-29 14:46:01',1,30001744,12,3,12,17,9,8,5,5,4,4,3,2,0,23,15,13,9,1,3,5,19,13,12,7),(2400,'2015-03-10 21:49:29','2015-08-29 14:46:01',1,30001016,87,350,122,122,100,114,38,63,120,178,78,65,328,139,116,81,53,53,91,176,99,75,118,122),(2401,'2015-03-10 21:49:29','2015-08-29 14:46:01',1,30001847,21,24,48,23,38,15,24,18,91,95,93,76,64,76,110,111,118,35,67,68,88,93,77,79),(2402,'2015-03-10 21:49:29','2015-08-29 14:46:01',1,30004715,22,26,4,7,7,13,25,35,57,67,52,42,69,56,47,63,65,44,55,59,66,70,25,24),(2403,'2015-03-10 21:49:29','2015-08-29 14:46:01',1,30004615,0,0,0,0,0,0,1,0,146,24,22,14,12,12,10,22,15,12,12,27,13,9,5,4),(2404,'2015-03-10 21:49:29','2015-08-29 14:46:01',1,30003243,6,7,21,6,18,24,26,9,3,6,24,28,72,4,11,7,7,4,4,6,17,25,9,4),(2405,'2015-03-10 21:49:29','2015-08-29 14:46:01',1,30003469,25,42,28,37,32,28,27,29,28,40,26,42,47,50,48,51,54,29,32,39,47,38,61,58),(2406,'2015-03-10 21:49:29','2015-08-29 14:46:01',1,30002096,8,9,17,17,18,8,11,14,17,14,26,32,21,11,11,23,28,16,8,36,50,42,21,15),(2407,'2015-03-10 21:49:29','2015-08-29 14:46:01',1,30002773,131,173,170,148,149,107,79,92,170,221,194,185,203,242,200,199,173,98,130,199,220,189,173,175),(2408,'2015-03-10 21:49:29','2015-08-29 14:46:01',1,30002596,3,3,4,5,4,15,5,7,0,2,8,4,2,7,4,11,3,2,3,1,6,10,12,16),(2409,'2015-03-10 21:49:29','2015-08-29 14:46:01',1,30001680,24,48,53,55,53,54,40,31,106,96,109,96,68,55,66,78,66,37,53,74,118,119,92,67),(2410,'2015-03-10 21:49:29','2015-08-29 14:46:01',1,30004309,10,3,9,6,6,9,15,12,210,177,258,214,478,505,152,106,83,149,297,326,23,13,13,14),(2411,'2015-03-10 21:49:29','2015-08-29 14:46:01',1,30002397,32,63,69,37,35,38,58,32,74,75,61,58,102,105,76,52,82,71,123,101,87,92,64,61),(2412,'2015-03-10 21:49:29','2015-08-29 14:46:01',1,30043489,4,5,5,9,8,8,3,8,10,11,6,6,13,16,13,11,10,15,9,13,31,18,9,16),(2413,'2015-03-10 21:49:29','2015-08-29 14:46:01',1,30002741,5,11,10,7,7,6,8,7,11,16,18,10,16,15,16,17,12,12,16,4,20,15,29,17),(2414,'2015-03-10 21:49:29','2015-08-29 14:46:01',1,30004264,2,2,6,7,7,1,4,7,5,2,9,6,12,5,7,6,3,10,10,7,10,11,4,4),(2415,'2015-03-10 21:49:29','2015-08-29 14:46:01',1,30003560,4,4,16,9,6,9,2,4,7,6,2,1,7,3,5,7,15,2,7,9,8,3,2,1),(2416,'2015-03-10 21:49:29','2015-08-29 14:46:01',1,30004130,53,92,80,60,52,52,46,56,100,97,113,104,95,127,155,96,104,76,70,99,94,104,88,93),(2417,'2015-03-10 21:49:29','2015-08-29 14:46:01',1,30001690,70,99,76,84,84,95,45,83,290,298,365,323,118,166,164,149,114,82,102,108,117,116,90,92),(2418,'2015-03-10 21:49:29','2015-08-29 14:46:01',1,30000111,4,10,12,23,26,5,9,3,26,23,19,32,24,11,10,13,75,7,11,13,23,19,16,15),(2419,'2015-03-10 21:49:29','2015-08-29 14:46:01',1,30003456,17,21,25,11,12,13,15,18,21,20,34,35,37,35,40,30,36,24,16,31,32,31,23,21),(2420,'2015-03-10 21:49:29','2015-08-29 14:46:01',1,30001221,4,1,4,3,3,5,1,1,14,19,12,9,39,7,18,12,15,9,10,12,12,11,11,5),(2421,'2015-03-10 21:49:29','2015-08-29 14:46:01',1,30003776,18,22,21,17,54,9,19,29,26,23,27,29,22,37,22,23,35,27,18,21,15,10,21,21),(2422,'2015-03-10 21:49:29','2015-03-10 21:49:29',1,30000370,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(2423,'2015-03-10 21:49:29','2015-08-29 14:46:01',1,30000592,0,2,2,0,0,0,0,0,0,1,0,0,0,1,2,0,0,0,0,0,1,2,0,0),(2424,'2015-03-10 21:49:29','2015-03-10 21:49:29',1,30001463,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(2425,'2015-03-10 21:49:29','2015-08-29 14:46:01',1,30001583,1,3,0,1,2,0,0,1,0,0,0,1,2,2,1,2,0,2,1,0,5,5,3,1),(2426,'2015-03-10 21:49:29','2015-08-29 14:46:01',1,30002040,1,6,6,10,14,18,2,0,0,2,0,2,2,0,3,2,3,0,1,3,0,0,1,2),(2427,'2015-03-10 21:49:29','2015-08-29 14:46:01',1,30002856,10,11,11,5,6,3,1,1,24,32,17,17,6,6,6,7,4,2,2,8,4,1,5,1),(2428,'2015-03-10 21:49:29','2015-08-29 14:46:01',1,30000686,7,3,6,12,10,8,13,14,8,5,1,4,3,3,13,12,12,1,3,8,7,1,8,7),(2429,'2015-03-10 21:49:29','2015-08-29 14:46:01',1,30001871,6,14,10,15,12,9,6,5,9,273,205,14,15,16,17,15,10,2,3,9,10,16,136,12),(2430,'2015-03-10 21:49:29','2015-08-29 14:46:01',1,30002392,1,6,17,8,5,9,5,3,5,6,2,7,14,4,5,12,9,11,11,4,11,7,11,6),(2431,'2015-03-10 21:49:29','2015-08-29 14:46:01',1,30003468,35,62,44,47,38,47,39,33,40,50,43,59,90,85,82,67,85,49,63,83,79,81,79,73),(2432,'2015-03-10 21:49:29','2015-08-29 14:46:01',1,30002391,13,8,21,15,10,19,7,9,21,14,9,19,81,30,23,49,29,15,17,10,27,15,21,16),(2433,'2015-03-10 21:49:29','2015-08-29 14:46:01',1,30002574,16,35,33,44,42,11,27,21,26,44,36,33,40,37,45,33,24,8,13,19,45,41,18,26),(2434,'2015-03-10 21:49:29','2015-08-29 14:46:01',1,30002576,5,28,19,12,15,6,15,15,11,23,12,11,25,18,21,20,16,4,13,13,20,19,11,15),(2435,'2015-03-10 21:49:29','2015-08-29 14:46:01',1,30002054,104,134,101,121,133,95,73,94,123,124,128,120,179,271,264,168,164,137,140,125,240,243,133,145),(2436,'2015-03-10 21:49:29','2015-08-29 14:46:01',1,30003103,22,11,14,5,6,16,10,21,29,16,31,18,98,95,92,53,37,36,39,109,90,62,75,71),(2437,'2015-03-10 21:49:29','2015-08-29 14:46:01',1,30002505,48,77,66,69,60,58,34,36,65,71,62,79,91,91,89,56,64,54,74,74,73,66,89,90),(2438,'2015-03-10 21:49:29','2015-08-29 14:46:01',1,30004988,13,23,10,17,10,13,9,6,12,18,12,22,37,18,18,17,31,14,15,11,5,7,16,16),(2439,'2015-03-10 21:49:29','2015-08-29 14:46:01',1,30004304,1,3,2,2,1,1,6,5,4,6,16,9,5,9,6,10,7,0,2,3,2,4,0,3),(2440,'2015-03-10 21:49:29','2015-08-29 14:46:01',1,30003067,189,142,149,125,104,112,114,128,195,167,173,136,167,317,257,199,156,165,205,203,197,189,165,165),(2441,'2015-03-10 21:49:29','2015-08-29 14:46:01',1,30002572,36,30,34,20,23,20,20,34,46,49,36,45,34,34,33,25,30,14,18,21,22,23,20,25),(2442,'2015-03-10 21:49:29','2015-08-29 14:46:01',1,30000150,39,41,43,40,38,36,11,20,68,79,70,62,59,47,51,77,65,36,31,40,74,69,63,64),(2443,'2015-03-10 21:49:29','2015-08-29 14:46:01',1,30002217,2,2,1,4,5,2,2,2,10,6,9,19,12,15,6,5,1,2,3,8,8,10,1,4),(2444,'2015-03-10 21:49:29','2015-08-29 14:46:01',1,30002774,177,171,168,146,136,132,72,110,174,232,202,209,231,280,245,241,188,151,165,222,240,213,184,181),(2445,'2015-03-10 21:49:29','2015-08-29 14:46:01',1,30002356,5,12,10,10,13,3,2,0,2,1,0,0,2,3,1,3,1,3,1,7,12,5,7,2),(2446,'2015-03-10 21:49:29','2015-08-29 14:46:01',1,30002871,14,11,10,14,14,11,3,7,19,22,15,10,20,21,21,8,8,2,3,21,32,29,17,13),(2447,'2015-03-10 21:49:29','2015-08-29 14:46:01',1,30004205,3,10,9,8,9,5,3,0,1,2,2,4,9,1,3,4,3,1,6,23,7,7,45,35),(2448,'2015-03-10 21:49:29','2015-08-29 14:46:01',1,30001159,39,28,83,41,36,43,54,75,133,157,124,99,158,169,164,175,217,101,156,111,132,108,164,109),(2449,'2015-03-10 21:49:29','2015-08-29 14:46:01',1,30045306,39,130,40,44,63,48,52,25,36,35,25,25,59,30,14,41,39,37,53,40,78,119,72,47),(2450,'2015-03-10 21:49:29','2015-08-29 14:46:01',1,30000134,85,113,79,76,73,73,83,67,90,91,111,105,137,123,138,128,81,54,81,110,102,90,82,95),(2451,'2015-03-10 21:49:29','2015-08-29 14:46:01',1,30004481,2,0,0,1,0,0,3,0,2,3,8,3,4,15,8,10,17,1,5,4,2,1,3,4),(2452,'2015-03-10 21:49:29','2015-08-29 14:46:01',1,30002796,45,41,48,48,35,46,37,59,97,106,114,92,119,117,85,95,119,39,74,106,129,100,109,94),(2453,'2015-03-10 21:49:29','2015-08-29 14:46:01',1,30000825,2,9,0,2,7,1,0,5,2,1,4,6,4,6,4,5,23,0,5,15,18,16,1,2),(2454,'2015-03-10 21:49:29','2015-08-29 14:46:01',1,30004767,1,0,1,3,2,2,4,8,13,15,13,9,14,4,4,7,8,0,1,4,6,6,10,8),(2455,'2015-03-10 21:49:29','2015-08-29 14:46:01',1,30000482,2,1,2,1,1,3,2,2,3,2,8,4,0,2,2,3,1,0,0,1,0,1,0,2),(2456,'2015-03-10 21:49:29','2015-08-29 14:46:01',1,30001767,16,10,7,21,17,8,10,3,6,9,6,8,1,5,4,11,4,0,4,6,6,11,8,11),(2457,'2015-03-10 21:49:29','2015-08-29 14:46:01',1,30000689,7,4,2,6,1,6,1,1,1,0,0,2,0,4,8,5,3,1,0,4,3,0,0,1),(2458,'2015-03-10 21:49:29','2015-08-29 14:46:01',1,30000788,24,146,39,43,19,93,20,48,16,27,19,26,48,39,55,40,48,7,33,35,64,68,26,49),(2459,'2015-03-10 21:49:29','2015-08-29 14:46:01',1,30000636,2,8,5,3,1,0,1,0,3,1,15,17,3,0,0,1,1,0,1,2,0,0,1,1),(2460,'2015-03-10 21:49:29','2015-08-29 14:46:01',1,30001934,3,7,2,3,5,3,3,2,5,2,5,5,4,6,5,3,4,3,1,6,7,3,7,4),(2461,'2015-03-10 21:49:29','2015-08-29 14:46:01',1,30004400,22,17,21,29,15,58,5,19,35,42,26,25,38,30,21,21,49,54,64,60,29,23,41,29),(2462,'2015-03-10 21:49:29','2015-08-29 14:46:01',1,30004361,3,3,3,2,4,3,3,4,5,2,0,0,6,1,2,2,0,1,1,2,2,3,4,4),(2463,'2015-03-10 21:49:29','2015-08-29 14:46:01',1,30001188,37,11,17,14,10,15,7,8,38,36,18,26,33,27,19,22,16,16,38,29,19,15,26,19),(2464,'2015-03-10 21:49:29','2015-08-29 14:46:01',1,30000520,11,8,14,3,4,4,1,6,2,3,3,4,3,2,2,1,1,1,2,12,0,2,2,2),(2465,'2015-03-10 21:49:29','2015-08-29 14:46:01',1,30004177,2,7,1,7,6,5,2,2,2,1,4,8,3,1,1,7,0,0,2,2,12,9,16,7),(2466,'2015-03-10 21:49:29','2015-08-29 14:46:01',1,30004636,21,13,30,66,47,80,1,8,55,71,65,36,100,78,66,42,107,86,54,101,119,78,56,73),(2467,'2015-03-10 21:49:29','2015-08-29 14:46:01',1,30004775,1,1,1,0,0,2,1,1,7,5,6,6,2,5,4,0,3,3,1,3,3,8,2,3),(2468,'2015-03-10 21:49:29','2015-08-29 14:46:01',1,30001752,1,2,8,8,5,9,11,20,0,0,1,2,2,1,2,0,2,1,0,0,1,2,1,0),(2469,'2015-03-10 21:49:29','2015-08-29 14:46:01',1,30001914,5,10,8,6,9,10,5,6,24,26,25,28,35,21,31,29,19,12,19,19,12,13,12,17),(2470,'2015-03-10 21:49:29','2015-08-29 14:46:01',1,30003784,17,13,15,14,15,14,31,35,30,26,17,31,10,33,22,18,14,8,11,7,10,11,15,15),(2471,'2015-03-10 21:49:29','2015-08-29 14:46:01',1,30002134,18,4,4,3,8,8,12,6,28,28,5,5,6,4,4,12,4,4,0,3,4,6,7,17),(2472,'2015-03-10 21:49:29','2015-08-29 14:46:01',1,30000952,14,9,8,7,4,5,1,4,14,10,12,5,4,0,0,9,8,5,3,4,2,5,3,8),(2473,'2015-03-10 21:49:29','2015-03-10 21:49:29',1,30001466,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(2474,'2015-03-10 21:49:29','2015-08-29 14:46:01',1,30003701,10,21,36,17,19,19,10,10,4,13,14,59,18,21,16,18,4,14,13,13,21,15,12,9),(2475,'2015-03-10 21:49:29','2015-08-29 14:46:01',1,30003308,2,6,0,4,2,0,7,3,4,2,2,3,0,3,3,1,2,1,0,1,2,2,0,0),(2476,'2015-03-10 21:49:29','2015-08-29 14:46:01',1,30003317,5,3,3,0,2,4,13,7,5,3,2,8,20,11,11,3,2,10,1,0,4,3,10,4),(2477,'2015-03-10 21:49:29','2015-08-29 14:46:01',1,30001782,2,2,0,4,2,1,0,1,1,11,0,0,25,0,6,3,3,0,1,7,1,6,3,1),(2478,'2015-03-10 21:49:29','2015-08-29 14:46:01',1,30003621,11,20,12,33,32,69,12,10,6,7,8,9,18,9,9,9,12,5,12,8,10,5,5,3),(2479,'2015-03-10 21:49:29','2015-08-29 14:46:01',1,30004023,24,81,26,31,21,44,25,34,14,10,16,20,21,6,14,17,16,33,20,11,33,17,9,8),(2480,'2015-03-10 21:49:29','2015-08-29 14:46:01',1,30002877,3,5,0,4,7,5,3,4,2,4,10,3,17,6,7,6,6,1,2,1,6,11,9,6),(2481,'2015-03-10 21:49:29','2015-08-29 14:46:01',1,30002908,41,58,39,28,34,58,46,50,90,81,68,61,104,163,142,105,70,107,103,85,90,90,58,78),(2482,'2015-03-10 21:49:29','2015-08-29 14:46:01',1,30000758,4,26,13,10,7,9,9,21,32,20,9,5,5,7,10,12,16,5,23,6,3,19,7,11),(2483,'2015-03-10 21:49:29','2015-08-29 14:46:01',1,30004723,5,1,5,6,6,7,9,9,2,6,7,3,1,7,7,10,6,4,0,2,2,3,3,9),(2484,'2015-03-10 21:49:29','2015-08-29 14:46:01',1,30004430,2,1,0,0,0,0,0,1,1,1,1,0,14,3,4,15,1,0,1,3,0,0,0,0),(2485,'2015-03-10 21:49:29','2015-08-29 14:46:01',1,30000626,27,41,31,38,25,23,25,23,20,20,135,99,24,60,50,40,36,26,21,31,20,23,95,60),(2486,'2015-03-10 21:49:29','2015-08-29 14:46:01',1,30002343,5,7,6,5,4,6,0,1,3,0,3,2,7,6,2,3,1,0,19,8,7,7,9,1),(2487,'2015-03-10 21:49:29','2015-08-29 14:46:01',1,30004933,23,38,21,15,11,14,9,13,24,17,10,14,27,18,15,30,14,4,7,16,24,23,11,9),(2488,'2015-03-10 21:49:29','2015-08-29 14:46:01',1,30003716,31,38,38,24,32,19,10,26,68,60,59,47,65,75,62,46,50,117,42,52,79,70,75,61),(2489,'2015-03-10 21:49:29','2015-08-29 14:46:01',1,30001110,4,0,14,7,6,13,10,1,10,6,11,8,0,14,8,26,17,5,4,10,1,9,10,14),(2490,'2015-03-10 21:49:29','2015-08-29 14:46:01',1,30004482,4,0,0,1,0,1,2,1,1,1,1,1,0,0,2,1,3,3,1,3,0,0,0,0),(2491,'2015-03-10 21:49:29','2015-03-10 21:49:29',1,30001508,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(2492,'2015-03-10 21:49:29','2015-08-29 14:46:01',1,30000709,6,7,11,6,6,10,20,10,0,0,7,10,5,3,3,9,5,2,1,4,17,5,4,4),(2493,'2015-03-10 21:49:29','2015-08-29 14:46:01',1,30003241,7,4,6,4,3,2,15,1,9,5,2,2,1,2,3,3,2,0,0,6,3,4,1,2),(2494,'2015-03-10 21:49:29','2015-03-10 21:49:29',1,30001481,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(2495,'2015-03-10 21:49:29','2015-08-29 14:46:01',1,30004120,17,9,6,8,5,3,9,8,5,24,4,7,12,9,18,16,10,22,18,14,11,9,8,6),(2496,'2015-03-10 21:49:29','2015-08-29 14:46:01',1,30000509,5,2,5,2,4,2,1,1,17,15,7,6,7,28,11,22,4,1,5,20,15,13,18,5),(2497,'2015-03-10 21:49:29','2015-03-10 21:49:29',1,30001640,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(2498,'2015-03-10 21:49:29','2015-08-29 14:46:01',1,30003933,4,27,1,6,5,7,8,21,3,3,50,34,9,7,3,7,3,10,11,15,13,14,3,3),(2499,'2015-03-10 21:49:29','2015-08-29 14:46:01',1,30000053,10,21,16,5,8,6,6,14,7,13,12,7,6,9,6,5,5,4,8,7,9,4,3,2),(2500,'2015-03-10 21:49:29','2015-08-29 14:46:01',1,30002984,6,12,8,5,14,7,9,1,24,21,23,35,38,20,9,16,6,23,22,18,5,7,7,9),(2501,'2015-03-10 21:49:29','2015-08-29 14:46:01',1,30001052,1,0,0,0,1,1,1,0,0,0,0,0,0,0,0,2,1,3,4,1,1,0,0,0),(2502,'2015-03-10 21:49:29','2015-08-29 14:46:01',1,30001428,108,119,122,120,97,107,83,106,124,111,110,123,148,142,149,124,102,101,118,131,140,151,123,116),(2503,'2015-03-10 21:49:29','2015-08-29 14:46:01',1,30041407,22,36,44,27,27,44,12,21,41,37,31,33,27,33,33,53,27,14,28,47,49,45,28,26),(2504,'2015-03-10 21:49:29','2015-08-29 14:46:01',1,30045329,189,215,146,137,120,80,144,132,167,169,184,170,231,212,221,227,182,114,176,204,181,178,155,181),(2505,'2015-03-10 21:49:29','2015-08-29 14:46:01',1,30005227,8,14,11,21,17,29,16,16,31,27,26,11,26,26,23,18,15,19,29,22,29,20,21,13),(2506,'2015-03-10 21:49:29','2015-08-29 14:46:01',1,30003513,8,14,10,2,1,3,8,14,13,13,5,5,6,10,6,12,3,11,3,6,8,9,12,14),(2507,'2015-03-10 21:49:29','2015-03-10 21:49:29',1,30000400,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(2508,'2015-03-10 21:49:29','2015-08-29 14:46:01',1,30045313,24,5,7,8,15,7,9,10,26,34,27,27,32,22,17,13,31,7,20,29,29,44,26,33),(2509,'2015-03-10 21:49:29','2015-08-29 14:46:01',1,30003072,18,44,62,37,49,28,19,26,46,34,37,30,40,46,44,44,20,23,23,30,50,35,25,29),(2510,'2015-03-10 21:49:29','2015-03-10 21:49:29',1,30000422,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(2511,'2015-03-10 21:49:29','2015-08-29 14:46:01',1,30001056,10,1,2,2,4,6,3,1,9,4,3,2,7,6,10,9,6,3,25,0,7,5,2,7),(2512,'2015-03-10 21:49:29','2015-08-29 14:46:01',1,30003815,10,32,17,21,14,13,6,23,14,17,21,18,33,40,30,39,30,26,21,6,19,25,7,13),(2513,'2015-03-10 21:49:29','2015-08-29 14:46:01',1,30000254,11,23,15,12,3,30,7,3,12,16,18,25,16,13,14,9,16,15,7,12,31,27,13,27),(2514,'2015-03-10 21:49:29','2015-08-29 14:46:01',1,30003203,10,2,1,3,2,9,0,3,1,1,1,2,1,1,1,1,5,11,12,0,8,12,1,3),(2515,'2015-03-10 21:49:29','2015-08-29 14:46:01',1,30003614,10,27,19,19,32,54,19,19,20,27,6,4,8,9,9,8,10,9,8,12,9,5,19,25),(2516,'2015-03-10 21:49:29','2015-08-29 14:46:01',1,30003987,19,55,70,28,13,30,24,18,6,25,18,6,1,4,3,7,3,12,5,0,0,0,4,2),(2517,'2015-03-10 21:49:29','2015-08-29 14:46:01',1,30004583,34,9,7,2,13,4,18,10,145,11,15,9,271,21,23,17,18,37,57,25,13,9,12,8),(2518,'2015-03-10 21:49:29','2015-08-29 14:46:01',1,30003796,28,66,40,41,51,39,16,27,48,37,44,36,74,61,84,58,37,43,45,45,53,67,57,81),(2519,'2015-03-10 21:49:29','2015-08-29 14:46:01',1,30005005,21,32,57,42,36,64,21,26,59,71,51,58,76,82,74,53,37,29,54,44,71,69,59,56),(2520,'2015-03-10 21:49:29','2015-08-29 14:46:01',1,30002647,37,23,18,29,27,25,15,22,35,32,24,14,21,31,26,23,33,33,32,29,27,17,33,36),(2521,'2015-03-10 21:49:29','2015-08-29 14:46:01',1,30000169,30,28,40,39,23,35,26,39,65,63,14,18,21,41,26,32,29,25,35,33,34,29,26,21),(2522,'2015-03-10 21:49:29','2015-08-29 14:46:01',1,30000048,32,44,39,33,31,22,52,24,52,58,45,48,96,57,65,53,44,38,31,45,37,40,43,25),(2523,'2015-03-10 21:49:29','2015-03-10 21:49:29',1,30001602,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(2524,'2015-03-10 21:49:29','2015-08-29 14:46:01',1,30002907,8,66,12,10,11,10,11,15,46,49,56,45,24,40,25,32,22,19,25,16,17,22,41,30),(2525,'2015-03-10 21:49:29','2015-08-29 14:46:01',1,30001374,464,472,536,537,447,422,300,308,500,618,590,531,594,727,664,670,588,364,488,602,736,693,499,449),(2526,'2015-03-10 21:49:29','2015-08-29 14:46:01',1,30003311,12,33,5,12,5,11,10,4,23,18,8,12,26,32,31,12,3,12,18,30,12,17,17,13),(2527,'2015-03-10 21:49:29','2015-08-29 14:46:01',1,30001422,53,58,42,42,40,52,34,40,60,63,35,27,36,36,58,33,25,60,92,35,42,30,45,27),(2528,'2015-03-10 21:49:29','2015-08-29 14:46:01',1,30002766,38,62,64,50,50,59,32,54,68,63,73,52,86,89,91,100,84,51,72,67,93,79,57,51),(2529,'2015-03-10 21:49:29','2015-08-29 14:46:01',1,30000159,157,129,129,139,156,119,74,153,154,181,187,143,144,217,177,203,157,120,131,190,178,181,166,163),(2530,'2015-03-10 21:49:29','2015-08-29 14:46:01',1,30002786,770,990,908,803,752,647,487,557,996,1039,978,872,1108,1210,1175,1173,896,745,909,1070,1133,1042,909,841),(2531,'2015-03-10 21:49:29','2015-08-29 14:46:01',1,30045337,62,481,47,70,74,75,83,57,84,101,69,80,94,160,122,145,75,61,52,129,112,103,107,68),(2532,'2015-03-10 21:49:29','2015-08-29 14:46:01',1,30003641,17,1,1,1,1,1,1,2,2,1,2,2,1,0,2,2,0,4,0,0,0,1,3,3),(2533,'2015-03-10 21:49:29','2015-08-29 14:46:01',1,30000138,208,242,246,258,224,225,183,196,223,233,254,230,300,309,308,303,254,183,200,236,284,302,210,234),(2534,'2015-03-10 21:49:29','2015-08-29 14:46:01',1,30002372,5,2,13,14,5,6,7,1,17,14,8,9,186,206,157,26,5,20,6,8,23,27,7,5),(2535,'2015-03-10 21:49:29','2015-08-29 14:46:01',1,30001146,6,6,1,1,5,2,5,1,0,2,2,4,6,2,1,21,2,0,0,0,3,2,5,6),(2536,'2015-03-10 21:49:29','2015-08-29 14:46:01',1,30004832,2,0,1,0,1,1,3,3,3,2,1,0,4,3,3,2,6,1,3,1,2,2,0,1),(2537,'2015-03-10 21:49:29','2015-08-29 14:46:01',1,30000090,0,7,13,8,5,24,7,10,14,16,42,15,18,10,15,14,12,13,7,9,23,12,11,16),(2538,'2015-03-10 21:49:29','2015-08-29 14:46:01',1,30001731,6,20,12,10,15,5,6,12,12,11,12,12,12,8,11,11,10,11,5,11,3,5,8,12),(2539,'2015-03-10 21:49:29','2015-08-29 14:46:01',1,30002396,51,52,49,46,38,59,56,38,99,115,50,38,93,75,53,55,59,68,48,83,60,56,41,28),(2540,'2015-03-10 21:49:29','2015-08-29 14:46:01',1,30004294,2,6,4,2,1,6,6,6,8,12,2,2,5,8,9,2,12,5,6,2,9,22,6,7),(2541,'2015-03-10 21:49:29','2015-08-29 14:46:01',1,30002527,138,160,139,121,114,145,114,103,178,175,167,166,163,189,188,206,200,91,151,156,186,178,159,157),(2542,'2015-03-10 21:49:29','2015-08-29 14:46:01',1,30003377,144,144,184,146,160,116,111,136,170,156,115,119,240,258,234,229,132,124,157,158,240,212,137,139),(2543,'2015-03-10 21:49:29','2015-08-29 14:46:01',1,30002208,56,74,81,133,111,40,62,52,61,64,111,106,114,107,86,81,72,66,64,79,111,93,87,83),(2544,'2015-03-10 21:49:29','2015-08-29 14:46:01',1,30003445,5,8,6,10,13,2,4,5,10,14,22,18,11,18,10,9,8,13,10,7,11,6,3,5),(2545,'2015-03-10 21:49:29','2015-08-29 14:46:01',1,30003094,10,16,11,22,18,4,3,5,3,4,8,5,19,16,20,9,2,32,25,16,20,13,10,5),(2546,'2015-03-10 21:49:29','2015-08-29 14:46:01',1,30001655,23,42,43,57,47,39,34,22,55,48,58,58,45,56,64,52,43,16,63,63,74,74,70,43),(2547,'2015-03-10 21:49:29','2015-08-29 14:46:01',1,30005053,28,30,24,14,12,26,22,48,48,33,41,38,33,44,41,47,33,16,22,37,31,36,30,29),(2548,'2015-03-10 21:49:29','2015-08-29 14:46:01',1,30000895,37,31,39,42,36,26,13,35,19,26,26,30,47,77,43,36,35,19,25,27,63,67,28,19),(2549,'2015-03-10 21:49:29','2015-08-29 14:46:01',1,30045343,11,3,15,11,19,16,28,8,39,32,26,19,21,32,26,12,18,34,18,20,24,16,19,34),(2550,'2015-03-10 21:49:29','2015-08-29 14:46:01',1,30005246,75,72,85,89,66,82,52,61,184,178,173,168,174,112,99,97,58,72,75,130,85,90,112,108),(2551,'2015-03-10 21:49:29','2015-08-29 14:46:01',1,30002793,20,41,54,44,35,33,19,14,43,54,21,22,58,45,34,32,34,16,22,22,30,36,32,26),(2552,'2015-03-10 21:49:29','2015-08-29 14:46:01',1,30002788,852,1118,1118,1053,1016,901,630,790,1211,1390,1260,1194,1311,1420,1379,1363,1201,865,934,1181,1381,1457,1246,1260),(2553,'2015-03-10 21:49:29','2015-08-29 14:46:01',1,30000182,215,258,278,256,264,152,196,175,316,389,355,352,304,342,347,299,300,178,162,229,310,248,261,259),(2554,'2015-03-10 21:49:29','2015-08-29 14:46:01',1,30002072,29,36,40,36,44,38,32,19,34,28,42,37,31,52,51,48,40,34,26,46,58,58,66,62),(2555,'2015-03-10 21:49:29','2015-08-29 14:46:01',1,30004982,58,76,45,38,37,74,48,39,142,75,42,30,96,36,58,93,55,42,57,147,95,67,64,64),(2556,'2015-03-10 21:49:29','2015-08-29 14:46:01',1,30002672,22,21,31,14,17,26,10,18,31,29,17,13,29,33,17,25,19,19,25,36,22,25,17,19),(2557,'2015-03-10 21:49:29','2015-08-29 14:46:01',1,30002559,18,31,28,40,11,12,9,9,48,65,14,11,19,17,31,14,16,19,9,24,14,17,8,10),(2558,'2015-03-10 21:49:29','2015-08-29 14:46:01',1,30004102,23,34,20,15,9,13,7,5,35,40,26,18,22,20,27,27,31,24,15,22,26,18,13,12),(2559,'2015-03-10 21:49:29','2015-08-29 14:46:01',1,30045316,105,104,89,70,101,45,71,74,145,122,70,63,214,187,93,110,87,75,148,62,71,80,75,60),(2560,'2015-03-10 21:49:29','2015-08-29 14:46:01',1,30002738,24,42,37,24,24,61,23,21,44,50,44,22,66,25,36,33,35,30,41,60,39,31,46,37),(2561,'2015-03-10 21:49:29','2015-08-29 14:46:01',1,30003740,7,12,7,14,25,26,13,5,27,46,31,24,34,41,44,29,14,5,27,27,35,26,25,22),(2562,'2015-03-10 21:49:29','2015-08-29 14:46:01',1,30003788,37,11,13,18,26,25,29,20,13,36,24,37,29,44,37,13,30,19,18,21,28,35,26,22),(2563,'2015-03-10 21:49:29','2015-08-29 14:46:01',1,30003219,3,6,14,11,4,6,8,13,15,15,17,18,10,6,10,17,4,23,32,16,29,26,9,8),(2564,'2015-03-10 21:49:29','2015-08-29 14:46:01',1,30001991,28,34,17,21,28,16,18,17,8,6,6,7,8,7,3,5,2,16,12,4,12,10,9,7),(2565,'2015-03-10 21:49:29','2015-08-29 14:46:01',1,30002439,93,49,124,64,70,100,59,62,75,99,91,111,43,61,52,91,108,59,56,98,204,166,86,73),(2566,'2015-03-10 21:49:29','2015-08-29 14:46:01',1,30000062,7,3,1,15,22,12,6,5,9,10,5,11,18,29,25,44,5,31,13,5,6,11,0,1),(2567,'2015-03-10 21:49:29','2015-08-29 14:46:01',1,30001843,5,12,4,6,5,23,10,6,6,5,6,7,11,10,9,16,16,4,2,9,11,10,2,3),(2568,'2015-03-10 21:49:29','2015-08-29 14:46:01',1,30004726,18,7,7,6,11,14,7,13,10,12,10,9,13,17,15,27,8,12,6,15,23,22,12,8),(2569,'2015-03-10 21:49:29','2015-08-29 14:46:01',1,30000252,22,44,45,28,24,56,42,84,24,43,63,33,73,41,35,37,55,33,51,33,93,65,79,55),(2570,'2015-03-10 21:49:29','2015-08-29 14:46:01',1,30003861,36,71,45,48,53,72,18,25,75,82,76,57,83,59,61,48,35,50,72,73,54,48,42,40),(2571,'2015-03-10 21:49:29','2015-08-29 14:46:01',1,30003176,8,4,7,7,8,7,11,12,5,6,10,8,7,9,5,2,1,3,5,6,5,5,13,12),(2572,'2015-03-10 21:49:29','2015-08-29 14:46:01',1,30000277,6,32,11,18,31,66,20,26,11,10,1,4,9,6,9,4,11,8,4,34,1,4,7,12),(2573,'2015-03-10 21:49:29','2015-08-29 14:46:01',1,30003140,17,8,9,17,21,19,8,1,14,15,7,15,10,4,1,4,9,6,9,5,6,5,11,1),(2574,'2015-03-10 21:49:29','2015-08-29 14:46:01',1,30004556,15,24,17,11,16,11,9,15,12,8,11,11,8,9,8,8,17,20,57,30,22,22,4,4),(2575,'2015-03-10 21:49:29','2015-08-29 14:46:01',1,30045317,48,12,14,16,13,16,7,14,64,58,28,27,44,39,34,22,22,15,39,35,24,30,14,22),(2576,'2015-03-10 21:49:29','2015-08-29 14:46:01',1,30002333,0,1,0,0,1,0,3,1,0,0,2,1,3,0,0,0,1,0,1,0,1,3,2,0),(2577,'2015-03-10 21:49:29','2015-08-29 14:46:01',1,30002595,4,9,14,12,3,12,0,7,4,6,6,10,14,81,17,18,46,1,5,6,11,10,19,18),(2578,'2015-03-10 21:49:29','2015-08-29 14:46:01',1,30003452,14,14,12,12,11,12,17,11,25,21,15,14,15,18,24,27,14,8,12,17,25,31,12,14),(2579,'2015-03-10 21:49:29','2015-08-29 14:46:01',1,30002792,63,115,127,121,90,110,70,57,132,138,111,126,147,137,136,107,91,63,76,88,126,138,110,94),(2580,'2015-03-10 21:49:29','2015-08-29 14:46:01',1,30003935,6,14,1,10,15,16,21,7,7,22,15,18,17,17,13,11,6,8,15,23,25,24,5,6),(2581,'2015-03-10 21:49:29','2015-08-29 14:46:01',1,30003524,202,181,173,214,241,186,108,126,190,213,218,229,194,238,244,262,215,140,187,227,237,242,207,199),(2582,'2015-03-10 21:49:29','2015-08-29 14:46:01',1,30002192,114,186,231,207,168,224,119,103,167,159,138,150,263,236,253,204,170,136,137,190,184,204,154,141),(2583,'2015-03-10 21:49:29','2015-08-29 14:46:01',1,30001696,17,34,28,37,29,20,8,32,39,41,19,20,26,34,30,33,41,13,18,56,69,52,30,31),(2584,'2015-03-10 21:49:29','2015-08-29 14:46:01',1,30000073,74,39,38,28,21,25,23,12,62,61,83,32,144,70,87,62,45,57,54,55,41,42,47,44),(2585,'2015-03-10 21:49:29','2015-08-29 14:46:01',1,30002331,1,2,1,2,8,5,4,4,2,5,10,7,7,5,5,2,1,10,8,5,4,4,2,1),(2586,'2015-03-10 21:49:29','2015-08-29 14:46:01',1,30001236,44,54,37,37,40,39,32,44,92,94,92,57,70,91,112,68,57,34,46,48,39,64,67,68),(2587,'2015-03-10 21:49:29','2015-08-29 14:46:01',1,30002276,50,19,16,36,32,20,33,26,37,38,31,26,57,74,57,52,27,14,28,38,36,45,28,16),(2588,'2015-03-10 21:49:29','2015-08-29 14:46:01',1,30001389,878,866,992,1037,902,863,589,663,874,1082,964,864,989,1202,1132,1227,1041,656,866,937,1206,1099,949,849),(2589,'2015-03-10 21:49:29','2015-08-29 14:46:01',1,30002739,132,169,175,149,130,166,97,119,188,207,171,127,225,177,153,198,177,143,142,175,166,155,213,197),(2590,'2015-03-10 21:49:29','2015-08-29 14:46:01',1,30002087,65,34,35,31,34,45,37,24,77,77,70,51,69,85,61,84,68,57,73,83,65,63,54,62),(2591,'2015-03-10 21:49:29','2015-08-29 14:46:01',1,30002815,59,82,68,88,93,59,93,74,83,82,107,87,94,120,113,91,84,67,61,82,92,95,72,57),(2592,'2015-03-10 21:49:29','2015-08-29 14:46:01',1,30005014,17,1,4,2,2,4,7,3,6,8,4,6,4,15,11,10,12,8,2,4,4,5,6,10),(2593,'2015-03-10 21:49:29','2015-08-29 14:46:01',1,30002546,41,69,58,49,52,85,34,57,89,106,84,75,86,132,121,115,48,62,99,111,91,95,74,87),(2594,'2015-03-10 21:49:29','2015-08-29 14:46:01',1,30000165,86,187,137,137,149,144,93,80,153,162,144,142,186,160,157,165,124,116,140,162,195,174,156,129),(2595,'2015-03-10 21:49:29','2015-08-29 14:46:01',1,30000093,0,1,5,5,2,10,3,1,2,3,7,7,5,6,8,3,4,3,0,2,8,5,2,3),(2596,'2015-03-10 21:49:29','2015-08-29 14:46:01',1,30002756,72,169,71,89,88,65,72,119,67,85,68,48,127,180,142,127,78,104,105,104,100,87,63,48),(2597,'2015-03-10 21:49:29','2015-08-29 14:46:01',1,30004243,5,14,3,2,11,4,7,1,7,9,10,10,1,10,8,4,12,7,5,9,10,8,7,7),(2598,'2015-03-10 21:49:29','2015-08-29 14:46:01',1,30001436,6,8,7,8,5,1,6,1,25,29,14,19,7,16,15,12,11,16,22,32,16,12,17,17),(2599,'2015-03-10 21:49:29','2015-08-29 14:46:01',1,30001387,40,89,102,98,95,42,30,21,58,72,46,32,39,82,65,75,68,51,44,57,74,62,64,49),(2600,'2015-03-10 21:49:29','2015-08-29 14:46:01',1,30001365,129,209,251,172,150,213,133,169,205,241,276,244,249,283,279,268,203,148,168,162,197,194,150,124),(2601,'2015-03-10 21:49:29','2015-08-29 14:46:01',1,30002804,19,48,47,42,43,63,34,41,60,75,48,58,53,105,92,70,65,50,46,52,51,50,74,84),(2602,'2015-03-10 21:49:29','2015-08-29 14:46:01',1,30001426,123,132,170,174,138,136,100,116,131,137,125,130,179,198,198,154,138,109,149,136,185,181,123,124),(2603,'2015-03-10 21:49:29','2015-08-29 14:46:01',1,30001397,42,59,60,50,47,47,31,64,67,71,78,90,110,87,85,85,87,38,58,70,62,67,66,68),(2604,'2015-03-10 21:49:29','2015-08-29 14:46:01',1,30002402,41,42,61,58,43,51,35,37,45,52,67,38,240,62,67,65,59,47,19,53,64,58,98,100),(2605,'2015-03-10 21:49:29','2015-08-29 14:46:01',1,30002777,80,87,99,69,71,34,86,54,115,120,137,98,121,109,114,133,88,53,71,117,101,90,85,72),(2606,'2015-03-10 21:49:29','2015-08-29 14:46:01',1,30001726,10,48,30,35,28,10,14,11,22,33,21,15,14,13,18,18,14,12,27,23,24,20,9,13),(2607,'2015-03-10 21:49:29','2015-08-29 14:46:01',1,30000285,25,15,15,4,6,7,10,15,13,9,5,7,13,15,16,15,12,2,8,9,9,9,11,11),(2608,'2015-03-10 21:49:29','2015-08-29 14:46:01',1,30000119,261,282,250,277,273,217,158,176,336,306,304,260,375,361,310,404,304,208,205,291,367,392,318,337),(2609,'2015-03-10 21:49:29','2015-08-29 14:46:01',1,30004157,20,19,25,19,23,26,1,16,33,25,35,34,23,30,36,50,21,14,15,39,36,33,25,22),(2610,'2015-03-10 21:49:29','2015-08-29 14:46:01',1,30005256,9,26,13,13,15,30,17,4,55,35,22,22,23,24,24,31,14,15,17,16,23,15,17,22),(2611,'2015-03-10 21:49:29','2015-08-29 14:46:01',1,30002985,6,7,14,6,1,2,5,4,5,3,10,11,46,8,3,6,6,12,14,12,7,7,25,25),(2612,'2015-03-10 21:49:29','2015-08-29 14:46:01',1,30005169,2,4,2,2,6,1,4,1,13,14,8,6,7,3,2,2,4,1,1,1,1,1,12,14),(2613,'2015-03-10 21:49:29','2015-08-29 14:46:01',1,30002886,0,2,6,9,6,8,20,13,6,2,10,7,3,13,1,10,5,0,0,0,1,3,2,2),(2614,'2015-03-10 21:49:29','2015-08-29 14:46:01',1,30002594,8,11,22,8,8,15,13,39,15,12,11,8,48,36,41,26,38,10,26,113,17,19,22,23),(2615,'2015-03-10 21:49:29','2015-08-29 14:46:01',1,30002524,145,213,156,197,193,170,135,98,239,230,227,224,264,269,281,260,226,184,212,232,245,213,241,215),(2616,'2015-03-10 21:49:29','2015-08-29 14:46:01',1,30001656,36,70,60,43,37,54,39,53,69,83,80,73,76,121,147,97,75,77,74,117,111,123,126,100),(2617,'2015-03-10 21:49:29','2015-08-29 14:46:01',1,30003813,4,3,2,4,5,10,3,3,3,7,9,16,11,11,4,8,12,3,7,3,10,8,7,8),(2618,'2015-03-10 21:49:29','2015-08-29 14:46:01',1,30000622,4,2,8,3,1,3,0,9,1,3,0,2,2,6,9,5,8,5,2,8,4,2,2,2),(2619,'2015-03-10 21:49:29','2015-08-29 14:46:01',1,30045351,10,5,12,18,10,10,15,15,12,18,10,7,11,24,13,21,7,13,9,20,21,17,31,23),(2620,'2015-03-10 21:49:29','2015-08-29 14:46:01',1,30003765,30,27,51,33,31,41,10,27,43,48,44,34,48,45,77,80,35,29,34,33,28,36,40,33),(2621,'2015-03-10 21:49:29','2015-08-29 14:46:01',1,30000956,8,7,6,12,12,5,6,6,13,9,7,11,3,3,2,2,7,1,1,4,8,8,13,13),(2622,'2015-03-10 21:49:29','2015-08-29 14:46:01',1,30002642,235,176,184,187,171,200,153,172,219,196,208,206,245,237,260,225,245,162,242,192,220,203,226,207),(2623,'2015-03-10 21:49:29','2015-08-29 14:46:01',1,30004535,19,10,9,8,5,7,2,12,12,4,16,14,5,6,6,5,11,2,3,4,13,10,11,10),(2624,'2015-03-10 21:49:29','2015-08-29 14:46:01',1,30001812,27,35,18,20,15,18,16,23,10,27,41,16,10,18,22,7,19,2,5,12,13,17,17,10),(2625,'2015-03-10 21:49:29','2015-08-29 14:46:01',1,30004905,1,10,1,6,4,6,3,3,2,4,0,0,1,12,2,0,0,2,5,9,1,1,3,4),(2626,'2015-03-10 21:49:29','2015-08-29 14:46:01',1,30004162,3,2,23,4,22,5,1,14,0,1,3,4,0,0,3,0,4,0,3,0,4,4,1,2),(2627,'2015-03-10 21:49:29','2015-08-29 14:46:01',1,30001920,7,14,6,8,9,10,9,14,15,24,25,12,24,27,25,19,14,17,22,43,17,24,11,14),(2628,'2015-03-10 21:49:29','2015-08-29 14:46:01',1,30001977,68,164,62,106,80,165,53,67,93,83,67,45,96,75,79,48,60,66,48,74,54,60,65,52),(2629,'2015-03-10 21:49:29','2015-08-29 14:46:01',1,30003206,8,1,0,5,5,5,8,16,8,11,0,1,4,2,3,5,3,13,17,2,0,0,0,1),(2630,'2015-03-10 21:49:29','2015-08-29 14:46:01',1,30000847,10,2,15,13,12,10,4,2,13,10,10,15,7,6,3,10,7,2,5,5,2,10,13,14),(2631,'2015-03-10 21:49:29','2015-03-10 21:49:29',1,30001505,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(2632,'2015-03-10 21:49:29','2015-08-29 14:46:01',1,30000489,0,1,2,0,0,1,0,0,0,2,0,0,2,1,1,1,2,2,6,5,1,2,1,2),(2633,'2015-03-10 21:49:29','2015-08-29 14:46:01',1,30004755,6,2,7,9,9,4,8,9,27,22,16,16,32,45,33,47,33,18,21,19,46,50,16,13),(2634,'2015-03-10 21:49:29','2015-08-29 14:46:01',1,30002887,1,1,1,2,1,1,0,0,1,1,0,3,7,7,1,5,0,0,0,0,0,1,2,3),(2635,'2015-03-10 21:49:29','2015-08-29 14:46:01',1,30001195,2,4,1,5,2,7,4,5,7,46,10,9,13,8,10,10,8,11,7,16,8,4,5,4),(2636,'2015-03-10 21:49:29','2015-08-29 14:46:01',1,30002026,2,8,7,5,5,5,2,1,9,8,3,6,3,2,2,2,5,3,2,2,4,6,4,2),(2637,'2015-03-10 21:49:29','2015-08-29 14:46:01',1,30002174,6,30,8,14,14,12,17,19,26,23,31,27,29,42,44,19,18,3,9,31,20,28,12,8),(2638,'2015-03-10 21:49:29','2015-08-29 14:46:01',1,30004215,2,5,4,8,8,7,0,4,1,0,0,2,8,4,2,5,2,1,7,1,4,3,24,28),(2639,'2015-03-10 21:49:29','2015-08-29 14:46:01',1,30004637,19,11,33,80,65,39,1,7,328,238,215,202,228,325,306,152,170,157,416,444,126,83,60,73),(2640,'2015-03-10 21:49:29','2015-08-29 14:46:01',1,30003142,13,6,13,19,26,14,6,0,1,3,5,4,6,2,2,3,9,6,6,3,4,1,8,3),(2641,'2015-03-10 21:49:29','2015-08-29 14:46:01',1,30000594,1,0,2,4,2,3,0,1,6,6,3,2,2,8,5,3,4,4,4,9,6,5,0,1),(2642,'2015-03-10 21:49:29','2015-08-29 14:46:01',1,30004410,4,13,13,15,19,3,10,30,10,7,9,7,10,9,16,18,9,13,8,3,13,14,25,15),(2643,'2015-03-10 21:49:29','2015-03-10 21:49:29',1,30000390,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(2644,'2015-03-10 21:49:29','2015-03-10 21:49:29',1,30000366,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(2645,'2015-03-10 21:49:29','2015-08-29 14:46:01',1,30001112,0,1,8,5,4,1,15,0,4,4,2,1,0,2,3,4,4,1,4,3,0,0,5,4),(2646,'2015-03-10 21:49:29','2015-08-29 14:46:01',1,30000843,6,2,3,4,8,2,5,10,2,1,3,4,4,4,6,11,7,14,2,7,7,7,2,2),(2647,'2015-03-10 21:49:29','2015-03-10 21:49:29',1,30001456,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(2648,'2015-03-10 21:49:29','2015-08-29 14:46:01',1,30003634,9,4,8,11,9,10,7,10,6,6,2,2,1,1,0,3,4,2,3,7,3,1,10,14),(2649,'2015-03-10 21:49:29','2015-08-29 14:46:01',1,30002942,14,22,8,14,15,16,10,31,26,21,26,23,28,19,20,22,13,1,10,25,21,16,23,12),(2650,'2015-03-10 21:49:29','2015-08-29 14:46:01',1,30004513,2,3,2,0,1,2,1,3,1,3,1,2,0,1,4,5,4,2,0,0,0,0,0,1),(2651,'2015-03-10 21:49:29','2015-08-29 14:46:01',1,30000677,8,18,7,3,9,7,2,5,3,2,8,12,4,3,6,3,7,3,8,1,3,4,8,7),(2652,'2015-03-10 21:49:29','2015-03-10 21:49:29',1,30000386,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(2653,'2015-03-10 21:49:29','2015-08-29 14:46:02',1,30001750,14,6,50,17,15,28,16,18,4,3,3,5,9,17,22,4,8,2,10,12,8,9,7,5),(2654,'2015-03-10 21:49:29','2015-08-29 14:46:02',1,30001043,1,8,8,11,11,1,4,0,10,11,8,4,17,17,13,0,7,4,2,1,7,4,2,3),(2655,'2015-03-10 21:49:29','2015-08-29 14:46:02',1,30004373,1,8,4,5,4,2,1,6,8,6,7,4,26,11,5,9,4,8,4,6,2,3,11,10),(2656,'2015-03-10 21:49:29','2015-08-29 14:46:02',1,30004589,35,40,45,82,82,29,7,22,60,80,38,26,61,28,23,43,21,28,47,43,17,20,10,11),(2657,'2015-03-10 21:49:29','2015-08-29 14:46:02',1,30001941,7,11,8,9,4,6,10,12,12,17,24,22,9,16,20,20,26,6,16,12,20,16,24,21),(2658,'2015-03-10 21:49:29','2015-08-29 14:46:02',1,30001230,27,29,42,34,22,25,29,36,80,44,30,36,50,48,55,63,31,33,267,163,50,54,39,35),(2659,'2015-03-10 21:49:29','2015-08-29 14:46:02',1,30000538,6,0,4,2,1,1,2,2,3,1,3,2,4,12,13,5,6,10,8,9,1,8,14,18),(2660,'2015-03-10 21:49:29','2015-08-29 14:46:02',1,30001013,8,21,4,16,8,11,10,13,2,4,6,8,1,4,3,2,5,0,0,0,1,1,1,0),(2661,'2015-03-10 21:49:29','2015-08-29 14:46:02',1,30002285,2,9,5,4,7,6,7,5,8,3,8,8,6,5,10,3,3,10,8,4,8,6,3,3),(2662,'2015-03-10 21:49:29','2015-08-29 14:46:02',1,30001800,0,0,0,3,3,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,1),(2663,'2015-03-10 21:49:29','2015-08-29 14:46:02',1,30004312,14,31,14,21,54,16,13,31,20,33,25,27,19,73,56,9,5,6,24,17,23,19,12,5),(2664,'2015-03-10 21:49:29','2015-08-29 14:46:02',1,30004385,47,17,18,18,21,20,34,21,8,15,7,9,21,14,20,29,28,7,19,22,14,18,10,8),(2665,'2015-03-10 21:49:29','2015-08-29 14:46:02',1,30004460,2,7,10,3,4,5,2,12,4,2,7,9,7,21,11,23,21,27,10,4,21,10,9,9),(2666,'2015-03-10 21:49:29','2015-08-29 14:46:02',1,30005158,14,30,19,21,20,16,17,8,23,25,18,10,2,16,28,2,13,5,12,14,15,18,6,12),(2667,'2015-03-10 21:49:29','2015-08-29 14:46:02',1,30004514,11,9,14,7,9,16,21,7,11,9,13,9,11,53,63,37,10,8,4,5,13,18,6,12),(2668,'2015-03-10 21:49:29','2015-08-29 14:46:02',1,30001055,4,3,3,2,2,14,2,8,11,7,2,6,4,7,13,27,4,3,1,0,1,2,6,5),(2669,'2015-03-10 21:49:29','2015-08-29 14:46:02',1,30001225,2,3,5,8,8,5,4,1,23,28,30,21,38,21,28,42,18,36,53,31,41,42,42,25),(2670,'2015-03-10 21:49:29','2015-08-29 14:46:02',1,30003864,47,95,50,48,49,60,34,45,257,287,337,309,101,81,71,96,79,66,66,75,66,82,51,60),(2671,'2015-03-10 21:49:29','2015-08-29 14:46:02',1,30000148,321,436,407,357,368,354,286,323,435,449,402,386,460,597,536,581,461,302,325,469,515,521,388,389),(2672,'2015-03-10 21:49:29','2015-08-29 14:46:02',1,30004125,6,23,3,16,12,12,13,8,7,9,5,4,22,12,10,7,6,2,8,12,4,5,14,16),(2673,'2015-03-10 21:49:29','2015-08-29 14:46:02',1,30003554,10,10,25,22,14,9,5,17,15,17,23,29,47,28,20,26,24,9,9,16,25,31,30,20),(2674,'2015-03-10 21:49:29','2015-08-29 14:46:02',1,30001050,7,10,5,9,5,7,16,8,22,22,26,23,47,21,26,14,8,9,44,31,13,10,18,12),(2675,'2015-03-10 21:49:29','2015-08-29 14:46:02',1,30001385,75,120,107,95,72,85,50,56,109,103,168,154,78,151,160,126,132,93,88,112,154,146,105,99),(2676,'2015-03-10 21:49:29','2015-08-29 14:46:02',1,30000071,1,0,3,0,3,1,0,2,5,23,10,7,0,7,7,1,1,0,0,0,4,3,3,2),(2677,'2015-03-10 21:49:29','2015-08-29 14:46:02',1,30000060,24,36,25,48,74,52,35,24,38,33,53,50,58,79,79,72,28,65,34,41,73,65,26,26),(2678,'2015-03-10 21:49:29','2015-08-29 14:46:02',1,30000082,67,66,75,72,70,44,44,47,72,111,75,69,99,90,73,82,50,78,73,86,71,85,51,59),(2679,'2015-03-10 21:49:29','2015-08-29 14:46:02',1,30000004,204,295,260,239,242,255,181,208,332,341,301,271,386,455,470,402,281,253,303,374,361,328,357,376),(2680,'2015-03-10 21:49:29','2015-08-29 14:46:02',1,30003080,17,49,49,41,42,31,19,11,68,60,26,38,38,29,28,42,48,29,26,18,58,50,36,49),(2681,'2015-03-10 21:49:29','2015-08-29 14:46:02',1,30002263,67,109,85,121,91,90,49,72,135,134,109,86,114,121,111,120,77,60,87,100,91,84,90,76),(2682,'2015-03-10 21:49:29','2015-08-29 14:46:02',1,30001653,114,133,147,131,135,147,93,71,180,168,152,129,133,190,177,178,115,77,118,136,196,148,165,130),(2683,'2015-03-10 21:49:29','2015-08-29 14:46:02',1,30003029,82,122,150,102,90,112,67,84,137,159,155,149,194,156,164,137,146,167,154,158,151,133,111,133),(2684,'2015-03-10 21:49:29','2015-08-29 14:46:02',1,30004241,24,89,52,59,41,78,68,103,39,40,22,15,20,25,33,27,16,33,19,25,18,19,19,22),(2685,'2015-03-10 21:49:29','2015-08-29 14:46:02',1,30003551,5,2,3,7,4,4,9,5,7,5,7,4,12,17,11,8,15,1,8,3,11,11,17,21),(2686,'2015-03-10 21:49:29','2015-08-29 14:46:02',1,30000121,42,12,20,23,17,17,26,15,39,43,61,49,71,47,47,51,40,19,37,80,70,79,48,45),(2687,'2015-03-10 21:49:29','2015-08-29 14:46:02',1,30003107,6,9,11,4,5,13,11,23,26,20,27,18,86,93,87,43,40,35,33,68,68,42,67,57),(2688,'2015-03-10 21:49:29','2015-08-29 14:46:02',1,30002564,26,22,13,28,19,17,16,28,30,35,32,27,24,40,42,42,36,10,12,14,21,20,21,20),(2689,'2015-03-10 21:49:29','2015-08-29 14:46:02',1,30002336,7,8,5,5,4,2,7,1,31,28,9,4,21,2,4,10,9,13,15,26,21,20,2,2),(2690,'2015-03-10 21:49:29','2015-08-29 14:46:02',1,30000045,29,19,14,24,33,11,31,15,52,46,49,37,39,42,28,31,21,9,9,31,23,20,28,26),(2691,'2015-03-10 21:49:29','2015-08-29 14:46:02',1,30000022,8,13,8,9,10,7,10,8,4,4,6,3,10,11,10,10,5,5,10,10,9,10,14,9),(2692,'2015-03-10 21:49:29','2015-03-10 21:49:29',1,30000381,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(2693,'2015-03-10 21:49:29','2015-08-29 14:46:02',1,30001777,8,3,2,7,6,5,3,2,12,20,9,7,5,6,4,0,2,6,4,4,4,4,6,3),(2694,'2015-03-10 21:49:29','2015-08-29 14:46:02',1,30001185,2,4,15,23,32,8,6,22,37,44,24,19,35,40,42,45,22,10,29,36,20,13,19,17),(2695,'2015-03-10 21:49:29','2015-08-29 14:46:02',1,30001971,5,3,11,1,1,2,7,3,1,0,0,1,0,0,1,5,2,0,1,1,3,3,1,0),(2696,'2015-03-10 21:49:29','2015-08-29 14:46:02',1,30003148,27,29,29,44,31,49,48,39,33,43,35,54,69,208,196,46,29,36,35,43,51,58,35,34),(2697,'2015-03-10 21:49:29','2015-08-29 14:46:02',1,30002112,5,18,5,3,1,1,3,4,1,1,7,11,1,1,0,4,6,2,1,0,4,1,5,2),(2698,'2015-03-10 21:49:29','2015-08-29 14:46:02',1,30002006,127,115,77,78,75,91,83,124,47,59,93,84,30,60,68,86,119,105,62,139,116,105,74,65),(2699,'2015-03-10 21:49:29','2015-08-29 14:46:02',1,30004192,16,10,4,1,5,6,1,2,4,3,3,4,9,8,15,7,1,0,0,3,0,0,2,0),(2700,'2015-03-10 21:49:29','2015-08-29 14:46:02',1,30002500,2,7,9,7,4,3,7,1,2,2,1,2,2,0,0,1,1,2,2,2,0,1,1,1),(2701,'2015-03-10 21:49:29','2015-08-29 14:46:02',1,30005083,21,15,6,12,12,6,9,13,10,8,11,12,16,16,14,14,8,2,4,36,10,7,9,9),(2702,'2015-03-10 21:49:29','2015-08-29 14:46:02',1,30003760,97,69,101,98,103,88,99,65,123,158,114,99,125,131,131,141,89,54,96,114,72,81,67,65),(2703,'2015-03-10 21:49:29','2015-08-29 14:46:02',1,30002692,107,79,119,105,80,77,54,66,161,131,132,137,163,176,170,160,123,115,130,147,176,183,179,133),(2704,'2015-03-10 21:49:29','2015-08-29 14:46:02',1,30005033,5,11,0,3,4,5,14,23,9,17,21,17,3,1,9,8,2,6,0,6,6,8,0,0),(2705,'2015-03-10 21:49:29','2015-08-29 14:46:02',1,30004148,4,2,8,7,8,2,8,10,8,13,10,6,7,8,6,10,3,12,15,13,15,15,18,15),(2706,'2015-03-10 21:49:29','2015-08-29 14:46:02',1,30000608,7,3,1,0,2,5,13,0,1,2,0,0,3,1,0,2,4,11,1,2,23,23,12,5),(2707,'2015-03-10 21:49:29','2015-08-29 14:46:02',1,30002748,55,83,65,90,93,54,54,63,68,67,62,57,39,66,64,92,56,24,42,57,86,101,72,51),(2708,'2015-03-10 21:49:29','2015-08-29 14:46:02',1,30004281,2,1,7,3,3,7,7,8,7,14,9,4,1,6,4,10,14,1,0,6,23,12,11,19),(2709,'2015-03-10 21:49:29','2015-08-29 14:46:02',1,30002254,16,16,10,21,19,14,13,9,14,9,12,17,32,14,17,26,14,11,25,47,10,13,22,22),(2710,'2015-03-10 21:49:29','2015-08-29 14:46:02',1,30004132,9,7,7,4,5,7,13,2,9,9,23,18,6,17,15,4,6,3,2,4,4,7,14,8),(2711,'2015-03-10 21:49:29','2015-08-29 14:46:02',1,30003532,11,12,11,3,12,11,5,2,17,18,15,14,10,18,13,8,6,14,7,14,19,13,8,9),(2712,'2015-03-10 21:49:29','2015-08-29 14:46:02',1,30000451,0,1,3,0,1,8,1,0,14,2,5,2,1,2,0,10,3,2,5,2,4,4,3,5),(2713,'2015-03-10 21:49:29','2015-03-10 21:49:29',1,30001451,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(2714,'2015-03-10 21:49:29','2015-08-29 14:46:02',1,30004575,29,9,8,3,10,2,14,10,153,11,15,13,280,23,25,19,16,29,57,22,20,14,11,9),(2715,'2015-03-10 21:49:29','2015-08-29 14:46:02',1,30001243,2,5,9,6,4,9,6,7,25,26,27,19,63,23,26,19,22,14,38,54,33,39,47,9),(2716,'2015-03-10 21:49:29','2015-08-29 14:46:02',1,30003285,36,360,77,39,34,40,38,31,120,49,44,49,155,71,91,75,37,84,118,70,76,115,76,35),(2717,'2015-03-10 21:49:29','2015-08-29 14:46:02',1,30003661,7,1,5,14,13,1,7,9,4,6,4,1,7,7,3,9,4,2,4,0,6,4,13,11),(2718,'2015-03-10 21:49:29','2015-08-29 14:46:02',1,30004667,11,12,6,5,8,11,24,9,10,13,18,12,22,21,33,23,7,13,7,14,4,5,12,13),(2719,'2015-03-10 21:49:29','2015-08-29 14:46:02',1,30004435,8,3,5,11,6,10,1,15,2,2,5,4,8,8,8,9,4,2,9,4,10,6,6,5),(2720,'2015-03-10 21:49:29','2015-08-29 14:46:02',1,30004839,15,3,9,5,2,4,39,42,6,5,12,7,11,5,14,14,3,3,9,17,14,10,8,4),(2721,'2015-03-10 21:49:29','2015-08-29 14:46:02',1,30001706,3,13,10,15,17,16,1,4,31,34,15,11,39,36,33,29,16,13,5,19,18,8,2,4),(2722,'2015-03-10 21:49:29','2015-08-29 14:46:02',1,30005046,23,47,24,15,10,43,20,27,64,71,38,35,67,65,69,55,68,44,46,61,55,69,25,37),(2723,'2015-03-10 21:49:29','2015-08-29 14:46:02',1,30000142,2144,2191,2362,2348,2170,1888,1645,1766,2485,2605,2569,2354,2736,2887,2765,2923,2608,1707,1947,2414,2779,2745,2503,2422),(2724,'2015-03-10 21:49:29','2015-08-29 14:46:02',1,30004684,10,8,12,16,16,9,18,12,28,44,28,14,20,18,25,13,16,3,1,16,21,28,20,26),(2725,'2015-03-10 21:49:29','2015-08-29 14:46:02',1,30004836,4,1,0,0,1,0,0,2,2,2,3,1,4,3,4,2,2,3,5,1,2,4,0,0),(2726,'2015-03-10 21:49:29','2015-08-29 14:46:02',1,30004515,14,16,24,12,13,16,18,15,11,10,12,12,23,60,68,34,29,10,4,7,16,30,16,12),(2727,'2015-03-10 21:49:29','2015-08-29 14:46:02',1,30002150,8,10,3,1,2,7,1,6,1,0,6,8,2,8,9,5,4,0,0,6,8,5,8,11),(2728,'2015-03-10 21:49:29','2015-03-10 21:49:29',1,30001636,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(2729,'2015-03-10 21:49:29','2015-08-29 14:46:02',1,30001593,1,0,0,1,1,0,0,1,1,0,0,0,1,0,0,1,2,0,0,0,4,0,2,2),(2730,'2015-03-10 21:49:29','2015-08-29 14:46:02',1,30001556,2,2,1,2,2,1,5,0,2,6,6,5,0,4,5,4,8,0,6,0,12,11,9,4),(2731,'2015-03-10 21:49:29','2015-08-29 14:46:02',1,30000708,5,2,7,2,0,4,4,6,3,2,2,2,0,0,1,1,3,1,0,1,2,1,1,1),(2732,'2015-03-10 21:49:29','2015-08-29 14:46:02',1,30005161,0,1,0,5,2,0,2,2,11,12,0,0,0,3,5,0,1,0,0,0,2,1,0,1),(2733,'2015-03-10 21:49:29','2015-08-29 14:46:02',1,30000662,11,25,25,69,15,26,6,9,18,20,14,14,11,8,8,41,13,15,22,18,54,61,9,7),(2734,'2015-03-10 21:49:29','2015-08-29 14:46:02',1,30001542,14,11,10,12,15,4,6,9,15,14,11,14,11,12,6,23,8,11,16,23,3,2,17,11),(2735,'2015-03-10 21:49:29','2015-08-29 14:46:02',1,30004462,19,38,22,16,25,5,7,17,16,12,15,18,11,33,27,28,23,21,20,17,26,24,12,24),(2736,'2015-03-10 21:49:29','2015-08-29 14:46:02',1,30004086,1,10,6,26,31,3,4,0,16,15,10,9,5,11,12,1,8,9,18,18,10,6,8,9),(2737,'2015-03-10 21:49:29','2015-08-29 14:46:02',1,30000078,4,3,1,5,13,6,2,2,8,0,4,2,7,1,2,6,5,3,14,6,2,4,1,5),(2738,'2015-03-10 21:49:29','2015-08-29 14:46:02',1,30004974,106,143,146,124,136,120,133,110,145,158,211,175,209,241,214,200,207,137,149,176,270,230,183,165),(2739,'2015-03-10 21:49:29','2015-08-29 14:46:02',1,30002679,26,40,51,21,21,26,33,27,39,35,35,31,65,59,69,37,51,34,34,38,52,49,44,48),(2740,'2015-03-10 21:49:29','2015-08-29 14:46:02',1,30003387,46,35,27,25,30,23,18,49,48,30,25,30,46,34,37,53,46,20,34,43,58,50,43,34),(2741,'2015-03-10 21:49:29','2015-08-29 14:46:02',1,30002210,27,35,30,27,32,13,26,19,66,51,24,31,36,54,60,29,24,21,20,43,40,42,41,43),(2742,'2015-03-10 21:49:29','2015-08-29 14:46:02',1,30004088,6,11,18,10,8,19,2,10,17,19,21,16,16,7,6,1,5,11,11,12,36,29,14,9),(2743,'2015-03-10 21:49:29','2015-08-29 14:46:02',1,30001046,7,7,9,11,14,6,10,7,13,19,10,18,38,18,21,7,12,11,21,9,18,19,18,20),(2744,'2015-03-10 21:49:29','2015-08-29 14:46:02',1,30002567,4,0,1,5,3,3,9,11,6,5,5,8,20,10,13,5,6,0,3,7,0,0,3,7),(2745,'2015-03-10 21:49:29','2015-08-29 14:46:02',1,30000156,671,866,820,747,705,667,602,613,1084,1054,957,935,1117,1175,1063,1214,1006,718,864,995,1081,1131,971,1000),(2746,'2015-03-10 21:49:29','2015-08-29 14:46:02',1,30003447,67,91,59,84,75,76,23,44,85,80,77,82,85,108,117,113,87,58,65,88,115,143,71,87),(2747,'2015-03-10 21:49:29','2015-08-29 14:46:02',1,30001423,9,27,25,14,13,18,4,11,16,15,26,21,19,11,15,14,17,17,41,36,25,21,28,33),(2748,'2015-03-10 21:49:29','2015-08-29 14:46:02',1,30011392,116,109,147,116,92,100,63,98,154,166,168,141,159,143,147,173,99,92,108,134,139,155,106,85),(2749,'2015-03-10 21:49:29','2015-08-29 14:46:02',1,30005321,21,24,26,39,35,27,20,10,32,29,25,19,55,27,38,25,19,30,22,74,20,20,22,19),(2750,'2015-03-10 21:49:29','2015-08-29 14:46:02',1,30004731,12,17,4,8,8,15,9,15,169,85,225,160,99,205,70,51,48,30,40,49,27,30,19,16),(2751,'2015-03-10 21:49:29','2015-08-29 14:46:02',1,30005136,2,1,2,0,0,0,0,0,0,0,0,0,0,0,1,2,3,1,3,4,2,0,1,1),(2752,'2015-03-10 21:49:29','2015-08-29 14:46:02',1,30000901,22,43,28,27,38,15,18,7,33,23,14,14,28,52,21,21,22,24,72,40,14,16,27,26),(2753,'2015-03-10 21:49:29','2015-03-10 21:49:29',1,30000363,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(2754,'2015-03-10 21:49:29','2015-08-29 14:46:02',1,30000548,2,4,0,0,1,7,0,0,0,1,2,1,0,1,0,0,4,0,0,1,0,1,0,3),(2755,'2015-03-10 21:49:29','2015-08-29 14:46:02',1,30004330,18,37,32,50,34,17,51,30,11,28,23,8,17,47,37,25,22,4,14,10,14,19,15,12),(2756,'2015-03-10 21:49:29','2015-08-29 14:46:02',1,30001851,12,21,16,42,18,12,24,17,42,45,46,49,41,71,61,49,44,10,18,48,61,48,52,46),(2757,'2015-03-10 21:49:29','2015-03-10 21:49:29',1,30001494,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(2758,'2015-03-10 21:49:29','2015-08-29 14:46:02',1,30003664,10,15,22,32,20,111,12,17,15,26,11,13,25,11,17,12,9,17,18,18,10,6,16,5),(2759,'2015-03-10 21:49:29','2015-08-29 14:46:02',1,30002821,2,0,0,0,1,0,5,1,0,0,1,1,0,0,0,0,0,0,0,0,0,0,0,0),(2760,'2015-03-10 21:49:29','2015-08-29 14:46:02',1,30002323,0,5,3,0,3,0,2,1,0,0,0,0,2,2,1,3,0,2,0,0,2,5,3,0),(2761,'2015-03-10 21:49:29','2015-08-29 14:46:02',1,30004324,21,14,9,12,46,19,10,20,15,18,15,21,16,56,43,2,5,3,4,14,12,4,1,1),(2762,'2015-03-10 21:49:29','2015-08-29 14:46:02',1,30002911,50,133,87,54,53,69,60,70,93,100,67,64,165,180,162,117,70,157,178,98,108,114,85,63),(2763,'2015-03-10 21:49:29','2015-08-29 14:46:02',1,30001937,2,4,3,10,6,4,22,7,5,13,11,11,11,12,15,31,14,4,7,9,19,18,25,25),(2764,'2015-03-10 21:49:29','2015-08-29 14:46:02',1,30000051,67,80,79,67,71,64,54,65,126,130,88,87,114,169,159,93,94,77,68,85,83,81,69,72),(2765,'2015-03-10 21:49:29','2015-08-29 14:46:02',1,30001738,11,4,8,14,8,16,7,13,5,7,10,12,21,21,33,33,24,32,18,12,18,29,14,12),(2766,'2015-03-10 21:49:29','2015-08-29 14:46:02',1,30001743,13,5,11,19,13,10,8,10,13,7,8,10,8,25,33,95,22,5,14,13,35,27,18,12),(2767,'2015-03-10 21:49:29','2015-08-29 14:46:02',1,30005308,190,204,235,207,191,162,157,115,194,224,224,199,286,290,306,254,188,172,213,210,249,265,215,220),(2768,'2015-03-10 21:49:29','2015-08-29 14:46:02',1,30000987,3,8,6,6,4,3,2,17,6,8,8,12,0,1,1,5,7,2,2,0,5,2,6,4),(2769,'2015-03-10 21:49:29','2015-08-29 14:46:02',1,30003083,7,9,7,5,5,4,5,0,10,8,5,1,6,5,6,4,6,1,6,5,11,13,8,5),(2770,'2015-03-10 21:49:29','2015-08-29 14:46:02',1,30003016,30,31,34,27,21,36,27,42,34,69,61,43,37,51,58,54,46,34,32,28,42,34,40,38),(2771,'2015-03-10 21:49:29','2015-08-29 14:46:02',1,30003013,32,44,43,53,52,33,20,28,55,74,81,68,48,50,68,82,56,22,32,40,50,50,66,42),(2772,'2015-03-10 21:49:29','2015-08-29 14:46:02',1,30001315,27,22,10,24,30,12,5,14,14,19,14,20,16,22,18,6,8,16,17,28,24,26,12,11),(2773,'2015-03-10 21:49:29','2015-08-29 14:46:02',1,30002803,512,725,687,652,606,518,541,494,616,716,752,689,803,895,916,860,756,511,588,648,866,882,756,719),(2774,'2015-03-10 21:49:29','2015-08-29 14:46:02',1,30004883,21,35,22,9,8,14,23,17,12,17,7,4,6,4,7,9,5,4,9,12,10,17,10,10),(2775,'2015-03-10 21:49:29','2015-08-29 14:46:02',1,30001567,7,23,11,18,43,6,13,11,45,64,15,13,24,15,33,57,17,11,20,15,17,20,10,8),(2776,'2015-03-10 21:49:29','2015-08-29 14:46:02',1,30001948,7,22,9,3,13,22,2,6,17,22,15,11,20,25,21,7,22,11,17,19,17,8,18,12),(2777,'2015-03-10 21:49:29','2015-08-29 14:46:02',1,30001007,12,24,7,18,13,18,21,20,3,10,12,13,3,5,4,6,4,2,0,2,2,1,3,2),(2778,'2015-03-10 21:49:29','2015-08-29 14:46:02',1,30001190,2,4,0,4,1,5,3,5,8,51,21,15,16,20,24,19,23,10,15,27,14,9,20,14),(2779,'2015-03-10 21:49:29','2015-08-29 14:46:02',1,30001793,0,0,0,1,3,1,0,6,0,2,1,0,1,2,3,1,3,0,3,1,3,2,1,2),(2780,'2015-03-10 21:49:29','2015-03-10 21:49:29',1,30001495,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(2781,'2015-03-10 21:49:29','2015-08-29 14:46:02',1,30003264,8,27,5,2,6,8,25,8,6,8,4,5,2,2,6,5,5,8,6,2,4,5,3,0),(2782,'2015-03-10 21:49:29','2015-08-29 14:46:02',1,30000640,2,6,4,5,3,3,1,8,5,10,19,20,0,68,33,5,11,11,6,4,2,5,3,6),(2783,'2015-03-10 21:49:29','2015-08-29 14:46:02',1,30005135,4,9,14,24,9,4,1,0,3,1,1,2,0,16,14,4,11,2,5,4,2,2,0,0),(2784,'2015-03-10 21:49:29','2015-08-29 14:46:02',1,30004952,11,5,0,3,3,25,5,5,3,2,1,1,3,10,8,2,2,1,3,5,4,4,2,9),(2785,'2015-03-10 21:49:29','2015-08-29 14:46:02',1,30000325,6,4,6,5,9,1,1,2,1,16,9,4,5,4,3,0,8,2,2,2,3,0,1,1),(2786,'2015-03-10 21:49:29','2015-08-29 14:46:02',1,30004912,35,35,10,30,31,18,5,12,17,13,12,6,16,59,54,9,52,20,79,8,6,11,15,28),(2787,'2015-03-10 21:49:29','2015-08-29 14:46:02',1,30005120,1,1,10,1,1,2,2,0,0,0,3,0,1,3,9,2,1,1,1,38,6,3,1,3),(2788,'2015-03-10 21:49:29','2015-08-29 14:46:02',1,30004751,23,5,21,16,21,15,23,75,75,53,55,48,54,76,76,67,58,28,40,64,84,96,31,32),(2789,'2015-03-10 21:49:29','2015-08-29 14:46:02',1,30000890,9,3,9,13,12,11,7,1,24,22,10,13,23,19,16,23,24,8,8,5,16,18,15,12),(2790,'2015-03-10 21:49:29','2015-08-29 14:46:02',1,30004379,26,33,20,14,24,24,31,21,24,26,17,17,21,29,21,16,15,17,32,14,15,18,25,13),(2791,'2015-03-10 21:49:29','2015-08-29 14:46:02',1,30004490,19,8,2,6,7,38,30,31,10,14,18,22,9,25,25,27,19,17,11,23,28,32,36,69),(2792,'2015-03-10 21:49:29','2015-08-29 14:46:02',1,30001011,24,65,77,26,26,30,34,18,136,177,81,48,190,96,87,44,34,42,72,97,68,45,99,67),(2793,'2015-03-10 21:49:29','2015-08-29 14:46:02',1,30003969,37,8,37,18,11,12,1,3,4,3,2,3,1,4,4,1,4,3,4,1,6,1,1,2),(2794,'2015-03-10 21:49:29','2015-08-29 14:46:02',1,30001550,9,15,3,9,9,3,15,2,6,10,21,10,23,3,2,17,29,5,28,18,10,10,18,20),(2795,'2015-03-10 21:49:29','2015-08-29 14:46:02',1,30001000,37,93,42,43,33,35,25,32,29,26,141,99,31,72,138,50,35,30,21,40,120,57,93,63),(2796,'2015-03-10 21:49:29','2015-08-29 14:46:02',1,30004475,4,0,0,2,0,2,5,0,2,4,3,7,4,0,0,5,6,1,1,2,4,2,5,3),(2797,'2015-03-10 21:49:29','2015-08-29 14:46:02',1,30003982,77,17,23,10,27,14,15,18,25,32,35,26,79,42,35,18,9,41,15,15,16,14,29,44),(2798,'2015-03-10 21:49:29','2015-08-29 14:46:02',1,30001006,1,8,2,5,3,0,2,4,11,13,3,1,4,60,48,6,3,3,4,2,3,5,2,2),(2799,'2015-03-10 21:49:29','2015-08-29 14:46:02',1,30001026,32,56,20,28,18,28,13,23,44,48,35,40,152,72,78,73,51,25,43,53,49,61,48,31),(2800,'2015-03-10 21:49:29','2015-08-29 14:46:02',1,30000631,4,3,24,8,6,2,11,10,6,2,14,14,7,35,36,5,9,8,6,3,2,3,5,3),(2801,'2015-03-10 21:49:29','2015-08-29 14:46:02',1,30004421,3,0,7,3,6,3,5,11,7,3,3,3,11,16,17,13,11,40,26,23,13,6,32,31),(2802,'2015-03-10 21:49:29','2015-08-29 14:46:02',1,30001543,2,0,0,0,2,0,0,0,3,2,6,13,7,2,2,4,5,5,17,21,0,2,5,4),(2803,'2015-03-10 21:49:29','2015-08-29 14:46:02',1,30003998,1,0,1,0,4,5,2,1,4,7,15,16,8,2,6,4,2,3,6,3,1,0,5,8),(2804,'2015-03-10 21:49:29','2015-08-29 14:46:02',1,30001572,20,10,16,33,93,13,5,11,92,137,57,19,27,22,35,90,38,17,20,18,42,40,27,24),(2805,'2015-03-10 21:49:29','2015-08-29 14:46:02',1,30003972,7,8,5,6,13,1,3,5,11,18,8,10,4,6,7,4,7,7,3,4,15,8,20,11),(2806,'2015-03-10 21:49:29','2015-08-29 14:46:02',1,30001172,2,7,10,9,9,4,0,10,6,4,0,3,5,7,6,18,12,10,6,10,8,13,7,6),(2807,'2015-03-10 21:49:29','2015-08-29 14:46:02',1,30003758,42,61,51,56,32,41,29,32,78,79,75,68,257,158,71,45,41,37,59,90,40,135,37,35),(2808,'2015-03-10 21:49:29','2015-08-29 14:46:02',1,30003764,34,25,56,29,37,50,13,19,65,88,61,71,71,64,81,106,68,55,52,28,50,63,54,50),(2809,'2015-03-10 21:49:29','2015-08-29 14:46:02',1,30000665,2,2,3,1,0,0,0,6,2,1,2,5,4,4,2,8,4,10,11,1,1,3,0,0),(2810,'2015-03-10 21:49:29','2015-08-29 14:46:02',1,30002464,11,7,10,9,10,13,5,21,11,46,11,8,2,2,6,3,8,7,4,7,5,3,8,6),(2811,'2015-03-10 21:49:29','2015-08-29 14:46:02',1,30001274,67,55,64,50,71,56,40,45,43,69,95,93,64,122,124,106,69,25,61,75,73,181,72,65),(2812,'2015-03-10 21:49:29','2015-08-29 14:46:02',1,30004017,14,37,9,21,21,2,3,7,16,9,9,12,38,15,18,11,7,5,10,13,22,25,15,22),(2813,'2015-03-10 21:49:29','2015-08-29 14:46:02',1,30002447,5,5,15,12,12,22,4,3,10,7,8,8,15,4,7,21,9,3,4,14,69,51,27,26),(2814,'2015-03-10 21:49:29','2015-08-29 14:46:02',1,30001762,34,30,64,42,49,9,11,26,7,10,23,12,20,15,14,18,9,5,4,11,4,8,16,13),(2815,'2015-03-10 21:49:29','2015-08-29 14:46:02',1,30003687,46,169,93,64,80,35,53,56,39,51,40,77,47,55,45,36,32,33,31,45,36,33,44,35),(2816,'2015-03-10 21:49:29','2015-08-29 14:46:02',1,30003279,21,103,48,30,19,45,33,25,39,37,27,17,64,53,39,35,21,8,5,26,15,13,19,22),(2817,'2015-03-10 21:49:29','2015-08-29 14:46:02',1,30002900,9,6,5,6,5,5,11,13,31,53,22,25,37,22,26,41,82,9,15,18,31,52,44,50),(2818,'2015-03-10 21:49:29','2015-08-29 14:46:02',1,30000659,24,44,13,10,11,14,9,37,22,9,17,14,9,17,16,21,37,15,23,24,22,15,16,24),(2819,'2015-03-10 21:49:29','2015-08-29 14:46:02',1,30001238,0,1,6,5,3,6,6,1,6,14,21,14,8,9,13,9,11,8,12,28,14,13,6,7),(2820,'2015-03-10 21:49:29','2015-08-29 14:46:02',1,30002872,8,7,29,6,10,6,6,3,8,6,12,9,12,14,12,8,6,1,2,8,12,22,11,11),(2821,'2015-03-10 21:49:29','2015-03-10 21:49:29',1,30000369,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(2822,'2015-03-10 21:49:29','2015-08-29 14:46:02',1,30003950,52,208,86,61,46,63,34,42,41,50,30,21,79,25,28,30,25,35,12,34,19,9,43,28),(2823,'2015-03-10 21:49:29','2015-08-29 14:46:02',1,30000510,0,1,3,2,3,1,0,0,0,1,0,0,0,0,1,0,0,0,2,2,0,0,1,2),(2824,'2015-03-10 21:49:29','2015-08-29 14:46:02',1,30000653,3,29,20,4,3,4,3,11,5,6,4,4,2,6,2,2,4,2,6,10,4,4,11,7),(2825,'2015-03-10 21:49:29','2015-08-29 14:46:02',1,30001040,1,3,3,13,9,0,0,2,5,3,1,2,2,9,11,13,11,1,0,39,3,3,2,4),(2826,'2015-03-10 21:49:29','2015-08-29 14:46:02',1,30004572,16,20,20,9,14,10,6,14,22,19,5,3,5,13,8,13,7,24,38,30,14,14,7,6),(2827,'2015-03-10 21:49:29','2015-08-29 14:46:02',1,30000244,30,24,29,19,13,29,31,11,12,20,54,6,22,13,17,19,15,28,7,8,18,12,61,33),(2828,'2015-03-10 21:49:29','2015-08-29 14:46:02',1,30002873,15,20,22,17,22,14,4,10,29,33,22,15,25,39,35,9,19,3,5,39,38,41,27,20),(2829,'2015-03-10 21:49:29','2015-08-29 14:46:02',1,30001231,30,28,35,35,27,24,24,37,78,40,33,41,55,49,46,58,39,51,147,133,49,57,42,49),(2830,'2015-03-10 21:49:29','2015-08-29 14:46:02',1,30002789,1383,1670,1551,1511,1457,1174,805,1052,1732,1893,1799,1622,1778,2100,2006,1954,1618,1274,1402,1800,1935,1890,1635,1630),(2831,'2015-03-10 21:49:29','2015-08-29 14:46:02',1,30002417,13,3,3,3,2,3,2,4,3,0,8,5,5,3,1,2,7,5,1,4,4,2,2,0),(2832,'2015-03-10 21:49:29','2015-08-29 14:46:02',1,30004095,130,217,189,150,173,122,105,134,207,217,239,218,251,318,294,229,206,165,163,245,202,208,236,218),(2833,'2015-03-10 21:49:29','2015-08-29 14:46:02',1,30003873,18,13,3,2,1,11,6,11,23,20,14,13,36,12,14,25,26,9,11,16,42,32,34,29),(2834,'2015-03-10 21:49:29','2015-08-29 14:46:02',1,30002751,100,134,163,139,156,83,89,109,111,112,119,107,105,117,113,110,91,58,58,100,106,112,100,98),(2835,'2015-03-10 21:49:29','2015-08-29 14:46:02',1,30003887,25,16,33,24,25,16,8,15,70,64,30,19,49,37,43,49,35,13,33,51,33,30,26,31),(2836,'2015-03-10 21:49:29','2015-08-29 14:46:02',1,30001405,453,521,439,416,429,425,327,406,613,657,606,577,583,672,644,553,556,388,452,569,569,556,472,451),(2837,'2015-03-10 21:49:29','2015-08-29 14:46:02',1,30002747,15,21,19,50,46,19,11,9,30,23,12,14,17,9,8,23,11,13,22,26,34,44,29,20),(2838,'2015-03-10 21:49:29','2015-08-29 14:46:02',1,30004115,35,64,38,47,46,44,42,40,80,83,67,56,42,66,55,48,62,53,51,79,43,45,62,58),(2839,'2015-03-10 21:49:29','2015-08-29 14:46:02',1,30003069,186,171,197,175,246,127,121,121,164,199,205,178,318,348,412,222,142,148,227,173,206,166,131,139),(2840,'2015-03-10 21:49:29','2015-08-29 14:46:02',1,30004239,33,118,68,84,63,51,50,78,66,54,50,39,49,143,222,62,33,48,51,43,63,56,27,25),(2841,'2015-03-10 21:49:29','2015-08-29 14:46:02',1,30002782,955,1061,1029,980,887,678,512,628,1129,1165,1120,1001,1195,1409,1356,1335,1002,822,968,1232,1214,1150,1002,863),(2842,'2015-03-10 21:49:29','2015-08-29 14:46:02',1,30001406,87,115,77,67,78,78,78,76,153,180,145,141,141,127,114,96,99,96,85,105,138,159,119,104),(2843,'2015-03-10 21:49:29','2015-08-29 14:46:02',1,30021392,47,50,55,41,38,53,41,42,99,106,86,69,64,94,73,79,50,51,51,41,67,64,47,49),(2844,'2015-03-10 21:49:29','2015-08-29 14:46:02',1,30004306,11,6,9,9,14,13,18,21,88,150,199,83,96,546,152,132,78,109,262,150,39,21,11,16),(2845,'2015-03-10 21:49:29','2015-08-29 14:46:02',1,30001742,30,134,58,55,62,54,23,42,79,68,71,48,164,73,75,72,45,47,80,176,87,71,98,60),(2846,'2015-03-10 21:49:29','2015-08-29 14:46:02',1,30001440,58,158,48,64,79,69,41,16,32,27,31,26,54,27,30,35,42,71,47,32,20,31,43,27),(2847,'2015-03-10 21:49:29','2015-08-29 14:46:02',1,30004134,83,89,101,104,79,67,46,53,108,132,150,148,125,193,237,204,119,71,86,111,133,153,133,116),(2848,'2015-03-10 21:49:29','2015-08-29 14:46:02',1,30000030,34,47,34,30,33,39,19,21,38,45,29,41,58,72,82,79,45,50,66,62,56,50,37,33),(2849,'2015-03-10 21:49:29','2015-08-29 14:46:02',1,30002761,1067,1199,1280,1233,1145,898,729,838,1285,1402,1347,1162,1433,1606,1614,1514,1230,923,1170,1329,1534,1479,1227,1168),(2850,'2015-03-10 21:49:29','2015-08-29 14:46:02',1,30002416,5,3,1,12,13,4,0,8,1,1,3,3,4,10,5,4,6,8,11,8,10,12,2,0),(2851,'2015-03-10 21:49:29','2015-08-29 14:46:02',1,30002580,14,7,14,33,14,9,16,18,45,62,25,13,45,30,44,12,22,4,16,23,27,17,12,13),(2852,'2015-03-10 21:49:29','2015-08-29 14:46:02',1,30002797,74,87,97,90,75,77,60,62,109,132,96,97,112,139,114,84,90,65,70,93,116,103,96,95),(2853,'2015-03-10 21:49:29','2015-08-29 14:46:02',1,30002749,134,222,240,279,271,84,72,99,134,117,116,106,124,144,164,164,109,69,89,131,152,174,135,117),(2854,'2015-03-10 21:49:29','2015-08-29 14:46:02',1,30000018,10,28,9,15,17,13,19,9,22,24,16,23,52,40,19,31,30,19,31,31,25,27,27,19),(2855,'2015-03-10 21:49:29','2015-08-29 14:46:02',1,30001242,2,4,8,5,4,9,6,5,25,22,32,24,54,22,25,19,24,13,35,47,33,32,43,8),(2856,'2015-03-10 21:49:29','2015-08-29 14:46:02',1,30004794,3,4,0,6,4,3,6,11,22,22,20,11,41,30,48,40,22,5,17,12,10,8,21,23),(2857,'2015-03-10 21:49:29','2015-08-29 14:46:02',1,30003729,172,130,123,116,94,136,104,145,261,258,165,148,293,320,301,218,162,285,259,276,214,189,196,146),(2858,'2015-03-10 21:49:29','2015-08-29 14:46:02',1,30002178,57,89,49,91,74,117,77,44,66,70,52,44,87,119,105,96,40,104,312,247,89,100,89,82),(2859,'2015-03-10 21:49:29','2015-08-29 14:46:02',1,30004579,2,1,2,1,1,1,0,0,9,9,104,97,26,6,6,3,2,3,5,32,6,10,16,11),(2860,'2015-03-10 21:49:29','2015-08-29 14:46:02',1,30000737,0,5,6,11,11,5,2,1,1,2,4,2,3,4,0,2,0,1,0,1,3,3,7,5),(2861,'2015-03-10 21:49:29','2015-08-29 14:46:02',1,30001164,19,16,11,15,11,13,9,8,53,81,36,8,15,30,11,14,9,9,44,12,17,12,7,10),(2862,'2015-03-10 21:49:29','2015-08-29 14:46:02',1,30000736,3,11,5,8,9,6,10,14,6,4,9,3,5,3,1,7,4,1,0,4,2,0,2,3),(2863,'2015-03-10 21:49:29','2015-08-29 14:46:02',1,30002027,5,12,14,13,9,25,15,8,3,4,0,0,6,2,1,0,4,4,2,1,5,3,3,4),(2864,'2015-03-10 21:49:29','2015-08-29 14:46:02',1,30000519,3,4,7,3,3,0,0,0,4,3,2,3,3,3,2,1,0,0,3,3,0,0,0,1),(2865,'2015-03-10 21:49:29','2015-08-29 14:46:02',1,30004295,10,5,12,12,5,19,2,8,21,21,9,11,28,23,18,11,11,16,19,16,11,5,5,8),(2866,'2015-03-10 21:49:29','2015-08-29 14:46:02',1,30003883,86,145,115,118,107,142,55,94,319,297,179,159,204,283,308,208,176,238,174,190,199,221,156,166),(2867,'2015-03-10 21:49:29','2015-08-29 14:46:02',1,30003239,4,0,1,1,2,1,0,0,2,3,1,0,0,1,1,2,0,0,0,0,0,0,0,1),(2868,'2015-03-10 21:49:29','2015-08-29 14:46:02',1,30045346,227,305,209,223,232,206,217,190,214,248,170,147,195,253,235,276,251,192,195,283,246,216,209,220),(2869,'2015-03-10 21:49:29','2015-08-29 14:46:02',1,30004772,8,3,2,4,5,7,8,9,143,63,210,173,92,208,66,53,43,27,36,55,26,29,11,13),(2870,'2015-03-10 21:49:29','2015-08-29 14:46:02',1,30045308,114,187,93,118,111,67,76,57,100,125,70,80,84,116,73,95,101,71,103,84,72,113,73,99),(2871,'2015-03-10 21:49:29','2015-08-29 14:46:02',1,30002193,210,289,268,286,285,288,192,199,274,365,294,285,362,412,383,331,283,221,275,323,413,324,285,263),(2872,'2015-03-10 21:49:29','2015-08-29 14:46:02',1,30000098,10,9,9,14,14,12,15,14,29,29,33,23,16,21,25,25,55,24,12,8,15,14,25,18),(2873,'2015-03-10 21:49:29','2015-08-29 14:46:02',1,30000176,30,41,40,42,38,71,20,20,15,34,27,37,54,70,73,70,35,52,51,52,60,51,57,47),(2874,'2015-03-10 21:49:29','2015-08-29 14:46:02',1,30003999,0,1,2,0,2,4,2,1,2,9,17,12,8,3,6,4,0,3,5,4,1,0,4,6),(2875,'2015-03-10 21:49:29','2015-08-29 14:46:02',1,30005206,97,172,199,195,180,142,91,126,152,157,151,146,187,191,219,172,127,117,135,164,188,167,168,154),(2876,'2015-03-10 21:49:29','2015-08-29 14:46:02',1,30004237,17,21,22,54,34,55,13,60,12,21,19,12,6,10,11,17,8,4,9,7,6,9,15,14),(2877,'2015-03-10 21:49:29','2015-08-29 14:46:02',1,30003823,9,4,7,7,8,5,13,10,7,7,9,8,15,6,7,6,1,1,10,5,19,19,11,7),(2878,'2015-03-10 21:49:29','2015-08-29 14:46:02',1,30000116,14,32,33,31,21,20,15,16,29,23,13,12,35,25,21,32,24,31,18,24,40,43,29,27),(2879,'2015-03-10 21:49:29','2015-08-29 14:46:02',1,30005078,7,9,7,11,11,7,3,30,4,4,5,5,14,27,28,29,20,2,26,8,10,12,13,11),(2880,'2015-03-10 21:49:29','2015-03-10 21:49:29',1,30001623,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(2881,'2015-03-10 21:49:29','2015-08-29 14:46:02',1,30011672,1,5,13,6,6,4,5,4,2,7,9,8,23,13,10,7,4,2,6,6,9,11,4,6),(2882,'2015-03-10 21:49:29','2015-08-29 14:46:02',1,30005260,1,8,1,2,4,17,6,2,4,2,2,4,6,4,4,7,6,2,9,5,7,6,5,5),(2883,'2015-03-10 21:49:29','2015-08-29 14:46:02',1,30005066,15,6,3,3,4,0,4,5,13,12,4,0,4,7,7,4,4,2,1,2,12,14,1,2),(2884,'2015-03-10 21:49:29','2015-08-29 14:46:02',1,30005220,64,56,100,74,84,72,54,63,101,110,126,102,95,150,126,120,88,66,81,103,133,127,126,104),(2885,'2015-03-10 21:49:29','2015-08-29 14:46:02',1,30001682,7,48,38,26,17,7,11,19,36,56,57,68,104,56,59,42,63,32,31,95,41,43,34,48),(2886,'2015-03-10 21:49:29','2015-03-10 21:49:29',1,30001515,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(2887,'2015-03-10 21:49:29','2015-08-29 14:46:02',1,30004709,3,2,3,3,6,5,9,3,11,12,9,1,11,8,4,8,7,6,2,5,3,3,5,5),(2888,'2015-03-10 21:49:29','2015-08-29 14:46:02',1,30003343,20,4,18,17,14,42,12,13,3,8,20,10,11,12,7,11,20,32,11,10,15,12,32,30),(2889,'2015-03-10 21:49:29','2015-08-29 14:46:02',1,30001790,6,1,1,4,7,1,0,0,0,3,6,7,4,4,3,8,3,6,4,5,5,5,13,20),(2890,'2015-03-10 21:49:29','2015-08-29 14:46:02',1,30002296,6,5,5,6,11,12,9,9,1,5,6,7,3,2,2,2,2,4,1,2,4,7,6,26),(2891,'2015-03-10 21:49:29','2015-08-29 14:46:02',1,30003190,3,79,6,2,1,6,2,0,3,3,2,1,3,7,4,1,2,7,10,5,11,9,3,2),(2892,'2015-03-10 21:49:29','2015-08-29 14:46:02',1,30001240,2,5,8,5,4,9,5,5,21,21,30,20,53,24,27,17,21,13,37,46,35,36,41,9),(2893,'2015-03-10 21:49:29','2015-08-29 14:46:02',1,30005032,5,5,3,6,7,10,1,2,3,11,14,5,18,22,3,6,9,2,2,3,8,10,1,4),(2894,'2015-03-10 21:49:29','2015-08-29 14:46:02',1,30000117,68,88,53,52,40,77,24,30,48,49,65,53,86,77,77,71,52,70,58,48,81,73,49,48),(2895,'2015-03-10 21:49:29','2015-08-29 14:46:02',1,30004096,44,72,64,58,68,49,33,54,72,67,66,57,94,112,89,73,72,54,52,77,73,49,94,66),(2896,'2015-03-10 21:49:29','2015-08-29 14:46:02',1,30003863,12,31,22,24,19,20,16,10,34,34,45,31,49,41,38,45,32,30,26,46,40,49,39,45),(2897,'2015-03-10 21:49:29','2015-08-29 14:46:02',1,30000056,11,9,15,10,9,5,7,17,21,20,6,8,14,24,31,16,10,8,9,12,13,16,9,9),(2898,'2015-03-10 21:49:29','2015-08-29 14:46:02',1,30003486,49,61,64,48,41,31,30,23,44,68,59,60,87,67,51,71,55,60,44,56,67,47,60,39),(2899,'2015-03-10 21:49:29','2015-08-29 14:46:02',1,30004258,15,8,6,6,6,3,0,11,9,7,8,10,9,4,4,3,3,12,5,4,2,3,9,8),(2900,'2015-03-10 21:49:29','2015-08-29 14:46:02',1,30003490,216,264,218,188,198,181,159,163,279,306,239,200,280,300,310,327,223,156,166,234,250,231,237,191),(2901,'2015-03-10 21:49:29','2015-08-29 14:46:02',1,30001969,23,7,17,6,5,2,16,1,5,3,1,5,26,3,7,14,7,4,4,8,9,5,2,3),(2902,'2015-03-10 21:49:29','2015-08-29 14:46:02',1,30004209,23,20,20,23,22,23,13,28,39,40,14,12,11,17,11,4,19,11,21,26,36,47,53,61),(2903,'2015-03-10 21:49:29','2015-08-29 14:46:02',1,30000189,47,87,80,67,70,76,56,94,101,136,94,103,150,103,114,139,97,78,89,103,122,112,78,90),(2904,'2015-03-10 21:49:29','2015-08-29 14:46:02',1,30001692,14,10,11,13,17,16,5,6,25,30,28,23,15,32,37,19,22,7,9,11,20,26,14,14),(2905,'2015-03-10 21:49:29','2015-08-29 14:46:02',1,30000024,3,46,20,19,21,11,8,16,19,16,19,21,38,16,22,26,32,14,25,33,24,35,11,12),(2906,'2015-03-10 21:49:29','2015-08-29 14:46:02',1,30004176,6,5,20,16,12,6,3,10,23,34,30,29,24,7,14,21,17,2,1,6,25,16,16,20),(2907,'2015-03-10 21:49:29','2015-08-29 14:46:02',1,30003860,73,153,101,99,99,117,62,65,350,369,441,383,191,183,174,166,126,126,148,163,162,174,133,143),(2908,'2015-03-10 21:49:29','2015-08-29 14:46:02',1,30045314,193,134,105,124,143,113,89,105,159,169,86,81,169,228,161,148,128,134,228,149,127,114,122,105),(2909,'2015-03-10 21:49:29','2015-08-29 14:46:02',1,30001372,110,95,118,136,125,87,59,64,106,123,117,99,112,126,124,110,117,74,66,86,119,117,126,116),(2910,'2015-03-10 21:49:29','2015-08-29 14:46:02',1,30001410,81,76,97,88,71,70,80,68,101,148,135,131,109,127,144,135,135,62,84,135,115,127,117,119),(2911,'2015-03-10 21:49:29','2015-08-29 14:46:02',1,30001360,9,2,2,8,10,7,4,5,18,15,17,27,33,25,31,14,8,7,26,24,10,9,26,22),(2912,'2015-03-10 21:49:29','2015-08-29 14:46:02',1,30000141,73,83,61,66,72,83,47,70,64,80,104,93,89,94,86,97,75,48,69,91,100,102,93,101),(2913,'2015-03-10 21:49:29','2015-08-29 14:46:02',1,30005056,51,92,50,54,51,71,34,52,86,93,100,86,82,84,91,77,66,60,64,78,79,71,53,50),(2914,'2015-03-10 21:49:29','2015-08-29 14:46:02',1,30004376,1,4,8,8,10,2,2,9,10,10,6,2,24,10,9,15,23,16,4,9,9,8,15,18),(2915,'2015-03-10 21:49:29','2015-08-29 14:46:02',1,30004488,15,31,4,8,4,42,15,20,6,6,10,19,8,21,22,37,28,19,10,25,23,21,37,40),(2916,'2015-03-10 21:49:29','2015-08-29 14:46:02',1,30001264,9,9,10,14,14,13,8,13,115,33,25,22,17,20,197,21,9,10,43,68,20,128,23,16),(2917,'2015-03-10 21:49:29','2015-08-29 14:46:02',1,30004340,5,2,10,11,6,3,3,7,7,1,2,4,26,47,7,6,5,0,14,11,0,5,9,7),(2918,'2015-03-10 21:49:29','2015-08-29 14:46:02',1,30003458,7,11,8,5,5,5,6,13,6,10,12,6,17,17,15,19,23,7,5,7,9,12,9,13),(2919,'2015-03-10 21:49:29','2015-08-29 14:46:02',1,30002414,14,19,11,14,11,9,17,21,30,32,23,26,29,16,12,21,16,19,8,15,15,12,9,9),(2920,'2015-03-10 21:49:29','2015-08-29 14:46:02',1,30002566,11,13,7,16,11,7,14,19,23,20,23,19,21,20,14,11,13,4,5,13,5,5,13,13),(2921,'2015-03-10 21:49:29','2015-08-29 14:46:02',1,30001020,66,307,168,141,98,25,33,27,59,75,41,50,253,87,85,65,41,55,108,144,48,56,60,61),(2922,'2015-03-10 21:49:29','2015-08-29 14:46:02',1,30002097,39,42,23,32,41,33,24,31,83,72,60,64,89,111,95,67,50,64,87,92,89,79,49,51),(2923,'2015-03-10 21:49:29','2015-08-29 14:46:02',1,30001980,45,105,48,106,71,168,41,83,48,47,31,40,96,71,58,58,68,62,71,39,51,48,58,44),(2924,'2015-03-10 21:49:29','2015-08-29 14:46:02',1,30003344,7,2,18,19,12,0,2,8,4,5,1,1,4,12,9,8,7,22,20,14,4,5,4,5),(2925,'2015-03-10 21:49:29','2015-08-29 14:46:02',1,30004316,3,6,1,5,8,3,0,3,2,1,2,8,0,19,3,2,2,0,1,2,4,2,3,6),(2926,'2015-03-10 21:49:29','2015-08-29 14:46:02',1,30002311,5,11,9,3,5,11,5,4,11,6,2,4,12,12,7,11,7,24,4,33,6,4,14,30),(2927,'2015-03-10 21:49:29','2015-08-29 14:46:02',1,30004375,1,6,8,5,6,1,1,6,6,9,4,1,19,10,13,13,12,8,2,6,6,4,7,12),(2928,'2015-03-10 21:49:29','2015-08-29 14:46:02',1,30003625,4,10,3,5,11,2,15,12,3,3,1,2,8,3,3,5,4,3,3,0,4,4,3,1),(2929,'2015-03-10 21:49:29','2015-03-10 21:49:29',1,30001485,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(2930,'2015-03-10 21:49:29','2015-08-29 14:46:02',1,30002248,13,19,26,16,13,20,7,11,19,17,11,8,6,14,9,10,4,6,5,5,2,5,14,16),(2931,'2015-03-10 21:49:29','2015-08-29 14:46:02',1,30005247,21,21,18,17,15,20,40,99,29,36,27,18,32,28,26,37,23,9,27,49,42,40,48,51),(2932,'2015-03-10 21:49:29','2015-08-29 14:46:02',1,30005124,2,5,8,4,6,6,1,6,6,1,2,0,0,1,0,0,0,1,0,0,5,5,0,1),(2933,'2015-03-10 21:49:29','2015-08-29 14:46:02',1,30003092,8,21,26,32,28,6,15,22,15,25,39,27,13,23,18,20,10,32,31,20,22,13,13,11),(2934,'2015-03-10 21:49:29','2015-08-29 14:46:02',1,30031392,57,93,72,100,108,86,85,75,107,99,105,109,116,126,104,95,68,53,62,100,99,112,93,59),(2935,'2015-03-10 21:49:29','2015-08-29 14:46:02',1,30002737,60,60,82,93,75,70,51,80,86,96,79,50,78,88,68,117,79,82,74,79,85,71,113,108),(2936,'2015-03-10 21:49:29','2015-08-29 14:46:02',1,30003471,27,61,40,28,32,36,34,29,30,56,92,61,74,85,147,78,57,18,24,40,50,36,61,68),(2937,'2015-03-10 21:49:29','2015-08-29 14:46:02',1,30004128,12,23,18,22,18,7,22,16,7,11,15,14,8,7,9,10,13,7,7,10,18,9,17,19),(2938,'2015-03-10 21:49:29','2015-08-29 14:46:02',1,30004152,40,40,86,88,57,40,21,17,18,25,27,22,48,43,31,44,73,31,38,68,64,63,44,35),(2939,'2015-03-10 21:49:29','2015-08-29 14:46:02',1,30005038,502,587,648,556,556,520,398,569,781,872,727,703,901,914,874,824,681,525,647,693,839,829,705,742),(2940,'2015-03-10 21:49:29','2015-08-29 14:46:02',1,30001394,178,212,204,179,167,198,155,165,210,225,233,213,248,289,270,305,229,138,153,245,296,276,243,219),(2941,'2015-03-10 21:49:29','2015-08-29 14:46:02',1,30045312,6,2,5,6,16,4,12,18,13,7,3,5,15,6,8,7,14,3,22,14,11,29,21,20),(2942,'2015-03-10 21:49:29','2015-08-29 14:46:02',1,30005258,13,24,16,8,11,17,7,10,27,44,28,19,13,19,21,29,27,6,13,23,43,40,21,13),(2943,'2015-03-10 21:49:29','2015-08-29 14:46:02',1,30000181,393,339,526,408,404,421,299,315,453,554,542,486,450,560,535,544,510,317,292,405,509,536,455,448),(2944,'2015-03-10 21:49:29','2015-08-29 14:46:02',1,30004103,20,15,8,19,13,14,7,9,25,26,9,8,9,20,22,24,27,8,11,14,24,33,21,23),(2945,'2015-03-10 21:49:29','2015-08-29 14:46:02',1,30003068,274,255,289,198,232,206,217,234,341,335,321,239,423,676,770,395,398,287,429,424,352,301,245,243),(2946,'2015-03-10 21:49:29','2015-08-29 14:46:02',1,30001901,3,7,16,15,6,2,4,10,12,6,11,7,3,12,14,3,10,0,10,3,5,3,9,16),(2947,'2015-03-10 21:49:29','2015-08-29 14:46:02',1,30001536,14,14,5,13,19,4,11,12,33,40,13,5,16,6,8,12,17,3,9,14,15,10,8,9),(2948,'2015-03-10 21:49:29','2015-08-29 14:46:02',1,30001963,29,116,19,41,39,106,24,38,70,103,349,287,41,80,61,25,8,28,17,15,36,37,35,28),(2949,'2015-03-10 21:49:29','2015-08-29 14:46:02',1,30002452,11,8,8,18,15,9,5,6,3,9,7,9,3,2,3,8,7,6,14,5,6,10,7,4),(2950,'2015-03-10 21:49:29','2015-08-29 14:46:02',1,30004895,7,25,21,19,19,27,6,7,29,25,9,11,13,28,32,13,19,10,22,22,18,17,26,16),(2951,'2015-03-10 21:49:29','2015-08-29 14:46:02',1,30022547,25,11,10,7,10,16,9,13,18,21,19,18,31,24,34,21,22,15,11,18,32,12,13,13),(2952,'2015-03-10 21:49:29','2015-08-29 14:46:02',1,30002079,20,12,18,13,12,22,5,10,40,24,31,27,11,17,13,19,11,6,6,16,6,9,19,15),(2953,'2015-03-10 21:49:29','2015-08-29 14:46:02',1,30002519,41,50,46,35,39,43,21,26,40,41,32,48,62,72,55,23,34,45,41,34,53,57,64,81),(2954,'2015-03-10 21:49:29','2015-08-29 14:46:02',1,30002286,1,18,8,6,9,7,3,5,17,10,20,25,9,6,3,4,2,13,4,8,13,10,2,1),(2955,'2015-03-10 21:49:29','2015-08-29 14:46:02',1,30000246,13,1,6,4,2,13,8,7,7,2,5,4,5,2,8,3,9,16,3,1,11,9,12,14),(2956,'2015-03-10 21:49:29','2015-08-29 14:46:02',1,30000807,7,8,8,11,7,23,13,10,0,1,1,1,2,0,0,1,2,0,1,0,2,4,0,1),(2957,'2015-03-10 21:49:29','2015-08-29 14:46:02',1,30001589,0,0,2,0,1,0,0,0,1,1,0,0,0,0,0,0,1,3,0,1,0,0,0,0),(2958,'2015-03-10 21:49:29','2015-08-29 14:46:02',1,30003177,4,14,5,3,2,8,13,4,7,9,10,6,3,6,13,13,6,4,4,3,6,3,13,13),(2959,'2015-03-10 21:49:29','2015-08-29 14:46:02',1,30003300,6,4,3,2,7,4,2,12,5,6,5,3,4,5,5,5,5,2,7,1,9,12,8,5),(2960,'2015-03-10 21:49:29','2015-08-29 14:46:02',1,30004698,7,3,0,1,1,2,2,1,3,4,0,1,4,3,3,1,2,0,1,0,1,0,1,5),(2961,'2015-03-10 21:49:29','2015-08-29 14:46:02',1,30002042,6,15,11,11,12,8,6,21,22,32,40,17,34,22,6,15,4,6,4,17,3,7,7,5),(2962,'2015-03-10 21:49:29','2015-08-29 14:46:02',1,30002767,22,22,8,11,17,18,15,6,14,27,19,24,29,23,23,17,25,12,13,28,61,57,26,31),(2963,'2015-03-10 21:49:29','2015-08-29 14:46:02',1,30003501,65,129,113,72,61,67,39,53,84,115,90,80,107,160,180,130,76,80,87,83,120,116,79,88),(2964,'2015-03-10 21:49:29','2015-08-29 14:46:02',1,30000021,2,6,5,1,4,2,1,0,0,0,4,6,2,9,3,3,2,6,16,16,4,6,8,5),(2965,'2015-03-10 21:49:29','2015-08-29 14:46:02',1,30003926,2,3,2,5,7,17,11,6,6,8,16,11,12,15,11,8,11,0,3,0,12,17,11,11),(2966,'2015-03-10 21:49:29','2015-08-29 14:46:02',1,30002771,95,110,119,84,91,74,65,68,113,129,132,121,131,148,130,140,118,49,87,120,132,126,108,108),(2967,'2015-03-10 21:49:29','2015-08-29 14:46:02',1,30005050,105,175,152,138,126,109,148,207,227,257,207,189,209,227,225,189,161,116,156,174,185,174,139,156),(2968,'2015-03-10 21:49:29','2015-08-29 14:46:02',1,30001415,19,22,19,23,20,23,15,27,25,35,28,23,29,22,25,34,41,16,20,21,40,46,32,30),(2969,'2015-03-10 21:49:29','2015-08-29 14:46:02',1,30003066,30,35,33,28,42,30,27,35,27,25,33,35,40,45,44,38,20,31,29,42,34,35,27,33),(2970,'2015-03-10 21:49:29','2015-08-29 14:46:02',1,30003096,0,2,10,6,9,4,1,9,7,7,12,9,0,4,0,4,4,0,4,3,3,2,2,3),(2971,'2015-03-10 21:49:29','2015-08-29 14:46:02',1,30003089,87,58,51,44,55,53,47,41,79,82,72,68,83,94,79,117,68,57,87,166,86,82,69,88),(2972,'2015-03-10 21:49:29','2015-08-29 14:46:02',1,30002802,268,341,340,331,295,259,245,244,315,341,367,321,354,408,428,388,335,265,253,319,378,403,368,330),(2973,'2015-03-10 21:49:29','2015-08-29 14:46:02',1,30004348,5,3,3,8,7,5,9,8,6,10,1,1,6,3,5,2,3,0,10,1,3,3,1,0),(2974,'2015-03-10 21:49:29','2015-08-29 14:46:02',1,30004642,29,15,21,43,38,21,8,13,221,159,220,182,178,343,247,160,98,106,420,344,48,53,39,43),(2975,'2015-03-10 21:49:29','2015-08-29 14:46:02',1,30003635,4,2,6,3,4,8,0,4,1,1,0,0,1,0,0,2,0,1,0,0,2,1,3,1),(2976,'2015-03-10 21:49:29','2015-08-29 14:46:02',1,30001180,33,14,18,14,13,16,21,16,53,68,19,29,84,26,29,23,35,18,26,19,31,33,17,23),(2977,'2015-03-10 21:49:29','2015-08-29 14:46:02',1,30004833,3,1,0,0,1,1,3,3,3,3,4,1,5,3,4,2,5,2,3,1,4,3,4,5),(2978,'2015-03-10 21:49:29','2015-08-29 14:46:02',1,30000269,45,13,30,25,43,16,20,24,3,4,9,8,8,9,1,1,6,1,3,0,0,4,2,0),(2979,'2015-03-10 21:49:29','2015-03-10 21:49:29',1,30000347,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(2980,'2015-03-10 21:49:29','2015-08-29 14:46:02',1,30000124,16,19,6,12,11,28,1,5,30,14,20,24,13,17,17,19,29,7,10,11,27,25,27,30),(2981,'2015-03-10 21:49:29','2015-08-29 14:46:02',1,30000498,3,9,0,7,5,12,23,4,16,11,16,8,5,16,21,19,13,15,3,9,14,9,9,9),(2982,'2015-03-10 21:49:29','2015-08-29 14:46:02',1,30000710,8,43,15,12,8,11,19,18,2,0,16,17,10,6,6,21,11,4,5,12,26,10,21,22),(2983,'2015-03-10 21:49:29','2015-08-29 14:46:02',1,30000874,7,7,11,12,3,6,10,10,2,4,3,4,0,2,1,4,10,5,2,2,3,3,9,6),(2984,'2015-03-10 21:49:29','2015-08-29 14:46:02',1,30004593,17,26,14,6,12,9,5,9,18,24,16,27,274,25,8,8,23,12,16,31,21,15,11,7),(2985,'2015-03-10 21:49:29','2015-08-29 14:46:02',1,30002142,13,13,5,11,11,7,3,4,0,1,3,2,1,0,2,1,1,1,1,1,2,7,2,3),(2986,'2015-03-10 21:49:29','2015-08-29 14:46:02',1,30003951,22,4,15,10,15,22,12,11,29,32,36,26,37,41,28,30,27,13,18,18,20,20,30,35),(2987,'2015-03-10 21:49:29','2015-08-29 14:46:02',1,30003970,21,10,38,13,10,10,1,2,5,3,3,2,0,3,2,1,4,1,5,1,4,1,0,1),(2988,'2015-03-10 21:49:29','2015-08-29 14:46:02',1,30004625,4,5,17,7,8,5,24,15,272,284,197,287,474,35,30,34,81,156,61,396,25,33,16,13),(2989,'2015-03-10 21:49:29','2015-08-29 14:46:02',1,30001945,1,10,4,10,3,7,10,11,14,12,29,34,5,18,27,14,32,8,8,15,20,26,15,15),(2990,'2015-03-10 21:49:29','2015-08-29 14:46:02',1,30004910,1,2,1,8,3,2,6,2,6,12,11,17,6,18,12,12,1,2,38,4,6,7,12,14),(2991,'2015-03-10 21:49:29','2015-08-29 14:46:02',1,30001223,1,1,7,5,3,7,6,1,10,18,18,12,10,9,10,10,10,11,15,45,12,14,9,9),(2992,'2015-03-10 21:49:29','2015-08-29 14:46:02',1,30003689,106,168,156,220,170,114,76,92,37,64,123,129,191,159,99,95,50,65,67,83,66,57,83,72),(2993,'2015-03-10 21:49:29','2015-03-10 21:49:29',1,30000357,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(2994,'2015-03-10 21:49:29','2015-08-29 14:46:02',1,30001592,3,0,0,5,6,3,2,9,104,112,12,13,17,12,19,25,27,8,15,36,29,24,21,16),(2995,'2015-03-10 21:49:29','2015-08-29 14:46:02',1,30000540,17,28,23,17,12,23,18,12,65,79,69,49,53,84,99,57,82,11,16,13,133,143,40,108),(2996,'2015-03-10 21:49:29','2015-08-29 14:46:02',1,30004018,0,1,0,1,1,1,0,1,4,1,2,3,4,1,1,1,1,1,0,0,8,5,0,1),(2997,'2015-03-10 21:49:29','2015-08-29 14:46:02',1,30002847,9,9,13,16,15,12,5,6,26,22,11,16,12,8,11,7,8,0,0,11,24,17,6,2),(2998,'2015-03-10 21:49:29','2015-08-29 14:46:02',1,30002434,4,14,16,4,6,6,2,13,7,8,21,8,2,7,6,10,9,4,5,9,4,5,8,7),(2999,'2015-03-10 21:49:29','2015-08-29 14:46:02',1,30001350,20,7,4,3,2,4,1,8,9,1,1,11,0,3,2,3,4,9,13,8,9,7,3,4),(3000,'2015-03-10 21:49:29','2015-08-29 14:46:02',1,30000528,7,3,5,4,2,20,10,4,10,14,24,31,9,19,13,4,5,2,11,26,4,1,2,3),(3001,'2015-03-10 21:49:29','2015-08-29 14:46:02',1,30003168,4,4,6,0,1,3,3,10,5,4,2,1,3,1,1,1,6,2,0,0,2,2,3,4),(3002,'2015-03-10 21:49:29','2015-08-29 14:46:02',1,30003643,0,1,0,7,3,2,0,4,1,1,3,3,3,0,0,0,3,0,0,0,0,1,2,0),(3003,'2015-03-10 21:49:29','2015-08-29 14:46:02',1,30005163,6,4,3,6,10,0,5,8,4,1,1,0,2,0,1,1,5,0,0,0,5,8,1,4),(3004,'2015-03-10 21:49:29','2015-08-29 14:46:02',1,30000467,4,4,7,13,8,7,3,3,18,15,12,11,18,19,13,6,2,1,2,18,11,8,2,0),(3005,'2015-03-10 21:49:29','2015-08-29 14:46:02',1,30003684,12,44,21,12,14,10,24,13,9,8,11,8,18,20,22,12,16,5,9,12,8,14,13,18),(3006,'2015-03-10 21:49:29','2015-03-10 21:49:29',1,30000430,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(3007,'2015-03-10 21:49:29','2015-08-29 14:46:02',1,30002842,7,2,4,6,7,6,5,7,3,2,4,17,3,11,8,4,1,0,0,8,6,8,2,10),(3008,'2015-03-10 21:49:29','2015-08-29 14:46:02',1,30002470,34,21,39,44,44,43,12,16,51,56,79,69,45,57,54,95,74,10,23,58,242,104,54,72),(3009,'2015-03-10 21:49:29','2015-03-10 21:49:29',1,30001499,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(3010,'2015-03-10 21:49:29','2015-08-29 14:46:02',1,30001989,37,143,43,58,54,38,34,36,48,54,52,62,30,86,93,29,35,160,160,111,37,43,50,45),(3011,'2015-03-10 21:49:29','2015-08-29 14:46:02',1,30000891,12,2,7,10,7,8,12,7,27,25,8,3,15,23,20,23,25,9,9,9,12,15,14,2),(3012,'2015-03-10 21:49:29','2015-08-29 14:46:02',1,30001526,10,0,2,1,1,0,3,1,84,143,47,32,37,36,27,71,40,62,58,48,44,46,48,52),(3013,'2015-03-10 21:49:29','2015-08-29 14:46:02',1,30004927,13,39,30,28,8,6,3,10,10,11,9,9,20,17,8,9,13,7,7,9,23,23,10,9),(3014,'2015-03-10 21:49:29','2015-08-29 14:46:02',1,30000605,6,3,3,6,0,4,4,0,5,7,4,2,2,0,0,0,2,11,9,2,5,21,3,4),(3015,'2015-03-10 21:49:29','2015-08-29 14:46:02',1,30004203,13,16,20,7,9,8,5,4,5,5,5,2,12,5,4,4,4,0,7,28,6,8,14,20),(3016,'2015-03-10 21:49:29','2015-08-29 14:46:02',1,30002300,2,0,0,0,1,0,0,1,0,0,2,2,0,0,0,0,0,0,0,0,0,0,1,3),(3017,'2015-03-10 21:49:29','2015-08-29 14:46:02',1,30001876,2,2,4,0,1,8,2,3,1,3,12,13,1,8,3,13,12,1,1,17,3,4,41,32),(3018,'2015-03-10 21:49:29','2015-08-29 14:46:02',1,30000968,0,2,1,1,0,2,1,0,1,1,9,4,2,4,3,1,1,1,15,2,5,3,1,1),(3019,'2015-03-10 21:49:29','2015-08-29 14:46:02',1,30001809,13,7,8,14,19,8,66,8,8,75,9,4,12,10,7,4,5,2,1,7,4,5,3,2),(3020,'2015-03-10 21:49:29','2015-08-29 14:46:02',1,30004827,0,1,3,4,3,1,1,1,1,0,2,1,1,1,1,0,3,2,1,3,4,0,4,4),(3021,'2015-03-10 21:49:29','2015-08-29 14:46:02',1,30004003,64,13,14,6,17,6,10,15,27,31,32,21,87,28,24,14,13,40,13,14,19,13,19,33),(3022,'2015-03-10 21:49:29','2015-08-29 14:46:02',1,30004526,17,12,7,7,9,9,6,14,22,10,13,25,20,5,9,6,11,8,3,8,5,5,10,11),(3023,'2015-03-10 21:49:29','2015-08-29 14:46:02',1,30002376,6,20,23,18,12,9,21,16,20,19,23,30,60,28,32,35,13,32,8,13,28,33,14,13),(3024,'2015-03-10 21:49:29','2015-08-29 14:46:02',1,30002435,2,4,2,1,2,2,2,2,1,2,5,5,0,4,3,1,4,1,2,2,6,4,0,1),(3025,'2015-03-10 21:49:29','2015-08-29 14:46:02',1,30000786,26,32,14,30,20,43,34,55,18,21,21,9,11,34,27,33,19,8,3,10,5,2,24,18),(3026,'2015-03-10 21:49:29','2015-08-29 14:46:02',1,30004944,9,3,2,4,5,24,10,20,1,0,0,0,3,1,2,3,0,1,0,0,0,0,6,0),(3027,'2015-03-10 21:49:29','2015-08-29 14:46:02',1,30005179,0,0,0,0,0,0,0,2,2,1,0,0,17,3,2,0,1,0,0,0,0,0,1,0),(3028,'2015-03-10 21:49:29','2015-08-29 14:46:02',1,30001928,6,11,8,3,12,8,2,8,11,13,13,12,17,17,16,7,17,15,16,12,13,5,19,12),(3029,'2015-03-10 21:49:29','2015-08-29 14:46:02',1,30002607,1,1,4,4,2,0,4,3,0,0,0,0,0,0,0,0,0,0,0,1,1,6,0,1),(3030,'2015-03-10 21:49:29','2015-03-10 21:49:29',1,30000354,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(3031,'2015-03-10 21:49:29','2015-08-29 14:46:02',1,30004659,0,1,0,2,5,4,0,3,1,4,6,3,10,7,0,3,3,4,2,7,3,3,2,6),(3032,'2015-03-10 21:49:29','2015-08-29 14:46:02',1,30001560,1,1,1,1,1,0,1,0,1,2,0,0,0,1,1,0,2,0,0,0,1,2,2,1),(3033,'2015-03-10 21:49:29','2015-08-29 14:46:02',1,30001174,1,0,3,3,3,2,0,11,5,2,0,0,5,4,4,12,4,4,1,6,3,5,2,1),(3034,'2015-03-10 21:49:29','2015-08-29 14:46:02',1,30000462,0,0,2,10,9,4,4,4,6,6,3,0,6,5,2,4,4,1,4,0,2,3,4,2),(3035,'2015-03-10 21:49:29','2015-08-29 14:46:02',1,30003255,20,33,18,15,12,24,17,8,5,5,7,5,7,8,5,10,1,13,6,9,5,7,18,10),(3036,'2015-03-10 21:49:29','2015-08-29 14:46:02',1,30041392,33,41,43,47,40,34,34,27,36,35,48,42,53,58,47,50,34,19,46,38,40,40,41,50),(3037,'2015-03-10 21:49:29','2015-08-29 14:46:02',1,30002976,78,53,40,47,40,35,35,42,30,34,45,40,38,51,29,49,23,24,63,65,39,31,57,38),(3038,'2015-03-10 21:49:29','2015-08-29 14:46:02',1,30000029,3,8,9,7,10,8,3,4,5,4,1,4,4,4,2,8,4,3,2,7,8,6,2,4),(3039,'2015-03-10 21:49:29','2015-08-29 14:46:02',1,30002989,44,61,62,63,50,47,44,54,43,62,73,64,87,92,104,84,53,40,80,62,81,61,70,69),(3040,'2015-03-10 21:49:29','2015-08-29 14:46:02',1,30004999,48,70,60,73,77,81,52,38,91,107,74,49,78,127,76,101,67,75,36,47,98,69,53,74),(3041,'2015-03-10 21:49:29','2015-08-29 14:46:02',1,30003519,7,20,14,23,21,11,18,12,14,17,15,16,12,5,9,7,8,6,10,26,8,9,6,2),(3042,'2015-03-10 21:49:29','2015-08-29 14:46:02',1,30003049,6,11,38,18,12,18,5,17,23,30,20,20,14,32,18,18,24,6,12,20,12,13,19,33),(3043,'2015-03-10 21:49:29','2015-08-29 14:46:02',1,30003063,63,89,97,80,65,208,83,60,90,106,124,89,111,259,505,167,66,73,181,164,63,61,48,54),(3044,'2015-03-10 21:49:29','2015-08-29 14:46:02',1,30002722,4,4,6,5,4,5,7,11,13,7,9,10,14,26,39,12,1,12,12,12,15,14,14,11),(3045,'2015-03-10 21:49:29','2015-08-29 14:46:02',1,30002074,259,306,380,349,323,286,208,234,378,378,410,313,384,576,526,428,379,170,259,335,470,461,427,405),(3046,'2015-03-10 21:49:29','2015-08-29 14:46:02',1,30003882,80,127,111,114,103,127,55,86,254,240,161,160,184,237,249,175,153,195,155,150,171,178,140,153),(3047,'2015-03-10 21:49:29','2015-08-29 14:46:02',1,30002540,6,3,6,3,2,6,25,6,25,49,27,44,21,46,24,16,19,19,19,17,26,23,19,15),(3048,'2015-03-10 21:49:29','2015-08-29 14:46:02',1,30001712,6,13,4,17,17,14,8,5,11,19,14,16,57,20,18,18,17,14,22,36,23,17,41,26),(3049,'2015-03-10 21:49:29','2015-08-29 14:46:02',1,30032547,10,19,7,7,7,19,7,15,22,18,16,19,18,16,17,21,20,15,11,5,16,12,10,17),(3050,'2015-03-10 21:49:29','2015-08-29 14:46:02',1,30003579,55,76,99,124,114,59,43,71,98,111,82,61,78,73,77,52,37,49,47,74,63,64,57,59),(3051,'2015-03-10 21:49:29','2015-08-29 14:46:02',1,30000002,191,222,195,189,186,173,121,174,236,243,210,210,292,261,286,288,204,135,184,269,268,222,211,201),(3052,'2015-03-10 21:49:29','2015-08-29 14:46:02',1,30003549,0,0,5,4,3,3,11,2,1,1,6,6,3,2,4,0,2,0,2,1,5,6,3,3),(3053,'2015-03-10 21:49:29','2015-08-29 14:46:02',1,30002065,46,47,15,20,17,9,24,10,58,49,17,17,26,27,28,19,17,20,18,40,23,26,18,18),(3054,'2015-03-10 21:49:29','2015-08-29 14:46:02',1,30005075,3,5,6,4,3,9,3,4,11,8,18,17,14,24,13,18,12,1,5,2,8,7,6,4),(3055,'2015-03-10 21:49:29','2015-08-29 14:46:02',1,30005002,64,95,67,80,71,83,63,62,156,175,152,148,143,171,163,141,83,81,115,87,169,160,129,131),(3056,'2015-03-10 21:49:29','2015-08-29 14:46:02',1,30004159,9,11,12,13,10,12,0,3,14,10,8,11,14,9,9,28,6,4,7,18,12,13,14,13),(3057,'2015-03-10 21:49:29','2015-08-29 14:46:02',1,30003592,11,25,23,27,25,24,7,19,28,32,20,24,14,20,20,39,17,9,4,18,24,21,15,22),(3058,'2015-03-10 21:49:29','2015-08-29 14:46:02',1,30001917,6,19,11,14,17,16,14,11,19,16,24,14,35,31,23,23,21,21,23,30,21,23,17,17),(3059,'2015-03-10 21:49:29','2015-08-29 14:46:02',1,30002161,3,1,9,4,4,2,0,1,1,2,5,0,0,2,0,0,0,1,7,16,3,3,1,1),(3060,'2015-03-10 21:49:29','2015-08-29 14:46:02',1,30000683,7,97,4,11,12,22,44,2,7,9,7,11,6,8,13,19,11,9,7,11,15,11,4,5),(3061,'2015-03-10 21:49:29','2015-08-29 14:46:02',1,30004663,5,4,2,4,4,12,5,3,65,96,41,58,479,278,173,190,14,27,354,193,9,13,12,12),(3062,'2015-03-10 21:49:29','2015-08-29 14:46:02',1,30004541,7,5,9,6,3,15,8,5,12,6,8,8,4,11,6,7,11,3,6,5,3,4,15,4),(3063,'2015-03-10 21:49:29','2015-08-29 14:46:02',1,30001923,9,21,23,12,18,13,15,14,24,25,20,20,48,38,53,28,17,8,18,11,17,14,35,25),(3064,'2015-03-10 21:49:29','2015-03-10 21:49:29',1,30001605,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(3065,'2015-03-10 21:49:29','2015-08-29 14:46:02',1,30004700,31,10,11,19,16,11,20,15,21,42,29,21,29,16,20,13,20,3,1,14,15,27,20,22),(3066,'2015-03-10 21:49:29','2015-08-29 14:46:02',1,30002849,3,5,5,6,5,0,0,0,0,0,1,1,0,0,0,0,0,0,0,0,2,1,0,0),(3067,'2015-03-10 21:49:29','2015-08-29 14:46:02',1,30002932,54,79,53,67,60,37,52,50,76,83,49,28,66,93,71,51,29,21,45,47,50,40,57,36),(3068,'2015-03-10 21:49:29','2015-08-29 14:46:02',1,30005259,6,9,0,2,3,2,4,1,19,15,7,6,5,4,6,9,1,2,3,6,3,1,4,3),(3069,'2015-03-10 21:49:29','2015-08-29 14:46:02',1,30002865,22,27,19,19,25,20,8,13,41,36,14,15,30,36,34,20,32,3,6,25,25,38,28,33),(3070,'2015-03-10 21:49:29','2015-08-29 14:46:02',1,30005233,15,6,9,7,12,15,9,3,3,5,14,6,10,13,8,16,11,9,27,11,11,13,8,3),(3071,'2015-03-10 21:49:29','2015-08-29 14:46:02',1,30003039,79,156,149,133,132,136,82,118,177,197,215,179,247,261,209,276,220,162,168,183,195,203,233,206),(3072,'2015-03-10 21:49:29','2015-08-29 14:46:02',1,30002728,30,25,30,29,28,29,19,13,60,42,71,26,38,33,31,27,21,24,14,64,24,25,22,26),(3073,'2015-03-10 21:49:29','2015-08-29 14:46:02',1,30003409,178,218,194,176,177,164,134,147,241,231,182,179,283,271,254,276,189,165,189,233,272,263,185,170),(3074,'2015-03-10 21:49:29','2015-08-29 14:46:02',1,30005039,151,169,203,170,169,172,121,166,250,300,228,200,278,274,318,250,216,175,194,199,273,273,214,235),(3075,'2015-03-10 21:49:29','2015-08-29 14:46:02',1,30003759,57,71,77,88,48,64,34,53,121,119,140,112,316,200,84,165,67,64,145,153,135,204,92,72),(3076,'2015-03-10 21:49:29','2015-08-29 14:46:02',1,30003172,11,6,3,2,4,5,1,19,3,4,12,9,2,9,5,3,4,1,1,1,5,3,4,5),(3077,'2015-03-10 21:49:29','2015-08-29 14:46:02',1,30004689,23,5,6,13,8,16,11,8,19,15,6,2,9,13,9,4,6,1,6,6,13,12,15,14),(3078,'2015-03-10 21:49:29','2015-03-10 21:49:29',1,30001460,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(3079,'2015-03-10 21:49:29','2015-08-29 14:46:02',1,30001833,20,19,21,23,29,28,18,21,161,150,37,39,120,230,219,43,128,46,67,46,45,48,80,72),(3080,'2015-03-10 21:49:29','2015-08-29 14:46:02',1,30001953,3,9,1,4,2,8,3,4,7,6,7,2,1,13,9,8,11,11,7,9,10,7,11,10),(3081,'2015-03-10 21:49:29','2015-08-29 14:46:02',1,30004505,11,8,17,7,10,9,32,10,13,9,18,17,13,37,29,44,14,6,1,5,15,19,8,13),(3082,'2015-03-10 21:49:29','2015-03-10 21:49:29',1,30001507,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(3083,'2015-03-10 21:49:29','2015-08-29 14:46:02',1,30001587,0,0,0,1,2,0,14,0,1,2,0,0,0,0,0,1,1,0,0,0,2,1,0,2),(3084,'2015-03-10 21:49:29','2015-08-29 14:46:02',1,30001069,4,36,37,11,18,34,17,8,39,39,25,19,43,23,27,18,8,7,8,13,71,52,14,14),(3085,'2015-03-10 21:49:29','2015-08-29 14:46:02',1,30002624,1,1,2,2,1,3,0,1,0,1,1,0,1,3,4,4,2,0,0,0,1,1,1,0),(3086,'2015-03-10 21:49:29','2015-08-29 14:46:02',1,30001337,9,10,6,3,3,9,0,5,12,16,19,18,12,13,9,0,14,1,8,8,2,3,5,5),(3087,'2015-03-10 21:49:29','2015-08-29 14:46:02',1,30003421,7,6,6,20,23,3,8,8,12,10,10,11,16,6,10,24,19,4,8,7,9,5,14,16),(3088,'2015-03-10 21:49:29','2015-08-29 14:46:02',1,30000154,196,251,252,233,212,215,157,160,308,287,266,271,389,355,324,446,292,218,348,376,298,299,278,304),(3089,'2015-03-10 21:49:29','2015-08-29 14:46:02',1,30000020,12,5,0,1,3,0,2,1,9,15,5,4,26,4,3,5,3,8,19,11,4,6,2,1),(3090,'2015-03-10 21:49:29','2015-08-29 14:46:02',1,30005087,15,33,7,10,9,13,10,19,22,14,17,21,20,22,17,16,15,6,20,13,11,15,10,9),(3091,'2015-03-10 21:49:29','2015-08-29 14:46:02',1,30003459,70,128,107,104,94,89,67,54,109,114,91,99,159,174,149,165,136,56,89,116,101,106,109,97),(3092,'2015-03-10 21:49:29','2015-08-29 14:46:02',1,30003025,260,287,383,281,229,326,223,235,431,414,464,408,611,522,522,495,414,327,381,451,477,482,455,415),(3093,'2015-03-10 21:49:29','2015-08-29 14:46:02',1,30005007,29,37,25,16,13,40,24,19,48,51,42,43,43,48,55,62,65,25,21,19,47,41,37,38),(3094,'2015-03-10 21:49:29','2015-08-29 14:46:02',1,30002973,176,203,185,195,184,158,118,170,221,229,202,192,262,244,269,292,192,125,167,265,256,220,214,222),(3095,'2015-03-10 21:49:29','2015-08-29 14:46:02',1,30001400,571,485,580,581,515,629,375,409,585,638,579,535,628,732,756,736,670,439,578,578,754,745,580,525),(3096,'2015-03-10 21:49:29','2015-08-29 14:46:02',1,30001048,7,12,5,10,8,7,12,7,23,22,42,39,46,23,28,22,8,12,44,37,14,10,24,18),(3097,'2015-03-10 21:49:29','2015-08-29 14:46:02',1,30001416,16,31,20,26,19,18,52,11,12,12,23,28,20,11,20,27,68,25,19,21,23,23,34,49),(3098,'2015-03-10 21:49:29','2015-08-29 14:46:02',1,30004630,15,24,26,19,14,16,5,18,30,30,35,33,43,28,44,40,18,94,63,45,55,24,24,26),(3099,'2015-03-10 21:49:29','2015-08-29 14:46:02',1,30000647,5,5,7,12,10,5,2,3,16,11,11,11,8,8,4,13,9,10,4,6,5,4,8,5),(3100,'2015-03-10 21:49:29','2015-08-29 14:46:02',1,30004641,0,3,6,5,11,8,0,1,13,11,8,8,3,4,3,5,3,13,2,6,0,1,1,1),(3101,'2015-03-10 21:49:29','2015-08-29 14:46:02',1,30001038,15,25,14,17,32,3,15,7,44,44,33,21,248,68,43,43,33,10,35,47,32,29,25,29),(3102,'2015-03-10 21:49:29','2015-08-29 14:46:02',1,30002604,2,0,1,0,0,0,0,0,0,0,1,0,0,27,5,2,7,0,0,1,0,1,2,2),(3103,'2015-03-10 21:49:29','2015-08-29 14:46:02',1,30002139,22,58,36,27,27,44,32,8,44,62,37,25,34,78,75,31,37,8,56,31,47,47,24,21),(3104,'2015-03-10 21:49:29','2015-08-29 14:46:02',1,30000599,10,34,5,44,10,35,16,6,32,32,35,23,23,39,34,38,6,15,27,19,34,41,12,16),(3105,'2015-03-10 21:49:29','2015-08-29 14:46:02',1,30000615,4,4,11,12,5,9,2,7,9,9,105,66,12,14,7,12,20,12,15,19,20,18,11,14),(3106,'2015-03-10 21:49:29','2015-08-29 14:46:02',1,30002114,1,4,2,0,0,8,3,0,0,0,0,2,1,1,2,0,3,0,0,2,7,4,7,5),(3107,'2015-03-10 21:49:29','2015-08-29 14:46:02',1,30003973,8,2,7,8,5,7,7,6,13,7,2,6,43,14,10,10,10,14,9,19,4,5,8,5),(3108,'2015-03-10 21:49:29','2015-08-29 14:46:02',1,30001119,15,49,37,28,24,20,29,44,9,6,42,8,5,9,11,11,11,0,10,4,2,7,4,7),(3109,'2015-03-10 21:49:29','2015-08-29 14:46:02',1,30005300,62,72,78,56,42,58,50,40,103,104,69,50,113,69,63,66,54,67,82,186,99,81,90,86),(3110,'2015-03-10 21:49:29','2015-08-29 14:46:02',1,30042547,20,37,25,13,14,11,9,14,14,14,23,22,22,23,24,24,15,14,7,20,11,12,12,15),(3111,'2015-03-10 21:49:29','2015-08-29 14:46:02',1,30004897,8,24,23,23,24,31,7,7,31,29,11,15,13,23,35,14,19,8,23,23,16,23,44,32),(3112,'2015-03-10 21:49:29','2015-08-29 14:46:02',1,30005193,72,35,47,41,51,37,30,33,65,68,50,52,71,53,56,71,35,55,42,68,102,72,55,56),(3113,'2015-03-10 21:49:29','2015-08-29 14:46:02',1,30001687,169,203,173,196,189,175,126,150,420,434,485,439,233,339,343,341,245,197,225,278,307,287,243,264),(3114,'2015-03-10 21:49:29','2015-08-29 14:46:02',1,30003575,19,24,35,59,47,22,19,31,24,17,39,28,34,38,33,21,34,21,18,25,40,34,28,26),(3115,'2015-03-10 21:49:29','2015-08-29 14:46:02',1,30002996,13,25,23,43,32,23,18,30,15,20,51,50,33,37,49,22,10,20,32,28,39,32,27,24),(3116,'2015-03-10 21:49:29','2015-08-29 14:46:02',1,30000533,6,8,4,4,4,0,1,2,1,15,3,1,10,8,20,82,6,111,44,14,10,16,0,0),(3117,'2015-03-10 21:49:29','2015-03-10 21:49:29',1,30000384,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(3118,'2015-03-10 21:49:29','2015-08-29 14:46:02',1,30002294,1,3,1,4,3,2,0,1,0,0,4,4,0,31,15,1,1,0,0,0,21,23,1,0),(3119,'2015-03-10 21:49:29','2015-08-29 14:46:02',1,30000649,3,74,12,9,12,8,5,9,8,13,5,5,10,81,45,2,6,1,7,16,5,6,6,8),(3120,'2015-03-10 21:49:29','2015-08-29 14:46:02',1,30004896,11,16,13,8,8,10,4,3,1,1,0,0,5,4,11,6,3,3,3,5,2,2,0,0),(3121,'2015-03-10 21:49:29','2015-08-29 14:46:02',1,30000704,8,18,14,15,15,13,27,15,19,25,14,17,17,80,56,13,7,6,12,35,12,11,10,10),(3122,'2015-03-10 21:49:29','2015-03-10 21:49:29',1,30001601,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(3123,'2015-03-10 21:49:29','2015-03-10 21:49:29',1,30000397,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(3124,'2015-03-10 21:49:29','2015-08-29 14:46:02',1,30003204,10,1,0,3,2,9,0,3,4,7,1,4,1,1,1,1,4,11,11,0,8,12,3,2),(3125,'2015-03-10 21:49:29','2015-08-29 14:46:02',1,30002493,43,42,44,17,17,44,59,32,42,52,33,32,28,9,14,32,28,4,14,17,28,34,24,38),(3126,'2015-03-10 21:49:29','2015-08-29 14:46:02',1,30004353,7,10,7,11,14,6,15,16,4,10,5,9,9,8,8,1,6,5,12,3,8,6,10,7),(3127,'2015-03-10 21:49:29','2015-08-29 14:46:02',1,30000319,4,11,8,8,10,16,1,10,17,17,11,8,16,23,28,25,13,7,3,17,229,68,38,37),(3128,'2015-03-10 21:49:29','2015-08-29 14:46:02',1,30004885,3,0,0,6,7,3,1,3,5,8,8,4,5,11,11,0,3,62,17,18,9,6,6,8),(3129,'2015-03-10 21:49:29','2015-08-29 14:46:02',1,30004021,8,0,4,2,3,6,8,15,0,2,1,2,1,2,4,3,6,3,19,3,2,1,0,0),(3130,'2015-03-10 21:49:29','2015-08-29 14:46:02',1,30002830,10,0,3,8,2,8,1,6,0,0,0,2,0,1,1,3,2,1,2,1,0,3,5,0),(3131,'2015-03-10 21:49:29','2015-08-29 14:46:02',1,30000300,4,7,3,3,3,8,6,4,16,15,17,19,8,16,15,12,12,17,32,8,11,9,9,4),(3132,'2015-03-10 21:49:29','2015-08-29 14:46:02',1,30003334,7,12,5,6,6,14,5,6,18,23,14,8,33,6,4,8,18,1,4,10,9,13,9,3),(3133,'2015-03-10 21:49:29','2015-08-29 14:46:02',1,30002928,26,93,24,16,26,11,30,46,26,33,29,22,44,40,36,23,24,20,27,24,22,17,20,21),(3134,'2015-03-10 21:49:29','2015-08-29 14:46:02',1,30000466,4,3,6,11,7,8,7,3,17,15,11,10,18,18,11,7,2,1,2,18,12,8,2,0),(3135,'2015-03-10 21:49:29','2015-08-29 14:46:02',1,30001804,2,4,1,0,0,4,3,6,0,1,1,1,2,3,1,4,1,0,1,4,3,4,5,2),(3136,'2015-03-10 21:49:29','2015-08-29 14:46:02',1,30002462,12,3,12,8,6,9,7,9,15,55,7,7,12,2,2,3,13,2,8,11,4,3,12,5),(3137,'2015-03-10 21:49:29','2015-08-29 14:46:02',1,30004747,1,1,0,0,1,3,0,2,6,2,2,0,3,8,3,8,8,6,5,12,4,6,7,2),(3138,'2015-03-10 21:49:29','2015-08-29 14:46:02',1,30004680,3,4,12,5,5,5,4,9,6,6,6,6,4,5,4,3,1,1,2,1,5,1,12,9),(3139,'2015-03-10 21:49:29','2015-08-29 14:46:02',1,30002516,29,26,33,23,27,31,22,32,68,67,23,34,54,43,39,24,22,40,35,42,43,32,36,27),(3140,'2015-03-10 21:49:29','2015-08-29 14:46:02',1,30003432,18,13,12,13,10,25,7,9,8,8,5,14,53,19,24,17,12,9,14,17,18,19,6,12),(3141,'2015-03-10 21:49:29','2015-08-29 14:46:02',1,30004967,173,254,223,201,203,209,155,158,265,265,281,220,313,348,318,328,261,195,214,270,287,285,250,224),(3142,'2015-03-10 21:49:29','2015-08-29 14:46:02',1,30002261,91,94,113,110,83,80,68,68,155,158,164,132,175,134,119,146,125,79,99,141,111,87,119,91),(3143,'2015-03-10 21:49:29','2015-08-29 14:46:02',1,30005316,268,334,339,332,293,304,286,226,482,487,474,435,573,544,545,456,373,345,409,468,476,468,413,392),(3144,'2015-03-10 21:49:29','2015-08-29 14:46:02',1,30002545,251,423,338,337,336,320,228,309,478,504,424,389,487,565,552,548,376,342,393,448,516,435,399,403),(3145,'2015-03-10 21:49:29','2015-08-29 14:46:02',1,30000813,12,17,18,18,40,15,9,22,1,4,7,8,2,5,4,3,8,4,0,3,6,5,3,1),(3146,'2015-03-10 21:49:29','2015-08-29 14:46:02',1,30005106,11,52,31,33,29,18,8,6,11,3,7,11,3,23,22,6,3,8,5,10,23,15,6,6),(3147,'2015-03-10 21:49:29','2015-08-29 14:46:02',1,30004800,16,14,7,6,0,5,7,42,17,15,6,33,21,128,12,13,16,1,5,9,30,20,26,23),(3148,'2015-03-10 21:49:29','2015-08-29 14:46:02',1,30002458,21,12,38,24,20,17,13,11,29,66,52,56,38,16,16,33,38,8,23,25,22,26,22,29),(3149,'2015-03-10 21:49:29','2015-08-29 14:46:02',1,30004705,22,22,23,13,13,14,24,13,30,46,25,25,27,20,24,32,31,11,10,24,39,44,24,24),(3150,'2015-03-10 21:49:29','2015-08-29 14:46:02',1,30002355,28,62,36,44,39,63,26,33,105,112,32,39,397,182,307,177,65,32,41,76,91,52,82,98),(3151,'2015-03-10 21:49:29','2015-08-29 14:46:02',1,30000971,2,14,1,3,1,2,4,3,5,4,0,1,6,19,13,16,3,9,3,5,6,10,5,2),(3152,'2015-03-10 21:49:29','2015-08-29 14:46:02',1,30004364,32,65,56,80,78,56,152,77,43,60,43,32,33,78,50,42,40,36,34,32,27,34,39,27),(3153,'2015-03-10 21:49:29','2015-08-29 14:46:02',1,30001078,1,7,3,3,2,8,11,14,14,14,16,14,13,17,27,11,19,2,2,0,11,18,22,18),(3154,'2015-03-10 21:49:29','2015-08-29 14:46:02',1,30000208,69,27,61,59,40,42,11,20,4,13,20,11,13,12,4,10,15,19,35,7,6,6,17,14),(3155,'2015-03-10 21:49:29','2015-08-29 14:46:02',1,30004823,12,5,39,8,10,12,22,1,1,2,2,2,4,37,21,2,3,0,2,3,3,2,1,0),(3156,'2015-03-10 21:49:29','2015-08-29 14:46:02',1,30002869,10,8,26,5,11,5,3,4,16,18,29,20,18,31,23,6,15,2,2,39,25,22,24,15),(3157,'2015-03-10 21:49:29','2015-08-29 14:46:02',1,30001995,19,4,6,5,5,0,1,5,1,1,4,3,1,1,1,5,0,1,1,2,0,5,3,3),(3158,'2015-03-10 21:49:29','2015-08-29 14:46:02',1,30002601,8,2,3,1,0,0,0,0,0,0,6,7,3,50,9,10,33,0,22,2,6,5,4,3),(3159,'2015-03-10 21:49:29','2015-08-29 14:46:02',1,30004449,3,2,0,3,2,5,1,1,0,1,0,0,0,3,0,2,1,0,5,7,4,4,2,3),(3160,'2015-03-10 21:49:29','2015-08-29 14:46:02',1,30000620,1,4,7,3,1,3,1,6,2,2,0,0,2,4,4,3,10,3,3,6,3,1,3,3),(3161,'2015-03-10 21:49:29','2015-08-29 14:46:02',1,30000922,2,1,1,0,1,1,1,2,1,0,2,1,4,1,2,0,1,0,2,3,1,4,1,0),(3162,'2015-03-10 21:49:29','2015-03-10 21:49:29',1,30001479,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(3163,'2015-03-10 21:49:29','2015-08-29 14:46:02',1,30004356,32,29,10,16,19,12,31,33,18,25,27,33,19,24,29,10,14,10,31,12,21,15,17,9),(3164,'2015-03-10 21:49:30','2015-08-29 14:46:02',1,30004633,4,3,1,3,1,2,0,7,1,1,5,6,3,9,7,0,5,5,4,9,6,2,4,3),(3165,'2015-03-10 21:49:30','2015-08-29 14:46:02',1,30000591,5,19,3,4,3,3,11,5,7,4,3,0,39,55,33,5,4,8,11,7,3,14,5,3),(3166,'2015-03-10 21:49:30','2015-08-29 14:46:02',1,30000639,1,20,5,5,9,4,2,11,7,11,9,11,5,104,70,3,4,0,9,9,4,5,5,8),(3167,'2015-03-10 21:49:30','2015-08-29 14:46:02',1,30002428,4,33,18,14,13,8,7,25,20,15,27,9,4,6,8,17,11,8,13,24,8,11,6,8),(3168,'2015-03-10 21:49:30','2015-08-29 14:46:02',1,30000905,22,37,22,22,33,9,3,20,19,17,7,15,45,43,28,22,18,28,48,50,25,31,9,21),(3169,'2015-03-10 21:49:30','2015-08-29 14:46:02',1,30001032,28,44,40,46,45,16,26,19,22,21,18,30,45,60,66,29,44,31,22,34,40,39,28,32),(3170,'2015-03-10 21:49:30','2015-08-29 14:46:02',1,30004511,9,14,8,6,1,16,8,12,9,4,8,8,5,10,8,3,6,1,1,4,2,3,11,7),(3171,'2015-03-10 21:49:30','2015-08-29 14:46:02',1,30001597,8,0,1,2,2,2,0,1,22,24,19,15,26,10,14,15,19,13,5,11,16,6,13,7),(3172,'2015-03-10 21:49:30','2015-08-29 14:46:02',1,30003200,9,2,2,5,3,9,0,4,1,1,1,2,1,1,1,4,8,11,12,1,7,12,2,6),(3173,'2015-03-10 21:49:30','2015-08-29 14:46:02',1,30000848,68,118,132,158,114,59,97,66,147,180,731,468,98,74,81,231,52,38,59,71,92,130,142,129),(3174,'2015-03-10 21:49:30','2015-08-29 14:46:02',1,30004478,6,18,18,6,9,13,11,11,24,15,17,14,4,25,23,25,14,7,21,11,12,12,12,15),(3175,'2015-03-10 21:49:30','2015-08-29 14:46:02',1,30004881,24,49,32,46,40,30,38,37,31,34,26,15,14,22,19,27,9,4,30,28,16,21,31,25),(3176,'2015-03-10 21:49:30','2015-08-29 14:46:02',1,30005140,12,5,1,2,3,0,7,11,0,0,2,2,0,0,1,2,1,0,1,2,3,3,2,2),(3177,'2015-03-10 21:49:30','2015-08-29 14:46:02',1,30004795,3,3,4,6,7,6,7,3,2,2,3,3,3,4,8,0,4,2,9,6,2,1,1,13),(3178,'2015-03-10 21:49:30','2015-08-29 14:46:02',1,30003665,12,9,14,19,14,76,12,10,15,23,12,9,21,9,9,11,4,20,11,21,6,3,12,8),(3179,'2015-03-10 21:49:30','2015-08-29 14:46:02',1,30002377,6,7,6,5,4,6,0,1,3,0,3,3,6,5,2,1,1,0,19,9,7,7,9,1),(3180,'2015-03-10 21:49:30','2015-08-29 14:46:02',1,30004213,2,3,5,8,9,0,1,2,0,3,1,1,1,2,0,0,4,0,0,0,2,5,0,0),(3181,'2015-03-10 21:49:30','2015-08-29 14:46:02',1,30002603,3,0,1,0,0,0,0,0,0,0,2,3,0,3,4,4,13,0,0,0,0,0,1,2),(3182,'2015-03-10 21:49:30','2015-08-29 14:46:02',1,30000471,3,2,2,6,5,9,3,7,32,6,6,6,18,40,33,3,4,1,1,26,14,8,2,3),(3183,'2015-03-10 21:49:30','2015-08-29 14:46:02',1,30002000,11,6,8,7,8,5,2,12,4,5,4,4,3,9,3,4,1,8,10,4,3,5,4,4),(3184,'2015-03-10 21:49:30','2015-08-29 14:46:02',1,30000953,5,1,0,0,0,0,0,1,4,4,2,0,1,0,0,4,1,0,1,1,1,1,1,4),(3185,'2015-03-10 21:49:30','2015-08-29 14:46:02',1,30002181,13,36,28,30,17,42,18,19,32,30,15,12,18,30,22,21,22,71,178,48,18,23,28,15),(3186,'2015-03-10 21:49:30','2015-08-29 14:46:02',1,30004802,0,2,1,2,2,1,1,1,3,0,0,1,1,1,1,3,0,1,2,1,2,3,3,1),(3187,'2015-03-10 21:49:30','2015-08-29 14:46:02',1,30001747,9,12,26,13,8,1,2,3,2,3,0,0,0,5,4,3,4,0,0,0,0,0,2,1),(3188,'2015-03-10 21:49:30','2015-08-29 14:46:02',1,30004010,25,1,6,2,3,2,4,3,9,15,16,9,11,14,9,6,5,5,1,3,11,5,12,13),(3189,'2015-03-10 21:49:30','2015-08-29 14:46:02',1,30001332,7,3,7,2,1,1,6,0,5,3,16,16,4,2,0,3,4,1,4,5,4,1,8,1),(3190,'2015-03-10 21:49:30','2015-08-29 14:46:02',1,30003284,32,126,26,47,43,31,33,17,44,31,42,34,41,37,48,49,23,41,35,43,50,50,42,36),(3191,'2015-03-10 21:49:30','2015-08-29 14:46:02',1,30004773,2,1,1,0,0,1,5,3,11,8,6,3,12,11,9,10,4,2,6,4,4,5,3,2),(3192,'2015-03-10 21:49:30','2015-08-29 14:46:02',1,30004461,5,10,8,2,4,5,4,13,7,2,7,10,3,26,18,21,22,31,12,15,22,14,12,15),(3193,'2015-03-10 21:49:30','2015-08-29 14:46:02',1,30002852,1,1,1,2,0,0,0,5,1,0,2,2,1,0,0,0,4,2,0,1,1,0,0,2),(3194,'2015-03-10 21:49:30','2015-08-29 14:46:02',1,30000556,0,0,2,5,2,2,0,1,6,5,2,2,3,8,5,2,4,4,5,7,5,5,0,0),(3195,'2015-03-10 21:49:30','2015-08-29 14:46:02',1,30000761,3,10,7,6,5,10,8,6,28,16,6,0,3,4,5,6,7,1,12,2,1,17,6,5),(3196,'2015-03-10 21:49:30','2015-08-29 14:46:02',1,30005153,0,1,2,1,1,1,0,0,0,0,0,0,0,1,2,1,2,0,0,0,2,1,1,4),(3197,'2015-03-10 21:49:30','2015-08-29 14:46:02',1,30001754,6,1,23,7,4,10,6,7,1,0,4,6,1,7,9,2,3,0,12,6,3,4,3,1),(3198,'2015-03-10 21:49:30','2015-08-29 14:46:02',1,30004739,6,19,3,12,10,15,11,11,226,373,107,57,185,189,271,179,155,108,172,228,75,36,38,76),(3199,'2015-03-10 21:49:30','2015-08-29 14:46:02',1,30000633,0,12,3,4,5,1,8,0,1,1,7,5,2,36,35,1,8,0,3,1,0,2,3,2),(3200,'2015-03-10 21:49:30','2015-08-29 14:46:02',1,30005134,4,3,4,1,1,1,0,0,9,5,2,2,1,8,10,3,11,4,2,10,3,9,13,5),(3201,'2015-03-10 21:49:30','2015-08-29 14:46:02',1,30004901,3,0,2,5,4,7,1,5,1,1,2,2,2,3,5,0,0,0,3,5,0,2,8,5),(3202,'2015-03-10 21:49:30','2015-08-29 14:46:02',1,30002374,0,0,2,2,1,1,2,4,9,7,2,2,56,79,29,6,5,0,4,2,2,3,2,2),(3203,'2015-03-10 21:49:30','2015-08-29 14:46:02',1,30000681,4,36,6,52,50,6,14,6,19,13,13,16,114,57,25,14,12,4,27,159,6,21,13,4),(3204,'2015-03-10 21:49:30','2015-03-10 21:49:30',1,30001625,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(3205,'2015-03-10 21:49:30','2015-08-29 14:46:02',1,30000998,20,87,25,18,21,25,15,22,21,23,116,69,28,65,222,40,27,14,14,20,120,44,28,23),(3206,'2015-03-10 21:49:30','2015-08-29 14:46:02',1,30004369,8,16,14,20,13,20,15,16,38,42,39,28,26,77,35,10,19,9,15,15,13,9,14,10),(3207,'2015-03-10 21:49:30','2015-08-29 14:46:02',1,30000272,22,10,24,31,34,14,28,25,3,2,6,4,5,4,1,1,2,1,1,1,0,2,3,2),(3208,'2015-03-10 21:49:30','2015-08-29 14:46:02',1,30004234,5,3,1,3,1,8,2,3,22,25,7,7,2,11,15,9,4,0,0,4,11,9,6,8),(3209,'2015-03-10 21:49:30','2015-08-29 14:46:02',1,30002190,37,60,62,61,61,57,39,44,73,71,71,58,57,91,92,70,87,54,48,58,58,69,76,73),(3210,'2015-03-10 21:49:30','2015-08-29 14:46:02',1,30003558,6,7,9,20,16,10,10,10,9,11,23,24,29,15,9,12,14,1,6,8,19,23,19,19),(3211,'2015-03-10 21:49:30','2015-08-29 14:46:02',1,30003503,1434,1637,1595,1591,1495,1211,826,1064,1844,1941,1903,1662,1875,2214,2162,2028,1660,1337,1461,1773,1987,1904,1621,1601),(3212,'2015-03-10 21:49:30','2015-08-29 14:46:02',1,30005243,141,153,172,151,134,160,139,241,222,246,225,212,216,231,194,178,153,113,211,218,265,226,256,217),(3213,'2015-03-10 21:49:30','2015-08-29 14:46:02',1,30005064,20,4,9,2,4,1,4,7,3,2,3,1,3,2,1,4,3,6,6,7,2,3,3,3),(3214,'2015-03-10 21:49:30','2015-08-29 14:46:02',1,30002570,232,318,314,300,250,257,172,218,339,328,345,344,439,407,404,413,301,213,282,327,361,321,275,297),(3215,'2015-03-10 21:49:30','2015-08-29 14:46:02',1,30000096,4,3,2,3,2,1,5,4,20,27,14,11,2,4,5,3,2,1,1,1,5,18,12,7),(3216,'2015-03-10 21:49:30','2015-08-29 14:46:02',1,30003520,108,141,121,116,117,139,75,119,210,173,164,136,170,242,243,184,151,141,143,183,180,173,165,172),(3217,'2015-03-10 21:49:30','2015-08-29 14:46:02',1,30000104,5,1,1,4,5,9,2,1,3,2,14,17,10,6,6,5,6,4,5,5,6,5,5,1),(3218,'2015-03-10 21:49:30','2015-08-29 14:46:02',1,30000122,13,11,13,20,18,17,11,17,35,24,11,17,35,26,23,16,15,11,9,14,18,14,24,21),(3219,'2015-03-10 21:49:30','2015-08-29 14:46:02',1,30003499,7,4,7,10,6,1,5,10,2,6,9,12,10,5,3,3,2,6,8,14,4,6,8,6),(3220,'2015-03-10 21:49:30','2015-08-29 14:46:02',1,30003546,16,35,44,38,41,129,40,22,22,17,23,20,29,28,31,40,24,6,22,7,31,42,34,39),(3221,'2015-03-10 21:49:30','2015-08-29 14:46:02',1,30000162,24,37,21,31,31,38,17,14,25,35,41,63,24,78,60,41,33,25,19,33,100,70,18,37),(3222,'2015-03-10 21:49:30','2015-08-29 14:46:02',1,30003576,36,66,98,182,145,50,56,36,72,84,95,64,90,100,96,88,92,47,46,83,91,90,71,65),(3223,'2015-03-10 21:49:30','2015-08-29 14:46:02',1,30000047,5,8,4,3,4,2,0,8,7,12,16,7,1,6,6,16,10,5,4,7,6,6,9,8),(3224,'2015-03-10 21:49:30','2015-08-29 14:46:02',1,30005210,15,24,54,11,17,52,10,12,28,51,22,33,72,23,31,34,42,19,21,36,56,40,39,39),(3225,'2015-03-10 21:49:30','2015-08-29 14:46:02',1,30001393,368,431,478,438,390,388,369,337,421,439,467,455,514,549,563,572,507,292,323,488,586,549,460,408),(3226,'2015-03-10 21:49:30','2015-08-29 14:46:02',1,30005235,131,161,138,135,121,157,93,89,230,223,219,193,215,244,245,229,198,141,159,202,213,191,209,172),(3227,'2015-03-10 21:49:30','2015-08-29 14:46:02',1,30003084,2,1,15,2,3,4,2,4,17,25,7,15,11,9,11,25,18,1,2,1,9,13,3,11),(3228,'2015-03-10 21:49:30','2015-08-29 14:46:02',1,30012505,54,42,24,43,38,48,49,30,60,65,55,54,49,68,68,51,60,40,41,56,66,60,59,51),(3229,'2015-03-10 21:49:30','2015-08-29 14:46:02',1,30002242,40,69,92,65,73,72,35,37,78,92,101,96,99,94,96,82,44,49,49,75,53,58,57,49),(3230,'2015-03-10 21:49:30','2015-08-29 14:46:02',1,30003559,69,66,94,65,54,61,28,52,66,76,85,118,97,145,105,107,124,94,59,102,75,98,100,75),(3231,'2015-03-10 21:49:30','2015-08-29 14:46:02',1,30005201,634,895,1032,852,822,744,594,671,972,1025,1054,949,1102,1274,1283,1192,926,664,795,967,1088,1063,1035,962),(3232,'2015-03-10 21:49:30','2015-08-29 14:46:02',1,30005230,152,173,159,158,153,153,125,126,232,233,232,191,250,256,262,256,228,153,189,254,275,253,232,193),(3233,'2015-03-10 21:49:30','2015-08-29 14:46:02',1,30004112,6,33,10,22,25,20,17,16,54,52,44,33,21,34,28,23,31,42,29,42,26,27,28,22),(3234,'2015-03-10 21:49:30','2015-08-29 14:46:02',1,30001658,47,96,86,73,67,71,51,60,97,116,114,116,124,130,144,121,104,110,108,135,120,121,112,98),(3235,'2015-03-10 21:49:30','2015-08-29 14:46:02',1,30002760,46,255,55,57,64,40,46,72,77,84,68,48,77,134,97,95,68,96,68,67,92,96,59,26),(3236,'2015-03-10 21:49:30','2015-08-29 14:46:02',1,30003060,24,26,17,30,24,26,30,19,50,37,63,30,44,35,41,49,27,53,18,73,29,39,34,30),(3237,'2015-03-10 21:49:30','2015-08-29 14:46:02',1,30003855,23,14,54,31,43,9,7,14,30,35,11,5,52,29,15,33,24,7,19,10,38,46,19,19),(3238,'2015-03-10 21:49:30','2015-08-29 14:46:02',1,30001388,70,204,90,105,92,89,73,83,95,82,128,85,115,139,127,179,94,74,124,117,95,102,103,91),(3239,'2015-03-10 21:49:30','2015-08-29 14:46:02',1,30004247,0,6,1,1,7,1,4,0,2,4,3,3,0,4,4,0,3,2,4,4,0,3,2,2),(3240,'2015-03-10 21:49:30','2015-08-29 14:46:02',1,30003024,124,119,143,102,94,150,107,102,137,137,172,162,241,190,175,199,162,132,149,155,182,179,173,186),(3241,'2015-03-10 21:49:30','2015-08-29 14:46:02',1,30002194,52,66,100,101,77,50,31,32,49,42,38,25,59,60,55,51,68,39,40,83,60,74,53,48),(3242,'2015-03-10 21:49:30','2015-08-29 14:46:02',1,30001722,63,87,71,44,33,63,62,44,97,128,115,73,113,98,99,107,93,69,74,79,95,95,90,82),(3243,'2015-03-10 21:49:30','2015-08-29 14:46:02',1,30045318,238,272,145,212,201,140,122,126,230,242,112,128,158,197,140,149,151,127,288,175,107,160,135,164),(3244,'2015-03-10 21:49:30','2015-08-29 14:46:02',1,30005325,61,92,92,116,84,76,36,55,81,81,69,76,103,121,138,136,91,103,74,101,114,97,102,101),(3245,'2015-03-10 21:49:30','2015-08-29 14:46:02',1,30005041,122,155,181,138,134,148,94,146,217,262,218,189,251,226,259,211,174,165,170,184,222,233,203,195),(3246,'2015-03-10 21:49:30','2015-08-29 14:46:02',1,30004235,8,3,1,4,10,14,2,2,5,4,8,9,11,10,20,13,6,3,9,4,13,8,9,12),(3247,'2015-03-10 21:49:30','2015-08-29 14:46:02',1,30003868,4,10,8,2,2,6,1,8,15,18,15,12,10,5,3,11,13,8,32,13,7,13,12,12),(3248,'2015-03-10 21:49:30','2015-08-29 14:46:02',1,30000052,78,97,74,68,85,70,61,81,137,149,137,117,118,184,171,116,101,88,82,99,102,82,96,85),(3249,'2015-03-10 21:49:30','2015-08-29 14:46:02',1,30000202,25,47,43,40,35,46,27,47,85,88,73,65,75,48,61,60,81,56,54,45,73,69,46,51),(3250,'2015-03-10 21:49:30','2015-08-29 14:46:02',1,30003444,14,8,16,30,29,19,24,5,37,73,16,9,12,31,32,20,31,5,18,32,20,42,23,22),(3251,'2015-03-10 21:49:30','2015-08-29 14:46:02',1,30003034,149,284,229,188,198,195,147,217,310,353,273,227,361,387,371,323,289,212,227,317,340,334,280,286),(3252,'2015-03-10 21:49:30','2015-08-29 14:46:02',1,30003396,74,81,109,104,112,98,20,63,88,101,91,71,130,112,118,124,88,73,94,104,141,158,81,77),(3253,'2015-03-10 21:49:30','2015-08-29 14:46:02',1,30001654,59,81,79,85,85,78,40,37,95,93,84,68,84,111,101,108,63,45,75,77,71,68,84,63),(3254,'2015-03-10 21:49:30','2015-08-29 14:46:02',1,30000140,316,412,398,408,401,317,269,244,434,471,400,354,529,523,483,501,396,298,285,404,485,497,438,447),(3255,'2015-03-10 21:49:30','2015-08-29 14:46:02',1,30003835,37,70,63,72,71,21,32,54,69,87,65,63,167,81,61,41,52,39,44,46,73,69,69,61),(3256,'2015-03-10 21:49:30','2015-08-29 14:46:02',1,30002213,18,47,15,26,27,10,26,21,39,50,32,49,55,50,55,36,18,16,30,48,37,44,29,32),(3257,'2015-03-10 21:49:30','2015-08-29 14:46:02',1,30001182,9,14,32,26,29,23,9,11,56,75,55,45,51,88,93,90,42,33,56,50,33,34,44,32),(3258,'2015-03-10 21:49:30','2015-08-29 14:46:02',1,30001832,16,18,22,20,24,31,18,34,201,186,33,37,109,357,369,36,104,57,68,86,67,72,81,75),(3259,'2015-03-10 21:49:30','2015-08-29 14:46:02',1,30001818,13,6,15,9,8,2,23,7,12,21,18,1,3,2,2,2,4,1,3,7,3,1,6,1),(3260,'2015-03-10 21:49:30','2015-08-29 14:46:02',1,30001316,12,2,3,3,4,3,0,4,2,1,3,4,2,4,4,1,4,3,4,2,4,5,3,1),(3261,'2015-03-10 21:49:30','2015-08-29 14:46:02',1,30000209,32,48,39,51,34,50,28,33,19,16,21,20,41,22,26,74,37,55,43,15,47,38,24,18),(3262,'2015-03-10 21:49:30','2015-08-29 14:46:02',1,30000443,10,4,7,9,8,16,12,6,23,32,38,26,40,74,41,34,21,11,81,44,32,34,25,10),(3263,'2015-03-10 21:49:30','2015-08-29 14:46:02',1,30001027,1,7,0,0,0,1,0,4,2,3,2,7,2,3,3,0,1,0,3,4,2,2,7,3),(3264,'2015-03-10 21:49:30','2015-08-29 14:46:02',1,30004398,17,17,29,13,21,69,10,8,21,23,13,7,52,21,15,29,59,60,85,51,18,20,29,25),(3265,'2015-03-10 21:49:30','2015-08-29 14:46:02',1,30002974,182,226,181,201,184,167,99,145,219,235,200,204,264,259,283,289,210,131,206,272,262,232,258,227),(3266,'2015-03-10 21:49:30','2015-08-29 14:46:02',1,30002401,20,20,24,31,27,32,17,19,30,52,14,12,32,18,11,24,16,32,16,35,20,17,6,8),(3267,'2015-03-10 21:49:30','2015-08-29 14:46:02',1,30003403,21,17,20,32,32,14,10,14,20,29,19,17,9,30,29,19,28,32,23,14,27,25,17,27),(3268,'2015-03-10 21:49:30','2015-08-29 14:46:02',1,30002525,197,281,197,206,231,216,150,135,250,253,216,197,289,295,310,327,254,172,234,253,289,270,263,223),(3269,'2015-03-10 21:49:30','2015-08-29 14:46:02',1,30005296,65,81,111,81,80,134,72,74,139,117,57,44,166,87,81,82,60,81,98,246,120,94,77,92),(3270,'2015-03-10 21:49:30','2015-08-29 14:46:02',1,30005238,7,28,7,16,28,6,5,10,15,14,7,5,24,21,12,15,15,2,13,15,11,11,4,3),(3271,'2015-03-10 21:49:30','2015-08-29 14:46:02',1,30002986,178,88,137,79,72,22,36,47,97,91,53,59,101,127,93,75,57,70,103,86,96,92,68,65),(3272,'2015-03-10 21:49:30','2015-08-29 14:46:02',1,30004121,10,13,7,7,4,11,4,11,26,35,10,1,13,13,20,25,9,14,7,12,20,12,9,10),(3273,'2015-03-10 21:49:30','2015-08-29 14:46:02',1,30003853,31,46,21,38,33,10,20,26,18,22,20,30,32,12,15,14,12,25,5,21,34,24,23,29),(3274,'2015-03-10 21:49:30','2015-08-29 14:46:02',1,30005303,371,508,468,474,427,377,309,312,473,532,484,417,543,638,600,552,477,424,455,503,613,622,460,408),(3275,'2015-03-10 21:49:30','2015-08-29 14:46:02',1,30003538,42,57,50,57,36,24,72,54,38,35,39,44,33,67,54,46,33,31,29,18,27,36,24,27),(3276,'2015-03-10 21:49:30','2015-08-29 14:46:02',1,30044971,10,14,8,19,18,9,12,15,17,29,39,31,13,19,14,12,19,10,18,17,27,28,23,22),(3277,'2015-03-10 21:49:30','2015-08-29 14:46:02',1,30000164,52,74,112,71,80,38,39,43,48,91,104,86,220,105,284,91,109,46,73,83,139,78,112,194),(3278,'2015-03-10 21:49:30','2015-08-29 14:46:02',1,30004975,237,315,316,265,263,278,195,239,329,310,347,249,442,456,393,416,342,190,367,416,416,393,326,292),(3279,'2015-03-10 21:49:30','2015-08-29 14:46:02',1,30002637,33,43,38,34,35,27,25,35,52,50,44,54,47,48,50,44,35,36,40,56,73,68,42,45),(3280,'2015-03-10 21:49:30','2015-08-29 14:46:02',1,30003568,1,3,10,10,12,5,4,2,7,6,7,6,4,1,1,2,3,1,9,9,4,4,1,6),(3281,'2015-03-10 21:49:30','2015-08-29 14:46:02',1,30003032,281,411,406,357,306,386,292,312,492,478,489,420,669,594,635,553,486,413,427,533,554,556,527,482),(3282,'2015-03-10 21:49:30','2015-08-29 14:46:02',1,30002299,7,5,4,6,9,12,8,8,1,4,5,6,3,3,2,2,2,4,1,2,3,7,3,19),(3283,'2015-03-10 21:49:30','2015-08-29 14:46:02',1,30004934,14,29,16,15,6,15,10,75,23,18,11,15,24,21,15,28,10,4,8,20,26,23,12,11),(3284,'2015-03-10 21:49:30','2015-08-29 14:46:02',1,30000321,9,22,10,22,16,10,5,4,7,15,9,4,12,6,3,4,13,5,9,12,7,7,5,3),(3285,'2015-03-10 21:49:30','2015-08-29 14:46:02',1,30003712,40,86,103,42,37,43,16,40,235,156,99,86,224,169,53,135,49,44,114,67,110,183,118,95),(3286,'2015-03-10 21:49:30','2015-08-29 14:46:02',1,30003268,38,295,71,37,32,71,55,73,98,105,38,40,75,87,67,95,77,107,54,103,128,123,52,54),(3287,'2015-03-10 21:49:30','2015-08-29 14:46:02',1,30001988,6,5,2,3,2,5,9,7,2,2,0,0,1,4,4,0,0,0,0,2,0,0,1,0),(3288,'2015-03-10 21:49:30','2015-08-29 14:46:02',1,30004113,53,66,57,48,51,76,56,42,91,101,77,72,101,105,110,84,70,61,66,106,81,86,99,76),(3289,'2015-03-10 21:49:30','2015-08-29 14:46:02',1,30003539,4,3,0,5,5,11,3,3,11,12,10,7,15,21,22,20,6,1,2,0,2,2,6,3),(3290,'2015-03-10 21:49:30','2015-08-29 14:46:02',1,30004968,197,256,261,249,246,189,136,161,212,227,258,203,320,375,312,338,287,187,198,240,327,282,228,234),(3291,'2015-03-10 21:49:30','2015-08-29 14:46:02',1,30000046,45,47,32,36,30,28,36,20,71,83,83,49,99,63,61,78,70,47,39,55,38,42,60,42),(3292,'2015-03-10 21:49:30','2015-08-29 14:46:02',1,30002198,99,158,127,139,122,114,72,84,146,213,165,170,179,286,212,175,126,114,177,164,256,186,166,153),(3293,'2015-03-10 21:49:30','2015-08-29 14:46:02',1,30002236,9,20,40,33,30,9,12,6,68,185,28,22,28,20,22,55,23,16,17,25,29,33,28,27),(3294,'2015-03-10 21:49:30','2015-08-29 14:46:02',1,30003001,17,8,13,15,7,18,15,15,6,16,16,18,23,28,14,19,20,25,13,13,16,16,12,10),(3295,'2015-03-10 21:49:30','2015-08-29 14:46:02',1,30000079,5,6,16,2,5,6,11,6,14,21,22,14,24,8,5,22,8,12,15,20,4,13,9,9),(3296,'2015-03-10 21:49:30','2015-08-29 14:46:02',1,30001676,8,27,20,24,24,22,10,26,38,33,24,20,34,40,44,54,57,27,20,23,73,63,54,37),(3297,'2015-03-10 21:49:30','2015-08-29 14:46:02',1,30001691,59,84,65,71,62,73,38,86,291,276,358,328,99,142,144,138,99,80,100,102,109,110,89,91),(3298,'2015-03-10 21:49:30','2015-08-29 14:46:02',1,30002410,13,10,13,12,6,8,10,6,50,50,24,27,29,12,5,17,10,32,15,15,5,6,9,11),(3299,'2015-03-10 21:49:30','2015-08-29 14:46:02',1,30004153,9,3,7,5,7,3,2,7,8,9,17,25,6,21,16,20,15,21,14,20,10,14,16,12),(3300,'2015-03-10 21:49:30','2015-08-29 14:46:02',1,30002732,64,85,73,52,60,78,42,68,125,114,88,89,169,167,121,137,112,76,118,101,137,130,99,75),(3301,'2015-03-10 21:49:30','2015-08-29 14:46:02',1,30002719,105,130,89,96,99,85,99,89,83,60,80,71,97,105,123,104,80,98,230,100,102,88,102,88),(3302,'2015-03-10 21:49:30','2015-08-29 14:46:02',1,30005084,24,15,10,16,13,7,18,16,16,16,22,23,21,23,22,21,19,5,12,44,12,13,15,13),(3303,'2015-03-10 21:49:30','2015-08-29 14:46:02',1,30003563,54,63,74,89,58,37,25,36,57,57,80,89,125,107,89,80,71,53,34,88,53,77,73,62),(3304,'2015-03-10 21:49:30','2015-08-29 14:46:02',1,30005059,31,65,48,52,40,37,23,26,80,92,85,71,74,104,89,65,61,42,49,62,48,46,42,51),(3305,'2015-03-10 21:49:30','2015-08-29 14:46:02',1,30004251,13,30,12,29,21,14,8,25,8,15,14,9,4,4,3,7,0,4,5,9,4,2,2,7),(3306,'2015-03-10 21:49:30','2015-08-29 14:46:02',1,30002665,23,18,34,34,36,24,23,17,12,15,25,15,32,33,28,29,36,46,45,37,31,19,23,29),(3307,'2015-03-10 21:49:30','2015-08-29 14:46:02',1,30003482,103,88,103,82,86,83,56,39,74,104,84,90,131,113,100,136,86,82,84,91,130,101,113,94),(3308,'2015-03-10 21:49:30','2015-08-29 14:46:02',1,30000120,44,60,70,79,76,52,26,59,89,71,61,69,86,56,44,67,65,56,43,55,68,67,75,77),(3309,'2015-03-10 21:49:30','2015-08-29 14:46:02',1,30002255,23,15,11,20,28,0,7,5,4,6,7,6,1,6,3,0,4,6,6,2,5,4,5,10),(3310,'2015-03-10 21:49:30','2015-08-29 14:46:02',1,30005133,2,7,3,12,8,9,1,4,6,2,4,7,7,12,17,5,4,2,9,15,24,16,4,4),(3311,'2015-03-10 21:49:30','2015-08-29 14:46:02',1,30000803,8,18,18,7,17,12,10,16,5,4,2,1,10,5,5,10,8,2,2,3,10,17,3,4),(3312,'2015-03-10 21:49:30','2015-08-29 14:46:02',1,30004899,0,0,0,3,2,7,0,3,2,3,1,0,2,3,6,1,1,0,3,5,0,0,9,6),(3313,'2015-03-10 21:49:30','2015-08-29 14:46:02',1,30000851,3,2,4,1,2,3,0,2,7,3,1,2,1,3,2,0,4,0,1,1,3,4,3,6),(3314,'2015-03-10 21:49:30','2015-08-29 14:46:02',1,30004743,1,14,6,5,5,14,7,10,2,2,9,16,32,29,30,8,5,1,11,6,2,2,2,3),(3315,'2015-03-10 21:49:30','2015-08-29 14:46:02',1,30004064,9,17,14,46,16,9,3,15,29,41,44,19,33,26,13,12,14,9,12,20,19,22,9,9),(3316,'2015-03-10 21:49:30','2015-08-29 14:46:02',1,30004183,11,10,24,20,19,20,3,24,35,44,43,40,39,12,28,30,25,2,1,6,30,39,33,27),(3317,'2015-03-10 21:49:30','2015-08-29 14:46:02',1,30003962,16,5,11,7,11,9,13,10,15,22,13,10,18,12,9,18,12,8,12,9,9,9,21,22),(3318,'2015-03-10 21:49:30','2015-08-29 14:46:02',1,30000529,9,22,6,9,7,4,9,3,9,23,13,22,20,48,33,10,33,10,8,9,29,17,40,25),(3319,'2015-03-10 21:49:30','2015-08-29 14:46:02',1,30000539,2,3,1,6,1,4,0,2,2,2,0,0,2,3,3,0,0,0,0,0,1,1,0,0),(3320,'2015-03-10 21:49:30','2015-08-29 14:46:02',1,30001913,4,14,23,9,11,16,5,4,9,18,24,19,43,26,21,18,27,15,32,40,7,13,9,11),(3321,'2015-03-10 21:49:30','2015-08-29 14:46:02',1,30004913,43,34,4,15,12,14,3,5,29,17,8,6,16,60,51,12,47,17,29,3,7,11,10,18),(3322,'2015-03-10 21:49:30','2015-08-29 14:46:02',1,30000580,36,18,35,25,16,14,9,19,45,32,42,30,33,58,50,40,30,37,53,53,116,129,31,35),(3323,'2015-03-10 21:49:30','2015-08-29 14:46:02',1,30004618,13,25,22,12,19,24,7,1,0,0,1,2,7,8,7,12,13,2,5,10,3,1,2,1),(3324,'2015-03-10 21:49:30','2015-08-29 14:46:02',1,30002840,11,10,11,23,29,10,6,17,8,10,14,20,31,20,13,4,7,2,1,15,11,11,13,10),(3325,'2015-03-10 21:49:30','2015-08-29 14:46:02',1,30000270,39,8,29,38,48,16,23,31,6,7,7,5,13,9,0,1,4,1,2,1,1,2,1,0),(3326,'2015-03-10 21:49:30','2015-08-29 14:46:02',1,30004765,2,14,0,1,0,1,1,13,8,10,4,2,7,4,4,1,3,2,1,3,6,1,2,2),(3327,'2015-03-10 21:49:30','2015-08-29 14:46:02',1,30002359,8,14,22,17,6,9,3,6,2,3,0,3,1,9,17,1,3,2,3,3,0,0,2,1),(3328,'2015-03-10 21:49:30','2015-08-29 14:46:02',1,30004223,8,0,2,6,6,2,1,6,0,0,3,2,0,5,1,2,1,1,2,2,4,5,25,13),(3329,'2015-03-10 21:49:30','2015-08-29 14:46:02',1,30003828,73,262,53,51,63,48,70,34,124,118,59,54,244,95,101,48,54,97,107,205,147,129,63,71),(3330,'2015-03-10 21:49:30','2015-08-29 14:46:02',1,30000801,2,11,0,4,10,1,6,1,5,3,2,2,2,2,2,3,1,0,0,1,0,0,2,1),(3331,'2015-03-10 21:49:30','2015-08-29 14:46:02',1,30004136,22,21,11,15,20,19,7,10,62,54,17,7,35,20,33,44,27,12,8,27,28,18,27,22),(3332,'2015-03-10 21:49:30','2015-08-29 14:46:02',1,30001720,7,1,3,0,0,1,1,3,8,6,6,2,4,21,19,14,2,7,7,5,11,10,4,9),(3333,'2015-03-10 21:49:30','2015-08-29 14:46:02',1,30000042,1,1,2,0,2,0,2,1,0,1,4,7,7,6,1,5,3,16,7,4,1,2,3,2),(3334,'2015-03-10 21:49:30','2015-08-29 14:46:02',1,30000031,14,43,51,45,28,27,21,17,41,43,40,39,30,37,31,38,34,35,61,39,42,31,23,24),(3335,'2015-03-10 21:49:30','2015-08-29 14:46:02',1,30003876,145,229,196,172,159,160,182,226,260,268,282,289,284,310,282,229,210,152,187,227,269,249,169,201),(3336,'2015-03-10 21:49:30','2015-08-29 14:46:02',1,30003814,3,1,1,8,9,3,5,4,3,4,3,5,10,12,6,8,17,2,3,1,5,4,1,0),(3337,'2015-03-10 21:49:30','2015-08-29 14:46:02',1,30003881,134,213,187,158,152,140,165,212,249,284,239,220,252,280,257,215,184,129,174,214,228,200,159,175),(3338,'2015-03-10 21:49:30','2015-08-29 14:46:02',1,30005037,128,130,118,169,167,131,106,133,145,144,107,83,163,197,195,175,126,99,148,147,145,153,151,145),(3339,'2015-03-10 21:49:30','2015-08-29 14:46:02',1,30003061,16,15,12,17,16,20,14,10,28,23,14,19,19,15,23,43,21,18,12,61,21,20,25,22),(3340,'2015-03-10 21:49:30','2015-08-29 14:46:02',1,30003011,23,8,19,19,28,15,14,18,23,41,36,31,28,27,36,45,39,21,20,24,29,26,26,35),(3341,'2015-03-10 21:49:30','2015-08-29 14:46:02',1,30003893,8,4,6,5,3,5,10,2,7,8,7,6,3,9,7,7,11,4,10,6,11,8,5,5),(3342,'2015-03-10 21:49:30','2015-08-29 14:46:02',1,30001554,6,3,2,2,3,3,11,4,7,7,9,6,9,1,3,9,21,3,3,16,12,11,12,8),(3343,'2015-03-10 21:49:30','2015-08-29 14:46:02',1,30003443,62,74,68,64,64,39,47,54,57,59,76,63,53,94,76,82,59,69,64,64,44,37,78,77),(3344,'2015-03-10 21:49:30','2015-08-29 14:46:02',1,30003021,16,14,16,13,16,12,12,24,35,34,28,26,33,28,32,22,26,12,15,29,23,23,29,29),(3345,'2015-03-10 21:49:30','2015-08-29 14:46:02',1,30002819,30,46,63,52,62,41,26,31,31,36,48,37,61,66,61,51,39,38,42,49,48,51,48,49),(3346,'2015-03-10 21:49:30','2015-08-29 14:46:02',1,30002257,49,49,68,90,90,49,43,40,48,58,86,87,88,69,73,81,65,66,55,69,72,67,67,52),(3347,'2015-03-10 21:49:30','2015-08-29 14:46:02',1,30001715,33,13,24,27,26,25,12,22,34,32,30,28,27,41,52,38,27,11,15,36,43,46,40,35),(3348,'2015-03-10 21:49:30','2015-08-29 14:46:02',1,30005263,10,9,10,19,19,31,5,4,2,7,4,4,6,5,6,4,6,2,5,2,7,2,6,6),(3349,'2015-03-10 21:49:30','2015-08-29 14:46:02',1,30004702,22,20,20,19,11,9,25,20,20,34,13,15,38,12,13,22,13,2,2,3,5,29,10,12),(3350,'2015-03-10 21:49:30','2015-08-29 14:46:02',1,30003699,24,38,69,56,54,42,20,23,10,29,32,95,140,40,23,41,4,18,14,17,24,18,15,16),(3351,'2015-03-10 21:49:30','2015-08-29 14:46:02',1,30002035,17,82,100,54,47,117,10,13,23,28,8,5,23,12,8,16,11,9,12,7,11,10,10,7),(3352,'2015-03-10 21:49:30','2015-08-29 14:46:02',1,30000280,20,16,14,28,19,25,15,8,1,2,4,2,6,3,2,13,27,0,3,4,5,5,5,4),(3353,'2015-03-10 21:49:30','2015-08-29 14:46:02',1,30001278,53,29,19,28,37,26,46,68,30,38,47,51,44,48,44,58,85,39,13,28,34,35,67,75),(3354,'2015-03-10 21:49:30','2015-08-29 14:46:02',1,30002421,17,45,32,28,20,47,21,31,32,20,29,24,30,27,26,26,45,16,27,59,34,18,16,16),(3355,'2015-03-10 21:49:30','2015-08-29 14:46:02',1,30005155,0,1,2,6,6,1,2,0,0,4,2,4,1,4,3,1,0,1,0,1,1,1,1,0),(3356,'2015-03-10 21:49:30','2015-08-29 14:46:02',1,30004861,1,0,0,1,2,2,0,1,2,2,1,1,6,1,2,1,0,0,1,2,2,3,2,2),(3357,'2015-03-10 21:49:30','2015-08-29 14:46:02',1,30003153,11,14,23,25,13,50,11,32,24,19,9,12,23,33,26,29,24,28,29,15,70,49,56,34),(3358,'2015-03-10 21:49:30','2015-08-29 14:46:02',1,30000774,19,79,34,11,12,52,12,5,24,57,22,11,10,72,62,63,14,104,33,44,106,77,22,45),(3359,'2015-03-10 21:49:30','2015-08-29 14:46:02',1,30000864,70,165,120,109,97,95,80,75,157,290,374,193,185,91,89,142,57,46,65,69,63,120,172,113),(3360,'2015-03-10 21:49:30','2015-08-29 14:46:02',1,30004464,11,20,22,8,14,7,8,11,25,17,15,15,5,26,24,27,14,10,19,12,15,13,12,17),(3361,'2015-03-10 21:49:30','2015-08-29 14:46:02',1,30004519,3,21,3,3,2,5,5,5,0,2,0,1,4,3,2,1,2,0,0,0,1,1,0,0),(3362,'2015-03-10 21:49:30','2015-08-29 14:46:02',1,30002028,7,4,5,2,2,15,9,1,3,4,0,0,0,4,2,0,3,0,0,2,3,1,2,2),(3363,'2015-03-10 21:49:30','2015-08-29 14:46:02',1,30003197,3,1,0,5,3,5,0,3,3,1,1,2,1,0,2,3,3,2,1,1,5,3,2,5),(3364,'2015-03-10 21:49:30','2015-08-29 14:46:02',1,30005189,2,20,5,8,7,165,3,1,3,5,9,4,11,11,3,1,1,2,2,9,21,20,7,9),(3365,'2015-03-10 21:49:30','2015-08-29 14:46:02',1,30003056,12,22,14,9,8,5,3,10,24,28,12,10,13,26,23,11,10,6,11,11,13,11,11,10),(3366,'2015-03-10 21:49:30','2015-08-29 14:46:02',1,30005299,16,19,17,28,25,32,25,23,45,44,20,23,40,36,27,37,24,26,16,83,33,33,12,17),(3367,'2015-03-10 21:49:30','2015-08-29 14:46:02',1,30004129,55,73,83,66,61,42,56,70,67,94,67,53,80,90,78,45,54,50,66,74,84,79,81,66),(3368,'2015-03-10 21:49:30','2015-08-29 14:46:02',1,30002206,85,105,97,111,113,67,41,73,94,90,79,97,121,145,126,101,92,50,94,95,160,148,91,85),(3369,'2015-03-10 21:49:30','2015-08-29 14:46:02',1,30005295,62,101,120,78,87,132,66,67,158,109,67,41,152,83,94,120,63,47,81,181,135,108,86,88),(3370,'2015-03-10 21:49:30','2015-08-29 14:46:02',1,30004092,63,79,75,86,79,58,59,45,79,96,99,91,157,114,97,103,59,58,66,99,92,95,84,82),(3371,'2015-03-10 21:49:30','2015-08-29 14:46:02',1,30003526,134,166,191,156,159,237,91,92,150,174,154,143,198,188,183,212,133,110,132,157,240,211,157,133),(3372,'2015-03-10 21:49:30','2015-08-29 14:46:02',1,30045334,52,282,51,60,75,62,59,85,90,115,103,91,114,171,129,110,124,122,79,92,117,118,62,36),(3373,'2015-03-10 21:49:30','2015-08-29 14:46:02',1,30002394,28,32,28,26,18,25,13,19,32,23,34,30,38,39,38,30,48,49,47,45,30,28,38,38),(3374,'2015-03-10 21:49:30','2015-08-29 14:46:02',1,30002780,196,203,191,206,200,180,137,135,320,334,276,253,257,288,276,299,242,123,156,250,233,241,210,206),(3375,'2015-03-10 21:49:30','2015-08-29 14:46:02',1,30001213,10,13,25,14,7,14,19,38,182,119,76,62,80,86,136,155,33,61,104,191,59,53,36,32),(3376,'2015-03-10 21:49:30','2015-08-29 14:46:02',1,30003755,21,25,35,30,19,30,13,22,68,66,62,41,87,54,40,195,40,33,88,53,97,86,74,36),(3377,'2015-03-10 21:49:30','2015-08-29 14:46:02',1,30004966,16,12,7,8,4,16,28,13,15,13,10,7,9,9,21,9,9,5,3,12,14,7,14,19),(3378,'2015-03-10 21:49:30','2015-08-29 14:46:02',1,30000546,5,39,7,38,5,32,5,2,25,18,12,3,26,12,5,35,10,24,16,8,16,16,1,8),(3379,'2015-03-10 21:49:30','2015-08-29 14:46:02',1,30002913,44,161,88,46,45,47,42,49,73,74,51,49,82,120,104,92,34,145,148,60,65,65,53,34),(3380,'2015-03-10 21:49:30','2015-08-29 14:46:02',1,30003318,0,1,0,0,0,2,2,0,3,3,0,1,1,2,2,0,1,2,0,2,2,3,3,0),(3381,'2015-03-10 21:49:30','2015-08-29 14:46:02',1,30000232,58,22,42,39,70,59,39,30,3,2,4,8,5,11,24,17,17,19,2,15,10,14,7,11),(3382,'2015-03-10 21:49:30','2015-08-29 14:46:02',1,30001202,8,7,13,7,9,17,7,3,23,33,18,22,152,29,21,26,20,55,87,53,33,38,45,18),(3383,'2015-03-10 21:49:30','2015-08-29 14:46:02',1,30003022,18,18,12,19,27,12,14,18,27,21,17,24,25,20,19,19,11,26,38,37,18,23,32,34),(3384,'2015-03-10 21:49:30','2015-08-29 14:46:02',1,30003075,26,43,33,35,31,26,36,29,92,73,68,71,70,85,65,57,68,33,46,68,67,65,80,66),(3385,'2015-03-10 21:49:30','2015-08-29 14:46:02',1,30002940,16,26,11,14,10,17,14,40,23,25,26,24,28,21,19,23,12,2,11,26,23,19,34,24),(3386,'2015-03-10 21:49:30','2015-08-29 14:46:02',1,30003185,2,7,2,1,5,2,1,8,7,3,8,7,2,9,6,7,6,4,4,5,3,4,5,7),(3387,'2015-03-10 21:49:30','2015-08-29 14:46:02',1,30003659,18,20,27,46,34,84,19,26,11,18,13,14,20,14,12,18,9,9,11,2,14,9,15,5),(3388,'2015-03-10 21:49:30','2015-03-10 21:49:30',1,30000405,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(3389,'2015-03-10 21:49:30','2015-08-29 14:46:02',1,30001309,6,27,14,26,17,15,16,13,36,39,38,39,35,101,41,14,27,21,26,38,15,15,16,8),(3390,'2015-03-10 21:49:30','2015-08-29 14:46:02',1,30000236,9,2,6,4,1,8,8,4,0,0,1,1,1,1,2,3,0,1,0,2,2,2,4,4),(3391,'2015-03-10 21:49:30','2015-08-29 14:46:02',1,30000915,13,11,3,5,4,3,5,10,5,7,6,6,5,6,6,0,5,8,7,10,9,13,1,3),(3392,'2015-03-10 21:49:30','2015-08-29 14:46:02',1,30002612,2,3,6,7,2,5,0,0,2,4,6,7,8,48,8,8,12,4,12,6,5,4,12,13),(3393,'2015-03-10 21:49:30','2015-08-29 14:46:02',1,30001209,64,52,49,33,29,21,35,37,26,23,36,31,65,65,67,49,31,32,37,44,37,46,16,19),(3394,'2015-03-10 21:49:30','2015-08-29 14:46:02',1,30004762,9,66,3,3,0,3,2,3,9,4,15,36,36,128,10,11,38,3,6,12,13,16,9,9),(3395,'2015-03-10 21:49:30','2015-03-10 21:49:30',1,30000401,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(3396,'2015-03-10 21:49:30','2015-08-29 14:46:02',1,30002583,11,12,26,8,6,21,13,37,20,16,11,12,58,13,43,37,20,13,26,181,12,19,12,23),(3397,'2015-03-10 21:49:30','2015-08-29 14:46:02',1,30000904,9,21,17,19,15,8,3,8,8,8,10,8,14,24,23,17,12,11,4,31,15,18,11,8),(3398,'2015-03-10 21:49:30','2015-03-10 21:49:30',1,30000348,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(3399,'2015-03-10 21:49:30','2015-08-29 14:46:02',1,30000862,19,113,37,30,36,28,10,37,78,96,208,116,43,62,68,35,27,10,41,33,46,50,25,28),(3400,'2015-03-10 21:49:30','2015-03-10 21:49:30',1,30001489,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(3401,'2015-03-10 21:49:30','2015-08-29 14:46:02',1,30001974,5,0,10,5,6,4,5,6,1,0,2,3,1,4,6,8,1,1,1,6,7,1,1,0),(3402,'2015-03-10 21:49:30','2015-08-29 14:46:02',1,30001060,5,2,10,3,1,3,4,3,28,14,37,22,5,9,5,8,2,0,0,2,21,20,9,4),(3403,'2015-03-10 21:49:30','2015-08-29 14:46:02',1,30002492,4,2,6,3,4,6,0,3,2,0,7,5,8,0,0,1,2,3,0,1,0,7,1,2),(3404,'2015-03-10 21:49:30','2015-08-29 14:46:02',1,30000215,51,34,38,37,20,31,24,28,21,22,26,21,24,30,37,34,29,30,17,19,34,37,37,26),(3405,'2015-03-10 21:49:30','2015-08-29 14:46:02',1,30001827,15,8,13,22,11,14,3,10,2,4,10,7,0,13,12,5,5,0,3,3,5,8,0,3),(3406,'2015-03-10 21:49:30','2015-08-29 14:46:02',1,30002820,4,5,5,6,4,8,3,4,24,22,8,13,11,7,10,6,7,0,0,11,19,15,5,2),(3407,'2015-03-10 21:49:30','2015-08-29 14:46:02',1,30004011,21,0,9,9,13,4,8,6,6,19,16,16,12,9,13,20,29,6,7,8,9,9,5,9),(3408,'2015-03-10 21:49:30','2015-08-29 14:46:02',1,30000824,2,10,0,2,7,2,0,5,3,1,3,3,5,3,3,5,22,0,9,2,10,7,3,2),(3409,'2015-03-10 21:49:30','2015-08-29 14:46:02',1,30001549,6,13,1,7,8,4,3,1,3,7,8,4,10,2,2,20,26,5,7,15,8,8,13,11),(3410,'2015-03-10 21:49:30','2015-08-29 14:46:02',1,30001267,9,11,14,15,11,11,8,15,115,36,25,26,18,24,201,182,14,9,35,68,21,128,30,19),(3411,'2015-03-10 21:49:30','2015-08-29 14:46:02',1,30000999,22,75,52,33,40,32,26,22,49,62,139,96,31,149,286,63,49,18,24,36,81,63,60,55),(3412,'2015-03-10 21:49:30','2015-08-29 14:46:02',1,30003763,30,28,58,33,34,36,18,29,38,52,42,36,39,67,84,67,40,19,35,38,24,30,27,29),(3413,'2015-03-10 21:49:30','2015-08-29 14:46:02',1,30002341,1,1,1,0,0,0,0,0,2,0,0,0,0,0,0,0,0,0,2,1,0,0,0,0),(3414,'2015-03-10 21:49:30','2015-08-29 14:46:02',1,30002918,7,16,5,14,10,7,9,5,26,33,46,35,23,27,14,18,21,12,9,18,10,11,44,29),(3415,'2015-03-10 21:49:30','2015-08-29 14:46:02',1,30001062,6,2,11,4,0,14,7,4,30,17,47,32,12,11,5,28,8,0,0,5,15,14,20,30),(3416,'2015-03-10 21:49:30','2015-08-29 14:46:02',1,30002309,7,9,1,4,6,7,2,2,6,2,3,2,6,5,8,2,1,2,17,1,7,5,1,1),(3417,'2015-03-10 21:49:30','2015-08-29 14:46:02',1,30001302,19,9,12,4,5,8,9,7,12,20,11,5,24,65,33,6,10,9,7,19,15,9,13,12),(3418,'2015-03-10 21:49:30','2015-08-29 14:46:02',1,30004580,0,0,0,2,2,1,0,1,0,0,2,0,0,0,1,0,0,0,2,1,2,1,3,4),(3419,'2015-03-10 21:49:30','2015-08-29 14:46:02',1,30002945,5,3,10,6,5,60,28,38,7,7,6,2,7,10,13,21,8,12,17,4,5,6,7,6),(3420,'2015-03-10 21:49:30','2015-08-29 14:46:02',1,30000669,26,242,32,63,59,40,28,44,40,46,45,35,39,66,45,57,19,10,47,105,73,47,56,39),(3421,'2015-03-10 21:49:30','2015-08-29 14:46:02',1,30001277,82,59,45,63,70,48,53,85,53,74,74,90,105,114,120,153,129,43,42,85,82,121,113,107),(3422,'2015-03-10 21:49:30','2015-08-29 14:46:02',1,30001280,42,17,25,58,57,19,8,12,39,57,80,72,36,73,89,36,11,20,53,126,17,22,19,16),(3423,'2015-03-10 21:49:30','2015-08-29 14:46:02',1,30001126,5,21,13,23,14,17,17,26,34,27,37,19,24,12,12,10,14,2,7,13,17,16,25,17),(3424,'2015-03-10 21:49:30','2015-08-29 14:46:02',1,30000811,13,8,18,24,10,6,4,6,24,32,11,6,0,0,0,0,0,1,0,0,1,1,1,1),(3425,'2015-03-10 21:49:30','2015-08-29 14:46:02',1,30000841,5,3,5,4,8,3,7,8,2,3,4,4,6,6,6,12,16,12,1,8,6,7,4,2),(3426,'2015-03-10 21:49:30','2015-08-29 14:46:02',1,30004783,9,0,0,1,2,1,2,1,1,0,0,0,1,0,2,3,5,5,0,3,10,12,17,15),(3427,'2015-03-10 21:49:30','2015-08-29 14:46:02',1,30003767,61,57,30,36,31,21,21,23,39,46,89,74,60,101,111,59,42,15,35,79,45,47,52,28),(3428,'2015-03-10 21:49:30','2015-08-29 14:46:02',1,30002258,49,53,71,94,92,40,44,42,61,65,95,91,99,68,72,80,68,59,53,65,75,70,71,53),(3429,'2015-03-10 21:49:30','2015-08-29 14:46:02',1,30002995,22,33,33,26,36,28,21,38,26,27,28,36,34,41,40,46,20,34,54,49,39,36,25,26),(3430,'2015-03-10 21:49:30','2015-08-29 14:46:02',1,30001651,107,118,114,109,118,108,83,85,136,157,125,108,131,163,172,159,86,83,80,114,116,109,146,118),(3431,'2015-03-10 21:49:30','2015-08-29 14:46:02',1,30001702,29,23,24,29,19,22,24,22,42,40,44,39,50,24,22,21,36,37,51,43,19,30,54,41),(3432,'2015-03-10 21:49:30','2015-08-29 14:46:02',1,30004300,5,9,2,6,10,5,16,9,8,11,7,5,13,25,20,16,12,6,19,11,23,26,14,7),(3433,'2015-03-10 21:49:30','2015-08-29 14:46:02',1,30002807,147,178,169,197,175,171,115,147,267,297,162,119,414,305,311,292,235,261,214,271,388,346,228,220),(3434,'2015-03-10 21:49:30','2015-08-29 14:46:02',1,30003475,12,20,26,15,19,11,24,26,32,36,24,28,60,37,42,35,36,25,33,30,36,72,62,52),(3435,'2015-03-10 21:49:30','2015-08-29 14:46:02',1,30005069,19,32,24,24,32,44,10,22,56,42,50,32,120,54,55,36,41,17,32,29,50,49,32,25),(3436,'2015-03-10 21:49:30','2015-08-29 14:46:02',1,30003922,15,20,13,12,18,12,9,14,37,23,8,10,25,8,14,21,23,5,27,52,19,19,10,7),(3437,'2015-03-10 21:49:30','2015-08-29 14:46:02',1,30005045,58,101,75,66,65,94,27,66,152,136,98,85,174,145,141,142,110,105,127,158,132,132,103,103),(3438,'2015-03-10 21:49:30','2015-08-29 14:46:02',1,30005242,18,52,13,23,18,35,8,11,17,32,21,12,22,19,34,32,28,42,15,36,25,16,27,23),(3439,'2015-03-10 21:49:30','2015-08-29 14:46:02',1,30000072,138,55,66,52,65,12,23,41,78,73,27,38,137,61,82,38,27,24,37,97,112,89,58,49),(3440,'2015-03-10 21:49:30','2015-08-29 14:46:02',1,30002988,185,134,171,96,85,47,56,43,110,122,66,68,128,152,141,110,65,95,130,106,110,95,86,94),(3441,'2015-03-10 21:49:30','2015-08-29 14:46:02',1,30003936,45,20,15,8,14,15,14,17,14,26,10,15,34,14,13,28,11,11,35,52,24,27,14,12),(3442,'2015-03-10 21:49:30','2015-08-29 14:46:02',1,30005043,172,239,227,203,175,167,180,262,264,270,261,272,289,319,297,258,234,159,202,239,288,255,192,213),(3443,'2015-03-10 21:49:30','2015-08-29 14:46:02',1,30003496,148,33,33,15,23,34,28,20,30,33,32,26,50,52,45,45,29,29,24,27,30,40,40,34),(3444,'2015-03-10 21:49:30','2015-08-29 14:46:02',1,30002068,381,393,446,482,455,369,294,319,504,521,494,414,503,704,692,530,500,381,433,552,736,654,608,582),(3445,'2015-03-10 21:49:30','2015-08-29 14:46:02',1,30004280,42,63,59,48,48,41,45,52,72,82,119,100,76,169,247,132,114,49,42,70,119,91,72,95),(3446,'2015-03-10 21:49:30','2015-08-29 14:46:02',1,30002262,14,15,31,38,16,10,13,18,33,40,25,24,22,28,23,34,15,9,10,21,27,18,19,18),(3447,'2015-03-10 21:49:30','2015-08-29 14:46:02',1,30001445,94,141,166,158,98,107,57,121,170,158,215,245,120,168,184,294,188,103,113,130,132,125,135,160),(3448,'2015-03-10 21:49:30','2015-08-29 14:46:02',1,30003534,5,7,3,2,0,5,1,10,1,4,5,4,10,5,7,6,2,3,6,4,13,6,11,18),(3449,'2015-03-10 21:49:30','2015-08-29 14:46:02',1,30003923,19,33,25,19,18,24,37,22,27,26,41,27,40,26,18,23,17,6,21,39,22,32,11,9),(3450,'2015-03-10 21:49:30','2015-08-29 14:46:02',1,30001413,25,41,32,59,48,18,21,20,49,57,54,74,27,31,34,34,31,12,26,36,21,22,39,40),(3451,'2015-03-10 21:49:30','2015-08-29 14:46:02',1,30001438,46,47,33,67,59,55,23,31,51,45,54,52,47,39,57,50,34,48,54,37,34,34,60,48),(3452,'2015-03-10 21:49:30','2015-08-29 14:46:02',1,30002202,25,36,29,13,16,13,20,31,35,51,46,59,45,50,46,51,62,37,30,48,81,56,42,36),(3453,'2015-03-10 21:49:30','2015-08-29 14:46:02',1,30005207,14,14,3,4,7,9,15,12,4,6,11,15,11,16,18,14,11,27,4,19,31,39,4,4),(3454,'2015-03-10 21:49:30','2015-08-29 14:46:02',1,30005054,84,178,142,141,123,109,113,159,184,215,164,178,204,210,188,178,162,129,159,204,180,162,121,140),(3455,'2015-03-10 21:49:30','2015-08-29 14:46:02',1,30001683,8,36,24,22,13,3,9,14,30,22,36,48,125,44,55,32,57,21,23,12,26,20,15,19),(3456,'2015-03-10 21:49:30','2015-08-29 14:46:02',1,30005289,276,134,159,142,121,123,143,185,226,250,191,173,185,193,172,149,113,111,197,219,206,198,200,163),(3457,'2015-03-10 21:49:30','2015-08-29 14:46:02',1,30002671,89,134,113,103,117,84,52,91,142,117,142,119,149,203,146,142,110,85,84,135,140,141,135,135),(3458,'2015-03-10 21:49:30','2015-08-29 14:46:02',1,30000016,2,0,1,2,4,2,6,2,6,4,4,0,1,3,1,8,1,5,7,1,4,3,0,1),(3459,'2015-03-10 21:49:30','2015-08-29 14:46:02',1,30000465,9,6,26,9,6,2,8,3,3,4,1,1,2,7,2,7,0,2,1,3,0,2,4,2),(3460,'2015-03-10 21:49:30','2015-08-29 14:46:02',1,30001063,4,7,2,2,6,5,5,3,4,2,4,9,5,6,8,28,8,1,0,0,3,2,7,7),(3461,'2015-03-10 21:49:30','2015-08-29 14:46:02',1,30002433,26,35,46,30,30,30,41,35,20,10,37,26,12,20,17,31,24,9,20,35,12,8,15,31),(3462,'2015-03-10 21:49:30','2015-08-29 14:46:02',1,30001117,18,73,57,28,22,31,32,53,12,17,63,10,20,22,20,28,18,8,11,11,14,16,17,19),(3463,'2015-03-10 21:49:30','2015-08-29 14:46:02',1,30002910,4,5,4,12,18,5,3,5,4,8,1,2,50,11,14,7,9,3,11,5,2,7,6,9),(3464,'2015-03-10 21:49:30','2015-08-29 14:46:02',1,30003616,12,26,23,13,18,54,20,18,23,28,9,9,31,10,10,7,15,16,13,14,6,5,15,13),(3465,'2015-03-10 21:49:30','2015-08-29 14:46:02',1,30000212,24,39,33,27,17,51,20,31,19,24,35,36,31,14,14,62,36,35,35,26,49,32,13,16),(3466,'2015-03-10 21:49:30','2015-08-29 14:46:02',1,30002867,15,21,20,17,22,14,4,11,39,43,20,15,25,42,37,11,23,3,5,39,27,40,30,24),(3467,'2015-03-10 21:49:30','2015-08-29 14:46:02',1,30003186,4,34,7,4,7,7,7,10,12,7,12,9,9,16,9,1,4,7,9,4,6,4,5,12),(3468,'2015-03-10 21:49:30','2015-08-29 14:46:02',1,30004609,14,32,17,8,11,1,14,11,175,39,34,23,24,53,42,37,21,44,51,58,49,42,25,22),(3469,'2015-03-10 21:49:30','2015-08-29 14:46:02',1,30003980,78,17,18,13,25,15,13,23,17,24,23,18,73,19,23,17,12,40,6,11,14,11,19,26),(3470,'2015-03-10 21:49:30','2015-08-29 14:46:02',1,30000917,1,5,0,1,0,0,1,1,0,0,1,1,1,4,6,1,0,1,2,1,1,3,0,0),(3471,'2015-03-10 21:49:30','2015-08-29 14:46:02',1,30005031,36,61,29,29,39,44,27,55,43,56,46,40,52,53,49,30,36,58,44,65,54,55,29,37),(3472,'2015-03-10 21:49:30','2015-08-29 14:46:02',1,30004089,13,69,13,25,27,20,8,12,32,27,47,30,39,24,21,13,22,22,16,32,45,30,35,29),(3473,'2015-03-10 21:49:30','2015-08-29 14:46:02',1,30004308,15,11,5,18,23,26,22,14,9,10,9,8,10,5,4,3,2,2,7,5,33,27,17,27),(3474,'2015-03-10 21:49:30','2015-08-29 14:46:02',1,30003929,55,4,1,6,5,11,2,4,1,3,1,2,6,3,2,5,0,2,3,0,1,0,1,0),(3475,'2015-03-10 21:49:30','2015-08-29 14:46:02',1,30003378,15,10,11,4,2,13,14,14,23,18,9,14,16,21,18,26,11,10,16,9,37,26,7,7),(3476,'2015-03-10 21:49:30','2015-08-29 14:46:02',1,30005058,20,35,27,31,24,32,11,25,79,84,39,33,35,40,45,65,44,24,24,48,39,39,29,26),(3477,'2015-03-10 21:49:30','2015-08-29 14:46:02',1,30004383,4,4,1,5,4,1,13,5,3,3,0,3,1,1,2,3,3,0,0,3,1,1,4,1),(3478,'2015-03-10 21:49:30','2015-08-29 14:46:02',1,30001695,38,44,53,67,53,47,43,26,86,107,138,124,81,108,109,89,124,52,65,210,292,240,244,226),(3479,'2015-03-10 21:49:30','2015-08-29 14:46:02',1,30003423,31,21,35,31,34,24,13,21,26,31,27,22,56,50,50,27,26,22,31,35,26,26,29,32),(3480,'2015-03-10 21:49:30','2015-08-29 14:46:02',1,30004267,32,79,55,58,66,34,37,62,125,104,48,62,73,171,247,96,63,58,74,86,66,60,50,53),(3481,'2015-03-10 21:49:30','2015-08-29 14:46:02',1,30045344,223,346,242,205,230,124,196,171,463,464,198,169,695,379,316,237,223,228,273,368,290,238,170,179),(3482,'2015-03-10 21:49:30','2015-08-29 14:46:02',1,30002228,65,78,83,80,117,81,68,57,80,80,74,72,79,87,80,80,75,37,83,96,94,108,73,71),(3483,'2015-03-10 21:49:30','2015-08-29 14:46:02',1,30003073,15,20,22,27,31,21,19,35,30,24,33,22,30,46,56,45,25,21,26,30,31,34,34,27),(3484,'2015-03-10 21:49:30','2015-08-29 14:46:02',1,30001826,30,23,50,44,34,32,8,20,3,12,16,14,0,9,14,14,8,2,3,11,6,11,3,7),(3485,'2015-03-10 21:49:30','2015-08-29 14:46:02',1,30000145,1123,1333,1345,1218,1143,1010,956,955,1332,1387,1357,1389,1513,1639,1552,1651,1454,915,1056,1280,1612,1588,1422,1333),(3486,'2015-03-10 21:49:30','2015-08-29 14:46:02',1,30005286,6,2,4,3,2,2,5,4,10,5,2,5,4,1,4,3,7,3,6,2,24,4,3,2),(3487,'2015-03-10 21:49:30','2015-08-29 14:46:02',1,30002650,52,42,104,73,49,63,30,62,129,113,63,73,143,120,111,86,75,89,70,109,101,87,89,78),(3488,'2015-03-10 21:49:30','2015-08-29 14:46:02',1,30003859,11,7,1,2,1,0,3,4,8,14,17,9,2,11,11,7,11,7,6,13,7,8,7,5),(3489,'2015-03-10 21:49:30','2015-08-29 14:46:02',1,30002246,7,11,15,12,20,22,6,14,14,17,12,12,37,7,12,11,6,4,8,25,11,12,18,12),(3490,'2015-03-10 21:49:30','2015-08-29 14:46:02',1,30000230,38,16,42,35,43,41,31,21,3,1,2,4,4,8,12,6,15,15,2,10,5,7,4,4),(3491,'2015-03-10 21:49:30','2015-08-29 14:46:02',1,30003325,6,3,4,4,4,2,9,7,7,6,0,0,12,5,6,5,14,1,4,4,24,24,54,34),(3492,'2015-03-10 21:49:30','2015-08-29 14:46:02',1,30000650,4,84,22,18,13,10,6,8,11,14,6,3,6,48,11,7,11,3,11,23,7,4,13,11),(3493,'2015-03-10 21:49:30','2015-08-29 14:46:02',1,30005170,6,10,5,8,6,4,3,0,1,1,6,2,6,4,4,3,1,0,1,3,2,1,3,4),(3494,'2015-03-10 21:49:30','2015-08-29 14:46:02',1,30001239,2,5,10,6,5,10,6,5,25,34,51,36,43,26,32,23,23,19,43,50,41,42,48,17),(3495,'2015-03-10 21:49:30','2015-08-29 14:46:02',1,30003117,5,5,2,5,3,6,5,9,6,5,5,7,9,4,4,8,9,7,5,9,2,5,9,9),(3496,'2015-03-10 21:49:30','2015-08-29 14:46:02',1,30001789,10,6,4,7,8,1,3,2,13,20,12,10,6,5,4,6,3,6,5,9,5,6,6,6),(3497,'2015-03-10 21:49:30','2015-08-29 14:46:02',1,30002185,2,12,4,11,7,10,0,5,8,7,3,2,3,2,2,3,7,40,54,26,9,9,11,7),(3498,'2015-03-10 21:49:30','2015-08-29 14:46:02',1,30003504,1436,1594,1514,1521,1455,1095,774,1040,1796,1844,1709,1584,1830,2062,2039,1952,1593,1253,1375,1693,1887,1829,1617,1572),(3499,'2015-03-10 21:49:30','2015-08-29 14:46:02',1,30005047,46,69,65,62,60,66,48,53,83,90,74,59,110,188,149,101,100,63,90,105,114,101,84,87),(3500,'2015-03-10 21:49:30','2015-08-29 14:46:02',1,30003580,41,38,52,79,73,32,25,39,76,87,41,24,43,35,43,36,19,30,25,43,34,38,31,28),(3501,'2015-03-10 21:49:30','2015-08-29 14:46:02',1,30003006,2,1,5,9,11,9,5,6,1,5,7,15,5,5,3,5,4,9,8,6,4,4,4,2),(3502,'2015-03-10 21:49:30','2015-08-29 14:46:02',1,30004769,16,13,3,2,2,2,9,23,20,13,7,12,22,11,13,35,4,5,10,12,30,14,24,23),(3503,'2015-03-10 21:49:30','2015-08-29 14:46:02',1,30004126,53,60,60,80,63,39,49,73,41,57,62,46,65,76,68,33,44,34,46,66,50,57,62,62),(3504,'2015-03-10 21:49:30','2015-08-29 14:46:02',1,30004274,4,2,1,2,0,0,4,4,4,3,7,4,2,6,4,5,3,3,1,0,0,0,2,2),(3505,'2015-03-10 21:49:30','2015-08-29 14:46:02',1,30000108,3,3,18,5,3,0,2,2,2,5,3,1,2,13,4,2,5,3,1,4,5,3,2,3),(3506,'2015-03-10 21:49:30','2015-08-29 14:46:02',1,30000642,2,6,3,3,3,3,1,8,5,10,20,21,0,68,34,0,12,11,5,4,2,4,3,6),(3507,'2015-03-10 21:49:30','2015-08-29 14:46:02',1,30003448,35,52,34,31,27,44,20,27,59,59,50,43,52,80,80,71,59,43,42,41,79,85,45,42),(3508,'2015-03-10 21:49:30','2015-08-29 14:46:02',1,30002234,35,59,65,56,86,50,46,30,58,49,54,50,53,56,55,63,40,30,64,74,56,64,45,49),(3509,'2015-03-10 21:49:30','2015-08-29 14:46:02',1,30000900,17,32,32,21,28,14,4,17,12,12,10,9,41,27,16,22,20,37,41,54,23,15,15,18),(3510,'2015-03-10 21:49:30','2015-08-29 14:46:02',1,30000057,39,74,47,58,54,67,37,23,89,67,82,93,120,137,145,96,67,72,51,76,88,85,70,67),(3511,'2015-03-10 21:49:30','2015-08-29 14:46:02',1,30002757,53,169,65,72,62,51,74,96,40,34,70,55,69,140,103,74,55,71,76,83,65,69,40,43),(3512,'2015-03-10 21:49:30','2015-08-29 14:46:02',1,30001082,5,25,40,20,13,30,27,26,44,40,42,21,34,16,19,19,23,6,8,19,23,21,21,15),(3513,'2015-03-10 21:49:30','2015-08-29 14:46:02',1,30000035,33,54,37,57,40,42,28,26,39,51,45,50,37,51,46,43,71,33,66,37,48,42,33,33),(3514,'2015-03-10 21:49:30','2015-08-29 14:46:02',1,30000008,94,162,102,125,124,98,62,68,186,156,147,148,237,233,254,217,178,136,166,176,180,179,159,157),(3515,'2015-03-10 21:49:30','2015-08-29 14:46:02',1,30005040,15,31,31,24,30,20,7,31,42,42,42,37,36,34,31,41,31,14,36,26,34,28,33,31),(3516,'2015-03-10 21:49:30','2015-08-29 14:46:02',1,30045352,74,94,83,103,105,81,152,98,111,118,65,68,57,112,110,109,64,86,71,85,113,122,96,104),(3517,'2015-03-10 21:49:30','2015-08-29 14:46:02',1,30000143,572,599,630,557,532,491,390,457,606,628,586,543,722,723,717,750,573,408,517,578,620,642,561,553),(3518,'2015-03-10 21:49:30','2015-08-29 14:46:02',1,30003141,16,8,10,19,22,16,7,1,11,12,6,5,10,4,2,4,10,7,9,3,3,2,11,2),(3519,'2015-03-10 21:49:30','2015-08-29 14:46:02',1,30000896,38,44,49,48,45,36,22,57,24,28,37,36,59,83,50,40,42,23,35,32,72,72,31,25),(3520,'2015-03-10 21:49:30','2015-08-29 14:46:02',1,30000902,24,42,31,28,37,17,27,9,36,28,14,14,38,58,21,21,23,31,71,55,15,14,26,27),(3521,'2015-03-10 21:49:30','2015-08-29 14:46:02',1,30002303,2,13,3,5,6,6,7,5,4,2,6,4,6,5,10,3,2,10,9,4,8,6,4,6),(3522,'2015-03-10 21:49:30','2015-08-29 14:46:02',1,30000855,5,1,4,1,1,0,1,1,2,1,1,2,2,1,1,1,3,2,0,2,4,4,0,3),(3523,'2015-03-10 21:49:30','2015-08-29 14:46:02',1,30004476,4,3,3,2,0,1,2,1,3,6,5,15,5,8,8,7,10,8,11,4,18,10,5,4),(3524,'2015-03-10 21:49:30','2015-08-29 14:46:02',1,30004338,3,9,3,2,4,4,3,2,1,0,2,1,2,1,1,3,1,0,1,0,4,5,2,4),(3525,'2015-03-10 21:49:30','2015-08-29 14:46:02',1,30004518,4,12,6,7,9,9,8,12,15,16,3,2,21,39,41,10,9,3,2,4,19,23,18,11),(3526,'2015-03-10 21:49:30','2015-08-29 14:46:02',1,30005018,34,49,50,46,43,53,39,46,39,56,61,52,48,76,57,39,64,25,39,40,48,52,54,51),(3527,'2015-03-10 21:49:30','2015-08-29 14:46:02',1,30004712,23,43,8,13,16,23,30,60,152,65,196,59,77,76,75,68,72,39,39,82,25,30,18,24),(3528,'2015-03-10 21:49:30','2015-08-29 14:46:02',1,30002218,6,19,20,23,21,7,17,3,18,18,10,14,13,15,16,6,15,7,12,15,14,19,4,6),(3529,'2015-03-10 21:49:30','2015-08-29 14:46:02',1,30000131,453,610,609,465,490,429,426,504,694,742,663,605,731,895,850,860,662,446,489,669,771,759,592,568),(3530,'2015-03-10 21:49:30','2015-08-29 14:46:02',1,30002219,9,8,6,8,9,4,4,2,24,22,13,13,8,6,5,8,17,6,9,4,6,10,12,5),(3531,'2015-03-10 21:49:30','2015-08-29 14:46:02',1,30001401,151,151,113,137,119,157,97,118,209,175,167,188,195,256,283,217,163,120,199,127,232,180,193,193),(3532,'2015-03-10 21:49:30','2015-08-29 14:46:02',1,30005236,30,57,27,38,55,37,11,25,39,48,35,30,47,49,35,36,43,43,43,71,51,46,32,31),(3533,'2015-03-10 21:49:30','2015-08-29 14:46:02',1,30004094,102,163,144,124,124,89,89,84,147,164,174,170,191,227,224,165,162,126,107,171,151,156,159,169),(3534,'2015-03-10 21:49:30','2015-08-29 14:46:02',1,30001725,3,3,7,6,3,6,1,2,3,6,2,1,4,7,12,4,12,3,3,4,8,5,4,4),(3535,'2015-03-10 21:49:30','2015-08-29 14:46:02',1,30045348,9,5,9,9,10,8,19,21,12,17,7,11,7,6,12,17,4,3,9,17,8,23,11,15),(3536,'2015-03-10 21:49:30','2015-08-29 14:46:02',1,30003884,9,4,1,2,3,16,0,4,7,9,4,3,5,3,3,2,6,10,4,2,8,6,1,1),(3537,'2015-03-10 21:49:30','2015-08-29 14:46:02',1,30001376,350,412,411,371,363,349,305,291,372,367,337,312,453,432,429,459,393,273,421,435,467,387,299,341),(3538,'2015-03-10 21:49:30','2015-08-29 14:46:02',1,30004307,23,21,11,35,40,28,43,32,19,20,14,11,18,9,37,10,4,5,17,12,56,42,37,48),(3539,'2015-03-10 21:49:30','2015-08-29 14:46:02',1,30004533,18,11,11,9,8,9,3,13,10,3,17,13,4,6,5,6,14,4,3,3,7,6,15,12),(3540,'2015-03-10 21:49:30','2015-08-29 14:46:02',1,30004479,8,18,1,2,10,13,12,9,21,14,13,14,2,20,17,28,15,6,15,15,9,9,14,12),(3541,'2015-03-10 21:49:30','2015-08-29 14:46:02',1,30002451,24,9,20,33,18,21,15,11,7,11,18,22,7,3,3,13,12,8,19,2,6,16,9,7),(3542,'2015-03-10 21:49:30','2015-08-29 14:46:02',1,30001822,11,5,13,5,7,3,25,4,10,17,3,3,4,6,14,2,4,0,1,4,4,6,4,0),(3543,'2015-03-10 21:49:30','2015-03-10 21:49:30',1,30000368,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(3544,'2015-03-10 21:49:30','2015-08-29 14:46:02',1,30004919,2,6,1,4,7,2,0,0,23,16,3,4,11,21,29,12,12,3,9,4,3,6,1,4),(3545,'2015-03-10 21:49:30','2015-08-29 14:46:02',1,30004866,8,6,7,6,4,1,11,3,5,1,4,5,2,10,9,5,2,4,15,8,1,4,9,13),(3546,'2015-03-10 21:49:30','2015-08-29 14:46:02',1,30001094,0,3,0,4,6,3,1,0,6,5,1,0,1,1,3,9,3,0,0,0,2,2,0,0),(3547,'2015-03-10 21:49:30','2015-08-29 14:46:02',1,30001962,4,5,11,11,8,3,1,4,3,3,3,2,0,1,0,3,4,6,4,1,2,3,0,2),(3548,'2015-03-10 21:49:30','2015-08-29 14:46:02',1,30002103,9,65,17,17,14,25,14,6,44,41,13,12,20,36,40,23,16,3,36,10,34,35,13,12),(3549,'2015-03-10 21:49:30','2015-08-29 14:46:02',1,30000696,9,7,5,8,6,2,5,9,4,0,8,1,3,3,6,1,7,4,16,7,7,4,5,13),(3550,'2015-03-10 21:49:30','2015-03-10 21:49:30',1,30001622,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(3551,'2015-03-10 21:49:30','2015-08-29 14:46:02',1,30001061,13,2,0,3,6,10,2,1,0,0,0,0,0,4,1,2,1,0,0,0,3,2,1,2),(3552,'2015-03-10 21:49:30','2015-08-29 14:46:02',1,30004318,6,33,3,17,26,10,16,14,8,18,14,9,4,23,15,6,9,2,3,2,5,6,9,3),(3553,'2015-03-10 21:49:30','2015-08-29 14:46:02',1,30004035,3,6,3,10,5,3,4,2,6,4,6,10,2,7,6,3,8,0,1,4,2,1,3,7),(3554,'2015-03-10 21:49:30','2015-08-29 14:46:02',1,30002606,5,3,10,9,10,2,17,8,0,2,4,4,6,9,3,7,5,2,3,3,16,22,10,13),(3555,'2015-03-10 21:49:30','2015-08-29 14:46:02',1,30000183,37,41,51,47,59,40,20,37,60,57,68,53,56,63,60,68,62,38,33,39,41,51,44,42),(3556,'2015-03-10 21:49:30','2015-08-29 14:46:02',1,30001665,21,27,21,36,27,20,16,25,24,26,35,33,24,45,50,38,23,23,22,32,38,41,32,22),(3557,'2015-03-10 21:49:30','2015-08-29 14:46:02',1,30003627,3,4,1,3,5,1,6,1,0,0,0,0,4,3,4,3,1,1,2,0,2,2,1,0),(3558,'2015-03-10 21:49:30','2015-03-10 21:49:30',1,30000350,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(3559,'2015-03-10 21:49:30','2015-08-29 14:46:02',1,30004438,0,1,3,1,1,1,0,25,2,3,5,2,0,1,2,0,2,1,1,7,0,3,1,3),(3560,'2015-03-10 21:49:30','2015-08-29 14:46:02',1,30002340,8,10,11,10,8,10,2,9,14,3,10,12,13,45,29,15,3,21,40,11,31,24,6,1),(3561,'2015-03-10 21:49:30','2015-08-29 14:46:02',1,30004440,3,8,8,7,11,15,0,39,24,19,20,11,21,23,25,10,29,27,19,32,67,31,33,47),(3562,'2015-03-10 21:49:30','2015-08-29 14:46:02',1,30004612,1,7,4,5,4,0,3,0,5,2,1,1,4,3,2,2,2,5,5,8,7,3,2,4),(3563,'2015-03-10 21:49:30','2015-08-29 14:46:02',1,30001874,14,19,19,16,16,24,16,6,50,60,74,74,39,71,60,79,130,10,25,43,258,284,123,113),(3564,'2015-03-10 21:49:30','2015-08-29 14:46:02',1,30004911,14,42,13,41,32,22,4,15,15,10,7,4,20,38,36,7,17,12,117,4,3,7,4,12),(3565,'2015-03-10 21:49:30','2015-08-29 14:46:02',1,30004863,3,0,0,3,2,0,0,26,2,1,3,4,4,3,4,10,12,2,1,2,4,7,8,15),(3566,'2015-03-10 21:49:30','2015-08-29 14:46:02',1,30000870,27,20,16,15,15,45,21,25,18,31,18,23,53,96,102,13,11,10,7,13,22,18,5,12),(3567,'2015-03-10 21:49:30','2015-08-29 14:46:02',1,30004050,11,110,17,14,8,6,5,17,48,23,10,10,39,12,15,12,26,3,25,5,9,11,16,10),(3568,'2015-03-10 21:49:30','2015-08-29 14:46:02',1,30002935,29,34,15,16,16,13,15,19,42,28,15,15,30,34,24,10,10,10,19,12,10,15,21,10),(3569,'2015-03-10 21:49:30','2015-08-29 14:46:02',1,30000627,3,0,3,11,6,6,0,1,0,0,0,6,0,1,3,1,1,0,0,2,1,1,1,2),(3570,'2015-03-10 21:49:30','2015-08-29 14:46:02',1,30000744,0,2,0,1,0,0,0,1,0,0,4,4,1,0,1,1,1,1,0,0,0,1,1,1),(3571,'2015-03-10 21:49:30','2015-08-29 14:46:02',1,30000982,1,1,3,4,2,2,0,1,2,8,3,1,2,3,3,0,5,1,1,1,1,1,0,1),(3572,'2015-03-10 21:49:30','2015-08-29 14:46:02',1,30004692,13,8,8,10,12,7,17,14,20,18,13,33,35,26,18,13,19,11,10,33,33,18,13,24),(3573,'2015-03-10 21:49:30','2015-08-29 14:46:02',1,30000831,3,29,7,6,38,2,2,26,0,1,7,1,8,7,8,8,7,6,1,6,1,1,6,17),(3574,'2015-03-10 21:49:30','2015-08-29 14:46:02',1,30002034,2,12,5,2,0,2,0,3,1,0,0,0,1,0,0,0,0,0,0,0,0,2,0,0),(3575,'2015-03-10 21:49:30','2015-08-29 14:46:02',1,30004060,13,24,7,24,17,10,4,19,30,39,43,20,37,25,13,11,23,9,21,24,23,24,9,10),(3576,'2015-03-10 21:49:30','2015-08-29 14:46:02',1,30001964,16,6,9,16,21,52,14,12,40,49,98,85,8,41,49,12,5,10,8,8,18,8,21,14),(3577,'2015-03-10 21:49:30','2015-08-29 14:46:02',1,30003683,104,372,193,138,145,111,72,70,95,115,183,214,246,142,113,107,65,69,110,137,81,84,60,68),(3578,'2015-03-10 21:49:30','2015-08-29 14:46:02',1,30001955,6,4,2,0,2,9,0,5,8,7,3,1,4,5,6,2,4,6,1,1,7,5,5,5),(3579,'2015-03-10 21:49:30','2015-08-29 14:46:02',1,30002358,17,27,28,36,32,18,8,6,5,3,0,2,5,10,18,6,2,6,5,8,15,9,6,4),(3580,'2015-03-10 21:49:30','2015-08-29 14:46:02',1,30004199,0,2,0,3,2,0,2,0,5,4,5,5,1,0,0,0,0,0,4,4,1,0,4,4),(3581,'2015-03-10 21:49:30','2015-08-29 14:46:02',1,30001938,3,5,2,8,5,4,21,5,9,15,17,17,12,15,19,32,26,4,9,14,16,20,25,26),(3582,'2015-03-10 21:49:30','2015-08-29 14:46:02',1,30004713,6,29,4,7,10,13,12,36,124,44,172,41,56,71,65,46,57,33,34,67,12,18,16,24),(3583,'2015-03-10 21:49:30','2015-08-29 14:46:02',1,30004049,8,9,2,4,3,5,5,3,6,4,6,8,7,19,15,12,5,6,10,9,9,11,5,9),(3584,'2015-03-10 21:49:30','2015-08-29 14:46:02',1,30004326,14,25,10,8,7,15,20,15,16,21,16,18,24,41,25,2,9,1,8,24,11,15,7,6),(3585,'2015-03-10 21:49:30','2015-08-29 14:46:02',1,30002351,13,11,12,12,20,18,7,12,8,8,6,6,38,15,16,19,8,8,9,32,16,14,26,39),(3586,'2015-03-10 21:49:30','2015-08-29 14:46:02',1,30000309,15,9,11,13,14,16,7,9,18,13,6,3,6,12,5,2,14,3,0,2,5,5,3,1),(3587,'2015-03-10 21:49:30','2015-08-29 14:46:02',1,30004671,5,12,5,2,3,12,12,4,7,10,11,7,4,13,21,12,6,4,4,4,4,4,10,12),(3588,'2015-03-10 21:49:30','2015-08-29 14:46:02',1,30004703,52,40,56,26,22,34,55,36,37,59,20,25,31,24,31,51,29,11,14,14,32,58,30,29),(3589,'2015-03-10 21:49:30','2015-08-29 14:46:02',1,30001986,38,146,40,58,53,41,46,45,47,40,42,52,41,86,91,30,33,150,162,106,39,53,51,44),(3590,'2015-03-10 21:49:30','2015-08-29 14:46:02',1,30001751,12,10,20,19,18,21,19,15,1,1,1,4,8,9,11,5,4,3,2,1,6,8,3,5),(3591,'2015-03-10 21:49:30','2015-08-29 14:46:02',1,30000993,5,5,5,5,4,4,4,3,3,3,4,1,2,4,3,1,2,3,3,6,4,8,0,0),(3592,'2015-03-10 21:49:30','2015-08-29 14:46:02',1,30004649,7,20,33,14,9,13,10,16,7,8,6,5,7,9,5,7,7,7,19,26,20,11,11,11),(3593,'2015-03-10 21:49:30','2015-08-29 14:46:02',1,30005171,9,13,10,7,8,6,6,3,17,6,19,12,7,8,7,3,7,0,1,2,1,1,14,16),(3594,'2015-03-10 21:49:30','2015-08-29 14:46:02',1,30004543,7,9,4,5,3,17,8,7,6,4,5,4,4,5,3,7,9,2,0,6,2,3,7,1),(3595,'2015-03-10 21:49:30','2015-08-29 14:46:02',1,30000975,1,3,2,2,0,1,1,2,4,2,0,0,0,9,4,11,0,5,1,1,3,5,5,2),(3596,'2015-03-10 21:49:30','2015-08-29 14:46:02',1,30001297,9,3,4,17,12,3,0,3,0,0,4,2,3,3,1,2,4,9,4,0,7,6,6,1),(3597,'2015-03-10 21:49:30','2015-08-29 14:46:02',1,30002457,22,18,38,30,26,23,14,11,27,24,48,46,14,15,12,37,23,9,18,36,82,63,24,35),(3598,'2015-03-10 21:49:30','2015-08-29 14:46:02',1,30003761,15,25,23,31,27,27,24,11,13,17,17,19,23,28,30,30,11,8,15,14,12,17,11,16),(3599,'2015-03-10 21:49:30','2015-08-29 14:46:02',1,30004044,61,163,42,41,41,44,23,40,59,53,36,45,87,76,74,57,39,35,76,45,52,60,42,22),(3600,'2015-03-10 21:49:30','2015-08-29 14:46:02',1,30002425,61,34,50,55,43,71,29,31,43,40,44,50,34,40,36,54,52,20,43,58,111,67,56,50),(3601,'2015-03-10 21:49:30','2015-08-29 14:46:02',1,30004699,16,6,2,4,11,7,3,3,3,4,0,1,3,1,3,3,0,1,1,10,0,2,2,2),(3602,'2015-03-10 21:49:30','2015-08-29 14:46:02',1,30003686,101,212,134,143,132,108,93,109,60,79,126,170,227,144,103,98,44,78,88,121,71,66,65,68),(3603,'2015-03-10 21:49:30','2015-08-29 14:46:02',1,30002602,4,1,3,0,0,0,0,0,0,0,3,1,1,50,8,5,14,0,45,2,0,2,4,3),(3604,'2015-03-10 21:49:30','2015-08-29 14:46:02',1,30002499,17,35,31,20,20,36,25,8,13,18,11,12,11,3,7,9,11,21,14,14,14,17,17,17),(3605,'2015-03-10 21:49:30','2015-08-29 14:46:02',1,30000492,6,6,13,12,9,8,10,2,26,29,30,22,26,61,30,37,16,12,86,67,45,33,38,18),(3606,'2015-03-10 21:49:30','2015-08-29 14:46:02',1,30002851,25,11,21,24,23,6,16,15,40,44,25,27,35,44,32,18,21,2,3,16,20,27,30,20),(3607,'2015-03-10 21:49:30','2015-08-29 14:46:02',1,30003645,2,10,11,7,10,2,6,6,4,5,4,5,6,3,2,4,3,4,2,0,3,2,3,0),(3608,'2015-03-10 21:49:30','2015-08-29 14:46:02',1,30003946,3,2,2,8,9,12,8,1,16,15,11,11,12,8,4,7,16,9,5,6,11,18,13,9),(3609,'2015-03-10 21:49:30','2015-08-29 14:46:02',1,30002153,9,2,2,0,4,4,0,10,1,0,3,4,13,4,6,7,4,1,16,25,11,15,4,7),(3610,'2015-03-10 21:49:30','2015-08-29 14:46:02',1,30004691,20,9,13,15,12,20,20,16,26,30,13,37,38,31,20,20,20,10,12,29,46,25,16,23),(3611,'2015-03-10 21:49:30','2015-08-29 14:46:02',1,30002884,3,20,19,13,10,27,34,25,24,18,30,17,26,34,15,18,18,5,3,6,21,16,23,19),(3612,'2015-03-10 21:49:30','2015-08-29 14:46:02',1,30000512,5,10,12,9,9,12,14,9,20,18,6,5,7,25,14,12,10,24,113,8,12,17,7,5),(3613,'2015-03-10 21:49:30','2015-08-29 14:46:02',1,30001855,15,19,11,5,6,15,9,8,24,15,45,47,31,60,37,39,37,10,14,8,37,48,28,32),(3614,'2015-03-10 21:49:30','2015-08-29 14:46:02',1,30002116,2,4,0,1,0,0,2,1,3,5,4,5,0,0,0,4,1,0,0,0,2,0,1,0),(3615,'2015-03-10 21:49:30','2015-08-29 14:46:02',1,30001099,1,0,3,2,1,0,0,2,5,6,0,0,0,0,0,0,0,0,0,0,0,0,0,2),(3616,'2015-03-10 21:49:30','2015-08-29 14:46:02',1,30002179,35,71,45,56,38,82,41,35,69,44,25,20,54,58,58,58,35,88,254,202,57,58,66,51),(3617,'2015-03-10 21:49:30','2015-08-29 14:46:02',1,30001068,6,8,6,0,5,2,3,2,5,1,4,4,2,8,7,9,13,3,0,3,5,3,3,4),(3618,'2015-03-10 21:49:30','2015-08-29 14:46:02',1,30004381,17,31,22,7,8,14,22,12,12,15,10,8,13,43,46,8,28,6,15,15,11,13,11,7),(3619,'2015-03-10 21:49:30','2015-08-29 14:46:02',1,30002879,0,0,0,0,0,0,0,1,1,1,1,0,0,0,0,0,0,0,1,0,0,1,1,0),(3620,'2015-03-10 21:49:30','2015-08-29 14:46:02',1,30004424,9,5,5,6,7,5,4,13,0,2,0,2,0,4,2,2,11,1,11,13,10,8,8,12),(3621,'2015-03-10 21:49:30','2015-08-29 14:46:02',1,30000560,3,2,8,10,2,4,1,3,15,7,5,2,26,10,12,30,9,24,10,31,15,19,5,7),(3622,'2015-03-10 21:49:30','2015-08-29 14:46:02',1,30000679,9,56,2,1,1,15,12,3,18,11,14,15,6,7,15,14,11,10,4,8,12,12,1,3),(3623,'2015-03-10 21:49:30','2015-08-29 14:46:02',1,30004996,31,45,20,28,15,57,36,28,58,63,54,31,105,60,58,46,40,26,21,44,46,45,48,51),(3624,'2015-03-10 21:49:30','2015-08-29 14:46:02',1,30000155,493,567,732,548,519,601,415,427,597,689,657,664,669,722,726,749,620,413,489,640,703,592,627,581),(3625,'2015-03-10 21:49:30','2015-08-29 14:46:02',1,30000205,35,90,83,56,41,43,50,96,108,118,116,59,97,95,84,73,84,71,85,64,90,92,97,64),(3626,'2015-03-10 21:49:30','2015-08-29 14:46:02',1,30004109,6,9,3,9,4,15,3,9,3,12,16,16,3,2,7,12,2,5,9,4,3,2,3,4),(3627,'2015-03-10 21:49:30','2015-08-29 14:46:02',1,30004487,16,40,4,13,7,52,16,7,7,6,10,20,8,20,25,43,26,15,11,24,23,21,37,34),(3628,'2015-03-10 21:49:30','2015-08-29 14:46:02',1,30002522,37,52,29,25,39,36,16,36,63,64,68,54,58,50,50,58,47,31,31,26,46,33,48,58),(3629,'2015-03-10 21:49:30','2015-08-29 14:46:02',1,30005181,0,1,0,0,0,0,0,0,0,0,0,0,0,1,0,1,1,0,1,1,5,5,0,0),(3630,'2015-03-10 21:49:30','2015-08-29 14:46:02',1,30003578,31,53,99,154,131,44,43,37,54,70,71,57,65,82,76,66,74,43,31,70,79,75,64,55),(3631,'2015-03-10 21:49:30','2015-08-29 14:46:02',1,30004426,8,3,15,16,11,7,8,8,2,3,3,2,5,10,10,8,12,22,24,7,3,2,5,7),(3632,'2015-03-10 21:49:30','2015-08-29 14:46:02',1,30003857,44,39,97,43,61,48,41,41,75,71,67,43,140,94,78,44,37,37,48,78,66,51,55,64),(3633,'2015-03-10 21:49:30','2015-08-29 14:46:02',1,30002509,365,451,440,469,426,374,312,338,560,581,523,489,622,696,672,591,429,414,467,577,594,509,535,543),(3634,'2015-03-10 21:49:30','2015-08-29 14:46:02',1,30002388,43,49,71,59,44,59,49,40,85,86,90,49,210,83,105,115,70,75,35,87,78,79,94,92),(3635,'2015-03-10 21:49:30','2015-08-29 14:46:02',1,30003470,7,5,4,5,3,10,10,5,5,4,12,14,11,2,1,7,8,5,5,7,11,6,20,23),(3636,'2015-03-10 21:49:30','2015-08-29 14:46:02',1,30002694,7,11,17,23,18,14,11,14,37,24,10,9,20,23,25,20,16,11,17,14,7,11,24,26),(3637,'2015-03-10 21:49:30','2015-08-29 14:46:02',1,30002963,158,221,197,214,193,152,82,136,197,230,232,210,252,261,260,301,193,136,181,261,255,221,212,195),(3638,'2015-03-10 21:49:30','2015-08-29 14:46:02',1,30003582,8,7,16,53,38,15,13,14,55,62,26,21,18,24,23,14,8,18,12,20,13,24,21,21),(3639,'2015-03-10 21:49:30','2015-08-29 14:46:02',1,30003050,30,45,45,73,47,27,32,44,81,77,91,59,55,75,66,67,44,32,52,38,51,48,71,54),(3640,'2015-03-10 21:49:30','2015-08-29 14:46:02',1,30000077,28,25,27,21,26,23,12,19,20,17,24,26,37,62,37,37,40,16,41,28,42,47,21,37),(3641,'2015-03-10 21:49:30','2015-08-29 14:46:02',1,30012715,32,21,36,24,17,48,17,16,39,59,48,50,51,49,51,42,29,33,21,49,30,32,33,28),(3642,'2015-03-10 21:49:30','2015-08-29 14:46:02',1,30003657,18,28,11,15,18,12,23,23,6,13,5,5,14,9,8,15,10,3,13,23,10,15,6,6),(3643,'2015-03-10 21:49:30','2015-08-29 14:46:02',1,30002008,17,8,5,5,10,6,9,22,8,8,9,7,0,5,10,16,2,3,2,6,3,4,17,10),(3644,'2015-03-10 21:49:30','2015-08-29 14:46:02',1,30000439,2,1,0,0,0,2,11,0,3,5,5,2,4,0,0,1,1,1,4,4,3,3,1,0),(3645,'2015-03-10 21:49:30','2015-08-29 14:46:02',1,30003577,56,100,104,155,133,64,44,76,100,118,104,72,88,109,110,92,72,57,53,95,116,104,64,67),(3646,'2015-03-10 21:49:30','2015-08-29 14:46:02',1,30002427,18,14,35,27,20,27,9,17,28,23,23,23,24,19,24,27,10,11,14,19,84,37,34,34),(3647,'2015-03-10 21:49:30','2015-08-29 14:46:02',1,30003446,23,23,37,41,35,29,34,16,53,81,36,28,31,53,56,35,35,19,40,43,41,59,44,41),(3648,'2015-03-10 21:49:30','2015-08-29 14:46:02',1,30003460,23,46,38,36,46,19,21,34,73,172,78,46,52,58,49,81,44,11,23,37,31,30,18,16),(3649,'2015-03-10 21:49:30','2015-08-29 14:46:02',1,30002549,45,62,48,49,32,35,50,52,61,68,63,55,50,67,76,63,93,24,33,37,64,42,51,51),(3650,'2015-03-10 21:49:30','2015-08-29 14:46:02',1,30002061,20,30,9,15,16,10,30,6,39,30,9,8,4,16,13,14,26,14,2,8,21,13,17,10),(3651,'2015-03-10 21:49:30','2015-08-29 14:46:02',1,30000472,1,0,2,0,1,1,3,2,6,4,7,5,6,17,7,13,11,22,128,18,31,32,10,5),(3652,'2015-03-10 21:49:30','2015-08-29 14:46:02',1,30003598,15,32,8,19,17,10,4,12,10,17,20,25,27,33,20,10,17,16,9,17,20,15,16,13),(3653,'2015-03-10 21:49:30','2015-08-29 14:46:02',1,30001191,2,4,2,6,4,7,8,6,7,46,19,19,10,4,8,10,5,7,6,12,7,2,5,5),(3654,'2015-03-10 21:49:30','2015-08-29 14:46:02',1,30003437,29,37,23,24,31,20,30,18,33,39,44,42,25,28,30,43,45,24,14,36,34,54,42,30),(3655,'2015-03-10 21:49:30','2015-08-29 14:46:02',1,30005068,15,21,33,20,28,17,11,37,76,52,17,24,33,19,24,43,22,34,23,27,35,37,25,25),(3656,'2015-03-10 21:49:30','2015-08-29 14:46:02',1,30002045,2,4,6,1,1,2,2,4,5,0,0,0,2,0,0,3,3,0,0,4,2,4,4,5),(3657,'2015-03-10 21:49:30','2015-08-29 14:46:02',1,30003984,34,96,92,36,19,37,26,18,35,73,37,16,6,29,27,25,11,16,4,7,35,29,13,10),(3658,'2015-03-10 21:49:30','2015-08-29 14:46:02',1,30001435,20,26,19,12,15,12,15,5,40,40,23,18,20,43,30,31,37,29,46,37,40,30,40,36),(3659,'2015-03-10 21:49:30','2015-08-29 14:46:02',1,30002970,158,239,195,226,194,151,99,148,209,239,235,225,255,289,274,317,216,140,191,247,271,238,234,207),(3660,'2015-03-10 21:49:30','2015-08-29 14:46:02',1,30000204,19,28,37,34,24,33,24,33,56,71,32,23,56,23,35,34,40,25,35,30,23,25,25,22),(3661,'2015-03-10 21:49:30','2015-08-29 14:46:02',1,30000136,51,48,34,27,25,40,32,22,34,31,34,25,55,54,59,31,31,23,34,57,42,43,50,48),(3662,'2015-03-10 21:49:30','2015-08-29 14:46:02',1,30002743,40,80,94,119,101,26,38,40,55,45,59,46,36,56,45,69,45,18,33,55,59,68,52,36),(3663,'2015-03-10 21:49:30','2015-08-29 14:46:02',1,30002818,76,119,118,138,162,122,117,100,132,127,153,133,143,160,136,138,106,91,86,123,128,131,110,70),(3664,'2015-03-10 21:49:30','2015-08-29 14:46:02',1,30003838,83,165,80,85,113,75,76,48,206,186,82,54,197,128,101,70,87,65,166,99,66,89,98,61),(3665,'2015-03-10 21:49:30','2015-08-29 14:46:02',1,30002746,40,82,85,106,121,42,55,47,67,56,46,47,40,41,50,69,34,37,36,55,64,73,55,39),(3666,'2015-03-10 21:49:30','2015-08-29 14:46:02',1,30000186,179,122,302,183,203,151,130,133,202,242,200,173,229,152,162,365,150,87,106,121,180,179,221,286),(3667,'2015-03-10 21:49:30','2015-08-29 14:46:02',1,30001444,45,58,69,50,57,42,32,35,62,63,61,53,45,58,66,54,54,27,37,44,55,53,76,81),(3668,'2015-03-10 21:49:30','2015-08-29 14:46:02',1,30045347,100,92,114,154,191,84,145,117,328,269,111,86,189,142,165,136,97,199,125,88,240,183,124,122),(3669,'2015-03-10 21:49:30','2015-08-29 14:46:02',1,30002750,176,236,250,199,193,177,123,152,262,254,237,214,266,251,213,233,213,135,138,207,203,219,229,194),(3670,'2015-03-10 21:49:30','2015-08-29 14:46:02',1,30003132,11,6,9,13,17,24,5,1,15,14,6,13,9,4,1,1,3,6,6,3,4,3,8,2),(3671,'2015-03-10 21:49:30','2015-08-29 14:46:02',1,30001425,143,153,182,195,147,164,109,123,170,169,130,131,199,210,210,178,174,106,157,141,211,214,133,129),(3672,'2015-03-10 21:49:30','2015-08-29 14:46:02',1,30022715,5,11,14,9,8,8,17,7,8,16,12,9,26,23,26,25,33,20,7,11,21,16,26,18),(3673,'2015-03-10 21:49:30','2015-08-29 14:46:02',1,30001433,9,7,12,8,8,7,7,6,6,5,20,22,11,6,6,7,8,7,4,3,11,9,7,10),(3674,'2015-03-10 21:49:30','2015-08-29 14:46:02',1,30002799,67,102,101,76,64,65,28,53,42,59,68,59,72,72,60,74,87,52,64,79,101,85,80,82),(3675,'2015-03-10 21:49:30','2015-08-29 14:46:02',1,30004334,13,19,13,9,10,8,5,13,5,10,11,2,8,16,19,6,6,3,4,2,1,1,6,6),(3676,'2015-03-10 21:49:30','2015-08-29 14:46:02',1,30001341,6,6,3,2,2,2,1,7,5,4,7,7,6,2,0,0,7,1,6,10,3,3,4,4),(3677,'2015-03-10 21:49:30','2015-08-29 14:46:02',1,30000983,4,9,9,3,2,6,0,7,4,5,6,3,1,0,0,5,8,2,4,2,3,3,7,5),(3678,'2015-03-10 21:49:30','2015-08-29 14:46:02',1,30005091,6,6,4,15,11,7,4,5,7,1,7,9,1,22,17,2,4,6,7,9,20,11,5,6),(3679,'2015-03-10 21:49:30','2015-08-29 14:46:02',1,30000945,7,9,6,0,7,5,2,7,1,0,3,4,7,29,54,16,4,16,2,2,1,2,9,3),(3680,'2015-03-10 21:49:30','2015-08-29 14:46:02',1,30045307,23,8,18,25,32,17,29,19,34,31,27,34,38,26,21,20,47,13,13,20,28,50,20,32),(3681,'2015-03-10 21:49:30','2015-08-29 14:46:02',1,30004924,3,27,2,11,14,27,6,7,6,7,9,14,15,3,18,25,17,6,7,19,23,21,32,30),(3682,'2015-03-10 21:49:30','2015-08-29 14:46:02',1,30045330,83,691,62,92,123,87,96,102,172,184,209,175,191,234,147,207,106,148,104,154,162,136,111,98),(3683,'2015-03-10 21:49:30','2015-08-29 14:46:02',1,30004645,2,5,1,4,10,6,2,3,17,17,4,10,2,6,1,12,12,12,32,18,2,9,11,24),(3684,'2015-03-10 21:49:30','2015-08-29 14:46:02',1,30003388,151,213,153,167,167,198,110,197,303,314,238,229,287,320,340,359,273,206,202,230,322,288,262,222),(3685,'2015-03-10 21:49:30','2015-08-29 14:46:02',1,30005000,79,94,107,119,138,129,119,94,160,152,112,93,166,179,147,165,140,116,73,90,206,146,121,144),(3686,'2015-03-10 21:49:30','2015-08-29 14:46:02',1,30032715,11,14,10,10,11,5,14,9,6,16,28,15,28,26,30,19,22,9,7,24,27,22,15,17),(3687,'2015-03-10 21:49:30','2015-08-29 14:46:02',1,30002686,44,35,42,33,31,45,28,27,31,29,54,54,51,37,32,41,52,30,110,54,40,47,42,32),(3688,'2015-03-10 21:49:30','2015-08-29 14:46:02',1,30002515,16,16,28,17,26,12,18,11,8,6,9,8,15,19,12,18,14,22,17,19,20,14,10,11),(3689,'2015-03-10 21:49:30','2015-08-29 14:46:02',1,30003058,13,22,19,36,14,20,16,12,30,25,56,29,45,25,32,40,23,38,13,34,17,26,16,18),(3690,'2015-03-10 21:49:30','2015-08-29 14:46:02',1,30005272,24,9,20,16,12,15,6,10,24,15,17,11,25,13,13,22,15,29,56,22,23,23,32,15),(3691,'2015-03-10 21:49:30','2015-08-29 14:46:02',1,30000158,495,627,742,606,558,625,444,415,645,721,694,707,729,790,779,790,664,427,515,636,741,655,671,611),(3692,'2015-03-10 21:49:30','2015-08-29 14:46:02',1,30004137,20,15,3,12,23,12,4,2,21,32,19,15,44,23,21,22,6,2,1,17,20,10,28,20),(3693,'2015-03-10 21:49:30','2015-08-29 14:46:02',1,30004302,4,4,3,5,6,3,5,4,5,4,9,21,9,17,16,4,7,1,7,5,15,15,9,13),(3694,'2015-03-10 21:49:30','2015-08-29 14:46:02',1,30003817,3,2,4,6,5,2,2,5,5,4,6,9,8,13,8,12,4,5,8,3,4,12,5,6),(3695,'2015-03-10 21:49:30','2015-08-29 14:46:02',1,30005027,23,34,31,33,32,30,24,13,36,29,35,16,47,37,39,37,52,16,24,31,53,47,34,21),(3696,'2015-03-10 21:49:30','2015-08-29 14:46:02',1,30004244,29,81,110,59,57,84,61,44,90,96,55,61,87,62,59,50,79,63,62,72,60,70,46,50),(3697,'2015-03-10 21:49:30','2015-08-29 14:46:02',1,30002811,73,87,98,64,62,55,68,49,78,72,88,67,141,141,107,104,81,58,82,109,70,71,82,88),(3698,'2015-03-10 21:49:30','2015-08-29 14:46:02',1,30001688,96,138,93,134,131,99,57,97,359,370,418,381,163,221,215,230,174,114,148,179,171,157,128,133),(3699,'2015-03-10 21:49:30','2015-08-29 14:46:02',1,30003603,23,19,38,37,30,13,23,8,16,31,21,15,29,23,29,23,14,17,30,33,32,26,33,37),(3700,'2015-03-10 21:49:30','2015-08-29 14:46:02',1,30002568,457,659,584,636,538,534,395,483,690,721,643,648,852,817,843,799,639,515,582,679,813,707,607,627),(3701,'2015-03-10 21:49:30','2015-08-29 14:46:02',1,30003386,62,68,94,75,67,77,37,56,78,95,85,64,103,78,98,91,94,63,80,79,108,99,106,93),(3702,'2015-03-10 21:49:30','2015-08-29 14:46:02',1,30045324,306,300,322,324,279,300,199,263,284,321,287,249,339,383,421,386,341,271,343,341,423,384,304,297),(3703,'2015-03-10 21:49:30','2015-08-29 14:46:02',1,30004990,55,50,47,67,54,50,23,28,37,52,140,94,96,57,74,58,50,49,48,83,50,67,67,69),(3704,'2015-03-10 21:49:30','2015-08-29 14:46:02',1,30002779,22,40,33,28,25,16,37,18,51,39,44,33,33,32,32,39,32,13,22,28,27,25,21,20),(3705,'2015-03-10 21:49:30','2015-08-29 14:46:02',1,30000013,70,46,30,29,28,33,37,23,86,78,83,56,134,71,55,72,74,74,82,90,66,63,53,42),(3706,'2015-03-10 21:49:30','2015-08-29 14:46:02',1,30002091,7,10,3,4,5,7,3,5,20,20,7,10,21,17,24,23,20,24,22,12,11,19,20,33),(3707,'2015-03-10 21:49:30','2015-08-29 14:46:02',1,30000174,43,66,70,56,60,104,28,48,25,57,42,51,88,128,131,119,81,72,64,88,94,79,88,68),(3708,'2015-03-10 21:49:30','2015-08-29 14:46:02',1,30001946,2,12,4,8,5,5,10,6,12,13,26,30,3,17,25,8,26,3,8,11,10,16,11,11),(3709,'2015-03-10 21:49:30','2015-08-29 14:46:02',1,30005109,20,59,45,28,38,21,11,12,20,17,6,5,3,12,19,2,2,8,16,23,13,11,4,5),(3710,'2015-03-10 21:49:30','2015-08-29 14:46:02',1,30002173,22,15,67,23,24,25,15,29,10,17,19,21,14,35,36,7,9,3,17,39,6,16,18,19),(3711,'2015-03-10 21:49:30','2015-08-29 14:46:02',1,30003430,82,96,97,78,73,86,31,52,68,75,68,73,104,124,109,108,73,64,88,76,113,115,60,84),(3712,'2015-03-10 21:49:30','2015-08-29 14:46:02',1,30004858,1,1,1,3,2,1,4,1,3,1,0,0,0,1,2,0,2,0,0,1,1,2,2,5),(3713,'2015-03-10 21:49:30','2015-08-29 14:46:02',1,30000607,9,7,3,0,1,7,14,0,3,5,0,0,4,0,0,1,3,18,1,3,26,43,15,7),(3714,'2015-03-10 21:49:30','2015-08-29 14:46:02',1,30003450,8,10,11,8,7,16,9,7,21,26,28,19,13,17,20,33,7,8,10,8,16,18,8,14),(3715,'2015-03-10 21:49:30','2015-08-29 14:46:02',1,30003201,4,0,3,1,0,1,0,0,0,0,0,0,0,0,0,0,2,0,1,0,0,4,0,1),(3716,'2015-03-10 21:49:30','2015-08-29 14:46:02',1,30001685,6,18,2,2,3,1,5,7,28,29,30,30,28,35,28,53,43,37,25,47,33,38,39,44),(3717,'2015-03-10 21:49:30','2015-08-29 14:46:02',1,30005060,14,40,28,25,19,17,10,8,43,50,52,37,47,58,52,38,37,18,28,38,27,24,28,31),(3718,'2015-03-10 21:49:30','2015-08-29 14:46:02',1,30000026,6,11,10,8,10,20,8,4,9,8,19,22,14,16,14,18,13,5,7,11,12,12,6,4),(3719,'2015-03-10 21:49:30','2015-08-29 14:46:02',1,30003453,48,55,46,28,33,46,36,52,76,82,76,59,110,99,84,111,72,54,61,82,85,87,75,49),(3720,'2015-03-10 21:49:30','2015-08-29 14:46:02',1,30002571,42,27,29,24,26,17,27,28,42,45,42,39,45,42,48,44,33,17,15,27,26,27,27,35),(3721,'2015-03-10 21:49:30','2015-08-29 14:46:02',1,30002098,34,41,31,48,49,37,32,35,94,95,73,57,95,108,89,67,50,67,79,89,95,74,47,49),(3722,'2015-03-10 21:49:30','2015-08-29 14:46:02',1,30022505,6,3,7,5,9,8,3,7,16,12,9,20,12,11,8,13,3,4,9,12,11,8,11,10),(3723,'2015-03-10 21:49:30','2015-08-29 14:46:02',1,30002399,23,28,57,33,33,15,46,19,30,33,40,33,62,45,28,33,21,45,59,42,33,35,11,22),(3724,'2015-03-10 21:49:30','2015-08-29 14:46:02',1,30003492,410,159,171,199,199,160,121,126,284,269,244,258,314,302,315,277,305,194,207,219,293,326,261,251),(3725,'2015-03-10 21:49:30','2015-08-29 14:46:02',1,30003596,8,1,2,6,5,8,3,7,9,6,11,8,3,7,4,2,18,9,5,19,25,21,16,16),(3726,'2015-03-10 21:49:30','2015-08-29 14:46:02',1,30000063,10,35,20,16,24,39,25,17,23,21,34,31,23,44,43,30,23,35,23,35,48,45,17,21),(3727,'2015-03-10 21:49:30','2015-08-29 14:46:02',1,30003830,178,221,217,177,184,202,145,199,282,291,298,229,369,301,267,323,253,170,330,381,370,334,256,228),(3728,'2015-03-10 21:49:30','2015-03-10 21:49:30',1,30000374,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(3729,'2015-03-10 21:49:30','2015-08-29 14:46:02',1,30000207,17,4,13,19,15,14,16,30,35,22,23,30,74,33,43,21,18,11,22,13,20,17,9,21),(3730,'2015-03-10 21:49:30','2015-08-29 14:46:02',1,30002569,98,113,88,75,65,104,64,83,127,124,104,106,133,127,141,151,137,70,107,85,108,107,78,104),(3731,'2015-03-10 21:49:30','2015-08-29 14:46:02',1,30002795,93,96,116,89,73,68,50,53,50,64,98,90,72,82,78,94,113,46,53,77,81,70,98,95),(3732,'2015-03-10 21:49:30','2015-08-29 14:46:02',1,30003870,83,121,112,109,96,110,56,85,169,195,159,123,194,175,186,143,102,128,113,132,142,169,143,137),(3733,'2015-03-10 21:49:30','2015-08-29 14:46:02',1,30003812,12,32,18,14,7,23,10,19,17,21,25,27,39,44,33,40,40,19,25,10,23,25,10,19),(3734,'2015-03-10 21:49:30','2015-08-29 14:46:02',1,30003831,94,112,117,115,119,90,64,91,153,156,138,118,252,180,144,152,126,93,140,162,178,164,150,117),(3735,'2015-03-10 21:49:30','2015-08-29 14:46:02',1,30005332,133,158,157,144,133,108,92,86,154,151,149,145,173,272,229,220,135,153,157,156,219,206,140,123),(3736,'2015-03-10 21:49:30','2015-08-29 14:46:02',1,30000180,550,566,771,615,620,569,478,473,713,871,802,784,756,834,860,794,744,433,441,601,767,746,715,669),(3737,'2015-03-10 21:49:30','2015-08-29 14:46:02',1,30002506,100,204,167,160,128,114,118,144,141,171,136,125,166,223,212,201,130,156,141,173,200,151,152,141),(3738,'2015-03-10 21:49:30','2015-08-29 14:46:02',1,30001358,7,12,19,19,20,23,19,12,38,24,31,34,35,46,61,41,36,14,24,49,26,23,27,31),(3739,'2015-03-10 21:49:30','2015-08-29 14:46:02',1,30003792,197,548,257,243,261,215,148,148,249,276,255,171,318,258,260,174,187,283,256,456,352,364,235,245),(3740,'2015-03-10 21:49:30','2015-08-29 14:46:02',1,30003427,37,31,30,28,28,20,20,29,20,29,28,30,35,53,47,33,31,28,28,38,15,15,30,38),(3741,'2015-03-10 21:49:30','2015-08-29 14:46:02',1,30002409,16,23,20,30,25,12,14,11,42,45,32,29,41,20,17,34,12,15,14,14,11,8,9,10),(3742,'2015-03-10 21:49:30','2015-08-29 14:46:02',1,30001579,1,3,2,2,8,2,1,0,1,0,0,0,0,0,0,0,3,2,0,0,0,0,0,2),(3743,'2015-03-10 21:49:30','2015-08-29 14:46:02',1,30001005,19,10,23,37,24,1,25,29,11,13,23,33,10,11,9,17,14,3,9,21,21,24,18,19),(3744,'2015-03-10 21:49:30','2015-08-29 14:46:02',1,30005274,33,49,28,49,44,31,18,29,46,42,44,35,55,42,41,53,42,62,75,51,51,57,65,53),(3745,'2015-03-10 21:49:30','2015-08-29 14:46:02',1,30001421,77,105,72,85,77,82,40,84,103,107,92,76,70,90,92,58,102,78,126,82,99,90,104,89),(3746,'2015-03-10 21:49:30','2015-08-29 14:46:02',1,30000192,20,4,24,21,25,21,40,23,61,34,26,27,46,31,50,33,19,10,23,24,17,25,10,18),(3747,'2015-03-10 21:49:30','2015-08-29 14:46:02',1,30000157,29,41,47,41,44,31,30,20,227,136,91,88,185,82,88,129,102,147,182,141,105,129,127,156),(3748,'2015-03-10 21:49:30','2015-08-29 14:46:02',1,30003065,112,142,130,116,117,132,81,116,210,175,171,145,166,255,237,175,142,141,143,177,179,175,159,167),(3749,'2015-03-10 21:49:30','2015-08-29 14:46:02',1,30000171,19,53,42,36,31,29,19,18,33,42,96,40,24,26,33,39,16,17,26,21,28,31,25,23),(3750,'2015-03-10 21:49:30','2015-08-29 14:46:02',1,30001538,1,1,1,0,1,0,0,3,0,0,0,0,0,0,0,0,0,0,0,2,2,0,0,0),(3751,'2015-03-10 21:49:30','2015-08-29 14:46:02',1,30001586,9,5,13,19,20,7,34,9,11,73,10,3,15,16,20,7,17,11,3,10,7,7,2,2),(3752,'2015-03-10 21:49:30','2015-08-29 14:46:02',1,30002808,38,31,39,28,25,30,13,30,45,62,31,33,85,59,79,86,57,79,41,59,75,73,49,29),(3753,'2015-03-10 21:49:30','2015-08-29 14:46:02',1,30000172,9,7,3,5,7,6,4,4,8,10,5,4,7,2,6,1,2,11,8,22,9,8,8,3),(3754,'2015-03-10 21:49:30','2015-08-29 14:46:02',1,30000196,56,60,115,70,76,45,54,35,143,129,136,99,234,169,368,112,109,62,91,121,240,123,170,251),(3755,'2015-03-10 21:49:30','2015-08-29 14:46:02',1,30002723,90,96,73,78,80,83,47,76,98,68,71,59,73,104,90,86,69,59,124,48,89,83,73,71),(3756,'2015-03-10 21:49:30','2015-08-29 14:46:02',1,30002578,1,11,1,4,6,2,6,10,4,16,10,32,15,16,15,8,13,4,8,11,7,3,9,12),(3757,'2015-03-10 21:49:30','2015-08-29 14:46:02',1,30001446,32,27,58,42,51,30,25,29,57,44,32,24,32,33,41,41,25,16,17,22,44,44,48,53),(3758,'2015-03-10 21:49:30','2015-08-29 14:46:02',1,30000194,28,18,39,36,26,31,18,42,53,49,21,23,22,42,33,44,25,17,22,35,38,47,19,25),(3759,'2015-03-10 21:49:30','2015-03-10 21:49:30',1,30001476,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(3760,'2015-03-10 21:49:30','2015-08-29 14:46:02',1,30004052,3,4,7,10,15,10,0,2,13,10,0,0,2,0,0,0,6,1,3,0,0,1,4,1),(3761,'2015-03-10 21:49:30','2015-08-29 14:46:02',1,30005297,75,86,109,80,68,123,76,47,132,125,78,60,144,79,77,109,71,83,102,236,125,118,105,107),(3762,'2015-03-10 21:49:30','2015-08-29 14:46:02',1,30003833,52,82,87,62,63,76,51,57,98,93,110,107,130,118,99,95,108,68,83,136,118,120,102,76),(3763,'2015-03-10 21:49:30','2015-08-29 14:46:02',1,30001370,48,40,54,58,39,48,45,42,63,74,69,53,84,83,84,75,53,44,49,65,73,63,64,55),(3764,'2015-03-10 21:49:30','2015-08-29 14:46:02',1,30005203,475,585,695,531,458,498,419,459,707,704,714,607,766,905,864,775,646,551,650,693,795,749,676,574),(3765,'2015-03-10 21:49:30','2015-08-29 14:46:02',1,30004969,188,211,279,205,209,164,114,160,187,191,196,152,296,325,255,266,239,177,181,227,278,257,247,244),(3766,'2015-03-10 21:49:30','2015-08-29 14:46:02',1,30000135,27,51,33,21,20,30,38,21,30,35,61,69,50,38,39,66,44,38,31,33,47,38,38,42),(3767,'2015-03-10 21:49:30','2015-03-10 21:49:30',1,30000335,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(3768,'2015-03-10 21:49:30','2015-08-29 14:46:02',1,30001819,10,3,9,8,7,0,23,4,7,14,8,1,3,1,1,2,4,0,1,4,3,1,6,0),(3769,'2015-03-10 21:49:30','2015-08-29 14:46:02',1,30004581,32,9,8,3,16,4,17,10,158,11,14,9,272,20,22,17,16,31,56,24,12,11,7,6),(3770,'2015-03-10 21:49:30','2015-08-29 14:46:02',1,30002936,41,56,48,42,34,41,41,39,59,70,34,16,33,56,54,46,21,14,28,38,36,30,27,31),(3771,'2015-03-10 21:49:30','2015-08-29 14:46:02',1,30004521,1,0,1,1,1,2,0,0,2,0,0,1,3,1,0,0,1,0,0,0,1,1,0,0),(3772,'2015-03-10 21:49:30','2015-08-29 14:46:02',1,30000735,33,26,9,10,6,5,3,4,0,0,0,1,1,0,2,4,1,0,2,4,1,2,1,1),(3773,'2015-03-10 21:49:30','2015-08-29 14:46:02',1,30004413,1,0,2,0,1,0,0,5,2,1,2,2,1,0,1,1,0,3,1,0,1,0,0,0),(3774,'2015-03-10 21:49:30','2015-08-29 14:46:02',1,30003722,17,9,10,14,10,3,6,5,26,28,22,37,19,29,30,15,27,14,23,18,22,51,44,53),(3775,'2015-03-10 21:49:30','2015-08-29 14:46:02',1,30000885,0,2,3,0,1,2,0,0,0,1,1,3,0,2,2,1,1,2,2,2,3,2,4,5),(3776,'2015-03-10 21:49:30','2015-08-29 14:46:02',1,30004958,6,11,25,21,16,4,2,12,6,5,0,1,4,4,2,4,2,0,10,21,5,5,4,0),(3777,'2015-03-10 21:49:30','2015-08-29 14:46:02',1,30002961,8,12,18,20,29,8,17,7,17,14,6,6,10,18,21,23,11,12,10,8,8,8,12,10),(3778,'2015-03-10 21:49:30','2015-08-29 14:46:02',1,30003088,89,88,83,62,63,84,55,58,110,94,94,83,91,94,90,113,75,68,95,164,83,82,89,99),(3779,'2015-03-10 21:49:30','2015-08-29 14:46:02',1,30003254,2,17,3,0,0,0,43,0,1,1,1,0,2,9,5,2,2,10,6,1,2,1,2,11),(3780,'2015-03-10 21:49:30','2015-08-29 14:46:02',1,30001282,7,1,1,17,20,2,1,2,2,3,1,1,2,0,0,2,0,1,0,0,2,2,3,1),(3781,'2015-03-10 21:49:30','2015-08-29 14:46:02',1,30002030,53,214,162,140,102,32,19,20,10,8,5,2,14,13,7,33,5,9,7,21,7,9,10,11),(3782,'2015-03-10 21:49:30','2015-08-29 14:46:02',1,30003680,57,224,93,100,72,85,40,64,104,115,202,259,336,152,121,109,69,73,117,152,95,85,67,68),(3783,'2015-03-10 21:49:30','2015-08-29 14:46:02',1,30003137,7,4,3,7,9,2,1,3,2,4,5,7,3,4,2,3,5,2,1,1,5,4,3,2),(3784,'2015-03-10 21:49:30','2015-08-29 14:46:02',1,30002482,8,2,9,13,15,5,3,6,6,6,4,7,0,1,0,5,2,1,1,4,3,7,3,0),(3785,'2015-03-10 21:49:30','2015-08-29 14:46:02',1,30001823,3,2,3,2,3,1,1,0,1,2,0,1,3,0,4,0,0,0,0,1,0,1,2,1),(3786,'2015-03-10 21:49:30','2015-08-29 14:46:02',1,30002467,10,13,29,22,22,12,8,6,38,32,45,39,12,27,23,33,23,8,7,25,63,44,14,18),(3787,'2015-03-10 21:49:30','2015-08-29 14:46:02',1,30001268,18,19,20,24,17,21,11,48,127,55,46,47,38,39,223,193,16,11,35,72,35,151,53,32),(3788,'2015-03-10 21:49:30','2015-08-29 14:46:02',1,30001293,6,0,4,6,4,5,2,1,1,3,2,2,2,6,5,0,1,4,1,0,3,3,4,2),(3789,'2015-03-10 21:49:30','2015-08-29 14:46:02',1,30004187,3,6,6,3,3,20,0,7,15,12,15,14,30,4,17,20,9,2,2,4,3,6,15,19),(3790,'2015-03-10 21:49:30','2015-03-10 21:49:30',1,30000365,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(3791,'2015-03-10 21:49:30','2015-08-29 14:46:02',1,30000661,1,2,0,0,0,0,0,3,5,2,2,2,6,18,3,1,6,6,0,0,1,0,2,2),(3792,'2015-03-10 21:49:30','2015-08-29 14:46:02',1,30001547,1,0,1,0,1,0,0,0,5,5,4,7,4,2,1,2,2,2,1,19,0,1,3,2),(3793,'2015-03-10 21:49:30','2015-08-29 14:46:02',1,30004170,9,1,4,0,0,5,0,2,7,7,3,4,0,6,6,6,6,5,0,0,7,8,1,0),(3794,'2015-03-10 21:49:30','2015-08-29 14:46:02',1,30004497,15,4,4,5,7,7,2,8,4,17,3,1,26,16,8,4,8,10,10,20,21,7,102,71),(3795,'2015-03-10 21:49:30','2015-08-29 14:46:02',1,30001795,11,3,5,3,3,0,5,3,13,19,10,7,6,4,2,3,0,0,6,7,6,6,5,7),(3796,'2015-03-10 21:49:30','2015-08-29 14:46:02',1,30003674,12,13,17,21,18,26,16,19,2,1,4,14,2,5,6,13,26,3,3,6,6,4,4,5),(3797,'2015-03-10 21:49:30','2015-08-29 14:46:02',1,30001329,16,19,6,6,10,20,8,10,7,14,8,13,16,17,8,4,12,2,8,11,13,11,9,14),(3798,'2015-03-10 21:49:30','2015-08-29 14:46:02',1,30003978,66,113,40,49,52,31,24,40,17,16,12,9,67,12,11,11,13,9,5,20,8,7,24,20),(3799,'2015-03-10 21:49:30','2015-08-29 14:46:02',1,30003248,5,1,2,1,3,10,4,9,0,1,2,6,1,0,1,2,3,0,0,0,4,9,4,5),(3800,'2015-03-10 21:49:30','2015-08-29 14:46:02',1,30000949,9,6,7,11,4,4,1,5,3,2,10,5,4,2,5,8,6,5,2,6,1,4,2,3),(3801,'2015-03-10 21:49:30','2015-08-29 14:46:02',1,30000250,29,71,57,42,32,43,41,112,44,56,81,45,79,64,56,55,61,51,83,56,105,91,82,53),(3802,'2015-03-10 21:49:30','2015-03-10 21:49:30',1,30001604,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(3803,'2015-03-10 21:49:30','2015-08-29 14:46:02',1,30001125,2,34,3,4,5,12,4,6,2,2,11,2,22,6,5,11,5,4,4,3,3,5,4,5),(3804,'2015-03-10 21:49:30','2015-08-29 14:46:02',1,30003971,20,44,28,37,31,36,11,17,25,42,20,26,34,21,21,23,14,29,15,32,25,20,44,41),(3805,'2015-03-10 21:49:30','2015-08-29 14:46:02',1,30004624,3,5,13,9,8,2,9,8,250,228,183,184,520,19,18,27,47,136,62,397,14,20,7,5),(3806,'2015-03-10 21:49:30','2015-08-29 14:46:02',1,30004076,33,38,9,13,6,10,2,5,9,18,4,3,8,8,13,4,5,7,3,15,10,11,8,9),(3807,'2015-03-10 21:49:30','2015-03-10 21:49:30',1,30000411,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(3808,'2015-03-10 21:49:30','2015-08-29 14:46:02',1,30001568,10,6,9,17,19,9,1,14,36,38,9,10,20,20,17,16,16,4,2,22,9,3,5,2),(3809,'2015-03-10 21:49:30','2015-08-29 14:46:02',1,30000638,1,9,6,10,7,4,4,10,6,11,23,22,5,103,69,10,11,8,6,9,4,8,5,8),(3810,'2015-03-10 21:49:30','2015-08-29 14:46:02',1,30000450,0,0,1,0,1,0,0,0,5,0,2,0,1,2,0,9,11,2,4,2,4,2,5,5),(3811,'2015-03-10 21:49:30','2015-08-29 14:46:02',1,30000977,1,9,10,14,13,10,4,2,4,2,3,5,1,10,10,4,12,6,6,7,7,6,5,21),(3812,'2015-03-10 21:49:30','2015-08-29 14:46:02',1,30004362,9,6,13,6,10,15,6,7,5,3,0,0,0,0,1,6,0,6,1,1,1,1,3,2),(3813,'2015-03-10 21:49:30','2015-08-29 14:46:02',1,30004471,6,0,6,10,4,13,4,3,0,0,5,4,8,6,10,22,16,5,12,9,25,12,14,20),(3814,'2015-03-10 21:49:30','2015-08-29 14:46:02',1,30003163,17,19,27,17,13,35,11,34,24,22,10,14,23,35,30,26,26,27,33,16,70,53,55,50),(3815,'2015-03-10 21:49:30','2015-08-29 14:46:02',1,30005185,6,1,0,4,3,1,1,2,11,14,4,6,7,6,4,1,3,1,4,11,32,31,11,9),(3816,'2015-03-10 21:49:30','2015-08-29 14:46:02',1,30004961,29,49,55,32,29,44,41,71,58,52,29,24,35,42,70,42,23,15,38,25,28,29,31,38),(3817,'2015-03-10 21:49:30','2015-08-29 14:46:02',1,30000198,34,42,45,39,41,56,19,26,55,68,49,54,299,70,269,136,66,45,45,90,89,55,107,102),(3818,'2015-03-10 21:49:30','2015-08-29 14:46:02',1,30002775,154,186,163,168,149,125,97,99,199,208,207,164,253,251,248,237,194,89,118,200,211,204,164,142),(3819,'2015-03-10 21:49:30','2015-08-29 14:46:02',1,30004253,11,51,2,19,11,11,6,12,6,5,8,9,25,12,9,11,2,7,8,9,1,1,0,0),(3820,'2015-03-10 21:49:30','2015-08-29 14:46:02',1,30003804,18,12,4,10,13,8,12,17,7,7,17,18,15,17,19,14,4,5,12,13,11,9,3,2),(3821,'2015-03-10 21:49:30','2015-08-29 14:46:02',1,30005198,735,751,847,723,707,640,463,540,758,855,816,737,899,1020,1009,897,722,618,747,919,986,1023,785,755),(3822,'2015-03-10 21:49:30','2015-08-29 14:46:02',1,30001390,15,29,43,39,30,20,6,7,25,29,15,19,15,35,29,27,34,13,12,19,37,27,23,14),(3823,'2015-03-10 21:49:30','2015-08-29 14:46:02',1,30003878,152,240,202,171,160,176,191,234,262,291,252,206,287,300,276,244,214,157,188,244,267,231,190,200),(3824,'2015-03-10 21:49:30','2015-08-29 14:46:02',1,30004992,26,18,18,16,16,31,12,10,27,28,70,20,38,30,27,23,18,17,7,60,18,21,20,21),(3825,'2015-03-10 21:49:30','2015-08-29 14:46:02',1,30003008,5,2,3,6,7,7,4,5,0,2,4,11,4,2,1,2,3,12,8,11,9,6,4,2),(3826,'2015-03-10 21:49:30','2015-08-29 14:46:02',1,30005232,128,173,145,153,138,145,104,108,240,238,232,204,241,269,277,250,212,159,194,230,234,202,236,184),(3827,'2015-03-10 21:49:30','2015-08-29 14:46:02',1,30005073,2,15,9,13,9,23,3,11,13,10,11,11,22,15,8,14,14,11,13,26,16,17,18,17),(3828,'2015-03-10 21:49:30','2015-08-29 14:46:02',1,30002676,63,109,109,84,82,60,73,85,108,105,77,73,108,137,147,125,103,73,67,95,124,125,108,115),(3829,'2015-03-10 21:49:30','2015-08-29 14:46:02',1,30004255,8,1,9,4,4,1,1,2,4,2,3,2,5,2,3,7,5,8,2,8,4,1,2,7),(3830,'2015-03-10 21:49:30','2015-08-29 14:46:02',1,30003909,50,54,31,51,48,55,28,24,56,55,51,33,60,51,67,51,34,21,38,56,59,64,51,41),(3831,'2015-03-10 21:49:30','2015-08-29 14:46:02',1,30005280,4,0,1,1,1,1,3,1,5,9,6,3,2,6,7,8,4,1,2,15,10,9,0,3),(3832,'2015-03-10 21:49:30','2015-08-29 14:46:02',1,30004998,26,42,23,35,16,57,26,20,41,48,50,37,38,44,51,37,39,22,18,27,30,32,32,40),(3833,'2015-03-10 21:49:30','2015-08-29 14:46:02',1,30021672,58,67,64,55,46,74,59,66,95,97,75,79,115,96,121,97,98,80,98,98,106,95,116,111),(3834,'2015-03-10 21:49:30','2015-08-29 14:46:02',1,30005231,152,160,155,159,149,170,123,116,242,238,247,212,265,272,262,251,225,182,205,259,267,264,246,207),(3835,'2015-03-10 21:49:30','2015-08-29 14:46:02',1,30001402,30,51,42,49,50,29,19,22,70,49,38,34,66,72,70,181,79,26,32,37,42,53,48,38),(3836,'2015-03-10 21:49:30','2015-08-29 14:46:02',1,30002544,289,286,316,361,274,314,184,259,368,408,366,349,433,501,478,431,368,277,328,409,485,431,370,337),(3837,'2015-03-10 21:49:30','2015-08-29 14:46:02',1,30002223,16,10,16,11,12,19,13,6,15,15,28,29,50,40,16,26,18,13,21,20,29,28,21,24),(3838,'2015-03-10 21:49:30','2015-08-29 14:46:02',1,30045320,76,98,61,44,70,27,44,65,94,83,57,53,143,52,55,73,52,52,61,46,49,53,56,41),(3839,'2015-03-10 21:49:30','2015-08-29 14:46:02',1,30001718,32,21,30,31,33,24,24,16,58,51,43,46,38,37,38,57,36,46,84,67,59,67,49,50),(3840,'2015-03-10 21:49:30','2015-08-29 14:46:02',1,30004657,2,0,0,2,2,9,0,1,5,6,9,3,6,5,0,1,11,3,0,10,3,4,1,8),(3841,'2015-03-10 21:49:30','2015-08-29 14:46:02',1,30000873,6,5,10,6,4,8,7,7,2,0,0,0,6,6,8,1,2,1,4,2,1,2,10,8),(3842,'2015-03-10 21:49:30','2015-03-10 21:49:30',1,30001483,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(3843,'2015-03-10 21:49:30','2015-08-29 14:46:02',1,30003286,35,191,26,22,18,24,18,17,68,34,37,30,113,46,59,53,31,53,75,47,39,63,52,23),(3844,'2015-03-10 21:49:30','2015-08-29 14:46:02',1,30004733,3,1,0,1,3,2,0,1,1,1,1,1,8,9,6,4,1,6,3,3,2,1,3,7),(3845,'2015-03-10 21:49:30','2015-08-29 14:46:02',1,30004825,22,27,30,34,32,38,138,17,13,17,16,7,11,13,11,8,8,13,8,8,12,4,18,14),(3846,'2015-03-10 21:49:30','2015-08-29 14:46:02',1,30003159,10,18,18,11,11,12,5,22,9,10,8,8,4,13,9,9,2,2,2,2,3,4,4,4),(3847,'2015-03-10 21:49:30','2015-08-29 14:46:02',1,30005118,6,10,10,7,8,6,7,4,9,5,9,4,7,10,8,3,4,14,9,22,9,4,1,1),(3848,'2015-03-10 21:49:30','2015-08-29 14:46:02',1,30000379,0,0,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(3849,'2015-03-10 21:49:30','2015-08-29 14:46:02',1,30003516,9,7,27,14,9,3,9,9,12,10,9,8,19,7,4,12,8,4,9,7,14,12,6,5),(3850,'2015-03-10 21:49:30','2015-08-29 14:46:02',1,30004829,15,15,28,18,20,28,52,6,7,13,5,3,6,12,8,8,5,11,8,9,8,3,17,14),(3851,'2015-03-10 21:49:30','2015-08-29 14:46:02',1,30003806,28,79,60,30,39,47,27,11,67,70,66,39,78,62,39,53,51,66,50,70,51,66,52,48),(3852,'2015-03-10 21:49:30','2015-08-29 14:46:02',1,30002211,26,50,33,32,33,14,42,26,49,51,32,41,47,53,63,35,29,20,29,53,36,48,33,30),(3853,'2015-03-10 21:49:30','2015-08-29 14:46:02',1,30004906,1,8,7,5,6,13,4,5,4,3,2,2,4,22,13,3,12,1,3,1,2,3,4,4),(3854,'2015-03-10 21:49:30','2015-08-29 14:46:02',1,30004978,169,232,211,196,163,197,140,163,207,202,201,146,327,295,257,238,221,129,228,273,249,236,226,195),(3855,'2015-03-10 21:49:30','2015-08-29 14:46:02',1,30004262,11,6,10,8,8,9,8,6,5,5,9,5,9,11,11,6,10,5,49,29,3,5,17,14),(3856,'2015-03-10 21:49:30','2015-08-29 14:46:02',1,30003488,688,553,461,490,501,429,313,387,635,663,546,531,695,715,708,687,645,443,465,567,674,672,617,559),(3857,'2015-03-10 21:49:30','2015-08-29 14:46:02',1,30001666,14,11,23,12,13,14,10,16,11,10,12,21,18,10,10,18,10,25,16,13,22,19,10,12),(3858,'2015-03-10 21:49:30','2015-08-29 14:46:02',1,30005061,11,23,32,18,21,18,7,22,71,48,25,29,39,24,29,45,32,20,31,34,23,25,27,25),(3859,'2015-03-10 21:49:30','2015-08-29 14:46:02',1,30005013,9,3,4,5,1,2,2,3,0,3,5,4,5,4,1,0,9,5,7,8,12,11,4,11),(3860,'2015-03-10 21:49:30','2015-08-29 14:46:02',1,30001693,8,13,5,3,3,9,2,11,4,6,8,5,8,24,17,18,13,10,7,13,10,11,6,6),(3861,'2015-03-10 21:49:30','2015-08-29 14:46:02',1,30000144,1907,2183,2222,2285,2125,1826,1496,1677,2347,2561,2550,2303,2551,2731,2754,2769,2373,1675,1873,2293,2702,2705,2357,2334),(3862,'2015-03-10 21:49:30','2015-08-29 14:46:02',1,30003573,24,37,40,40,45,11,21,16,47,43,51,52,26,33,40,41,17,12,17,23,18,19,24,19),(3863,'2015-03-10 21:49:30','2015-08-29 14:46:02',1,30005241,15,9,1,11,10,4,7,7,7,23,5,6,12,10,23,17,11,6,8,9,15,10,12,11),(3864,'2015-03-10 21:49:30','2015-08-29 14:46:02',1,30002632,91,163,125,128,134,136,85,99,184,179,164,151,206,220,193,210,144,136,191,195,191,179,146,149),(3865,'2015-03-10 21:49:30','2015-08-29 14:46:02',1,30004114,15,44,20,38,33,31,34,29,54,56,50,39,31,47,44,37,47,45,33,65,37,34,39,40),(3866,'2015-03-10 21:49:30','2015-08-29 14:46:02',1,30003277,43,40,43,43,38,46,53,41,50,59,62,51,65,43,33,49,39,35,126,153,119,69,30,39),(3867,'2015-03-10 21:49:30','2015-08-29 14:46:02',1,30004782,21,16,8,11,5,3,10,31,20,19,11,6,13,11,9,9,39,6,6,16,29,18,9,10),(3868,'2015-03-10 21:49:30','2015-08-29 14:46:02',1,30001324,21,26,7,12,15,12,16,9,14,24,8,18,33,22,18,12,21,10,20,37,18,16,17,21),(3869,'2015-03-10 21:49:30','2015-08-29 14:46:02',1,30003295,7,9,8,9,7,8,2,4,17,18,8,3,15,6,5,7,7,4,5,6,21,18,3,3),(3870,'2015-03-10 21:49:30','2015-08-29 14:46:02',1,30002009,16,7,8,9,5,5,5,21,1,1,9,6,4,4,1,6,9,3,7,4,7,4,0,1),(3871,'2015-03-10 21:49:30','2015-08-29 14:46:02',1,30005178,2,2,2,3,2,2,3,2,6,6,1,4,39,11,9,68,1,2,3,4,6,5,1,2),(3872,'2015-03-10 21:49:30','2015-08-29 14:46:02',1,30002145,5,5,4,4,7,27,5,10,2,0,10,14,3,16,22,4,7,0,2,6,8,5,7,9),(3873,'2015-03-10 21:49:30','2015-08-29 14:46:02',1,30001707,19,14,14,15,10,17,8,12,46,42,40,36,63,15,19,20,30,33,42,34,27,36,51,40),(3874,'2015-03-10 21:49:30','2015-08-29 14:46:02',1,30003735,28,28,26,22,33,43,22,23,80,89,50,38,70,91,89,55,31,29,46,79,51,54,33,48),(3875,'2015-03-10 21:49:30','2015-08-29 14:46:02',1,30001403,371,346,426,414,360,432,267,292,387,442,360,345,436,493,514,461,438,333,389,430,522,521,376,355),(3876,'2015-03-10 21:49:30','2015-08-29 14:46:02',1,30001391,138,172,190,187,171,167,112,140,136,180,145,152,176,213,194,251,190,85,143,136,193,178,172,181),(3877,'2015-03-10 21:49:30','2015-08-29 14:46:02',1,30001669,156,206,181,215,207,173,137,146,302,312,288,259,258,330,352,332,278,215,210,272,317,319,253,224),(3878,'2015-03-10 21:49:30','2015-08-29 14:46:02',1,30001652,58,56,57,66,71,39,55,54,95,95,62,65,66,103,91,71,67,37,46,71,74,71,88,87),(3879,'2015-03-10 21:49:30','2015-08-29 14:46:02',1,30005081,17,17,15,23,22,7,9,13,12,7,11,13,21,12,11,10,13,9,8,24,25,15,14,11),(3880,'2015-03-10 21:49:30','2015-08-29 14:46:02',1,30005277,1,2,3,1,4,1,3,1,7,5,7,6,8,6,7,4,8,1,5,9,4,5,5,6),(3881,'2015-03-10 21:49:30','2015-08-29 14:46:02',1,30000066,1,4,3,5,4,3,11,0,6,5,6,8,14,10,7,2,5,2,12,6,5,4,3,6),(3882,'2015-03-10 21:49:30','2015-08-29 14:46:02',1,30003167,7,9,11,0,2,5,10,7,8,7,3,4,3,3,2,3,8,4,4,3,6,5,8,16),(3883,'2015-03-10 21:49:30','2015-08-29 14:46:02',1,30004313,8,21,3,14,20,5,9,16,8,14,16,12,7,23,11,6,5,2,5,3,3,6,8,3),(3884,'2015-03-10 21:49:30','2015-08-29 14:46:02',1,30000654,2,22,2,4,7,5,5,1,2,2,0,1,3,2,0,1,2,0,1,2,3,5,1,3),(3885,'2015-03-10 21:49:30','2015-08-29 14:46:02',1,30000243,6,15,7,7,15,42,6,10,4,8,4,5,6,17,14,44,10,11,11,4,26,5,1,1),(3886,'2015-03-10 21:49:30','2015-08-29 14:46:02',1,30004411,0,5,6,4,8,1,2,8,4,4,4,3,3,4,6,2,3,5,3,4,7,8,9,3),(3887,'2015-03-10 21:49:30','2015-08-29 14:46:02',1,30003262,10,9,4,5,6,14,18,20,6,14,3,5,4,4,6,6,4,18,20,3,3,3,1,0),(3888,'2015-03-10 21:49:30','2015-08-29 14:46:02',1,30000866,36,131,77,63,47,56,24,61,82,101,211,118,160,71,76,31,40,16,47,39,47,52,39,37),(3889,'2015-03-10 21:49:30','2015-08-29 14:46:02',1,30002870,16,11,44,12,20,11,6,11,15,13,22,14,25,23,23,9,11,1,5,14,29,38,19,18),(3890,'2015-03-10 21:49:30','2015-08-29 14:46:02',1,30004559,3,5,13,1,5,5,7,13,374,291,193,155,794,15,15,23,32,160,53,293,17,13,16,7),(3891,'2015-03-10 21:49:30','2015-08-29 14:46:02',1,30003613,26,34,17,26,24,54,14,15,5,10,6,7,13,12,19,31,10,9,16,14,16,11,11,8),(3892,'2015-03-10 21:49:30','2015-08-29 14:46:02',1,30004431,6,0,21,12,9,14,3,21,9,13,11,5,6,9,12,23,18,5,18,14,19,8,12,13),(3893,'2015-03-10 21:49:30','2015-08-29 14:46:02',1,30001012,11,4,3,1,2,10,11,5,13,14,21,21,11,13,11,10,18,6,8,23,19,12,14,11),(3894,'2015-03-10 21:49:30','2015-08-29 14:46:02',1,30003604,10,19,32,29,21,17,18,3,12,20,11,8,19,19,24,19,8,13,23,18,25,20,19,27),(3895,'2015-03-10 21:49:30','2015-08-29 14:46:02',1,30000019,11,11,9,12,11,7,14,7,25,25,6,8,10,14,13,8,7,5,13,8,10,9,26,17),(3896,'2015-03-10 21:49:30','2015-08-29 14:46:02',1,30000153,620,746,825,662,664,654,564,603,919,938,867,825,1006,1043,980,1057,844,588,739,882,934,886,861,845),(3897,'2015-03-10 21:49:30','2015-08-29 14:46:02',1,30003271,15,124,13,9,10,16,24,22,17,21,4,3,28,31,15,21,4,29,24,16,53,44,13,14),(3898,'2015-03-10 21:49:30','2015-08-29 14:46:02',1,30000380,0,0,0,0,2,0,0,0,0,0,0,0,1,0,1,0,0,0,0,0,0,0,0,0),(3899,'2015-03-10 21:49:30','2015-08-29 14:46:02',1,30005048,38,54,65,80,73,49,34,35,85,88,51,47,67,93,88,70,58,72,54,74,57,68,75,73),(3900,'2015-03-10 21:49:30','2015-08-29 14:46:02',1,30003434,50,66,34,28,29,36,31,36,71,72,89,69,58,48,55,65,68,54,58,56,71,83,79,84),(3901,'2015-03-10 21:49:30','2015-08-29 14:46:02',1,30001147,0,5,2,1,0,1,2,0,1,0,2,3,1,0,0,0,2,0,0,1,4,2,1,0),(3902,'2015-03-10 21:49:30','2015-08-29 14:46:02',1,30002273,9,6,2,0,0,7,0,3,1,2,3,0,1,3,3,1,7,0,9,2,4,4,0,0),(3903,'2015-03-10 21:49:30','2015-08-29 14:46:02',1,30003581,23,16,20,42,38,22,21,13,58,71,33,24,20,24,22,16,7,14,20,25,18,30,22,20),(3904,'2015-03-10 21:49:30','2015-08-29 14:46:02',1,30003940,37,19,14,5,9,12,5,13,14,22,14,15,35,19,19,36,13,4,22,34,16,18,7,10),(3905,'2015-03-10 21:49:30','2015-08-29 14:46:02',1,30002714,50,44,69,58,45,65,49,41,66,79,65,60,78,86,78,82,98,39,81,73,71,56,84,70),(3906,'2015-03-10 21:49:30','2015-08-29 14:46:02',1,30002106,3,2,0,3,2,3,1,0,0,0,1,0,0,2,3,0,3,0,0,3,1,1,1,0),(3907,'2015-03-10 21:49:30','2015-08-29 14:46:02',1,30004065,16,115,21,32,19,8,8,21,18,22,10,9,13,16,18,9,24,5,21,5,14,20,15,8),(3908,'2015-03-10 21:49:30','2015-03-10 21:49:30',1,30001470,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(3909,'2015-03-10 21:49:30','2015-08-29 14:46:02',1,30000438,4,3,1,0,0,5,27,0,3,4,5,4,9,1,1,3,2,1,3,2,3,3,1,0),(3910,'2015-03-10 21:49:30','2015-03-10 21:49:30',1,30001628,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(3911,'2015-03-10 21:49:30','2015-08-29 14:46:02',1,30004711,49,59,22,31,34,95,49,102,197,145,167,151,95,125,139,90,54,27,81,100,98,139,95,119),(3912,'2015-03-10 21:49:30','2015-08-29 14:46:02',1,30045333,35,92,18,18,34,22,36,30,20,43,53,64,43,41,68,75,20,13,22,32,47,28,38,34),(3913,'2015-03-10 21:49:30','2015-08-29 14:46:02',1,30005284,14,10,7,9,9,3,9,7,18,11,4,5,10,4,6,5,11,8,8,1,35,4,4,3),(3914,'2015-03-10 21:49:30','2015-08-29 14:46:02',1,30004770,2,25,4,5,4,3,2,9,36,28,13,4,22,29,21,18,19,0,5,31,22,29,28,28),(3915,'2015-03-10 21:49:30','2015-08-29 14:46:02',1,30000027,3,5,1,3,4,5,4,2,4,1,5,6,11,5,3,7,8,4,3,8,3,2,0,2),(3916,'2015-03-10 21:49:30','2015-08-29 14:46:02',1,30004293,13,15,18,14,9,18,11,18,81,218,154,53,58,202,160,93,73,88,211,130,26,37,20,14),(3917,'2015-03-10 21:49:30','2015-08-29 14:46:02',1,30001863,12,26,9,9,11,8,4,9,45,270,193,51,27,38,40,48,34,14,13,28,51,46,91,50),(3918,'2015-03-10 21:49:30','2015-08-29 14:46:02',1,30000738,1,1,2,2,3,0,0,5,0,0,1,0,1,1,0,1,1,4,1,0,1,2,2,2),(3919,'2015-03-10 21:49:30','2015-08-29 14:46:02',1,30005162,1,2,2,1,0,0,1,0,0,0,0,0,0,1,1,0,1,0,0,0,0,0,2,4),(3920,'2015-03-10 21:49:30','2015-03-10 21:49:30',1,30000421,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(3921,'2015-03-10 21:49:30','2015-08-29 14:46:02',1,30000727,9,1,2,0,1,2,7,2,4,2,1,0,2,2,8,5,1,13,5,3,3,3,1,1),(3922,'2015-03-10 21:49:30','2015-08-29 14:46:02',1,30000990,2,9,6,5,6,11,2,3,3,3,2,1,0,2,2,0,1,1,0,2,2,4,0,0),(3923,'2015-03-10 21:49:30','2015-08-29 14:46:02',1,30002733,23,39,32,23,22,32,34,34,73,79,53,42,81,55,47,54,41,35,31,37,38,44,31,40),(3924,'2015-03-10 21:49:30','2015-08-29 14:46:02',1,30004754,22,5,17,9,13,3,11,40,36,30,27,15,25,40,43,29,21,13,17,39,36,31,20,18),(3925,'2015-03-10 21:49:30','2015-08-29 14:46:02',1,30002662,79,59,89,98,85,91,72,59,80,92,83,75,127,95,103,122,114,127,148,134,104,95,96,103),(3926,'2015-03-10 21:49:30','2015-08-29 14:46:02',1,30000161,48,42,28,48,48,67,23,53,39,47,59,57,48,64,54,57,42,44,36,59,79,73,33,35),(3927,'2015-03-10 21:49:30','2015-08-29 14:46:02',1,30004395,7,2,4,12,9,3,6,4,6,3,4,2,2,0,3,5,0,1,2,1,0,1,1,0),(3928,'2015-03-10 21:49:30','2015-08-29 14:46:02',1,30000978,7,21,17,26,23,32,21,8,31,48,9,11,11,47,31,11,11,7,12,11,35,47,22,44),(3929,'2015-03-10 21:49:30','2015-08-29 14:46:02',1,30005147,12,17,17,9,5,13,7,7,11,12,19,21,18,15,12,9,26,11,4,7,24,26,14,8),(3930,'2015-03-10 21:49:30','2015-08-29 14:46:02',1,30003283,10,14,24,22,17,6,22,11,19,8,14,17,18,16,42,28,21,41,58,10,15,8,9,13),(3931,'2015-03-10 21:49:30','2015-08-29 14:46:02',1,30001106,8,13,10,9,9,24,2,4,8,11,15,14,15,16,12,6,5,2,1,11,53,37,13,9),(3932,'2015-03-10 21:49:30','2015-08-29 14:46:02',1,30002370,17,57,40,53,38,42,26,38,97,103,27,32,336,468,470,124,63,47,34,36,59,55,25,34),(3933,'2015-03-10 21:49:30','2015-08-29 14:46:02',1,30000316,7,9,10,5,6,5,1,3,6,7,16,7,4,8,10,18,22,2,3,5,8,7,1,7),(3934,'2015-03-10 21:49:30','2015-08-29 14:46:02',1,30002290,3,4,1,3,2,6,2,2,16,20,9,8,3,1,3,4,4,0,0,1,14,10,6,3),(3935,'2015-03-10 21:49:30','2015-08-29 14:46:02',1,30004647,2,1,3,5,9,1,2,1,11,12,4,5,4,1,1,3,6,8,8,17,5,12,6,7),(3936,'2015-03-10 21:49:30','2015-08-29 14:46:02',1,30045353,212,365,207,258,291,152,231,173,427,408,156,149,285,318,322,205,178,314,261,318,255,221,209,204),(3937,'2015-03-10 21:49:30','2015-08-29 14:46:02',1,30002490,20,1,3,6,4,3,4,9,13,8,11,13,3,4,7,5,9,1,1,5,4,6,9,7),(3938,'2015-03-10 21:49:30','2015-08-29 14:46:02',1,30002615,0,6,0,2,0,3,0,1,4,2,1,3,6,24,1,1,1,1,10,2,0,1,5,6),(3939,'2015-03-10 21:49:30','2015-08-29 14:46:02',1,30001310,4,10,5,14,6,9,5,6,5,8,19,21,12,34,14,5,16,7,17,6,2,4,2,5),(3940,'2015-03-10 21:49:30','2015-03-10 21:49:30',1,30001449,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(3941,'2015-03-10 21:49:30','2015-08-29 14:46:02',1,30004787,2,0,4,15,14,2,2,17,27,20,20,25,30,30,32,46,37,20,7,15,21,22,19,15),(3942,'2015-03-10 21:49:30','2015-08-29 14:46:02',1,30000797,16,34,22,43,45,21,30,21,5,3,17,10,11,12,12,27,25,1,1,1,8,8,9,8),(3943,'2015-03-10 21:49:30','2015-08-29 14:46:02',1,30004389,6,3,3,3,1,8,3,2,0,1,0,1,2,0,2,5,5,1,1,2,2,4,1,1),(3944,'2015-03-10 21:49:30','2015-08-29 14:46:02',1,30002001,3,3,2,2,2,1,2,8,2,1,1,1,3,3,2,9,2,9,3,2,1,1,4,3),(3945,'2015-03-10 21:49:30','2015-08-29 14:46:02',1,30001326,6,2,1,1,3,4,3,1,2,4,4,3,4,5,3,1,3,1,1,4,0,0,2,3),(3946,'2015-03-10 21:49:30','2015-08-29 14:46:02',1,30000872,28,17,36,41,42,63,45,19,32,55,75,72,25,109,116,40,13,21,65,116,20,25,18,16),(3947,'2015-03-10 21:49:30','2015-08-29 14:46:02',1,30000274,14,43,19,25,33,58,24,27,6,2,6,3,1,1,1,2,3,5,5,32,1,1,4,4),(3948,'2015-03-10 21:49:30','2015-08-29 14:46:02',1,30004321,8,27,17,26,44,8,22,16,5,6,7,5,4,3,3,7,4,3,4,2,5,7,8,6),(3949,'2015-03-10 21:49:30','2015-08-29 14:46:02',1,30002844,11,6,11,16,27,9,4,8,10,19,14,12,33,14,19,10,6,3,7,25,14,18,20,10),(3950,'2015-03-10 21:49:30','2015-08-29 14:46:02',1,30000586,19,29,34,66,19,43,22,18,63,45,26,18,42,69,46,60,24,36,134,70,199,190,56,53),(3951,'2015-03-10 21:49:30','2015-08-29 14:46:02',1,30004737,14,36,9,12,14,19,27,45,76,90,63,60,72,62,49,70,59,55,61,59,78,72,44,34),(3952,'2015-03-10 21:49:30','2015-08-29 14:46:02',1,30002132,0,2,0,0,1,0,4,0,0,2,0,1,1,1,1,2,0,5,0,0,5,5,1,1),(3953,'2015-03-10 21:49:30','2015-08-29 14:46:02',1,30003222,5,5,21,13,10,7,11,22,18,20,11,16,13,14,12,21,11,23,39,15,21,16,11,3),(3954,'2015-03-10 21:49:30','2015-08-29 14:46:02',1,30004749,7,3,6,6,8,3,4,6,9,13,8,7,30,17,24,34,31,14,2,14,7,15,13,9),(3955,'2015-03-10 21:49:30','2015-08-29 14:46:02',1,30000682,23,150,36,62,65,45,30,18,29,48,28,31,35,67,59,40,15,4,46,102,38,25,42,25),(3956,'2015-03-10 21:49:30','2015-03-10 21:49:30',1,30000432,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(3957,'2015-03-10 21:49:30','2015-08-29 14:46:02',1,30000256,9,11,7,7,1,16,12,4,10,9,8,10,15,13,14,10,12,9,4,8,27,25,17,18),(3958,'2015-03-10 21:49:30','2015-08-29 14:46:02',1,30000717,5,41,11,45,45,8,14,8,25,18,13,17,143,71,25,16,12,4,28,144,11,25,17,7),(3959,'2015-03-10 21:49:30','2015-08-29 14:46:02',1,30004337,3,5,2,1,2,1,3,2,1,0,0,2,3,1,1,3,2,0,1,0,0,0,1,0),(3960,'2015-03-10 21:49:30','2015-08-29 14:46:02',1,30001838,32,49,62,25,35,20,13,23,51,59,46,57,52,64,66,48,49,14,41,33,27,38,42,37),(3961,'2015-03-10 21:49:30','2015-08-29 14:46:02',1,30000235,17,2,8,6,3,5,8,6,0,0,0,1,1,1,2,2,6,0,0,2,2,4,3,4),(3962,'2015-03-10 21:49:30','2015-08-29 14:46:02',1,30001196,18,9,19,13,8,14,29,38,8,42,22,18,19,23,26,24,9,8,17,25,12,11,12,8),(3963,'2015-03-10 21:49:30','2015-08-29 14:46:02',1,30002471,18,10,16,22,19,22,8,12,26,31,25,31,27,43,40,40,49,2,15,37,25,29,19,31),(3964,'2015-03-10 21:49:30','2015-08-29 14:46:02',1,30001248,21,28,96,18,17,30,15,54,114,237,105,77,109,161,119,136,170,72,124,100,109,94,125,98),(3965,'2015-03-10 21:49:30','2015-08-29 14:46:02',1,30004054,2,2,4,13,11,1,0,4,31,10,1,1,0,3,0,0,8,0,0,0,0,2,2,1),(3966,'2015-03-10 21:49:30','2015-08-29 14:46:02',1,30000618,4,11,11,9,4,9,4,7,13,13,104,66,13,16,7,16,20,10,16,28,20,19,11,13),(3967,'2015-03-10 21:49:30','2015-08-29 14:46:02',1,30001562,8,12,4,7,11,2,11,10,18,31,12,9,3,4,7,5,12,4,10,7,12,9,12,11),(3968,'2015-03-10 21:49:30','2015-08-29 14:46:02',1,30004229,5,0,2,4,8,1,1,1,0,0,0,0,0,4,1,1,4,0,0,2,1,2,25,14),(3969,'2015-03-10 21:49:30','2015-08-29 14:46:02',1,30004571,3,1,4,7,1,0,0,2,4,4,2,2,2,4,4,3,4,1,2,1,2,1,1,1),(3970,'2015-03-10 21:49:30','2015-08-29 14:46:02',1,30004845,9,5,4,2,3,2,51,58,7,4,5,6,2,8,12,9,1,11,12,20,6,9,8,4),(3971,'2015-03-10 21:49:30','2015-08-29 14:46:02',1,30000507,0,0,1,0,0,0,1,2,0,0,2,0,2,3,3,4,0,1,0,0,1,2,1,0),(3972,'2015-03-10 21:49:30','2015-08-29 14:46:02',1,30003112,34,25,41,21,32,39,20,43,34,29,36,74,147,200,172,42,52,38,31,57,52,45,51,55),(3973,'2015-03-10 21:49:30','2015-08-29 14:46:02',1,30003146,7,1,0,3,3,2,4,0,2,3,0,4,1,1,0,2,4,0,3,4,1,0,6,1),(3974,'2015-03-10 21:49:30','2015-08-29 14:46:02',1,30003669,11,10,17,15,10,123,3,11,17,27,5,10,13,8,12,6,5,18,13,24,8,3,12,4),(3975,'2015-03-10 21:49:30','2015-08-29 14:46:02',1,30003975,5,2,2,3,1,4,2,2,1,2,2,3,7,7,4,6,3,6,2,2,4,4,5,3),(3976,'2015-03-10 21:49:30','2015-08-29 14:46:02',1,30000946,4,9,4,2,9,4,8,10,5,3,5,6,10,6,15,13,8,10,4,5,9,70,29,27),(3977,'2015-03-10 21:49:30','2015-08-29 14:46:02',1,30000324,7,14,10,13,11,7,1,6,1,11,26,16,6,4,2,1,14,4,16,14,5,2,1,3),(3978,'2015-03-10 21:49:30','2015-08-29 14:46:02',1,30000715,11,50,37,68,67,23,20,11,28,17,18,26,147,90,33,27,25,10,53,156,14,33,16,11),(3979,'2015-03-10 21:49:30','2015-08-29 14:46:02',1,30004846,5,7,5,1,4,1,66,70,12,10,8,8,12,11,14,13,1,12,14,19,12,12,12,6),(3980,'2015-03-10 21:49:30','2015-08-29 14:46:02',1,30001323,18,6,4,5,2,4,0,5,5,0,3,8,0,5,2,6,3,5,11,6,12,8,7,7),(3981,'2015-03-10 21:49:30','2015-08-29 14:46:02',1,30000785,25,66,55,66,63,49,14,53,22,23,18,21,24,19,26,13,13,4,4,7,17,15,25,18),(3982,'2015-03-10 21:49:30','2015-08-29 14:46:02',1,30001763,19,21,26,31,26,7,9,28,6,9,5,7,1,9,10,13,4,0,3,6,8,17,9,12),(3983,'2015-03-10 21:49:30','2015-03-10 21:49:30',1,30000413,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(3984,'2015-03-10 21:49:30','2015-08-29 14:46:02',1,30004066,5,0,1,0,0,1,0,1,1,2,1,1,4,1,3,1,5,0,0,0,1,3,8,5),(3985,'2015-03-10 21:49:30','2015-08-29 14:46:02',1,30003183,3,4,5,0,5,3,4,4,6,2,4,3,1,8,6,4,7,3,0,3,4,4,10,7),(3986,'2015-03-10 21:49:30','2015-08-29 14:46:02',1,30004408,9,13,21,10,11,17,20,40,20,14,18,10,63,57,60,46,40,17,30,117,68,32,44,39),(3987,'2015-03-10 21:49:30','2015-08-29 14:46:02',1,30003714,23,24,30,21,28,37,23,18,73,76,51,45,102,64,71,48,32,35,42,61,54,53,50,69),(3988,'2015-03-10 21:49:30','2015-08-29 14:46:02',1,30001165,12,20,28,12,5,6,7,8,68,69,32,22,26,16,21,18,26,18,39,35,26,23,20,19),(3989,'2015-03-10 21:49:30','2015-08-29 14:46:02',1,30002363,19,51,43,75,82,39,25,40,45,43,22,23,86,66,67,45,50,37,24,28,53,48,16,20),(3990,'2015-03-10 21:49:30','2015-08-29 14:46:02',1,30004744,20,9,6,5,11,12,6,13,11,11,12,11,15,17,14,32,13,14,8,21,28,28,23,10),(3991,'2015-03-10 21:49:30','2015-08-29 14:46:02',1,30004855,4,1,0,2,7,3,5,23,5,4,4,3,4,5,7,6,4,3,2,1,4,6,6,10),(3992,'2015-03-10 21:49:30','2015-08-29 14:46:02',1,30001080,2,8,2,3,3,8,9,8,2,2,2,2,7,5,4,9,12,3,0,0,4,4,3,3),(3993,'2015-03-10 21:49:30','2015-08-29 14:46:02',1,30001935,3,10,5,11,13,9,6,7,12,13,5,9,12,11,15,13,7,2,4,4,4,3,2,6),(3994,'2015-03-10 21:49:30','2015-08-29 14:46:02',1,30004343,36,37,58,50,42,19,45,39,25,33,22,20,13,19,30,24,11,6,16,15,18,12,19,18),(3995,'2015-03-10 21:49:30','2015-08-29 14:46:02',1,30002138,14,48,21,23,22,32,24,9,43,47,21,15,21,47,55,21,16,5,39,10,37,42,23,21),(3996,'2015-03-10 21:49:30','2015-08-29 14:46:02',1,30003221,19,14,36,36,16,8,18,13,35,32,22,24,39,25,23,42,11,12,25,15,33,23,20,17),(3997,'2015-03-10 21:49:30','2015-08-29 14:46:02',1,30001246,2,12,25,16,12,25,13,19,145,201,87,51,98,146,100,130,154,73,122,129,72,98,103,85),(3998,'2015-03-10 21:49:30','2015-08-29 14:46:02',1,30001033,21,9,8,10,14,16,10,6,24,15,19,14,8,16,15,18,41,6,14,12,10,13,19,33),(3999,'2015-03-10 21:49:30','2015-08-29 14:46:02',1,30000899,22,37,33,18,15,25,5,32,9,10,11,11,22,20,29,23,22,6,14,18,17,15,15,18),(4000,'2015-03-10 21:49:30','2015-08-29 14:46:02',1,30003164,15,14,19,13,11,29,7,27,28,25,12,13,26,34,26,24,20,30,35,24,69,68,65,56),(4001,'2015-03-10 21:49:30','2015-08-29 14:46:02',1,30003181,0,3,1,1,0,2,3,3,4,5,6,2,4,3,1,1,1,2,2,0,2,1,5,4),(4002,'2015-03-10 21:49:30','2015-08-29 14:46:02',1,30001766,0,2,1,0,1,0,0,2,0,0,1,0,0,2,0,1,0,0,1,1,0,0,1,2),(4003,'2015-03-10 21:49:30','2015-08-29 14:46:02',1,30001564,2,3,4,1,2,0,2,0,2,4,2,4,3,3,2,13,4,1,3,5,1,1,5,5),(4004,'2015-03-10 21:49:30','2015-08-29 14:46:02',1,30001772,11,5,7,18,15,4,2,13,10,6,9,10,5,6,5,22,13,3,3,6,3,2,5,5),(4005,'2015-03-10 21:49:30','2015-08-29 14:46:02',1,30001749,8,8,48,9,11,8,5,5,4,3,1,0,7,13,15,2,5,1,2,4,6,6,7,3),(4006,'2015-03-10 21:49:30','2015-08-29 14:46:02',1,30001305,24,33,17,19,21,14,7,16,27,36,19,19,22,65,46,8,10,19,30,45,37,34,19,19),(4007,'2015-03-10 21:49:30','2015-08-29 14:46:02',1,30002364,3,5,5,10,6,10,9,7,2,3,8,11,3,34,25,9,1,10,24,1,24,19,1,0),(4008,'2015-03-10 21:49:30','2015-08-29 14:46:02',1,30005144,8,0,0,1,2,0,2,6,3,1,0,0,1,0,1,1,2,0,0,1,0,0,1,1),(4009,'2015-03-10 21:49:30','2015-08-29 14:46:02',1,30002104,13,61,20,21,16,28,20,5,42,39,19,13,21,50,53,21,17,5,38,16,36,37,19,18),(4010,'2015-03-10 21:49:30','2015-08-29 14:46:02',1,30004837,14,3,4,2,2,3,38,24,6,6,8,3,7,3,6,14,1,8,15,10,14,5,4,2),(4011,'2015-03-10 21:49:30','2015-08-29 14:46:02',1,30000505,0,1,1,0,0,0,1,1,0,0,2,1,3,0,0,3,1,1,0,1,0,0,2,0),(4012,'2015-03-10 21:49:30','2015-03-10 21:49:30',1,30001467,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(4013,'2015-03-10 21:49:30','2015-08-29 14:46:02',1,30004448,2,0,1,2,0,3,1,0,0,1,0,0,0,0,0,0,0,0,2,0,1,2,0,0),(4014,'2015-03-10 21:49:30','2015-08-29 14:46:02',1,30002307,1,4,0,2,3,2,0,1,1,1,0,0,0,0,0,0,0,2,2,2,0,0,0,0),(4015,'2015-03-10 21:49:30','2015-08-29 14:46:02',1,30005172,11,7,12,7,5,5,4,1,9,6,10,12,4,5,3,2,13,0,0,1,2,3,7,9),(4016,'2015-03-10 21:49:30','2015-08-29 14:46:02',1,30002431,0,2,1,1,0,4,1,4,5,8,4,1,1,1,1,6,3,0,1,5,4,8,1,0),(4017,'2015-03-10 21:49:30','2015-08-29 14:46:02',1,30000475,1,2,3,0,1,1,3,3,5,5,8,6,8,20,9,10,10,22,228,6,15,15,7,2),(4018,'2015-03-10 21:49:30','2015-08-29 14:46:02',1,30004857,10,7,7,11,8,3,17,4,8,2,5,6,1,9,9,4,5,4,15,9,2,6,13,17),(4019,'2015-03-10 21:49:30','2015-08-29 14:46:02',1,30000941,4,9,9,3,3,4,2,2,4,4,2,5,6,6,4,5,8,4,7,3,9,7,2,2),(4020,'2015-03-10 21:49:30','2015-08-29 14:46:02',1,30001903,8,13,28,24,15,6,10,12,18,19,17,17,39,33,41,29,13,6,19,13,17,12,38,30),(4021,'2015-03-10 21:49:30','2015-08-29 14:46:02',1,30002186,11,10,9,9,8,17,3,4,22,20,20,12,20,24,29,14,1,15,7,30,26,36,13,8),(4022,'2015-03-10 21:49:30','2015-08-29 14:46:02',1,30002288,9,16,15,9,15,20,14,15,10,8,7,10,12,11,8,11,7,28,5,34,9,10,16,48),(4023,'2015-03-10 21:49:30','2015-03-10 21:49:30',1,30001473,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(4024,'2015-03-10 21:49:30','2015-08-29 14:46:02',1,30003739,9,7,4,6,9,13,16,11,19,16,14,10,4,9,8,13,6,7,5,10,12,14,8,6),(4025,'2015-03-10 21:49:30','2015-08-29 14:46:02',1,30001783,11,6,11,14,18,2,27,4,20,43,27,22,93,74,51,62,38,16,11,34,17,28,36,35),(4026,'2015-03-10 21:49:30','2015-08-29 14:46:02',1,30002479,18,21,24,19,19,18,24,19,13,11,6,9,18,78,75,29,15,4,11,17,13,10,16,18),(4027,'2015-03-10 21:49:30','2015-08-29 14:46:02',1,30002893,11,75,22,21,22,13,15,22,219,193,261,139,430,331,366,335,134,208,129,220,390,252,86,86),(4028,'2015-03-10 21:49:30','2015-08-29 14:46:02',1,30000722,20,12,8,15,11,4,19,12,31,22,70,73,35,26,36,30,19,16,14,19,25,18,32,35),(4029,'2015-03-10 21:49:30','2015-08-29 14:46:02',1,30000938,4,4,8,4,6,5,1,2,1,6,7,10,6,8,3,7,3,1,6,2,9,7,2,1),(4030,'2015-03-10 21:49:30','2015-08-29 14:46:02',1,30001565,12,17,17,22,54,6,10,11,105,186,83,40,30,23,38,81,18,20,13,27,28,29,22,20),(4031,'2015-03-10 21:49:30','2015-08-29 14:46:02',1,30003719,19,14,13,15,31,13,12,8,19,27,42,47,28,40,46,34,53,21,26,26,41,36,40,41),(4032,'2015-03-10 21:49:30','2015-08-29 14:46:02',1,30004815,9,14,19,16,13,13,51,4,3,5,11,10,12,15,12,6,11,10,10,14,12,13,15,12),(4033,'2015-03-10 21:49:30','2015-08-29 14:46:02',1,30000481,0,3,0,1,1,1,0,0,0,0,6,5,3,5,2,0,0,0,0,0,3,1,3,1),(4034,'2015-03-10 21:49:30','2015-08-29 14:46:02',1,30001596,1,0,1,1,1,4,0,5,30,30,22,21,45,31,25,35,28,46,39,52,57,58,38,35),(4035,'2015-03-10 21:49:30','2015-08-29 14:46:02',1,30003174,5,2,7,5,2,10,3,3,15,5,12,15,13,11,5,4,5,15,13,6,17,11,14,9),(4036,'2015-03-10 21:49:30','2015-08-29 14:46:02',1,30001137,0,12,1,0,1,6,2,3,8,12,14,10,1,1,1,0,1,1,1,7,0,0,4,4),(4037,'2015-03-10 21:49:30','2015-08-29 14:46:02',1,30004909,13,37,31,48,37,34,23,33,22,29,39,47,35,50,45,30,20,19,157,17,24,25,36,38),(4038,'2015-03-10 21:49:30','2015-08-29 14:46:02',1,30001163,10,18,24,10,5,6,7,8,59,61,35,22,27,19,22,23,39,23,42,36,29,26,19,20),(4039,'2015-03-10 21:49:30','2015-08-29 14:46:02',1,30004198,4,15,9,14,13,17,8,6,14,12,13,14,11,2,9,4,4,0,5,3,6,6,15,10),(4040,'2015-03-10 21:49:30','2015-08-29 14:46:02',1,30000793,28,14,10,10,6,25,12,28,10,11,15,20,16,31,64,35,16,4,21,21,40,31,11,10),(4041,'2015-03-10 21:49:30','2015-03-10 21:49:30',1,30001617,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(4042,'2015-03-10 21:49:30','2015-08-29 14:46:02',1,30003037,39,88,71,67,67,62,46,55,64,91,76,63,97,148,152,110,91,123,114,118,102,98,97,71),(4043,'2015-03-10 21:49:30','2015-08-29 14:46:02',1,30004610,0,1,6,1,1,1,1,0,162,28,26,15,11,19,17,29,20,15,17,29,11,10,8,5),(4044,'2015-03-10 21:49:30','2015-08-29 14:46:02',1,30003292,7,9,4,3,6,7,0,8,2,5,7,7,6,3,2,1,2,4,10,1,4,3,9,6),(4045,'2015-03-10 21:49:30','2015-08-29 14:46:02',1,30002829,11,0,4,9,3,3,1,2,0,0,0,2,0,1,1,3,4,1,2,2,0,5,5,0),(4046,'2015-03-10 21:49:30','2015-08-29 14:46:02',1,30004714,6,29,3,7,10,13,10,22,155,56,175,44,59,72,58,44,55,31,34,58,14,18,20,25),(4047,'2015-03-10 21:49:30','2015-08-29 14:46:02',1,30000526,4,0,1,0,0,0,0,0,0,0,0,0,0,2,2,0,1,1,1,1,2,2,1,2),(4048,'2015-03-10 21:49:30','2015-08-29 14:46:02',1,30004354,28,34,11,21,21,13,33,38,19,27,25,30,21,21,27,12,12,12,34,17,21,16,26,14),(4049,'2015-03-10 21:49:30','2015-08-29 14:46:02',1,30004002,6,8,7,3,2,9,6,5,2,10,12,11,5,2,1,3,0,3,5,2,0,0,3,6),(4050,'2015-03-10 21:49:30','2015-08-29 14:46:02',1,30004041,7,20,28,78,22,17,3,16,31,52,42,24,29,38,20,14,15,13,34,22,16,20,12,11),(4051,'2015-03-10 21:49:30','2015-08-29 14:46:02',1,30004027,8,11,7,7,6,4,4,9,22,16,13,39,40,130,20,16,39,4,5,39,15,16,14,19),(4052,'2015-03-10 21:49:30','2015-08-29 14:46:02',1,30003244,2,1,3,0,4,9,7,1,0,0,7,10,3,6,6,3,3,0,0,1,11,13,5,2),(4053,'2015-03-10 21:49:30','2015-08-29 14:46:02',1,30004752,6,2,6,8,8,3,8,20,24,18,17,18,19,25,23,34,14,4,8,13,40,47,13,14),(4054,'2015-03-10 21:49:30','2015-08-29 14:46:02',1,30000767,2,12,13,10,16,0,3,20,34,20,12,17,3,6,7,11,7,1,11,6,3,6,6,10),(4055,'2015-03-10 21:49:30','2015-08-29 14:46:02',1,30003266,8,31,9,6,7,12,20,8,6,8,5,6,6,8,10,6,9,14,6,5,12,7,4,0),(4056,'2015-03-10 21:49:30','2015-08-29 14:46:02',1,30004402,10,8,9,10,6,29,1,11,37,37,16,18,38,27,24,31,34,46,62,50,26,24,28,23),(4057,'2015-03-10 21:49:30','2015-08-29 14:46:02',1,30003236,7,2,5,4,3,1,1,2,10,4,2,2,1,2,1,4,2,0,1,6,3,4,1,3),(4058,'2015-03-10 21:49:30','2015-08-29 14:46:02',1,30001107,11,25,26,10,10,25,3,8,20,15,25,27,29,34,20,17,22,8,5,22,88,89,38,29),(4059,'2015-03-10 21:49:30','2015-08-29 14:46:02',1,30002330,2,0,2,1,0,1,2,1,0,0,0,0,1,1,0,1,0,0,0,0,0,0,1,0),(4060,'2015-03-10 21:49:30','2015-08-29 14:46:02',1,30002837,5,2,5,3,4,2,3,5,1,1,6,10,3,4,10,2,4,1,2,3,1,1,3,8),(4061,'2015-03-10 21:49:30','2015-08-29 14:46:02',1,30002002,14,13,9,13,14,13,14,26,6,7,9,8,7,8,3,10,1,14,11,6,3,4,7,7),(4062,'2015-03-10 21:49:30','2015-08-29 14:46:02',1,30000658,36,97,22,62,31,41,18,21,76,69,58,34,65,56,65,26,17,27,33,30,28,29,24,22),(4063,'2015-03-10 21:49:30','2015-08-29 14:46:02',1,30002324,3,7,8,2,4,2,7,3,0,0,0,0,4,3,1,3,2,3,0,36,2,4,4,1),(4064,'2015-03-10 21:49:30','2015-08-29 14:46:02',1,30005099,7,1,2,1,1,4,4,2,6,1,5,3,9,3,5,5,7,2,15,1,24,9,2,8),(4065,'2015-03-10 21:49:30','2015-08-29 14:46:02',1,30003151,18,19,29,38,21,41,26,45,35,34,18,42,55,51,40,37,32,34,35,32,96,63,51,35),(4066,'2015-03-10 21:49:30','2015-08-29 14:46:02',1,30005112,6,8,29,14,16,1,8,11,4,4,0,0,1,4,8,0,0,4,6,16,1,1,0,1),(4067,'2015-03-10 21:49:30','2015-08-29 14:46:02',1,30004648,0,2,1,0,5,2,1,1,7,7,2,5,1,9,8,3,6,4,8,1,1,6,8,16),(4068,'2015-03-10 21:49:30','2015-08-29 14:46:02',1,30000950,10,7,7,10,4,4,1,4,8,5,11,6,5,3,6,9,6,5,2,4,1,4,2,3),(4069,'2015-03-10 21:49:30','2015-08-29 14:46:02',1,30003127,10,1,0,2,3,7,2,0,2,3,4,3,3,5,6,3,3,0,1,2,0,0,2,3),(4070,'2015-03-10 21:49:30','2015-03-10 21:49:30',1,30001491,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(4071,'2015-03-10 21:49:30','2015-08-29 14:46:02',1,30001189,3,4,2,5,5,5,6,6,7,46,20,16,9,3,6,9,5,4,6,9,11,3,4,4),(4072,'2015-03-10 21:49:30','2015-08-29 14:46:02',1,30001265,6,69,9,10,5,4,5,4,129,37,104,27,135,39,247,51,16,13,17,81,23,126,27,40),(4073,'2015-03-10 21:49:30','2015-08-29 14:46:02',1,30002013,11,5,12,5,3,3,4,4,4,2,4,4,3,1,2,6,5,2,7,2,2,3,8,6),(4074,'2015-03-10 21:49:30','2015-08-29 14:46:02',1,30004522,7,4,11,10,8,2,4,3,5,5,6,6,10,5,2,8,5,5,2,2,2,12,1,1),(4075,'2015-03-10 21:49:30','2015-08-29 14:46:02',1,30002182,28,42,42,46,28,63,31,28,42,25,15,16,46,41,51,76,22,29,115,163,57,78,47,46),(4076,'2015-03-10 21:49:30','2015-08-29 14:46:02',1,30000291,12,2,7,4,2,10,3,11,16,13,8,14,3,21,9,4,12,1,6,17,10,6,5,14),(4077,'2015-03-10 21:49:30','2015-08-29 14:46:02',1,30001577,1,2,1,1,2,1,0,0,0,0,0,0,2,0,0,0,0,10,0,0,1,1,0,2),(4078,'2015-03-10 21:49:30','2015-08-29 14:46:02',1,30001102,5,1,4,3,0,0,0,1,1,2,0,2,1,1,2,1,2,1,4,2,1,1,1,2),(4079,'2015-03-10 21:49:30','2015-08-29 14:46:02',1,30000320,11,17,21,19,17,11,10,21,15,22,26,17,21,10,5,5,60,9,23,9,11,12,6,9),(4080,'2015-03-10 21:49:30','2015-08-29 14:46:02',1,30004853,1,0,0,0,0,2,1,0,4,1,0,0,1,0,1,0,1,7,0,0,2,1,2,4),(4081,'2015-03-10 21:49:30','2015-08-29 14:46:02',1,30003631,66,87,68,48,41,92,49,44,28,41,20,9,28,15,16,38,31,12,29,20,26,38,32,28),(4082,'2015-03-10 21:49:30','2015-08-29 14:46:02',1,30003218,20,14,26,20,19,11,19,19,27,37,20,23,17,19,22,26,13,13,32,24,24,24,35,21),(4083,'2015-03-10 21:49:30','2015-08-29 14:46:02',1,30002135,4,0,1,1,3,3,1,0,7,12,1,0,22,2,2,2,2,0,0,2,0,0,0,1),(4084,'2015-03-10 21:49:30','2015-08-29 14:46:02',1,30000563,5,2,9,14,2,4,9,3,20,13,12,12,18,11,15,9,8,7,10,4,4,6,3,3),(4085,'2015-03-10 21:49:30','2015-08-29 14:46:02',1,30004871,19,40,29,30,20,50,37,20,42,16,15,15,21,19,21,30,23,14,124,162,30,57,43,38),(4086,'2015-03-10 21:49:30','2015-03-10 21:49:30',1,30001450,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(4087,'2015-03-10 21:49:30','2015-08-29 14:46:02',1,30002874,7,5,7,10,15,12,5,7,7,18,12,8,32,14,17,10,6,4,6,23,14,21,20,8),(4088,'2015-03-10 21:49:30','2015-08-29 14:46:02',1,30004891,12,12,26,5,8,24,6,3,13,7,0,1,16,8,18,8,1,8,7,18,7,6,0,0),(4089,'2015-03-10 21:49:30','2015-08-29 14:46:02',1,30003769,92,95,83,98,66,45,32,47,78,86,106,92,134,118,116,80,66,59,65,134,59,81,101,73),(4090,'2015-03-10 21:49:30','2015-08-29 14:46:02',1,30001806,17,12,9,21,25,12,45,9,19,50,10,8,13,14,20,12,9,2,3,8,4,7,9,7),(4091,'2015-03-10 21:49:30','2015-08-29 14:46:02',1,30004566,1,3,7,3,3,0,5,2,2,3,5,3,6,4,6,1,1,4,0,2,2,1,2,0),(4092,'2015-03-10 21:49:30','2015-08-29 14:46:02',1,30004473,1,6,2,6,5,1,2,0,0,1,3,3,4,1,0,0,6,0,1,4,2,1,3,3),(4093,'2015-03-10 21:49:30','2015-08-29 14:46:02',1,30000589,7,37,9,7,5,5,4,11,16,11,3,0,115,59,39,8,3,10,15,8,10,27,5,2),(4094,'2015-03-10 21:49:30','2015-08-29 14:46:02',1,30004339,5,5,13,9,5,4,5,8,5,2,3,4,22,47,8,6,6,0,11,11,0,4,7,6),(4095,'2015-03-10 21:49:30','2015-08-29 14:46:02',1,30004727,0,0,0,0,0,0,1,1,0,0,0,0,1,3,2,2,2,2,0,2,1,3,1,1),(4096,'2015-03-10 21:49:30','2015-08-29 14:46:02',1,30002010,67,78,44,46,50,80,59,44,32,41,61,61,17,56,74,39,90,99,69,132,65,61,38,36),(4097,'2015-03-10 21:49:30','2015-03-10 21:49:30',1,30001619,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(4098,'2015-03-10 21:49:30','2015-08-29 14:46:02',1,30001859,8,7,4,8,5,8,4,4,52,259,187,44,28,39,36,48,34,13,12,26,52,46,94,53),(4099,'2015-03-10 21:49:30','2015-08-29 14:46:02',1,30002894,2,1,4,1,4,3,2,0,6,5,5,5,10,6,6,5,5,1,0,1,5,5,8,8),(4100,'2015-03-10 21:49:30','2015-08-29 14:46:02',1,30003209,14,3,5,8,7,9,5,16,3,6,0,3,6,2,6,2,6,2,3,0,7,5,9,5),(4101,'2015-03-10 21:49:30','2015-08-29 14:46:02',1,30000768,3,3,4,5,1,0,0,4,1,2,0,0,0,1,1,2,0,0,1,1,6,12,12,9),(4102,'2015-03-10 21:49:30','2015-08-29 14:46:02',1,30004485,3,36,0,11,12,27,9,7,9,9,7,13,17,17,29,26,21,4,10,24,21,16,31,21),(4103,'2015-03-10 21:49:30','2015-08-29 14:46:02',1,30001018,59,102,45,40,49,91,26,58,89,148,72,48,82,92,101,51,35,25,35,44,83,49,93,97),(4104,'2015-03-10 21:49:30','2015-08-29 14:46:02',1,30002958,50,45,50,44,41,120,23,14,34,34,33,27,62,36,47,38,24,52,33,45,33,29,32,35),(4105,'2015-03-10 21:49:30','2015-08-29 14:46:02',1,30000033,26,57,72,52,29,36,31,25,54,52,54,49,68,58,54,56,39,54,78,56,40,32,26,28),(4106,'2015-03-10 21:49:30','2015-08-29 14:46:02',1,30002726,13,15,31,23,21,18,14,16,47,28,10,10,21,16,14,10,14,23,18,14,12,9,9,16),(4107,'2015-03-10 21:49:30','2015-08-29 14:46:02',1,30003941,34,21,7,3,8,16,4,15,15,22,12,12,32,27,22,27,13,5,22,36,18,23,9,10),(4108,'2015-03-10 21:49:30','2015-08-29 14:46:02',1,30002052,17,12,3,2,4,2,4,8,24,24,26,22,4,7,8,7,7,7,4,15,5,6,20,13),(4109,'2015-03-10 21:49:30','2015-08-29 14:46:02',1,30003914,10,4,0,4,3,5,0,4,9,12,9,6,7,4,3,4,4,0,1,3,7,7,7,7),(4110,'2015-03-10 21:49:30','2015-08-29 14:46:02',1,30002982,173,68,69,62,75,19,32,49,106,91,47,62,193,81,86,75,42,58,68,76,90,94,60,54),(4111,'2015-03-10 21:49:30','2015-08-29 14:46:02',1,30002839,7,7,9,15,23,7,2,9,4,3,6,8,30,9,11,3,5,2,1,14,6,6,11,6),(4112,'2015-03-10 21:49:30','2015-08-29 14:46:02',1,30045315,95,27,18,27,32,24,21,21,72,63,41,38,44,61,42,37,47,24,45,44,52,43,39,34),(4113,'2015-03-10 21:49:30','2015-08-29 14:46:02',1,30002772,46,18,16,10,13,31,13,16,27,31,20,19,44,46,36,43,30,29,30,39,44,31,45,38),(4114,'2015-03-10 21:49:30','2015-08-29 14:46:02',1,30045349,116,279,113,129,107,62,95,108,138,180,82,78,136,176,147,133,77,122,93,147,158,147,174,128),(4115,'2015-03-10 21:49:30','2015-08-29 14:46:02',1,30002239,6,1,11,9,7,5,11,2,18,31,5,3,7,9,6,12,9,7,2,8,5,7,7,5),(4116,'2015-03-10 21:49:30','2015-08-29 14:46:02',1,30002718,88,89,75,75,76,75,93,86,62,52,71,63,87,96,100,80,85,64,184,77,90,69,82,93),(4117,'2015-03-10 21:49:30','2015-08-29 14:46:02',1,30001727,7,38,17,15,10,7,15,11,22,36,15,6,34,17,14,20,24,39,26,24,30,17,21,20),(4118,'2015-03-10 21:49:30','2015-08-29 14:46:02',1,30005319,44,66,39,72,70,50,46,34,67,83,41,57,65,65,67,75,38,62,61,70,58,67,58,54),(4119,'2015-03-10 21:49:30','2015-08-29 14:46:02',1,30005085,16,11,8,10,6,9,14,1,5,8,9,8,8,9,12,9,10,2,13,27,5,5,10,13),(4120,'2015-03-10 21:49:30','2015-08-29 14:46:02',1,30005080,11,27,4,10,10,17,9,12,9,9,5,7,14,8,26,26,28,3,10,7,9,8,10,12),(4121,'2015-03-10 21:49:30','2015-08-29 14:46:02',1,30003530,14,33,8,9,5,19,7,11,13,26,22,28,13,20,21,14,24,10,24,26,35,32,15,22),(4122,'2015-03-10 21:49:30','2015-08-29 14:46:02',1,30003495,115,106,94,97,92,75,81,74,220,214,182,155,156,184,181,164,142,126,133,116,174,185,140,133),(4123,'2015-03-10 21:49:30','2015-08-29 14:46:02',1,30002212,7,13,18,11,12,10,20,3,10,11,10,14,12,22,25,10,17,7,14,18,10,17,6,7),(4124,'2015-03-10 21:49:30','2015-08-29 14:46:02',1,30004269,3,1,11,17,13,6,0,3,11,14,42,32,16,8,13,15,3,4,7,9,16,7,15,18),(4125,'2015-03-10 21:49:30','2015-08-29 14:46:02',1,30000025,5,19,4,8,6,6,4,5,6,7,6,5,8,11,12,13,8,5,5,7,9,9,2,3),(4126,'2015-03-10 21:49:30','2015-08-29 14:46:02',1,30002227,111,131,148,188,211,119,77,93,116,122,149,156,138,138,143,163,145,92,118,153,157,155,128,108),(4127,'2015-03-10 21:49:30','2015-08-29 14:46:02',1,30003602,18,16,31,28,23,12,20,6,15,24,20,6,26,18,22,18,13,21,28,29,26,17,16,15),(4128,'2015-03-10 21:49:30','2015-08-29 14:46:02',1,30001417,16,18,19,24,15,19,12,7,14,12,25,27,21,15,16,18,56,17,18,23,23,22,26,41),(4129,'2015-03-10 21:49:30','2015-08-29 14:46:02',1,30001373,24,17,39,57,53,26,14,20,26,38,33,33,41,50,43,32,35,12,18,22,48,45,40,36),(4130,'2015-03-10 21:49:30','2015-08-29 14:46:02',1,30002697,3,6,8,8,5,9,7,6,15,15,9,8,26,11,10,4,6,10,6,3,14,18,4,9),(4131,'2015-03-10 21:49:30','2015-08-29 14:46:02',1,30004116,15,42,24,25,15,14,25,24,18,22,16,10,18,17,18,26,9,5,7,9,9,10,7,5),(4132,'2015-03-10 21:49:30','2015-08-29 14:46:02',1,30002271,15,31,26,49,43,24,13,30,29,30,52,40,39,22,22,23,30,13,17,14,41,26,24,24),(4133,'2015-03-10 21:49:30','2015-03-10 21:49:30',1,30000406,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(4134,'2015-03-10 21:49:30','2015-08-29 14:46:02',1,30003104,17,16,9,8,21,36,9,5,5,7,7,8,4,4,3,10,14,5,15,18,5,6,7,11),(4135,'2015-03-10 21:49:30','2015-08-29 14:46:02',1,30004742,2,33,13,7,7,21,15,21,6,10,20,26,63,32,35,16,8,3,16,11,7,3,5,10),(4136,'2015-03-10 21:49:30','2015-08-29 14:46:02',1,30000805,3,3,0,1,2,0,0,1,1,0,0,0,2,0,1,0,5,0,1,1,2,2,3,1),(4137,'2015-03-10 21:49:30','2015-08-29 14:46:02',1,30002023,20,18,20,14,9,25,15,6,9,6,7,5,5,7,4,8,10,11,1,10,6,6,8,8),(4138,'2015-03-10 21:49:30','2015-08-29 14:46:02',1,30004577,14,8,7,11,10,8,10,13,153,44,173,125,134,31,36,36,32,35,31,39,56,45,34,37),(4139,'2015-03-10 21:49:30','2015-08-29 14:46:02',1,30002140,19,22,6,8,15,12,7,14,3,5,3,3,0,1,8,0,3,2,3,1,2,7,7,7),(4140,'2015-03-10 21:49:30','2015-08-29 14:46:02',1,30005328,20,40,41,49,46,32,22,19,37,33,33,32,69,42,52,54,44,70,35,29,36,27,43,47),(4141,'2015-03-10 21:49:30','2015-08-29 14:46:02',1,30000160,94,61,66,66,89,50,36,65,96,108,106,84,75,113,102,85,82,69,77,109,89,82,108,109),(4142,'2015-03-10 21:49:30','2015-08-29 14:46:02',1,30045354,124,439,87,140,163,124,132,143,184,265,219,183,227,255,191,232,162,178,122,215,201,195,200,159),(4143,'2015-03-10 21:49:30','2015-08-29 14:46:02',1,30001700,63,82,89,78,86,57,59,77,75,71,75,68,70,97,106,99,74,38,71,99,88,89,81,72),(4144,'2015-03-10 21:49:30','2015-08-29 14:46:02',1,30003829,125,373,100,83,105,96,113,61,197,184,102,112,303,214,197,124,122,135,257,374,181,165,91,89),(4145,'2015-03-10 21:49:30','2015-08-29 14:46:02',1,30002510,451,592,607,635,545,489,392,437,735,747,696,648,855,789,794,839,626,534,655,776,911,785,687,675),(4146,'2015-03-10 21:49:30','2015-08-29 14:46:02',1,30004970,823,1121,1135,1085,992,886,669,813,1191,1262,1177,1037,1482,1496,1510,1376,1079,842,989,1088,1370,1310,1095,1027),(4147,'2015-03-10 21:49:30','2015-08-29 14:46:02',1,30003564,4,2,11,2,3,5,1,8,0,4,3,5,3,6,6,2,5,3,3,3,4,5,11,4),(4148,'2015-03-10 21:49:30','2015-08-29 14:46:02',1,30000780,17,39,26,26,20,13,18,28,232,226,9,13,16,2,7,8,3,0,4,7,15,16,2,1),(4149,'2015-03-10 21:49:30','2015-08-29 14:46:02',1,30002056,68,105,60,74,80,69,32,76,91,117,97,102,103,217,212,111,138,102,90,104,160,153,90,139),(4150,'2015-03-10 21:49:30','2015-08-29 14:46:02',1,30003851,66,79,66,86,98,28,49,72,69,77,58,74,187,63,58,47,47,46,39,55,82,81,67,74),(4151,'2015-03-10 21:49:30','2015-08-29 14:46:02',1,30003391,15,19,21,10,19,23,17,17,28,39,29,28,20,24,23,16,27,21,20,25,31,27,25,18),(4152,'2015-03-10 21:49:30','2015-08-29 14:46:02',1,30003880,123,205,181,164,157,142,170,219,231,257,235,197,240,277,255,211,184,132,163,209,234,217,161,169),(4153,'2015-03-10 21:49:30','2015-08-29 14:46:02',1,30001686,6,7,4,5,8,20,6,9,17,14,14,17,12,16,13,29,33,13,29,21,15,13,28,24),(4154,'2015-03-10 21:49:30','2015-08-29 14:46:02',1,30002256,5,11,4,6,4,2,7,3,6,3,17,17,6,16,9,3,7,19,13,3,9,6,12,14),(4155,'2015-03-10 21:49:30','2015-08-29 14:46:02',1,30003803,36,15,8,29,28,15,35,30,17,11,37,44,32,30,30,28,10,9,20,22,36,33,17,9),(4156,'2015-03-10 21:49:30','2015-03-10 21:49:30',1,30001475,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(4157,'2015-03-10 21:49:30','2015-03-10 21:49:30',1,30000385,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(4158,'2015-03-10 21:49:30','2015-08-29 14:46:02',1,30003994,5,3,4,2,2,3,4,3,2,2,2,3,3,7,9,4,3,0,2,7,8,4,1,2),(4159,'2015-03-10 21:49:30','2015-08-29 14:46:02',1,30003333,15,14,27,25,30,28,19,12,17,14,7,7,39,11,16,14,4,6,13,34,23,15,13,10),(4160,'2015-03-10 21:49:30','2015-08-29 14:46:02',1,30004724,16,6,10,6,11,15,17,22,14,15,10,9,12,19,16,28,11,12,8,15,24,21,14,9),(4161,'2015-03-10 21:49:30','2015-08-29 14:46:02',1,30003229,9,5,18,13,10,4,9,10,2,0,6,4,4,2,4,4,4,2,0,12,5,3,8,5),(4162,'2015-03-10 21:49:30','2015-08-29 14:46:02',1,30002129,16,8,3,0,6,5,2,8,2,1,4,5,13,4,6,9,9,1,14,23,11,13,4,11),(4163,'2015-03-10 21:49:30','2015-08-29 14:46:02',1,30002491,1,1,3,2,2,7,2,2,3,1,5,6,2,1,1,1,1,1,0,2,0,3,1,1),(4164,'2015-03-10 21:49:30','2015-08-29 14:46:02',1,30002954,5,3,10,4,8,5,13,6,12,5,8,3,0,4,5,6,5,0,6,7,5,6,7,8),(4165,'2015-03-10 21:49:30','2015-08-29 14:46:02',1,30004225,9,17,6,1,3,3,2,3,0,3,1,0,3,2,6,5,8,1,14,28,7,11,1,2),(4166,'2015-03-10 21:49:30','2015-08-29 14:46:02',1,30004812,1,8,6,6,2,9,7,4,9,5,8,8,11,7,6,7,8,6,13,4,5,7,7,7),(4167,'2015-03-10 21:49:30','2015-08-29 14:46:02',1,30002151,2,3,3,0,0,4,2,4,0,0,7,11,0,7,13,3,0,3,0,3,0,0,14,17),(4168,'2015-03-10 21:49:30','2015-08-29 14:46:02',1,30004918,4,9,0,3,0,1,3,4,14,0,11,17,1,2,3,0,14,13,0,0,1,1,0,1),(4169,'2015-03-10 21:49:30','2015-08-29 14:46:02',1,30002993,197,190,199,118,108,100,71,52,142,152,119,122,167,168,157,142,98,127,169,137,179,176,133,118),(4170,'2015-03-10 21:49:30','2015-08-29 14:46:02',1,30003457,5,20,9,7,7,9,14,16,22,27,30,22,31,18,20,33,29,16,17,26,35,30,31,26),(4171,'2015-03-10 21:49:30','2015-08-29 14:46:02',1,30003916,12,28,29,23,22,13,15,4,73,57,41,28,16,83,59,43,14,9,5,29,19,24,23,28),(4172,'2015-03-10 21:49:30','2015-08-29 14:46:02',1,30002241,3,3,2,1,0,2,5,3,11,23,17,7,5,3,7,14,3,3,2,9,3,2,6,2),(4173,'2015-03-10 21:49:30','2015-08-29 14:46:02',1,30001650,35,31,31,28,33,19,28,26,55,54,28,33,36,54,64,39,31,23,27,42,50,50,52,55),(4174,'2015-03-10 21:49:30','2015-08-29 14:46:02',1,30004472,6,9,9,19,10,11,20,3,10,13,23,18,15,10,20,27,34,6,20,15,46,27,23,25),(4175,'2015-03-10 21:49:30','2015-08-29 14:46:02',1,30001090,5,15,5,32,15,7,13,2,0,0,0,0,0,0,0,0,1,6,6,0,1,0,1,2),(4176,'2015-03-10 21:49:30','2015-08-29 14:46:02',1,30004953,14,38,22,14,9,27,19,27,38,33,9,8,24,25,49,7,11,7,29,19,20,18,15,17),(4177,'2015-03-10 21:49:30','2015-08-29 14:46:02',1,30003260,9,10,13,7,3,10,13,19,3,2,6,4,4,24,16,9,3,1,7,9,4,8,11,11),(4178,'2015-03-10 21:49:30','2015-08-29 14:46:02',1,30002380,8,9,7,2,5,25,0,1,2,1,8,10,2,0,0,1,1,1,19,6,15,7,7,3),(4179,'2015-03-10 21:49:30','2015-08-29 14:46:02',1,30003626,5,8,1,7,6,6,17,3,0,0,2,6,7,9,6,4,7,5,10,6,5,5,4,5),(4180,'2015-03-10 21:49:30','2015-08-29 14:46:02',1,30004015,14,12,9,20,19,1,0,8,9,5,8,10,19,13,16,11,3,6,6,13,21,25,15,23),(4181,'2015-03-10 21:49:30','2015-08-29 14:46:02',1,30004494,12,28,8,7,11,5,9,4,2,3,10,6,6,21,13,52,17,4,5,9,12,12,8,13),(4182,'2015-03-10 21:49:30','2015-08-29 14:46:02',1,30001902,1,4,3,9,5,11,20,11,18,14,19,12,12,15,16,41,10,5,12,20,36,36,28,29),(4183,'2015-03-10 21:49:30','2015-08-29 14:46:02',1,30003353,13,5,9,26,22,22,6,12,20,63,19,20,14,27,7,8,9,1,34,18,12,25,4,6),(4184,'2015-03-10 21:49:30','2015-08-29 14:46:02',1,30002443,46,14,42,44,38,53,16,24,24,24,25,34,24,13,8,33,23,39,30,17,26,34,74,49),(4185,'2015-03-10 21:49:30','2015-08-29 14:46:02',1,30003610,7,18,14,9,9,14,4,12,7,9,7,7,8,13,12,3,6,5,8,4,3,3,13,8),(4186,'2015-03-10 21:49:30','2015-08-29 14:46:02',1,30001028,13,27,22,14,14,25,16,17,36,24,19,25,112,42,46,54,51,20,45,39,40,45,29,26),(4187,'2015-03-10 21:49:30','2015-03-10 21:49:30',1,30001520,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(4188,'2015-03-10 21:49:30','2015-08-29 14:46:02',1,30001187,3,4,8,11,11,4,1,4,44,48,22,18,34,33,33,32,14,19,34,23,17,15,15,18),(4189,'2015-03-10 21:49:30','2015-08-29 14:46:02',1,30000673,10,18,18,3,6,48,0,13,20,15,23,20,6,3,7,1,7,3,10,4,4,5,3,7),(4190,'2015-03-10 21:49:30','2015-08-29 14:46:02',1,30002322,3,2,8,6,4,12,1,3,1,1,1,1,0,0,0,2,1,17,0,0,1,2,2,1),(4191,'2015-03-10 21:49:30','2015-08-29 14:46:02',1,30003246,1,0,1,0,1,0,0,0,0,0,1,1,1,0,0,1,0,0,0,0,4,4,0,0),(4192,'2015-03-10 21:49:30','2015-08-29 14:46:02',1,30002926,21,93,31,14,22,9,26,36,29,28,30,42,45,42,35,23,5,12,28,25,25,24,18,11),(4193,'2015-03-10 21:49:30','2015-08-29 14:46:02',1,30004370,17,25,18,23,20,28,21,19,22,28,33,18,18,49,15,11,22,14,12,13,11,17,17,18),(4194,'2015-03-10 21:49:30','2015-08-29 14:46:02',1,30045325,8,41,14,14,12,14,12,25,15,18,18,26,13,27,23,28,29,23,24,18,39,31,23,25),(4195,'2015-03-10 21:49:30','2015-08-29 14:46:02',1,30001983,30,53,37,92,54,120,55,29,153,98,60,42,152,99,115,127,61,66,82,74,69,68,59,38),(4196,'2015-03-10 21:49:30','2015-08-29 14:46:02',1,30000815,1,7,11,8,16,2,4,14,44,31,12,18,6,2,1,7,4,1,12,10,0,4,20,34),(4197,'2015-03-10 21:49:30','2015-08-29 14:46:02',1,30002534,41,37,38,33,25,17,28,28,57,54,41,43,41,50,56,28,37,34,26,29,53,35,34,32),(4198,'2015-03-10 21:49:30','2015-08-29 14:46:02',1,30003395,43,57,79,75,79,68,19,48,65,82,65,55,90,85,82,94,61,54,59,69,104,98,59,52),(4199,'2015-03-10 21:49:30','2015-08-29 14:46:02',1,30004080,399,493,564,533,515,361,263,357,669,700,697,597,654,757,798,663,516,443,585,857,747,755,616,602),(4200,'2015-03-10 21:49:30','2015-08-29 14:46:02',1,30002550,28,13,23,45,30,11,35,29,28,41,23,21,29,25,29,24,28,13,13,13,16,12,21,19),(4201,'2015-03-10 21:49:30','2015-08-29 14:46:02',1,30003081,10,38,40,32,33,26,13,24,59,42,26,37,31,22,18,37,35,21,19,15,53,41,24,36),(4202,'2015-03-10 21:49:30','2015-08-29 14:46:02',1,30002721,4,24,17,10,12,4,3,10,12,11,15,15,28,37,31,8,7,8,10,12,4,14,35,13),(4203,'2015-03-10 21:49:30','2015-08-29 14:46:02',1,30002033,11,123,18,11,12,8,7,25,24,33,43,18,37,23,8,14,4,6,3,17,4,8,6,6),(4204,'2015-03-10 21:49:30','2015-08-29 14:46:02',1,30002426,0,0,2,0,1,1,0,2,2,1,8,5,2,3,3,1,3,1,3,5,1,1,1,0),(4205,'2015-03-10 21:49:30','2015-08-29 14:46:02',1,30002975,58,46,31,46,41,31,24,41,24,31,51,49,33,111,45,67,31,24,73,73,58,44,57,35),(4206,'2015-03-10 21:49:30','2015-08-29 14:46:02',1,30001936,1,5,2,5,6,3,3,3,5,4,2,5,5,3,3,4,0,1,1,2,3,1,1,3),(4207,'2015-03-10 21:49:30','2015-08-29 14:46:02',1,30004560,4,3,15,4,5,4,7,6,382,292,320,277,750,15,17,22,32,168,53,391,8,9,19,7),(4208,'2015-03-10 21:49:30','2015-08-29 14:46:02',1,30001924,5,14,9,7,12,9,5,12,5,7,13,13,14,16,27,16,13,9,12,8,15,9,26,21),(4209,'2015-03-10 21:49:30','2015-08-29 14:46:02',1,30001320,8,2,5,1,1,2,1,2,2,1,1,4,2,1,2,0,4,2,5,1,3,4,1,3),(4210,'2015-03-10 21:49:30','2015-03-10 21:49:30',1,30000359,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(4211,'2015-03-10 21:49:30','2015-08-29 14:46:02',1,30002039,13,10,55,27,35,16,9,8,26,26,7,3,28,12,9,18,11,7,13,6,9,8,11,8),(4212,'2015-03-10 21:49:30','2015-08-29 14:46:02',1,30000790,5,11,0,7,6,1,7,2,9,8,8,8,3,13,17,4,2,4,15,5,25,22,4,4),(4213,'2015-03-10 21:49:30','2015-08-29 14:46:02',1,30001830,15,5,16,10,21,11,0,0,0,0,0,0,0,0,2,2,6,5,0,1,2,3,1,1),(4214,'2015-03-10 21:49:30','2015-08-29 14:46:02',1,30002880,1,0,1,0,0,5,2,1,1,1,2,2,0,1,2,2,1,0,0,10,1,3,2,1),(4215,'2015-03-10 21:49:30','2015-08-29 14:46:02',1,30001259,58,30,31,30,18,17,16,25,31,21,24,26,44,24,24,29,34,55,31,91,100,34,20,24),(4216,'2015-03-10 21:49:30','2015-08-29 14:46:02',1,30001931,14,20,5,21,18,9,9,7,15,8,15,19,17,19,18,18,13,3,3,8,14,9,7,14),(4217,'2015-03-10 21:49:30','2015-03-10 21:49:30',1,30001511,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(4218,'2015-03-10 21:49:30','2015-08-29 14:46:02',1,30001139,0,1,0,0,0,0,0,0,2,2,4,2,0,4,4,0,0,0,1,0,0,1,1,1),(4219,'2015-03-10 21:49:30','2015-08-29 14:46:02',1,30003362,10,10,7,5,11,9,8,11,1,2,6,2,11,2,2,10,6,4,2,8,11,7,3,1),(4220,'2015-03-10 21:49:30','2015-08-29 14:46:02',1,30000511,12,7,8,7,9,7,6,8,19,15,5,6,6,25,13,15,11,24,117,6,7,15,9,4),(4221,'2015-03-10 21:49:30','2015-08-29 14:46:02',1,30001773,7,5,7,14,12,4,2,3,11,6,9,10,5,5,4,21,13,4,2,5,2,1,5,5),(4222,'2015-03-10 21:49:30','2015-08-29 14:46:02',1,30004516,2,1,2,1,1,2,1,9,1,1,0,1,3,2,1,1,1,0,0,0,1,3,2,1),(4223,'2015-03-10 21:49:30','2015-03-10 21:49:30',1,30000377,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(4224,'2015-03-10 21:49:30','2015-08-29 14:46:02',1,30002183,25,38,37,34,25,56,30,24,39,19,14,18,31,31,34,61,23,24,113,167,37,57,45,43),(4225,'2015-03-10 21:49:30','2015-08-29 14:46:02',1,30002249,2,5,1,5,8,5,3,6,3,5,5,1,15,2,7,6,2,1,1,8,5,6,10,5),(4226,'2015-03-10 21:49:30','2015-08-29 14:46:02',1,30003845,22,28,20,8,7,17,2,8,10,14,11,18,27,46,42,14,15,17,30,19,28,17,77,33),(4227,'2015-03-10 21:49:30','2015-08-29 14:46:02',1,30001123,2,2,17,21,26,18,13,3,2,2,4,1,1,0,0,0,2,0,0,1,0,0,0,0),(4228,'2015-03-10 21:49:30','2015-08-29 14:46:02',1,30001724,17,54,34,37,30,12,24,17,26,42,28,18,21,21,26,31,35,17,40,31,39,31,17,19),(4229,'2015-03-10 21:49:30','2015-08-29 14:46:02',1,30001408,224,224,186,201,179,151,153,194,281,307,286,277,235,321,287,287,233,171,204,275,284,234,249,209),(4230,'2015-03-10 21:49:30','2015-08-29 14:46:02',1,30002326,0,0,1,0,1,0,4,1,0,0,0,0,2,2,0,3,0,0,0,0,0,1,1,0),(4231,'2015-03-10 21:49:30','2015-08-29 14:46:02',1,30001900,3,9,10,11,11,6,14,13,16,12,30,16,7,14,11,10,16,1,12,13,25,18,15,19),(4232,'2015-03-10 21:49:30','2015-08-29 14:46:02',1,30000651,2,31,5,3,6,6,5,3,2,3,0,1,3,1,0,1,2,0,2,4,3,5,1,3),(4233,'2015-03-10 21:49:30','2015-08-29 14:46:02',1,30000298,11,9,10,6,7,16,10,7,18,26,37,34,18,25,20,19,28,22,40,28,20,24,18,8),(4234,'2015-03-10 21:49:30','2015-08-29 14:46:02',1,30001943,5,10,6,15,4,12,13,15,17,17,26,25,10,26,34,25,32,7,12,11,24,24,23,17),(4235,'2015-03-10 21:49:30','2015-08-29 14:46:02',1,30001142,0,2,7,2,7,1,1,1,4,1,1,1,1,2,1,1,1,0,0,0,3,2,3,5),(4236,'2015-03-10 21:49:30','2015-08-29 14:46:02',1,30001563,5,23,14,18,44,7,13,19,17,20,13,10,24,15,28,34,18,8,19,12,9,8,7,14),(4237,'2015-03-10 21:49:30','2015-08-29 14:46:02',1,30001138,0,3,0,0,0,0,5,1,3,5,7,4,0,10,11,2,3,0,1,7,0,0,6,3),(4238,'2015-03-10 21:49:30','2015-08-29 14:46:02',1,30005119,0,6,8,2,1,0,0,0,0,0,1,0,0,4,8,3,3,1,1,18,3,1,0,2),(4239,'2015-03-10 21:49:30','2015-08-29 14:46:02',1,30000712,8,5,12,9,12,26,17,14,2,3,7,10,5,4,16,11,3,1,1,5,20,13,10,9),(4240,'2015-03-10 21:49:30','2015-08-29 14:46:02',1,30003410,170,200,198,161,162,164,117,123,221,235,168,164,257,267,279,286,187,141,175,225,241,229,191,163),(4241,'2015-03-10 21:49:30','2015-08-29 14:46:02',1,30004963,11,9,32,17,14,17,19,26,15,13,9,2,7,9,13,16,5,3,9,7,8,10,6,3),(4242,'2015-03-10 21:49:30','2015-08-29 14:46:02',1,30000477,0,1,3,10,7,1,1,3,7,3,3,2,4,10,6,10,3,0,2,1,7,5,2,0),(4243,'2015-03-10 21:49:30','2015-08-29 14:46:02',1,30000834,2,15,5,4,33,2,2,17,0,2,4,1,1,4,7,4,6,3,0,4,0,0,0,5),(4244,'2015-03-10 21:49:30','2015-08-29 14:46:02',1,30005105,8,17,9,5,8,7,1,2,4,2,2,1,11,16,13,5,9,5,6,5,9,6,17,18),(4245,'2015-03-10 21:49:30','2015-08-29 14:46:02',1,30005188,5,30,6,13,14,238,5,1,4,7,13,9,29,14,5,7,3,13,44,9,21,24,4,5),(4246,'2015-03-10 21:49:30','2015-08-29 14:46:02',1,30002022,17,59,85,53,49,68,9,15,17,27,12,4,12,12,7,15,11,9,9,7,10,7,11,7),(4247,'2015-03-10 21:49:30','2015-08-29 14:46:02',1,30003628,2,1,0,0,1,1,6,1,0,0,4,8,1,1,0,0,1,2,3,1,2,2,1,0),(4248,'2015-03-10 21:49:30','2015-08-29 14:46:02',1,30001308,6,19,9,13,14,7,9,6,17,14,11,18,20,61,27,7,11,10,15,30,9,10,9,4),(4249,'2015-03-10 21:49:30','2015-08-29 14:46:02',1,30000501,0,0,1,2,2,2,1,4,6,1,2,2,4,7,6,2,2,1,3,3,3,3,0,0),(4250,'2015-03-10 21:49:30','2015-08-29 14:46:02',1,30004776,2,0,0,0,0,0,5,2,6,4,0,1,4,9,4,3,6,4,2,3,1,1,0,1),(4251,'2015-03-10 21:49:30','2015-08-29 14:46:02',1,30004819,60,5,5,4,4,2,14,8,4,9,9,12,9,1,1,7,5,4,16,4,2,8,3,4),(4252,'2015-03-10 21:49:30','2015-08-29 14:46:02',1,30004332,11,29,59,59,31,16,44,22,7,12,12,4,5,15,21,10,13,5,5,8,11,15,6,2),(4253,'2015-03-10 21:49:30','2015-08-29 14:46:02',1,30001918,5,1,10,14,11,8,1,4,8,5,10,5,9,16,14,6,7,11,6,9,4,6,2,2),(4254,'2015-03-10 21:49:30','2015-08-29 14:46:02',1,30001591,0,0,4,1,1,1,18,2,0,4,7,3,12,111,22,2,8,1,1,3,9,8,0,0),(4255,'2015-03-10 21:49:30','2015-08-29 14:46:02',1,30001893,6,16,7,8,4,4,8,6,16,17,31,36,32,37,44,38,20,14,23,21,43,25,52,33),(4256,'2015-03-10 21:49:30','2015-08-29 14:46:02',1,30002912,16,10,23,12,8,16,9,14,17,25,18,20,16,28,27,10,16,22,25,18,24,21,24,10),(4257,'2015-03-10 21:49:30','2015-08-29 14:46:02',1,30000657,36,31,20,33,28,20,16,26,72,54,71,51,14,123,66,48,52,19,23,44,78,65,45,29),(4258,'2015-03-10 21:49:30','2015-08-29 14:46:02',1,30003611,33,74,42,42,30,73,36,33,25,26,21,20,23,20,29,22,25,14,33,26,23,18,33,29),(4259,'2015-03-10 21:49:30','2015-08-29 14:46:02',1,30003340,0,3,0,2,2,7,1,0,2,2,5,4,7,0,0,1,6,0,0,3,0,1,1,0),(4260,'2015-03-10 21:49:30','2015-08-29 14:46:02',1,30003629,58,45,52,26,29,76,26,26,23,32,15,19,43,14,16,11,28,19,15,15,21,26,23,22),(4261,'2015-03-10 21:49:30','2015-08-29 14:46:02',1,30004683,10,8,11,13,14,9,16,11,25,41,27,12,12,20,25,12,15,4,3,14,25,30,26,27),(4262,'2015-03-10 21:49:30','2015-08-29 14:46:02',1,30002888,0,0,2,4,2,2,12,1,1,0,3,3,1,5,0,5,4,0,0,0,5,6,1,1),(4263,'2015-03-10 21:49:30','2015-08-29 14:46:02',1,30002017,7,7,11,18,18,15,2,8,9,16,6,6,3,5,2,10,6,11,8,7,5,4,5,4),(4264,'2015-03-10 21:49:30','2015-08-29 14:46:02',1,30000260,4,7,17,14,5,16,3,2,11,12,15,23,18,12,13,5,16,8,7,7,21,14,15,27),(4265,'2015-03-10 21:49:30','2015-03-10 21:49:30',1,30000388,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(4266,'2015-03-10 21:49:30','2015-08-29 14:46:02',1,30001088,4,12,10,30,29,4,15,3,0,1,3,1,1,1,1,1,10,2,6,0,2,2,3,4),(4267,'2015-03-10 21:49:30','2015-08-29 14:46:02',1,30001176,27,10,13,11,10,7,14,14,39,53,11,20,69,14,26,14,16,14,24,16,30,33,14,28),(4268,'2015-03-10 21:49:30','2015-08-29 14:46:02',1,30003368,23,33,22,14,19,8,6,18,22,18,1,5,19,29,30,19,3,17,5,8,14,14,9,14),(4269,'2015-03-10 21:49:30','2015-08-29 14:46:02',1,30004172,2,2,7,4,4,5,0,1,12,13,1,2,0,4,5,0,3,3,3,0,7,4,1,2),(4270,'2015-03-10 21:49:30','2015-08-29 14:46:02',1,30004886,0,0,0,1,1,0,7,0,2,1,1,0,0,1,1,1,3,1,1,0,0,2,1,1),(4271,'2015-03-10 21:49:30','2015-08-29 14:46:02',1,30000753,3,9,0,2,4,2,0,8,3,1,3,3,6,0,0,6,34,0,11,3,3,6,3,2),(4272,'2015-03-10 21:49:30','2015-08-29 14:46:02',1,30000667,6,8,12,3,6,64,0,6,22,21,20,19,3,4,5,0,3,0,6,4,2,4,1,3),(4273,'2015-03-10 21:49:30','2015-08-29 14:46:02',1,30001030,4,7,16,9,10,1,1,4,2,1,1,5,6,2,2,2,6,6,2,5,5,2,2,2),(4274,'2015-03-10 21:49:30','2015-08-29 14:46:02',1,30001237,11,15,19,20,16,16,5,8,6,13,7,15,6,15,22,13,19,5,4,5,10,5,8,11),(4275,'2015-03-10 21:49:30','2015-08-29 14:46:02',1,30004805,1,4,5,4,8,9,16,5,10,34,15,7,26,16,15,11,7,1,17,19,9,10,7,7),(4276,'2015-03-10 21:49:30','2015-03-10 21:49:30',1,30001471,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(4277,'2015-03-10 21:49:30','2015-08-29 14:46:02',1,30001145,1,4,0,0,1,0,1,0,1,1,1,0,0,0,0,1,0,0,0,0,3,1,3,6),(4278,'2015-03-10 21:49:30','2015-08-29 14:46:02',1,30000284,25,16,18,11,14,11,12,16,14,7,10,8,12,14,15,15,15,7,11,10,15,14,17,14),(4279,'2015-03-10 21:49:30','2015-08-29 14:46:02',1,30003257,38,63,41,23,16,42,39,30,4,4,8,3,4,8,5,11,3,3,9,14,5,7,15,14),(4280,'2015-03-10 21:49:30','2015-08-29 14:46:02',1,30000886,16,10,14,8,8,11,4,15,33,25,23,14,35,35,42,31,33,18,21,19,12,24,16,14),(4281,'2015-03-10 21:49:30','2015-08-29 14:46:02',1,30001891,2,10,4,22,12,12,8,2,6,3,8,7,17,15,14,22,16,4,10,12,16,19,10,11),(4282,'2015-03-10 21:49:30','2015-03-10 21:49:30',1,30000389,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(4283,'2015-03-10 21:49:30','2015-08-29 14:46:02',1,30003741,104,71,59,59,73,52,24,54,84,91,120,88,106,116,95,73,71,132,73,94,202,117,109,124),(4284,'2015-03-10 21:49:30','2015-08-29 14:46:02',1,30003506,9,42,38,33,41,21,16,20,28,29,20,30,22,25,21,37,22,28,63,57,41,40,22,19),(4285,'2015-03-10 21:49:30','2015-08-29 14:46:02',1,30001386,99,129,119,157,149,116,85,90,99,123,108,105,110,156,135,162,113,59,113,111,180,154,123,111),(4286,'2015-03-10 21:49:30','2015-08-29 14:46:02',1,30003894,5,5,3,3,3,6,3,0,79,88,132,104,8,5,3,5,0,3,8,7,8,11,3,4),(4287,'2015-03-10 21:49:30','2015-08-29 14:46:02',1,30001675,38,69,86,86,78,64,58,48,141,119,144,130,70,82,82,94,71,20,89,79,133,116,94,68),(4288,'2015-03-10 21:49:30','2015-08-29 14:46:02',1,30004242,46,101,118,65,69,88,61,56,88,98,63,63,77,58,60,48,68,62,56,62,67,69,46,50),(4289,'2015-03-10 21:49:30','2015-08-29 14:46:02',1,30002251,36,52,50,66,92,49,57,24,54,43,55,50,62,50,62,62,35,34,71,99,56,43,43,43),(4290,'2015-03-10 21:49:30','2015-08-29 14:46:02',1,30031672,9,5,5,1,1,9,5,2,13,15,20,14,7,5,6,9,4,4,1,2,10,10,10,9),(4291,'2015-03-10 21:49:30','2015-08-29 14:46:02',1,30002279,74,88,79,100,101,55,50,79,84,101,91,60,82,123,96,121,83,59,75,89,95,126,89,86),(4292,'2015-03-10 21:49:30','2015-08-29 14:46:02',1,30003879,10,15,8,4,6,19,4,5,12,14,9,5,15,11,9,9,17,5,4,10,8,7,13,16),(4293,'2015-03-10 21:49:30','2015-08-29 14:46:02',1,30001719,23,13,17,12,10,7,4,7,47,35,26,32,21,38,47,39,32,31,50,53,30,37,40,30),(4294,'2015-03-10 21:49:30','2015-08-29 14:46:02',1,30002298,24,78,55,56,36,54,41,43,7,11,15,15,32,48,46,36,43,15,40,13,32,29,7,26),(4295,'2015-03-10 21:49:30','2015-08-29 14:46:02',1,30003474,21,21,34,16,27,24,31,25,39,39,29,29,72,40,61,47,47,24,27,41,29,63,58,46),(4296,'2015-03-10 21:49:30','2015-08-29 14:46:02',1,30002259,26,28,30,22,23,20,19,14,45,56,57,51,56,31,29,52,38,29,33,41,28,42,49,25),(4297,'2015-03-10 21:49:30','2015-08-29 14:46:02',1,30003518,2,15,11,14,9,2,5,2,21,19,10,14,19,14,9,7,16,5,12,30,9,12,21,16),(4298,'2015-03-10 21:49:30','2015-08-29 14:46:02',1,30003086,89,99,82,79,97,64,73,63,124,97,105,101,116,105,90,88,76,46,93,108,100,92,84,84),(4299,'2015-03-10 21:49:30','2015-08-29 14:46:02',1,30000508,13,6,9,14,16,4,6,7,5,4,4,5,6,24,6,29,15,23,130,17,10,9,17,3),(4300,'2015-03-10 21:49:30','2015-08-29 14:46:02',1,30003090,33,25,21,17,24,14,40,23,43,55,27,29,37,39,38,58,23,18,17,86,42,47,41,47),(4301,'2015-03-10 21:49:30','2015-08-29 14:46:02',1,30003079,26,28,31,28,30,20,38,42,87,50,54,59,73,70,43,34,53,31,36,47,50,53,43,43),(4302,'2015-03-10 21:49:30','2015-08-29 14:46:02',1,30002745,19,20,37,39,54,22,20,21,34,29,17,24,20,13,17,32,14,15,19,45,41,57,29,24),(4303,'2015-03-10 21:49:30','2015-08-29 14:46:02',1,30002816,36,38,40,48,57,22,35,38,44,52,53,46,45,43,45,52,31,47,44,48,41,42,36,31),(4304,'2015-03-10 21:49:30','2015-08-29 14:46:02',1,30000146,369,466,441,393,377,334,285,368,453,493,480,450,521,668,618,612,496,302,345,504,534,536,396,425),(4305,'2015-03-10 21:49:30','2015-08-29 14:46:02',1,30010141,22,25,29,31,20,39,18,18,24,29,23,23,34,24,30,26,19,16,11,17,15,18,18,20),(4306,'2015-03-10 21:49:30','2015-08-29 14:46:02',1,30004299,72,110,50,44,37,62,32,52,44,210,73,49,48,120,119,113,49,64,147,97,79,77,90,102),(4307,'2015-03-10 21:49:30','2015-08-29 14:46:02',1,30002215,14,39,15,25,17,7,16,8,22,29,23,19,27,26,31,18,27,11,14,34,17,24,20,20),(4308,'2015-03-10 21:49:30','2015-08-29 14:46:02',1,30000167,63,129,116,125,136,138,78,63,110,114,93,86,118,105,85,111,68,92,94,129,118,105,103,92),(4309,'2015-03-10 21:49:30','2015-08-29 14:46:02',1,30002405,7,4,6,10,8,4,8,8,13,6,4,3,9,3,5,5,4,3,0,2,8,5,4,2),(4310,'2015-03-10 21:49:30','2015-08-29 14:46:02',1,30004146,7,16,23,37,15,9,4,4,14,19,30,26,22,43,47,30,30,15,16,16,25,32,23,15),(4311,'2015-03-10 21:49:30','2015-08-29 14:46:02',1,30000059,31,26,25,38,59,60,32,17,39,38,58,53,47,107,96,64,35,66,39,50,68,56,28,34),(4312,'2015-03-10 21:49:30','2015-08-29 14:46:02',1,30003874,2,9,5,2,0,5,2,2,5,5,6,5,14,7,4,10,19,7,34,17,11,18,20,17),(4313,'2015-03-10 21:49:30','2015-08-29 14:46:02',1,30045322,79,172,89,104,83,86,89,95,98,121,98,99,119,151,134,156,104,82,95,98,168,157,127,92),(4314,'2015-03-10 21:49:30','2015-08-29 14:46:02',1,30001721,3,7,10,9,5,2,2,5,29,23,31,20,9,28,28,50,23,10,13,9,19,26,17,14),(4315,'2015-03-10 21:49:30','2015-08-29 14:46:02',1,30002783,127,188,182,155,112,87,114,134,186,189,175,175,231,228,221,249,182,139,184,189,195,208,186,157),(4316,'2015-03-10 21:49:30','2015-08-29 14:46:02',1,30002785,50,88,76,70,67,61,59,50,78,68,76,77,123,102,100,116,75,81,89,83,92,85,85,63),(4317,'2015-03-10 21:49:30','2015-08-29 14:46:02',1,30005255,22,43,21,24,32,32,19,13,30,42,32,23,34,25,35,32,39,40,28,40,38,25,33,36),(4318,'2015-03-10 21:49:30','2015-08-29 14:46:02',1,30001442,23,155,46,36,44,48,22,23,19,15,22,21,23,14,13,9,26,82,42,18,21,32,27,14),(4319,'2015-03-10 21:49:30','2015-08-29 14:46:02',1,30001377,641,707,748,726,669,539,340,437,675,751,688,630,778,973,913,849,674,513,574,769,884,870,687,573),(4320,'2015-03-10 21:49:30','2015-08-29 14:46:02',1,30045310,35,126,34,37,52,30,19,10,26,23,12,16,44,14,10,27,33,28,22,21,16,20,12,17),(4321,'2015-03-10 21:49:30','2015-08-29 14:46:02',1,30000043,3,7,3,7,6,3,4,2,5,8,12,7,6,28,9,5,2,9,10,4,11,12,2,3),(4322,'2015-03-10 21:49:30','2015-08-29 14:46:02',1,30003584,9,29,20,14,15,14,9,18,16,17,27,22,14,10,27,17,16,9,13,12,16,13,16,16),(4323,'2015-03-10 21:49:30','2015-08-29 14:46:02',1,30003522,836,891,913,829,835,791,445,570,992,995,932,869,971,1135,1157,1113,882,722,858,957,1222,1105,976,929),(4324,'2015-03-10 21:49:30','2015-08-29 14:46:02',1,30003074,61,109,84,96,92,65,67,73,175,162,154,131,143,249,225,157,143,106,113,113,150,156,144,136),(4325,'2015-03-10 21:49:30','2015-08-29 14:46:02',1,30002971,157,220,182,209,184,147,97,143,224,252,222,222,245,282,278,299,211,136,188,229,270,241,259,227),(4326,'2015-03-10 21:49:30','2015-08-29 14:46:02',1,30003931,9,20,2,11,12,9,8,9,17,10,10,16,13,8,7,8,3,2,7,7,15,18,2,4),(4327,'2015-03-10 21:49:30','2015-08-29 14:46:02',1,30000005,329,434,393,390,368,380,242,321,524,521,451,444,580,627,674,597,457,355,461,532,541,436,459,481),(4328,'2015-03-10 21:49:30','2015-08-29 14:46:02',1,30003097,8,2,10,13,15,0,1,1,2,5,18,10,8,6,10,10,2,7,5,5,5,4,1,2),(4329,'2015-03-10 21:49:30','2015-08-29 14:46:02',1,30003508,61,108,105,67,70,57,48,72,107,111,122,117,137,126,134,141,80,74,100,91,122,135,129,94),(4330,'2015-03-10 21:49:30','2015-08-29 14:46:02',1,30004270,29,51,51,46,47,26,31,42,73,64,83,81,70,154,226,85,72,42,43,69,69,64,53,60),(4331,'2015-03-10 21:49:30','2015-08-29 14:46:02',1,30003865,48,93,50,47,45,63,33,43,262,285,340,322,86,73,63,88,72,67,63,70,63,74,51,57),(4332,'2015-03-10 21:49:30','2015-08-29 14:46:02',1,30000991,5,2,2,1,5,1,1,1,2,2,2,1,1,2,2,0,0,1,0,2,1,4,0,0),(4333,'2015-03-10 21:49:30','2015-08-29 14:46:02',1,30004218,0,1,0,0,0,0,0,0,1,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0),(4334,'2015-03-10 21:49:30','2015-08-29 14:46:02',1,30001296,11,7,2,17,12,3,2,3,0,2,1,3,2,3,0,0,6,3,3,0,2,4,9,1),(4335,'2015-03-10 21:49:30','2015-08-29 14:46:02',1,30005310,129,149,144,124,113,96,87,72,145,186,159,142,186,200,209,165,122,109,157,134,172,177,131,145),(4336,'2015-03-10 21:49:30','2015-08-29 14:46:02',1,30005063,19,25,23,14,21,13,7,27,48,27,10,11,29,12,20,32,33,28,28,58,28,41,15,14),(4337,'2015-03-10 21:49:30','2015-08-29 14:46:02',1,30002654,15,15,20,20,23,18,28,9,26,32,17,23,26,24,27,45,18,15,11,65,21,17,25,20),(4338,'2015-03-10 21:49:30','2015-08-29 14:46:02',1,30005322,278,366,371,389,324,285,201,215,355,375,345,307,434,614,542,485,329,398,322,399,612,511,352,316),(4339,'2015-03-10 21:49:30','2015-08-29 14:46:02',1,30003054,26,79,63,60,67,38,28,40,93,96,84,74,85,114,105,93,64,66,68,77,74,81,100,109),(4340,'2015-03-10 21:49:30','2015-08-29 14:46:02',1,30000692,22,36,11,34,20,12,16,13,11,1,9,1,5,7,8,9,18,1,20,4,13,11,7,26),(4341,'2015-03-10 21:49:30','2015-08-29 14:46:02',1,30001314,3,16,7,6,3,7,7,8,21,24,30,22,25,35,22,9,14,9,10,28,13,8,12,7),(4342,'2015-03-10 21:49:30','2015-08-29 14:46:02',1,30004139,22,42,9,26,42,17,7,9,38,39,43,30,49,24,35,32,16,4,5,27,31,16,40,33),(4343,'2015-03-10 21:49:30','2015-08-29 14:46:02',1,30001659,33,64,49,40,30,47,29,37,66,59,83,60,73,105,119,70,84,55,87,77,88,101,104,93),(4344,'2015-03-10 21:49:30','2015-08-29 14:46:02',1,30005042,102,123,142,135,137,122,67,97,203,227,160,152,230,193,178,206,160,113,165,131,170,151,173,174),(4345,'2015-03-10 21:49:30','2015-08-29 14:46:02',1,30003869,34,61,36,35,27,34,18,34,89,106,87,54,98,66,94,68,54,55,46,60,86,93,76,75),(4346,'2015-03-10 21:49:30','2015-08-29 14:46:02',1,30001657,37,66,60,51,36,59,31,53,65,100,80,87,73,92,103,90,92,96,89,113,105,113,91,76),(4347,'2015-03-10 21:49:30','2015-08-29 14:46:02',1,30002243,41,69,93,60,68,66,35,36,77,100,114,103,96,99,85,84,45,51,53,78,45,65,56,45),(4348,'2015-03-10 21:49:30','2015-08-29 14:46:02',1,30041672,7,10,8,10,6,4,5,5,14,15,15,9,16,20,19,9,9,7,1,14,9,9,10,13),(4349,'2015-03-10 21:49:30','2015-08-29 14:46:02',1,30001359,5,2,4,5,3,12,8,3,5,8,12,21,7,19,26,23,17,2,9,12,11,2,17,21),(4350,'2015-03-10 21:49:30','2015-08-29 14:46:02',1,30020141,15,70,34,36,30,21,22,10,32,51,62,41,22,22,27,45,34,26,33,54,34,39,22,22),(4351,'2015-03-10 21:49:30','2015-08-29 14:46:02',1,30000015,59,53,35,38,38,33,46,28,105,102,75,70,174,71,70,65,80,60,79,96,98,104,72,44),(4352,'2015-03-10 21:49:30','2015-08-29 14:46:02',1,30000103,3,5,4,8,6,6,3,6,5,7,11,6,11,13,19,10,11,16,7,6,16,27,9,9),(4353,'2015-03-10 21:49:30','2015-08-29 14:46:02',1,30004623,15,89,54,31,35,44,9,18,9,6,18,12,37,27,24,14,20,16,30,35,37,18,28,27),(4354,'2015-03-10 21:49:30','2015-08-29 14:46:02',1,30005222,48,25,27,38,40,19,19,17,53,47,37,32,40,33,30,29,36,22,29,45,52,51,26,16),(4355,'2015-03-10 21:49:30','2015-08-29 14:46:02',1,30003898,11,8,8,3,6,10,4,2,9,11,17,14,73,31,33,15,3,11,12,5,5,4,2,5),(4356,'2015-03-10 21:49:30','2015-08-29 14:46:02',1,30005278,2,0,0,0,0,0,7,3,12,10,7,5,2,1,3,6,5,0,0,4,19,43,2,5),(4357,'2015-03-10 21:49:30','2015-08-29 14:46:02',1,30005020,19,29,37,31,29,29,27,13,33,44,24,27,26,25,20,36,29,23,38,39,33,41,40,44),(4358,'2015-03-10 21:49:30','2015-08-29 14:46:02',1,30003654,4,21,7,4,6,10,7,6,0,3,2,0,5,5,5,6,8,1,16,27,9,10,2,6),(4359,'2015-03-10 21:49:30','2015-08-29 14:46:02',1,30002833,7,1,8,5,8,3,5,9,3,9,24,12,4,4,11,6,15,5,5,10,4,11,7,44),(4360,'2015-03-10 21:49:30','2015-08-29 14:46:02',1,30000670,29,238,33,68,65,36,27,23,36,51,47,39,33,64,49,49,21,8,43,117,58,38,47,32),(4361,'2015-03-10 21:49:30','2015-08-29 14:46:02',1,30001098,4,1,1,1,5,0,0,6,1,1,1,1,1,1,2,1,3,1,1,0,1,1,0,0),(4362,'2015-03-10 21:49:30','2015-08-29 14:46:02',1,30000868,43,42,64,41,40,46,46,45,27,31,46,40,66,121,124,23,23,10,15,15,33,34,17,26),(4363,'2015-03-10 21:49:30','2015-08-29 14:46:02',1,30002831,1,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0),(4364,'2015-03-10 21:49:30','2015-08-29 14:46:02',1,30002267,31,24,25,26,26,38,20,22,56,57,55,45,61,41,29,41,52,27,48,42,38,25,42,32),(4365,'2015-03-10 21:49:30','2015-08-29 14:46:02',1,30000097,11,9,8,13,10,4,9,9,24,29,23,25,9,16,12,11,21,16,8,5,11,18,17,13),(4366,'2015-03-10 21:49:30','2015-08-29 14:46:02',1,30004283,55,59,51,49,48,54,37,38,104,286,155,121,132,306,295,220,154,92,240,143,145,109,86,91),(4367,'2015-03-10 21:49:30','2015-08-29 14:46:02',1,30004150,26,25,19,39,39,37,20,15,16,42,54,46,53,44,30,40,44,27,29,44,24,33,23,13),(4368,'2015-03-10 21:49:30','2015-08-29 14:46:02',1,30005057,43,76,43,55,58,68,34,48,90,108,109,86,88,95,93,83,76,58,61,86,80,81,58,58),(4369,'2015-03-10 21:49:30','2015-08-29 14:46:02',1,30003477,14,26,22,13,13,8,19,11,32,31,16,21,28,22,47,49,41,8,14,36,17,32,44,31),(4370,'2015-03-10 21:49:30','2015-08-29 14:46:02',1,30004231,2,1,2,7,21,7,2,3,7,2,7,8,3,14,16,14,7,2,11,7,12,8,9,13),(4371,'2015-03-10 21:49:30','2015-08-29 14:46:02',1,30000054,7,6,5,1,2,2,9,14,5,10,6,4,3,4,6,1,8,8,2,2,6,2,7,3),(4372,'2015-03-10 21:49:30','2015-08-29 14:46:02',1,30005270,52,28,38,58,47,23,18,18,55,43,31,20,53,33,26,53,23,83,58,51,52,65,53,30),(4373,'2015-03-10 21:49:30','2015-08-29 14:46:02',1,30000014,10,16,14,13,11,18,12,17,29,29,42,13,17,16,20,26,52,25,16,13,24,21,22,22),(4374,'2015-03-10 21:49:30','2015-08-29 14:46:02',1,30005271,14,18,14,35,28,24,15,16,22,18,28,20,24,17,24,30,22,22,16,24,46,69,32,30),(4375,'2015-03-10 21:49:30','2015-08-29 14:46:02',1,30003498,154,87,94,88,87,66,71,67,176,176,135,132,156,166,194,167,183,151,137,123,168,178,122,118),(4376,'2015-03-10 21:49:30','2015-08-29 14:46:02',1,30001739,15,15,18,19,6,19,6,16,41,29,36,21,22,23,15,15,6,18,22,37,54,41,34,9),(4377,'2015-03-10 21:49:30','2015-08-29 14:46:02',1,30000067,8,5,0,2,1,7,1,14,9,5,8,6,5,13,12,25,8,14,3,1,8,5,4,4),(4378,'2015-03-10 21:49:30','2015-08-29 14:46:02',1,30003500,13,47,32,19,14,28,14,15,30,24,44,37,41,39,34,34,16,21,25,24,31,31,28,13),(4379,'2015-03-10 21:49:30','2015-08-29 14:46:02',1,30002638,10,19,12,18,12,9,8,18,20,20,26,21,15,21,23,13,16,7,12,26,22,19,21,18),(4380,'2015-03-10 21:49:30','2015-08-29 14:46:02',1,30005276,19,3,3,10,18,14,15,5,21,29,26,20,29,17,24,26,28,2,9,26,64,91,12,32),(4381,'2015-03-10 21:49:30','2015-08-29 14:46:02',1,30002999,33,53,42,37,36,31,19,59,29,26,20,28,45,60,56,58,19,33,55,30,50,50,31,23),(4382,'2015-03-10 21:49:30','2015-08-29 14:46:02',1,30000779,14,24,12,10,8,10,22,19,386,211,18,17,18,3,8,12,8,0,2,2,9,16,4,3),(4383,'2015-03-10 21:49:30','2015-08-29 14:46:02',1,30000106,41,65,51,52,42,49,58,44,66,72,58,61,148,83,83,68,81,49,37,63,57,67,55,40),(4384,'2015-03-10 21:49:30','2015-08-29 14:46:02',1,30004155,63,74,81,64,67,54,24,42,105,109,130,133,101,135,131,111,70,72,87,86,92,99,79,93),(4385,'2015-03-10 21:49:30','2015-08-29 14:46:02',1,30004268,29,57,47,44,52,25,29,44,79,80,50,50,74,149,218,84,59,47,45,68,64,64,47,48),(4386,'2015-03-10 21:49:30','2015-08-29 14:46:02',1,30000011,11,8,6,8,10,7,5,4,11,14,10,15,14,20,21,12,7,24,28,27,2,10,7,9),(4387,'2015-03-10 21:49:30','2015-08-29 14:46:02',1,30005192,70,74,62,72,82,57,40,60,92,96,97,87,113,95,88,118,67,78,66,119,131,100,80,68),(4388,'2015-03-10 21:49:30','2015-08-29 14:46:02',1,30004278,4,1,3,2,1,0,4,2,8,24,11,4,3,8,7,5,12,3,1,0,0,0,6,7),(4389,'2015-03-10 21:49:30','2015-08-29 14:46:02',1,30005217,348,486,292,324,308,248,263,268,451,499,465,420,482,581,541,561,463,295,269,391,723,705,520,521),(4390,'2015-03-10 21:49:30','2015-08-29 14:46:02',1,30001673,65,86,71,96,90,68,79,51,154,147,116,116,97,119,129,125,100,106,141,139,170,187,151,139),(4391,'2015-03-10 21:49:30','2015-08-29 14:46:02',1,30000130,130,226,203,175,164,154,126,98,238,275,231,187,221,220,208,240,214,178,188,255,203,215,153,128),(4392,'2015-03-10 21:49:30','2015-08-29 14:46:02',1,30003725,26,65,26,22,26,62,20,22,53,72,48,50,215,56,35,83,37,30,22,47,80,50,83,78),(4393,'2015-03-10 21:49:30','2015-08-29 14:46:02',1,30004233,40,57,28,53,50,75,17,122,41,43,48,43,61,67,79,64,33,51,51,51,42,51,45,37),(4394,'2015-03-10 21:49:30','2015-08-29 14:46:02',1,30001338,5,3,2,1,1,2,0,3,3,5,5,6,4,1,1,0,7,1,3,6,2,1,1,3),(4395,'2015-03-10 21:49:30','2015-08-29 14:46:02',1,30005076,25,38,33,45,50,35,21,40,31,23,22,23,44,100,92,57,60,27,65,40,67,49,46,51),(4396,'2015-03-10 21:49:30','2015-08-29 14:46:02',1,30001667,31,51,40,40,39,31,23,31,34,33,34,48,28,44,37,43,39,33,39,40,32,40,43,36),(4397,'2015-03-10 21:49:30','2015-08-29 14:46:02',1,30002235,8,7,4,3,2,8,6,2,6,9,15,27,6,9,8,10,7,0,4,6,13,11,9,7),(4398,'2015-03-10 21:49:30','2015-08-29 14:46:02',1,30004135,9,4,3,3,6,9,6,4,2,4,5,4,4,2,2,9,4,1,0,6,3,6,5,8),(4399,'2015-03-10 21:49:30','2015-08-29 14:46:02',1,30002201,46,61,86,67,74,46,52,52,122,224,117,128,129,121,116,138,98,79,77,98,147,122,120,114),(4400,'2015-03-10 21:49:30','2015-08-29 14:46:02',1,30003728,13,13,9,10,17,16,9,3,25,54,18,23,30,17,21,53,14,7,6,27,30,24,39,40),(4401,'2015-03-10 21:49:30','2015-08-29 14:46:02',1,30005209,26,43,50,15,19,35,19,25,24,28,33,28,34,36,36,33,33,22,23,35,54,34,33,29),(4402,'2015-03-10 21:49:30','2015-08-29 14:46:02',1,30003484,19,16,8,13,12,8,7,6,6,12,12,21,6,8,10,17,9,5,13,15,18,6,15,14),(4403,'2015-03-10 21:49:30','2015-08-29 14:46:02',1,30003557,1,9,6,0,1,6,5,6,2,5,5,3,4,16,5,4,7,3,5,2,5,4,8,9),(4404,'2015-03-10 21:49:30','2015-08-29 14:46:02',1,30002959,72,75,97,55,48,75,45,33,56,43,34,30,45,54,77,40,36,73,50,62,44,34,45,44),(4405,'2015-03-10 21:49:30','2015-08-29 14:46:02',1,30005219,90,88,128,127,142,104,69,95,164,192,191,172,170,222,185,213,149,107,106,154,265,249,196,172),(4406,'2015-03-10 21:49:30','2015-08-29 14:46:02',1,30000179,15,19,20,16,18,20,13,8,35,73,22,26,15,32,30,33,27,10,22,18,32,34,19,14),(4407,'2015-03-10 21:49:30','2015-08-29 14:46:02',1,30002689,1,1,5,4,3,6,1,5,17,13,5,2,5,6,9,14,10,3,3,3,25,14,18,35),(4408,'2015-03-10 21:49:30','2015-08-29 14:46:02',1,30002195,11,20,16,15,13,19,14,14,18,21,12,13,26,41,44,25,31,15,5,11,18,19,18,17),(4409,'2015-03-10 21:49:30','2015-08-29 14:46:02',1,30005269,164,220,232,171,181,132,166,150,285,302,261,248,313,343,366,337,321,142,167,224,303,325,296,284),(4410,'2015-03-10 21:49:30','2015-08-29 14:46:02',1,30001729,27,35,41,52,59,26,43,26,58,51,53,43,53,53,66,65,38,34,27,48,51,52,62,47),(4411,'2015-03-10 21:49:30','2015-08-29 14:46:02',1,30002092,11,3,2,5,6,4,6,5,15,16,18,16,10,21,22,20,15,30,27,13,16,18,12,17),(4412,'2015-03-10 21:49:30','2015-08-29 14:46:02',1,30003540,3,12,13,17,14,4,26,19,7,3,6,8,3,5,7,2,7,2,2,4,11,24,7,8),(4413,'2015-03-10 21:49:30','2015-08-29 14:46:02',1,30002791,1138,1402,1391,1420,1328,1189,907,1035,1423,1647,1604,1465,1521,1744,1736,1739,1575,1052,1179,1457,1718,1780,1586,1534),(4414,'2015-03-10 21:49:30','2015-08-29 14:46:02',1,30000127,130,216,298,151,165,159,101,130,266,279,249,228,276,319,332,244,192,195,199,194,290,302,212,218),(4415,'2015-03-10 21:49:30','2015-08-29 14:46:02',1,30002539,117,190,163,143,155,137,124,172,277,227,219,207,253,437,368,244,291,238,290,275,374,304,232,210),(4416,'2015-03-10 21:49:30','2015-08-29 14:46:02',1,30002521,10,8,11,14,15,13,2,9,10,7,6,8,24,25,17,17,14,13,15,15,12,12,17,15),(4417,'2015-03-10 21:49:30','2015-08-29 14:46:02',1,30002229,20,13,16,12,10,11,10,4,24,26,16,19,25,15,29,24,20,7,27,28,19,22,27,19),(4418,'2015-03-10 21:49:30','2015-08-29 14:46:02',1,30003406,8,6,6,10,8,7,4,4,5,7,2,1,3,10,10,4,6,3,7,5,7,7,5,5),(4419,'2015-03-10 21:49:30','2015-08-29 14:46:02',1,30002765,1184,1439,1565,1411,1345,1075,908,962,1505,1545,1647,1408,1704,1834,1950,1824,1486,1069,1324,1552,1895,1744,1439,1370),(4420,'2015-03-10 21:49:30','2015-08-29 14:46:02',1,30001699,9,15,24,24,12,13,14,6,29,33,51,41,25,43,44,43,37,18,8,56,94,90,87,69),(4421,'2015-03-10 21:49:30','2015-08-29 14:46:02',1,30001728,2,22,11,17,18,3,6,6,8,8,3,5,4,11,13,9,5,4,9,11,11,8,4,7),(4422,'2015-03-10 21:49:30','2015-08-29 14:46:02',1,30000571,2,1,2,3,2,2,0,0,4,2,0,0,1,0,1,0,1,0,0,0,2,2,1,2),(4423,'2015-03-10 21:49:30','2015-08-29 14:46:02',1,30000436,1,4,0,1,0,1,2,0,0,0,0,2,5,1,1,5,0,0,4,0,0,0,5,7),(4424,'2015-03-10 21:49:30','2015-08-29 14:46:02',1,30004164,17,15,12,16,18,23,6,16,22,40,10,7,12,12,10,3,12,8,3,3,6,5,17,18),(4425,'2015-03-10 21:49:30','2015-08-29 14:46:02',1,30002411,11,28,32,27,20,19,23,19,60,57,38,39,71,28,35,44,17,40,16,20,34,29,14,16),(4426,'2015-03-10 21:49:30','2015-08-29 14:46:02',1,30003964,20,10,9,9,11,6,11,11,14,22,12,11,18,13,8,11,10,9,13,9,7,10,18,19),(4427,'2015-03-10 21:49:30','2015-08-29 14:46:02',1,30000964,6,10,10,8,10,5,6,5,7,6,8,6,22,12,3,10,11,35,39,22,8,9,8,11),(4428,'2015-03-10 21:49:30','2015-08-29 14:46:02',1,30003798,40,75,46,57,40,54,20,32,67,66,42,43,67,88,78,80,59,47,59,53,63,72,51,57),(4429,'2015-03-10 21:49:30','2015-08-29 14:46:02',1,30000479,5,8,7,7,5,35,14,11,30,9,11,14,22,49,37,4,3,1,0,49,15,14,9,8),(4430,'2015-03-10 21:49:30','2015-08-29 14:46:02',1,30001780,10,4,3,16,15,7,1,6,14,48,18,10,80,4,15,3,10,6,6,13,4,8,21,19),(4431,'2015-03-10 21:49:30','2015-08-29 14:46:02',1,30001808,5,3,1,8,10,1,14,4,0,1,5,5,1,1,1,0,5,2,0,3,2,1,2,2),(4432,'2015-03-10 21:49:30','2015-08-29 14:46:02',1,30000763,1,15,10,1,1,7,6,15,9,8,3,5,2,2,2,9,15,4,12,2,2,6,8,9),(4433,'2015-03-10 21:49:30','2015-08-29 14:46:02',1,30003152,17,15,16,12,10,15,30,25,16,23,19,20,41,147,114,33,12,9,4,14,4,7,10,10),(4434,'2015-03-10 21:49:30','2015-08-29 14:46:02',1,30001220,8,9,14,8,9,18,9,2,31,43,40,37,133,31,34,53,18,53,94,50,41,40,46,17),(4435,'2015-03-10 21:49:30','2015-08-29 14:46:02',1,30000584,2,5,1,2,3,13,2,2,2,1,0,0,13,5,8,2,3,1,0,2,3,0,6,9),(4436,'2015-03-10 21:49:30','2015-08-29 14:46:02',1,30001363,1181,1268,1293,1279,1174,1186,899,979,1329,1504,1359,1308,1537,1670,1716,1659,1487,951,1065,1355,1520,1466,1415,1261),(4437,'2015-03-10 21:49:30','2015-08-29 14:46:02',1,30002237,4,0,12,13,9,4,2,3,41,132,87,19,14,5,16,24,6,7,11,9,17,16,16,13),(4438,'2015-03-10 21:49:30','2015-08-29 14:46:02',1,30004273,7,27,17,21,14,5,8,13,46,64,26,29,19,38,37,28,20,28,20,11,8,5,13,9),(4439,'2015-03-10 21:49:30','2015-08-29 14:46:02',1,30003511,14,21,29,43,44,23,21,25,33,40,39,43,52,48,49,37,30,30,35,43,61,42,34,44),(4440,'2015-03-10 21:49:30','2015-08-29 14:46:02',1,30003225,8,2,10,3,2,8,2,7,2,3,7,5,3,2,3,2,6,5,0,2,10,4,4,3),(4441,'2015-03-10 21:49:30','2015-08-29 14:46:02',1,30004099,17,38,31,30,28,36,30,21,60,60,34,29,49,35,46,45,26,35,28,46,24,20,25,20),(4442,'2015-03-10 21:49:30','2015-08-29 14:46:02',1,30000009,1,1,5,6,5,1,3,3,2,1,7,6,2,10,7,2,1,2,3,7,3,2,4,2),(4443,'2015-03-10 21:49:30','2015-08-29 14:46:02',1,30002983,5,9,11,6,11,3,6,3,37,33,6,19,26,19,11,13,3,23,17,10,10,7,2,5),(4444,'2015-03-10 21:49:30','2015-08-29 14:46:02',1,30005323,101,156,159,191,136,154,68,91,161,169,145,117,192,225,227,234,130,153,166,190,201,185,148,119),(4445,'2015-03-10 21:49:30','2015-08-29 14:46:02',1,30003510,3,15,13,15,15,6,11,16,14,11,14,13,19,20,18,29,14,9,13,12,19,22,14,17),(4446,'2015-03-10 21:49:30','2015-08-29 14:46:02',1,30000089,3,8,5,8,8,24,10,5,30,24,37,18,12,9,18,11,12,13,10,14,29,19,13,23),(4447,'2015-03-10 21:49:30','2015-08-29 14:46:02',1,30003070,111,147,142,133,164,103,61,63,93,107,108,71,160,233,221,139,107,108,147,103,126,117,91,96),(4448,'2015-03-10 21:49:30','2015-08-29 14:46:02',1,30002980,66,74,81,55,53,60,39,48,36,52,54,38,48,65,50,74,44,49,42,65,51,47,55,56),(4449,'2015-03-10 21:49:30','2015-08-29 14:46:02',1,30005218,138,123,170,173,184,132,107,127,213,262,225,212,247,285,261,291,213,140,133,187,383,370,287,252),(4450,'2015-03-10 21:49:30','2015-08-29 14:46:02',1,30000175,32,51,62,51,54,55,36,28,68,143,68,59,48,90,83,81,74,45,39,46,89,81,50,36),(4451,'2015-03-10 21:49:30','2015-08-29 14:46:02',1,30004272,2,7,9,14,11,6,1,4,14,7,35,33,1,9,12,9,1,3,5,1,4,2,1,5),(4452,'2015-03-10 21:49:30','2015-08-29 14:46:02',1,30001369,61,33,93,91,84,77,39,51,73,100,88,83,80,98,94,81,70,33,44,45,100,102,76,69),(4453,'2015-03-10 21:49:30','2015-08-29 14:46:02',1,30002575,23,17,21,42,20,9,12,33,54,65,37,22,23,19,65,16,22,9,29,42,41,40,28,27),(4454,'2015-03-10 21:49:30','2015-08-29 14:46:02',1,30005052,73,161,140,131,117,98,101,121,172,221,168,165,187,214,201,171,152,114,147,160,165,149,111,128),(4455,'2015-03-10 21:49:30','2015-08-29 14:46:02',1,30004292,5,5,6,4,3,11,3,6,14,12,3,5,9,8,12,5,12,2,7,4,5,10,3,2),(4456,'2015-03-10 21:49:30','2015-08-29 14:46:02',1,30002111,1,3,3,1,3,13,2,0,0,1,10,4,2,8,13,2,1,1,32,28,41,10,3,1),(4457,'2015-03-10 21:49:30','2015-08-29 14:46:02',1,30004570,4,0,2,0,0,1,1,2,8,8,0,0,2,3,4,5,1,3,3,2,1,1,1,1),(4458,'2015-03-10 21:49:30','2015-03-10 21:49:30',1,30001453,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(4459,'2015-03-10 21:49:30','2015-03-10 21:49:30',1,30001630,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(4460,'2015-03-10 21:49:30','2015-08-29 14:46:02',1,30005141,2,5,1,1,3,1,1,2,0,0,0,0,0,0,1,1,0,0,0,1,0,0,1,2),(4461,'2015-03-10 21:49:30','2015-08-29 14:46:02',1,30000565,3,0,1,1,1,3,1,1,3,3,1,2,1,0,1,2,2,0,2,2,3,3,0,1),(4462,'2015-03-10 21:49:30','2015-08-29 14:46:02',1,30002422,28,36,30,40,27,51,22,24,26,19,30,32,23,26,16,32,43,17,29,36,35,23,22,18),(4463,'2015-03-10 21:49:30','2015-08-29 14:46:02',1,30001288,33,13,13,7,3,10,13,7,19,36,18,21,25,63,32,8,14,12,4,19,17,11,18,14),(4464,'2015-03-10 21:49:30','2015-08-29 14:46:02',1,30003794,241,280,245,226,219,270,123,145,240,261,226,196,279,334,284,225,206,209,242,300,275,338,239,261),(4465,'2015-03-10 21:49:30','2015-08-29 14:46:02',1,30002675,14,8,20,15,12,10,3,9,11,11,7,10,9,13,4,10,21,8,14,22,20,6,6,8),(4466,'2015-03-10 21:49:30','2015-08-29 14:46:02',1,30002696,17,22,19,28,22,21,22,24,54,44,26,26,45,46,46,25,23,33,29,33,45,35,33,30),(4467,'2015-03-10 21:49:30','2015-08-29 14:46:02',1,30002711,80,127,152,117,118,118,88,107,114,132,172,133,177,166,198,166,191,119,117,146,166,158,157,133),(4468,'2015-03-10 21:49:30','2015-08-29 14:46:02',1,30003376,33,43,40,35,38,22,21,20,41,33,24,26,51,77,66,59,53,20,25,25,44,34,30,21),(4469,'2015-03-10 21:49:30','2015-08-29 14:46:02',1,30005333,7,18,12,14,19,10,9,18,25,39,31,17,25,31,39,27,18,17,14,29,33,27,15,11),(4470,'2015-03-10 21:49:30','2015-08-29 14:46:02',1,30003593,9,6,7,13,11,14,2,10,24,34,13,16,3,13,6,37,7,3,1,5,12,13,6,9),(4471,'2015-03-10 21:49:30','2015-08-29 14:46:02',1,30003607,6,5,7,9,6,8,11,2,4,10,11,11,5,7,12,6,12,4,3,10,13,9,6,8),(4472,'2015-03-10 21:49:30','2015-08-29 14:46:02',1,30000086,22,26,32,18,24,17,16,17,36,31,27,27,35,38,49,42,17,22,38,39,30,28,27,19),(4473,'2015-03-10 21:49:30','2015-08-29 14:46:02',1,30002809,131,227,196,187,176,120,181,175,223,215,158,118,324,298,270,292,222,149,193,298,273,233,219,226),(4474,'2015-03-10 21:49:30','2015-08-29 14:46:02',1,30002200,21,46,27,18,23,28,7,15,27,35,40,32,29,44,50,36,37,10,28,27,41,45,20,16),(4475,'2015-03-10 21:49:30','2015-08-29 14:46:02',1,30004101,19,20,46,16,23,19,23,20,28,45,32,21,39,31,34,27,23,24,14,30,23,10,26,20),(4476,'2015-03-10 21:49:30','2015-08-29 14:46:02',1,30000944,13,16,8,4,17,10,13,14,10,10,12,15,21,58,75,32,19,37,13,19,9,85,47,35),(4477,'2015-03-10 21:49:30','2015-08-29 14:46:02',1,30002801,291,394,377,371,324,353,270,263,367,400,427,394,428,497,514,476,407,322,305,345,451,503,452,388),(4478,'2015-03-10 21:49:30','2015-08-29 14:46:02',1,30002445,8,1,4,3,4,3,0,2,3,2,6,6,1,0,0,1,1,0,1,1,2,3,3,3),(4479,'2015-03-10 21:49:30','2015-08-29 14:46:02',1,30001158,77,214,173,153,126,76,53,142,340,248,119,74,214,357,223,159,118,271,322,147,147,328,104,152),(4480,'2015-03-10 21:49:30','2015-08-29 14:46:02',1,30004377,1,0,0,3,5,3,1,2,7,3,3,4,8,1,2,5,3,3,3,0,2,2,13,16),(4481,'2015-03-10 21:49:30','2015-08-29 14:46:02',1,30004758,33,2,10,9,13,2,10,33,15,27,23,15,28,31,29,34,12,10,4,31,23,12,15,18),(4482,'2015-03-10 21:49:30','2015-08-29 14:46:02',1,30004484,16,48,4,10,12,39,25,13,11,6,10,22,19,20,28,44,24,10,13,24,28,26,37,34),(4483,'2015-03-10 21:49:30','2015-08-29 14:46:02',1,30002835,1,2,5,2,1,2,2,0,1,0,5,7,2,3,9,1,1,0,0,0,1,0,0,2),(4484,'2015-03-10 21:49:30','2015-08-29 14:46:02',1,30005174,4,11,7,18,10,5,8,3,16,14,7,10,25,21,19,25,9,25,17,7,9,9,11,17),(4485,'2015-03-10 21:49:30','2015-08-29 14:46:02',1,30000515,30,7,13,7,7,5,14,8,2,2,2,4,0,11,3,1,1,0,0,0,0,0,0,0),(4486,'2015-03-10 21:49:30','2015-08-29 14:46:02',1,30003667,4,4,5,4,7,12,4,4,2,2,2,2,18,0,2,2,1,11,4,9,0,2,3,4),(4487,'2015-03-10 21:49:30','2015-08-29 14:46:02',1,30005015,671,645,720,632,626,563,437,445,704,801,762,694,767,900,889,799,616,474,676,824,854,871,687,650),(4488,'2015-03-10 21:49:30','2015-08-29 14:46:02',1,30004143,9,19,27,34,16,10,5,10,26,31,29,31,30,52,64,57,36,20,19,33,28,27,23,25),(4489,'2015-03-10 21:49:30','2015-08-29 14:46:02',1,30003639,3,3,1,1,2,1,1,2,2,2,2,1,3,0,2,0,1,4,0,0,10,4,5,4),(4490,'2015-03-10 21:49:30','2015-08-29 14:46:02',1,30000488,0,0,2,0,0,0,0,0,0,0,1,1,1,9,9,2,0,1,68,37,40,18,13,7),(4491,'2015-03-10 21:49:30','2015-08-29 14:46:02',1,30001096,0,3,0,2,3,5,0,0,6,4,0,0,7,1,2,4,2,2,0,1,2,2,0,2),(4492,'2015-03-10 21:49:30','2015-08-29 14:46:02',1,30004211,9,4,5,11,9,6,9,3,5,15,4,2,2,7,7,1,4,0,2,2,7,34,4,8),(4493,'2015-03-10 21:49:30','2015-08-29 14:46:02',1,30001151,0,1,1,0,0,0,0,0,0,0,2,2,3,0,0,0,2,0,0,1,3,1,0,0),(4494,'2015-03-10 21:49:30','2015-08-29 14:46:02',1,30001911,8,37,34,18,14,24,16,11,34,45,57,57,91,53,60,52,69,41,57,79,42,27,38,45),(4495,'2015-03-10 21:49:30','2015-08-29 14:46:02',1,30002890,2,2,2,2,1,3,1,0,8,7,2,3,10,2,5,3,4,0,0,1,6,6,10,6),(4496,'2015-03-10 21:49:30','2015-08-29 14:46:02',1,30004877,9,8,7,13,10,4,16,7,0,0,6,2,2,2,2,3,2,0,4,1,1,1,3,2),(4497,'2015-03-10 21:49:30','2015-03-10 21:49:30',1,30001633,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(4498,'2015-03-10 21:49:30','2015-08-29 14:46:02',1,30000261,41,66,79,40,31,53,18,28,14,23,29,24,91,59,65,74,44,30,55,101,53,31,69,77),(4499,'2015-03-10 21:49:30','2015-08-29 14:46:02',1,30003195,18,52,23,25,19,26,24,17,7,12,13,5,9,10,7,12,5,7,12,13,8,8,25,21),(4500,'2015-03-10 21:49:30','2015-08-29 14:46:02',1,30002382,2,0,1,0,2,4,1,1,0,0,1,3,0,1,1,1,1,0,5,3,6,2,3,4),(4501,'2015-03-10 21:49:30','2015-08-29 14:46:02',1,30004748,6,1,0,0,1,2,0,2,11,13,3,5,5,25,9,18,14,8,10,13,12,14,19,16),(4502,'2015-03-10 21:49:30','2015-08-29 14:46:02',1,30004729,0,0,0,0,0,0,0,4,1,1,4,4,1,1,1,1,2,3,0,2,3,1,1,1),(4503,'2015-03-10 21:49:30','2015-08-29 14:46:02',1,30003673,9,18,3,22,18,28,7,7,5,3,2,3,3,6,4,6,18,3,9,9,17,8,0,1),(4504,'2015-03-10 21:49:30','2015-08-29 14:46:02',1,30003299,9,5,5,3,4,2,1,4,2,8,11,8,9,2,4,2,2,14,15,12,9,9,6,4),(4505,'2015-03-10 21:49:30','2015-08-29 14:46:02',1,30004745,26,11,6,6,10,7,5,15,19,22,10,11,18,25,20,44,21,12,9,23,36,37,32,25),(4506,'2015-03-10 21:49:30','2015-08-29 14:46:02',1,30001959,4,7,6,4,2,3,11,14,6,6,7,10,3,8,8,19,21,4,2,12,19,25,9,8),(4507,'2015-03-10 21:49:30','2015-03-10 21:49:30',1,30000330,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(4508,'2015-03-10 21:49:30','2015-08-29 14:46:02',1,30004352,30,39,21,47,33,73,42,38,19,24,24,24,19,20,30,28,14,11,25,16,19,24,19,8),(4509,'2015-03-10 21:49:30','2015-08-29 14:46:02',1,30003715,71,114,121,59,54,49,22,83,300,217,132,93,287,245,112,138,54,82,212,110,106,187,72,72),(4510,'2015-03-10 21:49:30','2015-03-10 21:49:30',1,30001631,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(4511,'2015-03-10 21:49:30','2015-08-29 14:46:02',1,30004529,4,0,3,3,3,1,3,2,1,2,1,6,2,0,1,0,2,2,0,0,0,1,2,4),(4512,'2015-03-10 21:49:30','2015-08-29 14:46:02',1,30004676,2,1,2,1,2,9,7,3,4,7,3,2,6,6,9,4,9,5,7,5,3,2,4,5),(4513,'2015-03-10 21:49:30','2015-08-29 14:46:02',1,30000303,18,45,32,18,15,25,5,12,6,8,8,11,33,33,43,29,26,6,17,20,13,14,22,23),(4514,'2015-03-10 21:49:30','2015-08-29 14:46:02',1,30001771,9,3,6,6,6,0,6,3,14,20,15,8,7,4,3,10,2,0,6,7,7,7,5,6),(4515,'2015-03-10 21:49:30','2015-08-29 14:46:02',1,30004842,7,3,4,7,2,5,4,18,3,3,8,5,9,4,6,8,3,2,9,2,13,8,5,4),(4516,'2015-03-10 21:49:30','2015-08-29 14:46:02',1,30003287,8,3,2,2,3,5,1,4,4,10,9,5,5,10,9,4,3,9,7,6,10,2,2,2),(4517,'2015-03-10 21:49:30','2015-08-29 14:46:02',1,30004735,2,46,2,6,2,3,3,5,33,18,16,32,42,131,12,9,10,3,12,19,13,16,7,6),(4518,'2015-03-10 21:49:30','2015-08-29 14:46:02',1,30004870,54,52,48,55,42,79,68,39,54,31,23,16,25,32,34,43,27,14,129,166,32,59,56,47),(4519,'2015-03-10 21:49:30','2015-08-29 14:46:02',1,30001548,4,13,1,7,8,4,6,3,3,9,10,5,9,2,3,20,26,5,8,16,8,8,13,11),(4520,'2015-03-10 21:49:30','2015-08-29 14:46:02',1,30001916,2,0,4,0,1,8,1,2,5,1,4,3,8,5,4,2,4,5,2,2,2,2,3,2),(4521,'2015-03-10 21:49:30','2015-08-29 14:46:02',1,30003943,24,8,29,19,18,18,22,19,18,24,20,15,44,40,23,18,19,25,20,19,10,14,15,19),(4522,'2015-03-10 21:49:30','2015-08-29 14:46:02',1,30003966,17,6,7,8,11,7,15,15,16,24,15,14,27,17,10,12,11,10,13,12,6,7,21,21),(4523,'2015-03-10 21:49:30','2015-08-29 14:46:02',1,30001228,46,43,58,59,42,42,41,51,120,90,44,54,64,123,189,181,60,93,337,158,106,93,52,49),(4524,'2015-03-10 21:49:30','2015-08-29 14:46:02',1,30002841,9,7,9,12,23,7,1,8,4,3,6,8,27,10,11,3,7,2,2,13,6,7,11,5),(4525,'2015-03-10 21:49:30','2015-08-29 14:46:02',1,30003465,24,24,30,30,41,15,16,36,54,122,61,32,80,35,34,59,28,13,16,27,25,21,10,11),(4526,'2015-03-10 21:49:30','2015-08-29 14:46:02',1,30005070,7,19,9,8,10,12,5,13,8,10,19,6,35,21,26,9,10,13,10,11,19,21,11,12),(4527,'2015-03-10 21:49:30','2015-08-29 14:46:02',1,30002100,24,41,41,29,36,49,30,47,48,39,35,41,34,64,68,62,42,68,41,32,43,26,53,39),(4528,'2015-03-10 21:49:30','2015-08-29 14:46:02',1,30005245,19,31,18,25,19,24,58,78,27,31,48,54,42,37,36,42,43,16,61,63,70,54,70,63),(4529,'2015-03-10 21:49:30','2015-08-29 14:46:02',1,30001447,69,94,113,139,100,64,83,75,118,114,268,230,92,105,109,298,115,53,63,84,114,127,135,120),(4530,'2015-03-10 21:49:30','2015-08-29 14:46:02',1,30005143,4,0,0,0,1,0,0,6,1,0,0,0,0,0,1,1,1,0,0,1,2,1,0,1),(4531,'2015-03-10 21:49:30','2015-08-29 14:46:02',1,30003889,23,36,40,32,29,24,9,23,110,185,156,89,11,37,24,21,17,24,34,29,20,30,18,14),(4532,'2015-03-10 21:49:30','2015-08-29 14:46:02',1,30002813,258,390,294,279,258,226,268,257,227,233,206,164,258,296,302,335,256,216,307,336,305,262,249,279),(4533,'2015-03-10 21:49:30','2015-08-29 14:46:02',1,30003407,16,1,9,7,3,8,3,7,8,11,7,3,7,18,25,12,5,5,6,10,13,9,1,6),(4534,'2015-03-10 21:49:30','2015-08-29 14:46:02',1,30001437,52,55,39,51,47,55,21,40,58,47,43,37,43,38,42,41,32,69,63,44,39,35,45,30),(4535,'2015-03-10 21:49:30','2015-08-29 14:46:02',1,30003091,62,63,42,36,62,28,21,32,22,30,49,37,70,45,51,36,28,32,78,82,43,36,45,49),(4536,'2015-03-10 21:49:30','2015-08-29 14:46:02',1,30002812,54,77,89,54,62,40,51,32,58,49,63,51,88,104,77,74,56,48,60,85,71,64,45,53),(4537,'2015-03-10 21:49:30','2015-08-29 14:46:02',1,30000001,219,240,243,221,230,213,154,182,352,341,312,309,422,448,452,367,312,248,292,337,320,274,305,294),(4538,'2015-03-10 21:49:30','2015-08-29 14:46:02',1,30005199,852,913,1028,868,832,745,588,683,948,1074,1024,889,1071,1229,1221,1105,922,723,885,1139,1226,1231,994,900),(4539,'2015-03-10 21:49:30','2015-08-29 14:46:02',1,30002979,79,95,87,57,65,67,43,59,42,60,57,42,78,64,68,75,41,44,38,61,52,43,49,55),(4540,'2015-03-10 21:49:30','2015-08-29 14:46:02',1,30005205,313,183,180,166,145,122,119,178,224,267,193,172,215,213,190,163,139,137,227,322,235,251,188,146),(4541,'2015-03-10 21:49:30','2015-08-29 14:46:02',1,30001441,44,48,7,7,6,13,9,9,10,20,11,12,7,10,10,16,5,6,9,15,17,19,14,9),(4542,'2015-03-10 21:49:30','2015-08-29 14:46:02',1,30001703,20,38,22,39,39,39,17,20,50,50,31,31,53,58,67,56,43,41,18,50,58,40,26,33),(4543,'2015-03-10 21:49:30','2015-08-29 14:46:02',1,30002778,52,75,70,59,53,31,72,42,90,88,99,72,97,79,88,90,64,41,61,78,72,59,60,54),(4544,'2015-03-10 21:49:30','2015-08-29 14:46:02',1,30001671,654,816,775,780,697,668,572,695,1260,1320,1279,1041,1139,1297,1328,1217,1042,852,1084,1480,1317,1305,1203,1157),(4545,'2015-03-10 21:49:30','2015-08-29 14:46:02',1,30002274,3,18,7,7,12,3,4,2,12,22,30,27,19,21,31,19,29,4,10,13,20,9,9,6),(4546,'2015-03-10 21:49:30','2015-08-29 14:46:02',1,30000195,40,54,110,58,65,24,34,37,63,102,111,85,202,112,279,86,102,38,70,77,182,90,104,184),(4547,'2015-03-10 21:49:30','2015-08-29 14:46:02',1,30004937,21,50,24,16,12,18,19,77,33,36,17,42,44,202,93,43,42,14,12,77,57,43,48,55),(4548,'2015-03-10 21:49:30','2015-08-29 14:46:02',1,30001051,5,2,2,2,2,8,5,6,8,6,0,2,3,7,12,28,25,1,4,0,1,2,6,7),(4549,'2015-03-10 21:49:30','2015-08-29 14:46:02',1,30002502,11,32,21,9,8,19,13,4,9,9,7,7,10,6,3,18,20,13,7,8,12,17,18,13),(4550,'2015-03-10 21:49:30','2015-08-29 14:46:02',1,30005089,7,6,6,21,18,10,5,8,14,6,8,14,7,35,34,6,8,10,12,20,27,15,5,7),(4551,'2015-03-10 21:49:30','2015-08-29 14:46:02',1,30004638,7,15,8,30,30,14,0,3,384,273,168,127,270,445,341,269,210,232,538,378,132,109,43,49),(4552,'2015-03-10 21:49:30','2015-08-29 14:46:02',1,30003907,10,30,23,6,6,11,14,9,77,56,38,20,13,84,55,44,14,9,7,32,25,27,28,30),(4553,'2015-03-10 21:49:30','2015-08-29 14:46:02',1,30045350,5,10,10,8,6,7,6,6,11,12,12,6,11,16,14,22,33,14,5,21,27,16,16,19),(4554,'2015-03-10 21:49:30','2015-08-29 14:46:02',1,30003128,4,1,0,3,5,21,3,0,10,10,4,8,4,3,2,1,2,1,2,3,1,0,5,2),(4555,'2015-03-10 21:49:30','2015-08-29 14:46:02',1,30005200,313,183,178,163,128,132,121,172,232,271,173,163,201,208,188,157,162,137,235,330,245,237,205,162),(4556,'2015-03-10 21:49:30','2015-08-29 14:46:02',1,30004158,11,10,6,8,9,8,7,4,0,1,4,13,11,11,11,7,9,14,55,13,3,8,11,8),(4557,'2015-03-10 21:49:30','2015-08-29 14:46:02',1,30001645,126,95,116,115,112,85,68,56,120,145,106,112,137,126,121,142,93,121,69,110,192,143,115,88),(4558,'2015-03-10 21:49:30','2015-08-29 14:46:02',1,30002763,103,155,196,117,134,167,98,124,176,184,217,169,198,219,243,220,222,136,178,171,167,173,176,151),(4559,'2015-03-10 21:49:30','2015-08-29 14:46:02',1,30002385,262,312,310,310,247,262,196,216,409,391,370,357,427,475,469,441,333,239,290,342,429,368,309,307),(4560,'2015-03-10 21:49:30','2015-08-29 14:46:02',1,30003507,47,59,53,76,60,46,40,60,68,66,63,82,78,91,91,87,59,60,56,70,99,80,93,88),(4561,'2015-03-10 21:49:30','2015-08-29 14:46:02',1,30001681,20,71,43,40,36,35,26,38,65,51,46,46,112,59,61,108,95,111,81,110,59,72,85,84),(4562,'2015-03-10 21:49:30','2015-08-29 14:46:02',1,30045335,17,14,9,15,14,13,14,14,9,14,12,14,8,24,23,26,48,5,10,8,22,14,12,14),(4563,'2015-03-10 21:49:30','2015-08-29 14:46:02',1,30000926,11,8,7,5,7,10,0,2,17,22,15,12,14,12,2,3,8,3,3,4,1,5,0,2),(4564,'2015-03-10 21:49:30','2015-08-29 14:46:02',1,30001733,124,222,180,161,149,119,107,126,187,185,205,153,276,234,228,220,181,130,182,278,197,201,216,168),(4565,'2015-03-10 21:49:30','2015-08-29 14:46:02',1,30002038,1,10,46,15,14,11,2,2,2,6,2,4,3,0,2,5,3,0,3,1,1,1,1,1),(4566,'2015-03-10 21:49:30','2015-08-29 14:46:02',1,30001760,5,4,4,3,3,0,1,6,0,0,0,0,0,0,0,1,2,4,2,1,11,7,5,4),(4567,'2015-03-10 21:49:30','2015-08-29 14:46:02',1,30001842,23,78,37,62,53,53,35,23,62,63,54,63,69,129,117,97,77,16,53,81,97,89,62,68),(4568,'2015-03-10 21:49:30','2015-08-29 14:46:02',1,30003000,17,18,14,16,10,15,9,18,11,14,3,6,19,18,12,21,8,13,22,10,8,9,14,10),(4569,'2015-03-10 21:49:30','2015-08-29 14:46:02',1,30001677,69,81,102,71,84,67,77,53,143,133,164,150,81,113,115,112,108,37,98,103,129,126,97,80),(4570,'2015-03-10 21:49:30','2015-08-29 14:46:02',1,30002966,2,11,21,17,16,13,1,1,6,5,10,7,7,4,7,13,12,7,2,5,9,7,7,8),(4571,'2015-03-10 21:49:30','2015-08-29 14:46:02',1,30002226,195,180,187,221,244,159,90,116,205,199,223,220,192,206,232,261,202,123,165,209,220,239,168,166),(4572,'2015-03-10 21:49:30','2015-08-29 14:46:02',1,30002720,54,63,54,40,44,33,24,39,44,26,43,38,66,79,85,54,28,60,63,80,38,39,78,42),(4573,'2015-03-10 21:49:30','2015-08-29 14:46:02',1,30005314,1,10,10,5,7,6,13,2,16,16,11,6,9,3,7,9,5,3,12,7,11,20,16,9),(4574,'2015-03-10 21:49:30','2015-08-29 14:46:02',1,30000069,4,28,17,14,19,27,16,10,18,15,25,26,15,20,24,20,21,24,15,19,33,19,20,15),(4575,'2015-03-10 21:49:30','2015-03-10 21:49:30',1,30001464,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(4576,'2015-03-10 21:49:30','2015-03-10 21:49:30',1,30000352,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(4577,'2015-03-10 21:49:30','2015-08-29 14:46:02',1,30000076,37,51,52,32,42,32,29,30,51,46,56,40,72,67,52,70,45,36,63,60,55,67,38,52),(4578,'2015-03-10 21:49:30','2015-08-29 14:46:02',1,30005334,74,108,115,79,88,60,69,52,75,74,93,79,104,132,123,110,88,61,77,92,114,116,79,72),(4579,'2015-03-10 21:49:30','2015-08-29 14:46:02',1,30000100,7,6,4,6,6,1,5,3,4,4,10,8,3,14,6,6,8,13,9,6,8,9,1,3),(4580,'2015-03-10 21:49:30','2015-08-29 14:46:02',1,30003932,4,33,2,12,11,10,12,17,11,4,24,21,10,10,11,5,7,3,2,12,18,21,4,4),(4581,'2015-03-10 21:49:30','2015-08-29 14:46:02',1,30002784,59,117,117,96,73,58,65,69,89,86,86,84,140,117,109,135,89,91,136,101,104,105,90,66),(4582,'2015-03-10 21:49:30','2015-08-29 14:46:02',1,30001684,4,5,4,4,5,2,7,7,6,4,13,17,64,14,9,4,6,5,9,4,6,4,5,9),(4583,'2015-03-10 21:49:30','2015-08-29 14:46:02',1,30004298,29,43,25,28,27,46,17,32,61,210,61,56,60,147,141,102,64,68,238,127,57,58,55,65),(4584,'2015-03-10 21:49:30','2015-08-29 14:46:02',1,30001644,30,26,28,49,31,36,18,29,35,53,49,37,55,54,65,55,81,24,27,35,52,40,50,43),(4585,'2015-03-10 21:49:30','2015-08-29 14:46:02',1,30002474,23,23,23,34,34,31,51,23,16,11,7,16,25,135,89,35,19,6,16,27,14,12,10,12),(4586,'2015-03-10 21:49:30','2015-08-29 14:46:02',1,30000742,4,23,13,8,11,3,4,24,1,0,5,0,7,7,5,9,6,5,1,4,2,2,6,19),(4587,'2015-03-10 21:49:30','2015-08-29 14:46:02',1,30001908,8,2,9,8,10,10,6,0,14,19,3,2,5,7,13,7,3,2,6,7,3,0,2,5),(4588,'2015-03-10 21:49:30','2015-08-29 14:46:02',1,30002584,11,11,32,7,6,19,13,35,14,11,4,5,48,11,40,31,14,13,21,186,8,11,14,23),(4589,'2015-03-10 21:49:30','2015-08-29 14:46:02',1,30004047,3,3,1,1,2,0,7,4,3,3,6,7,3,1,0,7,2,2,2,7,5,5,6,5),(4590,'2015-03-10 21:49:30','2015-08-29 14:46:02',1,30004960,8,9,7,6,2,6,5,37,11,9,7,32,20,124,8,9,12,4,5,6,27,15,16,11),(4591,'2015-03-10 21:49:30','2015-03-10 21:49:30',1,30001461,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(4592,'2015-03-10 21:49:30','2015-03-10 21:49:30',1,30001519,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(4593,'2015-03-10 21:49:30','2015-08-29 14:46:02',1,30001407,73,93,73,73,66,75,59,79,119,134,123,125,131,108,110,86,105,62,82,104,81,73,64,68),(4594,'2015-03-10 21:49:30','2015-08-29 14:46:02',1,30032505,3,9,11,5,4,9,2,2,4,12,8,11,7,9,10,6,13,5,12,4,5,7,8,7),(4595,'2015-03-10 21:49:30','2015-08-29 14:46:02',1,30002062,74,131,129,81,79,82,66,65,211,198,103,68,132,154,158,112,123,102,106,158,147,120,105,94),(4596,'2015-03-10 21:49:30','2015-08-29 14:46:02',1,30003383,1,1,1,5,2,3,3,0,4,6,9,5,6,4,4,0,1,17,2,4,9,13,6,7),(4597,'2015-03-10 21:49:30','2015-08-29 14:46:02',1,30003052,144,209,259,279,226,195,163,206,333,357,238,216,339,301,317,249,221,231,230,208,265,263,264,233),(4598,'2015-03-10 21:49:30','2015-08-29 14:46:02',1,30003436,46,82,39,30,28,32,30,31,43,51,78,58,47,47,43,50,52,38,50,59,63,82,60,64),(4599,'2015-03-10 21:49:30','2015-08-29 14:46:02',1,30002532,15,21,10,21,30,11,4,19,25,14,21,16,54,26,19,20,15,4,7,16,10,7,9,9),(4600,'2015-03-10 21:49:30','2015-08-29 14:46:02',1,30005212,9,16,23,5,7,36,2,6,20,32,23,39,27,4,9,10,15,9,15,19,26,14,22,21),(4601,'2015-03-10 21:49:30','2015-08-29 14:46:02',1,30001429,81,102,86,101,91,76,60,86,105,73,94,105,88,74,90,72,72,102,82,81,94,104,81,80),(4602,'2015-03-10 21:49:30','2015-08-29 14:46:02',1,30003020,24,30,34,29,40,40,31,43,48,62,55,52,70,63,51,51,33,51,57,67,61,44,67,63),(4603,'2015-03-10 21:49:30','2015-08-29 14:46:02',1,30002191,58,109,123,99,100,114,67,59,97,105,101,115,166,151,161,125,82,69,79,113,98,102,97,87),(4604,'2015-03-10 21:49:30','2015-08-29 14:46:02',1,30003402,30,40,61,69,59,32,30,38,41,44,37,39,39,64,70,41,37,46,46,31,53,44,46,56),(4605,'2015-03-10 21:49:30','2015-08-29 14:46:02',1,30005301,217,296,308,297,268,260,220,204,368,349,354,293,361,398,451,427,355,273,333,407,405,383,364,321),(4606,'2015-03-10 21:49:30','2015-08-29 14:46:02',1,30003606,5,14,10,10,4,18,7,1,5,11,12,4,6,2,4,7,3,4,4,8,15,13,8,8),(4607,'2015-03-10 21:49:30','2015-08-29 14:46:02',1,30001127,3,4,11,3,0,19,12,17,34,25,36,19,12,8,6,32,10,1,5,8,15,12,20,17),(4608,'2015-03-10 21:49:30','2015-08-29 14:46:02',1,30002327,2,0,2,1,2,0,5,4,0,0,0,0,1,0,0,4,1,0,0,0,0,0,1,0),(4609,'2015-03-10 21:49:30','2015-08-29 14:46:02',1,30000588,13,47,13,39,7,27,4,13,51,36,13,9,125,72,58,14,9,16,15,44,43,43,12,7),(4610,'2015-03-10 21:49:30','2015-08-29 14:46:02',1,30004935,6,13,3,4,4,5,6,55,15,15,6,6,13,10,10,23,6,5,2,12,17,11,15,15),(4611,'2015-03-10 21:49:30','2015-08-29 14:46:02',1,30000641,0,0,1,2,0,0,1,5,6,4,4,1,4,0,0,2,2,1,3,5,2,3,0,1),(4612,'2015-03-10 21:49:30','2015-08-29 14:46:02',1,30004500,14,5,7,5,7,19,16,21,18,17,22,11,31,64,53,83,19,8,33,23,44,33,84,78),(4613,'2015-03-10 21:49:30','2015-08-29 14:46:02',1,30004452,12,13,29,11,14,20,19,56,21,15,32,21,103,78,71,27,40,43,47,120,78,44,58,59),(4614,'2015-03-10 21:49:30','2015-08-29 14:46:02',1,30005071,0,11,2,3,3,12,0,2,15,17,4,1,1,6,10,6,10,0,1,5,2,3,5,0),(4615,'2015-03-10 21:49:30','2015-08-29 14:46:02',1,30003431,78,88,99,67,66,110,40,55,71,78,59,64,95,143,135,133,77,70,97,102,113,113,74,84),(4616,'2015-03-10 21:49:30','2015-08-29 14:46:02',1,30002069,51,37,47,47,41,50,26,25,44,49,59,40,39,39,43,31,43,41,27,46,55,56,45,46),(4617,'2015-03-10 21:49:30','2015-08-29 14:46:02',1,30002562,33,40,23,46,28,38,24,43,41,44,34,27,37,50,53,45,50,10,16,26,38,32,35,30),(4618,'2015-03-10 21:49:30','2015-08-29 14:46:02',1,30000869,14,6,21,9,10,17,7,26,10,17,17,18,15,10,14,10,9,9,10,4,24,20,6,11),(4619,'2015-03-10 21:49:30','2015-08-29 14:46:02',1,30002668,102,140,133,132,141,82,61,94,137,116,138,114,142,156,134,164,133,91,115,144,125,133,101,106),(4620,'2015-03-10 21:49:30','2015-08-29 14:46:02',1,30042715,75,104,99,110,99,100,82,79,134,143,153,131,215,215,178,172,137,133,144,156,180,182,191,158),(4621,'2015-03-10 21:49:30','2015-08-29 14:46:02',1,30002508,99,123,114,146,143,94,86,92,145,148,139,151,140,161,171,133,103,123,125,140,137,127,137,118),(4622,'2015-03-10 21:49:30','2015-08-29 14:46:02',1,30004423,3,0,2,2,3,1,7,4,4,2,1,1,6,12,8,9,6,80,26,17,9,8,27,25),(4623,'2015-03-10 21:49:30','2015-08-29 14:46:02',1,30001375,283,313,372,333,306,310,214,271,389,410,373,373,408,478,448,483,384,236,332,447,497,470,393,350),(4624,'2015-03-10 21:49:30','2015-08-29 14:46:02',1,30001412,44,24,48,42,26,41,33,44,36,45,56,45,51,40,43,45,40,27,53,60,55,56,54,47),(4625,'2015-03-10 21:49:30','2015-08-29 14:46:02',1,30045327,18,10,3,26,30,40,19,27,23,33,20,22,29,25,28,24,23,15,23,18,40,43,37,37),(4626,'2015-03-10 21:49:30','2015-08-29 14:46:02',1,30000812,24,9,9,27,44,14,7,15,2,2,7,11,3,5,5,0,2,3,0,2,5,3,5,4),(4627,'2015-03-10 21:49:30','2015-08-29 14:46:02',1,30003733,7,5,14,2,1,11,17,39,14,13,11,8,30,19,7,26,9,28,17,5,18,15,5,3),(4628,'2015-03-10 21:49:30','2015-08-29 14:46:02',1,30003742,62,49,37,22,49,14,16,26,55,65,51,50,51,69,61,52,48,35,29,59,119,55,97,98),(4629,'2015-03-10 21:49:30','2015-08-29 14:46:02',1,30004634,2,5,8,9,5,1,3,5,1,1,4,6,6,6,4,0,3,5,5,10,13,4,9,9),(4630,'2015-03-10 21:49:30','2015-08-29 14:46:02',1,30004275,4,15,3,3,1,14,6,9,11,20,7,5,13,11,9,5,12,13,9,9,0,3,4,9),(4631,'2015-03-10 21:49:30','2015-08-29 14:46:02',1,30001379,599,666,734,708,671,502,378,458,642,646,583,562,726,762,732,804,565,412,538,668,704,697,531,554),(4632,'2015-03-10 21:49:30','2015-08-29 14:46:02',1,30002770,11,14,16,10,13,10,7,8,11,16,34,31,12,7,10,18,14,6,8,16,19,17,11,21),(4633,'2015-03-10 21:49:30','2015-08-29 14:46:02',1,30003064,31,34,30,19,34,18,25,27,24,29,41,30,43,36,40,37,20,44,32,54,41,32,30,32),(4634,'2015-03-10 21:49:30','2015-08-29 14:46:02',1,30004098,51,60,35,49,42,47,35,25,85,98,58,64,69,73,75,85,91,47,64,83,77,89,60,64),(4635,'2015-03-10 21:49:30','2015-08-29 14:46:02',1,30002086,13,9,20,10,9,6,5,6,23,19,28,28,23,28,14,37,31,23,20,27,18,22,42,41),(4636,'2015-03-10 21:49:30','2015-08-29 14:46:02',1,30000128,193,306,359,200,226,248,192,194,379,400,356,327,383,463,459,393,327,289,297,337,419,417,298,292),(4637,'2015-03-10 21:49:30','2015-08-29 14:46:02',1,30003958,0,0,0,3,3,0,1,1,4,6,1,0,0,2,3,2,0,2,1,3,0,0,1,0),(4638,'2015-03-10 21:49:30','2015-08-29 14:46:02',1,30002073,89,131,141,144,137,79,63,57,136,129,165,126,80,105,128,93,77,22,48,59,80,68,85,80),(4639,'2015-03-10 21:49:30','2015-08-29 14:46:02',1,30000263,54,84,81,81,80,119,55,73,51,85,164,73,157,173,171,143,84,90,136,213,141,114,71,73),(4640,'2015-03-10 21:49:30','2015-08-29 14:46:02',1,30002614,2,14,8,13,2,10,3,5,9,4,7,12,9,49,8,12,4,3,27,6,5,5,19,23),(4641,'2015-03-10 21:49:30','2015-08-29 14:46:02',1,30003779,6,6,7,16,15,4,2,5,5,6,6,8,6,9,4,3,6,1,2,4,23,24,13,15),(4642,'2015-03-10 21:49:30','2015-08-29 14:46:02',1,30002901,31,91,49,51,49,34,46,42,414,447,643,468,941,738,511,461,321,656,307,428,1083,323,202,175),(4643,'2015-03-10 21:49:30','2015-08-29 14:46:02',1,30003323,28,46,48,36,36,54,17,25,16,20,17,13,27,22,13,22,37,22,29,47,58,66,103,94),(4644,'2015-03-10 21:49:30','2015-08-29 14:46:02',1,30004844,17,21,8,3,4,3,42,52,5,4,3,4,2,6,11,5,2,12,10,18,6,10,8,3),(4645,'2015-03-10 21:49:30','2015-08-29 14:46:02',1,30000485,0,5,6,1,0,3,1,1,32,48,17,14,27,52,40,27,8,13,30,45,21,9,16,11),(4646,'2015-03-10 21:49:30','2015-08-29 14:46:02',1,30002353,6,3,4,9,13,8,1,10,1,5,4,2,28,6,8,7,3,2,5,2,9,12,21,10),(4647,'2015-03-10 21:49:30','2015-08-29 14:46:02',1,30003891,43,33,51,41,31,49,32,15,166,190,259,230,44,16,15,37,36,35,23,33,30,17,22,22),(4648,'2015-03-10 21:49:30','2015-08-29 14:46:02',1,30000601,1,14,3,8,7,0,0,6,9,8,8,8,27,19,20,24,2,34,20,10,15,32,19,18),(4649,'2015-03-10 21:49:30','2015-08-29 14:46:02',1,30002494,19,14,12,5,6,18,7,10,13,17,16,18,10,7,10,11,14,1,8,7,10,10,21,23),(4650,'2015-03-10 21:49:30','2015-08-29 14:46:02',1,30000747,3,8,0,5,6,1,2,1,2,1,5,5,8,4,7,6,19,0,2,0,2,6,3,5),(4651,'2015-03-10 21:49:30','2015-08-29 14:46:02',1,30002957,58,76,98,81,75,218,38,32,61,44,39,28,39,42,61,67,32,54,42,55,42,41,36,49),(4652,'2015-03-10 21:49:30','2015-08-29 14:46:02',1,30005156,2,8,4,13,14,3,10,2,8,9,6,8,10,18,16,17,11,22,15,11,13,13,23,29),(4653,'2015-03-10 21:49:30','2015-08-29 14:46:02',1,30004436,3,5,13,8,11,8,1,52,21,24,20,12,21,16,16,12,25,23,23,39,50,22,41,49),(4654,'2015-03-10 21:49:30','2015-08-29 14:46:02',1,30001788,1,0,0,0,1,1,0,0,1,4,2,3,8,3,0,2,6,0,0,1,4,4,1,2),(4655,'2015-03-10 21:49:30','2015-08-29 14:46:02',1,30000575,24,76,64,73,36,51,30,35,3,2,2,7,3,1,3,1,1,38,53,0,0,0,2,2),(4656,'2015-03-10 21:49:30','2015-08-29 14:46:02',1,30003717,75,20,27,28,34,25,15,11,32,35,69,51,43,75,80,46,60,21,51,40,71,63,70,57),(4657,'2015-03-10 21:49:30','2015-08-29 14:46:02',1,30004024,4,8,8,13,5,20,11,3,8,6,3,4,6,3,5,4,6,6,6,2,7,5,2,2),(4658,'2015-03-10 21:49:30','2015-08-29 14:46:02',1,30001997,24,114,23,24,26,24,10,11,6,10,20,17,14,22,11,14,9,23,16,9,12,10,17,12),(4659,'2015-03-10 21:49:30','2015-03-10 21:49:30',1,30000404,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(4660,'2015-03-10 21:49:30','2015-08-29 14:46:02',1,30000660,4,3,5,1,1,1,0,9,4,1,1,2,6,1,0,3,4,1,2,2,2,3,0,0),(4661,'2015-03-10 21:49:30','2015-03-10 21:49:30',1,30000394,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(4662,'2015-03-10 21:49:30','2015-08-29 14:46:02',1,30004439,0,3,0,0,0,2,2,14,6,9,9,3,4,14,10,10,14,4,7,12,22,19,27,29),(4663,'2015-03-10 21:49:30','2015-08-29 14:46:02',1,30002463,38,45,61,47,45,54,47,45,24,45,26,26,19,14,19,30,41,25,32,39,97,48,32,31),(4664,'2015-03-10 21:49:30','2015-08-29 14:46:02',1,30000493,2,4,11,11,8,4,8,0,1,3,6,3,10,15,4,8,8,1,2,3,16,7,15,4),(4665,'2015-03-10 21:49:30','2015-08-29 14:46:02',1,30003637,2,1,1,1,2,1,1,3,1,1,1,1,2,0,2,1,1,1,0,0,0,1,2,3),(4666,'2015-03-10 21:49:30','2015-08-29 14:46:02',1,30000459,4,10,9,6,4,24,8,6,6,12,20,11,16,16,12,13,12,3,1,11,9,13,9,9),(4667,'2015-03-10 21:49:30','2015-08-29 14:46:02',1,30000629,1,0,3,7,4,3,0,0,0,0,0,3,0,3,4,0,0,0,0,1,0,0,0,1),(4668,'2015-03-10 21:49:30','2015-08-29 14:46:02',1,30001155,47,74,120,34,33,68,45,77,243,321,213,96,295,268,322,205,162,240,111,218,157,195,185,134),(4669,'2015-03-10 21:49:30','2015-08-29 14:46:02',1,30003240,7,3,6,4,3,1,1,1,11,4,2,2,1,2,1,3,2,0,1,8,3,4,1,2),(4670,'2015-03-10 21:49:30','2015-08-29 14:46:02',1,30004594,7,19,6,3,11,25,2,2,1,8,0,1,8,7,8,3,4,11,4,25,14,15,1,1),(4671,'2015-03-10 21:49:30','2015-08-29 14:46:02',1,30002951,20,18,7,10,14,13,7,23,27,17,21,19,21,20,14,10,11,1,12,18,15,11,10,9),(4672,'2015-03-10 21:49:30','2015-08-29 14:46:02',1,30000765,2,8,9,6,10,0,1,3,5,6,7,9,3,2,1,4,2,0,1,7,3,7,9,9),(4673,'2015-03-10 21:49:30','2015-08-29 14:46:02',1,30000878,1,4,18,5,0,0,6,8,2,0,0,1,0,0,0,0,0,2,0,1,1,2,1,4),(4674,'2015-03-10 21:49:30','2015-08-29 14:46:02',1,30005131,2,6,3,9,4,1,2,0,2,0,0,1,1,6,4,4,8,1,5,2,2,2,0,0),(4675,'2015-03-10 21:49:30','2015-08-29 14:46:02',1,30001865,17,24,10,5,9,19,15,15,143,137,45,40,55,73,61,59,22,14,19,66,223,41,39,34),(4676,'2015-03-10 21:49:30','2015-08-29 14:46:02',1,30003347,7,1,5,2,3,1,5,3,1,2,6,3,1,3,0,2,7,3,4,2,2,1,1,0),(4677,'2015-03-10 21:49:30','2015-08-29 14:46:02',1,30000514,24,14,18,10,10,8,8,17,3,4,6,9,12,13,5,11,13,1,4,11,1,1,2,2),(4678,'2015-03-10 21:49:30','2015-08-29 14:46:02',1,30004441,4,10,13,11,17,16,0,32,19,18,30,13,18,22,23,11,34,34,23,24,57,23,28,32),(4679,'2015-03-10 21:49:30','2015-08-29 14:46:02',1,30001585,4,0,0,0,1,0,0,0,2,2,2,0,3,2,6,6,1,3,3,2,1,1,8,4),(4680,'2015-03-10 21:49:30','2015-08-29 14:46:02',1,30000555,0,2,2,6,2,2,0,1,5,4,3,2,1,7,5,2,4,5,6,5,10,6,1,0),(4681,'2015-03-10 21:49:30','2015-03-10 21:49:30',1,30000329,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(4682,'2015-03-10 21:49:30','2015-08-29 14:46:02',1,30003623,2,9,4,9,11,9,7,12,4,2,5,6,5,11,7,4,11,5,5,4,5,4,4,5),(4683,'2015-03-10 21:49:30','2015-08-29 14:46:02',1,30000703,14,31,20,23,24,36,26,16,27,47,18,17,13,51,52,13,7,9,15,34,50,51,25,47),(4684,'2015-03-10 21:49:30','2015-08-29 14:46:02',1,30001898,6,25,23,14,5,4,11,10,12,14,19,26,48,35,35,30,20,22,13,33,25,24,27,35),(4685,'2015-03-10 21:49:30','2015-08-29 14:46:02',1,30004834,20,3,4,2,0,3,38,24,4,4,9,4,6,3,6,10,1,6,14,4,16,17,4,3),(4686,'2015-03-10 21:49:30','2015-08-29 14:46:02',1,30000948,3,4,5,0,3,2,1,4,1,1,2,2,4,2,3,4,2,3,1,1,0,1,2,1),(4687,'2015-03-10 21:49:30','2015-08-29 14:46:02',1,30002608,13,4,13,19,19,4,24,24,1,3,3,3,2,6,3,5,6,2,4,1,5,12,12,11),(4688,'2015-03-10 21:49:30','2015-08-29 14:46:02',1,30003372,5,11,5,1,0,2,4,6,5,2,0,3,4,8,5,1,0,5,0,0,4,5,5,4),(4689,'2015-03-10 21:49:30','2015-08-29 14:46:02',1,30005126,0,0,3,5,3,1,0,1,2,0,0,0,0,1,0,1,2,2,0,0,0,0,1,1),(4690,'2015-03-10 21:49:30','2015-08-29 14:46:02',1,30003663,11,15,19,26,13,64,8,15,7,12,9,11,17,9,10,9,8,5,12,2,8,4,13,4),(4691,'2015-03-10 21:49:30','2015-08-29 14:46:02',1,30000210,10,13,21,18,13,23,12,10,8,4,7,8,23,7,12,45,19,13,14,10,15,5,4,6),(4692,'2015-03-10 21:49:30','2015-08-29 14:46:02',1,30001927,20,20,10,11,17,9,25,18,19,18,18,23,29,31,34,21,32,38,23,18,38,15,47,49),(4693,'2015-03-10 21:49:30','2015-08-29 14:46:02',1,30004074,2,10,9,16,11,5,1,7,1,1,3,1,5,8,9,2,3,1,3,4,7,9,3,3),(4694,'2015-03-10 21:49:30','2015-08-29 14:46:02',1,30000527,15,6,16,5,6,36,19,5,16,22,14,26,17,40,16,16,13,2,37,40,6,6,14,5),(4695,'2015-03-10 21:49:30','2015-08-29 14:46:02',1,30002488,4,5,6,5,4,8,1,1,3,5,3,6,8,2,2,0,4,6,1,6,2,3,3,3),(4696,'2015-03-10 21:49:30','2015-08-29 14:46:02',1,30000693,20,25,13,32,15,9,7,13,6,5,13,1,8,8,12,3,14,8,29,11,14,11,7,27),(4697,'2015-03-10 21:49:30','2015-08-29 14:46:02',1,30004202,8,26,26,14,14,19,7,4,6,7,11,10,13,4,7,8,9,1,14,49,10,11,66,64),(4698,'2015-03-10 21:49:30','2015-08-29 14:46:02',1,30002164,29,19,108,52,62,34,15,14,11,47,8,13,2,24,28,10,16,1,19,30,7,10,13,14),(4699,'2015-03-10 21:49:30','2015-03-10 21:49:30',1,30000427,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(4700,'2015-03-10 21:49:30','2015-08-29 14:46:02',1,30000644,2,6,4,4,3,5,0,5,8,13,129,101,4,38,34,6,21,7,8,4,8,9,4,8),(4701,'2015-03-10 21:49:30','2015-08-29 14:46:02',1,30003227,5,1,2,0,0,1,0,2,1,1,3,6,0,1,0,1,1,5,0,0,2,0,1,1),(4702,'2015-03-10 21:49:30','2015-08-29 14:46:02',1,30002166,12,80,35,56,41,21,14,7,10,14,16,14,19,29,28,14,9,7,109,117,16,13,9,9),(4703,'2015-03-10 21:49:30','2015-03-10 21:49:30',1,30000419,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(4704,'2015-03-10 21:49:30','2015-08-29 14:46:02',1,30004685,8,3,8,6,4,7,9,13,7,14,7,3,7,11,14,6,2,2,1,24,6,4,11,10),(4705,'2015-03-10 21:49:30','2015-08-29 14:46:02',1,30002991,247,325,295,307,277,245,128,215,307,325,327,307,341,389,412,401,279,230,296,363,431,363,350,320),(4706,'2015-03-10 21:49:30','2015-08-29 14:46:02',1,30001797,2,4,2,4,5,2,4,1,10,4,4,7,32,21,23,90,17,5,13,15,11,11,12,8),(4707,'2015-03-10 21:49:30','2015-08-29 14:46:02',1,30002101,3,5,7,7,7,11,4,6,18,16,8,12,9,19,18,19,13,35,15,15,13,13,20,14),(4708,'2015-03-10 21:49:30','2015-08-29 14:46:02',1,30004807,14,15,26,19,16,11,41,53,14,36,19,12,37,19,27,20,11,6,31,29,14,13,8,9),(4709,'2015-03-10 21:49:30','2015-08-29 14:46:02',1,30004091,22,21,23,23,19,11,28,18,45,40,42,39,43,45,34,30,23,21,28,37,25,26,30,40),(4710,'2015-03-10 21:49:30','2015-08-29 14:46:02',1,30000118,39,37,39,27,13,30,8,21,35,32,50,36,57,23,23,54,21,29,28,38,80,88,23,23),(4711,'2015-03-10 21:49:30','2015-08-29 14:46:02',1,30002361,5,5,2,4,10,0,1,0,0,0,0,0,1,0,0,0,1,0,1,4,2,1,4,0),(4712,'2015-03-10 21:49:30','2015-08-29 14:46:02',1,30004602,14,19,20,9,14,10,5,16,16,14,6,4,4,7,5,11,6,27,40,31,13,13,4,5),(4713,'2015-03-10 21:49:30','2015-08-29 14:46:02',1,30004349,4,12,6,11,11,9,12,8,5,9,11,13,7,4,7,4,10,2,7,8,0,1,2,1),(4714,'2015-03-10 21:49:30','2015-08-29 14:46:02',1,30004463,4,4,5,9,10,1,1,5,1,2,3,5,1,4,4,1,2,4,5,6,8,7,0,10),(4715,'2015-03-10 21:49:30','2015-03-10 21:49:30',1,30001465,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(4716,'2015-03-10 21:49:30','2015-08-29 14:46:02',1,30000114,32,57,40,64,42,39,23,27,31,38,46,46,42,46,42,38,50,33,55,40,56,57,43,40),(4717,'2015-03-10 21:49:30','2015-08-29 14:46:02',1,30002473,21,33,49,33,30,34,57,33,31,15,35,25,64,25,28,38,17,10,26,31,50,21,107,189),(4718,'2015-03-10 21:49:30','2015-08-29 14:46:02',1,30001813,4,2,2,1,0,0,0,5,0,0,0,0,1,0,0,0,1,0,0,1,0,2,0,0),(4719,'2015-03-10 21:49:30','2015-03-10 21:49:30',1,30001618,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(4720,'2015-03-10 21:49:30','2015-08-29 14:46:02',1,30002024,25,23,28,22,13,73,21,11,16,15,8,5,20,7,5,7,15,19,8,20,9,15,9,11),(4721,'2015-03-10 21:49:30','2015-08-29 14:46:02',1,30001244,4,5,8,6,3,11,14,10,28,27,26,19,156,26,27,26,24,25,48,59,38,42,45,8),(4722,'2015-03-10 21:49:30','2015-08-29 14:46:02',1,30002209,6,15,17,15,13,6,5,5,7,5,9,7,34,22,22,8,6,10,17,11,9,5,9,7),(4723,'2015-03-10 21:49:30','2015-08-29 14:46:02',1,30045321,31,71,47,47,33,27,36,40,39,31,49,61,43,82,56,57,50,45,58,50,65,56,53,49),(4724,'2015-03-10 21:49:30','2015-08-29 14:46:02',1,30000201,36,69,56,45,39,49,29,62,69,109,67,72,64,69,84,97,97,76,59,83,100,86,61,65),(4725,'2015-03-10 21:49:30','2015-08-29 14:46:02',1,30000997,19,77,37,25,26,29,11,25,22,24,113,70,30,85,248,41,24,16,16,25,93,66,30,24),(4726,'2015-03-10 21:49:30','2015-08-29 14:46:02',1,30004404,9,14,32,11,12,18,21,48,24,18,22,24,70,62,70,60,48,22,37,122,75,37,51,46),(4727,'2015-03-10 21:49:30','2015-08-29 14:46:02',1,30000819,0,1,11,14,6,1,0,2,5,2,2,1,0,0,0,1,1,0,12,1,1,1,4,5),(4728,'2015-03-10 21:49:30','2015-08-29 14:46:02',1,30004245,27,62,55,47,53,36,48,43,84,96,47,49,75,62,57,45,79,55,60,72,59,65,43,54),(4729,'2015-03-10 21:49:30','2015-08-29 14:46:02',1,30002825,4,7,5,8,9,11,2,8,17,18,10,8,17,15,14,17,12,4,3,15,224,67,37,34),(4730,'2015-03-10 21:49:30','2015-08-29 14:46:02',1,30002768,1274,1590,1555,1448,1369,1144,975,1012,1544,1681,1742,1515,1719,1919,1929,1901,1536,1121,1365,1554,1903,1836,1525,1451),(4731,'2015-03-10 21:49:30','2015-08-29 14:46:02',1,30002956,3,7,3,5,2,6,6,6,10,10,5,6,8,7,5,2,3,1,6,13,10,9,2,3),(4732,'2015-03-10 21:49:30','2015-08-29 14:46:02',1,30001368,756,644,812,816,686,793,515,551,772,910,828,716,874,1010,980,1012,882,563,729,760,1006,981,808,729),(4733,'2015-03-10 21:49:30','2015-08-29 14:46:02',1,30000197,56,53,51,62,65,58,24,30,113,105,92,65,275,157,295,130,69,50,64,130,169,109,138,137),(4734,'2015-03-10 21:49:30','2015-08-29 14:46:02',1,30004922,23,27,7,19,20,27,9,19,12,14,12,13,25,10,17,19,14,11,76,3,14,11,15,17),(4735,'2015-03-10 21:49:30','2015-08-29 14:46:02',1,30001821,12,1,7,5,6,0,23,5,6,13,2,1,4,3,5,2,4,2,1,3,3,3,3,1),(4736,'2015-03-10 21:49:30','2015-08-29 14:46:02',1,30002503,14,14,14,6,5,12,5,9,5,12,8,9,13,2,1,4,9,9,4,8,11,13,18,15),(4737,'2015-03-10 21:49:30','2015-08-29 14:46:02',1,30001432,34,34,45,40,31,29,13,29,34,35,57,59,29,28,32,25,31,27,24,27,44,32,39,41),(4738,'2015-03-10 21:49:30','2015-08-29 14:46:02',1,30004779,30,28,22,29,43,7,20,36,38,37,19,13,26,26,22,26,41,20,20,28,78,61,12,23),(4739,'2015-03-10 21:49:30','2015-08-29 14:46:02',1,30001854,16,22,19,20,12,12,15,7,30,24,44,46,32,56,35,31,34,8,18,8,28,38,32,29),(4740,'2015-03-10 21:49:30','2015-08-29 14:46:02',1,30003352,10,1,17,7,6,5,7,11,12,7,3,8,5,4,2,7,8,1,24,8,4,2,0,3),(4741,'2015-03-10 21:49:30','2015-08-29 14:46:02',1,30002504,16,9,12,9,3,16,11,16,3,11,7,5,9,1,1,1,7,3,2,2,3,4,11,8),(4742,'2015-03-10 21:49:30','2015-08-29 14:46:02',1,30003235,10,2,5,4,3,6,1,2,11,11,10,13,1,4,1,6,6,9,14,7,3,6,2,4),(4743,'2015-03-10 21:49:30','2015-08-29 14:46:02',1,30000229,42,25,57,42,33,53,32,24,6,2,2,3,8,11,16,10,16,17,2,10,9,11,12,15),(4744,'2015-03-10 21:49:30','2015-08-29 14:46:02',1,30004706,16,4,11,13,13,12,15,57,16,26,21,18,29,27,18,18,9,13,20,19,11,10,24,23),(4745,'2015-03-10 21:49:30','2015-08-29 14:46:02',1,30001735,67,140,106,96,85,71,48,75,106,116,137,128,198,145,164,151,122,80,101,207,115,113,127,84),(4746,'2015-03-10 21:49:30','2015-08-29 14:46:02',1,30000101,17,14,11,18,17,8,8,23,18,18,32,21,21,46,57,23,30,31,17,23,25,31,18,14),(4747,'2015-03-10 21:49:30','2015-08-29 14:46:02',1,30002047,1,1,2,1,1,1,1,1,2,0,0,0,1,0,0,1,2,0,0,2,1,1,2,2),(4748,'2015-03-10 21:49:30','2015-08-29 14:46:02',1,30002083,15,6,19,5,10,8,5,8,28,25,40,37,41,50,28,38,45,24,24,33,24,20,32,30),(4749,'2015-03-10 21:49:30','2015-08-29 14:46:02',1,30030141,116,143,162,195,150,142,115,101,208,219,213,204,241,218,232,228,179,188,210,232,215,221,155,133),(4750,'2015-03-10 21:49:30','2015-08-29 14:46:02',1,30001875,6,15,6,11,11,10,7,2,38,43,38,42,24,55,43,50,35,3,13,21,42,64,40,41),(4751,'2015-03-10 21:49:30','2015-08-29 14:46:02',1,30002824,4,7,5,8,9,11,2,11,12,11,6,6,13,9,11,6,9,0,2,14,111,22,14,15),(4752,'2015-03-10 21:49:30','2015-08-29 14:46:02',1,30002955,7,45,8,8,17,6,8,18,16,7,19,13,25,19,17,18,10,0,10,5,15,7,13,8),(4753,'2015-03-10 21:49:30','2015-08-29 14:46:02',1,30002610,1,0,1,0,2,0,3,0,0,0,0,0,0,0,0,0,1,0,1,0,1,3,0,0),(4754,'2015-03-10 21:49:30','2015-08-29 14:46:02',1,30000177,14,18,18,18,14,28,11,7,5,13,9,11,23,39,34,35,15,23,26,24,27,22,28,22),(4755,'2015-03-10 21:49:30','2015-08-29 14:46:02',1,30003005,3,7,3,12,6,5,4,6,3,9,5,7,7,8,4,14,7,14,11,13,12,12,6,8),(4756,'2015-03-10 21:49:30','2015-08-29 14:46:02',1,30001899,5,14,20,21,14,10,17,7,15,30,44,35,47,33,30,45,19,10,21,27,26,25,41,28),(4757,'2015-03-10 21:49:30','2015-08-29 14:46:02',1,30000313,11,23,23,29,27,10,10,20,14,20,26,17,18,18,6,5,50,10,17,9,13,13,3,7),(4758,'2015-03-10 21:49:30','2015-08-29 14:46:02',1,30001234,74,74,46,57,34,32,25,25,196,197,92,108,119,93,98,45,45,41,132,91,78,71,63,65),(4759,'2015-03-10 21:49:30','2015-08-29 14:46:02',1,30003004,7,8,21,16,17,19,14,9,2,8,8,12,4,15,6,35,10,12,8,5,9,10,3,2),(4760,'2015-03-10 21:49:30','2015-08-29 14:46:02',1,30003298,12,10,5,5,9,4,4,10,14,16,10,8,21,11,14,3,7,18,9,19,15,15,11,14),(4761,'2015-03-10 21:49:30','2015-08-29 14:46:02',1,30000558,6,35,7,38,6,31,5,4,34,25,12,3,50,23,22,36,13,31,17,37,18,27,7,8),(4762,'2015-03-10 21:49:30','2015-08-29 14:46:02',1,30000911,3,1,6,6,4,2,5,0,1,1,0,0,1,2,0,3,2,0,2,0,5,0,1,1),(4763,'2015-03-10 21:49:30','2015-08-29 14:46:02',1,30000858,49,162,74,45,39,101,40,52,116,126,460,345,188,102,118,54,30,33,39,57,57,61,40,39),(4764,'2015-03-10 21:49:30','2015-08-29 14:46:02',1,30000184,30,30,29,39,39,27,31,19,38,50,45,43,42,63,69,58,53,45,33,51,48,41,25,37),(4765,'2015-03-10 21:49:30','2015-08-29 14:46:02',1,30001409,99,120,98,97,90,83,79,120,148,169,165,154,138,176,154,169,131,102,121,158,150,142,139,117),(4766,'2015-03-10 21:49:30','2015-08-29 14:46:02',1,30000282,18,7,15,33,26,27,17,21,9,3,3,5,7,5,4,13,34,6,8,8,6,10,9,6),(4767,'2015-03-10 21:49:30','2015-08-29 14:46:02',1,30003481,33,47,47,38,33,23,11,20,46,56,51,57,74,61,42,58,40,55,34,47,50,60,45,32),(4768,'2015-03-10 21:49:30','2015-08-29 14:46:02',1,30002707,106,188,233,144,176,197,97,139,211,210,251,231,245,245,269,263,252,164,252,212,221,225,199,189),(4769,'2015-03-10 21:49:30','2015-08-29 14:46:02',1,30002413,16,17,15,21,14,9,9,14,35,45,33,29,39,14,11,33,9,18,8,13,11,8,7,7),(4770,'2015-03-10 21:49:30','2015-08-29 14:46:02',1,30000965,0,4,2,4,1,4,2,0,2,1,15,8,1,6,2,5,3,4,20,9,7,6,2,4),(4771,'2015-03-10 21:49:30','2015-08-29 14:46:02',1,30001679,24,13,9,15,21,11,9,10,23,20,14,10,16,15,25,33,34,8,4,7,25,28,28,17),(4772,'2015-03-10 21:49:30','2015-08-29 14:46:02',1,30000129,288,385,389,415,378,341,252,241,489,558,489,432,523,513,473,478,421,413,423,497,450,467,386,338),(4773,'2015-03-10 21:49:30','2015-08-29 14:46:02',1,30001816,15,7,18,8,1,1,25,6,4,14,18,1,3,5,6,2,8,2,3,6,3,3,4,1),(4774,'2015-03-10 21:49:30','2015-08-29 14:46:02',1,30004495,17,28,9,8,14,9,12,9,3,3,11,10,12,27,28,65,15,5,17,13,22,12,10,14),(4775,'2015-03-10 21:49:30','2015-08-29 14:46:02',1,30001366,141,216,248,183,166,212,127,189,201,247,209,220,237,263,291,319,219,132,148,148,195,171,155,139),(4776,'2015-03-10 21:49:30','2015-08-29 14:46:02',1,30002814,32,45,49,60,45,28,59,37,42,49,55,40,55,78,83,65,57,47,44,56,48,60,65,50),(4777,'2015-03-10 21:49:30','2015-08-29 14:46:02',1,30000151,181,211,174,188,205,161,169,129,224,249,206,205,300,317,298,305,245,176,176,230,326,333,235,216),(4778,'2015-03-10 21:49:30','2015-03-10 21:49:30',1,30001634,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(4779,'2015-03-10 21:49:30','2015-08-29 14:46:02',1,30003799,21,34,35,35,46,40,20,22,71,45,56,40,54,50,59,26,35,45,61,67,37,45,56,61),(4780,'2015-03-10 21:49:30','2015-08-29 14:46:02',1,30003043,14,27,21,30,21,25,12,21,40,45,50,51,47,55,44,47,32,43,21,31,72,52,53,57),(4781,'2015-03-10 21:49:30','2015-08-29 14:46:02',1,30000037,36,35,32,30,32,24,22,20,34,38,38,36,24,35,36,22,25,19,34,35,28,25,24,35),(4782,'2015-03-10 21:49:30','2015-08-29 14:46:02',1,30002998,8,7,15,11,9,6,12,13,6,4,25,25,6,9,19,4,6,5,11,11,23,16,17,17),(4783,'2015-03-10 21:49:30','2015-08-29 14:46:02',1,30003901,1,6,7,5,3,13,5,1,0,0,1,1,4,6,4,1,3,0,1,1,2,0,4,4),(4784,'2015-03-10 21:49:30','2015-08-29 14:46:02',1,30001208,11,2,15,16,8,5,10,9,11,7,7,8,8,3,3,7,8,9,2,3,7,5,7,11),(4785,'2015-03-10 21:49:30','2015-08-29 14:46:02',1,30004310,15,23,5,11,23,8,4,14,16,28,17,26,14,71,41,6,6,5,21,17,14,16,8,5),(4786,'2015-03-10 21:49:30','2015-08-29 14:46:02',1,30003955,4,0,2,1,2,0,4,2,3,4,4,2,2,3,3,2,0,0,0,1,1,0,0,0),(4787,'2015-03-10 21:49:30','2015-08-29 14:46:02',1,30004938,20,37,18,19,14,20,12,69,45,45,10,8,20,71,69,29,47,5,7,69,27,38,29,26),(4788,'2015-03-10 21:49:30','2015-08-29 14:46:02',1,30001966,15,3,22,35,30,7,28,38,10,18,6,21,16,16,5,6,45,2,1,7,18,22,21,23),(4789,'2015-03-10 21:49:30','2015-08-29 14:46:02',1,30040141,24,27,39,49,34,25,17,23,23,34,33,43,28,32,39,43,32,32,42,36,41,55,42,40),(4790,'2015-03-10 21:49:30','2015-08-29 14:46:02',1,30002070,46,46,51,63,55,40,47,38,49,71,53,46,53,93,88,67,53,36,47,71,82,70,73,65),(4791,'2015-03-10 21:49:30','2015-08-29 14:46:02',1,30000139,1666,1981,1957,2005,1885,1655,1333,1523,2092,2375,2293,2061,2190,2446,2436,2416,2148,1496,1680,2069,2477,2509,2199,2170),(4792,'2015-03-10 21:49:30','2015-08-29 14:46:02',1,30003417,8,2,6,7,12,10,7,11,24,22,33,30,8,5,13,25,20,9,24,12,7,8,11,14),(4793,'2015-03-10 21:49:30','2015-08-29 14:46:02',1,30002755,36,51,30,39,39,33,28,42,39,37,29,30,40,48,46,64,38,26,36,48,61,66,50,36),(4794,'2015-03-10 21:49:30','2015-03-10 21:49:30',1,30000382,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(4795,'2015-03-10 21:49:30','2015-08-29 14:46:02',1,30000068,2,0,2,2,2,5,2,3,4,4,15,14,5,9,9,7,9,6,1,6,31,19,28,28),(4796,'2015-03-10 21:49:30','2015-08-29 14:46:02',1,30002987,2,2,3,6,10,5,4,0,9,10,15,19,18,15,6,8,4,7,9,8,2,5,2,4),(4797,'2015-03-10 21:49:30','2015-08-29 14:46:02',1,30042505,21,12,8,20,16,17,7,7,24,30,24,20,36,30,36,25,20,26,27,35,21,18,25,29),(4798,'2015-03-10 21:49:30','2015-08-29 14:46:02',1,30004151,8,5,8,11,14,4,9,8,7,8,17,20,11,12,8,19,16,12,20,26,17,13,14,6),(4799,'2015-03-10 21:49:30','2015-08-29 14:46:02',1,30000921,33,43,31,25,24,6,23,5,12,10,10,15,15,30,21,21,8,20,33,45,7,15,25,26),(4800,'2015-03-10 21:49:30','2015-08-29 14:46:02',1,30004468,9,3,9,12,14,17,11,22,37,56,64,59,75,64,61,44,44,39,23,64,90,44,32,37),(4801,'2015-03-10 21:49:30','2015-08-29 14:46:02',1,30003306,4,21,1,8,7,0,19,4,9,7,4,7,1,10,11,3,3,5,1,4,5,5,4,4),(4802,'2015-03-10 21:49:30','2015-08-29 14:46:02',1,30001045,13,21,16,20,18,16,22,13,46,41,46,54,88,40,45,34,33,18,78,79,40,31,55,42),(4803,'2015-03-10 21:49:30','2015-08-29 14:46:02',1,30002049,566,753,777,774,725,614,501,523,832,918,804,698,876,1044,1022,869,703,610,664,758,960,894,819,761),(4804,'2015-03-10 21:49:30','2015-08-29 14:46:02',1,30045326,51,88,77,74,58,98,77,89,80,93,95,85,86,100,116,134,75,72,120,91,158,159,132,101),(4805,'2015-03-10 21:49:30','2015-08-29 14:46:02',1,30002759,54,211,55,68,67,43,48,81,88,88,70,44,110,172,121,101,62,93,78,80,91,95,59,33),(4806,'2015-03-10 21:49:30','2015-08-29 14:46:02',1,30003077,26,54,61,65,67,30,31,24,25,22,40,29,44,33,33,53,18,38,27,31,44,35,20,25),(4807,'2015-03-10 21:49:30','2015-08-29 14:46:02',1,30003988,15,53,44,20,10,29,15,8,3,11,2,1,1,3,5,3,1,7,2,0,1,1,19,5),(4808,'2015-03-10 21:49:30','2015-08-29 14:46:02',1,30001152,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,1,0,0,0,2,0,0,0),(4809,'2015-03-10 21:49:30','2015-08-29 14:46:02',1,30001003,7,31,10,15,11,2,4,7,31,28,19,9,29,98,85,28,31,20,9,10,21,25,14,11),(4810,'2015-03-10 21:49:30','2015-08-29 14:46:02',1,30000549,2,3,0,0,0,8,0,1,0,1,3,9,0,2,1,0,4,0,0,2,1,4,8,8),(4811,'2015-03-10 21:49:30','2015-08-29 14:46:02',1,30001121,6,16,25,17,24,20,17,25,3,3,7,3,3,1,2,5,3,0,4,2,1,0,0,4),(4812,'2015-03-10 21:49:30','2015-08-29 14:46:02',1,30005150,0,0,3,0,0,1,0,4,1,0,1,0,0,0,1,0,0,0,6,2,1,1,1,0),(4813,'2015-03-10 21:49:30','2015-08-29 14:46:02',1,30003981,46,14,14,32,28,16,11,17,9,9,14,9,7,4,5,15,5,36,3,7,9,7,7,7),(4814,'2015-03-10 21:49:30','2015-08-29 14:46:02',1,30000561,5,2,9,12,2,0,6,1,8,5,7,10,15,7,8,8,7,6,4,3,4,4,3,5),(4815,'2015-03-10 21:49:30','2015-08-29 14:46:02',1,30003536,8,8,10,6,0,12,12,3,13,14,10,11,16,5,4,6,6,12,10,8,10,5,9,11),(4816,'2015-03-10 21:49:30','2015-08-29 14:46:02',1,30000040,1,4,5,7,4,3,2,2,8,7,14,11,3,26,23,9,4,25,24,9,11,9,8,13),(4817,'2015-03-10 21:49:30','2015-08-29 14:46:02',1,30000930,1,4,1,1,2,2,0,0,5,4,4,1,4,0,2,10,3,0,0,1,2,0,0,0),(4818,'2015-03-10 21:49:30','2015-08-29 14:46:02',1,30005097,0,0,0,4,0,0,0,1,4,3,0,0,0,0,1,1,1,0,1,1,0,0,0,1),(4819,'2015-03-10 21:49:30','2015-08-29 14:46:02',1,30003965,20,7,4,9,13,7,14,13,15,21,13,13,20,13,8,11,11,9,13,10,6,8,19,19),(4820,'2015-03-10 21:49:30','2015-08-29 14:46:02',1,30001162,64,54,109,56,47,91,85,100,398,407,508,349,477,479,487,517,376,491,669,475,651,314,286,221),(4821,'2015-03-10 21:49:30','2015-08-29 14:46:02',1,30000434,3,8,3,3,1,3,15,1,2,2,5,4,9,6,8,12,5,1,4,1,3,2,3,2),(4822,'2015-03-10 21:49:30','2015-03-10 21:49:30',1,30000393,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(4823,'2015-03-10 21:49:30','2015-08-29 14:46:02',1,30000732,9,56,7,6,8,1,3,8,12,9,16,16,2,1,3,1,4,4,1,11,2,2,2,5),(4824,'2015-03-10 21:49:30','2015-08-29 14:46:02',1,30000988,1,2,1,1,3,2,0,9,4,5,4,6,0,0,1,3,7,4,1,0,3,1,2,1),(4825,'2015-03-10 21:49:30','2015-08-29 14:46:02',1,30001008,3,4,3,1,3,6,12,6,14,20,11,12,5,4,4,6,11,2,3,12,13,5,7,3),(4826,'2015-03-10 21:49:30','2015-08-29 14:46:02',1,30001143,6,7,0,3,2,2,5,1,1,1,3,3,3,2,0,22,1,0,1,0,4,4,5,9),(4827,'2015-03-10 21:49:30','2015-08-29 14:46:02',1,30000674,3,2,0,1,1,5,2,3,3,1,3,3,0,0,2,1,1,1,0,0,2,3,1,2),(4828,'2015-03-10 21:49:30','2015-08-29 14:46:02',1,30003672,25,32,19,34,29,42,13,17,6,4,9,13,6,13,9,14,32,6,9,8,17,12,3,6),(4829,'2015-03-10 21:49:30','2015-08-29 14:46:02',1,30003953,34,168,57,47,48,37,39,43,27,26,20,15,72,17,15,15,18,31,9,29,10,9,31,22),(4830,'2015-03-10 21:49:30','2015-08-29 14:46:02',1,30002437,1,5,2,3,1,2,2,3,0,1,7,6,0,1,1,3,1,2,2,2,4,2,0,3),(4831,'2015-03-10 21:49:30','2015-08-29 14:46:02',1,30000264,29,39,57,33,34,39,11,23,11,13,21,20,87,45,47,63,36,16,29,70,20,19,51,52),(4832,'2015-03-10 21:49:30','2015-08-29 14:46:02',1,30000248,38,15,17,15,7,29,7,14,9,14,19,19,13,20,16,14,6,15,13,4,19,17,23,16),(4833,'2015-03-10 21:49:30','2015-08-29 14:46:02',1,30002379,8,11,7,4,5,21,0,0,1,3,3,2,0,0,0,1,1,1,15,0,2,2,2,1),(4834,'2015-03-10 21:49:30','2015-08-29 14:46:02',1,30000755,3,4,0,2,5,2,1,11,10,4,5,2,7,0,0,7,36,0,11,4,4,5,3,1),(4835,'2015-03-10 21:49:30','2015-08-29 14:46:02',1,30000694,7,10,4,19,23,7,2,2,3,1,6,4,4,2,4,13,12,5,13,15,4,9,2,8),(4836,'2015-03-10 21:49:30','2015-08-29 14:46:02',1,30001787,5,0,3,12,10,2,1,0,7,15,10,10,13,4,8,12,16,3,2,9,8,8,12,13),(4837,'2015-03-10 21:49:30','2015-08-29 14:46:02',1,30004406,1,1,1,0,1,0,0,3,0,0,2,1,1,2,2,12,1,1,0,0,3,1,7,4),(4838,'2015-03-10 21:49:30','2015-08-29 14:46:02',1,30003226,1,1,1,0,0,1,0,0,1,1,0,0,0,0,0,0,1,1,0,0,1,0,1,1),(4839,'2015-03-10 21:49:30','2015-08-29 14:46:02',1,30003130,8,7,10,11,15,20,2,1,5,4,2,4,8,2,0,0,2,5,3,1,3,3,6,6),(4840,'2015-03-10 21:49:30','2015-08-29 14:46:02',1,30003194,6,30,11,14,10,17,18,10,3,12,10,7,7,11,15,11,6,7,5,4,9,7,3,0),(4841,'2015-03-10 21:49:30','2015-08-29 14:46:02',1,30000849,11,5,8,6,5,10,3,2,16,6,9,8,4,6,6,5,7,0,3,5,7,11,6,6),(4842,'2015-03-10 21:49:30','2015-08-29 14:46:02',1,30001892,4,11,4,22,12,14,8,1,6,2,17,6,12,13,16,15,11,2,5,10,15,10,8,8),(4843,'2015-03-10 21:49:30','2015-08-29 14:46:02',1,30003143,3,1,2,5,4,2,2,0,3,3,3,1,2,1,2,1,1,0,2,0,0,0,3,0),(4844,'2015-03-10 21:49:30','2015-08-29 14:46:02',1,30002862,9,6,5,11,20,7,4,4,11,20,11,10,7,4,10,5,1,1,2,17,7,11,10,7),(4845,'2015-03-10 21:49:30','2015-08-29 14:46:02',1,30001222,2,10,13,9,7,9,9,1,32,38,27,21,65,24,32,20,21,14,33,49,18,19,23,11),(4846,'2015-03-10 21:49:30','2015-08-29 14:46:02',1,30001084,6,12,4,21,24,4,7,15,0,6,7,2,20,9,8,4,11,1,9,0,7,7,8,8),(4847,'2015-03-10 21:49:30','2015-08-29 14:46:02',1,30001301,25,9,12,3,4,9,9,7,14,22,11,10,23,63,34,6,12,9,4,15,14,9,13,14),(4848,'2015-03-10 21:49:30','2015-03-10 21:49:30',1,30000375,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(4849,'2015-03-10 21:49:30','2015-08-29 14:46:02',1,30003294,13,7,9,8,10,12,3,18,9,11,9,7,10,8,6,12,12,4,9,4,38,14,7,8),(4850,'2015-03-10 21:49:30','2015-08-29 14:46:02',1,30004644,5,9,8,21,28,19,4,3,23,19,13,15,9,17,15,19,18,15,35,29,11,21,17,29),(4851,'2015-03-10 21:49:30','2015-08-29 14:46:02',1,30000888,2,0,1,2,2,1,0,0,7,6,3,0,6,8,7,4,5,1,2,5,6,5,1,0),(4852,'2015-03-10 21:49:30','2015-08-29 14:46:02',1,30003666,8,12,19,16,9,58,16,13,13,23,10,6,16,16,12,11,10,25,22,36,5,6,9,12),(4853,'2015-03-10 21:49:30','2015-08-29 14:46:02',1,30001015,0,2,3,4,7,5,5,6,2,2,3,3,11,7,5,14,11,1,0,6,2,4,4,3),(4854,'2015-03-10 21:49:30','2015-08-29 14:46:02',1,30000603,2,3,1,1,2,2,11,0,2,4,5,1,1,1,1,1,1,1,4,4,3,3,1,1),(4855,'2015-03-10 21:49:30','2015-08-29 14:46:02',1,30000984,4,11,8,4,3,8,2,9,3,2,0,2,1,0,0,5,13,2,6,1,3,2,8,7),(4856,'2015-03-10 21:49:30','2015-08-29 14:46:02',1,30004329,23,55,46,45,47,63,58,36,25,43,29,11,24,61,60,32,25,12,22,11,26,28,24,15),(4857,'2015-03-10 21:49:30','2015-08-29 14:46:02',1,30001175,1,12,9,6,6,3,0,5,2,3,0,1,8,6,6,13,8,7,2,3,3,7,11,10),(4858,'2015-03-10 21:49:30','2015-08-29 14:46:02',1,30001383,31,65,52,36,25,56,18,26,54,41,62,71,26,67,67,59,51,40,31,36,62,48,46,42),(4859,'2015-03-10 21:49:30','2015-08-29 14:46:02',1,30000123,23,15,11,20,21,11,3,9,13,21,21,17,19,30,27,29,18,18,18,12,26,35,13,19),(4860,'2015-03-10 21:49:30','2015-08-29 14:46:02',1,30045331,42,36,22,38,47,34,38,33,57,41,87,95,52,49,65,100,85,37,28,30,64,59,36,38),(4861,'2015-03-10 21:49:30','2015-08-29 14:46:02',1,30005306,29,43,47,33,31,48,36,45,39,51,39,25,49,56,52,25,39,37,48,69,60,69,56,61),(4862,'2015-03-10 21:49:30','2015-08-29 14:46:02',1,30004196,4,10,10,10,13,10,8,7,7,6,13,16,10,1,9,6,4,0,3,2,6,6,10,3),(4863,'2015-03-10 21:49:30','2015-08-29 14:46:02',1,30000170,16,23,22,30,38,23,8,9,16,19,10,11,11,18,6,20,11,8,11,23,16,16,17,14),(4864,'2015-03-10 21:49:30','2015-08-29 14:46:02',1,30004289,4,6,12,8,5,5,20,16,22,14,22,17,13,21,17,6,15,1,11,10,17,23,5,2),(4865,'2015-03-10 21:49:30','2015-08-29 14:46:02',1,30005029,12,18,42,22,21,17,16,11,38,37,30,14,25,25,23,25,28,18,10,19,17,28,31,20),(4866,'2015-03-10 21:49:30','2015-08-29 14:46:02',1,30003483,34,43,50,37,30,24,13,19,43,52,53,58,62,69,50,51,39,54,32,45,50,61,41,30),(4867,'2015-03-10 21:49:30','2015-08-29 14:46:02',1,30004230,32,49,30,45,43,43,15,28,42,32,38,35,54,39,36,47,42,51,51,47,40,50,46,42),(4868,'2015-03-10 21:49:30','2015-08-29 14:46:02',1,30002538,60,131,125,108,72,57,97,169,126,80,63,60,80,93,77,82,37,67,49,78,69,50,62,65),(4869,'2015-03-10 21:49:30','2015-08-29 14:46:02',1,30002400,4,18,11,11,10,1,10,8,10,10,23,21,30,22,25,13,49,18,31,29,19,17,13,17),(4870,'2015-03-10 21:49:30','2015-08-29 14:46:02',1,30000190,46,75,82,55,59,72,58,85,100,135,98,94,136,88,111,138,95,62,68,94,117,107,75,83),(4871,'2015-03-10 21:49:30','2015-08-29 14:46:02',1,30002230,8,5,11,2,4,11,6,15,9,15,11,8,12,12,11,10,15,1,13,17,13,12,8,7),(4872,'2015-03-10 21:49:30','2015-08-29 14:46:02',1,30000173,138,207,175,183,213,202,149,139,208,264,228,208,312,348,334,347,244,175,175,225,309,290,233,210),(4873,'2015-03-10 21:49:30','2015-08-29 14:46:02',1,30003027,62,81,96,99,77,98,76,59,126,141,129,114,152,150,160,149,136,122,98,109,112,112,137,148),(4874,'2015-03-10 21:49:30','2015-08-29 14:46:02',1,30005318,184,203,188,174,160,139,99,103,229,258,196,187,275,255,271,261,164,194,234,208,213,217,179,212),(4875,'2015-03-10 21:49:30','2015-08-29 14:46:02',1,30004547,16,13,14,11,4,18,12,4,7,2,6,4,2,6,4,8,5,2,1,5,4,6,11,4),(4876,'2015-03-10 21:49:30','2015-08-29 14:46:02',1,30000806,13,20,17,11,12,30,15,18,4,3,3,3,10,3,3,4,7,1,2,3,8,13,7,12),(4877,'2015-03-10 21:49:30','2015-08-29 14:46:02',1,30000842,6,3,5,4,7,2,5,10,2,2,4,4,4,5,6,13,8,13,2,7,7,7,3,2),(4878,'2015-03-10 21:49:30','2015-08-29 14:46:02',1,30001824,16,3,13,9,5,6,23,6,10,20,8,7,4,12,22,16,11,0,1,7,12,15,13,8),(4879,'2015-03-10 21:49:30','2015-08-29 14:46:02',1,30005195,42,44,33,27,26,17,16,33,34,45,28,29,48,50,35,31,18,26,22,42,48,60,26,19),(4880,'2015-03-10 21:49:30','2015-08-29 14:46:02',1,30003589,23,42,64,118,101,28,19,33,39,51,46,35,37,64,57,63,34,29,16,46,73,66,51,41),(4881,'2015-03-10 21:49:30','2015-08-29 14:46:02',1,30004246,33,68,53,45,46,35,49,45,92,110,52,53,84,66,64,54,74,61,68,84,63,60,43,53),(4882,'2015-03-10 21:49:30','2015-08-29 14:46:02',1,30001362,187,250,226,234,213,214,153,168,224,276,245,243,309,350,384,319,276,169,162,247,266,279,259,225),(4883,'2015-03-10 21:49:30','2015-08-29 14:46:02',1,30001380,243,322,356,264,249,258,173,204,270,339,324,330,305,413,407,397,342,203,242,261,350,314,304,314),(4884,'2015-03-10 21:49:30','2015-08-29 14:46:02',1,30002798,107,149,111,128,122,86,71,79,127,168,142,130,155,172,147,121,143,81,98,129,147,138,154,146),(4885,'2015-03-10 21:49:30','2015-08-29 14:46:02',1,30004220,3,2,2,0,0,2,1,2,4,1,0,0,10,2,1,2,1,0,1,1,0,0,1,1),(4886,'2015-03-10 21:49:30','2015-08-29 14:46:02',1,30003820,46,32,46,39,40,20,21,28,24,12,23,30,22,35,23,21,24,17,26,27,51,60,39,57),(4887,'2015-03-10 21:49:30','2015-08-29 14:46:02',1,30003572,17,26,32,30,19,19,18,8,22,38,23,12,26,19,17,18,15,20,19,35,19,17,9,13),(4888,'2015-03-10 21:49:30','2015-08-29 14:46:02',1,30003790,64,344,64,56,60,57,69,27,125,123,57,56,264,83,75,60,57,97,112,204,184,180,57,68),(4889,'2015-03-10 21:49:30','2015-08-29 14:46:02',1,30003899,55,35,20,17,16,34,14,12,37,18,19,24,36,45,40,22,19,17,45,53,24,28,27,20),(4890,'2015-03-10 21:49:30','2015-08-29 14:46:02',1,30004433,1,0,0,1,1,0,0,6,0,0,0,0,2,0,0,1,5,0,2,0,0,0,0,1),(4891,'2015-03-10 21:49:30','2015-08-29 14:46:02',1,30002904,47,97,63,42,50,76,70,72,138,132,127,125,120,231,193,147,103,129,139,105,129,116,125,125),(4892,'2015-03-10 21:49:30','2015-08-29 14:46:02',1,30001303,26,30,14,14,17,14,17,10,24,34,14,14,37,68,41,8,13,19,26,43,32,27,21,21),(4893,'2015-03-10 21:49:30','2015-08-29 14:46:02',1,30001351,17,3,3,1,1,7,2,5,5,1,2,6,7,5,4,1,5,9,10,12,9,9,2,4),(4894,'2015-03-10 21:49:30','2015-08-29 14:46:02',1,30001794,10,3,5,3,4,0,3,3,12,18,9,7,7,4,2,3,0,0,6,8,6,6,5,7),(4895,'2015-03-10 21:49:30','2015-08-29 14:46:02',1,30000295,20,17,14,13,13,13,16,12,14,14,39,31,10,17,11,18,11,23,10,23,8,15,17,9),(4896,'2015-03-10 21:49:30','2015-08-29 14:46:02',1,30004997,24,22,31,35,24,42,17,25,17,25,12,9,12,30,26,14,19,21,9,7,6,8,7,15),(4897,'2015-03-10 21:49:30','2015-03-10 21:49:30',1,30000346,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(4898,'2015-03-10 21:49:30','2015-08-29 14:46:02',1,30003816,4,28,9,6,4,4,1,9,2,4,2,1,12,14,8,14,4,11,7,3,10,13,0,3),(4899,'2015-03-10 21:49:30','2015-08-29 14:46:02',1,30045309,39,39,40,60,97,50,70,46,55,61,54,49,74,49,38,51,77,36,61,66,43,99,42,54),(4900,'2015-03-10 21:49:30','2015-08-29 14:46:02',1,30004993,313,412,478,395,393,408,328,368,478,463,418,327,608,585,553,553,424,352,426,477,526,474,479,468),(4901,'2015-03-10 21:49:30','2015-08-29 14:46:02',1,30003390,53,67,34,38,33,41,32,47,78,90,85,73,66,63,76,91,60,47,54,55,71,78,70,73),(4902,'2015-03-10 21:49:30','2015-08-29 14:46:02',1,30002088,3,1,9,5,5,2,4,7,12,13,11,11,12,26,17,25,20,19,17,9,26,21,15,17),(4903,'2015-03-10 21:49:30','2015-08-29 14:46:02',1,30004991,32,37,36,29,26,48,18,22,35,39,91,40,66,43,42,48,34,23,25,75,41,52,37,40),(4904,'2015-03-10 21:49:30','2015-08-29 14:46:02',1,30002731,265,418,358,343,304,326,243,282,500,544,496,429,692,673,562,585,441,378,424,489,532,531,507,447),(4905,'2015-03-10 21:49:30','2015-08-29 14:46:02',1,30003810,27,20,30,18,13,28,28,22,25,24,30,28,60,49,36,30,42,32,21,21,37,26,20,23),(4906,'2015-03-10 21:49:30','2015-08-29 14:46:02',1,30002487,2,1,5,4,3,7,1,2,3,2,1,2,2,1,1,0,2,6,1,4,2,3,1,2),(4907,'2015-03-10 21:49:30','2015-08-29 14:46:02',1,30004551,3,5,7,5,3,2,2,2,3,1,1,1,2,0,2,3,2,1,1,1,0,1,1,1),(4908,'2015-03-10 21:49:30','2015-08-29 14:46:02',1,30000625,19,30,22,21,16,9,23,21,12,11,18,16,13,44,39,26,25,12,11,23,2,2,45,41),(4909,'2015-03-10 21:49:30','2015-08-29 14:46:02',1,30001566,16,15,9,15,13,5,19,14,88,136,40,40,26,26,43,44,27,22,27,29,32,38,31,32),(4910,'2015-03-10 21:49:30','2015-08-29 14:46:02',1,30003749,22,24,17,21,20,21,18,21,41,63,71,55,35,29,26,26,36,21,29,41,32,38,33,32),(4911,'2015-03-10 21:49:30','2015-08-29 14:46:02',1,30000927,5,10,6,2,5,5,12,3,6,14,9,7,13,4,4,5,9,2,2,5,11,10,9,22),(4912,'2015-03-10 21:49:30','2015-08-29 14:46:02',1,30004315,7,10,2,10,16,5,1,3,10,9,13,19,2,37,7,3,6,3,10,3,7,6,5,7),(4913,'2015-03-10 21:49:30','2015-08-29 14:46:02',1,30003116,7,12,8,10,12,16,4,8,3,4,3,5,4,2,3,3,4,4,2,3,1,2,6,6),(4914,'2015-03-10 21:49:30','2015-08-29 14:46:02',1,30003339,5,7,1,2,2,12,1,0,6,15,17,7,2,1,1,2,4,1,2,2,1,1,2,1),(4915,'2015-03-10 21:49:30','2015-08-29 14:46:02',1,30003836,182,505,185,174,209,165,151,116,379,360,185,150,508,388,309,180,163,184,366,418,198,194,177,116),(4916,'2015-03-10 21:49:30','2015-03-10 21:49:30',1,30000420,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(4917,'2015-03-10 21:49:30','2015-08-29 14:46:02',1,30004453,3,7,10,6,10,6,4,20,4,3,9,11,6,21,11,31,11,20,7,46,7,5,14,13),(4918,'2015-03-10 21:49:30','2015-08-29 14:46:02',1,30001925,5,16,14,11,15,9,12,7,22,16,9,12,31,26,21,22,14,7,14,10,9,15,11,7),(4919,'2015-03-10 21:49:30','2015-08-29 14:46:02',1,30001019,77,332,107,143,119,134,40,83,162,190,91,67,365,178,166,89,60,67,134,179,114,79,129,106),(4920,'2015-03-10 21:49:30','2015-08-29 14:46:02',1,30000322,1,5,7,3,5,3,0,4,0,1,11,7,0,2,1,3,14,4,18,12,4,6,1,2),(4921,'2015-03-10 21:49:30','2015-08-29 14:46:02',1,30003399,14,24,24,21,32,15,3,10,10,15,18,17,10,17,17,17,18,10,16,14,24,20,12,12),(4922,'2015-03-10 21:49:30','2015-08-29 14:46:02',1,30000193,38,68,63,52,46,52,49,75,77,114,70,74,77,60,79,105,81,51,52,77,112,101,54,60),(4923,'2015-03-10 21:49:30','2015-08-29 14:46:02',1,30002948,4,6,11,5,8,84,62,45,13,12,5,2,13,22,17,17,10,8,9,8,8,9,4,4),(4924,'2015-03-10 21:49:30','2015-08-29 14:46:02',1,30004943,16,1,13,5,5,5,9,2,5,4,4,3,9,12,8,5,3,4,0,1,2,7,3,3),(4925,'2015-03-10 21:49:30','2015-08-29 14:46:02',1,30004931,47,41,41,30,25,11,15,4,20,25,8,12,19,8,12,11,9,6,4,7,16,24,14,9),(4926,'2015-03-10 21:49:30','2015-08-29 14:46:02',1,30003175,11,4,10,14,13,26,13,19,13,18,13,17,15,16,11,8,5,15,17,8,11,13,29,27),(4927,'2015-03-10 21:49:30','2015-03-10 21:49:30',1,30001506,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(4928,'2015-03-10 21:49:30','2015-08-29 14:46:02',1,30003685,102,418,177,174,151,58,49,26,42,53,72,48,67,61,35,59,16,21,45,31,21,22,33,32),(4929,'2015-03-10 21:49:30','2015-08-29 14:46:02',1,30003361,9,16,8,4,10,11,2,8,2,1,10,7,8,3,4,10,3,2,2,9,16,11,4,2),(4930,'2015-03-10 21:49:30','2015-08-29 14:46:02',1,30002448,19,10,28,26,25,20,11,10,30,29,45,40,14,11,11,33,18,9,17,35,81,63,25,34),(4931,'2015-03-10 21:49:30','2015-08-29 14:46:02',1,30003959,0,0,1,1,2,0,1,2,3,4,0,0,4,2,3,1,0,1,0,0,0,0,0,0),(4932,'2015-03-10 21:49:30','2015-08-29 14:46:02',1,30001836,21,17,16,12,19,12,17,11,46,48,38,42,44,21,30,35,54,22,28,24,30,37,30,28),(4933,'2015-03-10 21:49:30','2015-08-29 14:46:02',1,30003129,28,15,21,28,39,35,19,23,21,20,24,48,57,183,173,25,20,26,34,36,50,46,29,39),(4934,'2015-03-10 21:49:30','2015-08-29 14:46:02',1,30004890,11,11,22,15,18,30,7,5,36,26,13,9,24,34,50,13,16,83,30,34,28,25,27,21),(4935,'2015-03-10 21:49:30','2015-08-29 14:46:02',1,30002573,353,463,416,382,365,360,251,288,466,449,528,488,595,644,623,624,450,363,387,450,564,494,390,442),(4936,'2015-03-10 21:49:30','2015-08-29 14:46:02',1,30001443,84,131,169,110,102,92,59,109,146,166,146,176,120,169,173,211,155,69,122,145,122,126,145,146),(4937,'2015-03-10 21:49:30','2015-08-29 14:46:02',1,30003309,10,36,7,12,6,13,14,7,22,19,13,14,26,32,31,12,3,14,10,28,19,23,20,15),(4938,'2015-03-10 21:49:30','2015-08-29 14:46:02',1,30001073,6,18,7,13,15,13,13,5,13,17,18,11,21,8,16,8,5,4,7,11,11,7,7,7),(4939,'2015-03-10 21:49:30','2015-08-29 14:46:02',1,30001327,25,12,3,7,3,6,5,1,8,11,1,1,3,4,17,9,13,0,3,9,4,1,11,16),(4940,'2015-03-10 21:49:30','2015-08-29 14:46:02',1,30004457,2,4,10,3,5,4,3,21,4,3,5,6,6,19,9,22,15,19,8,4,10,5,11,8),(4941,'2015-03-10 21:49:30','2015-08-29 14:46:02',1,30001054,5,1,0,2,3,7,5,1,3,3,0,0,1,4,5,3,2,3,7,0,0,1,1,5),(4942,'2015-03-10 21:49:30','2015-08-29 14:46:02',1,30005173,5,2,6,4,2,3,2,0,0,0,4,5,2,2,1,1,10,0,1,1,1,1,15,12),(4943,'2015-03-10 21:49:30','2015-08-29 14:46:02',1,30001541,10,8,8,12,15,3,6,8,84,115,74,29,10,4,7,15,8,11,23,15,5,5,8,11),(4944,'2015-03-10 21:49:30','2015-08-29 14:46:02',1,30000924,17,41,24,24,24,11,24,8,11,9,10,15,14,25,19,18,9,26,34,40,8,15,25,24),(4945,'2015-03-10 21:49:30','2015-08-29 14:46:02',1,30004227,4,16,6,5,5,3,0,3,0,3,1,0,3,2,5,5,9,1,12,26,6,9,2,2),(4946,'2015-03-10 21:49:30','2015-08-29 14:46:02',1,30003098,35,25,18,8,12,24,19,25,157,140,77,62,131,104,108,75,51,43,55,150,272,92,109,84),(4947,'2015-03-10 21:49:30','2015-08-29 14:46:02',1,30002655,434,568,582,538,517,405,335,330,521,581,622,517,740,821,809,731,564,480,529,676,691,672,606,596),(4948,'2015-03-10 21:49:30','2015-08-29 14:46:02',1,30004936,21,36,29,14,7,12,8,99,27,26,15,39,39,140,18,16,20,6,13,36,38,27,19,22),(4949,'2015-03-10 21:49:30','2015-03-10 21:49:30',1,30001477,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(4950,'2015-03-10 21:49:30','2015-08-29 14:46:02',1,30003247,2,0,1,0,2,10,4,4,0,4,10,13,4,0,2,1,1,0,0,2,3,8,3,4),(4951,'2015-03-10 21:49:30','2015-08-29 14:46:02',1,30004822,17,3,5,6,3,5,58,29,3,7,12,12,14,14,17,11,7,3,11,6,5,8,3,5),(4952,'2015-03-10 21:49:30','2015-08-29 14:46:02',1,30002497,16,5,5,1,3,5,2,3,1,1,0,0,1,0,0,5,2,2,1,0,2,7,2,2),(4953,'2015-03-10 21:49:30','2015-08-29 14:46:02',1,30004392,25,25,25,35,47,14,38,34,25,19,44,46,24,15,17,17,11,9,19,11,12,8,12,5),(4954,'2015-03-10 21:49:30','2015-08-29 14:46:02',1,30004055,11,6,16,26,22,10,8,7,23,15,10,14,17,7,7,9,21,8,1,8,6,7,9,8),(4955,'2015-03-10 21:49:30','2015-08-29 14:46:02',1,30000751,4,8,3,12,13,3,2,15,8,3,10,5,8,4,7,8,26,0,19,5,4,7,5,1),(4956,'2015-03-10 21:49:30','2015-03-10 21:49:30',1,30000345,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(4957,'2015-03-10 21:49:30','2015-08-29 14:46:02',1,30005177,2,2,2,5,2,2,3,1,5,7,1,4,18,16,14,68,6,5,2,4,7,8,1,6),(4958,'2015-03-10 21:49:30','2015-08-29 14:46:02',1,30002147,2,6,2,0,1,5,1,6,1,0,5,5,1,4,4,2,2,0,3,3,3,1,2,4),(4959,'2015-03-10 21:49:30','2015-08-29 14:46:02',1,30004005,3,2,8,7,9,3,2,10,3,6,10,4,51,16,5,5,4,4,4,3,3,1,7,5),(4960,'2015-03-10 21:49:30','2015-08-29 14:46:02',1,30003968,45,73,45,30,19,40,21,17,15,17,29,26,73,24,23,31,14,33,17,38,14,10,34,21),(4961,'2015-03-10 21:49:30','2015-08-29 14:46:02',1,30004753,10,5,14,8,13,2,13,46,33,28,32,21,29,40,44,33,29,11,19,39,25,34,18,17),(4962,'2015-03-10 21:49:30','2015-08-29 14:46:02',1,30005142,9,2,1,1,4,0,5,2,0,0,0,0,0,0,0,1,1,0,1,1,1,1,1,1),(4963,'2015-03-10 21:49:30','2015-08-29 14:46:02',1,30000830,1,9,13,8,8,3,0,10,3,0,4,5,5,4,3,13,19,2,22,19,7,8,7,7),(4964,'2015-03-10 21:49:30','2015-08-29 14:46:02',1,30001250,7,22,23,15,11,17,1,8,35,113,47,42,38,44,30,39,23,10,23,46,37,39,27,25),(4965,'2015-03-10 21:49:30','2015-08-29 14:46:02',1,30001939,9,9,6,11,9,10,21,10,16,20,31,33,20,28,25,27,38,11,22,17,18,22,32,28),(4966,'2015-03-10 21:49:30','2015-08-29 14:46:02',1,30000532,3,2,0,1,2,0,2,0,2,1,1,2,4,3,0,2,0,0,0,3,0,1,1,1),(4967,'2015-03-10 21:49:30','2015-08-29 14:46:02',1,30000932,0,5,2,1,5,1,1,0,3,3,3,2,7,2,7,15,3,0,2,3,3,1,2,1),(4968,'2015-03-10 21:49:30','2015-08-29 14:46:02',1,30000893,3,1,2,3,5,9,4,1,6,5,3,6,5,6,5,8,6,3,3,3,9,7,3,4),(4969,'2015-03-10 21:49:30','2015-08-29 14:46:02',1,30001897,1,10,7,7,4,1,6,5,7,6,9,12,9,23,23,21,7,5,6,6,5,7,14,20),(4970,'2015-03-10 21:49:30','2015-03-10 21:49:30',1,30001516,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(4971,'2015-03-10 21:49:30','2015-08-29 14:46:02',1,30001105,0,6,2,3,3,8,6,10,6,4,7,9,1,5,6,6,2,1,3,1,7,11,9,3),(4972,'2015-03-10 21:49:30','2015-08-29 14:46:02',1,30004537,3,3,2,7,4,3,1,2,1,1,3,2,1,3,2,3,2,4,1,0,1,1,3,3),(4973,'2015-03-10 21:49:30','2015-08-29 14:46:02',1,30003660,4,4,8,19,14,13,7,5,2,4,4,3,4,3,3,3,2,1,0,0,2,3,18,10),(4974,'2015-03-10 21:49:30','2015-08-29 14:46:02',1,30004538,6,8,9,5,1,16,12,10,7,3,5,5,7,8,7,4,8,2,1,4,3,2,8,3),(4975,'2015-03-10 21:49:30','2015-08-29 14:46:02',1,30000617,1,2,11,3,1,3,0,8,5,6,0,2,3,6,6,2,4,3,1,14,5,3,4,3),(4976,'2015-03-10 21:49:30','2015-08-29 14:46:02',1,30001311,1,2,1,1,0,2,2,1,1,0,6,5,3,5,4,2,3,2,5,2,0,0,1,1),(4977,'2015-03-10 21:49:30','2015-03-10 21:49:30',1,30000367,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(4978,'2015-03-10 21:49:30','2015-08-29 14:46:02',1,30000635,0,3,8,6,3,0,3,0,3,3,25,23,5,37,35,2,9,0,3,3,0,2,3,2),(4979,'2015-03-10 21:49:30','2015-08-29 14:46:02',1,30002172,15,15,74,33,43,28,14,12,14,50,23,31,5,30,34,9,17,0,19,31,8,14,18,18),(4980,'2015-03-10 21:49:30','2015-08-29 14:46:02',1,30001095,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,2,2,0,0),(4981,'2015-03-10 21:49:30','2015-03-10 21:49:30',1,30001522,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(4982,'2015-03-10 21:49:30','2015-08-29 14:46:02',1,30003205,11,1,4,6,5,7,7,27,11,12,1,2,4,2,5,3,7,18,17,1,2,7,3,2),(4983,'2015-03-10 21:49:30','2015-03-10 21:49:30',1,30001502,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(4984,'2015-03-10 21:49:30','2015-08-29 14:46:02',1,30000521,7,6,14,12,14,7,8,0,1,4,9,7,14,20,6,11,9,2,5,5,16,9,15,5),(4985,'2015-03-10 21:49:30','2015-08-29 14:46:02',1,30003983,1,4,5,1,1,2,0,0,3,5,1,1,3,5,2,0,4,2,1,1,3,3,7,9),(4986,'2015-03-10 21:49:30','2015-08-29 14:46:02',1,30000894,51,40,46,45,43,39,20,58,26,36,35,40,51,84,49,39,43,23,24,50,65,66,33,22),(4987,'2015-03-10 21:49:30','2015-08-29 14:46:02',1,30003622,1,6,4,6,5,5,1,3,0,1,1,0,1,0,0,0,0,0,2,0,2,3,0,1),(4988,'2015-03-10 21:49:30','2015-08-29 14:46:02',1,30001179,31,11,15,13,11,9,23,11,47,61,12,23,75,15,23,18,27,14,21,18,31,33,11,20),(4989,'2015-03-10 21:49:30','2015-08-29 14:46:02',1,30001748,22,16,39,31,21,3,4,8,2,6,1,1,1,16,9,7,7,0,0,2,13,7,10,5),(4990,'2015-03-10 21:49:30','2015-08-29 14:46:02',1,30003102,19,16,9,9,21,31,9,6,5,6,6,8,2,6,4,9,14,5,15,18,6,7,9,12),(4991,'2015-03-10 21:49:30','2015-08-29 14:46:02',1,30002787,60,99,78,87,64,42,70,57,78,87,72,63,96,105,104,114,87,65,67,82,85,98,83,76),(4992,'2015-03-10 21:49:30','2015-08-29 14:46:02',1,30000191,8,2,12,14,10,11,6,8,7,11,9,8,10,4,8,10,8,7,28,19,6,4,11,30),(4993,'2015-03-10 21:49:30','2015-08-29 14:46:02',1,30003553,50,45,46,52,59,40,18,41,45,57,54,57,65,57,66,63,50,31,47,57,95,83,57,48),(4994,'2015-03-10 21:49:30','2015-08-29 14:46:02',1,30002790,135,228,319,186,170,187,120,142,258,273,279,271,280,276,297,243,209,153,181,218,339,318,222,228),(4995,'2015-03-10 21:49:30','2015-08-29 14:46:02',1,30004803,0,0,0,0,0,0,0,1,0,1,0,0,0,0,0,0,0,0,4,3,1,1,2,1),(4996,'2015-03-10 21:49:30','2015-08-29 14:46:02',1,30001872,10,13,6,15,11,6,7,5,8,8,7,11,14,15,17,16,11,1,3,6,11,12,8,10),(4997,'2015-03-10 21:49:30','2015-08-29 14:46:02',1,30000238,33,65,53,71,69,111,49,55,24,52,25,19,47,59,59,113,56,72,81,28,67,56,31,21),(4998,'2015-03-10 21:49:30','2015-08-29 14:46:02',1,30001160,28,95,102,56,37,54,44,131,114,186,101,53,183,185,264,92,113,191,88,149,126,221,96,111),(4999,'2015-03-10 21:49:30','2015-03-10 21:49:30',1,30001493,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(5000,'2015-03-10 21:49:30','2015-08-29 14:46:02',1,30004847,3,0,0,1,3,0,34,29,16,17,18,10,39,14,14,10,2,4,7,14,8,12,3,0),(5001,'2015-03-10 21:49:30','2015-08-29 14:46:02',1,30000972,3,7,2,3,0,2,5,5,6,5,1,1,6,12,8,14,2,7,3,4,5,9,7,3),(5002,'2015-03-10 21:49:30','2015-08-29 14:46:02',1,30002415,16,21,11,11,12,18,8,14,14,18,18,22,26,20,15,21,27,27,19,20,24,24,8,7),(5003,'2015-03-10 21:49:30','2015-08-29 14:46:02',1,30001878,23,21,5,31,33,9,5,2,56,58,41,52,28,49,37,54,27,17,20,29,61,71,44,58),(5004,'2015-03-10 21:49:30','2015-08-29 14:46:02',1,30003583,10,28,36,21,25,25,12,23,21,25,35,33,23,18,21,22,18,15,12,22,13,13,29,31),(5005,'2015-03-10 21:49:30','2015-03-10 21:49:30',1,30000326,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(5006,'2015-03-10 21:49:30','2015-08-29 14:46:02',1,30000746,1,1,0,1,0,0,1,1,1,0,4,5,1,1,1,1,13,1,0,0,1,2,0,1),(5007,'2015-03-10 21:49:30','2015-08-29 14:46:02',1,30001247,2,5,18,12,9,11,2,21,27,51,36,14,20,35,18,27,38,16,8,53,21,24,6,14),(5008,'2015-03-10 21:49:30','2015-08-29 14:46:02',1,30000725,1,8,0,2,3,1,8,2,1,2,1,1,10,20,49,6,2,0,1,0,2,1,11,9),(5009,'2015-03-10 21:49:30','2015-08-29 14:46:02',1,30002629,0,1,2,3,1,1,2,2,71,21,6,5,4,9,6,7,9,2,2,2,4,8,6,11),(5010,'2015-03-10 21:49:30','2015-08-29 14:46:02',1,30002429,2,22,12,8,12,5,3,23,14,9,21,8,4,10,10,13,8,6,12,20,6,11,6,5),(5011,'2015-03-10 21:49:30','2015-08-29 14:46:02',1,30000871,92,90,120,79,77,120,93,87,72,231,226,121,119,346,310,82,61,48,91,288,105,108,71,59),(5012,'2015-03-10 21:49:30','2015-08-29 14:46:02',1,30001839,21,48,56,27,34,19,13,18,45,57,48,53,49,73,69,49,50,25,48,42,30,43,46,33),(5013,'2015-03-10 21:49:30','2015-08-29 14:46:02',1,30000687,9,9,0,8,3,6,11,18,12,1,24,27,10,4,14,5,6,1,4,10,7,1,9,11),(5014,'2015-03-10 21:49:30','2015-08-29 14:46:02',1,30001756,7,2,2,2,2,1,0,2,0,2,1,1,21,16,15,3,2,0,0,1,3,2,2,2),(5015,'2015-03-10 21:49:30','2015-08-29 14:46:02',1,30000206,7,10,10,5,3,8,4,10,13,17,8,7,6,10,14,17,19,16,10,15,14,9,13,9),(5016,'2015-03-10 21:49:30','2015-08-29 14:46:02',1,30003422,31,31,32,57,52,41,17,35,58,54,43,39,44,52,41,48,41,45,39,37,50,45,38,45),(5017,'2015-03-10 21:49:30','2015-08-29 14:46:02',1,30002554,15,20,16,16,26,17,24,15,75,157,33,23,19,38,34,26,37,6,15,26,33,45,16,16),(5018,'2015-03-10 21:49:30','2015-08-29 14:46:02',1,30001595,4,0,0,3,3,3,2,8,78,92,30,29,56,45,38,47,32,42,35,63,72,67,37,39),(5019,'2015-03-10 21:49:30','2015-08-29 14:46:02',1,30001207,18,8,11,17,18,4,4,14,80,85,56,57,34,78,65,45,18,39,57,63,54,55,20,35),(5020,'2015-03-10 21:49:30','2015-08-29 14:46:02',1,30001890,3,10,4,21,12,16,13,1,10,8,16,11,33,15,15,34,20,4,22,13,23,27,17,17),(5021,'2015-03-10 21:49:30','2015-08-29 14:46:02',1,30001755,28,16,41,33,23,4,3,8,1,5,3,3,22,17,12,7,7,0,0,3,13,7,11,6),(5022,'2015-03-10 21:49:30','2015-08-29 14:46:02',1,30001173,9,14,34,21,26,30,4,5,60,70,35,30,25,52,44,46,29,22,38,38,26,18,39,33),(5023,'2015-03-10 21:49:30','2015-03-10 21:49:30',1,30000372,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(5024,'2015-03-10 21:49:30','2015-08-29 14:46:02',1,30001336,6,12,5,19,17,10,6,8,23,28,42,35,23,42,35,11,14,11,11,25,14,9,26,12),(5025,'2015-03-10 21:49:30','2015-03-10 21:49:30',1,30001468,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(5026,'2015-03-10 21:49:30','2015-08-29 14:46:02',1,30000315,7,12,11,5,5,4,0,3,10,9,17,7,12,8,10,17,20,2,5,4,10,8,3,8),(5027,'2015-03-10 21:49:30','2015-08-29 14:46:02',1,30004662,9,5,6,5,4,11,3,3,63,74,32,41,454,272,164,126,13,34,353,184,7,17,15,15),(5028,'2015-03-10 21:49:30','2015-08-29 14:46:02',1,30002854,27,26,28,10,21,6,7,9,56,77,48,38,25,44,48,26,26,2,7,28,20,43,45,36),(5029,'2015-03-10 21:49:30','2015-08-29 14:46:02',1,30001849,11,11,13,4,4,4,5,9,34,34,23,18,32,26,25,34,21,11,10,23,25,16,32,27),(5030,'2015-03-10 21:49:30','2015-08-29 14:46:02',1,30004368,5,3,14,10,6,11,11,4,11,12,16,9,11,41,25,6,5,2,11,12,7,3,12,7),(5031,'2015-03-10 21:49:30','2015-08-29 14:46:02',1,30000711,2,2,8,6,7,6,6,6,1,1,4,5,1,0,4,6,2,0,1,0,4,6,7,4),(5032,'2015-03-10 21:49:30','2015-08-29 14:46:02',1,30000928,4,3,1,0,3,0,0,0,3,6,2,1,5,1,1,0,4,1,0,1,2,0,1,1),(5033,'2015-03-10 21:49:30','2015-08-29 14:46:02',1,30002371,1,16,8,14,12,21,9,22,19,17,19,24,22,195,423,23,26,14,5,8,7,10,12,12),(5034,'2015-03-10 21:49:30','2015-08-29 14:46:02',1,30001194,47,14,22,16,16,21,18,14,44,81,61,43,40,34,22,28,19,15,45,37,28,18,26,19),(5035,'2015-03-10 21:49:30','2015-08-29 14:46:02',1,30003696,15,25,17,15,20,17,5,15,0,8,2,1,0,4,2,1,3,4,0,3,1,3,5,4),(5036,'2015-03-10 21:49:30','2015-08-29 14:46:02',1,30000602,3,5,0,3,4,2,11,0,19,18,6,2,2,19,24,3,1,1,4,6,12,11,0,1),(5037,'2015-03-10 21:49:30','2015-08-29 14:46:02',1,30004864,1,0,0,2,1,0,0,7,4,0,2,4,1,1,3,8,14,1,1,3,2,3,7,10),(5038,'2015-03-10 21:49:30','2015-08-29 14:46:02',1,30003166,14,17,18,9,7,31,6,26,42,31,12,17,32,33,21,22,18,26,19,20,75,91,98,60),(5039,'2015-03-10 21:49:30','2015-08-29 14:46:02',1,30000957,2,2,2,7,8,3,1,8,7,4,4,11,2,4,2,1,2,1,5,2,4,4,5,5),(5040,'2015-03-10 21:49:30','2015-08-29 14:46:02',1,30000433,2,6,3,4,2,0,16,2,1,2,6,3,7,5,8,8,4,1,4,0,5,3,1,2),(5041,'2015-03-10 21:49:30','2015-08-29 14:46:02',1,30002348,2,2,6,1,2,1,1,0,3,4,2,2,6,2,2,0,1,4,5,3,3,1,3,1),(5042,'2015-03-10 21:49:30','2015-08-29 14:46:02',1,30000187,54,54,63,50,46,39,46,32,75,76,72,61,42,67,74,40,60,37,50,57,83,59,45,60),(5043,'2015-03-10 21:49:30','2015-08-29 14:46:02',1,30002939,36,55,33,41,39,41,84,55,45,52,20,14,12,43,42,17,11,4,9,20,24,14,18,11),(5044,'2015-03-10 21:49:30','2015-08-29 14:46:02',1,30003638,7,12,5,4,2,12,7,14,6,5,10,6,6,1,4,6,7,2,3,2,5,5,8,11),(5045,'2015-03-10 21:49:30','2015-08-29 14:46:02',1,30000698,3,2,0,2,0,0,0,1,6,1,1,2,5,5,8,7,6,2,2,2,2,5,1,2),(5046,'2015-03-10 21:49:30','2015-08-29 14:46:02',1,30001140,5,0,2,3,1,2,6,1,4,3,13,14,4,6,2,20,4,0,0,0,4,5,13,29),(5047,'2015-03-10 21:49:30','2015-08-29 14:46:02',1,30003216,15,13,30,33,30,15,26,20,17,21,17,28,10,18,19,12,14,8,21,15,16,11,27,5),(5048,'2015-03-10 21:49:30','2015-08-29 14:46:02',1,30001998,20,12,10,11,13,9,8,23,6,7,7,7,4,7,5,4,1,8,13,6,5,9,7,3),(5049,'2015-03-10 21:49:30','2015-08-29 14:46:02',1,30003256,28,50,32,18,12,36,30,11,4,5,8,3,5,8,4,8,3,8,7,15,5,7,16,13),(5050,'2015-03-10 21:49:30','2015-08-29 14:46:02',1,30003120,22,17,19,10,14,24,13,18,22,21,21,26,46,20,11,18,26,40,25,19,19,23,34,48),(5051,'2015-03-10 21:49:30','2015-03-10 21:49:30',1,30000337,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(5052,'2015-03-10 21:49:30','2015-08-29 14:46:02',1,30004621,21,46,33,43,34,36,23,32,12,20,30,18,28,42,25,25,39,8,25,41,19,24,21,24),(5053,'2015-03-10 21:49:30','2015-08-29 14:46:02',1,30002126,18,41,29,15,8,30,0,7,3,1,6,7,2,4,5,2,6,3,2,2,7,7,2,5),(5054,'2015-03-10 21:49:30','2015-08-29 14:46:02',1,30005016,100,129,134,123,129,103,104,106,136,147,172,142,149,205,191,159,129,77,139,146,205,192,186,152),(5055,'2015-03-10 21:49:30','2015-08-29 14:46:02',1,30002622,12,8,1,4,2,4,2,0,1,8,3,3,3,5,5,2,2,4,8,3,21,35,2,1),(5056,'2015-03-10 21:49:30','2015-08-29 14:46:02',1,30004840,8,3,6,2,1,2,36,40,5,4,6,3,5,6,11,7,2,2,1,17,7,9,8,3),(5057,'2015-03-10 21:49:30','2015-08-29 14:46:02',1,30000517,1,1,0,2,3,2,5,0,1,1,0,1,0,8,2,0,0,1,0,0,0,0,0,0),(5058,'2015-03-10 21:49:30','2015-08-29 14:46:02',1,30004915,9,6,0,8,5,2,5,3,12,5,1,10,6,4,5,0,15,25,10,2,4,5,2,5),(5059,'2015-03-10 21:49:30','2015-08-29 14:46:02',1,30004173,6,0,2,0,0,2,0,0,4,3,2,0,0,3,3,1,2,0,0,0,3,4,0,0),(5060,'2015-03-10 21:49:30','2015-08-29 14:46:02',1,30003744,14,33,10,17,19,12,15,20,72,40,49,36,28,38,27,34,17,41,22,61,40,39,36,46),(5061,'2015-03-10 21:49:30','2015-08-29 14:46:02',1,30002148,3,6,7,6,2,5,1,16,0,1,5,8,2,8,7,0,5,0,0,1,6,3,5,6),(5062,'2015-03-10 21:49:30','2015-08-29 14:46:02',1,30003110,26,23,37,18,23,29,31,69,32,27,50,76,141,248,220,56,77,54,62,164,110,66,93,96),(5063,'2015-03-10 21:49:30','2015-08-29 14:46:02',1,30001978,93,217,60,133,105,166,92,97,73,64,92,85,62,112,107,54,82,97,140,63,71,63,85,64),(5064,'2015-03-10 21:49:30','2015-08-29 14:46:02',1,30003245,11,2,3,0,5,17,5,4,0,3,5,10,5,6,9,3,6,0,0,1,8,16,6,8),(5065,'2015-03-10 21:49:30','2015-08-29 14:46:02',1,30000541,2,3,8,1,0,0,5,0,11,19,16,12,1,1,2,2,13,8,5,3,2,2,14,4),(5066,'2015-03-10 21:49:30','2015-08-29 14:46:02',1,30003274,17,149,12,6,8,12,27,10,18,21,4,3,33,27,16,19,5,32,20,18,54,39,14,13),(5067,'2015-03-10 21:49:30','2015-08-29 14:46:02',1,30000882,4,7,5,4,3,10,4,2,2,2,2,4,2,3,2,7,0,2,2,2,2,1,1,3),(5068,'2015-03-10 21:49:30','2015-08-29 14:46:02',1,30003259,2,3,1,1,1,5,2,4,0,0,2,2,2,3,1,1,0,0,0,0,1,1,0,0),(5069,'2015-03-10 21:49:30','2015-08-29 14:46:02',1,30004907,1,4,4,4,4,1,6,7,2,2,0,1,0,1,2,2,0,0,0,2,2,4,4,2),(5070,'2015-03-10 21:49:30','2015-08-29 14:46:02',1,30003173,12,5,14,16,9,32,11,16,23,17,20,22,8,13,12,13,4,30,17,10,40,22,7,9),(5071,'2015-03-10 21:49:30','2015-08-29 14:46:02',1,30001594,1,0,0,3,4,2,2,8,118,126,14,16,17,12,21,30,24,11,14,38,30,27,22,19),(5072,'2015-03-10 21:49:30','2015-03-10 21:49:30',1,30000339,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(5073,'2015-03-10 21:49:30','2015-08-29 14:46:02',1,30003278,32,154,70,41,25,58,56,64,32,33,37,25,51,32,24,24,23,29,79,159,23,27,18,23),(5074,'2015-03-10 21:49:30','2015-08-29 14:46:02',1,30004075,1,12,5,6,2,4,1,4,1,0,1,1,3,5,5,1,1,1,0,1,5,6,2,2),(5075,'2015-03-10 21:49:30','2015-08-29 14:46:02',1,30001059,5,1,10,3,1,3,8,2,30,16,39,23,5,9,5,9,2,0,0,0,11,10,9,4),(5076,'2015-03-10 21:49:30','2015-08-29 14:46:02',1,30003288,28,24,14,24,24,12,9,7,17,21,25,23,23,26,19,40,35,23,15,14,20,22,30,26),(5077,'2015-03-10 21:49:30','2015-08-29 14:46:02',1,30003770,78,74,73,56,36,31,17,32,61,79,49,49,91,42,34,35,35,62,52,78,27,45,70,48),(5078,'2015-03-10 21:49:30','2015-08-29 14:46:02',1,30002916,7,53,10,9,10,10,10,5,38,42,44,41,20,39,17,16,13,17,18,18,14,18,48,21),(5079,'2015-03-10 21:49:30','2015-08-29 14:46:02',1,30003208,12,2,4,8,7,7,3,15,3,5,0,3,6,1,2,2,8,2,3,0,5,5,8,5),(5080,'2015-03-10 21:49:30','2015-08-29 14:46:02',1,30000808,26,47,54,82,62,26,14,41,17,20,20,18,2,7,7,4,7,4,1,5,13,13,14,12),(5081,'2015-03-10 21:49:30','2015-03-10 21:49:30',1,30000358,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(5082,'2015-03-10 21:49:30','2015-08-29 14:46:02',1,30000833,1,5,6,2,33,0,1,14,0,0,4,1,5,2,6,3,4,1,2,4,2,2,6,13),(5083,'2015-03-10 21:49:30','2015-08-29 14:46:02',1,30001835,28,23,28,27,28,24,17,14,48,59,40,53,66,71,67,45,58,25,48,36,31,41,49,38),(5084,'2015-03-10 21:49:30','2015-08-29 14:46:02',1,30001086,0,0,0,0,0,1,2,1,1,4,2,3,3,1,1,3,6,0,6,2,3,0,0,1),(5085,'2015-03-10 21:49:30','2015-08-29 14:46:02',1,30000713,5,3,2,5,7,40,12,6,1,2,7,6,4,3,21,0,1,0,2,4,6,4,4,5),(5086,'2015-03-10 21:49:30','2015-08-29 14:46:02',1,30002943,18,22,6,10,15,16,12,26,26,16,20,20,21,20,20,16,10,1,10,23,19,16,15,10),(5087,'2015-03-10 21:49:30','2015-08-29 14:46:02',1,30003688,97,277,119,160,123,60,64,51,36,43,37,43,50,65,48,69,28,33,58,43,42,33,57,48),(5088,'2015-03-10 21:49:30','2015-08-29 14:46:02',1,30001211,7,4,11,14,13,3,3,4,6,1,19,18,22,6,1,8,10,8,9,9,7,5,6,7),(5089,'2015-03-10 21:49:30','2015-08-29 14:46:02',1,30001249,24,30,90,33,23,33,8,28,65,210,87,65,83,100,77,90,108,43,44,102,80,61,63,55),(5090,'2015-03-10 21:49:30','2015-08-29 14:46:02',1,30000496,3,7,0,4,4,4,8,4,3,2,10,7,4,8,8,6,10,23,6,6,9,6,6,8),(5091,'2015-03-10 21:49:30','2015-08-29 14:46:02',1,30000245,8,1,1,1,1,2,3,1,2,0,0,0,0,1,1,0,0,2,2,0,5,2,7,9),(5092,'2015-03-10 21:49:30','2015-08-29 14:46:02',1,30001967,34,117,40,50,55,60,22,57,46,71,255,215,50,42,30,25,45,23,19,18,33,47,37,37),(5093,'2015-03-10 21:49:30','2015-08-29 14:46:02',1,30004331,19,56,31,43,27,18,29,21,15,26,16,8,24,66,33,19,26,6,22,19,17,18,21,18),(5094,'2015-03-10 21:49:30','2015-08-29 14:46:02',1,30000777,5,11,3,5,5,14,10,8,7,5,8,2,4,4,5,6,11,1,14,1,2,17,7,7),(5095,'2015-03-10 21:49:30','2015-08-29 14:46:02',1,30003700,6,7,7,5,15,9,4,2,0,0,4,2,0,12,9,7,1,7,1,1,9,6,3,4),(5096,'2015-03-10 21:49:30','2015-08-29 14:46:02',1,30001905,2,12,5,22,13,16,9,1,6,1,12,6,8,11,16,13,9,4,10,10,21,14,16,14),(5097,'2015-03-10 21:49:30','2015-08-29 14:46:02',1,30004416,0,4,4,0,2,2,3,10,5,3,2,0,6,13,20,13,6,0,2,1,0,2,5,3),(5098,'2015-03-10 21:49:30','2015-08-29 14:46:02',1,30003773,66,77,74,50,39,52,21,29,51,66,55,48,125,37,33,23,34,43,50,71,22,40,46,31),(5099,'2015-03-10 21:49:30','2015-03-10 21:49:30',1,30001490,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(5100,'2015-03-10 21:49:30','2015-08-29 14:46:02',1,30004355,10,7,2,4,1,1,6,5,1,2,2,2,0,2,2,1,0,0,2,1,1,1,4,2),(5101,'2015-03-10 21:49:30','2015-08-29 14:46:02',1,30000221,6,14,1,2,2,4,5,6,3,1,3,3,5,3,6,9,9,8,6,6,5,13,10,8),(5102,'2015-03-10 21:49:30','2015-08-29 14:46:02',1,30000664,17,35,31,65,14,28,13,15,17,18,12,17,18,10,12,41,14,24,24,21,58,63,5,5),(5103,'2015-03-10 21:49:30','2015-08-29 14:46:02',1,30000470,3,0,1,0,0,0,0,0,35,9,4,6,3,27,33,1,1,2,1,1,3,1,2,0),(5104,'2015-03-10 21:49:30','2015-08-29 14:46:02',1,30002319,8,3,0,1,4,3,0,0,2,1,1,3,0,0,0,1,1,2,0,0,0,1,1,2),(5105,'2015-03-10 21:49:30','2015-03-10 21:49:30',1,30000417,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(5106,'2015-03-10 21:49:30','2015-08-29 14:46:02',1,30002946,2,3,7,7,11,13,17,23,11,11,2,4,7,18,7,7,8,2,7,8,9,12,11,12),(5107,'2015-03-10 21:49:30','2015-08-29 14:46:02',1,30002897,8,57,8,13,10,4,16,16,98,152,235,177,331,213,226,122,123,223,134,161,612,103,72,70),(5108,'2015-03-10 21:49:30','2015-08-29 14:46:02',1,30001093,1,3,0,4,5,3,1,0,3,5,0,0,2,1,4,8,4,0,0,1,2,2,0,0),(5109,'2015-03-10 21:49:30','2015-08-29 14:46:02',1,30002118,10,19,17,13,5,4,8,1,86,86,13,14,23,31,10,20,18,11,23,25,38,35,20,20),(5110,'2015-03-10 21:49:30','2015-08-29 14:46:02',1,30000889,8,7,17,11,9,8,8,6,47,42,26,21,44,34,40,29,34,16,12,20,11,24,24,19),(5111,'2015-03-10 21:49:30','2015-08-29 14:46:02',1,30001778,3,0,0,1,1,12,0,0,0,0,2,2,0,0,0,0,0,0,1,1,1,2,2,2),(5112,'2015-03-10 21:49:30','2015-08-29 14:46:02',1,30003224,3,2,4,2,1,5,2,5,2,1,1,1,3,1,0,1,2,5,0,0,4,3,2,2),(5113,'2015-03-10 21:49:30','2015-08-29 14:46:02',1,30000604,0,10,3,4,5,0,0,4,4,4,5,4,16,10,11,12,2,31,8,8,12,21,11,9),(5114,'2015-03-10 21:49:30','2015-08-29 14:46:02',1,30000293,1,4,2,1,0,2,0,4,8,6,5,6,0,2,3,1,3,0,0,1,0,3,1,0),(5115,'2015-03-10 21:49:30','2015-08-29 14:46:02',1,30004552,22,42,25,22,28,17,10,32,65,86,34,31,58,25,14,42,19,26,15,58,19,33,12,9),(5116,'2015-03-10 21:49:30','2015-08-29 14:46:02',1,30001958,10,15,4,6,5,10,5,17,5,7,2,2,1,7,7,8,5,8,8,5,9,5,12,7),(5117,'2015-03-10 21:49:30','2015-08-29 14:46:02',1,30004069,32,31,6,12,5,12,3,6,12,19,5,9,10,8,17,16,6,7,2,15,11,10,13,13),(5118,'2015-03-10 21:49:30','2015-08-29 14:46:02',1,30004875,31,24,20,31,21,14,41,32,9,11,8,9,2,3,4,8,4,0,5,1,5,4,17,10),(5119,'2015-03-10 21:49:30','2015-08-29 14:46:02',1,30003731,171,137,139,157,152,140,131,172,398,424,184,160,350,292,283,234,178,294,359,444,180,167,157,152),(5120,'2015-03-10 21:49:30','2015-08-29 14:46:02',1,30001973,4,1,4,1,1,1,1,0,0,0,0,1,0,0,2,4,1,1,0,3,4,1,1,0),(5121,'2015-03-10 21:49:30','2015-08-29 14:46:02',1,30001798,0,0,0,0,1,0,0,0,0,0,2,3,32,10,10,6,4,4,5,3,5,5,2,1),(5122,'2015-03-10 21:49:30','2015-08-29 14:46:02',1,30004613,0,13,1,4,1,0,5,3,132,1,6,6,6,27,24,2,1,18,25,16,20,17,7,3),(5123,'2015-03-10 21:49:30','2015-08-29 14:46:02',1,30000752,3,6,6,12,11,3,1,8,0,1,5,4,4,4,8,4,1,0,9,4,2,5,2,0),(5124,'2015-03-10 21:49:30','2015-08-29 14:46:02',1,30003263,4,23,18,6,9,13,9,11,1,5,25,29,12,3,5,3,5,14,9,3,5,1,0,0),(5125,'2015-03-10 21:49:30','2015-08-29 14:46:02',1,30003119,13,7,14,5,4,21,6,7,24,19,23,27,52,28,14,19,34,35,17,22,15,15,38,47),(5126,'2015-03-10 21:49:30','2015-08-29 14:46:02',1,30004342,57,54,62,81,66,41,67,96,24,44,39,37,33,38,39,32,23,14,31,30,29,26,36,30),(5127,'2015-03-10 21:49:30','2015-08-29 14:46:02',1,30003252,4,45,4,2,2,14,5,3,2,3,2,0,1,4,0,5,4,3,2,2,4,1,1,2),(5128,'2015-03-10 21:49:30','2015-08-29 14:46:02',1,30001792,0,1,0,1,2,0,0,1,0,1,0,1,0,0,0,0,1,1,3,2,2,2,2,5),(5129,'2015-03-10 21:49:30','2015-08-29 14:46:02',1,30004894,6,13,4,8,3,8,1,3,9,10,4,6,6,4,6,4,9,11,10,9,10,10,10,8),(5130,'2015-03-10 21:49:30','2015-08-29 14:46:02',1,30001999,22,14,11,11,13,10,8,23,5,7,8,8,5,8,3,4,2,8,14,7,3,7,7,3),(5131,'2015-03-10 21:49:30','2015-08-29 14:46:02',1,30000750,3,5,0,2,3,3,1,14,7,3,9,4,6,4,7,7,30,0,14,2,3,2,6,3),(5132,'2015-03-10 21:49:30','2015-08-29 14:46:02',1,30000585,18,21,6,40,6,19,17,7,29,20,30,7,36,53,41,39,6,17,53,21,55,66,11,15),(5133,'2015-03-10 21:49:30','2015-08-29 14:46:02',1,30001584,1,5,3,6,4,0,0,0,0,0,0,0,1,4,5,4,0,1,0,0,0,0,0,0),(5134,'2015-03-10 21:49:30','2015-08-29 14:46:02',1,30002155,3,4,1,0,3,3,0,1,1,3,4,4,6,4,10,3,1,5,35,71,11,15,1,5),(5135,'2015-03-10 21:49:30','2015-08-29 14:46:02',1,30003313,10,29,6,9,2,9,10,1,18,15,4,9,44,42,37,13,4,24,6,9,11,24,13,12),(5136,'2015-03-10 21:49:30','2015-08-29 14:46:02',1,30000275,5,41,11,12,24,43,19,21,4,1,6,3,2,0,1,3,2,7,7,33,1,1,7,7),(5137,'2015-03-10 21:49:30','2015-08-29 14:46:02',1,30000447,1,0,1,0,1,1,3,2,4,3,4,5,7,17,6,11,13,23,163,21,33,33,10,7),(5138,'2015-03-10 21:49:30','2015-08-29 14:46:02',1,30001552,1,0,0,0,0,0,2,0,1,4,3,2,3,1,0,1,1,0,0,5,1,3,5,7),(5139,'2015-03-10 21:49:30','2015-08-29 14:46:02',1,30004038,7,19,26,49,29,20,10,15,14,20,16,11,5,18,20,7,15,12,33,5,22,11,12,8),(5140,'2015-03-10 21:49:30','2015-08-29 14:46:02',1,30002822,7,6,5,6,4,7,4,6,24,22,9,13,12,7,10,7,7,0,0,11,19,16,8,2),(5141,'2015-03-10 21:49:30','2015-08-29 14:46:02',1,30001113,0,0,0,1,1,0,1,0,0,0,0,0,0,0,0,0,1,1,1,0,1,0,0,0),(5142,'2015-03-10 21:49:30','2015-08-29 14:46:02',1,30001089,0,3,0,3,2,8,2,2,0,1,3,2,1,0,2,0,4,1,3,0,1,1,2,1),(5143,'2015-03-10 21:49:30','2015-08-29 14:46:02',1,30005095,9,20,16,15,18,5,12,6,11,6,8,7,8,20,9,7,9,5,5,6,16,10,1,5),(5144,'2015-03-10 21:49:30','2015-08-29 14:46:02',1,30004856,0,2,0,1,3,1,1,0,2,1,0,1,0,5,2,1,2,0,1,1,0,1,1,2),(5145,'2015-03-10 21:49:30','2015-08-29 14:46:02',1,30001753,2,25,8,16,15,7,5,0,1,1,1,1,2,4,1,4,1,1,0,0,3,4,1,3),(5146,'2015-03-10 21:49:30','2015-08-29 14:46:02',1,30004655,10,8,7,15,15,12,0,2,209,215,67,35,135,218,81,92,135,181,191,156,87,100,30,37),(5147,'2015-03-10 21:49:30','2015-08-29 14:46:02',1,30000237,7,2,2,6,6,5,7,6,0,0,0,2,0,1,4,5,1,1,1,0,0,1,1,3),(5148,'2015-03-10 21:49:30','2015-08-29 14:46:02',1,30000678,30,278,43,70,80,64,58,25,30,50,34,44,42,67,57,58,25,6,51,112,59,36,49,32),(5149,'2015-03-10 21:49:30','2015-08-29 14:46:02',1,30002122,16,86,30,28,29,38,23,17,59,71,34,23,41,50,45,33,36,4,51,25,44,49,22,24),(5150,'2015-03-10 21:49:30','2015-08-29 14:46:02',1,30004320,8,24,16,16,20,42,15,11,16,26,10,6,7,28,12,4,7,5,8,3,3,5,7,1),(5151,'2015-03-10 21:49:30','2015-08-29 14:46:02',1,30001325,10,19,10,6,9,9,18,11,11,18,4,14,22,18,25,15,18,4,16,30,17,12,17,24),(5152,'2015-03-10 21:49:30','2015-08-29 14:46:02',1,30004382,6,1,3,6,2,1,17,4,1,3,0,0,3,19,22,3,1,1,1,1,1,3,6,2),(5153,'2015-03-10 21:49:30','2015-08-29 14:46:02',1,30000499,0,1,0,1,1,5,5,1,2,4,7,4,1,3,7,1,2,1,0,2,3,2,1,1),(5154,'2015-03-10 21:49:30','2015-08-29 14:46:02',1,30002600,3,3,3,1,0,0,0,1,0,0,3,4,5,50,10,7,35,0,0,2,5,5,4,4),(5155,'2015-03-10 21:49:30','2015-08-29 14:46:02',1,30001021,54,50,33,61,65,65,55,65,86,94,73,67,91,90,113,72,58,34,37,42,88,44,75,69),(5156,'2015-03-10 21:49:30','2015-08-29 14:46:02',1,30003228,5,1,17,6,4,6,2,6,1,1,4,4,3,3,6,1,2,0,0,2,9,4,5,5),(5157,'2015-03-10 21:49:30','2015-08-29 14:46:02',1,30005175,7,12,12,21,9,4,5,6,20,17,10,12,20,15,15,22,8,16,15,8,13,6,12,14),(5158,'2015-03-10 21:49:30','2015-08-29 14:46:02',1,30003326,1,1,1,2,2,1,5,3,4,3,0,0,5,2,2,3,6,2,3,2,17,14,47,27),(5159,'2015-03-10 21:49:30','2015-08-29 14:46:02',1,30004932,21,30,18,17,32,11,9,4,19,9,5,5,27,19,10,20,12,5,9,10,7,8,11,10),(5160,'2015-03-10 21:49:30','2015-08-29 14:46:02',1,30004062,2,1,2,2,0,1,0,1,4,3,4,5,5,14,11,9,15,6,8,7,9,8,4,8),(5161,'2015-03-10 21:49:30','2015-08-29 14:46:02',1,30003237,2,4,5,4,6,6,1,0,8,7,4,6,1,1,0,6,3,9,13,5,1,5,1,2),(5162,'2015-03-10 21:49:30','2015-08-29 14:46:02',1,30004396,9,16,5,9,20,5,16,12,22,11,26,26,29,14,12,14,9,1,8,3,12,5,5,6),(5163,'2015-03-10 21:49:30','2015-08-29 14:46:02',1,30004568,15,20,15,6,13,9,6,13,16,14,5,3,3,8,5,8,8,20,34,27,14,15,7,6),(5164,'2015-03-10 21:49:30','2015-08-29 14:46:02',1,30004665,4,3,2,4,4,11,6,2,82,300,246,371,392,176,410,476,66,31,300,227,6,5,10,30),(5165,'2015-03-10 21:49:30','2015-08-29 14:46:02',1,30001291,28,29,11,9,11,7,7,10,30,30,19,27,14,19,10,17,20,1,20,15,20,11,12,3),(5166,'2015-03-10 21:49:30','2015-08-29 14:46:02',1,30001932,6,14,5,16,15,8,5,8,13,9,7,11,11,9,12,15,14,3,1,9,17,27,4,12),(5167,'2015-03-10 21:49:30','2015-03-10 21:49:30',1,30001498,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(5168,'2015-03-10 21:49:30','2015-08-29 14:46:02',1,30002597,0,4,3,7,0,11,0,3,10,9,10,9,3,2,4,3,2,2,0,1,5,3,3,5),(5169,'2015-03-10 21:49:30','2015-08-29 14:46:02',1,30003207,2,0,2,1,0,4,2,1,1,2,2,1,0,0,1,2,6,1,0,1,3,7,2,2),(5170,'2015-03-10 21:49:30','2015-08-29 14:46:02',1,30001829,5,1,9,9,3,0,2,0,0,0,2,2,0,1,2,4,1,0,0,1,1,1,0,0),(5171,'2015-03-10 21:49:30','2015-08-29 14:46:02',1,30003265,4,23,24,6,12,18,22,5,2,4,23,24,3,2,4,9,7,7,10,4,4,4,4,1),(5172,'2015-03-10 21:49:30','2015-08-29 14:46:02',1,30002044,8,18,9,16,18,9,6,19,31,33,42,17,33,20,5,11,8,5,5,18,3,7,9,9),(5173,'2015-03-10 21:49:30','2015-08-29 14:46:02',1,30002169,38,107,50,76,65,37,55,17,67,66,78,56,60,116,86,76,52,75,157,160,90,84,44,50),(5174,'2015-03-10 21:49:30','2015-08-29 14:46:02',1,30004941,56,32,39,40,37,58,19,35,17,8,4,7,8,6,9,9,11,6,3,9,7,11,15,14),(5175,'2015-03-10 21:49:30','2015-08-29 14:46:02',1,30000958,11,5,7,19,16,5,5,6,11,7,5,10,4,5,3,2,7,3,0,0,7,6,5,10),(5176,'2015-03-10 21:49:30','2015-08-29 14:46:02',1,30001031,47,43,40,48,49,29,34,25,31,28,25,35,32,65,57,37,48,21,28,33,64,68,36,49),(5177,'2015-03-10 21:49:30','2015-08-29 14:46:02',1,30004859,4,1,0,2,6,3,2,24,4,3,4,3,16,4,7,7,6,3,2,3,4,7,8,12),(5178,'2015-03-10 21:49:30','2015-08-29 14:46:02',1,30002162,75,30,101,40,43,50,20,20,7,46,12,15,5,33,34,12,18,2,27,30,7,11,11,13),(5179,'2015-03-10 21:49:30','2015-08-29 14:46:02',1,30002586,8,10,21,8,8,20,11,31,10,13,3,8,41,17,43,21,14,13,22,142,10,14,17,23),(5180,'2015-03-10 21:49:30','2015-08-29 14:46:02',1,30001039,14,7,10,30,21,4,11,7,33,36,28,11,22,63,65,42,36,3,5,74,20,15,14,22),(5181,'2015-03-10 21:49:30','2015-08-29 14:46:02',1,30003726,31,129,70,61,70,51,20,46,100,88,77,64,178,70,58,74,50,67,149,242,124,92,84,59),(5182,'2015-03-10 21:49:30','2015-08-29 14:46:02',1,30004898,2,0,0,6,5,10,1,4,20,14,3,3,2,7,6,1,2,0,5,12,1,4,20,12),(5183,'2015-03-10 21:49:30','2015-08-29 14:46:02',1,30002176,15,22,32,18,19,28,21,16,2,6,4,5,5,11,15,4,7,0,2,14,11,14,5,6),(5184,'2015-03-10 21:49:30','2015-08-29 14:46:02',1,30004763,1,44,2,2,1,1,1,3,3,4,4,2,3,6,4,12,5,9,4,4,12,7,10,7),(5185,'2015-03-10 21:49:30','2015-08-29 14:46:02',1,30004809,17,12,19,15,12,5,24,53,4,3,5,5,12,5,12,8,2,3,19,7,5,4,3,4),(5186,'2015-03-10 21:49:30','2015-08-29 14:46:02',1,30001255,4,11,9,4,4,8,10,3,32,22,29,41,14,19,18,12,13,22,10,25,30,11,3,21),(5187,'2015-03-10 21:49:30','2015-08-29 14:46:02',1,30000884,3,3,0,0,0,4,4,1,2,2,0,1,1,0,0,2,2,1,2,2,1,0,2,0),(5188,'2015-03-10 21:49:30','2015-08-29 14:46:02',1,30004171,12,6,35,25,17,21,7,16,41,59,38,38,36,16,27,24,22,7,6,7,27,22,30,38),(5189,'2015-03-10 21:49:30','2015-03-10 21:49:30',1,30000331,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(5190,'2015-03-10 21:49:30','2015-08-29 14:46:02',1,30001791,3,0,0,1,2,0,0,1,0,0,0,1,2,1,1,2,2,2,0,1,1,0,1,0),(5191,'2015-03-10 21:49:30','2015-08-29 14:46:02',1,30001261,7,30,8,6,8,18,10,15,42,33,110,24,122,39,71,31,17,13,21,31,21,31,26,29),(5192,'2015-03-10 21:49:30','2015-08-29 14:46:02',1,30003342,15,5,18,17,16,35,6,18,9,10,11,6,19,17,11,17,26,59,33,24,15,17,86,87),(5193,'2015-03-10 21:49:30','2015-08-29 14:46:02',1,30001108,8,24,17,5,8,32,3,10,32,30,22,24,28,27,18,13,7,2,14,23,49,46,25,21),(5194,'2015-03-10 21:49:30','2015-08-29 14:46:02',1,30004428,10,2,20,27,20,21,4,29,2,2,12,7,9,14,19,25,17,8,29,18,23,11,14,12),(5195,'2015-03-10 21:49:30','2015-08-29 14:46:02',1,30003651,5,10,4,7,5,5,16,5,0,0,2,3,6,10,7,2,6,1,10,7,4,5,3,8),(5196,'2015-03-10 21:49:30','2015-08-29 14:46:02',1,30000306,7,13,27,10,13,12,6,5,5,8,6,9,17,18,16,10,12,3,7,13,6,7,12,10),(5197,'2015-03-10 21:49:30','2015-08-29 14:46:02',1,30000220,9,21,20,22,9,14,6,5,12,6,11,8,8,14,14,14,6,11,10,5,18,20,14,13),(5198,'2015-03-10 21:49:30','2015-08-29 14:46:02',1,30001846,13,14,20,7,9,9,19,6,48,54,48,45,48,53,61,79,62,28,49,30,42,44,29,28),(5199,'2015-03-10 21:49:30','2015-08-29 14:46:02',1,30002109,2,23,10,4,7,6,15,3,1,1,20,11,3,12,18,13,8,4,32,29,42,15,20,16),(5200,'2015-03-10 21:49:30','2015-08-29 14:46:02',1,30002037,4,20,62,36,37,63,5,0,0,6,0,2,4,0,4,5,4,1,2,2,2,2,2,2),(5201,'2015-03-10 21:49:30','2015-08-29 14:46:02',1,30004456,0,2,0,4,6,0,3,3,0,0,5,9,0,2,7,6,8,2,2,3,0,0,0,2),(5202,'2015-03-10 21:49:30','2015-08-29 14:46:02',1,30002115,4,7,4,3,0,0,3,2,1,1,7,9,0,0,0,6,4,0,0,0,4,0,2,1),(5203,'2015-03-10 21:49:30','2015-08-29 14:46:02',1,30000918,4,4,4,8,9,5,1,9,6,3,4,9,5,5,4,1,2,3,6,8,4,7,0,2),(5204,'2015-03-10 21:49:30','2015-08-29 14:46:02',1,30001570,9,2,2,12,14,10,1,11,66,69,11,14,15,9,19,25,28,9,11,32,17,16,9,7),(5205,'2015-03-10 21:49:30','2015-08-29 14:46:02',1,30001546,1,0,0,0,0,0,3,0,33,25,14,3,3,0,0,4,3,2,12,7,2,5,7,6),(5206,'2015-03-10 21:49:30','2015-08-29 14:46:02',1,30000729,4,46,3,3,4,39,1,0,3,3,5,5,15,7,7,2,3,0,0,3,4,3,5,4),(5207,'2015-03-10 21:49:30','2015-08-29 14:46:02',1,30004785,5,0,6,8,8,3,9,5,13,13,10,10,28,25,30,27,31,20,2,11,13,25,15,8),(5208,'2015-03-10 21:49:30','2015-08-29 14:46:02',1,30000308,30,56,34,33,36,37,8,15,30,24,17,16,19,27,37,47,41,11,15,27,48,49,19,23),(5209,'2015-03-10 21:49:30','2015-08-29 14:46:02',1,30001058,9,2,0,1,3,9,2,1,1,1,4,5,0,3,2,5,2,0,0,0,4,2,1,2),(5210,'2015-03-10 21:49:30','2015-08-29 14:46:02',1,30001262,8,31,8,6,10,16,10,15,40,37,106,24,119,32,55,33,15,12,37,24,28,34,29,33),(5211,'2015-03-10 21:49:30','2015-08-29 14:46:02',1,30000947,0,8,4,2,9,4,8,7,5,3,6,6,10,25,32,20,8,7,2,7,4,50,23,25),(5212,'2015-03-10 21:49:30','2015-08-29 14:46:02',1,30001559,9,0,1,2,2,2,0,0,14,11,8,6,15,1,3,5,15,3,3,11,18,2,11,5),(5213,'2015-03-10 21:49:30','2015-08-29 14:46:02',1,30002466,13,1,11,6,8,6,12,14,19,22,12,20,8,6,3,16,11,3,10,19,20,21,13,19),(5214,'2015-03-10 21:49:30','2015-08-29 14:46:02',1,30003734,9,4,13,7,10,14,12,8,12,21,22,14,20,75,63,28,17,13,20,8,11,18,18,17),(5215,'2015-03-10 21:49:30','2015-08-29 14:46:02',1,30003307,26,98,25,43,52,16,22,17,51,29,39,34,27,37,37,35,24,20,20,25,31,30,26,24),(5216,'2015-03-10 21:49:30','2015-08-29 14:46:02',1,30002902,88,216,170,85,88,138,99,83,575,584,763,449,1011,689,535,358,320,589,340,404,879,322,245,198),(5217,'2015-03-10 21:49:30','2015-08-29 14:46:02',1,30000080,14,12,14,24,31,13,4,12,14,12,16,16,28,53,28,22,34,9,15,20,37,38,16,14),(5218,'2015-03-10 21:49:30','2015-08-29 14:46:02',1,30004286,21,17,20,24,19,26,12,21,64,252,139,55,82,247,182,103,73,82,206,137,54,43,61,53),(5219,'2015-03-10 21:49:30','2015-08-29 14:46:02',1,30002592,8,11,21,8,8,15,12,49,14,9,11,9,47,36,40,26,32,11,27,115,18,21,21,24),(5220,'2015-03-10 21:49:30','2015-08-29 14:46:02',1,30001701,65,80,56,73,63,59,49,75,87,95,100,91,100,85,85,91,75,79,87,97,80,77,85,80),(5221,'2015-03-10 21:49:30','2015-08-29 14:46:02',1,30003158,14,27,17,16,15,14,25,17,0,4,12,13,6,9,3,5,1,2,2,2,12,13,17,6),(5222,'2015-03-10 21:49:30','2015-08-29 14:46:02',1,30004111,24,24,26,23,17,44,24,37,23,32,28,24,57,45,59,45,31,37,37,60,37,39,53,35),(5223,'2015-03-10 21:49:30','2015-08-29 14:46:02',1,30002762,110,151,145,134,147,126,135,109,144,164,217,175,214,257,223,217,216,136,166,199,264,233,197,167),(5224,'2015-03-10 21:49:30','2015-08-29 14:46:02',1,30001713,27,16,17,26,24,11,11,12,18,25,26,26,19,32,33,29,9,4,4,28,40,46,28,21),(5225,'2015-03-10 21:49:30','2015-08-29 14:46:02',1,30004797,12,6,4,4,0,2,0,11,17,15,6,11,12,8,7,7,14,21,10,3,9,8,8,7),(5226,'2015-03-10 21:49:30','2015-03-10 21:49:30',1,30001525,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(5227,'2015-03-10 21:49:30','2015-08-29 14:46:02',1,30001803,0,4,2,0,0,5,1,4,0,1,1,1,3,2,0,4,1,0,5,4,4,8,10,2),(5228,'2015-03-10 21:49:30','2015-08-29 14:46:02',1,30000621,0,0,3,1,0,4,0,2,1,2,0,2,0,0,0,3,0,1,1,3,7,6,4,3),(5229,'2015-03-10 21:49:30','2015-08-29 14:46:02',1,30001915,1,2,7,0,0,3,1,1,2,1,2,3,12,7,5,5,7,5,3,3,0,0,1,1),(5230,'2015-03-10 21:49:30','2015-08-29 14:46:02',1,30004144,4,17,28,32,15,11,7,5,24,31,29,30,25,40,41,44,30,10,17,15,27,30,18,24),(5231,'2015-03-10 21:49:30','2015-08-29 14:46:02',1,30001710,17,23,15,15,21,17,12,31,9,16,19,20,28,39,42,30,23,13,16,35,33,30,25,23),(5232,'2015-03-10 21:49:30','2015-08-29 14:46:02',1,30003514,97,145,129,80,75,100,100,76,129,152,110,103,114,145,142,156,117,71,80,125,119,119,120,81),(5233,'2015-03-10 21:49:30','2015-08-29 14:46:02',1,30004236,24,57,18,69,60,84,16,111,28,32,39,21,28,67,151,59,18,20,34,20,25,31,21,16),(5234,'2015-03-10 21:49:30','2015-08-29 14:46:02',1,30004154,13,11,35,48,27,16,7,6,6,10,4,5,15,6,5,7,22,4,18,14,31,27,19,16),(5235,'2015-03-10 21:49:30','2015-08-29 14:46:02',1,30004265,2,1,8,3,0,3,4,4,2,3,7,4,9,4,4,11,12,3,45,21,2,4,6,6),(5236,'2015-03-10 21:49:30','2015-08-29 14:46:02',1,30003872,66,74,85,77,70,82,39,81,107,118,97,88,136,113,102,110,83,84,84,92,112,117,106,107),(5237,'2015-03-10 21:49:30','2015-08-29 14:46:02',1,30003997,15,9,12,7,4,10,9,5,5,14,21,17,19,8,5,4,1,6,9,7,0,0,8,14),(5238,'2015-03-10 21:49:30','2015-08-29 14:46:02',1,30004838,13,2,3,2,2,2,37,26,5,4,10,4,11,5,11,14,1,5,10,16,12,7,4,2),(5239,'2015-03-10 21:49:30','2015-08-29 14:46:02',1,30004350,1,5,2,4,3,5,4,4,2,2,1,1,3,1,1,3,5,2,4,4,0,1,0,0),(5240,'2015-03-10 21:49:30','2015-08-29 14:46:02',1,30000530,4,3,2,0,1,0,5,3,2,16,1,0,4,8,10,0,0,2,1,7,3,12,3,1),(5241,'2015-03-10 21:49:30','2015-08-29 14:46:02',1,30001204,21,29,15,17,16,21,18,23,207,209,89,101,284,250,233,63,85,80,167,111,213,170,326,109),(5242,'2015-03-10 21:49:30','2015-08-29 14:46:02',1,30004459,2,4,10,2,4,4,3,19,4,1,6,8,7,20,10,22,14,19,8,4,16,6,10,8),(5243,'2015-03-10 21:49:30','2015-08-29 14:46:02',1,30004051,22,118,51,59,37,29,8,20,43,25,11,10,14,15,17,12,27,8,26,10,14,17,21,15),(5244,'2015-03-10 21:49:30','2015-08-29 14:46:02',1,30000583,18,30,27,54,17,31,16,18,18,13,5,7,20,12,11,43,11,22,18,18,52,35,1,0),(5245,'2015-03-10 21:49:30','2015-08-29 14:46:02',1,30004260,13,9,11,16,16,8,9,14,17,14,15,11,14,26,26,29,16,13,10,20,9,13,23,21),(5246,'2015-03-10 21:49:30','2015-08-29 14:46:02',1,30000036,26,45,23,24,22,30,16,14,28,34,28,25,22,30,30,26,28,17,31,22,24,22,17,31),(5247,'2015-03-10 21:49:30','2015-08-29 14:46:02',1,30001353,22,5,4,3,5,12,2,4,12,7,11,15,25,27,20,1,9,13,12,9,13,10,5,5),(5248,'2015-03-10 21:49:30','2015-08-29 14:46:02',1,30001024,1,4,2,2,1,0,0,0,6,3,4,5,3,0,1,16,9,5,13,4,10,11,6,7),(5249,'2015-03-10 21:49:30','2015-08-29 14:46:02',1,30003690,86,255,94,73,79,60,51,58,36,44,38,45,44,47,39,51,32,27,59,50,37,31,57,52),(5250,'2015-03-10 21:49:30','2015-08-29 14:46:02',1,30001395,108,129,163,121,101,106,98,104,130,145,155,160,128,153,145,152,182,85,118,171,197,193,173,176),(5251,'2015-03-10 21:49:30','2015-08-29 14:46:02',1,30000880,9,10,28,10,5,14,3,2,3,4,3,8,3,5,4,6,2,5,3,4,6,5,6,8),(5252,'2015-03-10 21:49:30','2015-08-29 14:46:02',1,30001118,5,43,13,7,9,12,9,18,7,5,20,2,36,4,10,19,7,7,8,8,4,4,8,8),(5253,'2015-03-10 21:49:30','2015-08-29 14:46:02',1,30000241,16,21,35,27,19,45,22,57,13,36,17,20,49,37,34,37,24,29,52,17,70,38,18,17),(5254,'2015-03-10 21:49:30','2015-08-29 14:46:02',1,30002432,25,39,48,18,21,34,55,28,20,26,22,20,10,17,15,27,28,4,10,20,13,21,22,33),(5255,'2015-03-10 21:49:30','2015-08-29 14:46:02',1,30001427,104,122,154,152,122,119,88,113,130,114,108,120,160,181,180,142,116,103,158,145,175,171,115,113),(5256,'2015-03-10 21:49:30','2015-08-29 14:46:02',1,30005017,74,74,86,89,82,88,52,70,95,102,99,76,81,123,92,84,93,49,73,90,109,108,108,107),(5257,'2015-03-10 21:49:30','2015-08-29 14:46:02',1,30001668,42,29,57,34,25,36,18,30,28,30,30,52,34,57,49,41,47,88,32,50,25,32,60,52),(5258,'2015-03-10 21:49:30','2015-08-29 14:46:02',1,30004131,65,111,88,72,61,68,56,58,112,127,130,138,113,164,188,129,126,86,101,123,130,142,133,123),(5259,'2015-03-10 21:49:30','2015-08-29 14:46:02',1,30003960,2,7,5,2,6,0,10,1,13,12,3,6,4,7,6,8,1,10,2,6,1,2,2,1),(5260,'2015-03-10 21:49:30','2015-08-29 14:46:02',1,30003493,553,212,225,221,208,181,157,152,353,339,322,313,347,367,388,359,362,204,243,273,331,358,324,315),(5261,'2015-03-10 21:49:30','2015-08-29 14:46:02',1,30001271,12,20,15,13,21,18,6,8,35,73,43,21,22,48,36,24,12,9,24,11,17,25,9,11),(5262,'2015-03-10 21:49:30','2015-08-29 14:46:02',1,30000784,56,108,61,66,78,94,37,79,42,59,34,32,49,50,56,42,70,14,10,32,24,19,24,23),(5263,'2015-03-10 21:49:30','2015-08-29 14:46:02',1,30003753,6,8,5,12,11,11,14,6,12,11,14,13,10,10,4,8,12,5,4,12,10,13,11,15),(5264,'2015-03-10 21:49:30','2015-08-29 14:46:02',1,30001758,24,15,39,27,18,3,3,5,1,3,1,1,22,11,12,6,5,0,0,3,10,5,10,4),(5265,'2015-03-10 21:49:30','2015-08-29 14:46:02',1,30003212,13,9,28,14,23,10,18,14,12,7,13,11,7,9,17,12,11,4,4,16,22,23,21,10),(5266,'2015-03-10 21:49:30','2015-08-29 14:46:02',1,30004026,28,8,18,22,19,5,5,11,29,22,16,42,60,138,31,17,58,8,17,54,27,40,18,36),(5267,'2015-03-10 21:49:30','2015-08-29 14:46:02',1,30002794,117,150,177,136,143,127,76,99,128,160,170,153,193,198,178,161,164,83,119,134,168,148,153,158),(5268,'2015-03-10 21:49:30','2015-08-29 14:46:02',1,30003414,73,152,114,109,106,97,88,67,137,125,107,125,147,166,165,171,130,72,115,143,127,127,131,116),(5269,'2015-03-10 21:49:30','2015-08-29 14:46:02',1,30004627,0,0,6,1,2,1,5,3,1,2,2,2,0,2,1,2,20,6,1,2,23,27,5,2),(5270,'2015-03-10 21:49:30','2015-08-29 14:46:02',1,30003178,0,5,2,0,0,2,6,2,4,4,8,4,2,2,2,1,1,2,2,1,2,1,6,5),(5271,'2015-03-10 21:49:30','2015-03-10 21:49:30',1,30000408,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(5272,'2015-03-10 21:49:30','2015-08-29 14:46:02',1,30003545,401,452,428,376,374,291,197,234,398,429,368,378,413,483,470,497,352,309,394,416,510,452,421,395),(5273,'2015-03-10 21:49:30','2015-08-29 14:46:02',1,30005204,111,170,163,157,148,133,106,87,172,159,175,137,206,228,255,214,206,155,196,233,240,204,181,143),(5274,'2015-03-10 21:49:30','2015-08-29 14:46:02',1,30000916,1,1,0,1,0,0,5,3,0,0,1,1,1,11,1,1,2,1,1,1,0,4,2,0),(5275,'2015-03-10 21:49:30','2015-08-29 14:46:02',1,30000007,99,147,105,125,122,98,73,58,194,172,161,148,221,224,236,205,167,140,167,172,175,158,181,174),(5276,'2015-03-10 21:49:30','2015-08-29 14:46:02',1,30004679,11,7,14,17,8,16,14,16,14,28,29,3,18,19,21,9,14,5,5,7,19,12,18,15),(5277,'2015-03-10 21:49:30','2015-08-29 14:46:02',1,30004548,17,6,13,13,2,14,13,2,5,2,6,5,8,9,9,7,5,3,3,5,5,5,10,2),(5278,'2015-03-10 21:49:30','2015-08-29 14:46:02',1,30003588,24,41,77,134,120,34,25,38,41,51,49,38,42,70,59,61,43,32,21,55,68,70,53,53),(5279,'2015-03-10 21:49:30','2015-08-29 14:46:02',1,30004977,40,32,38,37,52,16,29,26,41,37,30,32,65,33,35,36,34,44,39,40,75,56,56,49),(5280,'2015-03-10 21:49:30','2015-08-29 14:46:02',1,30004561,2,3,12,5,4,1,6,6,327,219,323,310,714,17,18,24,32,172,57,392,9,10,11,7),(5281,'2015-03-10 21:49:30','2015-08-29 14:46:02',1,30003591,16,38,19,32,30,18,13,13,33,35,34,30,20,33,32,27,19,19,19,32,36,26,18,17),(5282,'2015-03-10 21:49:30','2015-08-29 14:46:02',1,30003567,19,78,35,53,53,21,19,32,54,43,35,32,29,39,34,35,25,28,42,46,53,42,24,22),(5283,'2015-03-10 21:49:30','2015-08-29 14:46:02',1,30004174,2,0,2,0,0,1,6,1,2,2,0,0,1,3,3,0,0,0,0,0,1,3,1,0),(5284,'2015-03-10 21:49:30','2015-08-29 14:46:02',1,30003990,45,14,12,32,28,25,9,17,8,10,10,9,7,2,5,12,7,37,3,5,8,7,8,6),(5285,'2015-03-10 21:49:30','2015-08-29 14:46:02',1,30003705,85,90,87,104,122,74,55,157,339,336,82,65,257,195,177,91,77,247,243,379,84,67,84,84),(5286,'2015-03-10 21:49:30','2015-08-29 14:46:02',1,30002310,0,2,0,1,2,0,0,1,1,1,0,0,0,0,0,0,0,0,0,1,1,1,0,0),(5287,'2015-03-10 21:49:30','2015-08-29 14:46:02',1,30000231,14,9,16,11,6,14,11,7,3,3,1,0,3,1,5,6,7,5,0,5,3,6,5,6),(5288,'2015-03-10 21:49:30','2015-08-29 14:46:02',1,30004617,53,182,160,103,103,140,40,58,46,49,71,62,124,71,66,73,61,72,91,116,140,68,91,99),(5289,'2015-03-10 21:49:30','2015-08-29 14:46:02',1,30002925,21,24,19,10,10,13,5,31,14,24,12,7,8,39,27,13,14,176,104,4,10,6,21,21),(5290,'2015-03-10 21:49:30','2015-08-29 14:46:02',1,30004719,53,34,39,26,28,79,20,25,54,30,51,29,58,60,163,47,54,26,46,52,90,87,17,42),(5291,'2015-03-10 21:49:30','2015-08-29 14:46:02',1,30004554,22,25,16,20,24,16,7,23,56,79,27,27,52,21,12,25,15,19,7,39,21,23,11,9),(5292,'2015-03-10 21:49:30','2015-08-29 14:46:02',1,30000506,0,0,1,0,0,0,2,0,1,1,1,1,0,2,1,0,1,1,0,0,1,3,4,3),(5293,'2015-03-10 21:49:30','2015-08-29 14:46:02',1,30004542,8,5,7,7,5,15,7,4,6,4,8,8,4,9,4,7,9,3,1,7,2,3,12,4),(5294,'2015-03-10 21:49:30','2015-08-29 14:46:02',1,30001956,10,15,2,4,3,13,4,14,8,5,8,5,1,13,7,10,15,17,8,10,12,8,20,17),(5295,'2015-03-10 21:49:30','2015-08-29 14:46:02',1,30004921,11,20,11,22,21,27,13,24,14,18,15,20,30,35,32,11,17,12,84,8,20,19,26,24),(5296,'2015-03-10 21:49:30','2015-08-29 14:46:02',1,30000266,19,36,10,12,11,10,5,10,22,124,132,24,18,79,75,12,11,14,9,143,16,15,5,13),(5297,'2015-03-10 21:49:30','2015-08-29 14:46:02',1,30000597,1,0,3,4,2,1,0,0,5,2,1,1,1,5,1,3,1,3,4,7,2,1,1,0),(5298,'2015-03-10 21:49:30','2015-03-10 21:49:30',1,30001486,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(5299,'2015-03-10 21:49:30','2015-08-29 14:46:02',1,30001074,6,17,6,10,13,11,11,5,10,7,16,11,8,6,8,5,3,5,8,8,8,6,5,8),(5300,'2015-03-10 21:49:30','2015-08-29 14:46:02',1,30002292,5,7,2,9,4,8,3,3,18,20,14,11,2,31,20,4,5,0,0,4,46,40,9,8),(5301,'2015-03-10 21:49:30','2015-08-29 14:46:02',1,30001097,4,1,1,1,0,0,0,4,1,1,1,1,0,1,2,1,2,1,1,0,0,1,0,0),(5302,'2015-03-10 21:49:30','2015-08-29 14:46:02',1,30005132,4,9,4,14,8,8,1,2,19,13,6,8,10,15,17,5,14,4,9,24,19,28,17,12),(5303,'2015-03-10 21:49:30','2015-08-29 14:46:02',1,30002368,1,1,0,2,2,3,4,5,0,0,1,1,1,25,19,6,0,2,14,1,20,17,17,5),(5304,'2015-03-10 21:49:30','2015-03-10 21:49:30',1,30001454,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(5305,'2015-03-10 21:49:30','2015-08-29 14:46:02',1,30001263,5,23,7,9,7,5,4,4,129,37,103,27,133,36,233,45,13,13,18,81,29,128,32,40),(5306,'2015-03-10 21:49:30','2015-08-29 14:46:02',1,30002141,19,44,26,15,24,43,14,5,21,43,19,10,8,37,32,8,26,7,17,22,10,9,14,10),(5307,'2015-03-10 21:49:30','2015-03-10 21:49:30',1,30000387,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(5308,'2015-03-10 21:49:30','2015-08-29 14:46:02',1,30004341,68,106,77,121,105,51,75,98,24,46,43,39,24,37,34,35,20,13,33,31,24,27,40,32),(5309,'2015-03-10 21:49:30','2015-03-10 21:49:30',1,30001613,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(5310,'2015-03-10 21:49:30','2015-08-29 14:46:02',1,30003646,2,8,15,6,11,2,8,10,4,4,6,9,9,6,4,5,9,4,2,0,4,4,2,0),(5311,'2015-03-10 21:49:30','2015-08-29 14:46:02',1,30004965,38,28,28,22,18,40,42,31,40,41,32,34,27,17,54,23,17,11,11,26,19,20,29,38),(5312,'2015-03-10 21:49:30','2015-08-29 14:46:02',1,30003154,10,15,19,14,9,19,20,21,9,14,11,10,23,13,11,15,7,5,4,5,5,6,9,8),(5313,'2015-03-10 21:49:30','2015-08-29 14:46:02',1,30002617,0,1,3,1,0,0,0,1,0,1,3,1,0,0,0,2,0,0,1,0,1,1,4,4),(5314,'2015-03-10 21:49:30','2015-08-29 14:46:02',1,30004425,11,5,19,23,20,8,8,12,1,2,7,3,23,16,19,15,21,22,30,14,19,7,11,13),(5315,'2015-03-10 21:49:30','2015-08-29 14:46:02',1,30003357,1,2,1,3,2,1,0,2,2,1,1,0,3,2,2,3,0,2,2,2,1,1,0,1),(5316,'2015-03-10 21:49:30','2015-08-29 14:46:02',1,30001919,2,18,5,7,8,5,2,3,5,4,11,8,21,13,7,11,22,16,16,30,17,4,12,10),(5317,'2015-03-10 21:49:30','2015-08-29 14:46:02',1,30003783,34,28,23,26,27,26,32,13,68,56,50,24,42,90,75,39,31,16,24,21,43,70,48,47),(5318,'2015-03-10 21:49:30','2015-08-29 14:46:02',1,30003652,8,4,4,7,8,2,4,1,0,0,0,3,1,1,0,2,3,0,2,2,1,2,0,2),(5319,'2015-03-10 21:49:30','2015-08-29 14:46:02',1,30003991,55,21,16,28,32,41,11,23,10,14,8,9,12,8,12,13,11,27,3,13,17,13,9,8),(5320,'2015-03-10 21:49:30','2015-08-29 14:46:02',1,30001929,0,4,3,12,4,3,2,2,8,8,2,2,5,4,1,0,6,0,4,1,2,1,3,2),(5321,'2015-03-10 21:49:30','2015-08-29 14:46:02',1,30003989,8,43,51,15,10,16,20,12,7,27,14,12,1,5,2,8,5,7,5,3,0,0,4,3),(5322,'2015-03-10 21:49:30','2015-08-29 14:46:02',1,30004063,9,16,3,14,14,7,5,12,26,32,41,18,32,22,9,7,6,4,7,18,8,11,6,5),(5323,'2015-03-10 21:49:30','2015-08-29 14:46:02',1,30003124,4,2,5,1,3,5,1,3,12,9,13,12,6,11,9,2,14,31,3,8,1,2,1,6),(5324,'2015-03-10 21:49:30','2015-08-29 14:46:02',1,30004666,4,1,0,3,2,0,0,0,5,5,2,2,7,0,0,0,0,4,1,3,0,2,3,2),(5325,'2015-03-10 21:49:30','2015-03-10 21:49:30',1,30000414,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(5326,'2015-03-10 21:49:30','2015-08-29 14:46:02',1,30001304,16,25,13,15,18,10,8,9,28,32,13,10,16,58,39,5,6,13,25,24,26,24,16,16),(5327,'2015-03-10 21:49:30','2015-08-29 14:46:02',1,30002337,1,3,2,4,3,2,1,1,0,0,3,3,0,29,14,1,0,0,0,0,21,19,0,0),(5328,'2015-03-10 21:49:30','2015-08-29 14:46:02',1,30001091,8,2,2,3,7,7,5,0,8,2,3,2,7,5,11,10,3,1,21,2,7,5,1,3),(5329,'2015-03-10 21:49:30','2015-08-29 14:46:02',1,30000739,3,11,5,8,9,5,10,14,2,3,6,3,4,3,1,7,4,1,0,4,2,0,2,7),(5330,'2015-03-10 21:49:30','2015-08-29 14:46:02',1,30001582,2,2,0,1,1,0,0,0,4,6,5,4,7,5,10,11,2,5,1,16,4,5,5,3),(5331,'2015-03-10 21:49:30','2015-08-29 14:46:02',1,30001861,17,23,10,6,9,19,20,12,148,150,53,46,69,79,68,62,27,16,19,54,218,25,40,31),(5332,'2015-03-10 21:49:30','2015-08-29 14:46:02',1,30004607,22,30,29,41,51,33,5,15,16,13,9,6,10,14,15,23,7,24,50,42,36,31,12,13),(5333,'2015-03-10 21:49:30','2015-08-29 14:46:02',1,30001345,5,25,8,7,6,7,3,4,5,7,3,0,3,7,2,2,4,7,9,23,4,4,5,4),(5334,'2015-03-10 21:49:30','2015-08-29 14:46:02',1,30004707,23,11,13,21,20,23,27,72,45,53,26,19,49,41,29,37,29,26,27,29,18,22,31,30),(5335,'2015-03-10 21:49:30','2015-08-29 14:46:02',1,30002137,0,2,1,0,2,2,3,0,2,3,1,0,0,1,1,3,0,0,1,0,0,0,1,1),(5336,'2015-03-10 21:49:30','2015-08-29 14:46:02',1,30002117,14,31,17,12,9,10,5,6,43,61,16,14,17,22,19,21,14,11,39,26,35,35,12,13),(5337,'2015-03-10 21:49:30','2015-08-29 14:46:02',1,30004584,23,24,17,23,31,18,8,28,56,75,28,29,54,21,12,29,15,18,7,34,23,27,11,10),(5338,'2015-03-10 21:49:30','2015-08-29 14:46:02',1,30000304,11,17,40,14,16,30,15,4,11,12,18,18,34,53,36,57,41,14,15,36,15,19,45,59),(5339,'2015-03-10 21:49:30','2015-03-10 21:49:30',1,30001455,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(5340,'2015-03-10 21:49:30','2015-08-29 14:46:02',1,30004741,5,12,0,6,3,5,2,4,0,0,2,1,1,6,10,5,8,1,7,11,9,8,7,6),(5341,'2015-03-10 21:49:30','2015-08-29 14:46:02',1,30003927,16,20,11,3,14,23,30,28,15,28,15,16,30,27,18,21,12,13,19,38,26,30,17,11),(5342,'2015-03-10 21:49:30','2015-08-29 14:46:02',1,30000006,37,69,46,45,51,22,24,22,64,63,36,57,105,88,108,87,72,44,73,56,66,64,75,61),(5343,'2015-03-10 21:49:30','2015-08-29 14:46:02',1,30003497,25,28,35,26,29,10,29,24,26,29,32,37,33,49,43,33,32,57,47,46,40,48,36,36),(5344,'2015-03-10 21:49:30','2015-08-29 14:46:02',1,30003543,10,2,5,4,3,3,3,2,4,3,4,2,2,4,4,1,6,1,3,1,6,1,0,2),(5345,'2015-03-10 21:49:30','2015-08-29 14:46:02',1,30005211,6,7,9,8,11,9,14,4,7,10,7,9,20,7,12,13,18,10,16,8,20,16,22,13),(5346,'2015-03-10 21:49:30','2015-08-29 14:46:02',1,30005079,9,13,5,6,9,24,5,9,4,5,4,7,11,29,53,28,21,11,18,13,18,19,20,15),(5347,'2015-03-10 21:49:30','2015-08-29 14:46:02',1,30002280,30,64,44,55,66,34,28,38,33,39,51,31,43,63,50,62,41,21,42,44,51,60,68,52),(5348,'2015-03-10 21:49:30','2015-08-29 14:46:02',1,30003996,16,10,19,11,13,12,7,7,13,20,28,24,24,18,14,6,4,4,14,7,2,3,22,30),(5349,'2015-03-10 21:49:30','2015-08-29 14:46:02',1,30004290,9,7,10,11,5,18,0,5,17,17,10,11,24,22,17,10,16,13,12,13,10,7,7,11),(5350,'2015-03-10 21:49:30','2015-08-29 14:46:02',1,30004232,33,48,25,49,49,41,11,30,35,30,40,37,54,60,72,56,35,44,50,44,40,49,46,39),(5351,'2015-03-10 21:49:30','2015-08-29 14:46:02',1,30004285,25,17,23,22,22,37,14,19,67,259,106,77,80,247,191,119,100,81,209,130,70,52,67,61),(5352,'2015-03-10 21:49:30','2015-08-29 14:46:02',1,30002121,0,0,1,1,1,7,0,3,1,0,7,5,1,3,1,8,2,0,0,0,0,1,0,1),(5353,'2015-03-10 21:49:30','2015-08-29 14:46:02',1,30004701,17,13,12,17,15,7,16,13,15,27,10,12,19,7,6,12,7,2,2,0,3,8,6,9),(5354,'2015-03-10 21:49:30','2015-08-29 14:46:02',1,30004817,30,9,12,12,7,4,41,43,4,3,5,4,11,6,15,9,2,5,17,7,5,4,2,4),(5355,'2015-03-10 21:49:30','2015-08-29 14:46:02',1,30001354,9,2,3,1,2,4,1,1,4,2,2,3,16,8,8,0,2,7,3,3,10,3,2,2),(5356,'2015-03-10 21:49:30','2015-08-29 14:46:02',1,30000719,5,8,9,13,14,13,1,4,14,17,9,13,6,8,5,18,20,7,8,34,4,3,4,3),(5357,'2015-03-10 21:49:30','2015-08-29 14:46:02',1,30004704,16,6,13,2,4,11,22,7,7,22,4,6,7,10,8,6,20,4,9,3,20,23,15,3),(5358,'2015-03-10 21:49:30','2015-08-29 14:46:02',1,30001734,102,201,169,143,131,100,92,112,173,186,208,179,292,257,272,233,205,137,178,282,191,202,221,167),(5359,'2015-03-10 21:49:30','2015-08-29 14:46:02',1,30000055,10,15,5,5,11,12,7,9,21,19,26,21,12,22,24,20,10,13,9,14,9,8,9,5),(5360,'2015-03-10 21:49:30','2015-08-29 14:46:02',1,30003928,64,23,16,8,17,22,20,20,16,36,19,31,34,18,16,23,12,13,22,38,23,25,9,9),(5361,'2015-03-10 21:49:30','2015-08-29 14:46:02',1,30000064,5,24,12,22,28,28,8,9,16,15,18,21,29,26,29,19,19,22,20,13,43,36,11,10),(5362,'2015-03-10 21:49:30','2015-08-29 14:46:02',1,30001765,17,21,34,24,26,7,11,24,7,12,22,11,19,7,7,15,9,2,2,10,1,5,12,12),(5363,'2015-03-10 21:49:30','2015-08-29 14:46:02',1,30000688,22,9,6,17,15,17,32,31,14,11,30,37,19,9,25,20,18,5,6,17,17,4,29,11),(5364,'2015-03-10 21:49:30','2015-08-29 14:46:02',1,30001866,8,5,3,3,3,4,2,4,7,6,4,5,2,1,2,8,3,1,2,5,3,6,3,4),(5365,'2015-03-10 21:49:30','2015-08-29 14:46:02',1,30000551,2,1,0,0,0,7,0,2,2,1,2,8,0,1,0,0,3,0,0,2,0,4,8,7),(5366,'2015-03-10 21:49:30','2015-08-29 14:46:02',1,30001922,7,2,13,12,10,8,1,5,6,10,6,7,15,8,7,7,8,7,8,4,2,2,3,6),(5367,'2015-03-10 21:49:30','2015-08-29 14:46:02',1,30003618,22,13,12,17,17,29,11,13,5,9,5,6,12,4,5,17,10,3,14,5,10,4,9,8),(5368,'2015-03-10 21:49:30','2015-08-29 14:46:02',1,30003550,1,1,3,3,2,5,9,2,0,0,3,3,4,1,2,4,1,0,1,3,1,3,5,3),(5369,'2015-03-10 21:49:30','2015-08-29 14:46:02',1,30005208,18,22,10,10,15,15,17,16,19,23,32,32,20,21,23,25,22,39,16,26,26,26,20,21),(5370,'2015-03-10 21:49:30','2015-08-29 14:46:02',1,30004489,22,34,4,7,7,43,25,30,10,7,11,19,9,22,24,30,25,37,10,26,30,33,40,65),(5371,'2015-03-10 21:49:30','2015-08-29 14:46:02',1,30004107,6,26,9,15,11,14,5,8,25,23,22,21,7,20,14,10,13,40,31,25,21,27,8,9),(5372,'2015-03-10 21:49:30','2015-08-29 14:46:02',1,30004127,59,69,69,69,65,37,52,69,43,63,75,59,70,76,64,40,54,37,49,67,61,65,68,65),(5373,'2015-03-10 21:49:30','2015-08-29 14:46:02',1,30005055,36,81,70,65,59,42,55,87,104,114,65,73,92,81,79,68,88,73,79,99,77,64,54,71),(5374,'2015-03-10 21:49:30','2015-08-29 14:46:02',1,30004140,9,64,7,31,33,16,5,10,28,26,34,26,35,19,27,20,17,7,6,24,27,17,31,28),(5375,'2015-03-10 21:49:30','2015-08-29 14:46:02',1,30002203,35,24,26,16,17,57,24,45,39,39,33,31,59,51,66,45,43,15,26,34,60,55,45,37),(5376,'2015-03-10 21:49:30','2015-08-29 14:46:02',1,30003562,11,3,22,16,12,10,8,8,2,5,6,11,17,7,12,12,23,9,13,11,13,12,11,12),(5377,'2015-03-10 21:49:30','2015-08-29 14:46:02',1,30003939,5,2,1,4,5,4,1,4,2,5,1,1,4,6,9,5,0,4,7,5,1,1,2,3),(5378,'2015-03-10 21:49:30','2015-08-29 14:46:02',1,30001732,13,15,14,15,17,7,8,16,10,13,18,12,9,12,12,12,13,14,11,23,11,9,16,17),(5379,'2015-03-10 21:49:30','2015-08-29 14:46:02',1,30004363,3,11,25,5,10,57,13,7,8,19,3,2,7,7,9,13,7,1,3,2,3,2,7,4),(5380,'2015-03-10 21:49:30','2015-08-29 14:46:02',1,30001810,18,15,8,22,26,7,7,14,15,25,10,8,4,8,17,8,3,1,2,5,4,5,7,4),(5381,'2015-03-10 21:49:30','2015-08-29 14:46:02',1,30000937,4,8,10,4,7,4,1,2,2,6,6,11,5,8,4,7,5,2,7,5,10,9,2,1),(5382,'2015-03-10 21:49:30','2015-08-29 14:46:02',1,30003619,24,24,20,40,43,82,18,16,11,14,11,9,22,10,12,24,16,6,16,9,14,5,11,10),(5383,'2015-03-10 21:49:30','2015-08-29 14:46:02',1,30002130,11,6,5,3,11,4,6,5,28,70,20,10,21,40,11,3,8,11,6,8,27,22,13,13),(5384,'2015-03-10 21:49:30','2015-08-29 14:46:02',1,30001996,5,1,4,3,2,2,5,5,1,1,3,1,1,1,1,2,0,2,1,2,1,6,2,2),(5385,'2015-03-10 21:49:30','2015-08-29 14:46:02',1,30004888,5,0,2,9,13,7,1,3,10,9,7,3,5,13,15,1,4,66,16,15,10,7,5,4),(5386,'2015-03-10 21:49:30','2015-08-29 14:46:02',1,30004498,1,1,2,0,0,0,2,2,1,1,3,5,1,1,2,2,2,2,0,4,0,2,1,0),(5387,'2015-03-10 21:49:30','2015-08-29 14:46:02',1,30003658,20,28,16,43,38,96,19,23,9,14,11,12,18,13,12,13,12,10,14,8,19,10,5,4),(5388,'2015-03-10 21:49:30','2015-03-10 21:49:30',1,30000407,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(5389,'2015-03-10 21:49:30','2015-08-29 14:46:02',1,30002018,15,64,111,96,55,62,9,15,15,23,7,3,10,11,6,15,11,9,9,7,9,7,11,7),(5390,'2015-03-10 21:49:30','2015-08-29 14:46:02',1,30000449,0,1,9,1,1,9,2,0,26,10,8,11,5,14,4,16,12,7,9,5,15,14,21,19),(5391,'2015-03-10 21:49:30','2015-08-29 14:46:02',1,30000296,15,24,7,22,20,14,3,12,15,19,21,21,7,13,11,25,17,19,6,7,16,18,20,12),(5392,'2015-03-10 21:49:30','2015-08-29 14:46:02',1,30000935,0,7,4,1,4,4,12,2,6,9,6,7,6,3,4,3,5,2,2,5,2,8,9,20),(5393,'2015-03-10 21:49:30','2015-08-29 14:46:02',1,30004820,77,16,48,13,9,13,15,10,3,8,9,16,8,8,12,6,7,3,20,5,7,12,4,4),(5394,'2015-03-10 21:49:30','2015-08-29 14:46:02',1,30003289,28,21,10,18,19,14,9,5,12,15,15,16,19,17,16,16,29,20,10,12,18,29,19,17),(5395,'2015-03-10 21:49:30','2015-08-29 14:46:02',1,30000699,3,35,1,9,13,3,1,3,2,3,21,17,14,8,8,8,10,1,0,2,8,1,4,4),(5396,'2015-03-10 21:49:30','2015-08-29 14:46:02',1,30000802,10,19,16,7,17,12,10,14,4,3,1,1,6,3,4,7,11,2,1,2,10,12,2,2),(5397,'2015-03-10 21:49:30','2015-08-29 14:46:02',1,30004882,12,20,14,25,27,43,15,14,5,8,22,18,33,17,40,27,24,8,95,22,29,28,27,27),(5398,'2015-03-10 21:49:30','2015-08-29 14:46:02',1,30001133,0,1,0,0,0,0,2,0,0,1,1,0,0,0,0,1,0,2,2,1,0,2,1,1),(5399,'2015-03-10 21:49:30','2015-08-29 14:46:02',1,30005221,139,98,78,91,89,61,56,67,122,127,102,83,108,120,106,74,76,64,115,138,131,134,96,75),(5400,'2015-03-10 21:49:30','2015-08-29 14:46:02',1,30001131,0,1,0,2,2,0,1,1,0,0,1,1,0,0,0,0,2,1,1,0,1,0,1,2),(5401,'2015-03-10 21:49:30','2015-08-29 14:46:02',1,30005067,2,6,13,9,8,1,4,11,15,8,1,5,1,6,6,5,10,4,3,7,3,6,2,2),(5402,'2015-03-10 21:49:30','2015-08-29 14:46:02',1,30004081,157,191,161,188,187,154,107,135,203,220,184,176,223,364,254,170,133,145,181,208,253,245,159,162),(5403,'2015-03-10 21:49:30','2015-08-29 14:46:02',1,30004160,6,24,18,14,14,10,6,3,24,28,20,30,22,16,16,19,15,48,25,10,10,13,11,13),(5404,'2015-03-10 21:49:30','2015-08-29 14:46:02',1,30002923,25,90,37,14,20,11,24,39,39,46,28,41,54,51,44,32,6,15,30,25,30,30,21,16),(5405,'2015-03-10 21:49:30','2015-08-29 14:46:02',1,30001226,62,93,56,71,57,30,29,37,190,143,61,73,165,160,129,67,60,49,184,134,95,69,60,53),(5406,'2015-03-10 21:49:30','2015-08-29 14:46:02',1,30004496,12,3,3,1,3,1,6,8,9,13,12,7,23,31,52,61,13,3,17,13,35,9,69,52),(5407,'2015-03-10 21:49:30','2015-08-29 14:46:02',1,30004469,18,14,15,21,20,25,32,6,37,43,52,38,45,47,43,42,43,27,25,48,86,56,38,35),(5408,'2015-03-10 21:49:30','2015-08-29 14:46:02',1,30002352,13,11,12,12,21,18,6,9,8,9,6,6,40,15,15,19,8,8,8,31,16,15,26,36),(5409,'2015-03-10 21:49:30','2015-03-10 21:49:30',1,30000328,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(5410,'2015-03-10 21:49:30','2015-08-29 14:46:02',1,30001072,1,1,1,0,0,0,0,0,0,0,2,2,0,1,6,4,0,2,2,1,1,0,0,0),(5411,'2015-03-10 21:49:30','2015-08-29 14:46:02',1,30003747,53,51,30,28,27,11,12,16,35,48,114,77,46,104,85,58,55,37,37,85,33,42,78,30),(5412,'2015-03-10 21:49:30','2015-08-29 14:46:02',1,30004660,0,0,0,2,3,1,0,1,7,16,11,6,13,8,3,18,8,6,4,6,3,9,8,15),(5413,'2015-03-10 21:49:30','2015-08-29 14:46:02',1,30004955,15,16,17,8,4,2,6,79,23,24,12,35,33,126,7,10,8,6,9,27,30,17,17,18),(5414,'2015-03-10 21:49:30','2015-08-29 14:46:02',1,30004658,4,4,1,11,10,13,0,1,16,21,12,8,41,16,6,11,17,23,18,24,15,15,6,17),(5415,'2015-03-10 21:49:30','2015-08-29 14:46:02',1,30003369,9,32,13,4,2,7,7,9,17,12,2,6,15,15,11,4,0,10,0,4,4,4,11,13),(5416,'2015-03-10 21:49:30','2015-03-10 21:49:30',1,30001621,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(5417,'2015-03-10 21:49:30','2015-08-29 14:46:02',1,30003272,22,268,47,27,24,29,20,20,49,40,12,28,48,54,47,19,32,48,26,43,40,64,53,41),(5418,'2015-03-10 21:49:30','2015-08-29 14:46:02',1,30001590,10,7,8,14,17,10,33,6,12,78,9,4,8,9,7,4,2,2,1,6,3,5,3,2),(5419,'2015-03-10 21:49:30','2015-08-29 14:46:02',1,30004687,13,5,3,10,5,9,8,5,8,14,6,1,9,9,8,4,4,3,3,3,11,11,15,10),(5420,'2015-03-10 21:49:30','2015-08-29 14:46:02',1,30003620,7,14,12,26,27,63,12,10,8,11,8,6,10,9,12,17,10,5,5,9,9,9,8,7),(5421,'2015-03-10 21:49:30','2015-08-29 14:46:02',1,30004777,5,3,2,3,4,6,13,2,203,567,255,418,445,520,570,335,142,130,164,205,20,11,10,13),(5422,'2015-03-10 21:49:30','2015-08-29 14:46:02',1,30004540,6,6,8,6,3,14,6,7,13,6,10,9,4,8,5,4,15,2,6,4,3,2,15,7),(5423,'2015-03-10 21:49:30','2015-08-29 14:46:02',1,30004528,17,9,10,9,8,10,4,14,10,2,15,16,6,6,6,2,10,6,3,2,6,6,15,13),(5424,'2015-03-10 21:49:30','2015-08-29 14:46:02',1,30001168,64,34,57,38,37,51,23,21,120,166,83,58,107,78,46,50,42,30,100,100,43,34,47,42),(5425,'2015-03-10 21:49:30','2015-08-29 14:46:02',1,30004031,25,0,7,7,10,5,8,6,7,21,17,22,12,14,18,23,36,4,6,10,8,13,6,11),(5426,'2015-03-10 21:49:30','2015-08-29 14:46:02',1,30004437,0,3,2,1,0,1,0,22,5,7,2,2,4,5,5,4,9,2,5,7,3,3,15,18),(5427,'2015-03-10 21:49:30','2015-08-29 14:46:02',1,30001004,4,1,0,1,5,1,0,4,2,0,2,0,22,25,16,6,2,0,1,2,5,6,3,0),(5428,'2015-03-10 21:49:30','2015-08-29 14:46:02',1,30002360,22,55,58,50,31,45,34,52,20,26,17,17,79,66,62,20,29,12,17,22,38,34,15,29),(5429,'2015-03-10 21:49:30','2015-03-10 21:49:30',1,30000356,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(5430,'2015-03-10 21:49:30','2015-08-29 14:46:02',1,30001807,17,14,7,23,32,8,9,13,14,24,11,8,4,8,16,5,7,1,2,6,3,5,7,3),(5431,'2015-03-10 21:49:30','2015-08-29 14:46:02',1,30002914,13,22,6,6,12,9,2,7,15,23,16,6,2,11,10,11,6,6,8,1,13,13,2,3),(8078,'2015-08-19 19:10:02','2015-08-19 19:10:02',1,31000001,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(8081,'2015-08-19 19:10:02','2015-08-19 19:10:02',1,31000002,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(8082,'2015-08-19 19:10:02','2015-08-19 19:10:02',1,31000003,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(8083,'2015-08-19 19:10:02','2015-08-19 19:10:02',1,31000006,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(8087,'2015-08-19 19:10:02','2015-08-19 19:10:02',1,31000004,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0); +INSERT INTO `system_jumps` VALUES (1,'2015-03-10 21:49:29','2015-10-11 16:46:29',1,30000995,9,7,18,24,22,22,26,23,11,41,56,11,9,17,60,31,12,5,5,10,10,33,50,33),(2,'2015-03-10 21:49:29','2015-10-11 16:46:29',1,30001779,16,5,1,2,3,7,7,1,6,9,32,13,9,16,4,0,3,7,6,4,0,2,4,13),(3,'2015-03-10 21:49:29','2015-10-11 16:46:29',1,30000838,9,12,8,12,15,9,24,17,13,47,50,44,51,67,61,52,53,64,29,33,46,68,81,53),(4,'2015-03-10 21:49:29','2015-10-11 16:46:29',1,30001904,5,0,3,3,8,5,8,22,13,11,13,15,11,12,13,15,39,12,4,9,18,27,22,26),(5,'2015-03-10 21:49:29','2015-10-11 16:46:29',1,30004510,4,4,4,5,1,1,1,2,7,2,5,5,5,0,3,5,4,4,3,0,1,0,1,1),(6,'2015-03-10 21:49:29','2015-10-11 16:46:29',1,30003693,9,24,15,22,18,13,18,9,17,5,3,9,9,4,9,6,12,2,4,7,7,5,6,21),(7,'2015-03-10 21:49:29','2015-10-11 16:46:29',1,30001287,4,15,4,5,8,4,5,5,1,13,22,2,8,23,49,26,4,6,8,3,9,6,2,12),(8,'2015-03-10 21:49:29','2015-10-11 16:46:29',1,30000480,2,1,1,2,0,1,6,9,5,1,3,6,2,0,1,1,3,0,0,0,0,2,2,0),(9,'2015-03-10 21:49:29','2015-10-11 16:46:29',1,30002454,32,44,23,58,66,50,43,42,28,10,23,39,71,12,18,18,38,30,11,17,15,19,32,24),(10,'2015-03-10 21:49:29','2015-10-11 16:46:29',1,30004756,49,28,3,13,8,11,3,11,34,20,36,23,13,25,40,37,34,16,12,10,38,23,19,18),(11,'2015-03-10 21:49:29','2015-10-11 16:46:30',1,30004674,6,2,1,2,0,1,7,7,5,6,8,3,2,10,6,9,3,11,4,12,3,3,7,6),(12,'2015-03-10 21:49:29','2015-10-11 16:46:30',1,30001150,0,3,2,1,0,0,0,1,0,0,0,2,2,0,0,0,5,3,5,0,1,2,0,0),(13,'2015-03-10 21:49:29','2015-10-11 16:46:30',1,30004930,7,19,42,15,13,8,7,3,9,21,11,8,9,12,14,8,23,11,2,8,8,20,12,12),(14,'2015-03-10 21:49:29','2015-10-11 16:46:30',1,30001322,25,23,28,12,13,13,16,5,12,10,10,12,22,13,44,18,12,10,12,22,26,31,29,11),(15,'2015-03-10 21:49:29','2015-10-11 16:46:30',1,30003114,30,30,40,24,20,39,65,19,23,12,12,14,17,15,7,9,13,22,19,15,18,7,17,23),(16,'2015-03-10 21:49:29','2015-10-11 16:46:30',1,30003198,5,4,1,0,5,3,4,0,3,3,1,1,2,1,0,1,3,3,2,1,1,8,5,3),(17,'2015-03-10 21:49:29','2015-10-11 16:46:30',1,30000222,9,11,11,24,16,13,21,12,4,7,4,5,4,23,6,12,45,15,14,12,9,14,4,5),(18,'2015-03-10 21:49:29','2015-10-11 16:46:30',1,30001065,5,1,6,1,3,5,1,0,2,5,1,7,11,2,8,6,6,10,1,2,1,2,1,2),(19,'2015-03-10 21:49:29','2015-10-11 16:46:30',1,30005191,6,4,15,4,14,10,72,1,2,6,9,11,8,12,15,9,3,1,17,59,5,22,14,1),(20,'2015-03-10 21:49:29','2015-10-11 16:46:30',1,30003615,11,3,9,7,9,13,12,6,14,5,3,5,6,25,8,6,3,9,6,5,6,4,3,6),(21,'2015-03-10 21:49:29','2015-10-11 16:46:30',1,30000799,3,1,3,10,11,7,3,3,5,0,0,3,3,1,1,1,2,0,0,0,0,0,0,1),(22,'2015-03-10 21:49:29','2015-10-11 16:46:30',1,30000440,5,9,7,8,9,8,19,5,6,27,35,49,37,41,84,67,40,22,12,78,45,33,35,25),(23,'2015-03-10 21:49:29','2015-10-11 16:46:30',1,30003947,15,20,10,27,21,19,18,13,10,23,15,9,9,28,35,12,16,13,8,12,19,7,12,11),(24,'2015-03-10 21:49:29','2015-10-11 16:46:30',1,30004509,1,4,2,3,1,0,0,1,6,1,1,2,3,0,1,1,0,2,1,0,0,0,1,0),(25,'2015-03-10 21:49:29','2015-10-11 16:46:30',1,30001295,4,11,1,2,17,12,3,2,4,0,0,3,2,3,6,2,0,4,7,4,0,5,5,7),(26,'2015-03-10 21:49:29','2015-10-11 16:46:30',1,30000857,112,24,113,25,31,28,70,26,33,82,109,357,289,64,105,70,28,16,23,24,28,37,38,30),(27,'2015-03-10 21:49:29','2015-10-11 16:46:30',1,30004656,4,1,1,0,2,2,4,0,1,2,3,8,3,3,4,3,1,7,1,0,8,4,4,1),(28,'2015-03-10 21:49:29','2015-10-11 16:46:30',1,30004596,13,14,9,7,8,10,11,9,17,152,44,167,127,138,28,34,37,42,36,34,40,48,44,32),(29,'2015-03-10 21:49:29','2015-10-11 16:46:30',1,30004068,37,28,124,29,32,32,16,10,28,19,24,11,11,17,12,19,11,18,6,23,9,16,18,22),(30,'2015-03-10 21:49:29','2015-10-11 16:46:30',1,30005186,7,7,24,4,15,10,94,2,3,6,12,18,14,16,30,23,3,4,35,40,6,32,21,3),(31,'2015-03-10 21:49:29','2015-10-11 16:46:30',1,30002609,11,6,2,2,5,7,2,7,4,0,0,1,1,0,0,0,0,3,0,2,0,2,6,2),(32,'2015-03-10 21:49:29','2015-10-11 16:46:30',1,30003149,48,21,29,30,47,29,60,41,65,35,40,26,41,49,79,63,40,26,44,46,34,83,61,40),(33,'2015-03-10 21:49:29','2015-10-11 16:46:30',1,30000707,1,7,3,6,2,1,2,11,9,5,2,1,5,5,0,1,2,1,1,0,4,2,2,1),(34,'2015-03-10 21:49:29','2015-10-11 16:46:30',1,30000822,3,1,9,11,13,8,2,0,10,3,0,4,4,5,3,2,6,8,1,16,18,6,5,8),(35,'2015-03-10 21:49:29','2015-10-11 16:46:30',1,30002460,31,37,24,36,34,34,28,18,22,43,58,52,60,31,29,31,33,41,10,30,38,55,65,29),(36,'2015-03-10 21:49:29','2015-10-11 16:46:30',1,30000623,0,0,0,2,0,0,1,0,0,2,2,0,0,0,0,0,1,3,0,1,2,2,1,2),(37,'2015-03-10 21:49:29','2015-10-11 16:46:30',1,30000216,9,23,28,24,13,6,9,15,7,5,9,8,7,21,23,33,27,23,19,19,27,24,33,31),(38,'2015-03-10 21:49:29','2015-10-11 16:46:30',1,30001120,15,16,22,25,25,29,10,23,25,7,6,22,3,3,1,5,10,6,0,6,2,0,1,3),(39,'2015-03-10 21:49:29','2015-10-11 16:46:30',1,30000596,2,2,3,6,5,2,1,0,1,5,16,3,1,5,3,2,49,0,16,12,10,1,1,1),(40,'2015-03-10 21:49:29','2015-10-11 16:46:30',1,30002168,113,29,107,46,74,64,43,32,11,49,58,73,49,63,109,95,72,51,53,144,183,75,72,44),(41,'2015-03-10 21:49:29','2015-10-11 16:46:30',1,30004954,2,8,5,3,11,8,4,11,5,2,4,8,14,5,3,3,19,2,2,1,3,5,5,1),(42,'2015-03-10 21:49:29','2015-10-11 16:46:30',1,30003743,22,30,44,16,28,45,23,14,19,69,43,37,35,39,61,33,33,36,67,26,42,46,33,55),(43,'2015-03-10 21:49:29','2015-03-10 21:49:29',1,30000351,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(44,'2015-03-10 21:49:29','2015-10-11 16:46:30',1,30004947,14,15,45,15,22,19,25,23,36,47,52,15,15,24,44,44,44,37,8,12,63,31,38,29),(45,'2015-03-10 21:49:29','2015-10-11 16:46:30',1,30003782,45,18,14,16,20,18,14,27,40,30,26,9,14,17,41,24,17,15,11,20,7,9,8,37),(46,'2015-03-10 21:49:29','2015-10-11 16:46:30',1,30004214,18,2,3,1,5,5,8,4,5,1,4,5,5,5,1,3,1,5,0,4,12,8,7,2),(47,'2015-03-10 21:49:29','2015-10-11 16:46:30',1,30004549,8,14,2,10,11,5,13,16,2,2,2,6,3,9,20,5,7,3,5,5,4,4,4,9),(48,'2015-03-10 21:49:29','2015-10-11 16:46:30',1,30004917,9,18,19,6,23,16,12,11,7,36,26,12,13,15,22,26,14,21,11,11,8,12,12,7),(49,'2015-03-10 21:49:29','2015-10-11 16:46:30',1,30003296,2,4,9,5,6,5,1,3,1,20,17,9,3,14,5,8,2,4,6,2,8,5,6,3),(50,'2015-03-10 21:49:29','2015-10-11 16:46:30',1,30005102,0,8,17,9,4,8,7,1,2,4,2,2,1,3,14,14,6,7,6,6,5,8,6,11),(51,'2015-03-10 21:49:29','2015-10-11 16:46:30',1,30001889,3,4,1,1,3,8,8,9,2,15,14,10,13,12,11,8,14,9,5,10,10,17,14,5),(52,'2015-03-10 21:49:29','2015-10-11 16:46:30',1,30001856,11,15,20,11,3,6,16,10,6,25,16,39,45,31,58,43,38,42,12,13,13,43,56,39),(53,'2015-03-10 21:49:29','2015-10-11 16:46:30',1,30000522,2,6,4,6,6,7,5,0,3,0,1,4,3,4,4,2,9,8,1,2,2,13,6,5),(54,'2015-03-10 21:49:29','2015-03-10 21:49:29',1,30001643,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(55,'2015-03-10 21:49:29','2015-10-11 16:46:30',1,30001551,1,1,3,2,3,2,0,12,0,5,6,13,6,11,6,4,6,14,3,24,5,1,1,9),(56,'2015-03-10 21:49:29','2015-10-11 16:46:30',1,30000267,7,17,42,14,9,11,9,6,8,19,121,129,18,18,81,76,11,9,14,9,144,14,17,4),(57,'2015-03-10 21:49:29','2015-10-11 16:46:30',1,30003330,36,19,32,30,28,22,65,11,20,24,27,24,14,47,13,15,14,24,14,37,18,25,28,26),(58,'2015-03-10 21:49:29','2015-10-11 16:46:30',1,30000645,2,0,0,1,0,0,0,0,3,1,3,0,1,2,1,1,1,1,0,3,1,8,7,1),(59,'2015-03-10 21:49:29','2015-10-11 16:46:30',1,30003647,2,0,4,14,4,3,1,0,7,2,2,4,6,7,6,2,1,2,4,1,0,0,3,0),(60,'2015-03-10 21:49:29','2015-10-11 16:46:30',1,30002308,3,1,1,3,2,6,5,6,7,6,10,11,8,4,2,3,1,1,10,8,5,4,4,4),(61,'2015-03-10 21:49:29','2015-03-10 21:49:29',1,30001521,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(62,'2015-03-10 21:49:29','2015-10-11 16:46:30',1,30000262,13,30,19,25,12,4,18,15,13,10,12,11,14,62,34,46,39,20,32,32,40,67,54,45),(63,'2015-03-10 21:49:29','2015-10-11 16:46:30',1,30004720,17,19,3,15,12,15,17,15,11,10,12,17,10,8,12,45,27,16,8,3,4,14,17,4),(64,'2015-03-10 21:49:29','2015-10-11 16:46:30',1,30000929,5,2,3,1,0,5,2,1,0,1,3,2,1,5,1,1,0,4,2,0,3,1,0,2),(65,'2015-03-10 21:49:29','2015-10-11 16:46:30',1,30004950,15,8,25,18,10,7,14,13,20,54,41,10,5,19,17,40,9,10,14,36,24,17,17,26),(66,'2015-03-10 21:49:29','2015-10-11 16:46:30',1,30004483,19,11,66,1,6,19,35,12,9,11,10,15,25,21,21,30,48,29,13,16,34,31,24,41),(67,'2015-03-10 21:49:29','2015-10-11 16:46:30',1,30002899,17,11,11,18,17,16,10,26,24,66,124,164,156,84,115,84,109,131,37,56,64,83,100,92),(68,'2015-03-10 21:49:29','2015-10-11 16:46:30',1,30004874,24,54,23,21,34,20,38,38,25,14,11,9,9,3,3,4,9,4,1,4,1,5,8,14),(69,'2015-03-10 21:49:29','2015-10-11 16:46:30',1,30004322,7,10,37,10,31,44,12,25,13,4,5,8,6,4,3,3,5,6,3,4,4,4,10,13),(70,'2015-03-10 21:49:29','2015-10-11 16:46:30',1,30000966,8,1,6,3,5,7,2,1,0,6,2,9,8,1,4,1,4,2,3,14,3,3,7,1),(71,'2015-03-10 21:49:29','2015-10-11 16:46:30',1,30003251,13,6,88,14,7,4,11,4,4,3,2,3,0,3,3,0,5,4,2,1,3,5,1,1),(72,'2015-03-10 21:49:29','2015-10-11 16:46:30',1,30000290,3,7,24,16,17,16,21,6,23,43,55,56,76,27,36,18,29,55,26,13,24,78,72,30),(73,'2015-03-10 21:49:29','2015-10-11 16:46:30',1,30000940,2,0,0,2,0,0,0,0,1,1,1,1,2,1,3,1,3,2,0,0,3,1,2,0),(74,'2015-03-10 21:49:29','2015-10-11 16:46:30',1,30000566,6,7,4,3,7,1,3,1,1,3,3,3,2,3,0,1,1,3,10,8,2,6,22,3),(75,'2015-03-10 21:49:29','2015-03-10 21:49:29',1,30001458,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(76,'2015-03-10 21:49:29','2015-10-11 16:46:30',1,30002846,13,9,9,14,23,22,2,4,18,10,8,13,15,31,25,15,7,14,2,1,14,11,14,19),(77,'2015-03-10 21:49:29','2015-10-11 16:46:30',1,30001009,54,14,64,84,31,27,45,40,32,153,194,90,46,177,96,103,86,49,49,64,77,43,32,110),(78,'2015-03-10 21:49:29','2015-10-11 16:46:30',1,30004695,12,26,51,9,16,36,21,13,18,19,18,12,36,37,25,21,13,16,15,9,36,34,19,24),(79,'2015-03-10 21:49:29','2015-10-11 16:46:30',1,30003349,37,16,10,14,16,10,32,14,29,73,80,45,20,29,53,36,52,15,7,34,34,63,42,44),(80,'2015-03-10 21:49:29','2015-10-11 16:46:30',1,30001961,5,5,5,2,3,2,1,2,8,3,5,0,1,1,2,3,2,1,1,2,2,3,2,3),(81,'2015-03-10 21:49:29','2015-10-11 16:46:30',1,30003957,12,5,105,25,23,36,15,38,12,14,15,14,10,21,16,20,13,12,50,9,9,8,5,6),(82,'2015-03-10 21:49:29','2015-10-11 16:46:30',1,30000543,14,2,18,7,4,0,10,15,17,9,11,7,8,2,6,8,8,16,6,12,2,2,5,4),(83,'2015-03-10 21:49:29','2015-10-11 16:46:30',1,30000781,25,9,18,4,8,12,14,9,7,5,4,8,5,10,7,8,7,3,4,14,4,1,3,6),(84,'2015-03-10 21:49:29','2015-10-11 16:46:30',1,30002934,13,6,12,5,5,3,9,3,6,9,5,1,3,4,8,7,4,4,6,10,3,7,3,11),(85,'2015-03-10 21:49:29','2015-10-11 16:46:30',1,30004843,3,4,1,0,0,1,1,2,3,1,2,1,0,3,1,3,3,0,2,9,10,1,4,0),(86,'2015-03-10 21:49:29','2015-10-11 16:46:30',1,30005157,2,0,2,2,4,6,3,1,1,4,3,0,1,7,11,9,5,8,5,0,4,20,20,21),(87,'2015-03-10 21:49:29','2015-10-11 16:46:30',1,30001837,9,21,18,15,12,17,18,20,8,46,46,35,36,44,20,31,47,45,20,29,25,33,39,32),(88,'2015-03-10 21:49:29','2015-03-10 21:49:29',1,30001599,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(89,'2015-03-10 21:49:29','2015-10-11 16:46:30',1,30004677,4,3,2,2,3,2,7,7,11,4,8,5,3,6,6,10,7,6,4,6,6,5,3,5),(90,'2015-03-10 21:49:29','2015-10-11 16:46:30',1,30001757,11,1,2,2,2,2,0,1,4,0,1,0,0,0,2,1,1,2,0,0,1,3,2,4),(91,'2015-03-10 21:49:29','2015-10-11 16:46:30',1,30003766,36,59,71,46,41,31,22,18,21,35,41,104,65,51,103,93,54,57,32,37,80,39,51,48),(92,'2015-03-10 21:49:29','2015-10-11 16:46:30',1,30004801,12,5,41,24,29,9,7,5,18,13,11,18,19,30,21,14,17,18,22,22,13,35,28,12),(93,'2015-03-10 21:49:29','2015-10-11 16:46:30',1,30004037,48,14,28,24,42,27,44,8,12,13,21,16,9,10,17,21,12,8,9,41,3,18,21,9),(94,'2015-03-10 21:49:29','2015-10-11 16:46:30',1,30004650,25,1,6,21,5,1,10,6,12,14,8,8,8,8,8,6,7,9,19,40,48,30,19,16),(95,'2015-03-10 21:49:29','2015-10-11 16:46:30',1,30000573,93,27,71,28,35,28,53,16,45,2,5,4,5,34,18,28,6,15,7,27,18,19,23,4),(96,'2015-03-10 21:49:29','2015-10-11 16:46:30',1,30000734,3,8,29,4,5,5,0,3,3,2,2,0,1,1,0,2,2,0,0,2,4,1,1,4),(97,'2015-03-10 21:49:29','2015-10-11 16:46:30',1,30002581,7,1,4,5,3,0,9,2,4,11,5,8,10,14,3,1,6,9,5,7,5,2,7,5),(98,'2015-03-10 21:49:29','2015-10-11 16:46:30',1,30003258,20,23,43,30,19,14,28,35,24,5,2,6,2,4,39,21,13,2,2,11,16,6,9,18),(99,'2015-03-10 21:49:29','2015-10-11 16:46:30',1,30001109,0,7,2,9,4,4,22,2,3,16,8,7,7,6,8,8,26,8,6,2,7,2,7,9),(100,'2015-03-10 21:49:29','2015-10-11 16:46:30',1,30000301,24,30,37,60,27,32,36,14,21,10,12,19,21,73,49,46,77,41,17,28,93,22,21,62),(101,'2015-03-10 21:49:29','2015-10-11 16:46:30',1,30000463,1,1,0,2,3,2,2,1,5,4,1,1,0,4,3,1,2,2,1,2,0,3,3,3),(102,'2015-03-10 21:49:29','2015-10-11 16:46:30',1,30003215,42,16,11,28,24,31,15,12,13,16,17,14,16,9,15,18,13,18,7,21,15,11,10,14),(103,'2015-03-10 21:49:29','2015-10-11 16:46:30',1,30002823,5,5,7,5,6,4,11,4,7,24,22,9,10,11,7,10,6,7,0,0,11,20,16,6),(104,'2015-03-10 21:49:29','2015-10-11 16:46:30',1,30004940,58,54,28,58,35,30,34,21,16,25,22,6,11,15,11,14,9,10,7,8,12,17,20,15),(105,'2015-03-10 21:49:29','2015-10-11 16:46:30',1,30003297,5,7,5,4,3,4,3,0,12,2,5,5,3,4,4,4,2,6,2,7,1,4,6,10),(106,'2015-03-10 21:49:29','2015-10-11 16:46:30',1,30004048,1,18,21,3,9,6,7,4,5,11,13,7,8,16,30,28,19,6,14,13,13,30,26,14),(107,'2015-03-10 21:49:29','2015-10-11 16:46:30',1,30000474,0,0,2,0,0,0,0,1,1,1,1,5,3,0,2,1,4,1,0,0,3,2,1,4),(108,'2015-03-10 21:49:29','2015-10-11 16:46:30',1,30004738,33,52,121,64,67,58,71,59,79,321,496,156,109,296,253,307,230,134,119,245,266,209,164,208),(109,'2015-03-10 21:49:29','2015-10-11 16:46:30',1,30001270,30,15,9,22,20,23,16,8,17,45,69,55,34,34,68,53,53,53,13,27,14,28,31,27),(110,'2015-03-10 21:49:29','2015-10-11 16:46:30',1,30003336,7,6,23,7,7,10,17,6,3,13,23,25,22,20,5,10,7,19,1,3,11,6,14,7),(111,'2015-03-10 21:49:29','2015-10-11 16:46:30',1,30003147,1,6,0,4,8,8,5,2,0,2,3,3,3,3,1,2,1,3,3,1,4,3,0,3),(112,'2015-03-10 21:49:29','2015-10-11 16:46:30',1,30001975,13,25,26,9,10,14,8,11,13,2,0,1,0,3,2,4,3,1,6,3,2,8,4,3),(113,'2015-03-10 21:49:29','2015-10-11 16:46:30',1,30001066,6,5,2,4,3,1,5,5,4,5,3,0,2,3,1,5,27,7,2,3,0,1,1,6),(114,'2015-03-10 21:49:29','2015-10-11 16:46:30',1,30004639,24,7,5,3,21,20,30,1,3,7,6,4,2,2,3,3,1,5,2,1,3,4,7,7),(115,'2015-03-10 21:49:29','2015-10-11 16:46:30',1,30004611,2,0,0,1,0,0,0,1,1,7,12,14,9,7,9,3,1,4,10,10,7,13,16,11),(116,'2015-03-10 21:49:29','2015-10-11 16:46:30',1,30000861,170,54,166,129,136,88,68,72,87,179,271,676,328,273,131,129,145,67,36,79,55,79,122,135),(117,'2015-03-10 21:49:29','2015-03-10 21:49:29',1,30000425,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(118,'2015-03-10 21:49:29','2015-10-11 16:46:30',1,30000931,2,0,1,0,1,2,1,0,0,3,2,2,1,3,0,1,2,2,0,0,0,1,0,0),(119,'2015-03-10 21:49:29','2015-10-11 16:46:30',1,30004849,10,4,8,8,3,4,4,28,39,18,18,14,8,10,5,7,8,3,22,15,7,3,8,13),(120,'2015-03-10 21:49:29','2015-10-11 16:46:30',1,30003122,10,13,4,9,6,9,10,2,8,11,11,15,17,28,19,12,22,13,39,16,17,10,10,26),(121,'2015-03-10 21:49:29','2015-10-11 16:46:30',1,30003768,5,3,12,12,11,3,8,1,1,4,4,2,4,3,2,8,3,8,1,4,4,2,3,1),(122,'2015-03-10 21:49:29','2015-03-10 21:49:29',1,30000342,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(123,'2015-03-10 21:49:29','2015-10-11 16:46:30',1,30003785,35,24,14,16,18,16,20,39,14,32,27,28,25,8,52,41,21,22,6,9,6,25,23,14),(124,'2015-03-10 21:49:29','2015-10-11 16:46:30',1,30005117,4,6,15,13,10,10,5,7,3,7,4,7,4,6,12,9,2,3,9,7,40,15,5,1),(125,'2015-03-10 21:49:29','2015-10-11 16:46:30',1,30002317,4,2,0,2,3,6,2,4,6,3,5,1,0,0,1,1,2,1,3,0,0,0,1,3),(126,'2015-03-10 21:49:29','2015-10-11 16:46:30',1,30004728,24,21,7,6,5,11,13,7,16,10,11,10,9,14,19,18,27,13,12,8,18,26,25,16),(127,'2015-03-10 21:49:29','2015-10-11 16:46:30',1,30003624,5,1,5,2,5,5,7,6,2,1,0,3,3,3,9,5,2,8,4,5,4,2,2,3),(128,'2015-03-10 21:49:29','2015-10-11 16:46:30',1,30000963,3,0,0,0,2,2,0,3,2,8,2,3,0,4,1,1,0,4,3,7,5,2,2,5),(129,'2015-03-10 21:49:29','2015-03-10 21:49:29',1,30001524,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(130,'2015-03-10 21:49:29','2015-10-11 16:46:30',1,30004688,1,5,3,2,4,4,4,4,4,2,4,3,0,4,3,4,1,3,2,3,1,1,2,6),(131,'2015-03-10 21:49:29','2015-10-11 16:46:30',1,30004710,56,53,63,24,45,38,81,26,77,200,208,65,83,97,188,230,129,51,37,77,114,91,159,165),(132,'2015-03-10 21:49:29','2015-10-11 16:46:30',1,30004759,13,3,154,3,7,2,6,5,9,33,18,19,36,44,134,15,16,29,7,13,19,25,24,12),(133,'2015-03-10 21:49:29','2015-10-11 16:46:30',1,30004964,10,6,4,13,10,7,8,14,7,8,8,7,4,4,3,6,7,3,0,6,5,3,2,3),(134,'2015-03-10 21:49:29','2015-10-11 16:46:30',1,30003211,45,20,12,36,20,29,16,22,14,16,16,17,16,11,12,19,12,18,7,21,18,14,11,16),(135,'2015-03-10 21:49:29','2015-10-11 16:46:30',1,30004367,7,8,14,25,19,14,13,12,7,23,21,36,20,10,83,46,23,25,9,22,11,10,6,14),(136,'2015-03-10 21:49:29','2015-10-11 16:46:30',1,30002332,1,1,2,1,3,9,3,4,3,16,29,17,11,5,4,4,1,2,13,9,6,7,8,2),(137,'2015-03-10 21:49:29','2015-10-11 16:46:30',1,30004226,0,2,0,0,0,1,1,1,0,0,0,0,0,0,0,0,0,1,0,0,1,0,1,0),(138,'2015-03-10 21:49:29','2015-10-11 16:46:30',1,30001880,51,17,18,1,19,24,8,1,4,27,39,36,36,7,20,8,30,8,23,11,21,18,19,31),(139,'2015-03-10 21:49:29','2015-10-11 16:46:30',1,30001952,8,4,7,3,0,3,6,1,2,10,11,2,2,2,5,4,1,4,2,0,1,6,3,7),(140,'2015-03-10 21:49:29','2015-10-11 16:46:30',1,30002329,2,1,0,1,2,1,0,2,1,0,0,0,0,0,1,0,2,1,0,0,0,0,0,0),(141,'2015-03-10 21:49:29','2015-03-10 21:49:29',1,30000395,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(142,'2015-03-10 21:49:29','2015-10-11 16:46:30',1,30001540,5,7,7,5,10,15,4,2,11,23,12,7,2,9,3,3,7,7,0,1,11,5,3,1),(143,'2015-03-10 21:49:29','2015-10-11 16:46:30',1,30004920,24,9,25,17,25,20,26,19,20,15,17,28,28,28,28,21,6,15,13,78,6,15,13,18),(144,'2015-03-10 21:49:29','2015-10-11 16:46:30',1,30004393,40,12,15,13,14,29,16,24,15,23,16,33,32,27,15,9,12,10,4,10,5,14,10,14),(145,'2015-03-10 21:49:29','2015-10-11 16:46:30',1,30000445,5,8,6,10,20,12,27,9,13,42,62,75,68,60,87,82,64,64,18,31,34,60,82,65),(146,'2015-03-10 21:49:29','2015-10-11 16:46:30',1,30000962,4,6,7,3,3,4,2,7,10,8,5,4,5,6,4,3,0,5,7,9,9,6,5,6),(147,'2015-03-10 21:49:29','2015-10-11 16:46:30',1,30004501,11,10,14,7,7,10,11,10,6,3,3,14,13,7,27,26,32,17,6,16,12,15,10,8),(148,'2015-03-10 21:49:29','2015-10-11 16:46:30',1,30000579,230,31,81,77,155,44,70,44,34,59,59,14,22,70,46,48,59,36,139,266,61,178,161,28),(149,'2015-03-10 21:49:29','2015-10-11 16:46:30',1,30003952,21,1,0,2,1,1,6,5,0,5,7,13,12,7,9,7,2,12,1,6,3,0,0,0),(150,'2015-03-10 21:49:29','2015-10-11 16:46:30',1,30004189,0,2,3,3,1,2,11,0,2,9,8,8,12,17,2,10,9,7,1,1,6,15,13,7),(151,'2015-03-10 21:49:29','2015-10-11 16:46:30',1,30000294,3,2,13,8,3,3,5,1,4,10,16,10,12,2,26,5,4,13,2,4,2,8,7,5),(152,'2015-03-10 21:49:29','2015-10-11 16:46:30',1,30001081,4,3,10,2,4,3,10,12,20,14,17,21,15,11,16,26,9,19,3,4,0,14,16,22),(153,'2015-03-10 21:49:29','2015-10-11 16:46:30',1,30003233,1,3,1,2,1,0,0,0,2,1,0,0,1,0,1,3,3,1,0,0,0,1,1,0),(154,'2015-03-10 21:49:29','2015-10-11 16:46:30',1,30001170,26,8,18,12,14,10,6,14,13,26,21,25,22,51,23,25,15,17,13,46,39,18,12,16),(155,'2015-03-10 21:49:29','2015-10-11 16:46:30',1,30002365,31,12,32,17,31,20,17,31,21,6,7,15,14,24,21,28,36,14,15,26,10,12,8,5),(156,'2015-03-10 21:49:29','2015-03-10 21:49:29',1,30000336,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(157,'2015-03-10 21:49:29','2015-10-11 16:46:30',1,30003617,28,22,24,16,21,19,26,11,20,3,9,7,7,14,6,8,18,10,3,22,4,12,7,11),(158,'2015-03-10 21:49:29','2015-10-11 16:46:30',1,30000720,20,11,44,32,10,17,38,29,8,33,72,24,21,26,113,68,84,23,112,43,51,114,49,25),(159,'2015-03-10 21:49:29','2015-03-10 21:49:29',1,30000378,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(160,'2015-03-10 21:49:29','2015-10-11 16:46:30',1,30002866,10,15,9,10,13,12,12,6,6,17,19,14,17,18,31,28,14,36,2,5,24,25,30,15),(161,'2015-03-10 21:49:29','2015-03-10 21:49:29',1,30001452,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(162,'2015-03-10 21:49:29','2015-10-11 16:46:30',1,30000766,10,1,2,0,2,2,0,0,6,4,3,2,4,6,2,2,3,0,0,1,3,5,11,7),(163,'2015-03-10 21:49:29','2015-03-10 21:49:29',1,30000424,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(164,'2015-03-10 21:49:29','2015-10-11 16:46:30',1,30000680,46,32,102,40,69,72,49,44,24,37,57,30,58,66,122,86,45,34,10,51,178,58,41,49),(165,'2015-03-10 21:49:29','2015-10-11 16:46:30',1,30000286,16,19,20,19,8,6,6,8,14,13,6,3,9,14,13,12,6,46,4,11,9,14,15,8),(166,'2015-03-10 21:49:29','2015-10-11 16:46:30',1,30000288,7,19,15,19,5,6,6,11,12,10,8,5,7,12,14,13,19,12,2,7,13,10,11,11),(167,'2015-03-10 21:49:29','2015-10-11 16:46:30',1,30000836,33,4,16,7,4,34,7,4,16,2,8,3,1,1,6,7,1,8,3,0,5,2,0,0),(168,'2015-03-10 21:49:29','2015-10-11 16:46:30',1,30000611,100,4,10,12,13,6,11,3,5,9,10,106,69,14,14,7,14,20,12,17,23,23,22,17),(169,'2015-03-10 21:49:29','2015-10-11 16:46:30',1,30003668,3,10,12,23,6,7,53,8,4,9,18,5,3,11,8,8,10,9,0,6,4,1,1,5),(170,'2015-03-10 21:49:29','2015-03-10 21:49:29',1,30000349,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(171,'2015-03-10 21:49:29','2015-10-11 16:46:30',1,30002007,23,66,58,40,48,45,42,23,24,67,17,29,33,37,5,12,36,32,35,38,152,36,40,17),(172,'2015-03-10 21:49:29','2015-10-11 16:46:30',1,30001786,7,1,0,0,2,4,0,2,0,10,10,10,14,15,76,18,11,8,0,2,30,32,19,15),(173,'2015-03-10 21:49:29','2015-10-11 16:46:30',1,30004184,4,5,3,3,8,9,4,2,9,6,8,14,20,9,4,11,13,7,1,0,3,9,8,2),(174,'2015-03-10 21:49:29','2015-10-11 16:46:30',1,30004454,4,4,1,3,0,1,2,0,0,0,1,0,1,0,2,0,1,0,3,0,22,0,0,2),(175,'2015-03-10 21:49:29','2015-10-11 16:46:30',1,30002903,53,39,77,79,49,43,109,57,38,134,118,89,97,114,151,120,100,93,101,94,76,69,67,80),(176,'2015-03-10 21:49:29','2015-10-11 16:46:30',1,30000684,17,2,70,10,6,4,12,8,6,2,0,9,10,11,4,4,19,5,1,4,11,12,7,9),(177,'2015-03-10 21:49:29','2015-03-10 21:49:29',1,30001598,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(178,'2015-03-10 21:49:29','2015-10-11 16:46:30',1,30000756,4,14,15,2,7,8,3,8,28,7,3,14,9,9,8,12,14,41,5,14,3,4,8,5),(179,'2015-03-10 21:49:29','2015-10-11 16:46:30',1,30004492,17,6,14,2,1,0,8,3,2,1,0,0,0,0,0,1,1,0,13,2,3,1,5,5),(180,'2015-03-10 21:49:29','2015-10-11 16:46:30',1,30003754,44,33,71,91,44,27,42,18,22,120,117,102,81,209,160,54,139,51,34,114,63,85,182,88),(181,'2015-03-10 21:49:29','2015-10-11 16:46:30',1,30001864,25,11,10,12,13,15,13,10,6,41,55,75,87,42,57,51,59,104,10,18,41,202,76,100),(182,'2015-03-10 21:49:29','2015-10-11 16:46:30',1,30003188,8,3,60,4,1,1,3,2,0,3,4,3,2,4,10,6,2,4,6,7,2,6,2,3),(183,'2015-03-10 21:49:29','2015-10-11 16:46:30',1,30000473,1,0,3,0,0,0,0,0,0,3,2,8,5,3,4,2,11,3,1,137,14,23,24,11),(184,'2015-03-10 21:49:29','2015-10-11 16:46:30',1,30005139,12,8,9,0,2,4,5,7,9,0,0,0,0,1,1,2,2,2,0,0,2,6,5,1),(185,'2015-03-10 21:49:29','2015-10-11 16:46:30',1,30003238,0,2,0,0,0,0,1,0,0,20,19,13,13,0,2,0,1,0,0,0,0,0,0,0),(186,'2015-03-10 21:49:29','2015-10-11 16:46:30',1,30004734,4,0,1,1,0,0,1,1,2,20,22,10,2,4,19,13,8,3,9,9,0,0,0,1),(187,'2015-03-10 21:49:29','2015-10-11 16:46:30',1,30004467,30,6,6,11,13,16,20,10,28,31,44,50,43,34,57,56,44,41,41,22,75,62,34,34),(188,'2015-03-10 21:49:29','2015-10-11 16:46:30',1,30001784,13,3,0,1,4,9,0,3,3,16,24,15,21,29,52,35,33,23,7,9,33,48,28,35),(189,'2015-03-10 21:49:29','2015-10-11 16:46:30',1,30001258,11,43,33,33,33,17,20,15,22,32,30,31,33,41,32,48,31,41,62,24,64,92,33,18),(190,'2015-03-10 21:49:29','2015-10-11 16:46:30',1,30000832,10,1,6,5,2,34,1,1,17,1,1,5,1,12,4,4,3,3,2,1,4,1,1,6),(191,'2015-03-10 21:49:29','2015-10-11 16:46:30',1,30000996,8,8,18,35,25,30,22,23,20,45,59,12,12,20,67,39,15,4,3,11,12,36,57,39),(192,'2015-03-10 21:49:29','2015-10-11 16:46:30',1,30004071,4,2,18,4,6,7,5,2,2,9,19,5,8,9,9,10,8,8,12,9,120,16,18,7),(193,'2015-03-10 21:49:29','2015-10-11 16:46:30',1,30000714,6,3,17,8,3,2,4,1,10,1,0,8,8,0,1,1,11,4,2,2,3,7,1,10),(194,'2015-03-10 21:49:29','2015-10-11 16:46:30',1,30003171,14,19,9,4,4,6,8,5,31,11,10,23,23,4,27,21,9,3,3,3,0,6,5,6),(195,'2015-03-10 21:49:29','2015-10-11 16:46:30',1,30005182,2,2,2,0,4,3,0,1,0,11,14,2,4,5,3,2,1,3,0,1,7,25,30,9),(196,'2015-03-10 21:49:29','2015-10-11 16:46:30',1,30001949,14,4,5,7,0,18,22,2,2,12,10,8,5,23,12,8,3,12,1,12,7,9,6,6),(197,'2015-03-10 21:49:29','2015-10-11 16:46:30',1,30002342,7,3,6,6,10,5,10,8,5,3,4,7,10,3,35,26,9,1,10,25,1,24,19,1),(198,'2015-03-10 21:49:29','2015-10-11 16:46:30',1,30004394,2,2,0,2,8,5,0,8,0,2,1,3,4,2,0,1,2,1,1,5,7,1,0,1),(199,'2015-03-10 21:49:29','2015-10-11 16:46:30',1,30000898,22,40,46,47,36,38,31,10,37,20,17,20,20,36,26,29,34,39,10,28,22,52,50,18),(200,'2015-03-10 21:49:29','2015-10-11 16:46:30',1,30001965,20,28,9,28,49,33,55,41,54,51,74,118,117,29,83,85,20,65,11,6,12,42,35,46),(201,'2015-03-10 21:49:29','2015-10-11 16:46:30',1,30000292,3,18,14,21,15,18,12,4,13,43,49,42,54,21,52,21,18,42,14,11,24,39,40,25),(202,'2015-03-10 21:49:29','2015-10-11 16:46:30',1,30002424,35,50,29,25,30,23,44,14,19,20,21,26,29,24,24,13,30,41,10,26,37,30,24,22),(203,'2015-03-10 21:49:29','2015-03-10 21:49:29',1,30000403,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(204,'2015-03-10 21:49:29','2015-10-11 16:46:30',1,30001746,5,12,2,11,12,7,3,2,5,1,3,1,1,0,10,4,5,5,0,1,2,13,7,9),(205,'2015-03-10 21:49:29','2015-10-11 16:46:30',1,30001136,1,0,1,0,0,0,0,0,0,7,8,0,0,0,2,4,1,2,0,1,4,1,1,1),(206,'2015-03-10 21:49:29','2015-10-11 16:46:30',1,30002283,17,3,18,13,7,12,8,8,5,12,5,7,9,11,8,5,7,6,17,4,41,11,9,5),(207,'2015-03-10 21:49:29','2015-10-11 16:46:30',1,30003370,0,2,2,7,4,7,2,4,5,3,3,1,2,5,6,5,4,2,7,0,1,6,6,1),(208,'2015-03-10 21:49:29','2015-10-11 16:46:30',1,30002455,15,23,9,24,26,20,20,14,20,8,13,12,26,5,10,11,22,13,9,6,7,14,21,19),(209,'2015-03-10 21:49:29','2015-10-11 16:46:30',1,30004693,13,13,9,11,8,9,11,12,16,19,21,10,33,35,26,13,12,19,10,9,25,35,16,11),(210,'2015-03-10 21:49:29','2015-10-11 16:46:30',1,30001352,2,2,3,1,2,7,2,0,3,2,0,0,4,0,1,1,1,1,1,3,1,1,2,1),(211,'2015-03-10 21:49:29','2015-10-11 16:46:30',1,30001774,9,7,2,3,7,12,22,4,10,23,43,11,7,18,7,4,2,10,7,4,3,5,5,18),(212,'2015-03-10 21:49:29','2015-10-11 16:46:30',1,30001860,22,15,22,8,5,8,20,19,16,155,158,67,63,78,92,86,65,32,17,17,61,211,21,42),(213,'2015-03-10 21:49:29','2015-10-11 16:46:30',1,30000881,1,0,2,3,2,1,3,2,2,0,1,3,1,3,3,6,7,5,2,1,6,5,4,0),(214,'2015-03-10 21:49:29','2015-10-11 16:46:30',1,30001169,40,24,16,22,14,9,12,13,17,54,67,24,28,69,18,30,13,23,16,25,17,34,31,15),(215,'2015-03-10 21:49:29','2015-10-11 16:46:30',1,30004531,3,1,4,1,2,1,1,2,1,1,3,4,2,23,9,10,3,2,1,0,3,0,1,1),(216,'2015-03-10 21:49:29','2015-10-11 16:46:30',1,30000757,33,5,28,13,9,8,8,11,24,32,20,12,8,6,10,13,15,16,5,22,5,4,10,5),(217,'2015-03-10 21:49:29','2015-03-10 21:49:29',1,30001510,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(218,'2015-03-10 21:49:29','2015-10-11 16:46:30',1,30002175,33,13,32,13,20,23,23,17,19,20,28,30,20,11,46,54,17,17,2,8,26,21,18,13),(219,'2015-03-10 21:49:29','2015-10-11 16:46:30',1,30002909,52,38,101,42,40,57,62,41,50,88,86,65,58,182,169,146,105,80,107,110,74,93,103,69),(220,'2015-03-10 21:49:29','2015-10-11 16:46:30',1,30003332,20,9,32,17,25,17,41,4,11,8,12,23,13,8,8,10,10,14,13,31,5,21,17,10),(221,'2015-03-10 21:49:29','2015-10-11 16:46:30',1,30004830,2,10,10,25,12,13,20,31,4,3,7,0,1,3,8,4,4,2,5,4,3,3,1,7),(222,'2015-03-10 21:49:29','2015-10-11 16:46:30',1,30001319,2,6,4,3,4,3,2,1,2,2,1,0,4,0,1,2,0,3,1,4,4,6,5,1),(223,'2015-03-10 21:49:29','2015-10-11 16:46:30',1,30003304,1,6,2,1,2,4,1,0,1,1,1,0,1,0,6,9,2,1,1,0,0,4,7,0),(224,'2015-03-10 21:49:29','2015-10-11 16:46:30',1,30002905,98,61,228,208,69,92,210,92,66,323,287,224,193,263,292,210,136,176,108,173,159,277,238,149),(225,'2015-03-10 21:49:29','2015-10-11 16:46:30',1,30003182,2,5,5,6,2,1,8,6,4,4,4,3,0,6,9,8,4,7,3,3,2,1,1,3),(226,'2015-03-10 21:49:29','2015-03-10 21:49:29',1,30001615,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(227,'2015-03-10 21:49:29','2015-10-11 16:46:30',1,30001333,27,6,10,5,16,12,8,7,8,22,24,36,32,21,30,22,6,14,10,11,22,14,9,20),(228,'2015-03-10 21:49:29','2015-10-11 16:46:30',1,30004447,2,1,3,1,1,1,0,0,11,0,2,1,0,4,1,1,2,0,1,0,0,7,3,0),(229,'2015-03-10 21:49:29','2015-10-11 16:46:30',1,30001770,14,2,2,5,4,4,1,1,2,0,8,1,0,0,0,0,3,0,0,3,0,1,1,1),(230,'2015-03-10 21:49:29','2015-10-11 16:46:30',1,30003774,36,39,35,52,34,66,14,16,31,53,66,44,38,71,58,41,49,83,74,31,44,50,41,74),(231,'2015-03-10 21:49:29','2015-10-11 16:46:30',1,30005096,5,4,18,12,11,11,2,7,1,5,4,6,5,4,15,8,3,3,2,4,5,11,5,1),(232,'2015-03-10 21:49:29','2015-10-11 16:46:30',1,30001799,3,0,1,0,1,2,0,0,0,7,1,1,2,17,4,5,16,8,0,2,6,7,2,2),(233,'2015-03-10 21:49:29','2015-10-11 16:46:30',1,30003275,9,11,23,11,13,13,37,11,11,14,28,7,30,8,15,15,33,16,15,13,25,34,34,23),(234,'2015-03-10 21:49:29','2015-10-11 16:46:30',1,30000909,9,0,7,8,5,8,6,9,2,2,2,7,9,4,9,5,4,7,4,5,6,2,7,6),(235,'2015-03-10 21:49:29','2015-10-11 16:46:30',1,30001103,7,3,38,40,12,17,31,10,3,41,35,25,16,31,18,14,11,1,6,9,5,68,54,11),(236,'2015-03-10 21:49:29','2015-10-11 16:46:30',1,30001116,0,0,0,1,0,0,0,3,0,1,1,1,1,2,0,0,2,2,0,2,4,0,0,0),(237,'2015-03-10 21:49:29','2015-10-11 16:46:30',1,30000823,13,6,14,8,7,3,2,1,4,12,13,102,64,11,13,8,7,26,7,15,5,12,12,5),(238,'2015-03-10 21:49:29','2015-10-11 16:46:30',1,30000452,2,1,4,2,1,0,3,1,1,7,12,15,8,35,36,28,32,16,27,19,53,25,3,14),(239,'2015-03-10 21:49:29','2015-10-11 16:46:30',1,30004466,5,1,1,1,2,3,1,1,4,11,7,10,10,2,16,7,24,11,22,13,6,2,2,7),(240,'2015-03-10 21:49:29','2015-03-10 21:49:29',1,30001642,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(241,'2015-03-10 21:49:29','2015-10-11 16:46:30',1,30004764,5,8,47,8,3,0,2,1,4,11,4,16,36,39,123,7,7,40,4,8,26,17,26,12),(242,'2015-03-10 21:49:29','2015-10-11 16:46:30',1,30004019,15,28,129,34,29,45,39,47,23,16,17,34,37,38,18,31,26,32,49,21,25,31,15,13),(243,'2015-03-10 21:49:29','2015-03-10 21:49:29',1,30000341,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(244,'2015-03-10 21:49:29','2015-10-11 16:46:30',1,30003356,11,9,8,3,8,5,2,0,7,6,7,3,0,10,6,6,10,1,9,8,6,3,3,1),(245,'2015-03-10 21:49:29','2015-03-10 21:49:29',1,30000343,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(246,'2015-03-10 21:49:29','2015-10-11 16:46:30',1,30004004,27,62,22,26,17,26,10,10,27,26,32,47,23,141,35,24,14,18,37,15,14,21,16,30),(247,'2015-03-10 21:49:29','2015-10-11 16:46:30',1,30003231,4,5,2,13,5,4,4,1,3,0,0,1,1,0,1,2,1,2,1,0,0,1,1,2),(248,'2015-03-10 21:49:29','2015-10-11 16:46:30',1,30000448,7,2,5,7,2,1,6,9,0,44,31,22,19,52,50,42,39,26,80,130,62,100,99,36),(249,'2015-03-10 21:49:29','2015-10-11 16:46:30',1,30004358,2,6,8,14,11,16,48,27,18,8,17,11,12,5,7,12,11,6,6,6,5,3,5,6),(250,'2015-03-10 21:49:29','2015-10-11 16:46:30',1,30001199,16,18,16,30,18,18,33,19,10,106,111,73,71,341,238,216,89,78,103,193,153,106,134,97),(251,'2015-03-10 21:49:29','2015-10-11 16:46:30',1,30001820,0,2,1,2,1,1,2,0,2,18,16,24,5,0,0,0,0,0,0,0,1,0,0,0),(252,'2015-03-10 21:49:29','2015-10-11 16:46:30',1,30003675,0,8,6,9,8,7,8,8,9,1,0,0,5,1,5,4,8,14,1,0,1,2,2,0),(253,'2015-03-10 21:49:29','2015-10-11 16:46:30',1,30001212,11,14,12,9,1,5,6,9,7,2,4,10,7,6,5,2,9,8,7,5,7,3,1,6),(254,'2015-03-10 21:49:29','2015-10-11 16:46:30',1,30004336,5,8,15,12,14,10,5,8,11,6,4,4,2,20,49,11,4,9,2,11,13,7,12,14),(255,'2015-03-10 21:49:29','2015-10-11 16:46:30',1,30002582,9,0,4,3,3,0,10,1,7,10,5,11,10,13,3,2,6,8,5,6,19,2,8,4),(256,'2015-03-10 21:49:29','2015-03-10 21:49:29',1,30001500,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(257,'2015-03-10 21:49:29','2015-10-11 16:46:30',1,30004405,8,4,5,17,5,6,3,7,21,11,8,13,13,26,23,34,33,16,15,14,15,61,27,35),(258,'2015-03-10 21:49:29','2015-10-11 16:46:30',1,30003632,18,26,35,21,19,17,24,18,11,13,25,15,7,10,8,3,12,10,3,11,3,5,12,10),(259,'2015-03-10 21:49:29','2015-10-11 16:46:30',1,30000534,9,17,16,7,6,4,2,5,9,8,6,8,15,3,15,23,12,13,21,12,9,7,19,15),(260,'2015-03-10 21:49:29','2015-10-11 16:46:30',1,30003329,26,21,46,38,34,28,69,28,32,24,21,13,11,45,11,13,7,12,10,42,22,16,19,30),(261,'2015-03-10 21:49:29','2015-10-11 16:46:30',1,30004387,7,11,4,4,4,10,4,8,13,0,1,0,1,2,2,3,5,7,1,3,1,1,3,1),(262,'2015-03-10 21:49:29','2015-10-11 16:46:30',1,30004722,34,45,27,43,32,50,30,26,70,71,47,51,39,48,60,85,68,46,36,39,63,125,110,31),(263,'2015-03-10 21:49:29','2015-10-11 16:46:30',1,30004786,2,5,0,6,0,0,0,7,5,7,4,9,6,6,9,6,12,3,8,3,2,3,10,0),(264,'2015-03-10 21:49:29','2015-10-11 16:46:30',1,30001841,5,5,4,5,1,4,4,2,4,4,6,6,8,5,6,2,4,10,1,3,2,1,1,1),(265,'2015-03-10 21:49:29','2015-10-11 16:46:30',1,30004668,8,7,6,4,3,4,8,16,3,8,15,21,16,18,15,18,18,14,16,11,9,6,10,13),(266,'2015-03-10 21:49:29','2015-10-11 16:46:30',1,30003642,7,4,4,1,5,6,2,0,3,1,1,3,3,13,5,6,1,6,2,0,0,2,6,4),(267,'2015-03-10 21:49:29','2015-10-11 16:46:30',1,30004517,14,9,24,16,9,10,17,19,24,11,15,2,5,39,74,70,29,27,3,4,7,23,33,22),(268,'2015-03-10 21:49:29','2015-10-11 16:46:30',1,30002919,3,4,23,2,5,4,3,13,7,8,11,8,9,1,7,6,4,2,1,4,1,3,3,11),(269,'2015-03-10 21:49:29','2015-10-11 16:46:30',1,30004928,14,44,57,38,31,19,10,11,10,13,12,10,10,24,18,10,10,15,7,8,9,28,27,12),(270,'2015-03-10 21:49:29','2015-10-11 16:46:30',1,30003312,19,11,27,5,10,3,8,10,2,21,19,9,13,29,37,36,14,4,16,6,9,10,19,14),(271,'2015-03-10 21:49:29','2015-10-11 16:46:30',1,30001157,58,40,79,69,37,26,44,39,66,182,196,187,112,206,203,300,101,143,197,109,169,142,233,121),(272,'2015-03-10 21:49:29','2015-10-11 16:46:30',1,30001947,3,1,6,3,7,4,3,6,1,6,10,6,6,2,7,12,5,9,1,3,4,4,6,3),(273,'2015-03-10 21:49:29','2015-10-11 16:46:30',1,30001868,23,8,20,19,15,11,8,8,8,52,279,192,41,38,53,55,46,32,17,17,24,53,43,404),(274,'2015-03-10 21:49:29','2015-10-11 16:46:30',1,30000535,1,0,0,0,0,0,0,0,0,2,4,1,1,2,1,4,1,0,0,0,1,1,1,0),(275,'2015-03-10 21:49:29','2015-10-11 16:46:30',1,30004632,22,10,12,11,10,8,4,3,12,21,5,7,9,16,20,26,17,13,27,27,23,29,17,19),(276,'2015-03-10 21:49:29','2015-10-11 16:46:30',1,30000829,3,2,5,1,1,3,4,2,11,3,1,3,4,6,5,3,6,18,2,14,4,7,8,5),(277,'2015-03-10 21:49:29','2015-10-11 16:46:30',1,30002444,26,26,15,38,26,16,30,8,18,26,22,29,26,26,17,17,27,12,9,16,23,134,67,33),(278,'2015-03-10 21:49:29','2015-10-11 16:46:30',1,30004766,112,26,22,2,3,3,5,8,39,44,40,23,19,46,44,40,58,21,12,15,41,59,53,43),(279,'2015-03-10 21:49:29','2015-10-11 16:46:30',1,30001281,30,29,16,20,54,54,40,14,11,27,48,73,68,19,93,97,33,8,21,53,104,17,18,16),(280,'2015-03-10 21:49:29','2015-10-11 16:46:30',1,30000798,43,9,44,14,34,36,17,31,15,4,4,10,5,6,9,7,11,11,0,0,1,5,8,8),(281,'2015-03-10 21:49:29','2015-10-11 16:46:30',1,30004000,1,0,1,1,0,1,2,1,0,2,6,16,14,5,3,8,4,0,0,4,2,3,0,3),(282,'2015-03-10 21:49:29','2015-03-10 21:49:29',1,30000428,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(283,'2015-03-10 21:49:29','2015-10-11 16:46:30',1,30003786,70,91,70,43,47,89,52,31,34,52,66,73,53,44,69,71,64,58,30,39,59,58,46,78),(284,'2015-03-10 21:49:29','2015-10-11 16:46:30',1,30004036,2,1,0,1,3,1,2,1,0,1,0,6,6,0,3,1,0,1,2,1,2,0,1,1),(285,'2015-03-10 21:49:29','2015-10-11 16:46:30',1,30003609,8,7,17,11,9,9,16,4,11,5,7,6,7,7,11,14,3,5,4,3,2,2,3,9),(286,'2015-03-10 21:49:29','2015-03-10 21:49:29',1,30001474,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(287,'2015-03-10 21:49:29','2015-10-11 16:46:30',1,30001553,3,4,13,3,7,5,1,5,2,3,3,3,1,8,0,0,6,12,0,2,8,9,9,8),(288,'2015-03-10 21:49:29','2015-10-11 16:46:30',1,30004390,66,30,23,26,50,47,19,48,28,39,29,55,53,32,21,29,18,12,15,38,18,18,16,15),(289,'2015-03-10 21:49:29','2015-10-11 16:46:30',1,30004900,1,1,0,1,2,2,2,0,1,3,0,2,2,1,2,1,1,0,0,1,2,0,1,5),(290,'2015-03-10 21:49:29','2015-10-11 16:46:30',1,30002302,5,6,10,2,4,5,10,4,1,7,26,147,50,6,8,10,3,1,1,17,3,8,7,5),(291,'2015-03-10 21:49:29','2015-10-11 16:46:30',1,30000876,1,5,11,23,7,3,1,13,12,6,6,3,4,0,0,0,2,0,4,1,4,2,3,7),(292,'2015-03-10 21:49:29','2015-10-11 16:46:30',1,30001200,30,23,26,26,21,27,47,23,36,232,214,42,42,296,361,359,49,133,67,96,136,220,170,126),(293,'2015-03-10 21:49:29','2015-10-11 16:46:30',1,30003748,169,154,191,56,60,95,90,38,66,129,140,139,101,430,103,72,58,73,53,202,831,95,71,65),(294,'2015-03-10 21:49:29','2015-10-11 16:46:30',1,30002325,0,4,2,1,0,1,0,1,0,0,0,0,0,0,0,0,1,0,0,0,0,1,2,2),(295,'2015-03-10 21:49:29','2015-10-11 16:46:30',1,30004520,2,8,4,14,12,10,7,4,4,5,4,6,6,19,6,2,7,23,6,1,2,3,17,1),(296,'2015-03-10 21:49:29','2015-10-11 16:46:30',1,30000228,13,34,13,20,22,33,28,20,18,2,2,8,8,4,6,11,7,15,9,1,15,15,16,6),(297,'2015-03-10 21:49:29','2015-10-11 16:46:30',1,30002357,18,17,16,21,23,21,8,2,0,0,0,0,0,2,0,0,0,1,0,2,4,2,1,3),(298,'2015-03-10 21:49:29','2015-10-11 16:46:30',1,30002937,12,13,18,4,8,7,6,5,6,6,5,14,13,13,7,8,7,3,6,2,3,7,8,9),(299,'2015-03-10 21:49:29','2015-10-11 16:46:30',1,30003781,76,76,69,47,40,89,58,37,48,117,110,87,63,86,140,135,77,65,40,49,68,68,94,91),(300,'2015-03-10 21:49:29','2015-10-11 16:46:30',1,30004403,6,8,6,14,6,4,17,3,3,2,1,0,0,5,1,1,2,8,11,26,2,1,2,1),(301,'2015-03-10 21:49:29','2015-10-11 16:46:30',1,30003322,25,20,42,21,13,18,22,16,21,10,12,15,10,27,33,26,22,21,13,11,18,32,44,10),(302,'2015-03-10 21:49:29','2015-10-11 16:46:30',1,30004419,73,14,21,20,38,34,12,16,45,13,14,15,14,37,29,34,28,35,37,64,37,68,26,36),(303,'2015-03-10 21:49:29','2015-10-11 16:46:30',1,30004808,190,16,15,30,20,15,22,66,43,15,43,27,20,33,26,33,23,14,10,32,35,19,18,14),(304,'2015-03-10 21:49:29','2015-10-11 16:46:30',1,30005166,0,2,0,2,5,3,3,12,3,4,4,4,6,1,9,11,1,9,0,2,6,1,3,2),(305,'2015-03-10 21:49:29','2015-10-11 16:46:30',1,30003324,12,10,3,18,21,18,40,5,16,11,12,13,8,14,10,7,8,19,37,24,27,11,12,110),(306,'2015-03-10 21:49:29','2015-10-11 16:46:30',1,30002917,20,5,15,6,13,10,9,9,7,33,38,44,37,24,37,20,20,19,13,12,17,13,13,49),(307,'2015-03-10 21:49:29','2015-10-11 16:46:30',1,30004951,25,11,43,20,12,9,21,12,22,40,33,8,5,27,24,49,5,10,7,31,21,18,16,19),(308,'2015-03-10 21:49:29','2015-10-11 16:46:30',1,30004682,18,8,8,15,17,11,12,15,10,20,38,25,15,15,25,28,9,8,3,5,24,21,26,23),(309,'2015-03-10 21:49:29','2015-10-11 16:46:30',1,30000590,0,2,4,1,0,0,0,1,2,9,4,0,0,5,14,10,2,3,1,0,1,6,4,4),(310,'2015-03-10 21:49:29','2015-10-11 16:46:30',1,30004868,1,8,6,8,6,5,1,15,5,6,2,4,1,2,7,8,8,1,4,1,8,1,10,10),(311,'2015-03-10 21:49:29','2015-10-11 16:46:30',1,30002921,45,48,168,118,50,53,36,40,83,56,70,46,63,88,126,108,88,30,145,147,57,64,65,71),(312,'2015-03-10 21:49:29','2015-10-11 16:46:30',1,30000733,1,5,7,2,3,1,2,2,4,0,0,0,1,1,0,2,2,0,0,2,3,1,1,2),(313,'2015-03-10 21:49:29','2015-10-11 16:46:30',1,30002486,3,2,1,3,2,2,7,4,3,4,3,4,4,2,1,1,2,1,1,2,3,2,6,1),(314,'2015-03-10 21:49:29','2015-10-11 16:46:30',1,30002938,90,55,67,54,53,42,77,90,94,51,63,39,31,39,55,53,51,25,16,30,40,45,33,37),(315,'2015-03-10 21:49:29','2015-10-11 16:46:30',1,30000782,29,12,35,14,27,26,15,9,19,6,6,12,8,8,11,10,5,5,0,14,4,3,6,7),(316,'2015-03-10 21:49:29','2015-10-11 16:46:30',1,30002449,28,15,13,24,28,28,18,6,14,32,31,48,42,8,24,19,26,29,12,13,21,62,40,16),(317,'2015-03-10 21:49:29','2015-10-11 16:46:30',1,30002011,273,12,14,12,9,3,13,4,6,3,5,7,16,2,11,18,15,13,8,22,33,17,17,11),(318,'2015-03-10 21:49:29','2015-10-11 16:46:30',1,30003191,26,8,86,9,10,8,14,17,6,6,7,3,2,6,8,4,4,4,7,14,7,12,11,7),(319,'2015-03-10 21:49:29','2015-10-11 16:46:30',1,30004555,26,36,47,32,23,26,18,14,38,179,145,41,46,420,32,20,46,46,60,96,237,39,48,16),(320,'2015-03-10 21:49:29','2015-10-11 16:46:30',1,30004628,2,0,0,2,3,3,2,9,4,84,125,1,30,0,11,11,1,1,7,1,3,5,2,3),(321,'2015-03-10 21:49:29','2015-10-11 16:46:30',1,30001260,13,96,25,15,23,19,12,16,42,28,22,25,30,76,20,22,37,39,49,31,89,65,57,25),(322,'2015-03-10 21:49:29','2015-10-11 16:46:30',1,30005149,6,12,1,5,4,5,0,0,10,1,0,1,4,0,0,1,4,1,0,5,0,7,5,2),(323,'2015-03-10 21:49:29','2015-10-11 16:46:30',1,30004014,9,12,12,9,19,18,1,0,8,9,7,9,10,21,15,16,13,6,6,9,13,17,21,15),(324,'2015-03-10 21:49:29','2015-10-11 16:46:30',1,30000730,7,11,21,2,3,3,2,6,6,23,15,18,16,6,7,9,4,9,13,8,10,3,7,5),(325,'2015-03-10 21:49:29','2015-10-11 16:46:30',1,30004317,12,6,23,1,16,24,3,10,16,7,16,14,9,4,23,15,6,5,2,4,3,3,4,9),(326,'2015-03-10 21:49:29','2015-10-11 16:46:30',1,30001318,3,5,2,3,1,1,2,1,2,3,3,3,6,0,1,1,1,3,2,4,2,3,3,1),(327,'2015-03-10 21:49:29','2015-10-11 16:46:30',1,30002015,64,28,39,41,33,29,93,17,15,19,9,15,12,29,16,17,19,27,38,16,57,18,23,13),(328,'2015-03-10 21:49:29','2015-10-11 16:46:30',1,30004360,4,7,6,26,14,14,51,30,29,2,2,9,7,4,5,10,9,3,9,4,4,2,10,4),(329,'2015-03-10 21:49:29','2015-10-11 16:46:30',1,30000718,39,28,60,47,67,68,44,33,15,53,48,28,36,156,165,85,68,22,66,97,110,136,96,29),(330,'2015-03-10 21:49:29','2015-10-11 16:46:30',1,30002441,2,9,4,8,16,12,7,3,8,6,7,6,7,3,4,2,7,10,16,25,6,7,6,12),(331,'2015-03-10 21:49:29','2015-10-11 16:46:30',1,30000576,55,30,47,29,27,24,43,14,30,1,1,0,0,1,0,6,0,5,3,0,1,0,0,2),(332,'2015-03-10 21:49:29','2015-10-11 16:46:30',1,30004553,24,24,52,24,21,28,20,8,33,170,176,48,42,315,28,14,43,33,42,51,158,24,39,13),(333,'2015-03-10 21:49:29','2015-10-11 16:46:30',1,30002144,3,0,2,0,3,3,1,1,2,3,2,0,1,0,0,2,0,1,0,0,0,0,0,3),(334,'2015-03-10 21:49:29','2015-10-11 16:46:30',1,30004007,18,1,6,1,21,19,3,2,21,11,5,3,1,32,10,10,0,1,1,1,1,0,0,0),(335,'2015-03-10 21:49:29','2015-10-11 16:46:30',1,30000240,36,17,23,38,35,24,50,25,63,13,37,16,20,48,41,39,28,25,30,53,18,68,40,19),(336,'2015-03-10 21:49:29','2015-03-10 21:49:29',1,30000431,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(337,'2015-03-10 21:49:29','2015-10-11 16:46:30',1,30004828,0,2,7,1,7,4,6,0,1,1,0,2,1,0,1,0,0,3,4,2,2,2,0,1),(338,'2015-03-10 21:49:29','2015-10-11 16:46:30',1,30003366,3,4,0,0,2,4,3,4,5,0,3,1,1,3,0,1,0,0,1,0,1,2,1,1),(339,'2015-03-10 21:49:29','2015-10-11 16:46:30',1,30005121,1,1,12,9,7,0,0,1,0,1,0,2,1,0,2,5,0,0,0,0,0,3,0,0),(340,'2015-03-10 21:49:29','2015-10-11 16:46:30',1,30002613,8,2,5,8,13,2,3,0,4,5,3,8,11,10,48,10,11,8,3,19,5,5,4,17),(341,'2015-03-10 21:49:29','2015-10-11 16:46:30',1,30000582,4,11,2,1,0,1,0,1,0,2,3,4,2,0,3,3,9,2,11,0,2,34,40,7),(342,'2015-03-10 21:49:29','2015-10-11 16:46:30',1,30003105,14,17,12,15,8,5,17,11,22,36,22,28,20,88,94,93,50,47,36,35,93,72,48,70),(343,'2015-03-10 21:49:29','2015-10-11 16:46:30',1,30004811,7,4,14,23,17,12,22,58,8,11,7,17,15,21,19,14,11,13,12,19,19,15,16,15),(344,'2015-03-10 21:49:29','2015-10-11 16:46:30',1,30004165,18,10,13,17,10,3,6,3,5,19,32,10,10,8,11,9,2,7,6,1,3,4,3,8),(345,'2015-03-10 21:49:29','2015-10-11 16:46:30',1,30002344,1,8,2,4,7,9,1,11,1,5,5,14,9,12,7,5,6,24,21,29,14,9,6,5),(346,'2015-03-10 21:49:29','2015-10-11 16:46:30',1,30001867,30,9,23,10,5,5,5,3,5,42,266,182,45,23,39,41,37,31,13,11,20,47,40,100),(347,'2015-03-10 21:49:29','2015-10-11 16:46:30',1,30001894,13,5,16,9,7,4,5,10,9,16,21,32,37,32,42,51,37,21,19,22,18,43,22,54),(348,'2015-03-10 21:49:29','2015-10-11 16:46:30',1,30002864,8,15,10,3,9,18,19,6,5,4,6,5,5,1,2,2,5,1,0,1,2,7,4,5),(349,'2015-03-10 21:49:29','2015-10-11 16:46:30',1,30004224,0,0,0,0,0,0,0,11,1,0,0,2,1,0,2,0,0,0,1,1,0,1,0,0),(350,'2015-03-10 21:49:29','2015-10-11 16:46:30',1,30001349,12,9,24,7,8,9,7,7,7,7,13,6,6,13,12,10,10,9,6,14,27,9,15,5),(351,'2015-03-10 21:49:29','2015-10-11 16:46:30',1,30002350,17,7,9,7,3,5,10,5,4,7,3,2,4,13,10,7,13,7,6,5,33,7,3,12),(352,'2015-03-10 21:49:29','2015-10-11 16:46:30',1,30001340,0,1,2,3,1,1,2,0,1,5,9,4,4,4,5,3,0,1,0,1,2,0,2,1),(353,'2015-03-10 21:49:29','2015-10-11 16:46:30',1,30002941,23,31,30,13,19,20,14,24,43,26,21,13,7,9,29,29,15,8,6,8,5,8,8,19),(354,'2015-03-10 21:49:29','2015-10-11 16:46:30',1,30002616,3,0,6,4,6,0,4,1,2,0,4,7,5,0,0,0,7,1,0,9,0,6,6,16),(355,'2015-03-10 21:49:29','2015-10-11 16:46:30',1,30003131,32,20,14,15,40,38,34,22,24,25,24,24,46,59,200,185,23,21,25,34,35,46,44,28),(356,'2015-03-10 21:49:29','2015-10-11 16:46:30',1,30004878,104,50,54,38,77,70,90,45,47,74,50,41,26,50,47,64,51,34,12,133,163,49,65,59),(357,'2015-03-10 21:49:29','2015-10-11 16:46:30',1,30000255,4,11,16,27,20,5,20,2,0,9,9,6,14,6,14,13,9,9,10,5,5,14,14,7),(358,'2015-03-10 21:49:29','2015-10-11 16:46:30',1,30004949,15,8,6,7,10,9,20,11,7,10,13,11,8,16,10,7,17,7,4,10,11,12,15,20),(359,'2015-03-10 21:49:29','2015-10-11 16:46:30',1,30000251,8,37,18,15,18,11,26,7,16,8,13,19,19,12,17,16,17,8,17,9,4,19,15,23),(360,'2015-03-10 21:49:29','2015-10-11 16:46:30',1,30004009,70,108,15,25,25,27,6,22,43,25,35,34,33,95,20,23,36,36,38,17,45,35,38,17),(361,'2015-03-10 21:49:29','2015-10-11 16:46:30',1,30003708,156,143,212,52,47,93,65,22,71,141,113,96,68,447,106,72,54,53,83,215,466,83,53,46),(362,'2015-03-10 21:49:29','2015-10-11 16:46:30',1,30005165,0,3,1,0,0,0,0,1,0,0,0,0,0,0,1,1,0,1,0,0,0,0,0,0),(363,'2015-03-10 21:49:29','2015-10-11 16:46:30',1,30004188,3,5,1,10,4,7,16,4,8,17,19,15,13,2,14,10,13,11,1,0,0,40,55,20),(364,'2015-03-10 21:49:29','2015-10-11 16:46:30',1,30001882,17,2,6,0,6,3,6,0,3,9,11,25,17,3,8,4,9,5,4,6,17,11,7,9),(365,'2015-03-10 21:49:29','2015-10-11 16:46:30',1,30004415,5,0,1,1,0,0,1,5,6,1,1,1,1,2,1,2,2,0,0,0,0,0,1,1),(366,'2015-03-10 21:49:29','2015-10-11 16:46:30',1,30001815,3,7,11,6,9,7,5,0,12,35,33,42,15,20,26,42,12,14,7,12,20,31,27,16),(367,'2015-03-10 21:49:29','2015-10-11 16:46:30',1,30003706,199,86,102,87,105,139,88,56,120,372,316,99,78,433,178,207,93,96,224,227,483,77,106,108),(368,'2015-03-10 21:49:29','2015-10-11 16:46:30',1,30004504,36,33,19,27,13,15,23,29,23,30,29,48,42,31,37,49,61,31,21,28,16,23,23,19),(369,'2015-03-10 21:49:29','2015-03-10 21:49:29',1,30000376,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(370,'2015-03-10 21:49:29','2015-10-11 16:46:30',1,30000795,10,6,12,4,6,11,23,7,11,5,4,6,12,13,14,6,6,21,4,6,6,1,2,2),(371,'2015-03-10 21:49:29','2015-10-11 16:46:30',1,30002469,1,6,5,16,9,10,6,5,6,3,3,11,14,2,0,1,16,5,1,7,4,7,5,1),(372,'2015-03-10 21:49:29','2015-10-11 16:46:30',1,30001578,8,3,10,8,11,19,2,1,0,4,2,0,0,0,0,0,0,5,9,1,0,0,0,0),(373,'2015-03-10 21:49:29','2015-10-11 16:46:30',1,30000749,0,0,4,1,0,0,0,1,7,0,1,2,3,5,2,2,6,3,2,0,0,1,3,1),(374,'2015-03-10 21:49:29','2015-10-11 16:46:30',1,30004384,24,40,23,25,22,26,23,38,15,19,27,13,8,25,21,27,31,31,11,25,19,18,22,27),(375,'2015-03-10 21:49:29','2015-10-11 16:46:30',1,30002154,3,5,1,2,0,4,4,0,5,1,0,2,4,5,3,6,5,2,0,16,31,8,8,2),(376,'2015-03-10 21:49:29','2015-10-11 16:46:30',1,30000701,3,4,2,2,0,2,0,0,1,2,3,2,7,5,3,6,4,9,0,0,2,7,9,6),(377,'2015-03-10 21:49:29','2015-10-11 16:46:30',1,30005159,4,7,6,7,17,14,5,14,9,20,20,15,11,3,18,22,1,18,0,5,9,9,14,5),(378,'2015-03-10 21:49:29','2015-10-11 16:46:30',1,30000536,8,20,11,3,2,5,0,1,8,5,4,6,6,6,10,18,78,12,120,31,13,4,12,4),(379,'2015-03-10 21:49:29','2015-10-11 16:46:30',1,30005154,6,8,13,9,5,5,5,5,3,8,5,4,3,8,16,15,13,14,18,12,10,13,11,23),(380,'2015-03-10 21:49:29','2015-03-10 21:49:29',1,30000361,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(381,'2015-03-10 21:49:29','2015-10-11 16:46:30',1,30001858,39,20,27,18,13,17,27,21,15,123,295,273,144,98,126,109,105,128,21,27,81,237,100,165),(382,'2015-03-10 21:49:29','2015-10-11 16:46:30',1,30004216,3,2,3,0,0,0,1,0,4,2,1,0,2,8,7,2,2,1,0,4,1,1,1,4),(383,'2015-03-10 21:49:29','2015-10-11 16:46:30',1,30000239,15,7,9,17,7,4,15,9,22,2,20,4,5,12,12,14,7,5,12,24,6,10,9,5),(384,'2015-03-10 21:49:29','2015-10-11 16:46:30',1,30001785,0,1,4,7,2,1,0,2,0,6,5,0,0,2,0,0,0,2,0,0,1,3,7,9),(385,'2015-03-10 21:49:29','2015-10-11 16:46:30',1,30001558,4,9,0,1,2,2,2,1,0,9,8,5,3,12,1,2,4,15,3,2,10,4,2,11),(386,'2015-03-10 21:49:29','2015-10-11 16:46:30',1,30004661,5,13,7,9,11,7,11,4,4,56,67,29,40,41,276,173,123,13,31,355,185,5,7,17),(387,'2015-03-10 21:49:29','2015-10-11 16:46:30',1,30001844,7,6,13,3,19,22,6,3,5,21,20,4,10,14,18,18,29,18,3,10,25,22,14,13),(388,'2015-03-10 21:49:29','2015-10-11 16:46:30',1,30001869,13,5,18,11,9,6,4,5,6,19,17,20,26,34,34,39,37,22,15,20,22,46,35,58),(389,'2015-03-10 21:49:29','2015-10-11 16:46:30',1,30004716,11,2,29,3,7,9,12,9,18,162,59,161,42,58,71,59,44,51,29,33,59,12,18,13),(390,'2015-03-10 21:49:29','2015-10-11 16:46:30',1,30002495,4,3,4,0,1,1,2,0,1,2,3,7,8,5,15,5,2,6,0,4,3,4,2,7),(391,'2015-03-10 21:49:29','2015-10-11 16:46:30',1,30003351,43,27,15,29,38,32,48,16,30,67,99,41,40,26,27,10,17,14,3,42,33,58,50,13),(392,'2015-03-10 21:49:29','2015-10-11 16:46:30',1,30000818,2,1,3,20,23,22,2,0,2,4,6,2,4,2,0,0,4,2,0,12,1,1,2,2),(393,'2015-03-10 21:49:29','2015-10-11 16:46:30',1,30002297,15,13,5,4,7,10,12,10,8,1,4,5,7,3,2,2,2,2,3,2,2,3,7,2),(394,'2015-03-10 21:49:29','2015-10-11 16:46:30',1,30004206,14,16,18,17,12,14,6,5,5,1,3,3,3,18,7,8,8,8,1,16,44,11,12,49),(395,'2015-03-10 21:49:29','2015-10-11 16:46:30',1,30001201,0,5,1,3,1,1,2,1,0,4,8,4,7,6,9,10,3,28,95,10,4,29,30,3),(396,'2015-03-10 21:49:29','2015-10-11 16:46:30',1,30000976,0,0,2,2,2,1,5,0,1,2,1,0,0,0,3,2,5,0,3,0,0,1,0,2),(397,'2015-03-10 21:49:29','2015-10-11 16:46:30',1,30000776,2,0,3,16,12,14,3,5,1,0,0,2,2,1,0,0,0,0,0,1,0,1,0,1),(398,'2015-03-10 21:49:29','2015-10-11 16:46:30',1,30002944,24,10,21,22,29,32,24,64,38,33,40,10,6,7,31,29,9,4,1,6,19,23,16,10),(399,'2015-03-10 21:49:29','2015-10-11 16:46:30',1,30001251,11,33,41,75,27,16,41,8,22,32,36,33,31,42,57,58,42,73,32,21,66,57,42,19),(400,'2015-03-10 21:49:29','2015-10-11 16:46:30',1,30000455,24,15,16,22,26,19,45,16,18,47,72,106,103,78,151,126,73,125,10,24,24,148,126,78),(401,'2015-03-10 21:49:29','2015-10-11 16:46:30',1,30002456,10,9,4,7,10,7,8,5,1,0,3,19,20,2,7,5,6,9,0,5,1,1,4,1),(402,'2015-03-10 21:49:29','2015-10-11 16:46:30',1,30004746,31,22,3,0,1,1,4,2,13,26,31,19,15,45,36,38,44,26,13,13,25,32,39,31),(403,'2015-03-10 21:49:29','2015-10-11 16:46:30',1,30001828,9,21,8,26,19,20,10,1,3,0,4,2,0,0,1,3,6,7,1,0,5,3,5,3),(404,'2015-03-10 21:49:29','2015-10-11 16:46:30',1,30002585,30,10,10,29,8,6,21,11,33,13,11,3,7,44,14,40,26,14,14,22,183,9,10,17),(405,'2015-03-10 21:49:29','2015-10-11 16:46:30',1,30001149,1,0,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0),(406,'2015-03-10 21:49:29','2015-10-11 16:46:30',1,30002625,10,0,12,8,10,5,4,9,4,0,0,4,6,1,10,3,3,1,1,0,5,0,1,1),(407,'2015-03-10 21:49:29','2015-10-11 16:46:30',1,30001300,7,29,11,12,4,3,9,6,5,16,28,13,17,21,64,32,6,12,8,4,14,14,9,13),(408,'2015-03-10 21:49:29','2015-10-11 16:46:30',1,30001335,2,1,1,3,1,0,0,1,0,2,1,6,7,1,0,0,1,3,1,2,1,4,4,3),(409,'2015-03-10 21:49:29','2015-10-11 16:46:30',1,30000630,23,0,2,19,5,3,1,1,0,4,1,5,8,6,2,2,2,5,3,3,2,2,2,3),(410,'2015-03-10 21:49:29','2015-10-11 16:46:30',1,30004221,0,0,1,0,4,4,3,0,2,0,0,0,0,0,0,0,0,0,0,11,2,5,4,0),(411,'2015-03-10 21:49:29','2015-03-10 21:49:29',1,30000415,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(412,'2015-03-10 21:49:29','2015-03-10 21:49:29',1,30001512,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(413,'2015-03-10 21:49:29','2015-10-11 16:46:30',1,30002889,27,12,73,10,13,8,7,12,10,140,57,105,29,238,43,261,59,10,14,17,82,37,146,30),(414,'2015-03-10 21:49:29','2015-10-11 16:46:30',1,30002461,5,4,2,10,3,4,4,2,3,2,2,3,4,0,2,2,2,6,0,3,6,9,8,7),(415,'2015-03-10 21:49:29','2015-10-11 16:46:30',1,30004736,8,15,3,2,4,5,8,8,13,142,58,205,168,94,204,65,55,41,28,37,59,29,30,8),(416,'2015-03-10 21:49:29','2015-10-11 16:46:30',1,30001940,6,9,2,0,6,5,8,11,3,2,4,12,13,9,14,9,10,16,6,11,4,5,3,8),(417,'2015-03-10 21:49:29','2015-10-11 16:46:30',1,30004673,8,4,1,4,2,3,5,11,3,5,7,7,4,9,9,7,6,9,12,12,2,4,11,7),(418,'2015-03-10 21:49:29','2015-10-11 16:46:30',1,30000646,15,7,14,9,13,10,7,2,6,21,22,128,70,14,17,9,10,25,12,12,10,17,16,18),(419,'2015-03-10 21:49:29','2015-10-11 16:46:30',1,30004391,16,4,7,6,18,9,10,10,9,18,7,17,10,12,4,4,1,4,6,7,3,1,4,3),(420,'2015-03-10 21:49:29','2015-10-11 16:46:30',1,30000762,52,5,14,13,11,8,6,7,35,30,17,4,7,5,8,9,17,15,2,12,6,6,8,5),(421,'2015-03-10 21:49:29','2015-10-11 16:46:30',1,30004166,2,2,2,3,3,5,3,9,8,0,1,0,0,0,1,0,1,1,1,1,0,0,0,0),(422,'2015-03-10 21:49:29','2015-10-11 16:46:30',1,30004789,3,2,0,8,0,0,0,2,9,21,16,12,17,9,20,24,25,15,4,9,11,10,6,10),(423,'2015-03-10 21:49:29','2015-10-11 16:46:30',1,30003310,2,1,2,1,0,1,1,5,3,1,2,2,2,2,0,0,1,0,2,1,0,1,0,3),(424,'2015-03-10 21:49:29','2015-10-11 16:46:30',1,30003214,3,11,7,5,8,23,7,8,6,3,6,2,3,2,1,0,1,0,0,0,2,1,0,1),(425,'2015-03-10 21:49:29','2015-10-11 16:46:30',1,30003111,1,1,1,1,2,2,2,2,2,2,2,6,5,25,2,4,4,3,2,1,3,1,4,1),(426,'2015-03-10 21:49:29','2015-10-11 16:46:30',1,30001972,11,23,11,10,6,10,8,9,9,2,0,1,0,3,3,5,3,1,7,2,2,8,4,5),(427,'2015-03-10 21:49:29','2015-10-11 16:46:30',1,30001101,0,0,0,0,2,2,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,1,1,0),(428,'2015-03-10 21:49:29','2015-10-11 16:46:30',1,30004774,6,5,4,2,4,5,9,17,8,175,99,248,194,137,227,106,93,66,41,46,79,21,20,14),(429,'2015-03-10 21:49:29','2015-10-11 16:46:30',1,30004670,2,3,2,0,0,2,1,2,1,3,7,7,8,5,5,4,9,5,2,2,6,1,4,5),(430,'2015-03-10 21:49:29','2015-10-11 16:46:30',1,30004573,13,16,15,18,9,10,7,13,21,49,49,66,37,373,28,24,25,20,36,67,33,27,31,19),(431,'2015-03-10 21:49:29','2015-10-11 16:46:30',1,30003290,17,13,4,5,10,10,5,5,2,7,8,3,6,12,6,8,5,6,9,3,6,6,15,5),(432,'2015-03-10 21:49:29','2015-10-11 16:46:30',1,30003321,14,19,59,30,23,23,45,12,14,14,19,12,8,14,12,9,12,21,10,8,30,42,55,16),(433,'2015-03-10 21:49:29','2015-10-11 16:46:30',1,30003267,0,2,15,2,2,1,1,4,0,0,0,0,0,0,5,0,3,3,0,0,0,1,0,1),(434,'2015-03-10 21:49:29','2015-10-11 16:46:30',1,30004412,13,0,5,6,2,5,2,10,20,10,5,5,2,7,11,10,11,5,0,2,2,0,3,7),(435,'2015-03-10 21:49:29','2015-10-11 16:46:30',1,30004455,3,4,5,12,11,15,4,5,23,4,3,13,17,6,22,14,29,17,20,7,25,8,5,10),(436,'2015-03-10 21:49:29','2015-10-11 16:46:30',1,30004039,13,21,22,23,27,12,22,7,15,13,9,18,14,5,9,10,8,11,10,7,15,29,21,19),(437,'2015-03-10 21:49:29','2015-10-11 16:46:30',1,30000705,1,2,1,7,3,3,3,12,6,3,6,4,3,4,1,2,1,1,0,0,3,4,4,1),(438,'2015-03-10 21:49:29','2015-10-11 16:46:30',1,30001241,7,2,2,4,4,3,5,2,2,25,35,50,36,41,26,30,46,21,32,53,33,46,45,52),(439,'2015-03-10 21:49:29','2015-10-11 16:46:30',1,30004865,0,2,0,0,2,1,0,0,0,2,1,1,1,1,2,2,2,1,0,2,2,3,2,1),(440,'2015-03-10 21:49:29','2015-10-11 16:46:30',1,30003630,55,43,17,20,7,11,37,10,18,8,9,5,7,26,7,8,6,13,11,0,3,15,23,11),(441,'2015-03-10 21:49:29','2015-10-11 16:46:30',1,30004374,7,1,6,5,4,7,1,1,4,6,5,2,2,21,8,9,9,4,7,5,7,3,4,8),(442,'2015-03-10 21:49:29','2015-03-10 21:49:29',1,30001478,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(443,'2015-03-10 21:49:29','2015-10-11 16:46:30',1,30003302,7,12,26,2,13,18,0,18,6,4,3,1,1,1,10,13,7,0,9,2,1,10,13,3),(444,'2015-03-10 21:49:29','2015-10-11 16:46:30',1,30005151,9,9,30,16,14,8,36,6,7,9,14,20,19,17,39,32,6,7,32,44,6,35,24,6),(445,'2015-03-10 21:49:29','2015-10-11 16:46:30',1,30002883,3,1,2,2,1,1,1,0,1,4,8,24,7,3,5,1,2,2,2,0,0,0,0,0),(446,'2015-03-10 21:49:29','2015-10-11 16:46:30',1,30003346,3,5,1,13,16,10,0,1,4,2,1,3,2,1,4,3,2,3,3,10,4,0,1,1),(447,'2015-03-10 21:49:29','2015-03-10 21:49:29',1,30001641,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(448,'2015-03-10 21:49:29','2015-10-11 16:46:30',1,30000912,6,14,15,15,11,16,12,5,4,9,13,7,8,18,21,12,9,14,4,5,7,14,13,3),(449,'2015-03-10 21:49:29','2015-10-11 16:46:30',1,30003354,1,8,1,5,6,5,4,8,10,11,9,4,8,3,26,9,3,5,0,27,8,6,4,0),(450,'2015-03-10 21:49:29','2015-10-11 16:46:30',1,30000453,2,0,4,2,1,0,3,2,2,7,11,15,10,36,44,36,26,14,25,20,54,26,4,16),(451,'2015-03-10 21:49:29','2015-10-11 16:46:30',1,30004344,19,40,22,36,31,34,29,44,44,10,27,21,33,14,17,28,25,16,15,22,14,18,19,22),(452,'2015-03-10 21:49:29','2015-10-11 16:46:30',1,30000989,3,10,9,9,3,8,6,1,4,3,4,3,2,1,4,4,0,4,9,10,22,11,7,0),(453,'2015-03-10 21:49:29','2015-10-11 16:46:30',1,30002480,13,4,6,4,5,3,3,8,5,4,4,1,4,9,4,2,7,2,1,2,1,9,6,3),(454,'2015-03-10 21:49:29','2015-03-10 21:49:29',1,30001480,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(455,'2015-03-10 21:49:29','2015-10-11 16:46:30',1,30000908,10,3,9,17,9,10,4,14,2,3,9,15,11,13,6,4,5,7,3,3,5,8,11,6),(456,'2015-03-10 21:49:29','2015-10-11 16:46:30',1,30004643,14,4,7,9,23,28,19,6,2,7,7,6,5,2,14,18,12,6,48,16,12,34,31,13),(457,'2015-03-10 21:49:29','2015-10-11 16:46:30',1,30003350,37,18,18,22,26,12,39,13,33,78,108,50,42,24,34,12,20,11,3,36,38,72,48,17),(458,'2015-03-10 21:49:29','2015-10-11 16:46:30',1,30001850,7,12,11,9,2,3,5,1,4,27,22,19,17,18,14,15,22,19,10,9,28,22,15,33),(459,'2015-03-10 21:49:29','2015-10-11 16:46:30',1,30004212,69,14,13,15,16,19,15,10,12,16,19,6,5,3,3,2,2,9,3,8,9,18,24,22),(460,'2015-03-10 21:49:29','2015-10-11 16:46:30',1,30004675,2,2,2,1,1,2,4,4,3,1,1,3,1,7,3,3,11,3,2,4,2,5,5,4),(461,'2015-03-10 21:49:29','2015-10-11 16:46:30',1,30001104,13,8,70,60,22,22,57,15,12,58,53,34,37,36,35,26,17,5,6,13,20,89,79,23),(462,'2015-03-10 21:49:29','2015-10-11 16:46:30',1,30004761,12,2,114,3,6,4,2,2,11,15,19,10,4,7,8,6,17,9,12,7,5,25,11,14),(463,'2015-03-10 21:49:29','2015-10-11 16:46:30',1,30000844,7,7,5,1,2,6,5,5,11,2,1,4,4,6,8,7,12,9,15,15,9,11,9,4),(464,'2015-03-10 21:49:29','2015-10-11 16:46:30',1,30000562,14,11,3,10,10,3,5,4,4,16,22,11,8,29,14,15,36,9,30,13,25,11,13,5),(465,'2015-03-10 21:49:29','2015-10-11 16:46:30',1,30000554,14,28,45,19,15,14,27,18,5,12,22,11,11,33,60,37,40,31,18,9,41,61,44,35),(466,'2015-03-10 21:49:29','2015-10-11 16:46:30',1,30004168,9,6,0,9,4,2,6,0,2,18,18,11,13,3,11,14,8,9,8,1,3,18,16,2),(467,'2015-03-10 21:49:29','2015-10-11 16:46:30',1,30001014,4,0,6,1,1,3,3,7,1,3,3,1,2,7,7,3,3,6,2,6,3,3,3,4),(468,'2015-03-10 21:49:29','2015-10-11 16:46:30',1,30004175,2,8,11,9,11,10,17,5,7,22,35,17,20,19,9,12,17,6,1,4,2,19,15,40),(469,'2015-03-10 21:49:29','2015-10-11 16:46:30',1,30004193,8,50,43,43,38,27,36,44,32,9,17,8,13,15,28,42,23,18,1,4,15,8,9,22),(470,'2015-03-10 21:49:29','2015-10-11 16:46:30',1,30004445,3,6,11,1,1,2,1,3,18,0,3,1,1,0,4,2,3,2,1,0,5,17,11,0),(471,'2015-03-10 21:49:29','2015-10-11 16:46:30',1,30000637,8,0,2,7,5,3,0,3,1,3,3,18,16,6,38,35,5,10,2,4,3,0,3,3),(472,'2015-03-10 21:49:29','2015-10-11 16:46:30',1,30002501,18,12,33,19,13,12,31,17,3,10,11,9,8,11,2,3,11,13,17,4,7,12,12,13),(473,'2015-03-10 21:49:29','2015-10-11 16:46:30',1,30000992,1,2,5,7,5,4,8,3,3,4,3,3,1,1,4,2,0,1,3,1,5,3,7,0),(474,'2015-03-10 21:49:29','2015-10-11 16:46:30',1,30002591,11,0,1,2,4,2,4,1,4,48,35,2,1,2,5,4,9,10,6,5,4,6,6,12),(475,'2015-03-10 21:49:29','2015-10-11 16:46:30',1,30000581,10,4,3,5,3,3,2,9,1,26,22,6,10,43,25,28,16,14,97,121,38,113,111,18),(476,'2015-03-10 21:49:29','2015-10-11 16:46:30',1,30004185,4,4,6,8,6,5,13,0,10,17,18,17,15,35,4,16,24,16,2,1,5,8,7,18),(477,'2015-03-10 21:49:29','2015-10-11 16:46:30',1,30000820,3,0,11,12,15,9,2,0,11,5,1,4,4,4,3,2,8,7,1,17,18,5,6,8),(478,'2015-03-10 21:49:29','2015-10-11 16:46:30',1,30003720,37,13,18,7,10,11,9,7,7,20,22,52,28,24,27,37,20,33,9,10,10,15,15,28),(479,'2015-03-10 21:49:29','2015-10-11 16:46:30',1,30002291,3,1,3,1,4,2,2,1,1,1,3,7,7,0,29,15,0,2,0,0,1,43,45,1),(480,'2015-03-10 21:49:29','2015-10-11 16:46:30',1,30001951,12,6,16,6,4,6,16,4,5,17,20,9,4,6,20,17,9,19,7,7,12,13,8,16),(481,'2015-03-10 21:49:29','2015-10-11 16:46:30',1,30000442,1,3,1,0,2,2,1,1,1,1,0,3,2,0,2,4,2,2,3,0,0,0,8,1),(482,'2015-03-10 21:49:29','2015-10-11 16:46:30',1,30003223,3,3,2,2,1,1,5,4,3,1,1,0,1,3,0,3,2,3,1,0,0,4,3,2),(483,'2015-03-10 21:49:29','2015-10-11 16:46:30',1,30003738,46,20,7,8,15,19,21,6,11,15,16,29,31,17,24,25,24,12,12,8,20,15,22,21),(484,'2015-03-10 21:49:29','2015-10-11 16:46:30',1,30003348,1,1,1,0,1,1,0,1,1,3,2,0,0,3,1,1,4,6,3,8,1,1,1,1),(485,'2015-03-10 21:49:29','2015-10-11 16:46:30',1,30001532,5,8,4,2,1,4,1,1,1,15,15,5,6,12,12,7,28,10,21,10,21,7,10,21),(486,'2015-03-10 21:49:29','2015-10-11 16:46:30',1,30004345,14,30,17,24,29,24,12,35,20,8,15,19,26,6,10,17,15,14,13,9,5,10,18,20),(487,'2015-03-10 21:49:29','2015-10-11 16:46:30',1,30000741,20,0,5,13,4,7,4,8,2,1,2,6,4,6,7,4,3,1,2,0,1,4,3,8),(488,'2015-03-10 21:49:29','2015-10-11 16:46:30',1,30000609,1,2,2,1,0,0,3,2,0,1,1,0,0,1,2,1,0,0,7,0,1,2,20,20),(489,'2015-03-10 21:49:29','2015-10-11 16:46:30',1,30000468,11,6,1,5,6,5,7,2,3,48,16,14,13,19,53,39,5,3,1,2,19,15,8,2),(490,'2015-03-10 21:49:29','2015-10-11 16:46:30',1,30004477,2,1,0,3,0,1,1,8,0,8,8,5,10,7,10,5,8,22,3,10,5,21,24,9),(491,'2015-03-10 21:49:29','2015-10-11 16:46:30',1,30000564,2,0,0,9,10,0,1,3,1,11,10,3,3,9,6,7,6,1,7,5,8,3,4,2),(492,'2015-03-10 21:49:29','2015-10-11 16:46:30',1,30004067,0,9,3,3,2,1,7,1,0,1,2,0,0,6,1,4,2,7,0,0,0,1,3,9),(493,'2015-03-10 21:49:29','2015-10-11 16:46:30',1,30002950,18,14,10,5,5,4,2,8,13,8,9,4,2,7,10,8,7,3,2,4,2,4,3,4),(494,'2015-03-10 21:49:29','2015-10-11 16:46:30',1,30005115,5,2,4,1,10,3,7,0,3,6,2,2,3,1,0,2,4,3,4,3,4,15,8,1),(495,'2015-03-10 21:49:29','2015-10-11 16:46:30',1,30000299,8,12,29,18,26,25,34,8,22,51,50,26,51,22,29,11,35,45,16,7,12,54,52,31),(496,'2015-03-10 21:49:29','2015-10-11 16:46:30',1,30002313,6,0,2,2,0,1,1,0,0,2,1,0,0,1,5,2,3,1,17,1,5,1,0,4),(497,'2015-03-10 21:49:29','2015-10-11 16:46:30',1,30004008,28,36,7,23,8,12,2,7,7,16,13,23,15,57,17,13,6,7,32,10,10,6,11,16),(498,'2015-03-10 21:49:29','2015-10-11 16:46:30',1,30005152,7,7,11,13,10,11,5,8,4,7,7,5,6,8,15,12,6,8,16,9,5,12,8,3),(499,'2015-03-10 21:49:29','2015-03-10 21:49:29',1,30001626,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(500,'2015-03-10 21:49:29','2015-10-11 16:46:30',1,30002927,20,33,79,38,14,21,12,31,41,27,34,41,45,34,51,39,34,18,17,31,29,30,31,26),(501,'2015-03-10 21:49:29','2015-10-11 16:46:30',1,30004508,40,27,14,12,9,3,16,9,16,13,12,14,17,6,13,12,9,11,6,1,5,3,6,11),(502,'2015-03-10 21:49:29','2015-10-11 16:46:30',1,30004432,9,2,0,23,9,10,14,3,10,0,0,10,4,15,7,11,25,12,5,20,10,18,10,14),(503,'2015-03-10 21:49:29','2015-10-11 16:46:30',1,30000218,4,4,2,3,3,3,3,1,1,0,0,1,0,1,1,3,4,1,4,0,0,1,3,1),(504,'2015-03-10 21:49:29','2015-10-11 16:46:30',1,30005110,19,25,49,41,41,29,36,3,18,18,5,8,6,6,11,11,6,4,31,41,14,27,21,2),(505,'2015-03-10 21:49:29','2015-10-11 16:46:30',1,30002005,47,117,116,83,89,93,87,73,112,96,86,74,86,126,78,106,102,97,89,67,166,141,107,79),(506,'2015-03-10 21:49:29','2015-10-11 16:46:30',1,30005111,13,19,52,25,26,22,39,6,14,10,4,7,11,5,23,16,9,6,32,37,12,31,25,6),(507,'2015-03-10 21:49:29','2015-03-10 21:49:29',1,30001503,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(508,'2015-03-10 21:49:29','2015-10-11 16:46:30',1,30004053,67,20,9,18,28,28,18,6,5,21,14,8,11,32,8,8,9,21,4,0,5,5,5,10),(509,'2015-03-10 21:49:29','2015-10-11 16:46:30',1,30005114,6,10,12,25,6,4,13,3,1,2,0,0,0,0,1,3,1,0,0,0,1,0,0,0),(510,'2015-03-10 21:49:29','2015-10-11 16:46:30',1,30003640,43,22,18,7,25,17,26,10,19,6,4,9,11,32,8,9,4,24,4,0,1,9,21,10),(511,'2015-03-10 21:49:29','2015-10-11 16:46:30',1,30003280,19,22,44,46,48,40,35,28,25,91,55,34,45,80,65,72,63,45,122,66,47,49,33,35),(512,'2015-03-10 21:49:29','2015-10-11 16:46:30',1,30004486,27,2,30,1,10,10,23,5,7,5,6,7,12,14,3,18,24,14,5,8,20,20,16,34),(513,'2015-03-10 21:49:29','2015-10-11 16:46:30',1,30000706,13,13,25,25,13,17,37,12,8,9,26,15,15,2,16,32,7,5,6,11,26,44,50,19),(514,'2015-03-10 21:49:29','2015-10-11 16:46:30',1,30001759,5,3,4,3,2,2,0,1,7,0,0,0,0,0,1,1,1,2,1,1,1,7,5,5),(515,'2015-03-10 21:49:29','2015-03-10 21:49:29',1,30001603,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(516,'2015-03-10 21:49:29','2015-10-11 16:46:30',1,30002167,36,13,27,12,10,16,14,14,2,19,33,37,26,29,67,62,37,31,15,30,44,38,38,16),(517,'2015-03-10 21:49:29','2015-10-11 16:46:30',1,30004810,28,21,12,22,14,12,5,25,47,5,4,4,4,11,5,14,8,2,4,17,6,5,4,3),(518,'2015-03-10 21:49:29','2015-10-11 16:46:30',1,30001167,30,22,24,30,13,4,11,10,13,76,80,35,22,34,15,21,18,26,20,49,40,40,37,22),(519,'2015-03-10 21:49:29','2015-10-11 16:46:30',1,30000728,0,5,3,1,0,0,1,4,1,2,1,0,0,1,1,5,1,0,5,3,1,1,2,0),(520,'2015-03-10 21:49:29','2015-10-11 16:46:30',1,30000557,4,17,12,2,9,10,3,4,3,6,8,8,11,21,41,32,68,29,116,30,12,30,13,30),(521,'2015-03-10 21:49:29','2015-10-11 16:46:30',1,30001184,18,0,2,5,8,9,4,6,2,22,23,12,9,24,20,14,25,15,10,17,7,15,10,19),(522,'2015-03-10 21:49:29','2015-03-10 21:49:29',1,30001492,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(523,'2015-03-10 21:49:29','2015-10-11 16:46:30',1,30004347,7,14,3,9,9,9,8,8,16,6,23,11,27,3,18,20,11,5,3,11,6,10,8,11),(524,'2015-03-10 21:49:29','2015-10-11 16:46:30',1,30003745,66,37,63,50,46,44,36,16,32,93,76,93,80,68,68,53,59,53,70,50,51,106,68,78),(525,'2015-03-10 21:49:29','2015-03-10 21:49:29',1,30001488,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(526,'2015-03-10 21:49:29','2015-10-11 16:46:30',1,30003145,3,11,2,0,7,8,6,7,1,5,7,2,9,3,1,0,3,7,0,8,7,4,3,9),(527,'2015-03-10 21:49:29','2015-10-11 16:46:30',1,30003316,18,18,34,12,10,11,9,13,16,20,16,1,7,24,51,45,10,5,28,6,10,14,19,8),(528,'2015-03-10 21:49:29','2015-10-11 16:46:30',1,30001111,4,2,2,8,5,6,6,9,3,6,6,12,7,0,6,2,22,12,2,5,6,2,7,5),(529,'2015-03-10 21:49:29','2015-10-11 16:46:30',1,30003956,14,10,49,17,16,18,8,23,15,10,9,9,3,8,6,8,3,9,28,4,5,5,3,6),(530,'2015-03-10 21:49:29','2015-10-11 16:46:30',1,30003315,4,2,1,3,2,0,3,3,2,4,5,4,5,34,18,25,4,2,14,2,0,1,6,8),(531,'2015-03-10 21:49:29','2015-10-11 16:46:30',1,30000513,6,4,13,21,13,6,24,18,12,19,20,9,7,10,26,16,15,10,22,113,9,10,13,8),(532,'2015-03-10 21:49:29','2015-10-11 16:46:30',1,30001092,6,0,0,0,1,1,2,0,0,1,2,1,1,5,1,0,0,0,0,1,0,4,6,0),(533,'2015-03-10 21:49:29','2015-10-11 16:46:30',1,30001317,4,10,1,0,7,7,2,1,2,2,1,1,1,0,0,0,2,3,5,5,1,1,1,1),(534,'2015-03-10 21:49:29','2015-10-11 16:46:30',1,30004923,59,14,44,9,25,21,49,14,25,14,12,20,18,41,13,36,32,31,17,82,20,31,28,30),(535,'2015-03-10 21:49:29','2015-10-11 16:46:30',1,30000289,1,14,19,13,8,7,22,9,23,11,19,29,35,7,12,5,16,22,14,17,22,36,30,10),(536,'2015-03-10 21:49:29','2015-10-11 16:46:30',1,30000985,4,4,13,9,3,3,10,3,7,1,2,2,5,1,0,0,6,16,2,5,0,3,3,8),(537,'2015-03-10 21:49:29','2015-10-11 16:46:30',1,30004604,6,8,12,6,11,11,7,1,8,2,2,7,7,3,4,5,12,1,1,26,18,10,7,3),(538,'2015-03-10 21:49:29','2015-10-11 16:46:30',1,30000791,32,12,22,4,9,12,18,11,7,5,6,10,15,12,9,12,7,19,8,20,9,1,3,7),(539,'2015-03-10 21:49:29','2015-10-11 16:46:30',1,30002593,23,7,10,14,16,4,32,2,15,17,21,23,20,13,43,25,24,40,14,9,10,23,23,23),(540,'2015-03-10 21:49:29','2015-03-10 21:49:29',1,30001624,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(541,'2015-03-10 21:49:29','2015-10-11 16:46:30',1,30001134,0,1,6,1,1,3,3,3,2,0,2,1,0,0,0,0,0,0,0,1,0,0,1,6),(542,'2015-03-10 21:49:29','2015-10-11 16:46:30',1,30002623,4,0,0,0,2,0,0,0,3,0,0,1,1,1,2,2,0,1,0,0,0,0,1,6),(543,'2015-03-10 21:49:29','2015-10-11 16:46:30',1,30000764,9,0,9,6,7,5,0,5,18,29,16,3,6,2,6,7,10,4,1,11,3,4,8,5),(544,'2015-03-10 21:49:29','2015-03-10 21:49:29',1,30000371,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(545,'2015-03-10 21:49:29','2015-10-11 16:46:30',1,30001257,4,7,19,4,7,3,4,7,9,45,43,42,45,27,25,35,28,25,21,16,32,35,27,6),(546,'2015-03-10 21:49:29','2015-10-11 16:46:30',1,30003270,22,31,272,68,31,23,66,22,40,68,48,20,47,52,80,58,47,56,99,33,79,105,77,55),(547,'2015-03-10 21:49:29','2015-10-11 16:46:30',1,30002619,38,1,14,13,15,10,18,5,12,12,14,12,15,5,7,6,8,18,4,2,6,19,20,18),(548,'2015-03-10 21:49:29','2015-10-11 16:46:30',1,30000907,7,7,5,9,6,7,8,2,2,1,4,14,15,22,9,4,8,4,2,5,2,10,10,2),(549,'2015-03-10 21:49:29','2015-10-11 16:46:30',1,30003139,2,5,3,6,9,11,3,0,4,1,2,7,8,4,3,1,3,2,1,1,1,7,4,3),(550,'2015-03-10 21:49:29','2015-10-11 16:46:30',1,30004591,9,20,20,16,13,12,8,9,7,12,24,13,10,502,15,12,7,19,12,16,22,16,14,10),(551,'2015-03-10 21:49:29','2015-03-10 21:49:29',1,30000402,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(552,'2015-03-10 21:49:29','2015-10-11 16:46:30',1,30002855,21,10,8,10,2,6,6,1,4,8,15,13,18,8,29,33,12,19,1,2,39,10,14,23),(553,'2015-03-10 21:49:29','2015-10-11 16:46:30',1,30002025,12,6,16,18,15,8,23,11,3,19,17,6,6,7,8,6,6,9,5,6,11,10,11,7),(554,'2015-03-10 21:49:29','2015-10-11 16:46:30',1,30002459,35,37,36,41,44,40,31,23,28,30,30,33,29,10,18,22,35,24,16,28,42,100,79,27),(555,'2015-03-10 21:49:29','2015-10-11 16:46:30',1,30001290,15,51,66,34,18,18,20,17,14,50,57,24,37,39,17,13,14,31,5,26,21,60,38,31),(556,'2015-03-10 21:49:29','2015-10-11 16:46:30',1,30004442,7,2,7,9,4,10,2,0,3,6,5,14,4,6,7,8,4,13,13,4,12,1,3,5),(557,'2015-03-10 21:49:29','2015-10-11 16:46:30',1,30004073,2,7,32,6,30,18,5,1,2,2,2,3,3,2,7,9,2,2,17,0,3,5,7,5),(558,'2015-03-10 21:49:29','2015-10-11 16:46:30',1,30000457,2,0,6,3,0,0,1,5,1,2,6,13,5,7,6,6,2,8,1,2,0,5,7,6),(559,'2015-03-10 21:49:29','2015-10-11 16:46:30',1,30003648,2,1,2,4,1,6,1,2,8,2,1,0,3,2,0,1,2,4,0,0,0,5,3,3),(560,'2015-03-10 21:49:29','2015-10-11 16:46:30',1,30004740,31,31,98,43,36,33,48,41,34,208,218,80,75,136,162,209,99,50,49,101,126,76,108,163),(561,'2015-03-10 21:49:29','2015-10-11 16:46:30',1,30005128,1,0,0,1,4,2,1,0,1,1,0,0,0,0,0,0,0,1,1,0,0,0,0,1),(562,'2015-03-10 21:49:29','2015-03-10 21:49:29',1,30000364,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(563,'2015-03-10 21:49:29','2015-10-11 16:46:30',1,30001930,9,10,10,4,4,6,2,23,11,10,9,8,17,13,15,17,12,17,20,7,7,16,13,19),(564,'2015-03-10 21:49:29','2015-10-11 16:46:30',1,30003303,0,3,5,0,1,4,0,4,12,1,2,0,0,1,1,3,1,0,2,0,0,1,2,0),(565,'2015-03-10 21:49:29','2015-10-11 16:46:30',1,30004070,38,56,121,28,26,32,20,14,29,12,20,10,15,15,14,12,22,8,10,24,7,11,13,27),(566,'2015-03-10 21:49:29','2015-10-11 16:46:30',1,30002446,29,17,13,26,22,13,30,7,15,22,20,25,21,22,17,17,27,22,8,13,10,110,67,29),(567,'2015-03-10 21:49:29','2015-10-11 16:46:30',1,30003179,6,4,11,3,4,2,18,18,3,8,7,5,3,4,4,12,11,7,3,2,3,5,2,5),(568,'2015-03-10 21:49:29','2015-10-11 16:46:30',1,30004908,29,5,35,23,42,32,33,10,14,14,11,8,10,23,39,40,18,20,10,140,10,10,17,13),(569,'2015-03-10 21:49:29','2015-10-11 16:46:30',1,30001545,2,1,0,0,0,0,0,1,0,28,22,13,4,0,0,0,4,0,1,11,2,0,2,8),(570,'2015-03-10 21:49:29','2015-10-11 16:46:30',1,30003210,34,21,19,36,26,29,18,25,11,6,11,11,7,10,11,18,6,17,5,19,20,11,16,24),(571,'2015-03-10 21:49:29','2015-10-11 16:46:30',1,30001339,0,2,3,2,1,1,3,0,1,2,0,5,5,1,4,2,0,4,0,3,3,1,1,1),(572,'2015-03-10 21:49:29','2015-10-11 16:46:30',1,30001067,1,0,0,0,0,1,0,0,0,0,0,0,0,0,1,1,0,0,1,1,4,1,0,0),(573,'2015-03-10 21:49:29','2015-10-11 16:46:30',1,30002832,2,4,0,1,0,0,6,0,2,0,0,0,1,0,0,0,2,0,0,1,0,0,1,2),(574,'2015-03-10 21:49:29','2015-10-11 16:46:30',1,30004608,9,58,42,17,15,25,5,43,34,173,45,52,45,63,60,43,44,50,92,117,78,51,55,44),(575,'2015-03-10 21:49:29','2015-10-11 16:46:30',1,30001574,11,7,4,6,4,22,3,0,2,5,5,0,0,1,1,0,0,14,21,2,0,4,1,5),(576,'2015-03-10 21:49:29','2015-10-11 16:46:30',1,30001276,171,78,64,57,66,73,54,42,61,63,74,112,115,120,132,155,131,97,35,58,69,123,230,97),(577,'2015-03-10 21:49:29','2015-10-11 16:46:30',1,30000967,10,4,10,11,6,10,2,6,5,8,4,1,2,23,12,4,8,11,31,31,13,1,7,19),(578,'2015-03-10 21:49:29','2015-10-11 16:46:30',1,30000258,0,6,7,19,14,3,5,0,0,4,2,4,4,1,3,4,4,1,5,4,4,4,3,2),(579,'2015-03-10 21:49:29','2015-10-11 16:46:30',1,30001197,218,21,24,40,32,25,26,31,39,40,56,33,30,58,32,39,40,30,25,51,31,27,25,41),(580,'2015-03-10 21:49:29','2015-10-11 16:46:30',1,30001907,12,7,11,17,22,18,16,11,3,10,7,10,5,12,14,27,17,6,6,18,10,16,13,11),(581,'2015-03-10 21:49:29','2015-10-11 16:46:30',1,30000297,1,9,19,8,16,16,11,5,15,16,14,15,22,4,12,7,24,12,14,4,3,7,4,12),(582,'2015-03-10 21:49:29','2015-10-11 16:46:30',1,30002465,23,14,29,29,18,23,42,22,12,18,24,12,12,7,5,10,11,14,23,21,13,37,19,20),(583,'2015-03-10 21:49:29','2015-10-11 16:46:30',1,30004792,4,4,8,7,14,12,9,15,8,21,27,19,8,13,5,5,9,10,3,15,6,12,10,5),(584,'2015-03-10 21:49:29','2015-10-11 16:46:30',1,30004057,2,2,9,9,16,9,4,0,4,1,1,2,1,5,8,7,2,3,3,4,4,6,7,5),(585,'2015-03-10 21:49:29','2015-10-11 16:46:30',1,30001328,2,8,7,4,2,0,2,2,1,5,7,3,6,1,3,3,1,7,0,1,1,0,0,4),(586,'2015-03-10 21:49:29','2015-10-11 16:46:30',1,30001075,8,7,28,34,16,10,25,20,36,13,17,51,13,9,13,17,15,12,7,0,12,18,19,13),(587,'2015-03-10 21:49:29','2015-10-11 16:46:30',1,30004525,1,1,16,13,7,5,2,4,6,3,3,7,6,8,5,3,12,3,5,2,3,1,7,5),(588,'2015-03-10 21:49:29','2015-10-11 16:46:30',1,30004925,40,5,26,14,22,15,37,12,32,6,6,11,7,43,15,32,53,24,19,79,21,31,42,22),(589,'2015-03-10 21:49:29','2015-10-11 16:46:30',1,30004585,1,2,0,1,3,5,0,0,3,2,0,0,1,3,0,0,2,0,1,6,12,2,3,2),(590,'2015-03-10 21:49:29','2015-03-10 21:49:29',1,30001608,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(591,'2015-03-10 21:49:29','2015-10-11 16:46:30',1,30000525,24,6,2,12,5,6,5,1,1,4,5,4,5,10,23,3,6,3,1,1,9,4,3,10),(592,'2015-03-10 21:49:29','2015-10-11 16:46:30',1,30000919,3,13,9,14,6,8,10,2,3,5,10,7,6,14,16,4,5,6,3,4,8,2,6,2),(593,'2015-03-10 21:49:29','2015-10-11 16:46:30',1,30000759,11,5,21,6,8,7,6,11,26,5,6,14,10,6,3,2,8,13,1,0,5,5,5,2),(594,'2015-03-10 21:49:29','2015-10-11 16:46:30',1,30000224,19,11,13,21,17,20,22,13,6,8,10,9,6,23,8,7,48,15,12,15,9,10,6,6),(595,'2015-03-10 21:49:29','2015-10-11 16:46:30',1,30004790,6,5,15,9,16,18,6,16,5,29,27,18,18,19,22,18,23,30,8,18,9,72,59,10),(596,'2015-03-10 21:49:29','2015-10-11 16:46:30',1,30000487,2,0,4,4,1,0,2,1,1,7,13,16,10,12,32,20,22,5,12,7,21,14,4,14),(597,'2015-03-10 21:49:29','2015-10-11 16:46:30',1,30000287,3,1,3,4,13,10,12,10,11,2,0,0,2,1,3,2,2,1,3,3,8,2,4,0),(598,'2015-03-10 21:49:29','2015-10-11 16:46:30',1,30001588,5,10,6,10,15,16,7,34,5,12,78,4,3,7,7,8,4,3,2,1,5,3,5,2),(599,'2015-03-10 21:49:29','2015-10-11 16:46:30',1,30000217,19,34,35,38,36,20,28,12,23,13,6,15,15,18,21,22,26,11,25,9,11,26,32,24),(600,'2015-03-10 21:49:29','2015-10-11 16:46:30',1,30003217,15,5,2,11,15,13,3,7,9,0,3,2,4,1,7,6,0,2,1,2,2,5,2,6),(601,'2015-03-10 21:49:29','2015-10-11 16:46:30',1,30001884,4,2,3,0,2,1,4,0,1,5,5,14,16,2,5,2,4,2,0,1,7,6,3,3),(602,'2015-03-10 21:49:29','2015-10-11 16:46:30',1,30001057,7,12,1,12,4,2,7,11,3,48,65,46,31,5,9,7,12,3,0,0,0,12,11,9),(603,'2015-03-10 21:49:29','2015-10-11 16:46:30',1,30002158,0,0,0,0,0,1,1,1,0,0,0,7,3,1,0,2,2,0,5,0,4,6,8,0),(604,'2015-03-10 21:49:29','2015-10-11 16:46:30',1,30000726,5,1,2,0,0,0,1,5,0,1,2,1,1,1,8,7,2,3,0,0,0,3,1,4),(605,'2015-03-10 21:49:29','2015-10-11 16:46:30',1,30004893,5,1,0,9,0,1,3,1,0,3,1,0,0,6,2,2,2,0,0,1,5,3,2,0),(606,'2015-03-10 21:49:29','2015-10-11 16:46:30',1,30002848,19,10,14,13,27,28,9,8,17,14,11,14,19,34,25,19,8,13,2,1,15,12,16,17),(607,'2015-03-10 21:49:29','2015-10-11 16:46:30',1,30000787,15,19,49,16,12,18,70,11,22,12,30,16,23,23,22,37,14,43,10,31,30,58,66,19),(608,'2015-03-10 21:49:29','2015-03-10 21:49:29',1,30000333,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(609,'2015-03-10 21:49:29','2015-10-11 16:46:30',1,30000827,6,1,8,15,5,8,0,3,2,1,1,1,2,3,0,0,15,32,0,5,16,4,6,1),(610,'2015-03-10 21:49:29','2015-10-11 16:46:30',1,30004429,62,7,3,4,7,6,4,2,11,2,2,6,3,22,8,13,20,11,2,7,12,14,6,5),(611,'2015-03-10 21:49:29','2015-10-11 16:46:30',1,30004620,124,44,76,68,95,68,110,29,44,59,77,97,70,125,110,89,71,106,77,60,126,146,108,93),(612,'2015-03-10 21:49:29','2015-10-11 16:46:30',1,30004045,2,10,7,4,3,3,1,18,10,8,6,13,14,7,4,10,29,2,8,5,9,13,16,9),(613,'2015-03-10 21:49:29','2015-10-11 16:46:30',1,30000483,23,6,18,7,11,8,15,13,17,56,35,34,25,28,50,50,30,13,1,4,79,21,33,19),(614,'2015-03-10 21:49:29','2015-10-11 16:46:30',1,30000773,67,30,107,69,41,28,78,30,42,49,95,38,27,43,135,114,59,69,8,9,36,146,128,44),(615,'2015-03-10 21:49:29','2015-10-11 16:46:30',1,30004816,2,0,7,3,3,1,7,0,2,5,2,6,5,7,2,1,4,5,3,11,4,0,3,2),(616,'2015-03-10 21:49:29','2015-10-11 16:46:30',1,30002125,6,1,18,3,5,4,6,1,3,1,1,3,3,5,3,4,1,0,5,8,8,6,7,4),(617,'2015-03-10 21:49:29','2015-10-11 16:46:30',1,30005145,16,20,28,24,26,21,42,6,21,10,3,8,12,6,29,23,12,9,32,42,12,27,26,9),(618,'2015-03-10 21:49:29','2015-03-10 21:49:29',1,30001639,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(619,'2015-03-10 21:49:29','2015-10-11 16:46:30',1,30004635,5,2,7,14,4,2,0,0,2,1,1,7,7,6,3,6,1,8,2,4,9,7,6,8),(620,'2015-03-10 21:49:29','2015-10-11 16:46:30',1,30004616,3,26,7,1,2,4,0,18,13,149,13,20,30,35,12,6,13,19,30,109,30,16,24,26),(621,'2015-03-10 21:49:29','2015-03-10 21:49:29',1,30000360,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(622,'2015-03-10 21:49:29','2015-10-11 16:46:30',1,30002046,8,7,16,3,15,16,7,5,15,28,31,42,17,32,22,10,7,7,3,5,16,2,4,6),(623,'2015-03-10 21:49:29','2015-10-11 16:46:30',1,30003671,13,16,17,14,24,14,20,5,9,2,0,2,2,5,11,6,3,22,2,3,1,8,11,1),(624,'2015-03-10 21:49:29','2015-10-11 16:46:30',1,30000840,11,5,2,6,7,10,3,7,8,8,8,9,6,18,9,11,20,27,14,15,24,11,15,15),(625,'2015-03-10 21:49:29','2015-10-11 16:46:30',1,30001817,2,2,2,3,1,1,4,2,2,26,30,26,14,12,18,31,11,13,8,5,21,20,19,4),(626,'2015-03-10 21:49:29','2015-10-11 16:46:30',1,30000323,8,14,16,18,8,7,7,8,14,17,7,6,7,19,14,12,5,62,12,16,10,15,16,14),(627,'2015-03-10 21:49:29','2015-10-11 16:46:30',1,30004768,4,1,0,0,1,1,2,1,8,13,11,4,2,6,15,10,14,4,1,1,6,11,7,13),(628,'2015-03-10 21:49:29','2015-10-11 16:46:30',1,30003948,21,19,8,22,25,22,21,9,10,27,18,9,8,23,33,10,15,12,6,12,18,10,16,12),(629,'2015-03-10 21:49:29','2015-03-10 21:49:29',1,30001457,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(630,'2015-03-10 21:49:29','2015-10-11 16:46:30',1,30000955,4,4,8,8,3,2,5,1,6,3,4,10,3,1,0,0,5,10,4,3,4,2,4,3),(631,'2015-03-10 21:49:29','2015-10-11 16:46:30',1,30005176,1,0,0,0,0,0,0,0,0,2,2,0,0,3,4,4,1,1,0,0,0,1,1,1),(632,'2015-03-10 21:49:29','2015-10-11 16:46:30',1,30000606,5,7,4,2,3,0,3,11,0,3,4,1,1,2,0,0,0,2,11,1,1,5,21,5),(633,'2015-03-10 21:49:29','2015-10-11 16:46:30',1,30004872,20,31,17,23,32,22,37,34,24,11,14,11,9,2,7,6,11,5,3,3,7,7,15,21),(634,'2015-03-10 21:49:29','2015-10-11 16:46:30',1,30000745,0,1,4,0,2,0,0,2,2,2,1,8,8,3,1,2,2,15,4,2,0,2,3,4),(635,'2015-03-10 21:49:29','2015-10-11 16:46:30',1,30004926,40,4,21,16,15,13,35,15,27,5,6,16,10,36,23,38,26,24,10,86,21,27,31,27),(636,'2015-03-10 21:49:29','2015-10-11 16:46:30',1,30001218,8,5,2,6,2,2,10,2,11,72,58,37,33,31,45,63,39,19,50,28,23,25,26,23),(637,'2015-03-10 21:49:29','2015-03-10 21:49:29',1,30000383,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(638,'2015-03-10 21:49:29','2015-10-11 16:46:30',1,30005138,4,2,4,3,8,4,2,0,0,3,1,0,0,1,11,10,0,5,1,1,4,0,0,0),(639,'2015-03-10 21:49:29','2015-10-11 16:46:30',1,30004860,1,1,1,0,1,3,2,0,1,2,2,1,1,9,1,2,1,0,0,1,1,2,3,3),(640,'2015-03-10 21:49:29','2015-10-11 16:46:30',1,30001232,48,66,74,45,50,39,53,22,43,180,164,52,41,80,100,80,30,26,34,104,76,58,43,32),(641,'2015-03-10 21:49:29','2015-10-11 16:46:30',1,30005146,3,2,5,0,2,3,6,1,3,6,2,11,14,1,8,9,4,4,0,2,2,3,2,3),(642,'2015-03-10 21:49:29','2015-03-10 21:49:29',1,30000353,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(643,'2015-03-10 21:49:29','2015-10-11 16:46:30',1,30003165,6,3,5,3,2,2,3,1,7,23,16,4,5,10,12,8,5,4,14,14,11,17,19,16),(644,'2015-03-10 21:49:29','2015-10-11 16:46:30',1,30000943,65,51,58,36,37,33,31,23,20,44,53,41,33,55,63,59,48,36,65,51,72,24,50,50),(645,'2015-03-10 21:49:29','2015-10-11 16:46:30',1,30001845,15,23,21,19,8,12,14,19,7,50,52,48,48,53,30,44,71,60,31,43,31,38,47,34),(646,'2015-03-10 21:49:29','2015-10-11 16:46:30',1,30002016,88,30,93,62,79,38,142,10,48,18,27,14,17,41,22,12,41,10,27,19,27,11,13,32),(647,'2015-03-10 21:49:29','2015-10-11 16:46:30',1,30001141,0,0,0,1,0,3,0,4,0,1,3,1,1,3,0,0,1,0,0,0,0,3,3,2),(648,'2015-03-10 21:49:29','2015-10-11 16:46:30',1,30002929,0,5,3,2,1,1,3,6,2,10,8,8,9,9,14,11,9,10,8,10,4,6,5,13),(649,'2015-03-10 21:49:29','2015-10-11 16:46:30',1,30004788,1,1,0,1,9,10,0,0,4,2,5,3,3,8,6,9,5,9,6,2,3,6,9,4),(650,'2015-03-10 21:49:29','2015-10-11 16:46:30',1,30003945,14,20,6,26,18,17,15,17,10,15,14,10,10,28,33,12,14,11,12,14,17,6,10,12),(651,'2015-03-10 21:49:29','2015-10-11 16:46:30',1,30004587,4,3,2,7,10,5,0,0,6,0,2,3,6,4,0,0,2,4,0,3,0,18,10,5),(652,'2015-03-10 21:49:29','2015-10-11 16:46:30',1,30002031,17,1,3,9,15,8,1,1,4,2,1,1,1,5,1,0,0,1,1,1,0,0,1,0),(653,'2015-03-10 21:49:29','2015-10-11 16:46:30',1,30002177,9,2,11,1,3,4,5,10,8,12,8,7,12,15,18,16,12,8,1,3,9,9,16,5),(654,'2015-03-10 21:49:29','2015-10-11 16:46:30',1,30003778,7,7,7,12,14,35,8,7,17,23,18,28,29,17,31,26,21,26,7,12,19,21,23,33),(655,'2015-03-10 21:49:29','2015-10-11 16:46:30',1,30001071,5,0,2,2,1,1,0,1,4,3,8,11,7,0,7,14,8,0,6,3,0,10,5,1),(656,'2015-03-10 21:49:29','2015-10-11 16:46:30',1,30004351,42,47,52,35,72,56,82,64,59,21,31,23,24,25,32,33,23,15,12,34,18,19,26,25),(657,'2015-03-10 21:49:29','2015-10-11 16:46:30',1,30004869,3,13,8,9,7,7,1,23,8,8,3,5,1,2,9,8,11,1,4,1,7,1,2,11),(658,'2015-03-10 21:49:29','2015-10-11 16:46:30',1,30001768,37,27,13,20,35,30,12,16,12,26,34,23,19,9,13,19,41,18,4,7,16,11,18,16),(659,'2015-03-10 21:49:29','2015-10-11 16:46:30',1,30004862,2,4,1,0,3,3,2,2,24,4,4,4,3,5,5,6,6,6,3,2,4,3,6,6),(660,'2015-03-10 21:49:29','2015-10-11 16:46:30',1,30000614,23,0,2,20,4,2,2,2,0,0,0,3,6,4,3,3,7,4,0,3,2,3,3,3),(661,'2015-03-10 21:49:29','2015-10-11 16:46:30',1,30004001,0,2,1,8,7,1,2,0,0,0,0,3,4,3,0,0,1,0,0,0,1,0,0,1),(662,'2015-03-10 21:49:29','2015-10-11 16:46:30',1,30003282,10,17,34,14,22,19,13,13,12,20,13,17,18,10,17,13,16,6,15,16,12,14,9,27),(663,'2015-03-10 21:49:29','2015-10-11 16:46:30',1,30002484,68,20,39,19,20,19,29,24,34,22,18,18,28,20,7,2,24,5,13,10,12,7,19,59),(664,'2015-03-10 21:49:29','2015-10-11 16:46:30',1,30002293,6,3,4,1,3,2,6,3,2,16,18,9,7,2,2,4,4,5,0,0,1,14,9,7),(665,'2015-03-10 21:49:29','2015-10-11 16:46:30',1,30000542,8,2,17,8,6,1,8,6,24,3,6,1,0,1,7,6,3,4,2,1,0,1,1,2),(666,'2015-03-10 21:49:29','2015-03-10 21:49:29',1,30000334,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(667,'2015-03-10 21:49:29','2015-10-11 16:46:30',1,30003985,10,10,20,18,16,13,24,5,3,17,44,39,8,3,28,25,21,9,6,0,3,26,23,7),(668,'2015-03-10 21:49:29','2015-10-11 16:46:30',1,30000628,9,13,9,12,13,13,4,14,9,6,6,11,19,13,9,5,16,9,12,12,18,2,3,9),(669,'2015-03-10 21:49:29','2015-10-11 16:46:30',1,30000312,37,13,30,16,17,9,6,2,8,11,6,8,5,6,8,5,8,10,5,8,9,7,9,2),(670,'2015-03-10 21:49:29','2015-03-10 21:49:29',1,30001514,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(671,'2015-03-10 21:49:29','2015-03-10 21:49:29',1,30001627,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(672,'2015-03-10 21:49:29','2015-10-11 16:46:30',1,30000648,11,7,13,10,7,3,5,1,3,13,16,125,67,13,13,8,7,31,9,14,6,19,18,12),(673,'2015-03-10 21:49:29','2015-10-11 16:46:30',1,30000775,34,8,18,18,10,21,16,11,17,6,5,6,6,14,7,8,6,5,2,5,5,11,20,4),(674,'2015-03-10 21:49:29','2015-10-11 16:46:30',1,30004025,15,21,40,17,22,20,3,7,8,22,16,16,41,79,139,29,21,56,7,17,35,25,40,17),(675,'2015-03-10 21:49:29','2015-10-11 16:46:30',1,30001745,9,9,10,24,11,10,7,5,5,5,4,1,0,7,18,17,7,7,1,2,4,6,6,6),(676,'2015-03-10 21:49:29','2015-10-11 16:46:30',1,30003189,0,1,5,2,2,0,1,2,0,2,0,2,3,0,0,0,0,2,0,0,1,4,2,2),(677,'2015-03-10 21:49:29','2015-10-11 16:46:30',1,30002924,13,20,49,21,16,16,23,5,23,15,26,16,7,9,27,19,10,13,17,19,13,16,11,20),(678,'2015-03-10 21:49:29','2015-10-11 16:46:30',1,30001132,2,4,27,5,8,12,10,20,9,19,18,29,17,8,8,7,3,2,6,7,9,6,6,6),(679,'2015-03-10 21:49:29','2015-10-11 16:46:30',1,30002885,2,0,12,19,5,3,6,23,9,8,10,9,10,6,10,2,2,2,1,2,0,10,13,15),(680,'2015-03-10 21:49:29','2015-10-11 16:46:30',1,30004190,3,23,22,14,16,18,17,14,17,27,30,12,17,23,28,35,29,11,2,9,14,16,10,41),(681,'2015-03-10 21:49:29','2015-10-11 16:46:30',1,30004640,11,5,11,1,23,30,12,0,1,72,96,87,47,57,152,49,83,31,59,139,101,16,20,16),(682,'2015-03-10 21:49:29','2015-10-11 16:46:30',1,30000770,21,17,37,29,29,22,38,32,29,29,33,9,16,16,47,19,5,2,0,1,4,12,14,3),(683,'2015-03-10 21:49:29','2015-10-11 16:46:30',1,30002346,10,14,16,62,15,19,18,22,16,5,6,29,14,12,5,4,23,13,14,36,19,10,17,8),(684,'2015-03-10 21:49:29','2015-10-11 16:46:30',1,30002314,15,5,9,7,3,4,10,6,4,7,3,2,5,12,10,8,13,8,6,5,38,6,3,13),(685,'2015-03-10 21:49:29','2015-10-11 16:46:30',1,30001053,1,3,2,3,1,1,6,2,8,9,7,0,3,3,5,10,25,4,1,1,0,1,1,6),(686,'2015-03-10 21:49:29','2015-10-11 16:46:30',1,30001219,12,8,6,12,6,8,16,8,4,20,30,22,22,130,27,19,34,12,53,82,51,33,36,43),(687,'2015-03-10 21:49:29','2015-10-11 16:46:30',1,30005164,0,2,2,0,3,2,0,1,2,2,1,0,0,1,0,0,0,2,0,0,1,2,2,0),(688,'2015-03-10 21:49:29','2015-10-11 16:46:30',1,30003974,15,3,1,1,2,2,4,7,3,9,6,13,17,57,11,7,9,8,11,8,17,2,2,12),(689,'2015-03-10 21:49:29','2015-10-11 16:46:30',1,30003771,9,3,6,10,4,11,10,3,7,15,13,10,7,3,8,3,4,7,9,11,12,6,5,14),(690,'2015-03-10 21:49:29','2015-10-11 16:46:30',1,30001144,0,0,0,1,0,3,0,2,0,0,1,1,1,4,0,0,1,1,0,0,0,3,2,2),(691,'2015-03-10 21:49:29','2015-10-11 16:46:30',1,30001298,2,4,2,1,6,5,2,2,0,0,0,2,1,3,3,2,1,4,5,2,0,2,2,3),(692,'2015-03-10 21:49:29','2015-10-11 16:46:30',1,30000731,0,1,0,0,0,0,0,0,0,6,3,3,2,1,0,0,0,0,7,5,1,5,1,2),(693,'2015-03-10 21:49:29','2015-10-11 16:46:30',1,30000910,7,7,1,13,11,8,7,11,1,3,2,2,2,19,5,0,7,7,3,6,3,8,4,3),(694,'2015-03-10 21:49:29','2015-10-11 16:46:30',1,30000748,4,2,4,1,2,4,4,2,2,2,2,5,3,8,7,7,6,5,1,1,0,0,3,2),(695,'2015-03-10 21:49:29','2015-10-11 16:46:30',1,30004574,7,6,3,5,1,3,1,9,6,133,5,7,10,39,8,8,11,5,6,3,8,8,5,8),(696,'2015-03-10 21:49:29','2015-10-11 16:46:30',1,30004781,12,25,16,8,11,8,3,13,32,24,19,11,6,12,10,9,10,42,10,8,18,35,23,10),(697,'2015-03-10 21:49:29','2015-10-11 16:46:30',1,30000494,4,3,9,0,2,4,2,3,6,1,0,5,3,4,9,7,9,5,27,16,3,9,6,3),(698,'2015-03-10 21:49:29','2015-10-11 16:46:30',1,30000771,7,0,1,0,2,3,0,0,0,0,3,5,5,4,0,0,1,0,0,2,0,0,0,0),(699,'2015-03-10 21:49:29','2015-10-11 16:46:30',1,30001017,11,32,116,20,46,39,24,14,42,47,21,12,20,158,72,59,18,19,30,69,51,23,21,26),(700,'2015-03-10 21:49:29','2015-10-11 16:46:30',1,30001776,3,4,2,2,4,3,16,3,2,13,21,8,6,7,7,4,0,2,6,4,3,2,3,10),(701,'2015-03-10 21:49:29','2015-10-11 16:46:30',1,30002354,34,17,14,12,12,21,21,6,9,10,12,13,11,41,17,16,22,14,10,7,31,59,20,24),(702,'2015-03-10 21:49:29','2015-10-11 16:46:30',1,30001887,3,22,7,2,18,14,8,6,1,38,38,35,40,25,35,20,36,21,12,20,14,58,46,35),(703,'2015-03-10 21:49:29','2015-10-11 16:46:30',1,30004942,11,3,3,21,6,3,30,8,5,13,11,2,3,3,6,7,5,4,2,1,0,9,7,4),(704,'2015-03-10 21:49:29','2015-10-11 16:46:30',1,30002442,19,12,26,53,17,40,25,48,25,19,25,25,19,41,16,14,46,33,3,7,17,46,40,28),(705,'2015-03-10 21:49:29','2015-03-10 21:49:29',1,30000391,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(706,'2015-03-10 21:49:29','2015-10-11 16:46:30',1,30001879,4,2,3,5,2,3,6,3,1,5,9,10,10,6,4,2,5,8,1,3,1,12,15,18),(707,'2015-03-10 21:49:29','2015-10-11 16:46:30',1,30000652,21,2,39,4,11,10,4,1,2,5,5,5,4,7,46,6,9,7,11,9,19,5,4,9),(708,'2015-03-10 21:49:29','2015-10-11 16:46:30',1,30001561,4,1,2,1,4,30,1,0,1,2,3,4,5,3,1,2,47,2,1,3,2,2,1,1),(709,'2015-03-10 21:49:29','2015-10-11 16:46:30',1,30003750,209,131,211,57,57,97,80,42,57,156,147,136,98,423,102,62,66,68,51,202,1097,91,68,87),(710,'2015-03-10 21:49:29','2015-10-11 16:46:30',1,30000697,6,8,27,3,1,18,6,3,2,70,50,34,18,32,36,21,26,16,12,17,47,41,32,20),(711,'2015-03-10 21:49:29','2015-10-11 16:46:30',1,30004681,17,5,7,13,17,7,10,10,9,14,23,22,10,12,16,16,5,7,3,4,10,16,16,20),(712,'2015-03-10 21:49:29','2015-10-11 16:46:30',1,30003702,54,19,22,60,78,84,32,10,9,6,10,27,15,17,36,22,26,6,14,9,8,11,11,7),(713,'2015-03-10 21:49:29','2015-10-11 16:46:30',1,30004012,64,31,2,8,10,14,2,9,26,16,31,24,20,23,24,22,21,11,9,2,22,23,14,12),(714,'2015-03-10 21:49:29','2015-10-11 16:46:30',1,30004056,83,12,117,36,53,31,9,7,21,38,27,8,8,12,18,16,10,28,7,25,6,12,12,16),(715,'2015-03-10 21:49:29','2015-10-11 16:46:30',1,30001805,13,12,6,6,12,15,5,40,5,17,47,11,8,14,13,19,14,12,2,3,7,3,6,7),(716,'2015-03-10 21:49:29','2015-10-11 16:46:30',1,30004771,4,8,5,1,1,1,1,3,19,10,6,2,4,11,8,11,16,1,5,7,4,19,9,13),(717,'2015-03-10 21:49:29','2015-03-10 21:49:29',1,30001523,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(718,'2015-03-10 21:49:29','2015-10-11 16:46:30',1,30002004,20,43,32,31,29,32,66,24,49,55,70,24,36,55,91,97,44,76,8,11,29,64,41,54),(719,'2015-03-10 21:49:29','2015-10-11 16:46:30',1,30002930,70,49,153,65,64,71,34,63,67,58,72,46,37,78,86,66,51,36,38,45,49,44,38,54),(720,'2015-03-10 21:49:29','2015-10-11 16:46:30',1,30000242,103,35,52,48,81,57,61,40,50,19,23,19,17,47,27,35,83,41,55,51,16,52,45,28),(721,'2015-03-10 21:49:29','2015-03-10 21:49:29',1,30001614,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(722,'2015-03-10 21:49:29','2015-10-11 16:46:30',1,30003320,28,30,104,50,31,31,60,30,21,37,38,33,21,63,59,48,44,32,13,8,35,39,50,20),(723,'2015-03-10 21:49:29','2015-10-11 16:46:30',1,30003695,16,17,44,38,32,29,22,26,17,7,13,6,5,10,16,19,12,12,11,6,28,13,15,9),(724,'2015-03-10 21:49:29','2015-10-11 16:46:30',1,30004760,14,2,158,2,5,3,3,5,18,26,16,5,2,10,10,8,10,10,8,7,5,29,11,11),(725,'2015-03-10 21:49:29','2015-10-11 16:46:30',1,30002171,21,10,13,15,14,15,11,8,5,10,21,26,19,30,47,56,12,9,10,11,29,26,16,22),(726,'2015-03-10 21:49:29','2015-10-11 16:46:30',1,30000942,19,39,56,39,37,32,24,28,18,30,40,29,29,70,70,56,35,32,88,50,73,16,59,51),(727,'2015-03-10 21:49:29','2015-10-11 16:46:30',1,30001877,13,9,18,8,19,25,9,4,2,37,44,38,43,24,51,46,40,29,3,11,23,37,65,36),(728,'2015-03-10 21:49:29','2015-10-11 16:46:30',1,30000469,10,3,2,3,6,5,8,3,5,33,5,6,5,17,39,32,3,5,1,1,18,12,8,1),(729,'2015-03-10 21:49:29','2015-10-11 16:46:30',1,30002868,29,12,9,15,4,6,7,2,4,25,30,34,25,17,34,32,13,19,2,2,57,20,17,33),(730,'2015-03-10 21:49:29','2015-10-11 16:46:30',1,30001273,108,70,67,85,73,70,61,52,53,164,110,103,96,81,172,156,274,62,32,45,92,70,187,71),(731,'2015-03-10 21:49:29','2015-10-11 16:46:30',1,30000939,1,2,1,3,3,3,1,0,1,1,1,6,7,3,1,0,3,4,1,3,2,1,4,0),(732,'2015-03-10 21:49:29','2015-10-11 16:46:30',1,30004059,17,9,19,15,19,12,7,2,12,5,10,8,12,13,21,12,8,22,10,19,20,22,17,11),(733,'2015-03-10 21:49:29','2015-10-11 16:46:30',1,30004219,2,0,1,1,1,2,12,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,1),(734,'2015-03-10 21:49:29','2015-10-11 16:46:30',1,30001279,27,19,10,7,9,11,7,16,15,7,8,11,9,12,12,8,13,17,14,1,8,5,7,14),(735,'2015-03-10 21:49:29','2015-10-11 16:46:30',1,30001166,37,19,23,21,17,10,4,9,4,106,131,46,19,26,34,16,20,19,14,29,29,41,33,18),(736,'2015-03-10 21:49:29','2015-10-11 16:46:30',1,30004879,72,47,41,42,65,61,65,33,46,35,37,42,30,16,24,17,31,15,5,51,58,19,22,35),(737,'2015-03-10 21:49:29','2015-10-11 16:46:30',1,30004397,13,20,13,25,13,16,109,10,11,21,23,5,3,64,15,8,23,50,25,36,44,14,13,23),(738,'2015-03-10 21:49:29','2015-03-10 21:49:29',1,30001600,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(739,'2015-03-10 21:49:29','2015-03-10 21:49:29',1,30001484,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(740,'2015-03-10 21:49:29','2015-10-11 16:46:30',1,30005148,2,6,2,3,4,1,2,0,9,1,2,10,10,0,0,3,1,1,0,0,1,8,10,6),(741,'2015-03-10 21:49:29','2015-10-11 16:46:30',1,30003704,22,58,36,32,41,143,25,49,79,72,72,31,23,290,209,174,33,36,117,65,143,38,81,88),(742,'2015-03-10 21:49:29','2015-10-11 16:46:30',1,30000318,6,12,11,13,12,13,16,2,6,16,22,31,18,17,17,22,44,30,8,16,25,215,65,35),(743,'2015-03-10 21:49:29','2015-10-11 16:46:30',1,30003961,2,3,1,1,0,0,0,5,5,3,4,2,0,2,2,2,2,0,0,0,1,1,0,0),(744,'2015-03-10 21:49:29','2015-10-11 16:46:30',1,30002590,12,2,2,5,6,3,11,1,6,69,17,7,8,2,7,7,10,14,8,3,5,8,7,16),(745,'2015-03-10 21:49:29','2015-10-11 16:46:30',1,30002450,20,3,12,17,21,20,14,7,8,29,24,38,36,8,23,19,23,17,8,5,18,50,32,12),(746,'2015-03-10 21:49:29','2015-10-11 16:46:30',1,30004826,0,5,16,7,21,16,13,66,6,4,1,5,1,3,3,1,1,12,10,5,8,11,0,6),(747,'2015-03-10 21:49:29','2015-10-11 16:46:30',1,30000454,11,6,8,10,7,3,25,6,6,7,12,14,9,8,12,9,9,8,4,1,12,9,11,7),(748,'2015-03-10 21:49:29','2015-10-11 16:46:30',1,30001266,23,6,71,8,9,6,3,5,4,128,42,101,27,159,43,249,57,11,13,17,81,31,134,27),(749,'2015-03-10 21:49:29','2015-10-11 16:46:30',1,30004557,17,16,19,23,11,11,8,12,24,279,243,92,52,788,33,28,49,43,66,72,216,39,43,18),(750,'2015-03-10 21:49:29','2015-10-11 16:46:30',1,30004201,34,21,15,39,27,16,42,20,30,19,16,10,12,12,10,18,6,13,0,12,31,17,16,47),(751,'2015-03-10 21:49:29','2015-10-11 16:46:30',1,30002159,43,34,34,46,15,14,46,12,14,25,43,19,11,8,31,20,9,15,3,25,32,5,7,14),(752,'2015-03-10 21:49:29','2015-10-11 16:46:30',1,30005168,4,4,14,2,11,12,3,5,0,12,14,6,5,9,8,7,4,7,1,2,8,7,8,18),(753,'2015-03-10 21:49:29','2015-10-11 16:46:30',1,30004409,7,2,8,17,13,13,6,11,22,11,8,13,12,19,23,29,17,20,21,19,16,49,19,25),(754,'2015-03-10 21:49:29','2015-10-11 16:46:30',1,30001814,27,12,22,15,31,31,6,8,28,7,15,15,15,19,6,4,9,19,2,0,5,5,6,8),(755,'2015-03-10 21:49:29','2015-03-10 21:49:29',1,30001609,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(756,'2015-03-10 21:49:29','2015-10-11 16:46:30',1,30003253,7,5,40,7,8,5,6,5,3,3,3,1,1,6,1,0,5,4,0,2,6,6,5,6),(757,'2015-03-10 21:49:29','2015-10-11 16:46:30',1,30000994,2,4,2,3,2,5,1,0,2,1,0,3,1,2,4,3,0,0,1,1,12,3,6,0),(758,'2015-03-10 21:49:29','2015-10-11 16:46:30',1,30001312,26,5,15,10,18,12,13,13,9,39,39,32,28,23,75,28,10,18,13,14,11,8,6,12),(759,'2015-03-10 21:49:29','2015-10-11 16:46:30',1,30001284,4,9,0,0,3,1,3,0,1,5,6,2,3,7,2,5,6,2,14,32,8,0,1,4),(760,'2015-03-10 21:49:29','2015-10-11 16:46:30',1,30001990,110,22,144,36,30,23,14,14,30,23,16,11,8,25,13,11,7,22,82,10,12,15,23,19),(761,'2015-03-10 21:49:29','2015-10-11 16:46:30',1,30002895,37,15,67,14,13,14,5,13,19,266,257,377,243,495,474,434,333,197,404,208,301,903,200,114),(762,'2015-03-10 21:49:29','2015-10-11 16:46:30',1,30002131,3,6,0,1,2,7,3,1,0,0,11,5,2,4,0,1,3,2,3,1,1,0,0,0),(763,'2015-03-10 21:49:29','2015-10-11 16:46:30',1,30000271,5,8,6,12,2,20,1,6,1,0,0,0,0,0,4,0,0,1,0,1,0,3,4,0),(764,'2015-03-10 21:49:29','2015-10-11 16:46:30',1,30005130,5,2,2,2,1,0,0,0,0,8,6,0,6,2,2,3,9,9,0,2,1,1,1,1),(765,'2015-03-10 21:49:29','2015-10-11 16:46:30',1,30003301,16,35,105,17,41,49,25,24,16,25,13,26,22,12,31,29,20,21,22,10,13,33,32,29),(766,'2015-03-10 21:49:29','2015-03-10 21:49:29',1,30000392,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(767,'2015-03-10 21:49:29','2015-10-11 16:46:30',1,30003373,18,10,15,13,9,9,2,8,2,6,6,0,1,9,9,15,9,2,12,5,6,11,12,2),(768,'2015-03-10 21:49:29','2015-10-11 16:46:30',1,30004914,12,29,35,2,21,19,18,8,6,40,28,13,22,13,38,29,7,41,26,30,11,13,13,10),(769,'2015-03-10 21:49:29','2015-10-11 16:46:30',1,30000616,56,0,2,10,4,3,1,2,0,1,2,4,7,4,0,0,5,4,2,2,3,3,3,4),(770,'2015-03-10 21:49:29','2015-10-11 16:46:30',1,30000724,0,3,1,1,9,8,1,1,1,3,3,5,11,2,3,4,4,4,0,2,1,5,4,6),(771,'2015-03-10 21:49:29','2015-10-11 16:46:30',1,30003979,37,80,31,23,25,33,16,14,18,13,23,28,21,71,16,19,13,14,42,9,14,15,10,25),(772,'2015-03-10 21:49:29','2015-10-11 16:46:30',1,30002949,13,3,4,9,7,13,9,19,42,24,25,6,5,14,12,16,11,13,3,7,11,20,17,10),(773,'2015-03-10 21:49:29','2015-10-11 16:46:30',1,30004629,0,0,0,1,4,4,3,6,2,61,6,1,2,1,1,0,0,2,5,1,4,3,3,2),(774,'2015-03-10 21:49:29','2015-10-11 16:46:30',1,30004646,12,4,5,6,12,14,9,4,2,22,20,11,12,14,15,9,14,18,20,23,39,12,17,14),(775,'2015-03-10 21:49:29','2015-10-11 16:46:30',1,30003954,14,11,66,22,20,19,9,28,21,21,18,12,8,9,12,12,13,8,22,5,15,5,4,8),(776,'2015-03-10 21:49:29','2015-10-11 16:46:30',1,30002284,22,7,19,16,7,14,21,18,13,15,7,8,13,12,10,7,11,6,39,5,46,9,14,16),(777,'2015-03-10 21:49:29','2015-10-11 16:46:30',1,30004366,20,3,11,8,6,10,15,78,24,15,19,9,5,3,14,16,6,11,8,6,7,3,4,6),(778,'2015-03-10 21:49:29','2015-10-11 16:46:30',1,30001079,6,1,19,34,7,9,26,14,5,38,35,7,3,33,11,11,12,10,6,8,12,79,57,7),(779,'2015-03-10 21:49:29','2015-10-11 16:46:30',1,30003249,13,6,43,5,4,4,8,6,6,3,6,6,3,4,5,0,2,4,2,4,4,10,6,6),(780,'2015-03-10 21:49:29','2015-10-11 16:46:30',1,30000875,20,21,22,27,26,19,24,25,41,5,1,3,5,1,12,15,8,9,13,10,11,4,10,20),(781,'2015-03-10 21:49:29','2015-10-11 16:46:30',1,30004796,11,15,22,15,13,5,4,6,33,25,23,13,9,23,14,9,11,44,13,6,16,31,21,10),(782,'2015-03-10 21:49:29','2015-10-11 16:46:30',1,30003338,4,6,16,5,4,4,18,3,1,8,19,16,10,9,4,6,4,14,1,0,6,0,2,3),(783,'2015-03-10 21:49:29','2015-10-11 16:46:30',1,30002589,32,9,12,24,9,9,25,13,48,19,11,17,13,46,42,47,34,36,11,32,122,27,28,28),(784,'2015-03-10 21:49:29','2015-10-11 16:46:30',1,30001306,10,13,19,6,10,14,5,2,10,16,28,15,20,15,54,42,3,4,6,18,18,8,12,5),(785,'2015-03-10 21:49:29','2015-10-11 16:46:30',1,30005180,3,2,10,0,4,5,0,1,0,11,13,2,4,5,3,2,1,5,0,1,5,12,18,8),(786,'2015-03-10 21:49:29','2015-03-10 21:49:29',1,30000429,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(787,'2015-03-10 21:49:29','2015-10-11 16:46:30',1,30004169,21,18,1,14,6,3,8,3,3,22,25,13,12,15,10,10,6,9,2,1,2,9,10,5),(788,'2015-03-10 21:49:29','2015-10-11 16:46:30',1,30001154,35,28,73,80,53,33,55,47,121,152,176,157,101,183,182,286,80,107,187,81,170,134,216,102),(789,'2015-03-10 21:49:29','2015-10-11 16:46:30',1,30000723,0,2,0,5,0,2,1,5,1,2,2,4,3,2,2,2,7,5,1,5,4,6,5,8),(790,'2015-03-10 21:49:29','2015-10-11 16:46:30',1,30004884,11,3,0,1,3,4,1,7,2,4,2,6,2,4,12,7,3,3,54,22,16,8,5,17),(791,'2015-03-10 21:49:29','2015-03-10 21:49:29',1,30000399,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(792,'2015-03-10 21:49:29','2015-10-11 16:46:30',1,30000458,2,1,8,4,4,3,1,19,3,3,9,12,6,8,7,8,5,6,2,7,0,7,10,6),(793,'2015-03-10 21:49:29','2015-10-11 16:46:30',1,30001128,1,0,1,4,0,0,3,7,8,8,7,3,4,4,3,2,24,4,0,5,4,2,1,7),(794,'2015-03-10 21:49:29','2015-10-11 16:46:30',1,30004780,12,25,16,8,12,9,3,13,33,20,19,11,7,9,10,8,9,40,13,8,19,30,20,7),(795,'2015-03-10 21:49:29','2015-10-11 16:46:30',1,30004582,0,0,2,2,1,0,0,3,3,0,0,0,0,14,2,3,11,2,13,3,3,1,0,0),(796,'2015-03-10 21:49:29','2015-10-11 16:46:30',1,30001886,7,5,5,2,9,8,4,0,1,4,5,17,15,9,14,2,4,2,5,3,6,6,5,3),(797,'2015-03-10 21:49:29','2015-10-11 16:46:30',1,30000800,19,6,26,5,16,24,6,21,4,6,3,7,9,3,6,6,8,13,0,0,3,2,2,6),(798,'2015-03-10 21:49:29','2015-10-11 16:46:30',1,30000247,31,51,31,56,38,34,49,38,23,16,28,60,13,23,20,22,22,16,34,13,10,18,13,71),(799,'2015-03-10 21:49:29','2015-10-11 16:46:30',1,30002287,6,1,17,5,6,10,8,4,5,12,7,15,23,10,4,3,5,4,12,12,12,15,9,3),(800,'2015-03-10 21:49:29','2015-10-11 16:46:30',1,30002472,11,21,11,15,13,14,23,9,6,27,29,14,24,27,31,27,26,42,8,12,35,33,31,15),(801,'2015-03-10 21:49:29','2015-10-11 16:46:30',1,30000668,26,26,203,33,57,45,102,4,40,14,20,27,30,29,49,33,25,17,8,44,58,47,24,46),(802,'2015-03-10 21:49:29','2015-10-11 16:46:30',1,30002339,2,1,4,3,4,3,3,1,1,1,0,2,2,0,30,14,1,0,0,1,0,21,19,0),(803,'2015-03-10 21:49:29','2015-10-11 16:46:30',1,30004569,3,3,0,4,1,1,2,2,3,8,9,6,4,4,5,8,5,8,1,5,4,13,11,1),(804,'2015-03-10 21:49:29','2015-10-11 16:46:30',1,30001840,37,21,77,53,37,45,31,14,19,62,71,58,55,59,116,101,68,62,17,56,73,57,76,69),(805,'2015-03-10 21:49:29','2015-10-11 16:46:30',1,30001796,12,2,4,2,5,5,2,5,1,15,9,2,17,59,9,10,77,13,2,6,12,8,0,3),(806,'2015-03-10 21:49:29','2015-10-11 16:46:30',1,30004022,1,3,0,3,3,2,1,0,0,3,1,0,2,1,4,5,2,6,0,3,6,1,1,0),(807,'2015-03-10 21:49:29','2015-10-11 16:46:30',1,30000883,10,2,6,1,5,2,6,5,3,1,2,0,2,1,1,1,5,0,2,2,3,2,0,0),(808,'2015-03-10 21:49:29','2015-10-11 16:46:30',1,30000969,14,6,14,14,17,28,4,6,5,15,5,13,15,28,16,9,14,11,22,64,20,17,24,41),(809,'2015-03-10 21:49:29','2015-10-11 16:46:30',1,30004672,9,2,2,1,0,1,4,6,2,6,5,9,7,1,7,9,8,6,3,3,2,6,5,8),(810,'2015-03-10 21:49:29','2015-10-11 16:46:30',1,30003341,1,1,0,2,1,3,3,1,0,1,0,3,6,2,0,1,7,5,0,0,2,0,1,1),(811,'2015-03-10 21:49:29','2015-10-11 16:46:30',1,30001857,11,13,19,10,3,6,11,8,5,23,14,40,42,29,57,43,35,42,6,15,13,32,45,38),(812,'2015-03-10 21:49:29','2015-10-11 16:46:30',1,30003707,327,208,419,152,154,187,144,80,162,495,376,195,184,955,297,272,194,164,269,462,674,225,193,186),(813,'2015-03-10 21:49:29','2015-10-11 16:46:30',1,30005137,12,2,16,13,13,10,1,4,3,3,1,0,0,0,2,2,0,6,1,2,2,1,1,0),(814,'2015-03-10 21:49:29','2015-03-10 21:49:29',1,30000412,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(815,'2015-03-10 21:49:29','2015-10-11 16:46:30',1,30001764,8,1,5,4,6,7,2,1,11,0,0,15,6,0,4,0,3,0,0,2,2,4,9,1),(816,'2015-03-10 21:49:29','2015-10-11 16:46:30',1,30002618,0,0,2,1,2,0,3,0,1,0,0,1,2,0,0,0,1,0,0,1,0,3,3,6),(817,'2015-03-10 21:49:29','2015-10-11 16:46:30',1,30004179,16,3,1,8,14,15,6,5,8,11,6,14,18,11,2,10,4,6,3,5,5,3,5,12),(818,'2015-03-10 21:49:29','2015-10-11 16:46:30',1,30004619,37,17,28,34,30,22,22,8,17,20,21,21,21,46,20,27,38,12,76,46,25,41,8,21),(819,'2015-03-10 21:49:29','2015-10-11 16:46:30',1,30003650,8,4,5,2,7,5,7,13,2,0,0,2,3,6,10,6,3,6,1,8,8,3,3,3),(820,'2015-03-10 21:49:29','2015-10-11 16:46:30',1,30003319,0,1,1,0,0,0,1,4,2,1,0,0,1,1,0,0,1,0,4,1,0,1,0,6),(821,'2015-03-10 21:49:29','2015-10-11 16:46:30',1,30000587,0,5,8,3,1,1,1,1,5,15,6,2,0,7,21,15,2,7,2,2,2,7,5,7),(822,'2015-03-10 21:49:29','2015-10-11 16:46:30',1,30003977,11,3,1,4,6,2,9,1,4,7,10,4,6,0,9,8,6,7,3,5,2,6,7,14),(823,'2015-03-10 21:49:29','2015-10-11 16:46:30',1,30004544,12,7,9,2,4,1,16,8,7,4,4,5,4,4,3,2,7,5,1,0,5,2,3,5),(824,'2015-03-10 21:49:29','2015-10-11 16:46:30',1,30000491,0,0,2,4,1,0,2,1,1,7,14,15,11,13,29,19,22,6,11,76,41,29,18,25),(825,'2015-03-10 21:49:29','2015-10-11 16:46:30',1,30001193,225,37,22,36,37,23,27,33,46,52,69,46,42,66,50,51,52,36,31,67,42,35,28,48),(826,'2015-03-10 21:49:29','2015-10-11 16:46:30',1,30000702,1,8,2,2,1,0,0,1,0,1,3,1,1,7,2,0,0,2,0,0,1,0,0,0),(827,'2015-03-10 21:49:29','2015-10-11 16:46:30',1,30001283,2,8,1,1,8,5,3,0,2,2,2,1,1,7,2,3,8,4,6,11,28,2,1,3),(828,'2015-03-10 21:49:29','2015-10-11 16:46:30',1,30003967,5,15,6,6,7,10,8,15,28,9,19,17,14,29,20,11,11,8,14,14,19,8,9,26),(829,'2015-03-10 21:49:29','2015-10-11 16:46:30',1,30000476,3,1,2,3,4,4,1,3,3,3,4,7,8,12,20,10,15,11,21,187,5,11,11,8),(830,'2015-03-10 21:49:29','2015-10-11 16:46:30',1,30003100,16,20,20,14,9,21,30,9,7,6,6,10,11,8,16,17,12,17,8,19,23,13,14,17),(831,'2015-03-10 21:49:29','2015-10-11 16:46:30',1,30000852,2,2,1,1,1,0,15,5,7,3,1,2,6,3,3,2,1,0,0,0,0,7,3,1),(832,'2015-03-10 21:49:29','2015-10-11 16:46:30',1,30001954,17,7,13,3,3,2,15,1,7,13,9,8,4,5,12,7,7,13,16,7,9,10,10,13),(833,'2015-03-10 21:49:29','2015-10-11 16:46:30',1,30004708,35,28,70,24,36,28,44,20,16,194,209,55,59,43,152,201,93,45,47,75,100,67,106,161),(834,'2015-03-10 21:49:29','2015-10-11 16:46:30',1,30004359,8,14,16,31,17,26,60,26,27,15,14,4,3,15,16,23,16,9,4,3,5,6,11,9),(835,'2015-03-10 21:49:29','2015-10-11 16:46:30',1,30001870,10,6,19,8,9,6,4,6,6,20,16,19,25,34,37,43,38,22,15,23,27,48,38,57),(836,'2015-03-10 21:49:29','2015-10-11 16:46:30',1,30004605,27,13,20,24,31,37,32,8,9,10,11,8,6,3,10,12,14,8,43,28,28,36,26,13),(837,'2015-03-10 21:49:29','2015-10-11 16:46:30',1,30001537,5,5,31,2,1,4,2,1,0,1,3,7,6,0,3,4,3,7,0,10,4,5,6,5),(838,'2015-03-10 21:49:29','2015-10-11 16:46:30',1,30000314,10,7,7,12,12,6,5,1,6,9,10,17,7,13,9,10,17,22,2,5,8,11,11,5),(839,'2015-03-10 21:49:29','2015-10-11 16:46:30',1,30004850,2,1,0,0,0,1,0,8,17,10,13,8,3,23,5,8,5,3,12,4,11,4,5,4),(840,'2015-03-10 21:49:29','2015-10-11 16:46:30',1,30003335,62,23,39,22,29,21,57,3,13,8,14,21,11,20,10,12,11,11,12,40,13,16,10,11),(841,'2015-03-10 21:49:29','2015-10-11 16:46:30',1,30000769,18,1,7,11,8,13,0,4,20,34,21,13,17,8,2,0,5,5,1,11,8,0,2,3),(842,'2015-03-10 21:49:29','2015-10-11 16:46:30',1,30001210,44,47,47,41,21,22,23,25,29,21,14,39,33,47,21,6,25,28,28,29,34,16,25,17),(843,'2015-03-10 21:49:29','2015-03-10 21:49:29',1,30000362,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(844,'2015-03-10 21:49:29','2015-10-11 16:46:30',1,30001950,3,3,2,3,0,13,8,1,1,7,7,4,5,16,10,6,2,14,2,4,2,4,3,2),(845,'2015-03-10 21:49:29','2015-10-11 16:46:30',1,30002836,6,3,0,7,3,5,2,2,9,2,5,12,5,2,1,2,1,4,4,2,7,2,9,3),(846,'2015-03-10 21:49:29','2015-10-11 16:46:30',1,30003305,16,4,17,3,7,10,0,16,5,2,4,0,0,4,9,10,4,2,4,1,2,6,7,2),(847,'2015-03-10 21:49:29','2015-10-11 16:46:30',1,30001077,6,1,4,4,3,3,7,11,9,3,3,5,3,7,2,5,7,8,1,0,0,4,4,4),(848,'2015-03-10 21:49:29','2015-10-11 16:46:30',1,30003125,59,54,34,55,37,61,78,26,46,42,41,30,68,127,197,175,37,28,35,46,45,61,57,54),(849,'2015-03-10 21:49:29','2015-10-11 16:46:30',1,30002611,11,7,0,3,5,5,0,2,9,1,1,0,0,1,2,0,1,2,1,1,1,1,2,5),(850,'2015-03-10 21:49:29','2015-10-11 16:46:30',1,30005167,0,2,0,0,3,2,0,5,1,2,4,2,2,0,1,0,0,0,0,2,1,0,0,0),(851,'2015-03-10 21:49:29','2015-10-11 16:46:30',1,30003655,51,6,25,7,3,5,7,10,15,3,10,3,1,8,5,5,8,7,3,14,23,13,16,8),(852,'2015-03-10 21:49:29','2015-10-11 16:46:30',1,30003942,33,32,12,36,28,24,22,15,16,53,75,55,33,69,67,53,41,45,27,46,34,37,43,38),(853,'2015-03-10 21:49:29','2015-10-11 16:46:30',1,30000794,67,32,26,16,22,22,50,31,49,25,15,31,32,24,55,73,37,30,9,16,27,29,22,19),(854,'2015-03-10 21:49:29','2015-10-11 16:46:30',1,30004550,6,5,0,4,7,3,10,45,0,1,1,4,2,3,6,2,5,2,3,3,4,1,1,5),(855,'2015-03-10 21:49:29','2015-10-11 16:46:30',1,30003944,1,0,1,0,2,2,0,5,1,6,22,8,8,7,11,8,10,7,8,12,1,4,5,9),(856,'2015-03-10 21:49:29','2015-03-10 21:49:29',1,30000409,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(857,'2015-03-10 21:49:29','2015-10-11 16:46:30',1,30000317,10,7,4,10,6,8,5,2,3,6,6,16,7,4,6,16,24,22,2,2,4,25,7,1),(858,'2015-03-10 21:49:29','2015-10-11 16:46:30',1,30002113,0,1,13,3,0,0,5,2,0,0,0,0,1,0,2,1,0,0,0,1,1,1,0,3),(859,'2015-03-10 21:49:29','2015-10-11 16:46:30',1,30002952,33,23,18,18,26,35,26,11,31,29,21,29,25,26,32,30,17,23,5,25,23,25,25,19),(860,'2015-03-10 21:49:29','2015-10-11 16:46:30',1,30001896,13,8,17,20,10,3,1,7,9,8,13,12,14,38,26,29,23,19,18,17,26,30,22,17),(861,'2015-03-10 21:49:29','2015-10-11 16:46:30',1,30003150,6,0,4,3,4,6,5,5,2,0,1,4,2,2,1,1,6,1,3,0,0,0,1,1),(862,'2015-03-10 21:49:29','2015-10-11 16:46:30',1,30004558,1,2,1,2,1,0,2,1,6,1,0,0,0,1,3,2,1,1,0,2,1,1,1,2),(863,'2015-03-10 21:49:29','2015-10-11 16:46:30',1,30000259,4,5,10,12,17,10,12,4,0,9,8,7,23,10,12,11,7,10,2,5,6,14,11,13),(864,'2015-03-10 21:49:29','2015-10-11 16:46:30',1,30001993,30,44,39,24,22,28,19,11,13,8,11,15,9,10,14,7,13,4,16,14,6,11,11,15),(865,'2015-03-10 21:49:29','2015-10-11 16:46:30',1,30005092,3,1,6,2,3,5,3,3,3,4,1,0,2,2,22,6,0,2,1,1,20,4,3,1),(866,'2015-03-10 21:49:29','2015-03-10 21:49:29',1,30001459,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(867,'2015-03-10 21:49:29','2015-10-11 16:46:30',1,30003331,3,2,9,2,1,3,8,24,3,6,4,2,2,3,3,3,4,5,3,4,5,15,15,7),(868,'2015-03-10 21:49:29','2015-10-11 16:46:30',1,30004690,4,8,6,4,6,5,15,5,4,10,7,5,4,4,9,8,3,5,3,3,3,2,2,7),(869,'2015-03-10 21:49:29','2015-10-11 16:46:30',1,30001285,5,7,0,0,5,3,2,0,0,1,2,0,2,2,2,4,1,2,3,1,0,1,1,4),(870,'2015-03-10 21:49:29','2015-10-11 16:46:30',1,30001396,49,53,31,47,33,37,63,40,53,40,46,56,53,123,80,64,94,83,49,47,84,71,77,57),(871,'2015-03-10 21:49:29','2015-10-11 16:46:30',1,30001022,3,1,8,1,0,0,0,0,3,7,4,4,5,8,6,6,3,0,1,0,0,6,6,4),(872,'2015-03-10 21:49:29','2015-10-11 16:46:30',1,30003293,8,4,6,1,5,8,3,3,7,8,12,4,5,13,5,4,3,4,13,4,5,6,4,1),(873,'2015-03-10 21:49:29','2015-10-11 16:46:30',1,30000914,4,12,7,0,5,3,2,5,4,5,6,6,4,5,6,5,2,3,0,3,3,12,15,2),(874,'2015-03-10 21:49:29','2015-10-11 16:46:30',1,30000147,46,59,69,64,75,67,43,18,27,84,86,77,64,55,78,79,82,69,37,38,68,68,72,55),(875,'2015-03-10 21:49:29','2015-10-11 16:46:30',1,30001694,65,53,89,68,74,72,61,58,85,157,155,183,152,106,185,158,136,191,85,160,266,307,305,274),(876,'2015-03-10 21:49:29','2015-10-11 16:46:30',1,30003512,26,20,30,36,26,35,11,11,16,34,43,44,54,47,33,37,37,22,9,32,27,30,28,29),(877,'2015-03-10 21:49:29','2015-10-11 16:46:30',1,30004090,86,56,94,95,76,78,62,61,70,94,126,113,77,112,116,98,65,87,75,120,121,126,107,109),(878,'2015-03-10 21:49:29','2015-10-11 16:46:30',1,30005062,16,18,19,14,11,17,10,6,11,40,30,10,12,31,13,18,22,20,12,23,46,16,21,7),(879,'2015-03-10 21:49:29','2015-10-11 16:46:30',1,30004831,33,21,3,5,2,1,3,38,27,7,7,12,9,12,7,9,11,8,5,13,5,7,14,3),(880,'2015-03-10 21:49:29','2015-10-11 16:46:30',1,30002713,56,30,44,60,48,54,36,37,24,44,55,64,63,45,60,65,52,55,51,50,57,44,44,39),(881,'2015-03-10 21:49:29','2015-10-11 16:46:30',1,30000105,20,14,26,7,14,14,10,6,20,23,16,30,36,36,42,44,25,34,65,14,23,19,24,16),(882,'2015-03-10 21:49:29','2015-10-11 16:46:30',1,30005254,9,5,15,5,10,7,6,7,6,26,35,39,35,21,28,14,31,23,5,8,16,14,19,11),(883,'2015-03-10 21:49:29','2015-10-11 16:46:30',1,30013410,6,15,3,12,13,8,8,8,9,12,7,4,5,11,8,11,10,14,16,11,11,15,13,11),(884,'2015-03-10 21:49:29','2015-10-11 16:46:30',1,30002507,387,294,470,434,440,397,320,291,377,431,495,406,366,488,541,545,529,347,365,362,467,483,411,432),(885,'2015-03-10 21:49:29','2015-10-11 16:46:30',1,30004984,127,78,108,84,142,171,70,98,104,357,281,109,81,183,148,169,145,90,206,126,80,221,171,109),(886,'2015-03-10 21:49:29','2015-10-11 16:46:30',1,30002160,15,25,9,26,5,1,17,1,9,3,4,8,3,4,5,2,1,1,2,13,17,3,5,4),(887,'2015-03-10 21:49:29','2015-10-11 16:46:30',1,30004563,0,1,2,2,2,0,0,4,1,4,1,37,3,3,1,1,1,0,5,0,0,0,0,11),(888,'2015-03-10 21:49:29','2015-10-11 16:46:30',1,30005266,20,18,20,22,19,22,31,6,24,26,28,10,10,20,10,11,7,4,14,19,9,47,24,24),(889,'2015-03-10 21:49:29','2015-10-11 16:46:30',1,30003028,27,23,37,43,22,22,25,13,14,31,40,43,41,48,44,41,32,48,42,38,35,34,39,32),(890,'2015-03-10 21:49:29','2015-10-11 16:46:30',1,30004981,35,16,14,25,22,25,15,30,8,38,35,27,27,26,33,30,14,38,23,24,24,33,20,38),(891,'2015-03-10 21:49:29','2015-10-11 16:46:30',1,30002478,15,5,22,14,13,9,10,21,14,16,11,17,10,18,17,12,20,8,6,8,11,56,45,22),(892,'2015-03-10 21:49:29','2015-10-11 16:46:30',1,30002892,1,4,3,1,2,2,1,5,3,3,2,2,0,2,0,0,1,1,0,1,0,3,1,3),(893,'2015-03-10 21:49:29','2015-10-11 16:46:30',1,30003832,61,38,49,38,36,41,76,26,22,44,39,56,47,61,77,60,61,49,16,38,67,62,47,53),(894,'2015-03-10 21:49:29','2015-10-11 16:46:30',1,30001648,3,10,8,7,11,11,7,4,5,9,13,7,7,20,21,16,7,6,3,3,3,9,12,9),(895,'2015-03-10 21:49:29','2015-10-11 16:46:30',1,30015305,55,15,36,33,37,34,37,26,43,35,35,40,33,26,54,52,29,30,22,18,40,57,50,46),(896,'2015-03-10 21:49:29','2015-10-11 16:46:30',1,30001717,7,5,3,0,2,2,13,3,3,6,12,10,15,10,15,15,9,9,9,8,4,3,6,3),(897,'2015-03-10 21:49:29','2015-10-11 16:46:30',1,30003059,3,2,5,8,18,10,6,2,7,9,12,5,8,5,6,10,17,7,7,1,6,2,5,1),(898,'2015-03-10 21:49:29','2015-10-11 16:46:30',1,30003439,19,30,17,20,18,22,8,16,9,9,10,16,21,14,13,11,23,18,5,7,9,17,26,15),(899,'2015-03-10 21:49:29','2015-10-11 16:46:30',1,30002268,2,8,9,9,9,10,11,2,3,20,23,17,15,27,11,9,10,12,3,11,13,13,7,5),(900,'2015-03-10 21:49:29','2015-10-11 16:46:30',1,30002710,135,78,101,146,91,97,118,67,76,112,117,130,108,149,158,175,140,154,89,104,115,135,142,131),(901,'2015-03-10 21:49:29','2015-10-11 16:46:30',1,30005003,54,29,48,35,19,21,52,22,39,59,52,42,44,36,54,53,55,45,17,28,30,41,22,37),(902,'2015-03-10 21:49:29','2015-10-11 16:46:30',1,30002704,24,21,34,16,21,18,36,16,25,29,35,36,31,44,49,33,35,34,20,26,27,35,31,58),(903,'2015-03-10 21:49:29','2015-10-11 16:46:30',1,30005021,24,23,18,20,19,29,44,13,14,38,45,46,27,29,37,36,26,31,19,30,27,44,39,42),(904,'2015-03-10 21:49:29','2015-10-11 16:46:30',1,30002639,172,104,161,159,131,140,127,84,122,204,206,163,142,211,264,229,198,163,116,138,187,194,208,154),(905,'2015-03-10 21:49:29','2015-10-11 16:46:30',1,30002393,45,43,67,58,53,34,44,22,34,64,47,49,45,80,71,66,71,63,71,70,71,73,72,65),(906,'2015-03-10 21:49:29','2015-10-11 16:46:30',1,30002383,152,91,122,113,142,121,115,78,98,184,173,131,128,178,198,214,188,182,99,110,132,206,162,122),(907,'2015-03-10 21:49:29','2015-10-11 16:46:30',1,30002419,13,27,27,19,17,15,15,8,16,19,21,36,50,36,22,23,27,26,37,42,39,29,34,16),(908,'2015-03-10 21:49:29','2015-10-11 16:46:30',1,30005006,29,30,31,23,27,19,37,16,15,31,53,56,48,51,47,48,44,25,27,29,39,37,36,28),(909,'2015-03-10 21:49:29','2015-10-11 16:46:30',1,30005008,134,74,117,89,108,105,97,66,63,135,137,168,108,133,147,143,139,133,89,53,120,128,102,92),(910,'2015-03-10 21:49:29','2015-10-11 16:46:30',1,30003585,4,8,12,12,13,19,5,5,8,7,6,11,12,5,6,8,7,11,2,7,6,9,10,6),(911,'2015-03-10 21:49:29','2015-10-11 16:46:30',1,30002729,25,9,35,24,8,11,12,15,7,34,26,29,31,18,11,7,20,17,19,8,25,13,12,29),(912,'2015-03-10 21:49:29','2015-10-11 16:46:30',1,30002107,1,1,0,0,0,1,1,1,3,2,3,3,0,3,8,11,2,5,1,0,3,0,1,1),(913,'2015-03-10 21:49:29','2015-10-11 16:46:30',1,30003535,19,11,31,17,25,31,22,14,15,8,9,21,24,15,24,20,14,11,10,13,19,9,15,16),(914,'2015-03-10 21:49:29','2015-10-11 16:46:30',1,30002587,27,8,10,22,8,9,20,11,33,10,14,3,8,41,15,41,21,13,13,22,127,10,11,19),(915,'2015-03-10 21:49:29','2015-10-11 16:46:30',1,30003903,52,57,86,48,69,71,96,33,35,110,87,82,46,86,110,86,62,56,41,62,102,78,81,65),(916,'2015-03-10 21:49:29','2015-10-11 16:46:30',1,30004271,7,3,20,6,12,9,6,5,10,42,45,8,15,5,25,34,18,11,16,28,12,9,4,9),(917,'2015-03-10 21:49:29','2015-10-11 16:46:30',1,30001539,17,8,37,5,2,9,5,5,0,5,4,17,14,18,9,14,16,20,2,5,22,15,13,10),(918,'2015-03-10 21:49:29','2015-10-11 16:46:30',1,30005292,15,41,16,14,19,17,8,15,6,41,23,31,30,24,23,19,15,19,23,14,18,24,24,17),(919,'2015-03-10 21:49:29','2015-10-11 16:46:30',1,30003600,28,21,39,21,24,31,56,6,70,23,22,31,34,49,29,24,19,23,35,28,41,32,36,24),(920,'2015-03-10 21:49:29','2015-10-11 16:46:30',1,30000760,9,3,11,5,8,9,5,11,14,5,5,7,3,5,2,1,7,8,1,0,4,2,0,2),(921,'2015-03-10 21:49:29','2015-10-11 16:46:30',1,30002933,29,29,24,11,18,18,14,14,27,47,24,16,14,44,32,15,14,10,8,15,10,10,14,24),(922,'2015-03-10 21:49:29','2015-10-11 16:46:30',1,30000061,17,6,16,14,18,15,8,4,2,13,17,13,21,19,20,20,13,6,3,3,15,16,12,7),(923,'2015-03-10 21:49:29','2015-10-11 16:46:30',1,30002220,155,141,168,176,159,145,244,92,85,152,169,142,127,183,202,179,182,137,107,161,151,236,220,145),(924,'2015-03-10 21:49:29','2015-10-11 16:46:30',1,30003862,103,105,157,138,127,117,153,64,108,228,253,203,171,238,218,262,194,141,182,177,196,222,235,166),(925,'2015-03-10 21:49:29','2015-10-11 16:46:30',1,30003787,183,125,409,130,129,129,142,111,76,213,212,169,123,345,191,167,114,126,223,189,346,370,351,149),(926,'2015-03-10 21:49:29','2015-10-11 16:46:30',1,30002658,74,65,90,108,76,90,67,60,52,111,129,120,109,124,100,92,111,97,107,133,145,149,136,103),(927,'2015-03-10 21:49:29','2015-10-11 16:46:30',1,30003404,7,18,15,33,31,16,8,5,6,12,17,11,9,8,14,22,7,10,7,15,14,18,18,12),(928,'2015-03-10 21:49:29','2015-10-11 16:46:30',1,30004323,18,23,38,21,20,57,37,22,38,28,44,29,33,20,77,60,8,12,4,21,28,25,20,10),(929,'2015-03-10 21:49:29','2015-10-11 16:46:30',1,30000691,12,16,42,18,12,9,11,10,25,10,5,17,11,6,9,13,16,29,4,21,19,16,11,5),(930,'2015-03-10 21:49:29','2015-10-11 16:46:30',1,30002247,13,19,20,15,6,8,42,11,10,30,31,23,17,29,111,21,13,14,15,10,10,8,25,19),(931,'2015-03-10 21:49:29','2015-10-11 16:46:30',1,30004082,83,59,72,82,92,83,74,39,48,103,105,84,88,140,137,127,109,95,107,115,164,111,126,84),(932,'2015-03-10 21:49:29','2015-10-11 16:46:30',1,30005196,2,5,7,7,5,5,1,6,6,4,7,6,7,6,6,7,14,11,31,22,26,9,7,9),(933,'2015-03-10 21:49:29','2015-10-11 16:46:30',1,30001697,6,3,10,5,20,16,14,9,6,12,12,13,14,20,11,13,13,13,3,6,18,25,30,21),(934,'2015-03-10 21:49:29','2015-10-11 16:46:30',1,30002266,7,6,18,8,24,22,9,13,19,20,14,12,9,5,8,7,12,5,5,3,14,9,10,11),(935,'2015-03-10 21:49:29','2015-10-11 16:46:30',1,30004279,2,1,11,7,6,5,0,2,8,1,1,3,2,9,3,4,5,12,4,2,0,0,0,3),(936,'2015-03-10 21:49:29','2015-10-11 16:46:30',1,30001649,62,38,44,43,29,30,50,25,23,52,43,43,39,36,59,42,44,28,24,22,24,67,32,41),(937,'2015-03-10 21:49:29','2015-10-11 16:46:30',1,30001741,3,4,6,10,13,3,9,4,2,17,19,30,11,6,8,4,5,3,8,9,12,17,12,16),(938,'2015-03-10 21:49:29','2015-10-11 16:46:30',1,30045328,210,181,216,182,170,137,107,143,141,162,174,205,164,215,223,257,257,210,132,172,175,228,228,179),(939,'2015-03-10 21:49:29','2015-10-11 16:46:30',1,30000125,33,39,22,32,17,30,26,33,27,44,33,41,39,34,46,57,70,36,25,20,25,29,30,30),(940,'2015-03-10 21:49:29','2015-10-11 16:46:30',1,30002752,347,281,378,333,394,379,207,173,180,375,343,316,303,400,406,374,350,263,170,234,330,312,349,308),(941,'2015-03-10 21:49:29','2015-10-11 16:46:30',1,30000933,1,0,8,4,2,9,2,14,7,13,6,6,6,9,6,7,20,8,3,2,8,3,15,23),(942,'2015-03-10 21:49:29','2015-10-11 16:46:30',1,30003015,56,44,71,98,62,66,46,32,54,98,123,109,93,112,102,110,91,93,46,35,84,85,86,112),(943,'2015-03-10 21:49:29','2015-10-11 16:46:30',1,30002289,7,3,4,1,3,2,7,0,2,17,18,9,8,5,1,3,4,5,0,0,1,14,7,4),(944,'2015-03-10 21:49:29','2015-10-11 16:46:30',1,30005307,265,229,251,229,199,203,217,122,134,190,226,204,191,247,292,257,228,189,181,240,262,252,281,238),(945,'2015-03-10 21:49:29','2015-10-11 16:46:30',1,30001418,8,5,18,7,11,8,6,45,5,4,3,7,10,10,5,6,13,19,10,7,7,10,6,11),(946,'2015-03-10 21:49:29','2015-10-11 16:46:30',1,30002753,81,58,91,89,87,67,93,66,78,143,139,123,107,117,93,92,99,74,51,70,79,108,104,106),(947,'2015-03-10 21:49:29','2015-10-11 16:46:30',1,30003566,12,17,9,2,7,9,4,6,12,7,4,7,6,3,8,8,9,14,6,21,7,19,26,16),(948,'2015-03-10 21:49:29','2015-10-11 16:46:30',1,30002736,85,94,119,131,89,83,78,35,73,100,112,142,122,173,202,174,169,133,97,109,119,172,161,130),(949,'2015-03-10 21:49:29','2015-10-11 16:46:30',1,30003895,11,11,12,18,5,4,11,1,11,53,78,80,26,6,11,13,12,13,5,20,15,20,18,11),(950,'2015-03-10 21:49:29','2015-10-11 16:46:30',1,30000185,192,186,174,318,213,203,207,149,155,243,309,251,245,202,255,233,276,251,142,151,213,258,255,226),(951,'2015-03-10 21:49:29','2015-10-11 16:46:30',1,30001404,484,347,454,445,384,400,397,266,317,500,553,470,510,478,595,579,600,500,333,408,519,574,512,486),(952,'2015-03-10 21:49:29','2015-10-11 16:46:30',1,30000166,60,33,57,27,22,20,32,28,22,65,59,49,39,51,54,47,68,48,27,45,37,70,72,41),(953,'2015-03-10 21:49:29','2015-10-11 16:46:30',1,30002222,16,8,17,17,21,16,16,11,4,8,14,13,14,18,8,18,17,12,11,7,9,14,11,15),(954,'2015-03-10 21:49:29','2015-10-11 16:46:30',1,30001431,50,23,36,34,39,32,25,10,28,37,37,41,41,25,31,32,24,38,30,25,18,37,29,47),(955,'2015-03-10 21:49:29','2015-10-11 16:46:30',1,30045340,115,94,159,71,70,85,35,53,79,135,124,75,81,209,68,76,82,74,40,85,105,80,73,74),(956,'2015-03-10 21:49:29','2015-10-11 16:46:30',1,30001414,47,37,21,30,24,21,22,20,29,29,31,39,31,28,23,20,33,32,16,35,33,56,55,28),(957,'2015-03-10 21:49:29','2015-10-11 16:46:30',1,30001289,7,23,41,12,2,2,8,8,4,15,27,13,15,14,9,8,6,10,7,3,13,15,14,17),(958,'2015-03-10 21:49:29','2015-10-11 16:46:30',1,30004717,26,25,33,11,12,16,22,33,50,72,87,63,51,78,67,58,75,61,56,53,60,88,80,42),(959,'2015-03-10 21:49:29','2015-10-11 16:46:30',1,30004277,4,4,4,7,4,3,2,3,10,7,12,8,4,4,7,7,6,11,11,4,4,1,0,7),(960,'2015-03-10 21:49:29','2015-10-11 16:46:30',1,30005098,6,7,9,0,2,4,1,4,6,0,0,0,1,1,2,4,2,2,0,0,3,6,3,2),(961,'2015-03-10 21:49:29','2015-10-11 16:46:30',1,30003291,9,15,6,3,1,4,6,2,1,3,5,6,8,4,5,6,7,9,12,4,4,9,9,12),(962,'2015-03-10 21:49:29','2015-10-11 16:46:30',1,30002992,10,14,19,21,23,18,21,3,8,2,9,10,16,21,8,11,19,9,22,36,23,20,18,19),(963,'2015-03-10 21:49:29','2015-10-11 16:46:30',1,30000088,6,5,4,4,3,3,3,2,1,5,8,6,9,13,20,19,6,6,2,3,4,13,12,6),(964,'2015-03-10 21:49:29','2015-10-11 16:46:30',1,30004147,6,7,39,6,6,7,5,1,5,10,12,9,9,9,16,13,8,17,9,7,9,12,16,15),(965,'2015-03-10 21:49:29','2015-10-11 16:46:30',1,30000065,19,9,16,4,12,9,9,3,25,23,17,26,23,11,12,12,21,16,8,14,9,44,38,12),(966,'2015-03-10 21:49:29','2015-10-11 16:46:30',1,30002197,242,186,257,247,265,253,266,158,184,267,351,258,247,348,477,373,327,249,181,239,282,395,292,282),(967,'2015-03-10 21:49:29','2015-10-11 16:46:30',1,30015042,20,9,20,6,8,3,5,2,1,10,7,7,7,3,6,5,12,10,8,7,7,12,10,6),(968,'2015-03-10 21:49:29','2015-10-11 16:46:30',1,30011407,181,120,161,159,140,139,140,92,102,183,202,192,205,161,231,242,252,207,153,175,210,185,171,181),(969,'2015-03-10 21:49:29','2015-10-11 16:46:30',1,30045342,271,245,265,155,131,136,113,144,186,296,317,200,192,504,240,228,253,206,101,207,234,258,228,163),(970,'2015-03-10 21:49:29','2015-10-11 16:46:30',1,30003479,10,14,14,8,12,19,8,10,16,17,22,13,11,17,16,21,28,25,10,7,30,15,14,16),(971,'2015-03-10 21:49:29','2015-10-11 16:46:30',1,30000178,145,102,131,142,120,129,133,89,128,150,202,160,162,199,194,207,230,180,121,131,155,211,213,143),(972,'2015-03-10 21:49:29','2015-10-11 16:46:30',1,30000200,88,46,58,112,46,60,47,51,38,155,94,86,67,78,114,144,50,72,50,53,85,126,77,151),(973,'2015-03-10 21:49:29','2015-10-11 16:46:30',1,30001382,168,129,163,190,140,119,140,79,132,155,164,173,191,175,188,203,197,179,88,122,128,167,148,167),(974,'2015-03-10 21:49:29','2015-10-11 16:46:30',1,30000163,114,98,93,131,97,106,63,56,73,109,149,165,150,245,173,325,283,127,82,88,124,161,132,165),(975,'2015-03-10 21:49:29','2015-10-11 16:46:30',1,30000003,163,140,160,163,158,167,101,92,123,230,246,198,193,250,288,257,196,171,142,189,205,182,145,164),(976,'2015-03-10 21:49:29','2015-10-11 16:46:30',1,30001534,4,11,13,5,8,13,4,11,5,36,41,16,6,15,9,9,10,16,3,10,13,12,11,10),(977,'2015-03-10 21:49:29','2015-10-11 16:46:30',1,30004578,7,31,9,8,2,15,4,14,10,168,13,14,10,274,23,23,17,16,29,55,22,13,9,9),(978,'2015-03-10 21:49:29','2015-10-11 16:46:30',1,30002652,49,27,30,75,41,34,30,7,14,72,62,39,36,89,70,72,54,38,66,47,55,68,63,57),(979,'2015-03-10 21:49:29','2015-10-11 16:46:30',1,30003042,35,4,12,6,10,8,9,20,5,15,14,13,16,21,32,18,28,21,22,36,11,27,35,26),(980,'2015-03-10 21:49:29','2015-10-11 16:46:30',1,30002512,80,80,89,97,97,77,78,76,88,91,92,90,93,94,107,112,120,73,74,59,74,122,107,72),(981,'2015-03-10 21:49:29','2015-10-11 16:46:30',1,30005225,8,7,8,11,4,9,13,10,5,23,11,21,8,22,29,14,16,16,26,28,35,13,11,20),(982,'2015-03-10 21:49:29','2015-10-11 16:46:30',1,30003854,38,31,24,64,39,52,32,16,30,43,47,16,12,84,47,20,52,34,16,40,27,84,93,36),(983,'2015-03-10 21:49:29','2015-10-11 16:46:30',1,30002338,3,1,3,3,4,3,4,1,1,0,0,3,3,0,29,14,1,0,0,0,0,21,19,0),(984,'2015-03-10 21:49:29','2015-10-11 16:46:30',1,30003415,131,80,81,104,92,105,77,66,87,134,141,95,101,117,154,167,209,110,128,93,114,110,104,116),(985,'2015-03-10 21:49:29','2015-10-11 16:46:30',1,30002216,14,9,24,14,25,22,7,7,6,8,10,9,5,13,21,15,13,14,2,14,32,5,7,8),(986,'2015-03-10 21:49:29','2015-10-11 16:46:30',1,30003464,12,20,19,16,21,24,28,10,19,28,29,23,21,35,33,24,15,28,16,15,18,18,19,19),(987,'2015-03-10 21:49:29','2015-10-11 16:46:30',1,30003379,10,18,15,20,19,15,10,5,16,13,7,9,10,22,21,16,16,15,7,15,14,51,49,16),(988,'2015-03-10 21:49:29','2015-10-11 16:46:30',1,30003837,195,159,307,237,195,221,121,131,131,332,332,151,130,458,309,211,175,134,161,252,351,197,163,129),(989,'2015-03-10 21:49:29','2015-10-11 16:46:30',1,30003416,82,35,73,39,70,81,52,39,53,77,86,82,68,75,69,82,132,96,39,75,66,74,57,63),(990,'2015-03-10 21:49:29','2015-10-11 16:46:30',1,30005302,149,89,134,187,167,128,108,87,102,122,121,117,108,157,184,224,160,162,109,139,184,186,181,156),(991,'2015-03-10 21:49:29','2015-10-11 16:46:30',1,30005304,693,512,706,678,666,585,531,434,473,582,657,603,524,777,936,857,740,634,590,625,760,875,886,669),(992,'2015-03-10 21:49:29','2015-10-11 16:46:30',1,30003380,37,49,32,57,46,47,39,51,55,81,71,48,48,85,80,72,73,54,54,56,57,97,71,54),(993,'2015-03-10 21:49:29','2015-10-11 16:46:30',1,30003811,29,24,51,41,32,24,38,31,27,42,36,42,43,69,72,60,52,64,47,41,20,64,44,21),(994,'2015-03-10 21:49:29','2015-10-11 16:46:30',1,30004972,1145,903,1211,1136,1175,1101,945,723,798,1374,1412,1371,1212,1553,1648,1644,1492,1200,939,1105,1190,1472,1402,1195),(995,'2015-03-10 21:49:29','2015-10-11 16:46:30',1,30002698,6,58,10,8,12,10,17,13,14,13,8,18,22,12,9,12,13,10,15,5,15,14,15,10),(996,'2015-03-10 21:49:29','2015-10-11 16:46:30',1,30002754,464,362,493,545,411,428,355,278,346,431,474,475,448,457,554,550,568,463,310,363,418,519,488,464),(997,'2015-03-10 21:49:29','2015-10-11 16:46:30',1,30002712,163,83,121,151,135,131,127,98,70,155,143,181,166,145,180,167,166,158,122,163,156,183,136,121),(998,'2015-03-10 21:49:29','2015-10-11 16:46:30',1,30003521,157,115,150,126,113,119,147,77,126,232,189,177,146,186,240,251,190,158,146,152,170,199,190,173),(999,'2015-03-10 21:49:29','2015-10-11 16:46:30',1,30000034,12,9,21,23,22,12,16,4,9,21,19,29,22,32,27,32,18,21,14,19,17,23,14,13),(1000,'2015-03-10 21:49:29','2015-10-11 16:46:30',1,30004995,27,31,23,54,50,46,40,37,55,33,38,25,19,31,45,44,31,31,32,19,26,50,40,42),(1001,'2015-03-10 21:49:29','2015-10-11 16:46:30',1,30005009,48,25,30,20,28,20,17,15,9,23,26,43,53,24,33,20,20,36,33,21,20,33,40,25),(1002,'2015-03-10 21:49:29','2015-10-11 16:46:30',1,30002664,50,28,45,39,37,42,75,30,41,35,43,45,50,53,75,74,88,79,52,65,76,73,49,52),(1003,'2015-03-10 21:49:29','2015-10-11 16:46:30',1,30002727,27,11,26,22,9,8,15,18,9,46,29,26,26,18,13,9,18,15,17,8,20,13,11,45),(1004,'2015-03-10 21:49:29','2015-10-11 16:46:30',1,30003850,30,34,57,67,82,81,23,31,48,64,75,54,60,170,74,63,46,50,43,42,46,78,75,65),(1005,'2015-03-10 21:49:29','2015-10-11 16:46:30',1,30003800,40,79,118,98,96,104,67,56,74,38,52,63,46,40,47,62,24,32,36,45,44,36,44,93),(1006,'2015-03-10 21:49:29','2015-10-11 16:46:30',1,30001730,7,12,18,16,28,26,5,9,10,15,12,17,17,24,26,26,37,9,15,12,11,17,16,10),(1007,'2015-03-10 21:49:29','2015-10-11 16:46:30',1,30003841,31,43,217,46,37,33,45,25,32,33,25,31,35,69,112,62,33,18,33,11,39,24,28,34),(1008,'2015-03-10 21:49:29','2015-10-11 16:46:30',1,30002678,10,9,11,12,6,6,17,8,6,11,16,16,9,18,28,28,25,16,8,19,24,19,10,9),(1009,'2015-03-10 21:49:29','2015-10-11 16:46:30',1,30002407,5,10,4,6,9,7,5,2,5,6,10,8,5,13,11,14,3,12,2,2,4,6,5,11),(1010,'2015-03-10 21:49:29','2015-10-11 16:46:30',1,30003389,230,133,183,134,147,149,172,103,176,269,296,220,206,271,287,291,324,232,183,187,201,263,251,217),(1011,'2015-03-10 21:49:29','2015-10-11 16:46:30',1,30003917,39,32,46,25,23,33,36,18,15,56,46,23,27,59,47,40,36,34,16,49,86,50,52,42),(1012,'2015-03-10 21:49:29','2015-10-11 16:46:30',1,30002537,270,239,343,245,250,233,176,186,299,488,394,230,194,355,447,445,294,356,330,351,357,410,276,279),(1013,'2015-03-10 21:49:29','2015-10-11 16:46:30',1,30004983,12,7,6,19,12,10,5,16,9,30,36,23,26,13,17,15,9,28,17,23,16,8,11,24),(1014,'2015-03-10 21:49:29','2015-10-11 16:46:30',1,30002187,1853,1624,2022,1957,1855,1785,1640,1160,1391,2277,2451,2213,2050,2527,2640,2606,2475,2061,1715,2046,2317,2509,2372,2123),(1015,'2015-03-10 21:49:29','2015-10-11 16:46:30',1,30003848,6,9,7,7,3,4,7,2,11,17,15,14,18,16,28,27,10,9,14,17,8,22,14,19),(1016,'2015-03-10 21:49:29','2015-10-11 16:46:30',1,30003012,58,35,37,51,37,26,39,24,30,79,92,73,81,60,75,65,53,38,49,32,30,99,62,65),(1017,'2015-03-10 21:49:29','2015-10-11 16:46:30',1,30002644,85,139,86,95,83,77,103,93,99,79,77,98,92,121,121,129,96,118,83,136,87,114,92,139),(1018,'2015-03-10 21:49:29','2015-10-11 16:46:30',1,30005036,246,180,182,201,199,213,209,124,171,226,237,212,173,264,309,264,258,213,135,217,243,256,245,213),(1019,'2015-03-10 21:49:29','2015-10-11 16:46:30',1,30002511,236,150,194,137,176,168,157,169,94,223,210,213,221,212,252,229,222,223,155,185,209,232,207,211),(1020,'2015-03-10 21:49:29','2015-10-11 16:46:30',1,30005035,76,52,64,60,49,52,85,24,66,98,91,67,57,134,102,77,54,65,45,80,80,72,74,61),(1021,'2015-03-10 21:49:29','2015-10-11 16:46:30',1,30002547,166,146,143,150,162,130,161,74,142,187,190,160,149,216,256,221,220,161,107,171,178,204,206,186),(1022,'2015-03-10 21:49:29','2015-10-11 16:46:30',1,30002055,54,31,44,39,46,49,31,41,37,30,34,53,43,54,91,75,53,69,50,47,48,88,89,54),(1023,'2015-03-10 21:49:29','2015-10-11 16:46:30',1,30003480,21,17,14,8,12,13,7,9,10,13,14,10,7,9,12,18,28,23,10,3,27,15,12,15),(1024,'2015-03-10 21:49:29','2015-10-11 16:46:30',1,30005329,7,16,6,8,8,8,14,5,8,10,12,35,18,4,12,13,17,12,11,7,18,22,23,11),(1025,'2015-03-10 21:49:29','2015-10-11 16:46:30',1,30003847,20,14,20,21,19,9,20,5,12,34,30,17,26,31,49,43,28,19,25,29,17,37,28,32),(1026,'2015-03-10 21:49:29','2015-10-11 16:46:30',1,30000058,49,41,51,45,38,42,67,38,27,62,53,82,88,84,145,124,70,53,100,49,63,90,78,43),(1027,'2015-03-10 21:49:29','2015-10-11 16:46:30',1,30001392,104,107,110,150,123,128,115,91,107,137,136,138,123,132,163,153,165,125,63,99,138,167,148,121),(1028,'2015-03-10 21:49:29','2015-10-11 16:46:30',1,30005311,37,42,53,69,53,40,34,38,22,59,63,56,53,57,69,75,56,62,41,37,43,50,61,59),(1029,'2015-03-10 21:49:29','2015-10-11 16:46:30',1,30004527,20,20,13,8,11,10,11,9,14,21,9,13,19,20,6,8,6,14,9,3,5,4,6,12),(1030,'2015-03-10 21:49:29','2015-10-11 16:46:30',1,30003552,2,3,0,0,3,2,2,8,4,2,1,4,4,5,5,6,4,6,0,4,3,8,17,12),(1031,'2015-03-10 21:49:29','2015-10-11 16:46:30',1,30005279,2,14,1,8,5,3,4,5,3,13,17,8,4,9,5,7,13,10,1,3,20,20,19,4),(1032,'2015-03-10 21:49:29','2015-10-11 16:46:30',1,30004301,9,39,25,6,12,20,13,8,17,16,24,16,13,30,29,20,28,16,9,24,27,22,26,18),(1033,'2015-03-10 21:49:29','2015-10-11 16:46:30',1,30003398,12,21,16,16,7,5,11,1,6,14,15,17,14,16,11,15,9,6,5,5,7,26,25,30),(1034,'2015-03-10 21:49:29','2015-10-11 16:46:30',1,30003840,58,72,67,112,72,94,64,55,56,74,74,77,56,93,104,105,68,51,43,52,94,51,51,83),(1035,'2015-03-10 21:49:29','2015-10-11 16:46:30',1,30003571,42,36,81,43,44,31,28,19,31,47,65,48,34,39,56,42,27,25,30,28,54,39,33,21),(1036,'2015-03-10 21:49:29','2015-10-11 16:46:30',1,30003485,53,75,60,57,53,48,62,48,40,57,54,66,73,104,82,54,63,53,60,57,57,74,66,72),(1037,'2015-03-10 21:49:29','2015-10-11 16:46:30',1,30005028,19,9,17,12,12,11,13,12,2,10,6,9,6,15,13,16,12,21,8,4,11,24,22,12),(1038,'2015-03-10 21:49:29','2015-10-11 16:46:30',1,30005049,50,25,46,38,36,43,49,11,34,61,50,54,49,100,66,64,58,50,38,51,52,66,70,41),(1039,'2015-03-10 21:49:29','2015-10-11 16:46:30',1,30005022,7,15,19,18,12,11,23,14,8,13,18,8,8,7,10,8,20,23,18,17,8,12,18,24),(1040,'2015-03-10 21:49:29','2015-10-11 16:46:30',1,30003062,17,19,13,14,26,24,19,16,9,44,28,62,17,20,23,17,32,14,29,8,58,19,25,18),(1041,'2015-03-10 21:49:29','2015-10-11 16:46:30',1,30005264,21,19,27,26,38,46,25,12,24,32,36,13,10,30,13,20,8,14,19,20,10,46,26,27),(1042,'2015-03-10 21:49:29','2015-10-11 16:46:30',1,30003046,83,29,65,69,94,53,35,43,78,92,95,94,69,74,124,98,96,49,68,55,62,65,55,79),(1043,'2015-03-10 21:49:29','2015-10-11 16:46:30',1,30002051,49,70,67,85,44,51,51,53,50,73,72,65,78,92,91,82,67,60,44,66,71,68,74,62),(1044,'2015-03-10 21:49:29','2015-10-11 16:46:30',1,30003515,108,62,136,107,91,76,85,79,55,111,113,94,98,98,122,116,117,116,64,65,120,89,97,118),(1045,'2015-03-10 21:49:29','2015-10-11 16:46:30',1,30001439,93,2,29,8,17,13,8,8,11,23,31,25,20,14,11,18,21,11,17,11,15,12,11,29),(1046,'2015-03-10 21:49:29','2015-10-11 16:46:30',1,30001647,193,152,222,191,214,186,158,118,144,270,278,271,254,257,308,319,320,280,214,186,265,330,314,274),(1047,'2015-03-10 21:49:29','2015-10-11 16:46:30',1,30003071,59,70,111,97,72,98,49,31,35,69,73,60,39,86,58,63,49,48,52,88,93,77,51,48),(1048,'2015-03-10 21:49:29','2015-10-11 16:46:30',1,30025042,10,10,22,11,3,3,15,5,12,22,24,18,12,20,28,25,11,19,17,12,14,24,35,9),(1049,'2015-03-10 21:49:29','2015-10-11 16:46:30',1,30004989,8,4,6,16,12,9,13,4,12,13,16,9,5,14,19,16,6,12,12,7,9,13,9,7),(1050,'2015-03-10 21:49:29','2015-10-11 16:46:30',1,30003791,16,26,10,14,19,16,21,21,7,25,30,9,12,19,30,28,20,14,12,15,13,66,50,18),(1051,'2015-03-10 21:49:29','2015-10-11 16:46:30',1,30002776,147,119,115,141,113,113,62,102,70,166,163,183,143,166,158,186,205,163,63,87,145,158,145,126),(1052,'2015-03-10 21:49:29','2015-10-11 16:46:30',1,30005326,57,41,68,68,81,69,54,29,43,54,46,51,62,78,99,119,116,88,90,49,66,89,75,88),(1053,'2015-03-10 21:49:29','2015-10-11 16:46:30',1,30004291,1,0,5,7,2,2,12,28,10,15,13,7,8,9,15,10,6,14,2,11,8,14,25,3),(1054,'2015-03-10 21:49:29','2015-10-11 16:46:30',1,30005309,106,116,120,138,151,127,116,104,98,115,125,142,120,213,235,210,199,125,108,143,161,167,161,137),(1055,'2015-03-10 21:49:29','2015-10-11 16:46:30',1,30004104,15,12,10,14,9,18,26,6,6,32,39,12,3,8,16,18,7,2,13,23,8,7,7,12),(1056,'2015-03-10 21:49:29','2015-10-11 16:46:30',1,30002081,10,11,3,12,7,5,15,19,4,24,12,36,42,5,8,8,10,6,3,4,5,6,6,17),(1057,'2015-03-10 21:49:29','2015-10-11 16:46:30',1,30003440,4,3,8,7,4,2,5,1,4,4,3,3,6,3,1,4,3,5,9,4,1,4,4,7),(1058,'2015-03-10 21:49:29','2015-10-11 16:46:30',1,30000132,164,108,131,96,104,102,87,102,86,122,128,147,122,151,154,160,160,97,57,91,116,127,115,95),(1059,'2015-03-10 21:49:29','2015-10-11 16:46:30',1,30002669,98,71,102,105,104,109,70,41,78,106,84,103,89,95,123,96,121,101,72,101,104,118,119,80),(1060,'2015-03-10 21:49:29','2015-10-11 16:46:30',1,30003426,18,23,12,16,9,17,8,6,15,7,12,6,7,17,21,21,11,8,3,12,13,8,11,13),(1061,'2015-03-10 21:49:29','2015-10-11 16:46:30',1,30005261,49,36,51,52,65,64,67,43,27,47,58,40,36,87,41,36,41,29,55,38,59,56,46,52),(1062,'2015-03-10 21:49:29','2015-10-11 16:46:30',1,30001357,20,16,8,12,22,23,26,22,11,35,25,43,62,40,55,81,68,46,11,44,65,33,22,50),(1063,'2015-03-10 21:49:29','2015-10-11 16:46:30',1,30003051,92,63,81,53,55,74,30,62,48,95,100,95,65,75,124,127,85,49,58,52,51,64,50,69),(1064,'2015-03-10 21:49:29','2015-10-11 16:46:30',1,30002805,617,428,628,589,586,521,489,421,444,562,601,612,555,656,758,751,706,589,426,484,564,709,720,645),(1065,'2015-03-10 21:49:29','2015-10-11 16:46:30',1,30005249,57,42,46,46,58,42,45,30,31,186,185,179,170,144,91,74,83,36,43,58,103,109,97,94),(1066,'2015-03-10 21:49:29','2015-10-11 16:46:30',1,30005252,12,5,11,11,5,4,14,7,4,22,30,40,13,20,14,10,18,8,9,8,13,18,18,14),(1067,'2015-03-10 21:49:29','2015-10-11 16:46:30',1,30004006,0,0,0,0,1,1,0,0,0,3,3,5,3,1,0,3,0,5,0,2,1,0,0,4),(1068,'2015-03-10 21:49:29','2015-10-11 16:46:30',1,30001216,48,15,15,31,27,25,21,23,35,88,78,35,37,66,76,109,86,44,46,52,163,44,43,32),(1069,'2015-03-10 21:49:29','2015-10-11 16:46:30',1,30021407,26,36,29,18,33,32,20,17,22,19,30,32,28,28,39,29,26,23,10,26,31,32,38,30),(1070,'2015-03-10 21:49:29','2015-10-11 16:46:30',1,30002453,32,33,13,38,52,30,26,25,12,5,10,37,44,8,11,9,20,10,1,9,4,1,12,5),(1071,'2015-03-10 21:49:29','2015-10-11 16:46:30',1,30005216,299,318,469,262,294,266,232,212,251,395,474,423,394,435,535,506,538,447,232,261,339,602,578,486),(1072,'2015-03-10 21:49:29','2015-10-11 16:46:30',1,30001114,4,0,1,6,8,5,0,11,0,3,3,0,0,0,1,1,4,5,0,4,2,0,0,4),(1073,'2015-03-10 21:49:29','2015-10-11 16:46:30',1,30004079,295,184,218,230,229,232,163,105,157,278,300,274,261,356,372,366,293,278,199,288,347,307,320,231),(1074,'2015-03-10 21:49:29','2015-10-11 16:46:30',1,30004124,19,14,11,15,16,11,7,16,14,7,13,17,6,13,17,9,5,10,3,6,17,7,2,13),(1075,'2015-03-10 21:49:29','2015-10-11 16:46:30',1,30004576,17,27,15,13,12,12,10,16,18,173,59,181,136,389,42,48,46,31,52,86,83,56,52,48),(1076,'2015-03-10 21:49:29','2015-10-11 16:46:30',1,30005019,50,46,45,50,48,45,53,34,23,43,51,51,43,67,97,80,88,49,26,53,55,66,71,58),(1077,'2015-03-10 21:49:29','2015-10-11 16:46:30',1,30002565,17,20,20,13,20,14,15,15,22,25,32,28,26,18,18,24,29,23,7,7,9,11,9,18),(1078,'2015-03-10 21:49:29','2015-10-11 16:46:30',1,30003656,1,7,5,2,5,7,0,7,5,0,0,0,1,2,6,3,7,3,2,4,2,1,6,8),(1079,'2015-03-10 21:49:29','2015-10-11 16:46:30',1,30001740,38,8,2,3,4,4,4,9,5,6,1,5,8,8,20,31,27,20,13,12,6,18,21,3),(1080,'2015-03-10 21:49:29','2015-10-11 16:46:30',1,30002551,21,19,9,18,56,32,16,28,23,49,69,17,15,19,15,20,6,29,5,7,7,13,8,12),(1081,'2015-03-10 21:49:29','2015-10-11 16:46:30',1,30002817,16,28,21,25,43,41,26,27,20,27,36,41,33,29,43,32,27,18,29,35,29,21,28,31),(1082,'2015-03-10 21:49:29','2015-10-11 16:46:30',1,30000092,3,4,3,3,6,5,13,4,3,19,19,19,16,6,10,15,5,9,5,7,7,13,11,10),(1083,'2015-03-10 21:49:29','2015-10-11 16:46:30',1,30004994,127,104,116,134,126,112,118,94,100,114,109,119,112,215,149,156,128,115,97,143,160,164,144,149),(1084,'2015-03-10 21:49:29','2015-10-11 16:46:30',1,30003590,29,27,48,63,103,85,37,21,33,51,62,48,43,34,62,51,68,34,31,19,48,79,74,64),(1085,'2015-03-10 21:49:29','2015-10-11 16:46:30',1,30002977,23,35,21,20,22,18,14,25,12,8,13,19,11,23,20,10,22,13,12,4,10,25,18,14),(1086,'2015-03-10 21:49:29','2015-10-11 16:46:30',1,30003487,225,141,211,229,195,166,150,119,163,233,283,197,215,270,306,314,278,254,168,176,220,233,227,231),(1087,'2015-03-10 21:49:29','2015-10-11 16:46:30',1,30004669,1,1,1,2,1,1,3,8,4,10,7,10,5,3,1,4,4,1,3,2,2,3,3,5),(1088,'2015-03-10 21:49:29','2015-10-11 16:46:30',1,30003824,26,17,56,44,29,33,25,22,14,31,22,33,30,44,48,47,33,36,24,25,18,42,31,15),(1089,'2015-03-10 21:49:29','2015-10-11 16:46:30',1,30002702,7,5,5,1,3,5,7,2,2,5,10,6,8,21,13,7,10,5,4,5,4,11,10,42),(1090,'2015-03-10 21:49:29','2015-10-11 16:46:30',1,30003030,221,196,208,288,206,159,220,147,152,324,286,272,282,367,385,380,335,266,212,220,294,331,330,320),(1091,'2015-03-10 21:49:29','2015-10-11 16:46:30',1,30002058,96,97,115,85,88,98,93,63,66,210,215,175,165,171,230,204,145,150,159,150,211,264,231,167),(1092,'2015-03-10 21:49:29','2015-10-11 16:46:30',1,30002648,79,60,74,118,81,54,107,51,77,145,121,93,92,153,158,155,116,102,84,73,123,120,109,120),(1093,'2015-03-10 21:49:29','2015-10-11 16:46:30',1,30003852,45,45,43,51,47,59,26,43,51,71,70,56,47,133,61,59,45,45,36,34,46,79,72,47),(1094,'2015-03-10 21:49:29','2015-10-11 16:46:30',1,30004118,10,10,9,9,6,4,4,10,6,6,28,8,7,18,10,17,14,9,8,4,7,17,10,9),(1095,'2015-03-10 21:49:29','2015-10-11 16:46:30',1,30002231,14,26,31,29,9,14,38,13,17,30,16,23,24,26,15,23,45,42,12,28,28,28,28,27),(1096,'2015-03-10 21:49:29','2015-10-11 16:46:30',1,30000099,19,15,5,7,18,19,6,8,15,12,16,29,17,9,20,25,22,25,17,15,13,28,27,21),(1097,'2015-03-10 21:49:29','2015-10-11 16:46:30',1,30002244,46,56,92,107,75,84,55,54,44,129,157,148,131,93,275,161,101,55,59,56,50,72,98,81),(1098,'2015-03-10 21:49:29','2015-10-11 16:46:30',1,30000656,36,39,182,33,113,77,115,15,53,65,59,63,40,60,94,83,47,22,26,53,61,72,45,54),(1099,'2015-03-10 21:49:29','2015-10-11 16:46:30',1,30002080,6,4,10,13,8,1,6,8,6,14,19,27,24,24,20,16,16,6,9,15,15,20,20,24),(1100,'2015-03-10 21:49:29','2015-10-11 16:46:30',1,30005239,29,34,49,21,38,44,24,21,20,32,48,18,18,41,30,36,41,29,47,31,45,61,52,56),(1101,'2015-03-10 21:49:29','2015-10-11 16:46:30',1,30003595,3,8,0,5,4,4,7,4,12,14,15,15,8,3,8,3,9,5,6,6,6,9,3,8),(1102,'2015-03-10 21:49:29','2015-10-11 16:46:30',1,30001704,54,16,8,4,10,13,5,8,5,11,9,14,7,3,2,7,3,2,6,10,9,6,9,1),(1103,'2015-03-10 21:49:29','2015-10-11 16:46:30',1,30003411,168,135,125,151,113,118,117,94,87,191,198,149,136,207,211,212,232,156,108,125,170,169,160,169),(1104,'2015-03-10 21:49:29','2015-10-11 16:46:30',1,30003374,59,56,70,65,50,57,59,49,35,102,89,69,79,97,133,109,121,100,56,71,64,93,63,72),(1105,'2015-03-10 21:49:29','2015-10-11 16:46:30',1,30002205,85,63,83,62,92,79,43,63,50,66,59,85,86,118,115,80,75,64,56,88,77,125,110,88),(1106,'2015-03-10 21:49:29','2015-10-11 16:46:30',1,30003009,74,50,45,75,53,56,30,26,53,69,85,84,57,60,64,82,102,80,59,41,44,76,61,63),(1107,'2015-03-10 21:49:29','2015-10-11 16:46:30',1,30002066,87,123,137,70,85,79,70,64,93,288,266,97,71,129,141,126,142,192,155,116,178,141,104,127),(1108,'2015-03-10 21:49:29','2015-10-11 16:46:30',1,30000112,45,23,37,42,31,26,55,18,21,40,47,38,37,57,67,81,74,45,30,39,56,66,59,32),(1109,'2015-03-10 21:49:29','2015-10-11 16:46:30',1,30005001,274,197,332,273,294,293,281,192,190,347,421,423,388,412,474,498,452,294,227,300,331,413,358,336),(1110,'2015-03-10 21:49:29','2015-10-11 16:46:30',1,30002064,38,27,59,59,46,20,28,40,36,91,112,35,31,74,82,89,52,40,69,57,76,80,61,56),(1111,'2015-03-10 21:49:29','2015-10-11 16:46:30',1,30002240,8,3,1,5,3,4,7,4,3,13,27,4,3,1,7,4,9,3,7,2,7,4,4,2),(1112,'2015-03-10 21:49:29','2015-10-11 16:46:30',1,30005330,74,86,81,117,107,85,82,67,80,122,153,141,108,120,155,156,154,96,69,68,112,158,152,88),(1113,'2015-03-10 21:49:29','2015-10-11 16:46:30',1,30002253,8,8,14,9,19,23,15,11,2,8,12,12,9,28,6,10,18,8,13,19,35,17,7,22),(1114,'2015-03-10 21:49:29','2015-10-11 16:46:30',1,30002687,9,11,14,11,8,8,6,4,10,16,14,5,7,6,7,10,9,13,7,2,2,5,9,15),(1115,'2015-03-10 21:49:29','2015-10-11 16:46:30',1,30003556,11,13,23,11,3,5,12,7,21,5,20,19,22,22,19,16,13,14,9,12,11,16,12,12),(1116,'2015-03-10 21:49:29','2015-10-11 16:46:30',1,30002278,47,34,19,27,28,23,25,15,7,40,41,39,27,28,37,39,43,32,26,23,65,42,33,30),(1117,'2015-03-10 21:49:29','2015-10-11 16:46:30',1,30001381,87,38,29,41,44,47,50,20,25,48,61,31,42,77,65,64,60,52,29,23,28,34,31,45),(1118,'2015-03-10 21:49:29','2015-10-11 16:46:30',1,30003007,0,1,2,3,6,6,4,3,4,2,3,5,8,4,4,1,9,8,17,11,19,17,7,5),(1119,'2015-03-10 21:49:29','2015-10-11 16:46:30',1,30002078,7,10,7,11,9,9,6,4,6,14,16,16,10,21,15,13,9,5,9,9,10,7,8,9),(1120,'2015-03-10 21:49:29','2015-10-11 16:46:30',1,30005086,10,7,3,3,5,3,18,7,2,0,0,1,1,5,4,5,2,6,1,2,9,3,3,5),(1121,'2015-03-10 21:49:29','2015-10-11 16:46:30',1,30002960,213,104,128,132,77,77,96,68,66,74,87,66,61,86,80,88,83,39,76,52,84,70,52,64),(1122,'2015-03-10 21:49:29','2015-10-11 16:46:30',1,30003885,62,74,94,81,77,76,86,41,67,160,122,78,60,112,167,186,107,74,64,100,113,107,118,89),(1123,'2015-03-10 21:49:29','2015-10-11 16:46:30',1,30005065,8,29,11,19,9,13,7,15,21,41,35,4,6,12,12,17,15,7,18,5,14,18,22,7),(1124,'2015-03-10 21:49:29','2015-10-11 16:46:30',1,30003921,1,0,7,2,6,10,2,2,6,3,2,2,1,9,5,9,7,4,0,7,6,5,3,4),(1125,'2015-03-10 21:49:29','2015-10-11 16:46:30',1,30000012,37,60,38,28,25,16,23,22,13,52,55,62,35,133,43,59,51,47,45,65,58,49,43,39),(1126,'2015-03-10 21:49:29','2015-10-11 16:46:30',1,30045332,127,123,907,69,91,119,73,95,87,123,126,132,130,160,220,194,236,140,98,59,107,163,149,122),(1127,'2015-03-10 21:49:29','2015-10-11 16:46:30',1,30005251,16,6,11,9,12,7,13,9,4,112,58,39,55,31,11,16,12,3,9,8,17,18,10,10),(1128,'2015-03-10 21:49:29','2015-10-11 16:46:30',1,30001689,95,65,95,72,100,95,92,43,80,317,316,396,345,130,173,173,160,114,86,102,106,114,110,81),(1129,'2015-03-10 21:49:29','2015-10-11 16:46:30',1,30002084,55,48,48,61,55,61,32,89,40,139,112,71,63,89,108,103,94,110,72,61,78,109,95,89),(1130,'2015-03-10 21:49:29','2015-10-11 16:46:30',1,30001708,58,75,103,93,103,101,62,51,61,85,78,90,76,101,153,158,148,109,95,109,125,151,144,117),(1131,'2015-03-10 21:49:29','2015-10-11 16:46:30',1,30003384,74,69,73,86,70,69,70,31,52,94,91,62,59,95,77,105,107,94,50,84,68,129,139,90),(1132,'2015-03-10 21:49:29','2015-10-11 16:46:30',1,30000084,76,68,87,93,88,90,49,47,67,102,127,99,91,132,131,107,98,63,84,119,113,79,79,76),(1133,'2015-03-10 21:49:29','2015-10-11 16:46:30',1,30002978,154,75,70,63,49,43,44,40,40,35,46,44,26,47,59,46,61,30,38,40,60,36,33,45),(1134,'2015-03-10 21:49:29','2015-10-11 16:46:30',1,30003491,1868,1756,1869,1761,1791,1737,1484,1069,1235,2022,2277,2036,1932,2236,2438,2426,2320,1970,1492,1695,1946,2268,2153,1934),(1135,'2015-03-10 21:49:29','2015-10-11 16:46:30',1,30003890,8,3,20,11,1,5,13,5,13,37,58,9,13,21,10,10,14,12,21,17,13,10,6,4),(1136,'2015-03-10 21:49:29','2015-10-11 16:46:30',1,30045311,37,46,118,35,29,32,34,47,35,62,82,27,32,53,62,25,52,54,29,47,51,48,71,35),(1137,'2015-03-10 21:49:29','2015-10-11 16:46:30',1,30003919,38,22,33,23,15,21,30,15,12,30,33,18,27,43,38,26,20,21,12,42,61,33,39,31),(1138,'2015-03-10 21:49:29','2015-10-11 16:46:30',1,30003886,35,53,50,60,36,36,39,26,38,103,74,47,38,68,82,136,72,47,39,57,51,51,52,49),(1139,'2015-03-10 21:49:29','2015-10-11 16:46:30',1,30005214,304,227,789,334,298,256,258,186,204,313,358,347,327,358,459,466,441,338,211,251,302,421,428,415),(1140,'2015-03-10 21:49:29','2015-10-11 16:46:30',1,30000095,7,3,2,3,2,5,5,2,5,16,18,7,10,2,2,4,0,2,7,1,3,15,12,7),(1141,'2015-03-10 21:49:29','2015-10-11 16:46:30',1,30004093,28,19,16,22,11,16,18,8,9,19,21,31,27,36,44,39,48,20,20,12,26,30,29,20),(1142,'2015-03-10 21:49:29','2015-10-11 16:46:30',1,30002272,11,11,8,11,10,5,7,7,14,9,6,7,10,12,10,7,10,15,6,10,5,18,12,8),(1143,'2015-03-10 21:49:29','2015-10-11 16:46:30',1,30004156,41,35,55,37,36,38,34,18,20,50,54,59,81,60,87,70,58,48,73,67,38,35,43,36),(1144,'2015-03-10 21:49:29','2015-10-11 16:46:30',1,30000075,31,79,44,34,32,79,13,32,49,92,113,23,22,280,73,81,42,24,20,35,142,69,85,64),(1145,'2015-03-10 21:49:29','2015-10-11 16:46:30',1,30005224,14,15,14,16,11,11,13,16,11,30,19,25,17,37,31,19,21,26,40,33,43,17,18,23),(1146,'2015-03-10 21:49:29','2015-10-11 16:46:30',1,30001723,34,23,53,46,34,26,25,38,26,49,63,46,34,53,51,62,58,56,29,59,49,65,62,42),(1147,'2015-03-10 21:49:29','2015-10-11 16:46:30',1,30002724,36,23,27,33,24,19,32,12,17,41,26,38,28,25,42,24,23,17,20,12,21,27,30,20),(1148,'2015-03-10 21:49:29','2015-10-11 16:46:30',1,30000113,48,19,21,24,15,17,69,14,16,35,26,26,24,37,53,59,39,43,14,14,30,45,47,31),(1149,'2015-03-10 21:49:29','2015-10-11 16:46:30',1,30045323,16,11,21,14,12,18,48,44,23,21,30,23,26,15,18,26,38,23,30,33,18,60,54,58),(1150,'2015-03-10 21:49:29','2015-10-11 16:46:30',1,30001419,38,10,13,17,14,13,20,3,10,24,8,21,19,13,15,9,10,24,17,27,23,19,19,22),(1151,'2015-03-10 21:49:29','2015-10-11 16:46:30',1,30005077,28,15,42,20,35,40,14,12,23,26,16,18,20,25,23,28,42,37,10,21,35,31,21,24),(1152,'2015-03-10 21:49:29','2015-10-11 16:46:30',1,30002557,5,1,7,2,9,8,3,4,3,5,9,5,6,6,16,14,4,2,6,5,7,12,21,5),(1153,'2015-03-10 21:49:29','2015-10-11 16:46:30',1,30003031,171,117,190,146,140,155,122,87,103,171,165,163,131,206,256,239,194,170,134,161,172,193,180,171),(1154,'2015-03-10 21:49:29','2015-10-11 16:46:30',1,30003856,9,3,16,7,8,5,4,10,8,8,12,6,8,12,2,4,5,3,11,1,10,12,16,9),(1155,'2015-03-10 21:49:29','2015-10-11 16:46:30',1,30002701,42,36,49,23,30,29,63,15,20,44,29,43,39,71,72,59,62,68,36,22,51,61,49,48),(1156,'2015-03-10 21:49:29','2015-10-11 16:46:30',1,30002695,39,28,17,29,24,18,15,11,24,39,36,45,46,43,47,42,48,43,33,42,56,48,56,44),(1157,'2015-03-10 21:49:29','2015-10-11 16:46:30',1,30002489,36,34,44,45,38,26,34,21,27,24,22,29,37,25,21,18,39,24,25,10,39,102,50,65),(1158,'2015-03-10 21:49:29','2015-10-11 16:46:30',1,30005024,63,46,70,66,60,58,88,34,44,64,66,63,47,74,71,72,66,66,46,58,56,79,76,82),(1159,'2015-03-10 21:49:29','2015-10-11 16:46:30',1,30003038,201,83,130,152,156,147,155,100,110,174,191,200,192,226,275,229,286,238,186,204,173,196,217,225),(1160,'2015-03-10 21:49:29','2015-10-11 16:46:30',1,30002389,76,49,45,57,66,43,52,62,43,109,108,67,48,98,77,57,62,54,60,52,89,71,59,48),(1161,'2015-03-10 21:49:29','2015-10-11 16:46:30',1,30005010,31,10,24,16,9,7,20,9,13,21,15,21,31,12,23,20,22,24,33,14,13,13,17,17),(1162,'2015-03-10 21:49:29','2015-10-11 16:46:30',1,30003455,11,6,11,7,4,5,7,4,13,6,9,18,10,13,6,10,6,20,8,7,15,17,13,7),(1163,'2015-03-10 21:49:29','2015-10-11 16:46:30',1,30001678,27,57,45,43,50,63,41,48,32,63,66,75,66,73,62,86,82,94,35,34,60,91,83,88),(1164,'2015-03-10 21:49:29','2015-10-11 16:46:30',1,30004654,1,0,0,2,0,0,4,0,1,0,0,0,2,0,1,0,1,0,1,5,3,6,1,2),(1165,'2015-03-10 21:49:29','2015-10-11 16:46:30',1,30005197,19,22,20,10,4,10,12,22,11,12,11,12,12,18,16,15,16,9,35,14,21,38,40,7),(1166,'2015-03-10 21:49:29','2015-10-11 16:46:30',1,30005004,69,63,112,106,97,80,86,68,77,159,182,133,142,152,181,160,142,88,74,109,102,168,164,114),(1167,'2015-03-10 21:49:29','2015-10-11 16:46:30',1,30003273,1,11,25,2,8,9,7,4,12,5,11,4,9,8,11,5,15,11,6,7,6,5,22,7),(1168,'2015-03-10 21:49:29','2015-10-11 16:46:30',1,30002834,0,0,0,1,0,0,0,0,0,0,0,1,1,1,0,0,1,1,0,0,0,0,0,0),(1169,'2015-03-10 21:49:29','2015-10-11 16:46:30',1,30003827,84,76,181,92,71,87,62,62,57,94,84,106,112,131,151,140,112,163,76,107,144,112,102,101),(1170,'2015-03-10 21:49:29','2015-10-11 16:46:30',1,30002709,194,103,157,189,128,144,179,84,120,181,175,191,173,218,197,205,213,205,140,186,188,193,198,162),(1171,'2015-03-10 21:49:29','2015-10-11 16:46:30',1,30003849,2,9,6,2,1,2,7,3,3,6,9,14,18,6,17,13,8,6,9,7,5,12,5,15),(1172,'2015-03-10 21:49:29','2015-10-11 16:46:30',1,30002684,31,30,37,33,36,39,27,46,28,63,79,45,40,36,58,58,48,49,28,24,36,61,54,51),(1173,'2015-03-10 21:49:29','2015-10-11 16:46:30',1,30002395,24,17,47,30,31,19,19,14,14,20,17,10,9,27,21,19,33,15,27,26,22,37,40,32),(1174,'2015-03-10 21:49:29','2015-10-11 16:46:30',1,30002641,631,511,689,752,736,651,517,455,482,785,859,708,620,849,954,932,837,687,568,585,745,841,818,741),(1175,'2015-03-10 21:49:29','2015-10-11 16:46:30',1,30002542,194,170,244,182,170,169,120,95,190,312,272,207,147,354,436,435,272,425,255,327,387,329,262,230),(1176,'2015-03-10 21:49:29','2015-10-11 16:46:30',1,30002680,129,84,120,114,92,98,86,98,99,156,174,115,105,131,161,159,147,146,103,82,93,168,153,142),(1177,'2015-03-10 21:49:29','2015-10-11 16:46:30',1,30003818,44,49,45,55,88,116,26,29,36,90,56,54,52,46,51,36,43,30,27,46,29,73,86,55),(1178,'2015-03-10 21:49:29','2015-10-11 16:46:30',1,30001398,274,83,78,61,84,78,85,49,85,118,112,86,81,70,146,155,76,95,79,127,77,125,100,121),(1179,'2015-03-10 21:49:29','2015-10-11 16:46:30',1,30002059,19,15,19,16,27,30,13,20,19,12,21,34,26,24,44,31,29,49,28,20,28,25,23,18),(1180,'2015-03-10 21:49:29','2015-10-11 16:46:30',1,30002657,104,66,78,66,80,80,69,51,54,109,124,147,120,145,150,149,137,102,93,126,166,135,128,97),(1181,'2015-03-10 21:49:29','2015-10-11 16:46:30',1,30003801,61,132,151,122,155,155,82,69,87,103,68,81,73,74,77,74,67,46,45,72,53,81,101,133),(1182,'2015-03-10 21:49:29','2015-10-11 16:46:30',1,30002716,80,61,88,104,86,72,56,54,43,87,77,83,73,86,115,96,80,65,54,112,78,92,74,78),(1183,'2015-03-10 21:49:29','2015-10-11 16:46:30',1,30003915,8,6,2,4,1,2,1,3,1,6,8,12,11,7,3,4,3,2,3,2,1,7,6,8),(1184,'2015-03-10 21:49:29','2015-10-11 16:46:30',1,30002561,13,8,9,1,2,3,4,2,7,8,11,9,7,6,10,11,8,16,5,3,4,11,7,7),(1185,'2015-03-10 21:49:29','2015-10-11 16:46:30',1,30001361,96,37,93,46,43,44,67,34,47,120,91,111,122,115,120,121,72,66,59,57,97,88,102,76),(1186,'2015-03-10 21:49:29','2015-10-11 16:46:30',1,30003821,25,21,10,11,14,17,11,25,8,26,21,15,15,29,13,17,15,4,4,10,7,28,28,22),(1187,'2015-03-10 21:49:29','2015-10-11 16:46:30',1,30002523,121,76,120,114,116,105,89,69,105,168,156,123,131,144,151,165,127,131,72,85,100,156,120,111),(1188,'2015-03-10 21:49:29','2015-10-11 16:46:30',1,30001411,115,54,37,56,53,32,51,53,40,38,55,61,61,55,74,86,83,67,40,64,98,78,75,74),(1189,'2015-03-10 21:49:29','2015-10-11 16:46:30',1,30001384,120,105,122,127,112,98,87,56,70,99,111,162,142,119,174,177,136,148,88,91,111,172,163,135),(1190,'2015-03-10 21:49:29','2015-10-11 16:46:30',1,30002656,190,151,122,195,146,138,149,99,89,173,227,216,202,287,260,245,257,172,174,177,223,211,205,181),(1191,'2015-03-10 21:49:29','2015-10-11 16:46:30',1,30002744,131,112,214,219,300,292,78,70,70,115,89,98,86,92,106,107,137,105,66,91,109,150,173,135),(1192,'2015-03-10 21:49:29','2015-10-11 16:46:30',1,30004614,2,0,4,1,3,1,0,10,6,133,3,4,15,3,4,5,1,1,7,68,13,7,10,8),(1193,'2015-03-10 21:49:29','2015-10-11 16:46:30',1,30004249,4,42,125,28,78,54,39,34,51,12,12,14,10,26,20,25,24,8,14,23,36,26,23,9),(1194,'2015-03-10 21:49:29','2015-10-11 16:46:30',1,30002270,13,16,27,28,19,24,21,11,13,32,33,45,44,62,27,33,45,53,45,45,39,35,20,11),(1195,'2015-03-10 21:49:29','2015-10-11 16:46:30',1,30003843,15,22,30,10,11,14,9,9,13,13,35,17,17,24,29,24,35,14,18,19,39,24,24,32),(1196,'2015-03-10 21:49:29','2015-10-11 16:46:30',1,30003053,72,22,54,44,43,29,62,26,36,74,81,64,67,79,81,83,78,41,33,45,52,40,36,63),(1197,'2015-03-10 21:49:29','2015-10-11 16:46:30',1,30002089,17,15,24,37,35,36,18,53,11,49,56,27,32,34,43,44,41,48,23,15,21,47,41,57),(1198,'2015-03-10 21:49:29','2015-10-11 16:46:30',1,30003047,52,21,34,47,45,36,17,18,21,45,44,20,18,50,51,40,33,33,41,42,49,21,25,49),(1199,'2015-03-10 21:49:29','2015-10-11 16:46:30',1,30002530,149,109,191,156,174,172,137,112,151,171,189,143,128,175,207,209,188,122,115,111,181,174,151,155),(1200,'2015-03-10 21:49:29','2015-10-11 16:46:30',1,30005215,415,308,1219,335,400,353,340,218,241,391,464,445,424,440,576,587,515,436,253,290,372,506,540,526),(1201,'2015-03-10 21:49:29','2015-10-11 16:46:30',1,30000860,111,30,157,44,35,38,46,15,44,81,96,319,223,23,54,63,34,23,29,30,40,48,49,16),(1202,'2015-03-10 21:49:29','2015-10-11 16:46:30',1,30001203,45,11,11,21,12,6,15,19,37,342,165,107,89,105,130,213,305,47,90,263,312,223,194,50),(1203,'2015-03-10 21:49:29','2015-10-11 16:46:30',1,30004904,29,11,37,28,30,33,30,14,27,20,23,15,21,16,36,35,16,19,11,27,14,17,24,26),(1204,'2015-03-10 21:49:29','2015-10-11 16:46:30',1,30003756,44,61,78,76,61,43,44,28,26,66,71,74,57,244,40,38,35,42,40,61,103,28,47,44),(1205,'2015-03-10 21:49:29','2015-10-11 16:46:30',1,30003746,54,77,61,72,45,80,18,16,36,75,86,104,88,66,112,104,102,101,77,43,112,88,62,144),(1206,'2015-03-10 21:49:29','2015-10-11 16:46:30',1,30005094,3,5,7,6,1,3,1,2,1,1,0,4,4,3,7,4,7,9,1,1,1,5,2,0),(1207,'2015-03-10 21:49:29','2015-10-11 16:46:30',1,30003055,159,77,85,119,136,88,94,80,117,191,187,132,99,151,145,151,128,85,114,123,94,138,121,129),(1208,'2015-03-10 21:49:29','2015-10-11 16:46:30',1,30003093,8,8,17,10,23,18,7,8,8,5,5,9,9,16,19,20,13,2,31,25,14,17,7,9),(1209,'2015-03-10 21:49:29','2015-10-11 16:46:30',1,30002717,33,16,28,34,43,39,21,14,17,37,37,20,11,22,36,37,33,23,16,30,27,23,27,29),(1210,'2015-03-10 21:49:29','2015-10-11 16:46:30',1,30001342,0,2,3,1,0,0,1,0,2,2,1,2,1,2,1,0,0,1,0,1,2,2,3,2),(1211,'2015-03-10 21:49:29','2015-10-11 16:46:30',1,30000672,10,7,22,23,2,5,28,0,7,12,9,9,7,1,12,9,0,5,3,4,3,9,8,3),(1212,'2015-03-10 21:49:29','2015-10-11 16:46:30',1,30001070,5,3,35,37,10,17,29,10,2,29,23,21,17,26,19,13,12,1,7,5,3,71,53,12),(1213,'2015-03-10 21:49:29','2015-10-11 16:46:30',1,30000265,17,21,40,17,23,24,22,12,12,29,124,139,31,62,100,92,20,24,18,15,150,33,29,13),(1214,'2015-03-10 21:49:29','2015-10-11 16:46:30',1,30005275,25,36,26,15,40,52,33,19,13,50,68,41,35,38,34,31,31,47,21,23,40,56,79,59),(1215,'2015-03-10 21:49:29','2015-10-11 16:46:30',1,30003018,172,86,115,132,129,147,118,90,106,176,201,170,155,229,235,187,215,202,168,219,235,215,200,185),(1216,'2015-03-10 21:49:29','2015-10-11 16:46:30',1,30001711,48,57,72,67,98,95,66,37,55,63,68,69,71,101,121,111,97,69,50,76,112,133,122,109),(1217,'2015-03-10 21:49:29','2015-10-11 16:46:30',1,30000920,6,15,37,19,16,16,4,18,9,16,10,11,10,13,27,18,19,9,19,30,36,4,7,26),(1218,'2015-03-10 21:49:29','2015-10-11 16:46:30',1,30001705,9,10,13,0,8,12,11,4,6,13,14,4,4,3,11,15,25,17,7,9,20,38,20,7),(1219,'2015-03-10 21:49:29','2015-10-11 16:46:30',1,30002265,3,4,16,10,12,5,16,4,23,13,7,20,22,13,11,11,11,9,15,6,16,14,10,17),(1220,'2015-03-10 21:49:29','2015-10-11 16:46:30',1,30004450,44,11,17,30,16,19,27,21,63,23,17,30,20,96,74,78,55,57,50,48,144,83,45,65),(1221,'2015-03-10 21:49:29','2015-10-11 16:46:30',1,30000716,17,21,24,10,36,5,27,4,6,45,30,19,18,102,42,43,7,6,14,12,45,82,58,7),(1222,'2015-03-10 21:49:29','2015-10-11 16:46:30',1,30001944,1,3,0,1,4,1,2,3,2,3,3,4,6,3,6,3,4,7,0,2,1,1,1,4),(1223,'2015-03-10 21:49:29','2015-10-11 16:46:30',1,30002334,1,8,6,4,8,11,3,9,3,30,33,21,11,20,7,8,7,15,22,23,19,5,9,5),(1224,'2015-03-10 21:49:29','2015-10-11 16:46:30',1,30001156,37,37,35,108,15,16,57,28,61,208,294,253,131,249,270,289,254,151,267,108,206,165,196,150),(1225,'2015-03-10 21:49:29','2015-10-11 16:46:30',1,30000211,4,41,8,30,25,19,19,5,9,0,0,1,1,3,5,1,1,2,7,13,4,2,4,9),(1226,'2015-03-10 21:49:29','2015-10-11 16:46:30',1,30000435,7,3,6,1,0,0,4,17,1,2,2,4,3,11,4,4,5,4,1,3,2,3,2,2),(1227,'2015-03-10 21:49:29','2015-10-11 16:46:30',1,30004873,25,38,28,25,28,17,41,35,21,8,11,8,8,1,2,4,9,4,1,4,5,5,11,14),(1228,'2015-03-10 21:49:29','2015-10-11 16:46:30',1,30004030,7,12,0,2,6,11,2,1,7,15,17,3,3,14,12,11,8,19,4,6,11,30,40,21),(1229,'2015-03-10 21:49:29','2015-10-11 16:46:30',1,30005160,7,12,25,16,16,16,12,9,6,19,16,5,6,2,11,19,2,5,6,7,16,10,12,3),(1230,'2015-03-10 21:49:29','2015-10-11 16:46:30',1,30002029,90,25,86,129,157,70,24,16,18,10,9,4,2,19,13,8,32,8,7,4,19,7,7,11),(1231,'2015-03-10 21:49:29','2015-10-11 16:46:30',1,30002108,0,6,2,2,5,2,3,5,0,0,0,2,0,0,2,2,0,3,0,0,6,1,1,2),(1232,'2015-03-10 21:49:29','2015-10-11 16:46:30',1,30005088,6,6,7,2,13,14,11,10,12,10,6,6,10,12,33,19,11,10,7,5,7,11,8,3),(1233,'2015-03-10 21:49:29','2015-10-11 16:46:30',1,30001321,3,14,4,6,3,2,3,1,3,3,1,0,5,0,4,2,2,4,1,9,1,8,10,1),(1234,'2015-03-10 21:49:29','2015-10-11 16:46:30',1,30004040,33,49,137,70,165,119,48,10,35,74,88,77,45,50,40,30,38,30,35,103,45,30,32,18),(1235,'2015-03-10 21:49:29','2015-03-10 21:49:29',1,30000423,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(1236,'2015-03-10 21:49:29','2015-10-11 16:46:30',1,30000307,9,11,17,14,18,19,36,5,6,44,29,16,17,15,20,18,28,30,5,5,11,38,39,17),(1237,'2015-03-10 21:49:29','2015-10-11 16:46:30',1,30003250,1,2,23,4,1,1,4,3,0,2,4,3,0,2,3,0,1,2,2,1,1,4,0,1),(1238,'2015-03-10 21:49:29','2015-10-11 16:46:30',1,30002496,28,41,22,32,10,16,24,44,30,20,27,12,13,9,3,4,22,20,3,7,1,18,26,20),(1239,'2015-03-10 21:49:29','2015-10-11 16:46:30',1,30001910,7,2,2,13,8,8,7,5,4,3,3,6,3,13,11,16,14,3,2,9,4,10,12,11),(1240,'2015-03-10 21:49:29','2015-10-11 16:46:30',1,30004328,5,11,7,5,2,4,4,8,7,10,8,7,9,27,46,41,1,9,1,6,7,5,7,2),(1241,'2015-03-10 21:49:29','2015-10-11 16:46:30',1,30000817,2,0,3,0,0,3,1,2,5,7,11,8,11,3,1,1,3,1,0,0,4,0,1,8),(1242,'2015-03-10 21:49:29','2015-10-11 16:46:30',1,30002143,45,20,38,20,15,22,42,10,5,6,45,17,9,5,29,22,8,11,7,16,22,4,4,12),(1243,'2015-03-10 21:49:29','2015-10-11 16:46:30',1,30002157,3,3,0,0,0,0,0,0,2,0,0,0,0,3,0,0,1,2,0,1,4,2,5,4),(1244,'2015-03-10 21:49:29','2015-10-11 16:46:30',1,30000961,1,3,0,0,1,2,0,1,2,3,2,1,1,1,2,1,1,1,2,0,0,2,1,3),(1245,'2015-03-10 21:49:29','2015-10-11 16:46:30',1,30002105,50,10,70,18,17,15,25,19,8,45,44,18,12,21,52,53,24,20,5,38,16,38,38,18),(1246,'2015-03-10 21:49:29','2015-10-11 16:46:30',1,30000854,11,16,25,23,9,7,10,5,16,34,23,21,16,29,38,36,19,33,20,19,21,13,22,17),(1247,'2015-03-10 21:49:29','2015-10-11 16:46:30',1,30000624,25,22,29,35,23,18,6,21,17,12,10,22,23,16,45,39,25,24,20,15,23,4,4,13),(1248,'2015-03-10 21:49:29','2015-10-11 16:46:30',1,30004194,13,30,22,49,29,24,32,22,38,5,9,7,12,12,15,22,19,20,2,4,12,6,8,18),(1249,'2015-03-10 21:49:29','2015-10-11 16:46:30',1,30001076,7,6,18,37,16,8,18,22,22,15,16,50,22,13,12,20,13,21,6,5,12,17,15,18),(1250,'2015-03-10 21:49:29','2015-10-11 16:46:30',1,30000970,13,7,14,14,17,31,4,6,6,19,7,13,15,37,17,13,19,11,35,68,23,26,32,41),(1251,'2015-03-10 21:49:29','2015-10-11 16:46:30',1,30003730,47,50,74,72,74,51,89,52,94,67,73,86,97,120,179,155,89,72,118,89,78,82,83,97),(1252,'2015-03-10 21:49:29','2015-10-11 16:46:30',1,30000610,5,9,2,1,1,3,1,12,0,1,2,0,0,2,2,0,4,5,11,2,2,23,22,12),(1253,'2015-03-10 21:49:29','2015-10-11 16:46:30',1,30001215,14,1,6,2,13,14,2,3,7,32,29,11,9,52,34,46,41,22,12,20,16,25,24,4),(1254,'2015-03-10 21:49:29','2015-03-10 21:49:29',1,30001611,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(1255,'2015-03-10 21:49:29','2015-10-11 16:46:30',1,30004532,11,20,9,10,8,4,10,4,14,9,2,12,11,4,5,6,3,9,7,3,2,6,6,14),(1256,'2015-03-10 21:49:29','2015-10-11 16:46:30',1,30004590,9,66,29,21,14,23,10,24,16,149,34,27,16,535,35,34,27,34,52,72,42,27,23,17),(1257,'2015-03-10 21:49:29','2015-10-11 16:46:30',1,30003180,2,1,2,2,1,0,0,4,2,5,3,4,1,3,13,13,6,10,2,2,0,1,1,4),(1258,'2015-03-10 21:49:29','2015-10-11 16:46:30',1,30002850,12,15,9,6,14,15,8,10,10,0,4,8,6,21,18,18,9,7,2,3,1,7,14,13),(1259,'2015-03-10 21:49:29','2015-10-11 16:46:30',1,30002165,73,18,60,24,20,18,23,18,4,27,37,38,30,36,73,68,35,27,10,58,31,46,47,16),(1260,'2015-03-10 21:49:29','2015-10-11 16:46:30',1,30001115,0,0,0,0,1,1,9,1,3,4,1,0,0,3,1,2,1,2,1,1,0,1,1,3),(1261,'2015-03-10 21:49:29','2015-10-11 16:46:30',1,30004599,3,1,8,5,2,2,2,3,2,3,2,2,1,2,2,3,2,1,3,4,0,0,3,6),(1262,'2015-03-10 21:49:29','2015-10-11 16:46:30',1,30001346,43,23,42,35,26,26,18,19,20,20,30,19,14,31,26,31,23,24,15,23,33,17,9,19),(1263,'2015-03-10 21:49:29','2015-10-11 16:46:30',1,30002860,1,4,1,2,1,3,1,0,0,0,1,4,4,3,4,3,4,1,0,0,1,1,1,8),(1264,'2015-03-10 21:49:29','2015-10-11 16:46:30',1,30002436,4,1,4,2,0,2,2,2,2,0,1,8,4,0,2,2,1,1,1,2,1,2,2,0),(1265,'2015-03-10 21:49:29','2015-10-11 16:46:30',1,30001555,4,9,3,2,3,3,3,10,1,9,12,9,5,10,1,4,9,19,3,5,12,13,12,18),(1266,'2015-03-10 21:49:29','2015-10-11 16:46:30',1,30002012,149,11,6,6,9,3,15,3,1,1,4,3,10,1,2,4,10,4,3,2,2,8,6,6),(1267,'2015-03-10 21:49:29','2015-10-11 16:46:30',1,30004848,7,2,7,6,2,3,2,27,44,12,10,4,5,8,4,6,8,1,20,14,7,7,6,12),(1268,'2015-03-10 21:49:29','2015-10-11 16:46:30',1,30004346,24,35,31,29,30,32,24,39,24,17,28,20,22,24,26,26,18,26,11,28,21,17,22,29),(1269,'2015-03-10 21:49:29','2015-10-11 16:46:30',1,30002110,11,11,40,18,13,20,31,18,17,5,2,13,19,6,19,22,22,22,1,34,29,29,16,21),(1270,'2015-03-10 21:49:29','2015-10-11 16:46:30',1,30001529,6,9,3,2,4,6,2,0,2,23,20,9,5,11,11,5,10,13,18,12,17,10,10,12),(1271,'2015-03-10 21:49:29','2015-10-11 16:46:30',1,30005127,3,0,1,4,4,1,2,0,6,6,7,2,7,5,1,1,9,2,15,31,7,10,10,0),(1272,'2015-03-10 21:49:29','2015-10-11 16:46:30',1,30003601,14,25,55,17,32,51,84,10,26,19,15,26,24,31,17,17,25,22,24,19,89,24,23,5),(1273,'2015-03-10 21:49:29','2015-10-11 16:46:30',1,30003888,61,77,125,82,72,64,91,51,54,369,441,475,433,89,73,64,86,88,78,81,79,61,63,48),(1274,'2015-03-10 21:49:29','2015-10-11 16:46:30',1,30003525,493,541,605,599,529,486,486,300,342,512,576,509,496,583,682,673,674,481,412,501,535,696,638,566),(1275,'2015-03-10 21:49:29','2015-10-11 16:46:30',1,30003502,147,84,170,142,98,101,93,63,91,182,202,197,145,172,226,262,178,136,124,124,125,159,156,102),(1276,'2015-03-10 21:49:29','2015-10-11 16:46:30',1,30000041,7,6,4,4,4,6,19,3,3,11,10,10,13,14,14,8,18,5,18,25,7,8,10,5),(1277,'2015-03-10 21:49:29','2015-10-11 16:46:30',1,30003910,9,3,1,2,3,4,7,2,4,0,2,9,5,8,6,18,18,3,0,5,4,7,5,6),(1278,'2015-03-10 21:49:29','2015-10-11 16:46:30',1,30004261,10,13,5,8,9,7,4,2,15,10,9,11,14,8,3,6,13,6,17,15,15,5,7,8),(1279,'2015-03-10 21:49:29','2015-10-11 16:46:30',1,30002528,70,67,78,72,50,55,70,47,44,73,72,93,91,67,85,93,88,107,36,55,61,75,97,78),(1280,'2015-03-10 21:49:29','2015-10-11 16:46:30',1,30002634,839,642,906,916,918,822,658,542,610,932,1027,939,813,1121,1234,1180,1023,850,712,756,988,1092,1006,933),(1281,'2015-03-10 21:49:29','2015-10-11 16:46:30',1,30002690,5,5,10,8,5,3,3,5,11,15,12,8,7,6,5,9,11,11,7,7,2,4,4,9),(1282,'2015-03-10 21:49:29','2015-10-11 16:46:30',1,30005294,18,16,8,19,11,14,10,11,6,26,24,12,14,16,19,16,20,8,8,7,7,14,11,18),(1283,'2015-03-10 21:49:29','2015-10-11 16:46:30',1,30005257,30,28,53,20,34,45,31,22,16,54,74,48,35,34,34,35,39,51,23,31,50,64,55,44),(1284,'2015-03-10 21:49:29','2015-10-11 16:46:30',1,30004296,44,18,14,15,24,20,35,10,21,96,198,172,62,92,226,170,104,68,104,225,146,29,24,16),(1285,'2015-03-10 21:49:29','2015-10-11 16:46:30',1,30000085,63,77,78,108,70,69,44,53,35,80,113,68,52,163,99,98,113,62,73,86,96,80,87,76),(1286,'2015-03-10 21:49:29','2015-10-11 16:46:30',1,30003920,60,28,40,17,19,20,31,25,23,34,29,24,31,48,38,29,27,18,15,37,58,30,43,22),(1287,'2015-03-10 21:49:29','2015-10-11 16:46:30',1,30003548,327,383,382,370,324,305,247,162,206,355,385,333,347,382,429,413,443,302,288,346,394,472,400,401),(1288,'2015-03-10 21:49:29','2015-10-11 16:46:30',1,30002071,116,134,120,194,137,105,154,137,135,171,145,177,159,213,277,235,241,197,74,108,198,243,219,180),(1289,'2015-03-10 21:49:29','2015-10-11 16:46:30',1,30003819,56,64,50,56,57,83,29,36,34,98,71,49,50,46,54,37,42,32,23,43,28,74,87,61),(1290,'2015-03-10 21:49:29','2015-10-11 16:46:30',1,30002683,20,12,17,21,9,11,12,11,7,13,17,19,14,18,19,21,13,16,17,14,17,22,24,15),(1291,'2015-03-10 21:49:29','2015-10-11 16:46:30',1,30003478,17,15,46,25,18,27,11,18,19,34,35,17,27,46,33,49,56,52,15,15,42,29,31,54),(1292,'2015-03-10 21:49:29','2015-10-11 16:46:30',1,30002666,4,2,5,4,1,4,20,1,2,9,8,2,8,4,7,6,12,12,3,31,12,23,9,10),(1293,'2015-03-10 21:49:29','2015-10-11 16:46:30',1,30002199,87,100,157,146,147,141,135,90,93,177,250,211,215,222,346,282,222,175,110,153,137,258,199,170),(1294,'2015-03-10 21:49:29','2015-10-11 16:46:30',1,30003908,5,2,7,4,7,4,11,8,7,16,12,20,18,20,21,21,8,6,2,12,14,18,12,15),(1295,'2015-03-10 21:49:29','2015-10-11 16:46:30',1,30001670,118,72,120,73,109,99,99,76,118,216,251,239,175,180,242,241,213,239,180,305,492,365,348,331),(1296,'2015-03-10 21:49:29','2015-10-11 16:46:30',1,30002700,102,56,78,40,46,49,88,20,26,60,48,85,70,114,123,90,87,93,65,38,66,102,103,77),(1297,'2015-03-10 21:49:29','2015-10-11 16:46:30',1,30000039,5,9,5,7,6,8,2,6,11,13,10,13,18,19,28,21,21,9,15,30,17,11,12,6),(1298,'2015-03-10 21:49:29','2015-10-11 16:46:30',1,30004252,0,41,83,59,69,47,83,90,129,13,14,8,7,12,11,10,18,5,5,11,20,11,8,8),(1299,'2015-03-10 21:49:29','2015-10-11 16:46:30',1,30004851,2,2,0,2,1,1,0,8,5,1,1,1,1,2,1,1,0,0,0,1,0,1,3,1),(1300,'2015-03-10 21:49:29','2015-10-11 16:46:30',1,30001976,31,38,36,17,19,27,16,20,27,9,7,7,7,7,10,10,6,2,19,15,8,12,17,11),(1301,'2015-03-10 21:49:29','2015-10-11 16:46:30',1,30002498,4,10,2,11,0,2,3,5,5,2,2,0,2,2,0,0,2,2,1,2,0,10,4,3),(1302,'2015-03-10 21:49:29','2015-10-11 16:46:30',1,30005129,10,4,10,3,10,4,8,1,2,26,24,5,10,5,25,18,6,10,2,7,22,27,27,14),(1303,'2015-03-10 21:49:29','2015-10-11 16:46:30',1,30002048,737,582,747,830,760,702,627,500,534,833,928,811,688,912,1038,1049,916,736,616,678,789,978,923,839),(1304,'2015-03-10 21:49:29','2015-10-11 16:46:30',1,30005234,15,21,15,12,12,16,14,2,5,19,17,20,15,30,19,18,14,13,20,15,11,13,12,17),(1305,'2015-03-10 21:49:29','2015-10-11 16:46:30',1,30000110,7,7,8,2,1,4,6,5,4,8,12,5,6,40,13,11,4,4,8,6,7,15,10,4),(1306,'2015-03-10 21:49:29','2015-10-11 16:46:30',1,30003014,240,154,221,257,215,220,172,114,170,273,297,329,251,323,396,371,391,308,219,211,247,359,329,268),(1307,'2015-03-10 21:49:29','2015-10-11 16:46:30',1,30004138,3,9,7,3,3,7,3,1,2,7,13,2,3,9,5,3,29,10,4,5,6,10,11,15),(1308,'2015-03-10 21:49:29','2015-10-11 16:46:30',1,30000109,74,50,81,57,61,57,61,48,51,92,87,70,74,147,123,112,81,110,58,43,57,73,72,62),(1309,'2015-03-10 21:49:29','2015-10-11 16:46:30',1,30001885,5,0,4,3,3,3,6,0,1,11,13,11,11,1,4,0,4,2,5,1,5,5,5,4),(1310,'2015-03-10 21:49:29','2015-10-11 16:46:30',1,30004506,48,43,17,14,9,9,24,9,19,33,18,28,45,29,19,28,19,18,11,3,11,11,11,24),(1311,'2015-03-10 21:49:29','2015-03-10 21:49:29',1,30000355,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(1312,'2015-03-10 21:49:29','2015-10-11 16:46:30',1,30004427,1,3,1,0,1,0,0,5,1,0,1,0,0,2,5,2,3,2,12,2,1,0,0,2),(1313,'2015-03-10 21:49:29','2015-10-11 16:46:30',1,30002876,5,0,2,0,0,0,1,0,0,0,3,0,0,0,0,0,0,0,0,1,1,1,1,0),(1314,'2015-03-10 21:49:29','2015-10-11 16:46:30',1,30004417,3,0,2,1,0,0,0,1,2,2,1,1,0,2,2,7,3,1,0,1,0,0,1,2),(1315,'2015-03-10 21:49:29','2015-10-11 16:46:30',1,30005267,302,271,303,325,272,246,257,234,220,408,433,397,370,433,490,505,482,452,240,279,331,453,448,434),(1316,'2015-03-10 21:49:29','2015-10-11 16:46:30',1,30002282,893,648,869,850,814,759,625,524,660,1194,1233,1220,997,1137,1273,1320,1211,986,818,1108,1473,1232,1256,1108),(1317,'2015-03-10 21:49:29','2015-10-11 16:46:30',1,30004163,17,10,7,10,15,25,14,9,16,2,4,3,4,0,4,6,2,5,3,2,0,4,3,5),(1318,'2015-03-10 21:49:29','2015-10-11 16:46:30',1,30002252,37,31,39,46,60,65,17,39,18,51,45,39,36,39,33,29,22,23,30,53,56,28,34,25),(1319,'2015-03-10 21:49:29','2015-10-11 16:46:30',1,30003040,56,26,49,36,30,23,37,23,32,38,49,57,55,53,45,40,41,50,40,22,42,55,63,45),(1320,'2015-03-10 21:49:29','2015-10-11 16:46:30',1,30000115,3,10,15,11,10,5,9,3,4,7,7,6,5,15,13,6,8,8,23,12,5,35,31,9),(1321,'2015-03-10 21:49:29','2015-10-11 16:46:30',1,30003561,27,45,28,43,25,21,31,15,23,31,30,34,58,39,66,56,38,43,101,29,54,24,33,59),(1322,'2015-03-10 21:49:29','2015-10-11 16:46:30',1,30003555,26,37,37,12,24,29,26,14,13,23,18,16,30,13,13,15,28,14,14,15,24,27,18,30),(1323,'2015-03-10 21:49:29','2015-10-11 16:46:30',1,30004444,3,9,13,1,3,5,3,3,16,0,4,0,2,0,6,5,4,5,2,1,9,9,7,1),(1324,'2015-03-10 21:49:29','2015-03-10 21:49:29',1,30001469,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(1325,'2015-03-10 21:49:29','2015-10-11 16:46:30',1,30004422,82,4,3,12,11,14,8,3,43,18,19,11,9,20,28,27,17,29,43,32,38,53,17,42),(1326,'2015-03-10 21:49:29','2015-10-11 16:46:30',1,30003757,14,6,5,11,8,6,11,2,6,11,12,14,9,15,6,2,75,12,4,8,18,27,17,12),(1327,'2015-03-10 21:49:29','2015-10-11 16:46:30',1,30004333,89,89,169,127,197,165,124,172,135,52,84,57,49,47,103,90,50,48,28,60,41,46,50,49),(1328,'2015-03-10 21:49:29','2015-03-10 21:49:29',1,30001497,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(1329,'2015-03-10 21:49:29','2015-10-11 16:46:30',1,30003026,30,34,44,53,45,39,48,30,33,61,72,85,68,98,79,67,90,68,49,61,89,68,70,59),(1330,'2015-03-10 21:49:29','2015-10-11 16:46:30',1,30004420,8,10,15,7,8,10,5,7,18,5,6,1,3,5,13,15,33,17,9,30,17,13,9,16),(1331,'2015-03-10 21:49:29','2015-10-11 16:46:30',1,30000619,22,5,10,14,11,5,5,4,9,11,10,104,65,14,17,10,16,27,9,15,29,15,15,8),(1332,'2015-03-10 21:49:29','2015-10-11 16:46:30',1,30002843,2,3,0,1,0,0,0,0,0,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0),(1333,'2015-03-10 21:49:29','2015-10-11 16:46:30',1,30003327,59,33,67,62,39,35,71,63,78,43,46,35,38,33,25,24,29,20,19,69,167,57,46,40),(1334,'2015-03-10 21:49:29','2015-10-11 16:46:30',1,30004539,8,6,8,8,5,2,14,7,9,6,3,8,7,4,7,4,4,13,2,1,4,4,3,11),(1335,'2015-03-10 21:49:29','2015-10-11 16:46:30',1,30002438,39,59,31,64,50,49,66,35,42,58,60,56,63,26,43,39,68,61,30,68,72,135,103,74),(1336,'2015-03-10 21:49:29','2015-10-11 16:46:30',1,30002318,8,6,6,12,6,8,17,14,15,11,6,4,8,6,4,2,6,7,33,4,22,2,12,15),(1337,'2015-03-10 21:49:29','2015-10-11 16:46:30',1,30004545,12,9,9,3,5,2,15,8,3,4,3,6,4,4,4,3,7,4,1,1,5,3,4,7),(1338,'2015-03-10 21:49:29','2015-10-11 16:46:30',1,30002553,3,15,3,11,32,11,10,16,13,37,57,14,7,8,7,13,1,16,2,3,6,11,3,2),(1339,'2015-03-10 21:49:29','2015-10-11 16:46:30',1,30002649,10,6,3,6,8,5,13,1,7,19,13,9,8,16,14,12,12,7,14,10,6,7,4,8),(1340,'2015-03-10 21:49:29','2015-10-11 16:46:30',1,30003913,26,10,7,9,4,2,8,8,17,41,37,10,11,27,14,14,11,11,14,9,31,12,12,39),(1341,'2015-03-10 21:49:29','2015-10-11 16:46:30',1,30003397,53,43,38,37,14,22,30,5,22,43,42,36,25,42,42,46,32,18,24,24,43,71,76,64),(1342,'2015-03-10 21:49:29','2015-10-11 16:46:30',1,30002188,260,125,207,168,163,173,136,105,134,172,199,216,207,226,281,292,211,197,148,158,255,200,216,254),(1343,'2015-03-10 21:49:29','2015-10-11 16:46:30',1,30004106,19,13,27,15,20,18,34,6,18,29,36,18,19,9,18,18,18,15,53,49,23,19,23,12),(1344,'2015-03-10 21:49:29','2015-10-11 16:46:30',1,30002514,29,51,42,68,56,47,45,34,47,57,44,41,49,72,115,106,53,48,56,62,62,67,55,52),(1345,'2015-03-10 21:49:29','2015-10-11 16:46:30',1,30002387,71,85,71,94,56,54,55,41,55,84,50,73,62,166,118,138,151,98,77,60,109,117,94,126),(1346,'2015-03-10 21:49:29','2015-10-11 16:46:30',1,30002661,1059,768,1023,1106,913,858,935,703,777,1137,1148,1180,1072,1381,1585,1484,1275,1111,922,1116,1280,1362,1255,1116),(1347,'2015-03-10 21:49:29','2015-10-11 16:46:30',1,30002238,10,4,1,3,4,2,3,2,3,18,94,31,23,11,6,12,20,6,4,5,8,12,11,12),(1348,'2015-03-10 21:49:29','2015-10-11 16:46:30',1,30002715,388,264,390,407,413,356,323,252,261,466,468,424,401,553,557,510,495,435,310,417,440,480,422,412),(1349,'2015-03-10 21:49:29','2015-10-11 16:46:30',1,30003574,31,42,57,61,65,64,35,27,37,61,59,66,53,54,83,85,80,49,31,31,59,64,56,42),(1350,'2015-03-10 21:49:29','2015-10-11 16:46:30',1,30000504,0,0,1,3,0,0,0,2,3,0,0,3,1,2,3,3,4,1,2,0,0,2,2,2),(1351,'2015-03-10 21:49:29','2015-10-11 16:46:30',1,30001037,3,3,3,2,11,11,1,3,2,18,19,10,3,29,32,38,15,9,7,4,44,10,8,11),(1352,'2015-03-10 21:49:29','2015-10-11 16:46:30',1,30003230,5,9,13,14,17,14,5,4,6,0,0,5,3,4,1,0,0,1,0,0,2,2,0,0),(1353,'2015-03-10 21:49:29','2015-10-11 16:46:30',1,30000311,21,9,13,20,36,21,6,5,4,8,14,17,8,3,11,9,18,22,2,5,5,10,11,7),(1354,'2015-03-10 21:49:29','2015-10-11 16:46:30',1,30001235,72,38,46,45,47,38,77,32,46,150,159,71,52,46,39,56,40,44,21,26,15,26,25,25),(1355,'2015-03-10 21:49:29','2015-10-11 16:46:30',1,30002699,149,168,175,132,97,103,170,94,108,152,176,224,186,261,261,225,207,178,133,138,155,238,234,190),(1356,'2015-03-10 21:49:29','2015-10-11 16:46:30',1,30003789,11,32,6,15,14,22,22,26,11,11,8,10,14,18,27,24,14,16,8,10,11,17,24,8),(1357,'2015-03-10 21:49:29','2015-10-11 16:46:30',1,30003809,11,15,2,4,5,4,11,12,12,11,7,9,14,20,24,18,13,21,18,15,6,13,9,8),(1358,'2015-03-10 21:49:29','2015-10-11 16:46:30',1,30005034,4,6,5,8,8,12,5,3,4,9,9,4,7,66,7,9,11,12,6,4,11,8,10,1),(1359,'2015-03-10 21:49:29','2015-10-11 16:46:30',1,30002067,12,8,13,8,3,11,24,13,10,16,24,10,16,14,14,14,12,16,21,10,13,11,6,16),(1360,'2015-03-10 21:49:29','2015-10-11 16:46:30',1,30000986,4,5,13,12,9,7,5,5,21,8,11,15,19,2,1,1,9,21,4,6,0,6,6,13),(1361,'2015-03-10 21:49:29','2015-10-11 16:46:30',1,30003375,21,29,28,28,13,12,30,24,30,65,62,40,38,50,36,38,66,30,31,34,32,76,56,31),(1362,'2015-03-10 21:49:29','2015-10-11 16:46:30',1,30002703,12,21,21,19,9,15,18,8,18,12,18,32,15,16,19,29,23,12,16,14,15,26,25,17),(1363,'2015-03-10 21:49:29','2015-10-11 16:46:30',1,30000643,6,2,6,4,3,5,3,1,8,6,15,87,81,4,69,35,6,16,11,9,5,15,13,5),(1364,'2015-03-10 21:49:29','2015-10-11 16:46:30',1,30004399,1,0,8,7,2,4,14,1,3,21,25,20,11,46,31,19,23,41,42,54,49,13,16,18),(1365,'2015-03-10 21:49:29','2015-10-11 16:46:30',1,30000081,3,4,3,3,17,20,5,3,7,3,3,5,6,20,28,14,12,24,4,9,9,17,18,10),(1366,'2015-03-10 21:49:29','2015-10-11 16:46:30',1,30003866,85,80,129,116,110,97,142,60,90,247,243,163,164,195,241,274,195,141,194,163,183,208,219,152),(1367,'2015-03-10 21:49:29','2015-10-11 16:46:30',1,30002577,16,4,29,13,11,12,7,9,14,10,23,11,8,14,19,13,13,19,2,11,11,10,6,11),(1368,'2015-03-10 21:49:29','2015-10-11 16:46:30',1,30004117,10,10,14,11,12,4,9,12,7,9,29,8,5,17,14,16,19,11,9,6,8,21,11,15),(1369,'2015-03-10 21:49:29','2015-10-11 16:46:30',1,30001245,4,1,10,13,9,5,14,16,16,114,116,68,54,191,118,98,124,122,76,100,116,62,82,84),(1370,'2015-03-10 21:49:29','2015-10-11 16:46:30',1,30001286,14,21,26,23,16,14,14,14,13,39,47,5,17,49,60,33,12,20,11,19,19,40,25,27),(1371,'2015-03-10 21:49:29','2015-10-11 16:46:30',1,30002828,6,10,1,4,8,3,1,1,2,0,0,1,3,0,1,1,4,3,1,2,2,0,5,6),(1372,'2015-03-10 21:49:29','2015-10-11 16:46:30',1,30004804,15,1,4,6,10,17,9,13,4,10,32,17,9,26,16,15,12,7,1,12,14,9,10,6),(1373,'2015-03-10 21:49:29','2015-10-11 16:46:30',1,30002440,159,206,134,287,179,188,182,149,143,174,200,199,164,237,119,102,285,182,92,94,146,364,264,233),(1374,'2015-03-10 21:49:29','2015-10-11 16:46:30',1,30004371,9,2,3,5,7,4,2,4,4,15,11,18,18,53,49,14,25,10,4,19,28,11,15,20),(1375,'2015-03-10 21:49:29','2015-03-10 21:49:29',1,30001629,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(1376,'2015-03-10 21:49:29','2015-10-11 16:46:30',1,30004029,12,23,0,12,13,13,4,4,6,18,17,4,4,22,16,16,10,39,5,10,20,28,35,30),(1377,'2015-03-10 21:49:29','2015-10-11 16:46:30',1,30003993,3,2,3,2,0,2,10,0,4,0,4,1,0,1,0,0,0,1,1,1,3,1,1,1),(1378,'2015-03-10 21:49:29','2015-10-11 16:46:30',1,30002305,0,4,1,2,1,2,7,0,1,2,0,7,6,1,0,0,0,0,1,14,4,4,5,7),(1379,'2015-03-10 21:49:29','2015-10-11 16:46:30',1,30003138,6,6,6,6,3,11,9,1,5,4,7,12,17,13,4,2,6,2,3,2,9,11,10,7),(1380,'2015-03-10 21:49:29','2015-10-11 16:46:30',1,30003328,12,4,6,7,9,7,11,7,14,11,11,8,13,8,6,8,7,5,0,16,66,19,12,9),(1381,'2015-03-10 21:49:29','2015-10-11 16:46:30',1,30000925,2,5,1,12,4,2,1,2,0,2,1,2,2,3,4,1,2,0,2,2,5,1,1,4),(1382,'2015-03-10 21:49:29','2015-10-11 16:46:30',1,30004562,7,3,8,15,6,4,1,11,9,381,249,419,494,649,36,26,25,45,170,62,398,14,21,15),(1383,'2015-03-10 21:49:29','2015-10-11 16:46:30',1,30003121,4,9,8,7,2,5,5,6,10,15,18,5,12,4,4,3,1,3,4,4,3,2,3,1),(1384,'2015-03-10 21:49:29','2015-10-11 16:46:30',1,30002882,10,6,16,10,11,11,14,13,16,27,32,45,18,34,41,16,21,24,3,2,3,47,14,16),(1385,'2015-03-10 21:49:29','2015-10-11 16:46:30',1,30004434,9,2,0,19,20,7,14,4,6,0,0,7,4,9,9,11,23,13,5,16,9,23,12,15),(1386,'2015-03-10 21:49:29','2015-10-11 16:46:30',1,30002375,5,5,6,7,10,8,22,11,22,16,17,17,20,16,117,503,10,21,4,6,4,5,8,9),(1387,'2015-03-10 21:49:29','2015-10-11 16:46:30',1,30004378,64,48,46,23,31,41,21,57,39,38,39,40,45,29,34,36,27,17,18,48,21,30,25,29),(1388,'2015-03-10 21:49:29','2015-10-11 16:46:30',1,30000550,0,2,1,0,0,1,7,0,1,2,1,1,3,0,1,0,0,2,0,0,0,0,1,6),(1389,'2015-03-10 21:49:29','2015-10-11 16:46:30',1,30000632,17,4,9,6,5,4,1,13,0,4,2,12,12,5,35,35,3,8,0,3,3,0,2,4),(1390,'2015-03-10 21:49:29','2015-10-11 16:46:30',1,30003995,18,24,9,12,20,21,32,11,11,12,7,13,12,10,4,6,15,6,25,2,4,9,7,7),(1391,'2015-03-10 21:49:29','2015-10-11 16:46:30',1,30003976,8,4,6,21,9,6,5,1,1,2,2,2,1,0,0,0,1,2,0,1,1,1,1,0),(1392,'2015-03-10 21:49:29','2015-10-11 16:46:30',1,30001576,12,6,14,8,6,17,3,0,0,5,10,2,0,0,0,0,0,10,21,2,0,3,2,3),(1393,'2015-03-10 21:49:29','2015-10-11 16:46:30',1,30004564,1,0,1,5,0,0,0,5,2,140,24,232,129,10,14,7,4,11,7,6,0,3,5,5),(1394,'2015-03-10 21:49:29','2015-10-11 16:46:30',1,30000278,4,2,4,3,5,8,19,2,4,0,0,0,0,3,0,0,0,1,0,0,2,0,0,2),(1395,'2015-03-10 21:49:29','2015-10-11 16:46:30',1,30004818,32,28,8,8,10,7,3,55,39,4,4,5,4,13,9,13,9,2,5,18,5,5,4,2),(1396,'2015-03-10 21:49:29','2015-10-11 16:46:30',1,30004651,0,3,0,1,1,0,2,0,2,3,3,0,1,0,0,1,1,1,0,3,3,6,1,2),(1397,'2015-03-10 21:49:29','2015-10-11 16:46:30',1,30000302,6,12,20,28,15,15,22,7,10,3,12,2,4,8,22,22,10,10,3,5,15,2,4,12),(1398,'2015-03-10 21:49:29','2015-10-11 16:46:30',1,30001992,24,37,37,24,24,31,15,15,15,7,9,13,8,15,14,14,10,2,15,11,5,11,10,13),(1399,'2015-03-10 21:49:29','2015-10-11 16:46:30',1,30004319,10,12,51,24,27,43,19,23,21,15,23,16,11,7,26,26,12,13,4,7,2,6,11,13),(1400,'2015-03-10 21:49:29','2015-10-11 16:46:30',1,30000772,110,52,140,95,86,103,83,53,83,41,63,39,38,59,87,68,44,69,10,12,31,34,34,28),(1401,'2015-03-10 21:49:29','2015-10-11 16:46:30',1,30000273,20,6,1,5,5,4,4,10,1,0,0,5,5,2,0,0,0,0,0,0,0,0,1,1),(1402,'2015-03-10 21:49:29','2015-10-11 16:46:30',1,30001085,1,0,6,0,0,0,3,1,1,0,2,2,1,1,2,2,0,0,0,4,0,0,0,0),(1403,'2015-03-10 21:49:29','2015-10-11 16:46:30',1,30004372,12,1,6,6,4,4,7,5,6,12,22,25,23,68,31,17,30,17,16,19,40,15,20,27),(1404,'2015-03-10 21:49:29','2015-10-11 16:46:30',1,30004365,35,22,46,40,33,33,32,147,51,47,48,41,23,27,78,65,47,40,31,38,25,20,25,28),(1405,'2015-03-10 21:49:29','2015-10-11 16:46:30',1,30000567,10,4,7,12,8,4,8,10,8,5,2,0,0,0,0,1,0,1,0,0,1,1,2,1),(1406,'2015-03-10 21:49:29','2015-10-11 16:46:30',1,30004600,12,32,12,13,12,13,15,12,18,163,60,175,134,158,50,55,44,49,69,56,53,41,42,36),(1407,'2015-03-10 21:49:29','2015-10-11 16:46:30',1,30001124,6,3,7,11,0,2,5,6,5,2,3,25,7,8,5,4,7,4,2,0,3,5,5,7),(1408,'2015-03-10 21:49:29','2015-10-11 16:46:30',1,30003692,32,46,48,45,34,26,27,16,37,13,14,20,19,8,14,6,18,7,6,11,17,11,11,36),(1409,'2015-03-10 21:49:29','2015-10-11 16:46:30',1,30003169,30,12,11,24,9,7,23,9,21,36,31,18,26,29,31,20,22,15,27,17,34,82,87,115),(1410,'2015-03-10 21:49:29','2015-10-11 16:46:30',1,30002367,10,0,18,1,7,6,11,21,5,0,0,1,4,0,4,3,3,1,7,1,1,1,1,0),(1411,'2015-03-10 21:49:29','2015-10-11 16:46:30',1,30004380,20,32,43,30,20,19,26,46,26,21,27,13,15,20,14,20,12,20,10,25,19,16,21,23),(1412,'2015-03-10 21:49:29','2015-10-11 16:46:30',1,30003113,19,22,13,7,9,19,36,12,5,6,6,7,7,4,4,3,9,14,7,12,18,5,7,9),(1413,'2015-03-10 21:49:29','2015-10-11 16:46:30',1,30004889,4,0,0,0,1,1,0,4,0,3,2,2,0,0,1,1,0,0,3,4,7,0,1,0),(1414,'2015-03-10 21:49:29','2015-10-11 16:46:30',1,30003670,19,14,13,8,23,15,18,11,8,2,0,2,3,5,6,8,5,16,1,0,1,9,10,3),(1415,'2015-03-10 21:49:29','2015-10-11 16:46:30',1,30000568,16,12,16,9,13,5,7,10,13,6,7,8,8,9,4,7,4,6,11,9,7,6,26,3),(1416,'2015-03-10 21:49:29','2015-10-11 16:46:30',1,30004493,40,27,44,16,14,21,23,18,24,9,13,16,12,22,25,15,23,24,15,18,25,32,42,31),(1417,'2015-03-10 21:49:29','2015-10-11 16:46:30',1,30003780,28,14,10,15,8,10,4,6,16,8,11,16,12,8,18,13,15,21,13,4,6,12,7,12),(1418,'2015-03-10 21:49:29','2015-10-11 16:46:30',1,30000821,19,6,23,12,14,8,4,4,12,13,13,105,67,14,16,9,18,24,8,16,23,16,19,9),(1419,'2015-03-10 21:49:29','2015-10-11 16:46:30',1,30004597,5,1,10,3,1,2,2,5,2,3,1,1,1,2,4,7,2,3,3,4,0,0,6,8),(1420,'2015-03-10 21:49:29','2015-10-11 16:46:30',1,30004191,1,32,28,15,19,16,11,1,0,5,7,4,4,9,12,14,24,1,0,0,11,1,0,6),(1421,'2015-03-10 21:49:29','2015-10-11 16:46:30',1,30001355,0,3,2,1,1,2,2,0,1,4,3,2,2,2,16,15,0,1,2,6,1,2,1,1),(1422,'2015-03-10 21:49:29','2015-10-11 16:46:30',1,30000863,103,38,146,90,76,61,54,60,71,143,275,382,178,166,88,81,131,48,38,42,61,48,102,126),(1423,'2015-03-10 21:49:29','2015-10-11 16:46:30',1,30004824,4,16,16,21,24,24,25,95,11,7,11,22,18,13,17,16,6,7,7,9,9,11,6,15),(1424,'2015-03-10 21:49:29','2015-10-11 16:46:30',1,30005190,4,0,4,3,5,6,45,2,0,1,2,4,3,11,1,1,3,3,8,12,11,1,6,1),(1425,'2015-03-10 21:49:29','2015-10-11 16:46:30',1,30002858,18,21,9,10,8,7,1,3,2,37,43,30,27,16,33,29,14,18,2,5,15,9,14,21),(1426,'2015-03-10 21:49:29','2015-10-11 16:46:30',1,30004798,19,21,46,15,11,4,8,10,48,39,34,17,45,53,140,21,29,43,30,23,30,42,31,23),(1427,'2015-03-10 21:49:29','2015-10-11 16:46:30',1,30003697,130,53,47,75,122,135,73,47,46,17,38,110,102,164,108,61,62,22,44,41,27,32,28,41),(1428,'2015-03-10 21:49:29','2015-10-11 16:46:30',1,30000446,2,1,5,5,1,1,2,4,2,13,13,19,12,44,51,36,38,31,64,178,75,55,44,31),(1429,'2015-03-10 21:49:29','2015-10-11 16:46:30',1,30001533,11,9,18,6,3,5,3,9,0,34,28,15,4,20,7,8,13,23,6,8,22,14,16,5),(1430,'2015-03-10 21:49:29','2015-10-11 16:46:30',1,30005122,9,7,10,13,8,9,5,7,4,7,6,6,4,8,12,10,4,5,15,9,4,9,5,2),(1431,'2015-03-10 21:49:29','2015-10-11 16:46:30',1,30004791,2,0,3,0,3,1,0,6,4,20,16,19,11,30,37,25,33,20,7,15,7,28,18,9),(1432,'2015-03-10 21:49:29','2015-10-11 16:46:30',1,30002915,23,7,65,11,7,10,10,8,4,41,43,46,43,19,36,17,22,13,18,19,18,14,18,34),(1433,'2015-03-10 21:49:29','2015-10-11 16:46:30',1,30000700,3,7,8,5,6,7,0,3,2,4,9,24,16,15,1,7,4,4,1,0,4,6,1,0),(1434,'2015-03-10 21:49:29','2015-10-11 16:46:30',1,30003676,61,31,40,42,81,47,103,56,25,230,118,150,140,261,98,138,130,70,63,116,119,82,66,33),(1435,'2015-03-10 21:49:29','2015-10-11 16:46:30',1,30000743,4,5,13,1,5,6,6,7,13,3,1,6,8,9,6,7,10,27,5,2,0,2,10,1),(1436,'2015-03-10 21:49:29','2015-10-11 16:46:30',1,30000892,3,1,0,1,1,1,1,4,2,6,9,6,1,6,7,2,5,5,3,2,3,7,4,4),(1437,'2015-03-10 21:49:29','2015-10-11 16:46:30',1,30003109,20,20,13,17,7,13,18,19,29,29,26,39,59,100,230,230,59,68,39,41,125,86,51,91),(1438,'2015-03-10 21:49:29','2015-10-11 16:46:30',1,30002315,6,0,2,3,0,1,1,0,0,2,1,0,0,0,4,1,3,1,18,1,4,2,1,5),(1439,'2015-03-10 21:49:29','2015-10-11 16:46:30',1,30003934,2,4,23,1,5,3,8,5,5,4,3,15,10,6,1,3,1,1,2,1,1,3,4,2),(1440,'2015-03-10 21:49:29','2015-10-11 16:46:30',1,30003569,4,6,5,3,2,2,2,2,19,7,8,7,2,13,3,6,4,6,5,9,3,10,12,5),(1441,'2015-03-10 21:49:29','2015-10-11 16:46:30',1,30002207,2,9,7,21,10,13,6,1,6,3,2,1,2,4,12,9,6,9,1,0,8,10,13,7),(1442,'2015-03-10 21:49:29','2015-10-11 16:46:30',1,30000049,12,15,9,4,17,22,7,1,7,25,24,16,13,18,23,14,20,10,4,2,14,8,7,11),(1443,'2015-03-10 21:49:29','2015-10-11 16:46:30',1,30005287,2,3,7,4,0,0,9,2,0,1,3,0,0,2,2,2,3,3,8,1,7,9,7,2),(1444,'2015-03-10 21:49:29','2015-10-11 16:46:30',1,30002735,90,117,139,121,80,76,93,45,105,108,122,170,136,210,218,183,182,139,118,130,147,210,180,137),(1445,'2015-03-10 21:49:29','2015-10-11 16:46:30',1,30003048,185,50,107,158,169,126,98,70,88,198,190,168,139,183,189,184,146,123,157,157,125,129,150,183),(1446,'2015-03-10 21:49:29','2015-10-11 16:46:30',1,30002645,13,24,20,8,10,9,31,16,21,33,26,17,18,21,12,19,25,17,24,33,21,10,8,16),(1447,'2015-03-10 21:49:29','2015-10-11 16:46:30',1,30004973,280,135,153,156,147,143,159,151,141,169,196,240,181,241,259,229,210,213,148,175,219,271,268,229),(1448,'2015-03-10 21:49:29','2015-10-11 16:46:30',1,30005026,128,86,118,161,131,148,118,87,91,154,158,125,94,171,161,160,160,130,106,85,99,137,135,132),(1449,'2015-03-10 21:49:29','2015-10-11 16:46:30',1,30001205,56,78,45,67,62,65,29,53,70,192,171,107,109,157,142,132,118,88,89,131,180,133,142,63),(1450,'2015-03-10 21:49:29','2015-10-11 16:46:30',1,30001895,13,5,12,17,13,4,5,8,12,12,26,27,22,49,26,21,25,14,11,20,22,19,14,34),(1451,'2015-03-10 21:49:29','2015-10-11 16:46:30',1,30001206,44,44,27,48,58,42,22,39,47,94,58,62,60,65,63,55,78,55,73,108,152,63,67,46),(1452,'2015-03-10 21:49:29','2015-10-11 16:46:30',1,30004180,6,1,0,0,6,4,4,1,3,2,1,2,4,0,0,0,2,1,0,4,2,5,3,5),(1453,'2015-03-10 21:49:29','2015-10-11 16:46:30',1,30004841,0,0,0,0,0,1,1,1,1,2,3,2,0,3,0,2,2,0,0,0,1,1,3,2),(1454,'2015-03-10 21:49:29','2015-10-11 16:46:30',1,30002906,71,58,197,89,56,72,156,56,44,250,215,147,111,204,193,146,96,124,61,118,91,154,167,79),(1455,'2015-03-10 21:49:29','2015-10-11 16:46:30',1,30005283,15,16,21,9,11,14,13,17,21,34,23,8,6,39,12,15,9,20,25,14,10,65,21,10),(1456,'2015-03-10 21:49:29','2015-10-11 16:46:30',1,30004407,10,4,10,19,15,17,6,13,34,12,9,14,14,26,26,40,27,22,23,19,19,68,36,38),(1457,'2015-03-10 21:49:29','2015-10-11 16:46:30',1,30002483,2,4,2,8,7,5,3,2,7,4,2,0,2,0,0,0,0,3,2,9,4,5,7,2),(1458,'2015-03-10 21:49:29','2015-10-11 16:46:30',1,30004401,17,27,22,34,23,11,161,14,17,28,41,11,14,64,16,12,18,32,21,47,61,18,8,26),(1459,'2015-03-10 21:49:29','2015-10-11 16:46:30',1,30004601,4,4,6,5,1,2,4,2,5,5,5,2,2,4,10,11,5,4,14,15,2,4,7,6),(1460,'2015-03-10 21:49:29','2015-10-11 16:46:30',1,30002688,125,18,55,62,51,54,55,29,46,59,58,80,92,81,80,84,88,81,52,131,72,78,77,60),(1461,'2015-03-10 21:49:29','2015-10-11 16:46:30',1,30035042,13,7,16,28,25,18,9,4,4,20,15,10,11,6,15,18,10,10,25,12,9,4,6,16),(1462,'2015-03-10 21:49:29','2015-10-11 16:46:30',1,30003905,7,23,18,11,11,12,15,16,14,18,24,10,14,21,25,28,26,19,19,23,26,19,24,38),(1463,'2015-03-10 21:49:29','2015-10-11 16:46:30',1,30005228,4,3,0,2,0,1,2,4,1,5,4,6,4,2,3,1,8,6,0,10,11,1,2,3),(1464,'2015-03-10 21:49:29','2015-10-11 16:46:30',1,30001664,8,2,1,5,3,2,5,4,3,10,6,5,9,7,4,5,3,3,10,6,7,4,2,4),(1465,'2015-03-10 21:49:29','2015-10-11 16:46:30',1,30004108,1,5,3,3,5,1,15,4,7,2,3,1,1,1,7,6,7,3,19,38,8,9,16,7),(1466,'2015-03-10 21:49:29','2015-10-11 16:46:30',1,30025305,23,4,16,12,13,12,13,24,15,18,13,14,12,13,20,30,24,20,24,16,26,11,13,39),(1467,'2015-03-10 21:49:29','2015-10-11 16:46:30',1,30004122,53,20,23,32,40,32,27,31,45,25,31,36,40,50,43,49,27,23,21,16,40,41,35,41),(1468,'2015-03-10 21:49:29','2015-10-11 16:46:30',1,30005331,188,181,193,265,185,154,166,138,152,248,254,254,216,253,329,284,311,200,213,197,238,309,282,190),(1469,'2015-03-10 21:49:29','2015-10-11 16:46:30',1,30003834,19,9,15,12,10,7,34,9,1,15,12,14,15,12,12,13,12,17,2,6,20,25,19,14),(1470,'2015-03-10 21:49:29','2015-10-11 16:46:30',1,30004976,92,52,52,71,68,64,43,50,46,83,67,75,68,117,98,88,70,75,57,64,58,100,93,78),(1471,'2015-03-10 21:49:29','2015-10-11 16:46:30',1,30002224,54,38,40,41,20,21,38,15,10,50,60,43,41,70,62,50,51,34,37,65,60,86,65,42),(1472,'2015-03-10 21:49:29','2015-10-11 16:46:30',1,30003489,240,161,252,215,232,217,160,148,162,211,252,227,237,244,276,261,244,227,170,180,238,247,240,267),(1473,'2015-03-10 21:49:29','2015-10-11 16:46:30',1,30005237,57,36,56,26,35,49,44,10,27,30,40,24,21,47,43,39,41,44,50,38,74,51,45,37),(1474,'2015-03-10 21:49:29','2015-10-11 16:46:30',1,30002667,69,52,52,55,62,54,71,41,44,78,72,63,72,118,115,93,110,76,81,86,99,82,101,93),(1475,'2015-03-10 21:49:29','2015-10-11 16:46:30',1,30003529,44,62,78,42,42,42,54,36,28,62,74,78,77,56,71,59,53,66,43,47,85,88,79,52),(1476,'2015-03-10 21:49:29','2015-10-11 16:46:30',1,30003019,41,38,43,46,41,33,47,31,39,84,64,71,75,79,56,68,65,77,64,55,74,85,55,60),(1477,'2015-03-10 21:49:29','2015-10-11 16:46:30',1,30005327,35,31,48,54,65,54,40,24,30,37,34,39,38,51,58,70,60,56,65,35,41,47,32,50),(1478,'2015-03-10 21:49:29','2015-10-11 16:46:30',1,30003527,30,45,39,33,42,43,48,35,22,37,44,44,51,52,47,45,38,51,34,52,54,62,52,48),(1479,'2015-03-10 21:49:29','2015-10-11 16:46:30',1,30004250,0,18,31,4,20,30,7,14,7,8,10,7,5,9,3,5,12,5,3,7,16,12,12,11),(1480,'2015-03-10 21:49:29','2015-10-11 16:46:30',1,30000010,30,20,19,14,15,15,11,9,7,17,18,18,29,18,37,25,21,7,26,32,33,5,8,9),(1481,'2015-03-10 21:49:29','2015-10-11 16:46:30',1,30005253,5,4,3,7,5,4,4,2,7,12,13,32,18,16,16,13,10,3,15,10,15,1,9,19),(1482,'2015-03-10 21:49:29','2015-10-11 16:46:30',1,30003925,39,17,27,12,7,19,28,34,23,24,33,44,32,41,38,30,34,19,11,19,38,38,46,25),(1483,'2015-03-10 21:49:29','2015-10-11 16:46:30',1,30005051,17,23,41,33,20,15,36,30,41,52,59,45,43,32,52,54,53,30,16,14,44,39,50,33),(1484,'2015-03-10 21:49:29','2015-10-11 16:46:30',1,30002965,92,67,78,53,59,72,64,29,52,90,62,60,50,129,152,149,107,76,66,67,103,87,83,81),(1485,'2015-03-10 21:49:29','2015-10-11 16:46:30',1,30004210,15,6,7,9,15,11,4,4,8,5,9,6,5,5,13,7,0,7,0,0,3,9,18,5),(1486,'2015-03-10 21:49:29','2015-10-11 16:46:30',1,30000951,3,10,7,8,8,4,4,1,3,10,2,10,4,3,0,3,6,6,5,2,4,1,4,2),(1487,'2015-03-10 21:49:29','2015-10-11 16:46:30',1,30003363,2,11,0,3,6,8,2,4,7,1,5,5,1,6,0,1,1,3,3,0,6,1,2,0),(1488,'2015-03-10 21:49:29','2015-10-11 16:46:30',1,30005305,505,387,507,443,410,397,404,326,295,452,498,467,417,579,638,562,533,430,399,482,548,559,646,521),(1489,'2015-03-10 21:49:29','2015-10-11 16:46:30',1,30001926,7,6,12,14,13,31,8,9,4,21,12,8,9,26,20,13,22,13,5,13,9,7,7,10),(1490,'2015-03-10 21:49:29','2015-10-11 16:46:30',1,30002127,5,24,16,8,5,3,4,0,2,6,4,2,5,5,14,13,11,8,10,11,10,6,7,1),(1491,'2015-03-10 21:49:29','2015-10-11 16:46:30',1,30002170,179,75,116,65,108,93,96,79,45,85,95,78,67,104,138,121,108,44,86,246,226,103,104,72),(1492,'2015-03-10 21:49:29','2015-10-11 16:46:30',1,30001042,11,4,23,12,21,23,1,8,3,26,26,25,11,67,54,44,22,16,13,20,58,23,22,17),(1493,'2015-03-10 21:49:29','2015-10-11 16:46:30',1,30001025,30,49,109,22,44,36,25,16,25,48,43,31,38,139,88,86,38,28,45,60,54,28,36,47),(1494,'2015-03-10 21:49:29','2015-10-11 16:46:30',1,30004565,0,1,1,2,2,1,0,4,1,2,1,2,3,1,1,2,0,0,3,0,0,0,0,8),(1495,'2015-03-10 21:49:29','2015-10-11 16:46:30',1,30002362,25,13,39,36,65,52,33,33,45,36,37,21,18,81,57,45,24,36,21,18,23,39,36,11),(1496,'2015-03-10 21:49:29','2015-10-11 16:46:30',1,30004458,0,0,3,0,3,4,0,2,1,0,0,1,0,0,2,4,1,1,0,1,2,0,0,0),(1497,'2015-03-10 21:49:29','2015-10-11 16:46:30',1,30001981,16,14,20,19,11,9,16,10,19,10,9,7,5,9,6,7,14,13,12,4,15,8,6,12),(1498,'2015-03-10 21:49:29','2015-10-11 16:46:30',1,30035305,37,17,29,35,27,20,7,13,12,35,31,36,35,27,28,30,20,21,29,17,21,25,18,22),(1499,'2015-03-10 21:49:29','2015-10-11 16:46:30',1,30003896,27,31,26,38,22,16,26,26,32,39,26,30,26,50,66,106,40,12,20,48,24,21,28,29),(1500,'2015-03-10 21:49:29','2015-10-11 16:46:30',1,30002275,2,5,9,4,0,3,3,1,1,11,12,17,13,8,16,20,9,15,2,5,7,10,5,11),(1501,'2015-03-10 21:49:29','2015-10-11 16:46:30',1,30005324,117,77,117,124,148,104,123,52,68,109,112,107,84,153,168,184,176,105,121,122,140,152,141,109),(1502,'2015-03-10 21:49:29','2015-10-11 16:46:30',1,30002708,95,41,74,102,69,64,74,57,61,72,85,96,73,123,94,108,118,132,89,83,82,102,96,116),(1503,'2015-03-10 21:49:29','2015-03-10 21:49:29',1,30001616,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(1504,'2015-03-10 21:49:29','2015-10-11 16:46:30',1,30045305,159,122,149,158,147,129,154,132,132,251,241,229,226,289,281,267,208,171,164,208,257,251,223,208),(1505,'2015-03-10 21:49:29','2015-10-11 16:46:30',1,30005194,46,74,44,50,32,43,41,32,38,57,62,45,47,66,56,53,58,27,50,36,54,86,77,45),(1506,'2015-03-10 21:49:29','2015-10-11 16:46:30',1,30005023,4,4,4,5,2,3,10,9,4,4,6,2,2,4,2,3,4,4,6,7,1,4,5,8),(1507,'2015-03-10 21:49:29','2015-10-11 16:46:30',1,30001100,3,5,2,4,6,3,0,0,1,1,2,0,2,1,1,2,1,2,1,2,0,2,2,0),(1508,'2015-03-10 21:49:29','2015-10-11 16:46:30',1,30001254,8,36,24,48,24,16,17,12,17,35,23,21,29,41,44,50,31,64,46,20,63,52,38,16),(1509,'2015-03-10 21:49:29','2015-10-11 16:46:30',1,30001825,33,25,32,42,38,38,11,8,33,9,20,29,23,19,11,11,18,19,2,2,13,6,11,13),(1510,'2015-03-10 21:49:29','2015-10-11 16:46:30',1,30004887,11,3,0,1,6,12,5,1,3,9,8,7,2,4,13,14,0,3,62,14,13,10,7,4),(1511,'2015-03-10 21:49:29','2015-10-11 16:46:30',1,30003904,18,17,39,21,16,13,23,20,10,49,33,40,19,24,73,41,29,19,15,17,38,30,24,21),(1512,'2015-03-10 21:49:29','2015-10-11 16:46:30',1,30003041,13,4,22,13,12,12,11,7,10,14,23,22,16,14,17,17,14,22,22,12,23,32,23,31),(1513,'2015-03-10 21:49:29','2015-10-11 16:46:30',1,30002682,621,522,658,706,653,605,519,420,447,758,825,666,585,781,913,907,798,648,521,564,706,794,747,708),(1514,'2015-03-10 21:49:29','2015-10-11 16:46:30',1,30045042,86,50,63,57,77,79,55,49,70,59,61,44,34,72,89,83,73,54,44,68,59,70,74,65),(1515,'2015-03-10 21:49:29','2015-10-11 16:46:30',1,30003565,24,10,48,15,29,36,8,12,19,26,19,17,16,17,21,12,26,26,19,36,21,30,33,17),(1516,'2015-03-10 21:49:29','2015-10-11 16:46:30',1,30005298,43,12,23,35,47,42,35,24,25,42,37,22,18,61,46,38,32,29,40,16,74,37,34,16),(1517,'2015-03-10 21:49:29','2015-10-11 16:46:30',1,30014971,184,167,240,188,186,186,195,139,150,288,285,289,272,333,327,312,255,221,188,228,251,282,274,187),(1518,'2015-03-10 21:49:29','2015-10-11 16:46:30',1,30003795,71,46,108,79,58,55,62,37,37,49,46,40,33,38,51,60,41,33,29,35,35,52,100,82),(1519,'2015-03-10 21:49:29','2015-10-11 16:46:30',1,30003123,7,4,2,6,0,1,2,1,5,12,9,13,11,12,20,16,6,13,23,7,10,0,1,6),(1520,'2015-03-10 21:49:29','2015-10-11 16:46:30',1,30002003,13,10,9,5,6,7,8,9,17,3,2,7,6,4,1,2,7,5,5,5,6,1,2,6),(1521,'2015-03-10 21:49:29','2015-10-11 16:46:30',1,30003678,18,15,19,22,27,26,32,11,11,59,54,137,209,277,77,73,88,54,49,88,111,62,44,29),(1522,'2015-03-10 21:49:29','2015-10-11 16:46:30',1,30000845,3,1,4,1,0,2,6,2,9,2,1,3,4,6,5,3,7,8,3,13,11,12,10,3),(1523,'2015-03-10 21:49:29','2015-10-11 16:46:30',1,30002691,64,106,62,73,70,74,85,66,85,55,54,73,71,85,87,91,82,86,56,163,70,79,60,101),(1524,'2015-03-10 21:49:29','2015-10-11 16:46:30',1,30002705,16,11,22,11,16,15,26,6,9,23,13,14,10,27,24,22,28,25,11,9,20,21,17,16),(1525,'2015-03-10 21:49:29','2015-10-11 16:46:30',1,30000923,10,22,42,22,22,31,15,19,10,32,24,15,13,28,55,27,23,23,23,45,38,16,16,29),(1526,'2015-03-10 21:49:29','2015-10-11 16:46:30',1,30004357,6,14,26,36,24,35,59,45,25,21,31,10,6,17,30,50,23,22,11,12,11,21,18,11),(1527,'2015-03-10 21:49:29','2015-10-11 16:46:30',1,30001275,137,67,49,43,55,64,50,34,51,44,65,108,109,110,127,142,87,76,39,60,93,134,317,90),(1528,'2015-03-10 21:49:29','2015-10-11 16:46:30',1,30004530,17,4,6,2,7,4,2,4,2,3,6,7,5,8,2,3,4,6,8,4,6,1,2,3),(1529,'2015-03-10 21:49:29','2015-10-11 16:46:30',1,30002373,14,1,0,3,4,2,4,2,2,13,12,7,5,34,263,435,7,5,1,4,2,3,7,4),(1530,'2015-03-10 21:49:29','2015-10-11 16:46:30',1,30002896,12,9,13,9,10,11,3,7,17,180,124,163,99,189,191,168,225,89,182,85,173,277,113,61),(1531,'2015-03-10 21:49:29','2015-10-11 16:46:30',1,30003802,46,51,77,73,50,46,50,27,32,56,40,27,29,18,27,31,32,25,19,26,17,39,77,50),(1532,'2015-03-10 21:49:29','2015-10-11 16:46:30',1,30004200,40,24,29,63,39,29,51,23,34,21,18,21,23,22,15,28,15,22,1,16,43,18,19,74),(1533,'2015-03-10 21:49:29','2015-10-11 16:46:30',1,30001034,7,5,1,3,1,2,5,1,1,6,0,7,5,3,3,4,4,4,3,8,8,5,6,12),(1534,'2015-03-10 21:49:29','2015-03-10 21:49:29',1,30001472,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(1535,'2015-03-10 21:49:29','2015-10-11 16:46:30',1,30004939,4,15,21,19,8,4,3,6,80,21,20,9,34,32,125,8,11,8,6,23,29,28,15,14),(1536,'2015-03-10 21:49:29','2015-10-11 16:46:30',1,30004335,6,8,20,18,20,13,7,10,14,8,8,7,4,18,51,14,4,8,2,14,12,6,12,18),(1537,'2015-03-10 21:49:29','2015-10-11 16:46:30',1,30001224,12,2,3,5,4,4,6,3,1,16,22,22,14,29,21,20,39,13,22,43,20,29,27,33),(1538,'2015-03-10 21:49:29','2015-10-11 16:46:30',1,30004072,6,6,30,17,34,26,3,3,4,10,10,4,6,6,4,5,7,9,15,9,110,12,12,4),(1539,'2015-03-10 21:49:29','2015-10-11 16:46:30',1,30004799,10,4,36,9,9,3,4,5,31,8,13,9,10,27,15,5,16,17,25,22,18,26,23,7),(1540,'2015-03-10 21:49:29','2015-10-11 16:46:30',1,30001979,21,6,31,11,19,20,8,25,28,2,4,4,1,8,12,9,14,11,8,7,13,7,5,7),(1541,'2015-03-10 21:49:29','2015-10-11 16:46:30',1,30003371,13,3,30,2,2,1,4,6,2,4,5,0,1,7,0,0,2,2,5,0,2,4,6,0),(1542,'2015-03-10 21:49:29','2015-10-11 16:46:30',1,30002312,10,5,11,9,3,5,11,6,4,9,4,6,5,12,12,7,12,7,24,4,35,7,4,14),(1543,'2015-03-10 21:49:29','2015-03-10 21:49:29',1,30001496,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(1544,'2015-03-10 21:49:29','2015-10-11 16:46:30',1,30003134,4,7,3,3,5,5,1,1,3,2,3,5,4,5,4,2,5,3,1,3,5,2,3,8),(1545,'2015-03-10 21:49:29','2015-10-11 16:46:30',1,30002953,39,19,56,18,19,30,19,8,28,23,18,22,20,21,23,24,17,14,2,20,16,17,16,18),(1546,'2015-03-10 21:49:29','2015-10-11 16:46:30',1,30001253,8,30,25,60,29,17,28,11,17,35,29,28,25,40,43,55,40,64,31,18,55,49,40,20),(1547,'2015-03-10 21:49:29','2015-10-11 16:46:30',1,30000461,9,4,11,12,7,7,25,9,5,3,13,20,14,18,19,12,12,7,2,2,9,5,11,6),(1548,'2015-03-10 21:49:29','2015-10-11 16:46:30',1,30004750,48,22,3,19,15,18,16,23,62,68,47,46,36,47,60,52,38,51,30,44,65,78,84,30),(1549,'2015-03-10 21:49:29','2015-10-11 16:46:30',1,30000613,29,0,2,19,4,3,4,2,0,0,1,3,6,4,1,0,6,6,0,1,3,2,2,3),(1550,'2015-03-10 21:49:29','2015-10-11 16:46:30',1,30002838,3,0,0,1,0,1,0,1,0,0,0,1,3,1,0,0,1,0,0,1,0,0,0,1),(1551,'2015-03-10 21:49:29','2015-10-11 16:46:30',1,30003727,46,32,53,24,19,31,40,18,12,53,95,53,63,140,48,37,101,31,26,16,51,81,52,88),(1552,'2015-03-10 21:49:29','2015-10-11 16:46:30',1,30001272,112,57,75,66,67,82,64,40,44,33,72,74,74,66,163,141,328,53,24,55,57,52,188,42),(1553,'2015-03-10 21:49:29','2015-10-11 16:46:30',1,30004813,1,0,1,3,1,0,2,6,2,5,4,4,6,4,4,4,8,5,4,3,0,3,4,5),(1554,'2015-03-10 21:49:29','2015-10-11 16:46:30',1,30003358,3,2,2,1,2,1,1,0,2,2,3,1,0,2,1,1,4,0,3,2,2,1,1,0),(1555,'2015-03-10 21:49:29','2015-10-11 16:46:30',1,30002149,7,3,14,3,1,2,6,4,5,0,0,7,11,1,10,17,5,0,2,0,5,0,0,13),(1556,'2015-03-10 21:49:29','2015-10-11 16:46:30',1,30002304,4,2,10,3,3,8,10,5,7,3,11,13,9,13,5,5,1,1,12,11,8,6,6,8),(1557,'2015-03-10 21:49:29','2015-10-11 16:46:30',1,30003115,9,10,13,9,7,12,18,5,8,2,2,4,5,4,2,3,3,3,2,1,6,2,1,7),(1558,'2015-03-10 21:49:29','2015-10-11 16:46:30',1,30003709,52,43,139,113,53,40,37,28,93,270,122,131,86,252,234,87,147,62,171,220,103,89,185,42),(1559,'2015-03-10 21:49:29','2015-10-11 16:46:30',1,30002481,89,64,64,67,54,48,52,52,58,42,38,36,51,31,22,14,52,31,27,25,50,108,60,87),(1560,'2015-03-10 21:49:29','2015-10-11 16:46:30',1,30002347,10,17,7,36,11,18,15,13,9,11,7,33,14,23,11,8,9,0,18,31,25,11,11,4),(1561,'2015-03-10 21:49:29','2015-10-11 16:46:30',1,30001761,20,28,21,42,33,26,3,3,11,1,3,1,1,22,11,13,6,5,7,2,6,13,14,18),(1562,'2015-03-10 21:49:29','2015-10-11 16:46:30',1,30002626,2,0,0,2,3,2,3,1,4,88,59,3,2,2,5,4,7,9,4,3,4,4,7,11),(1563,'2015-03-10 21:49:29','2015-10-11 16:46:30',1,30002366,23,5,17,10,17,7,7,14,17,5,7,11,9,22,12,22,33,15,8,18,9,8,7,6),(1564,'2015-03-10 21:49:29','2015-10-11 16:46:30',1,30000826,4,2,8,8,3,10,0,1,3,2,1,3,5,2,3,1,11,32,0,2,17,11,9,2),(1565,'2015-03-10 21:49:29','2015-03-10 21:49:29',1,30000340,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(1566,'2015-03-10 21:49:29','2015-10-11 16:46:30',1,30003135,18,30,12,20,28,40,15,10,14,12,26,26,31,31,20,16,22,16,11,15,11,34,31,28),(1567,'2015-03-10 21:49:29','2015-10-11 16:46:30',1,30004622,35,16,43,64,24,25,28,15,15,2,3,8,4,7,9,7,8,10,7,6,21,16,8,8),(1568,'2015-03-10 21:49:29','2015-10-11 16:46:30',1,30005125,2,0,2,2,5,3,3,0,1,5,4,2,2,5,0,0,7,0,17,30,7,7,7,0),(1569,'2015-03-10 21:49:29','2015-10-11 16:46:30',1,30001299,2,4,10,3,12,11,1,1,2,0,0,1,2,2,3,0,0,3,3,2,0,2,3,2),(1570,'2015-03-10 21:49:29','2015-10-11 16:46:30',1,30004730,17,5,45,4,9,9,15,12,18,175,71,165,70,94,192,63,49,51,31,39,62,23,29,17),(1571,'2015-03-10 21:49:29','2015-10-11 16:46:30',1,30002430,14,2,16,7,4,8,2,2,15,6,2,3,4,3,4,5,3,4,3,10,13,2,5,6),(1572,'2015-03-10 21:49:29','2015-10-11 16:46:30',1,30002036,8,6,75,40,45,49,111,8,1,2,5,1,3,11,0,5,4,5,1,7,3,1,6,3),(1573,'2015-03-10 21:49:29','2015-10-11 16:46:30',1,30004588,2,1,0,4,6,2,0,0,3,0,1,1,3,2,0,1,1,1,1,1,0,7,3,0),(1574,'2015-03-10 21:49:29','2015-10-11 16:46:30',1,30004902,1,2,0,3,5,3,4,1,5,0,2,1,1,0,5,4,1,1,0,1,3,0,0,6),(1575,'2015-03-10 21:49:29','2015-10-11 16:46:30',1,30002295,1,0,0,0,0,0,0,0,0,2,3,1,1,0,0,0,0,0,0,0,0,0,0,0),(1576,'2015-03-10 21:49:29','2015-10-11 16:46:30',1,30004491,26,8,10,4,7,4,29,13,27,20,21,20,13,12,29,22,23,18,18,12,38,46,55,124),(1577,'2015-03-10 21:49:29','2015-10-11 16:46:30',1,30004626,12,4,4,12,8,10,1,25,8,286,95,186,314,454,254,59,43,63,148,111,426,14,16,11),(1578,'2015-03-10 21:49:29','2015-10-11 16:46:30',1,30004386,9,24,10,7,9,8,5,8,8,8,13,7,3,10,26,25,11,19,7,19,15,9,9,12),(1579,'2015-03-10 21:49:29','2015-10-11 16:46:30',1,30004502,15,10,13,8,7,9,21,9,7,3,9,19,20,12,24,27,40,22,8,16,12,19,12,9),(1580,'2015-03-10 21:49:29','2015-10-11 16:46:30',1,30003724,74,39,166,75,70,73,56,20,49,120,107,77,75,174,74,54,89,62,98,210,224,135,95,98),(1581,'2015-03-10 21:49:29','2015-10-11 16:46:30',1,30004480,7,14,32,1,1,10,11,13,8,16,11,11,17,7,18,19,35,15,9,10,20,6,8,14),(1582,'2015-03-10 21:49:29','2015-10-11 16:46:30',1,30000867,280,108,131,180,139,138,105,106,92,129,287,255,141,246,352,266,99,76,55,106,197,130,120,87),(1583,'2015-03-10 21:49:29','2015-10-11 16:46:30',1,30001968,31,43,10,25,17,15,57,41,47,52,67,17,25,34,88,93,36,80,8,10,16,49,39,45),(1584,'2015-03-10 21:49:29','2015-10-11 16:46:30',1,30003345,13,17,4,9,15,12,40,7,8,4,5,17,10,9,9,6,8,15,14,6,7,12,9,7),(1585,'2015-03-10 21:49:29','2015-10-11 16:46:30',1,30001010,31,18,66,85,29,28,36,36,29,145,183,82,45,178,106,101,65,46,42,69,80,43,32,103),(1586,'2015-03-10 21:49:29','2015-03-10 21:49:29',1,30000327,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(1587,'2015-03-10 21:49:29','2015-10-11 16:46:30',1,30001881,28,10,16,4,13,15,5,0,1,6,10,25,24,14,22,4,10,2,15,5,13,11,10,9),(1588,'2015-03-10 21:49:29','2015-10-11 16:46:30',1,30004222,10,16,17,8,5,7,4,4,5,0,3,3,1,3,8,7,6,8,2,15,31,9,11,29),(1589,'2015-03-10 21:49:29','2015-10-11 16:46:30',1,30001660,39,19,45,28,19,17,25,10,21,42,36,52,34,43,67,80,74,47,25,43,46,45,56,63),(1590,'2015-03-10 21:49:29','2015-10-11 16:46:30',1,30001921,7,7,11,9,7,10,16,3,9,12,28,34,20,29,22,20,14,17,13,33,50,11,14,9),(1591,'2015-03-10 21:49:29','2015-10-11 16:46:30',1,30001083,7,4,16,3,10,11,1,3,13,0,9,6,1,21,9,7,4,9,0,13,2,8,6,8),(1592,'2015-03-10 21:49:29','2015-10-11 16:46:30',1,30002233,8,7,6,4,5,5,6,5,4,9,10,7,9,17,9,23,19,10,2,3,11,7,9,23),(1593,'2015-03-10 21:49:29','2015-10-11 16:46:30',1,30002541,73,30,70,66,64,44,30,82,106,87,41,51,56,57,47,36,57,53,40,41,90,72,37,56),(1594,'2015-03-10 21:49:29','2015-10-11 16:46:30',1,30002513,52,76,67,98,84,81,67,69,79,56,55,67,65,68,69,65,77,61,57,55,64,104,90,52),(1595,'2015-03-10 21:49:29','2015-10-11 16:46:30',1,30003912,46,21,35,22,14,9,9,13,15,75,60,43,37,46,29,30,25,36,24,26,47,38,39,55),(1596,'2015-03-10 21:49:29','2015-10-11 16:46:30',1,30004097,60,45,63,70,50,57,40,34,34,59,60,60,46,72,92,82,84,79,27,48,68,90,86,55),(1597,'2015-03-10 21:49:29','2015-10-11 16:46:30',1,30003451,27,15,20,13,25,25,19,2,13,11,15,19,21,29,22,28,33,25,22,15,23,39,54,27),(1598,'2015-03-10 21:49:29','2015-10-11 16:46:30',1,30001356,114,29,143,44,41,39,72,37,50,122,68,87,74,107,76,86,57,56,56,83,117,81,83,53),(1599,'2015-03-10 21:49:29','2015-10-11 16:46:30',1,30005044,170,98,139,145,138,140,137,67,94,211,198,162,160,253,235,200,227,174,144,194,198,232,217,212),(1600,'2015-03-10 21:49:29','2015-10-11 16:46:30',1,30005074,17,8,9,10,13,12,31,4,19,19,15,7,8,20,20,15,14,13,9,18,23,15,11,11),(1601,'2015-03-10 21:49:29','2015-10-11 16:46:30',1,30001420,143,57,58,37,44,46,48,23,38,66,66,39,28,36,42,40,28,32,47,85,31,38,36,56),(1602,'2015-03-10 21:49:29','2015-10-11 16:46:30',1,30003797,66,44,95,92,77,81,46,55,45,121,100,115,87,145,107,139,62,84,127,119,180,135,144,119),(1603,'2015-03-10 21:49:29','2015-10-11 16:46:30',1,30003405,16,24,13,18,27,15,9,10,14,6,10,7,4,7,20,24,10,11,7,8,6,12,19,10),(1604,'2015-03-10 21:49:29','2015-10-11 16:46:30',1,30000253,29,40,36,46,30,26,63,27,56,22,47,27,34,67,42,38,43,26,36,53,18,108,53,37),(1605,'2015-03-10 21:49:29','2015-10-11 16:46:30',1,30004524,4,5,4,11,6,4,2,4,3,5,4,6,6,9,6,3,9,4,5,2,2,1,8,3),(1606,'2015-03-10 21:49:29','2015-10-11 16:46:30',1,30004470,5,8,11,10,14,10,14,8,2,21,23,26,11,12,28,20,24,24,13,24,36,51,43,31),(1607,'2015-03-10 21:49:29','2015-10-11 16:46:30',1,30004595,7,1,5,2,1,0,18,2,0,2,4,1,0,3,5,3,2,3,3,1,9,5,2,0),(1608,'2015-03-10 21:49:29','2015-10-11 16:46:30',1,30000877,26,29,31,64,33,21,34,37,46,5,5,5,15,2,7,16,9,11,17,10,14,6,9,17),(1609,'2015-03-10 21:49:29','2015-10-11 16:46:30',1,30003364,3,6,1,1,5,8,7,9,7,0,5,3,2,7,0,1,1,2,2,0,5,1,0,2),(1610,'2015-03-10 21:49:29','2015-10-11 16:46:30',1,30004311,10,10,16,5,6,28,6,1,11,14,22,13,20,10,50,36,5,2,6,20,14,11,9,4),(1611,'2015-03-10 21:49:29','2015-10-11 16:46:30',1,30003644,4,2,9,12,10,11,2,12,11,5,5,6,4,6,3,2,2,3,3,3,0,3,2,2),(1612,'2015-03-10 21:49:29','2015-10-11 16:46:30',1,30002631,9,2,4,4,1,1,5,15,4,20,33,2,1,3,0,0,4,6,4,2,3,2,3,3),(1613,'2015-03-10 21:49:29','2015-10-11 16:46:30',1,30000663,45,15,29,27,54,13,28,13,16,15,10,4,8,12,7,9,42,10,21,19,17,53,37,0),(1614,'2015-03-10 21:49:29','2015-10-11 16:46:30',1,30005093,10,5,8,6,15,13,7,4,5,8,1,7,9,3,22,17,3,4,6,4,7,21,12,5),(1615,'2015-03-10 21:49:29','2015-10-11 16:46:30',1,30000954,4,5,8,8,5,4,5,1,5,4,3,9,5,4,1,0,4,8,4,2,2,2,4,2),(1616,'2015-03-10 21:49:29','2015-10-11 16:46:30',1,30005285,2,4,2,0,0,1,3,8,9,6,5,0,0,6,2,2,2,8,2,1,9,22,4,1),(1617,'2015-03-10 21:49:29','2015-10-11 16:46:30',1,30002635,16,8,30,14,15,11,15,12,7,35,39,49,32,40,23,30,17,20,2,17,33,57,29,22),(1618,'2015-03-10 21:49:29','2015-10-11 16:46:30',1,30013489,95,68,100,119,84,81,64,55,81,130,147,97,108,137,137,160,134,136,79,84,115,109,114,97),(1619,'2015-03-10 21:49:29','2015-10-11 16:46:30',1,30004284,31,35,47,26,31,25,37,25,27,78,235,80,51,100,158,156,154,79,69,228,118,97,95,67),(1620,'2015-03-10 21:49:29','2015-10-11 16:46:30',1,30004105,3,5,2,6,2,8,15,2,1,6,6,4,0,1,4,6,1,0,1,2,0,1,0,5),(1621,'2015-03-10 21:49:29','2015-10-11 16:46:30',1,30002681,670,543,714,763,731,664,537,466,491,812,919,729,638,860,984,986,844,728,580,622,766,852,808,767),(1622,'2015-03-10 21:49:29','2015-10-11 16:46:30',1,30004987,51,39,71,95,70,54,65,29,47,52,64,46,50,69,79,87,69,48,57,49,58,61,58,56),(1623,'2015-03-10 21:49:29','2015-10-11 16:46:30',1,30005025,67,60,59,67,79,76,93,52,47,52,48,47,43,75,83,78,66,61,50,54,45,70,79,81),(1624,'2015-03-10 21:49:29','2015-10-11 16:46:30',1,30004985,97,53,66,57,92,84,86,79,56,135,133,45,38,185,148,136,89,81,112,81,113,128,102,99),(1625,'2015-03-10 21:49:29','2015-10-11 16:46:30',1,30000816,2,1,1,13,9,12,2,0,2,4,7,2,4,1,0,0,3,2,0,12,1,0,1,3),(1626,'2015-03-10 21:49:29','2015-10-11 16:46:30',1,30001557,0,2,2,1,3,2,1,1,0,1,2,2,3,0,3,3,4,6,0,3,0,8,8,6),(1627,'2015-03-10 21:49:29','2015-10-11 16:46:30',1,30000441,17,18,14,24,27,23,56,17,19,218,116,142,126,105,162,150,106,109,18,106,49,123,122,100),(1628,'2015-03-10 21:49:29','2015-10-11 16:46:30',1,30004016,11,14,39,9,21,21,3,0,7,10,6,10,12,22,13,15,10,4,5,7,13,19,25,16),(1629,'2015-03-10 21:49:29','2015-10-11 16:46:30',1,30003187,5,4,46,6,2,1,3,4,2,6,3,2,4,2,6,2,0,4,3,3,1,5,3,3),(1630,'2015-03-10 21:49:29','2015-10-11 16:46:30',1,30005229,174,151,170,179,164,165,159,128,131,270,245,232,195,250,266,273,259,224,155,195,249,249,245,231),(1631,'2015-03-10 21:49:29','2015-10-11 16:46:30',1,30003156,25,23,22,12,14,7,8,60,17,0,4,11,13,2,5,4,10,1,2,2,1,8,9,16),(1632,'2015-03-10 21:49:29','2015-10-11 16:46:30',1,30002967,37,34,52,41,29,39,36,19,38,30,22,27,34,34,40,43,40,42,34,46,38,51,54,28),(1633,'2015-03-10 21:49:29','2015-10-11 16:46:30',1,30003924,11,0,5,3,3,0,0,6,5,2,2,4,0,2,3,3,1,1,0,1,0,1,2,0),(1634,'2015-03-10 21:49:29','2015-10-11 16:46:30',1,30002646,15,15,4,5,16,15,12,12,13,31,32,22,41,11,22,23,14,19,7,15,21,24,29,14),(1635,'2015-03-10 21:49:29','2015-10-11 16:46:30',1,30003461,55,54,95,72,74,62,74,49,34,76,86,56,67,132,150,131,118,106,47,74,94,86,86,94),(1636,'2015-03-10 21:49:29','2015-10-11 16:46:30',1,30002968,141,136,112,104,89,79,72,51,66,122,104,97,99,187,186,181,167,128,88,162,170,155,148,128),(1637,'2015-03-10 21:49:29','2015-10-11 16:46:30',1,30001781,32,17,7,8,19,23,6,41,8,25,67,23,16,89,17,35,18,21,10,5,20,4,13,18),(1638,'2015-03-10 21:49:29','2015-10-11 16:46:30',1,30005262,22,24,31,28,42,44,27,23,22,15,27,19,14,38,20,19,9,14,19,29,39,51,29,27),(1639,'2015-03-10 21:49:29','2015-10-11 16:46:30',1,30004903,0,0,0,3,2,2,0,0,0,0,0,1,0,0,2,3,0,1,1,2,1,0,0,4),(1640,'2015-03-10 21:49:29','2015-10-11 16:46:30',1,30001994,38,35,42,19,16,16,12,9,11,3,3,7,5,2,2,1,9,3,7,4,3,3,10,7),(1641,'2015-03-10 21:49:29','2015-10-11 16:46:30',1,30004207,2,2,3,4,9,7,4,0,2,1,0,0,2,8,4,2,4,3,0,1,1,3,3,16),(1642,'2015-03-10 21:49:29','2015-10-11 16:46:30',1,30001960,2,3,3,0,3,0,5,1,4,1,3,1,1,1,2,1,1,2,1,4,1,2,1,2),(1643,'2015-03-10 21:49:29','2015-10-11 16:46:30',1,30002920,26,9,17,6,19,15,8,6,7,25,32,46,37,26,44,32,20,19,14,14,30,12,9,42),(1644,'2015-03-10 21:49:29','2015-10-11 16:46:30',1,30003170,32,19,14,16,20,14,44,20,43,33,27,28,34,9,43,36,20,6,21,18,10,40,23,14),(1645,'2015-03-10 21:49:29','2015-10-11 16:46:30',1,30000879,24,17,11,29,11,7,15,10,8,5,8,13,8,5,9,12,14,10,9,3,10,10,13,4),(1646,'2015-03-10 21:49:29','2015-03-10 21:49:29',1,30001632,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(1647,'2015-03-10 21:49:29','2015-10-11 16:46:30',1,30004195,4,39,17,15,18,12,14,36,30,19,18,2,8,9,34,39,17,14,2,9,14,11,9,24),(1648,'2015-03-10 21:49:29','2015-10-11 16:46:30',1,30003157,8,8,9,11,7,9,7,5,13,15,18,6,7,13,9,8,7,6,3,3,5,3,3,6),(1649,'2015-03-10 21:49:29','2015-10-11 16:46:30',1,30003762,36,45,24,42,29,36,45,18,25,49,82,54,58,52,54,67,83,43,34,46,36,45,43,40),(1650,'2015-03-10 21:49:29','2015-10-11 16:46:30',1,30003681,91,66,304,127,102,74,135,45,67,243,205,145,116,148,139,94,71,110,61,97,83,85,85,82),(1651,'2015-03-10 21:49:29','2015-10-11 16:46:30',1,30001130,3,3,16,3,11,11,2,4,6,3,6,2,1,20,6,8,5,6,1,7,3,3,10,9),(1652,'2015-03-10 21:49:29','2015-10-11 16:46:30',1,30002685,92,15,27,38,33,29,28,16,29,51,39,43,52,57,66,84,93,67,37,120,54,77,67,49),(1653,'2015-03-10 21:49:29','2015-10-11 16:46:30',1,30002659,989,663,888,938,808,743,732,601,606,974,933,961,882,1184,1318,1289,1146,939,845,943,1111,1176,1128,989),(1654,'2015-03-10 21:49:29','2015-10-11 16:46:30',1,30005226,8,4,6,3,4,6,17,10,3,20,11,18,5,14,20,10,14,15,10,24,20,9,6,10),(1655,'2015-03-10 21:49:29','2015-10-11 16:46:30',1,30000038,27,9,9,8,8,9,7,8,3,12,17,14,17,18,25,20,13,7,27,31,24,7,14,7),(1656,'2015-03-10 21:49:29','2015-10-11 16:46:30',1,30001047,33,36,28,28,23,17,16,29,14,58,61,32,50,71,37,46,30,39,24,74,75,46,38,41),(1657,'2015-03-10 21:49:29','2015-10-11 16:46:30',1,30003807,13,13,43,34,10,10,21,16,12,31,47,20,14,38,27,25,27,26,25,22,34,24,23,29),(1658,'2015-03-10 21:49:29','2015-10-11 16:46:30',1,30002706,179,106,154,175,153,144,115,114,141,166,190,154,125,184,209,220,174,174,126,133,187,201,186,174),(1659,'2015-03-10 21:49:29','2015-10-11 16:46:30',1,30005293,90,131,115,122,109,105,111,123,175,166,188,155,143,141,151,127,114,103,83,161,189,196,168,164),(1660,'2015-03-10 21:49:29','2015-10-11 16:46:30',1,30002014,47,35,46,31,33,28,41,17,14,21,9,19,20,23,7,14,25,27,35,47,171,27,32,9),(1661,'2015-03-10 21:49:29','2015-10-11 16:46:30',1,30001912,4,0,1,3,3,2,3,2,2,1,4,4,3,10,8,6,7,8,5,10,4,1,1,1),(1662,'2015-03-10 21:49:29','2015-10-11 16:46:30',1,30003721,74,33,30,19,23,29,11,11,13,46,57,73,59,50,74,90,57,70,29,44,44,47,72,56),(1663,'2015-03-10 21:49:29','2015-10-11 16:46:30',1,30003314,3,1,3,2,1,1,1,3,0,5,5,3,2,10,14,14,0,2,17,1,0,3,5,7),(1664,'2015-03-10 21:49:29','2015-10-11 16:46:30',1,30002184,53,23,27,16,25,23,53,21,12,38,34,29,25,33,56,51,45,18,16,28,41,70,78,24),(1665,'2015-03-10 21:49:29','2015-10-11 16:46:30',1,30004078,304,219,261,248,274,273,179,136,178,335,359,331,314,410,419,413,313,256,271,341,414,355,389,254),(1666,'2015-03-10 21:49:29','2015-10-11 16:46:30',1,30005011,12,13,21,16,5,4,18,6,6,13,6,15,17,7,13,12,18,12,12,9,15,21,25,13),(1667,'2015-03-10 21:49:29','2015-10-11 16:46:30',1,30003992,6,17,5,14,16,10,8,10,9,3,4,5,5,4,4,3,9,4,0,1,2,5,2,2),(1668,'2015-03-10 21:49:29','2015-10-11 16:46:30',1,30003193,60,16,89,28,37,20,34,26,16,8,12,7,3,5,10,13,15,6,10,11,11,11,11,10),(1669,'2015-03-10 21:49:29','2015-10-11 16:46:30',1,30001831,25,15,19,24,19,28,41,15,35,216,196,38,32,117,335,348,37,104,57,65,114,119,90,80),(1670,'2015-03-10 21:49:29','2015-03-10 21:49:29',1,30001610,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(1671,'2015-03-10 21:49:29','2015-10-11 16:46:30',1,30004806,17,1,3,5,2,5,8,18,5,10,34,14,5,26,15,15,11,6,2,15,17,10,9,6),(1672,'2015-03-10 21:49:29','2015-10-11 16:46:30',1,30002041,3,2,5,18,9,9,13,2,0,0,2,0,0,3,0,2,2,2,1,0,1,1,1,1),(1673,'2015-03-10 21:49:29','2015-10-11 16:46:30',1,30003108,15,13,11,13,4,10,13,15,25,27,24,38,54,100,223,216,55,58,35,43,95,85,54,92),(1674,'2015-03-10 21:49:29','2015-10-11 16:46:30',1,30002633,797,584,777,802,762,692,589,465,553,867,895,872,736,1061,1040,1040,937,755,632,736,826,957,912,776),(1675,'2015-03-10 21:49:29','2015-10-11 16:46:30',1,30002076,52,22,30,33,36,22,30,12,14,60,56,75,76,56,45,45,36,26,30,27,29,30,44,50),(1676,'2015-03-10 21:49:29','2015-03-10 21:49:29',1,30000396,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(1677,'2015-03-10 21:49:29','2015-10-11 16:46:30',1,30002520,42,44,57,39,18,30,38,18,35,45,39,44,42,66,73,65,62,49,36,41,38,46,37,58),(1678,'2015-03-10 21:49:29','2015-10-11 16:46:30',1,30002670,100,78,93,115,89,97,73,35,84,100,85,97,78,95,118,82,125,93,66,72,84,105,113,76),(1679,'2015-03-10 21:49:29','2015-10-11 16:46:30',1,30000595,6,0,3,5,2,1,4,0,2,2,17,5,2,3,3,2,31,0,13,9,3,0,0,0),(1680,'2015-03-10 21:49:29','2015-10-11 16:46:30',1,30004971,134,115,131,134,120,115,110,66,108,130,145,134,107,169,175,175,157,137,81,102,135,158,142,105),(1681,'2015-03-10 21:49:29','2015-10-11 16:46:30',1,30004418,9,4,9,16,21,20,9,10,24,11,8,13,12,23,24,28,20,22,29,49,24,55,19,27),(1682,'2015-03-10 21:49:29','2015-10-11 16:46:30',1,30003359,3,2,1,1,3,2,0,0,4,5,5,2,0,3,5,4,2,1,3,4,2,1,1,35),(1683,'2015-03-10 21:49:29','2015-03-10 21:49:29',1,30001504,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(1684,'2015-03-10 21:49:29','2015-10-11 16:46:30',1,30001581,4,9,15,3,5,9,2,0,2,13,11,14,8,12,28,21,26,20,21,15,28,6,9,22),(1685,'2015-03-10 21:49:29','2015-10-11 16:46:30',1,30000518,1,8,7,8,3,3,4,1,6,2,3,1,4,7,0,0,3,3,1,3,7,0,2,2),(1686,'2015-03-10 21:49:29','2015-10-11 16:46:30',1,30002146,2,3,2,2,2,4,33,5,4,1,0,4,8,0,12,19,5,0,0,0,2,5,2,6),(1687,'2015-03-10 21:49:29','2015-10-11 16:46:30',1,30003682,72,71,201,104,76,78,72,44,69,89,103,192,244,319,134,108,87,62,66,106,128,68,70,52),(1688,'2015-03-10 21:49:29','2015-10-11 16:46:30',1,30000516,3,11,9,14,5,6,4,1,7,2,3,4,6,13,3,3,9,4,1,5,10,0,1,2),(1689,'2015-03-10 21:49:29','2015-10-11 16:46:30',1,30000490,1,0,2,5,1,0,2,1,1,9,14,18,11,13,29,19,22,6,11,77,42,30,18,23),(1690,'2015-03-10 21:49:29','2015-10-11 16:46:30',1,30002599,18,2,2,4,4,1,2,0,1,0,0,3,5,6,51,12,7,39,0,0,2,5,5,5),(1691,'2015-03-10 21:49:29','2015-10-11 16:46:30',1,30004042,21,41,54,26,61,49,19,8,27,48,44,28,30,21,30,20,20,26,14,89,23,23,22,13),(1692,'2015-03-10 21:49:29','2015-10-11 16:46:30',1,30002119,85,23,107,38,32,22,16,13,18,64,75,43,31,38,50,39,37,26,15,60,35,48,52,21),(1693,'2015-03-10 21:49:29','2015-10-11 16:46:30',1,30002378,1,3,11,1,5,4,3,0,1,2,5,8,14,7,4,2,1,3,0,9,11,16,9,6),(1694,'2015-03-10 21:49:29','2015-10-11 16:46:30',1,30003196,26,17,48,22,24,25,21,23,14,10,15,14,8,10,14,21,6,16,7,18,18,8,14,24),(1695,'2015-03-10 21:49:29','2015-10-11 16:46:30',1,30000102,19,11,5,4,7,6,15,7,12,20,21,27,27,14,14,20,12,37,9,7,6,32,25,13),(1696,'2015-03-10 21:49:29','2015-10-11 16:46:30',1,30004852,14,28,7,7,10,13,7,22,34,19,16,19,10,13,19,16,10,9,29,17,13,9,17,23),(1697,'2015-03-10 21:49:29','2015-10-11 16:46:30',1,30000502,1,0,0,1,2,2,2,0,5,6,2,0,1,4,3,1,3,1,1,3,3,3,3,2),(1698,'2015-03-10 21:49:29','2015-10-11 16:46:30',1,30001294,2,3,4,4,5,5,2,0,1,0,1,1,1,1,4,3,0,0,5,2,2,5,4,3),(1699,'2015-03-10 21:49:29','2015-10-11 16:46:30',1,30002477,5,5,10,4,8,3,5,15,4,3,3,1,2,11,66,64,8,4,1,2,2,5,2,4),(1700,'2015-03-10 21:49:29','2015-10-11 16:46:30',1,30003677,66,32,40,46,81,44,95,43,25,243,151,179,245,326,103,143,109,96,61,126,131,82,67,38),(1701,'2015-03-10 21:49:29','2015-10-11 16:46:30',1,30000503,1,0,0,3,0,0,0,2,1,2,0,3,0,0,8,4,2,1,1,1,0,2,4,0),(1702,'2015-03-10 21:49:29','2015-10-11 16:46:30',1,30004186,0,4,1,9,6,10,12,4,8,11,13,9,12,7,24,19,14,9,1,0,2,33,36,10),(1703,'2015-03-10 21:49:29','2015-10-11 16:46:30',1,30001530,1,1,0,0,0,0,4,0,0,2,1,4,3,4,1,1,1,4,3,7,1,2,1,6),(1704,'2015-03-10 21:49:29','2015-10-11 16:46:30',1,30004567,21,13,19,15,9,15,10,8,12,13,10,10,7,7,8,6,11,16,20,34,29,22,25,4),(1705,'2015-03-10 21:49:29','2015-10-11 16:46:30',1,30004181,6,1,2,0,8,9,6,5,0,1,0,1,2,0,1,1,4,1,0,3,4,6,5,1),(1706,'2015-03-10 21:49:29','2015-10-11 16:46:30',1,30001834,4,9,5,8,3,8,7,4,4,16,16,19,17,18,15,20,14,25,10,11,12,8,10,12),(1707,'2015-03-10 21:49:29','2015-10-11 16:46:30',1,30000257,2,1,5,2,3,1,8,0,1,0,3,4,3,0,3,4,1,3,3,1,1,4,4,2),(1708,'2015-03-10 21:49:29','2015-10-11 16:46:30',1,30004948,16,8,41,17,15,13,22,31,25,52,55,18,14,31,43,38,28,35,8,19,54,37,38,38),(1709,'2015-03-10 21:49:29','2015-10-11 16:46:30',1,30004217,3,2,3,1,0,0,2,0,5,4,1,0,1,9,4,2,2,1,0,3,1,1,1,3),(1710,'2015-03-10 21:49:29','2015-10-11 16:46:30',1,30002922,38,54,92,75,41,48,38,30,72,47,56,34,44,47,102,91,64,27,228,130,43,63,53,55),(1711,'2015-03-10 21:49:29','2015-10-11 16:46:30',1,30004546,12,8,8,4,5,2,17,9,2,4,3,6,4,4,6,3,8,5,1,2,5,4,6,7),(1712,'2015-03-10 21:49:29','2015-10-11 16:46:30',1,30000531,6,12,13,3,4,5,0,2,6,4,16,4,1,13,13,22,79,7,116,31,17,3,21,2),(1713,'2015-03-10 21:49:29','2015-10-11 16:46:30',1,30000846,112,43,106,108,129,74,55,62,64,114,161,810,545,73,69,82,119,34,24,50,26,69,83,100),(1714,'2015-03-10 21:49:29','2015-10-11 16:46:30',1,30004451,4,7,7,12,11,13,13,5,22,2,3,8,9,9,21,17,31,15,23,8,46,8,7,23),(1715,'2015-03-10 21:49:29','2015-03-10 21:49:29',1,30001620,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(1716,'2015-03-10 21:49:29','2015-10-11 16:46:30',1,30000283,24,14,6,9,17,17,9,8,18,7,3,3,4,7,3,4,9,31,6,10,9,4,6,10),(1717,'2015-03-10 21:49:29','2015-10-11 16:46:30',1,30004028,6,10,37,8,3,1,1,2,4,11,4,10,32,50,128,11,8,44,4,9,17,9,21,8),(1718,'2015-03-10 21:49:29','2015-10-11 16:46:30',1,30005100,9,22,4,2,16,16,7,2,11,7,65,8,4,13,7,6,7,24,9,8,10,8,6,8),(1719,'2015-03-10 21:49:29','2015-10-11 16:46:30',1,30003732,19,28,27,33,44,21,30,19,17,11,15,27,30,44,31,23,25,23,27,24,22,26,30,19),(1720,'2015-03-10 21:49:29','2015-10-11 16:46:30',1,30001229,30,15,18,9,20,16,21,12,15,27,27,21,25,27,46,58,55,22,34,44,65,29,31,8),(1721,'2015-03-10 21:49:29','2015-10-11 16:46:30',1,30002032,131,63,332,163,169,139,44,31,22,21,28,46,20,40,35,14,40,10,12,9,14,7,12,20),(1722,'2015-03-10 21:49:29','2015-10-11 16:46:30',1,30000903,17,45,67,45,44,56,24,32,21,36,35,25,30,79,101,69,41,32,70,95,73,31,58,48),(1723,'2015-03-10 21:49:29','2015-10-11 16:46:30',1,30004208,58,22,20,32,27,27,37,25,46,26,29,18,20,16,15,20,6,20,1,16,48,35,36,57),(1724,'2015-03-10 21:49:29','2015-10-11 16:46:30',1,30001214,46,12,15,32,21,10,23,21,45,123,109,65,53,89,99,123,121,41,83,91,192,63,59,39),(1725,'2015-03-10 21:49:29','2015-10-11 16:46:30',1,30001334,4,7,2,6,2,2,0,1,0,5,3,14,16,1,0,4,7,4,1,3,3,8,5,6),(1726,'2015-03-10 21:49:29','2015-10-11 16:46:30',1,30002136,8,7,0,0,1,3,3,3,4,43,49,16,7,7,10,7,8,5,6,3,4,19,14,24),(1727,'2015-03-10 21:49:29','2015-10-11 16:46:30',1,30003136,15,16,8,11,14,24,12,4,9,8,18,18,23,26,11,8,13,5,10,13,13,24,27,19),(1728,'2015-03-10 21:49:29','2015-10-11 16:46:30',1,30000612,48,4,5,11,12,5,10,3,5,9,10,107,70,13,13,9,16,20,10,16,19,19,17,11),(1729,'2015-03-10 21:49:29','2015-10-11 16:46:30',1,30004959,9,1,3,6,9,6,2,3,8,4,2,1,1,2,1,0,0,1,1,6,8,1,1,1),(1730,'2015-03-10 21:49:29','2015-03-10 21:49:29',1,30001462,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(1731,'2015-03-10 21:49:29','2015-10-11 16:46:30',1,30001217,35,12,10,22,8,7,13,14,28,16,19,13,15,58,22,51,39,18,9,20,134,15,16,11),(1732,'2015-03-10 21:49:29','2015-10-11 16:46:30',1,30004725,24,16,6,9,6,11,14,11,21,12,13,10,9,13,20,18,33,13,17,8,19,26,25,11),(1733,'2015-03-10 21:49:29','2015-10-11 16:46:30',1,30002931,76,37,81,45,53,50,30,46,44,43,62,36,32,58,80,64,48,24,29,37,46,42,32,48),(1734,'2015-03-10 21:49:29','2015-10-11 16:46:30',1,30001527,4,4,0,0,3,1,2,0,1,13,9,12,9,9,4,2,2,7,5,18,4,6,5,7),(1735,'2015-03-10 21:49:29','2015-10-11 16:46:30',1,30000524,16,1,2,0,0,3,3,4,0,0,0,0,0,0,1,2,0,0,0,1,1,1,2,1),(1736,'2015-03-10 21:49:29','2015-10-11 16:46:30',1,30000634,31,0,3,8,7,3,0,4,0,3,3,22,20,4,36,35,2,9,0,4,3,0,2,3),(1737,'2015-03-10 21:49:29','2015-10-11 16:46:30',1,30003242,27,7,5,17,7,19,8,9,6,4,1,4,3,2,4,12,10,4,4,3,8,18,18,10),(1738,'2015-03-10 21:49:29','2015-10-11 16:46:30',1,30001909,2,2,3,15,9,12,6,3,4,3,4,3,1,5,7,11,8,3,2,4,3,2,0,2),(1739,'2015-03-10 21:49:29','2015-10-11 16:46:30',1,30002605,5,4,3,4,5,7,6,14,7,0,2,6,6,2,7,3,11,5,2,3,1,5,10,10),(1740,'2015-03-10 21:49:29','2015-10-11 16:46:30',1,30002349,12,14,3,15,10,13,19,9,10,5,10,28,10,16,8,7,3,0,4,26,27,9,14,5),(1741,'2015-03-10 21:49:29','2015-10-11 16:46:30',1,30002163,23,19,12,12,5,5,17,1,7,2,4,3,3,4,2,2,1,1,1,5,11,2,4,2),(1742,'2015-03-10 21:49:29','2015-10-11 16:46:30',1,30004499,15,18,28,12,8,16,15,12,12,4,4,15,12,14,29,28,32,19,7,16,20,23,15,11),(1743,'2015-03-10 21:49:29','2015-10-11 16:46:30',1,30003694,45,63,134,51,40,49,34,26,39,12,18,8,14,20,16,12,17,19,12,24,7,8,9,31),(1744,'2015-03-10 21:49:29','2015-10-11 16:46:30',1,30002124,41,18,49,23,19,13,20,0,6,4,3,4,5,2,4,5,4,7,7,7,5,7,7,2),(1745,'2015-03-10 21:49:29','2015-10-11 16:46:30',1,30003476,14,16,5,15,24,23,16,10,10,32,23,16,15,37,37,31,17,18,29,29,26,7,22,20),(1746,'2015-03-10 21:49:29','2015-10-11 16:46:30',1,30003438,3,6,38,7,8,9,6,4,10,5,4,19,17,9,3,5,4,10,3,6,6,10,13,7),(1747,'2015-03-10 21:49:29','2015-10-11 16:46:30',1,30003441,136,93,100,108,95,99,73,61,87,127,128,110,124,101,148,153,191,92,115,100,110,81,75,107),(1748,'2015-03-10 21:49:29','2015-10-11 16:46:30',1,30001933,2,2,10,2,4,8,3,3,2,8,6,6,9,7,8,9,2,5,2,3,1,3,2,3),(1749,'2015-03-10 21:49:29','2015-10-11 16:46:30',1,30002281,61,67,127,89,112,115,76,45,52,79,78,66,64,70,100,83,111,84,53,86,80,95,112,75),(1750,'2015-03-10 21:49:29','2015-10-11 16:46:30',1,30005291,29,53,22,24,25,31,16,9,14,37,43,31,38,38,33,18,43,26,18,21,22,26,26,28),(1751,'2015-03-10 21:49:29','2015-10-11 16:46:30',1,30002535,5,17,19,14,17,14,7,8,14,13,11,13,14,11,22,16,26,14,5,3,1,3,1,18),(1752,'2015-03-10 21:49:29','2015-10-11 16:46:30',1,30002196,21,17,25,14,20,19,33,4,14,34,27,14,17,23,28,31,22,32,22,10,8,16,14,21),(1753,'2015-03-10 21:49:29','2015-10-11 16:46:30',1,30002269,46,50,73,65,86,83,49,55,47,69,86,129,103,134,92,87,92,108,84,83,84,96,71,51),(1754,'2015-03-10 21:49:29','2015-10-11 16:46:30',1,30002536,8,4,0,11,7,7,4,0,3,25,21,7,4,20,18,8,6,6,2,5,2,1,1,2),(1755,'2015-03-10 21:49:29','2015-10-11 16:46:30',1,30002094,26,26,17,18,18,27,16,20,15,22,18,30,32,19,29,25,35,15,22,28,15,14,33,24),(1756,'2015-03-10 21:49:29','2015-10-11 16:46:30',1,30002277,74,79,41,34,58,54,44,48,51,90,97,64,50,77,109,104,104,62,37,57,80,95,98,66),(1757,'2015-03-10 21:49:29','2015-10-11 16:46:30',1,30001984,140,51,72,69,82,97,53,49,61,71,50,50,69,44,58,66,34,51,230,160,90,47,62,62),(1758,'2015-03-10 21:49:29','2015-10-11 16:46:30',1,30004020,6,16,0,8,4,8,11,5,3,0,2,3,4,2,6,12,6,9,2,10,0,1,1,0),(1759,'2015-03-10 21:49:29','2015-10-11 16:46:30',1,30003911,50,36,58,49,44,32,25,23,13,98,93,80,74,63,81,72,58,47,26,38,66,58,55,45),(1760,'2015-03-10 21:49:29','2015-10-11 16:46:30',1,30002552,29,38,48,25,42,25,27,29,30,45,38,39,35,30,48,52,47,57,13,18,26,36,27,29),(1761,'2015-03-10 21:49:29','2015-10-11 16:46:30',1,30004256,13,5,6,7,9,8,5,10,11,13,14,10,12,12,17,13,17,16,6,6,16,11,14,18),(1762,'2015-03-10 21:49:29','2015-10-11 16:46:30',1,30002518,80,41,69,58,43,43,58,27,27,50,64,49,66,79,83,78,36,59,53,65,55,59,53,70),(1763,'2015-03-10 21:49:29','2015-10-11 16:46:30',1,30000486,0,0,1,3,0,0,3,0,0,1,4,0,0,2,3,2,4,4,3,16,10,2,5,4),(1764,'2015-03-10 21:49:29','2015-10-11 16:46:30',1,30003355,17,23,7,6,12,15,11,3,11,7,22,6,0,28,18,9,10,4,18,16,19,4,6,132),(1765,'2015-03-10 21:49:29','2015-10-11 16:46:30',1,30005104,6,1,16,7,2,2,0,0,0,0,0,1,0,0,7,17,4,4,3,0,2,10,1,0),(1766,'2015-03-10 21:49:29','2015-10-11 16:46:30',1,30003892,13,26,28,42,37,39,34,36,15,18,18,37,38,33,12,16,22,24,32,13,19,21,12,13),(1767,'2015-03-10 21:49:29','2015-10-11 16:46:30',1,30000783,123,24,131,34,36,18,46,16,22,16,22,11,18,46,37,54,36,43,9,34,27,31,35,23),(1768,'2015-03-10 21:49:29','2015-10-11 16:46:30',1,30004297,29,29,46,25,28,26,35,22,25,56,215,56,48,63,153,145,108,70,66,232,120,64,62,51),(1769,'2015-03-10 21:49:29','2015-10-11 16:46:30',1,30002420,30,30,38,34,27,29,23,10,17,35,25,40,48,58,47,43,39,51,63,90,54,37,43,45),(1770,'2015-03-10 21:49:29','2015-10-11 16:46:30',1,30003401,8,15,1,15,4,1,15,5,12,16,14,9,7,17,21,32,18,5,9,13,13,10,10,3),(1771,'2015-03-10 21:49:29','2015-10-11 16:46:30',1,30002693,91,126,89,98,106,90,95,75,97,138,110,129,123,135,175,158,118,99,110,167,142,163,146,132),(1772,'2015-03-10 21:49:29','2015-10-11 16:46:30',1,30003605,2,4,3,11,10,5,5,7,0,6,3,7,2,7,6,8,6,4,2,2,1,21,20,7),(1773,'2015-03-10 21:49:29','2015-10-11 16:46:30',1,30002660,258,206,264,265,259,224,236,173,180,305,333,323,299,428,395,375,374,312,233,313,323,371,301,313),(1774,'2015-03-10 21:49:29','2015-10-11 16:46:30',1,30002099,133,139,160,114,128,128,110,92,128,359,310,143,118,224,249,243,202,231,279,201,253,227,137,166),(1775,'2015-03-10 21:49:29','2015-10-11 16:46:30',1,30002563,2,7,7,8,12,9,12,4,8,9,9,8,7,9,9,16,7,11,3,1,8,9,5,8),(1776,'2015-03-10 21:49:29','2015-03-10 21:49:29',1,30000373,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(1777,'2015-03-10 21:49:29','2015-10-11 16:46:30',1,30005108,25,17,40,35,17,33,8,15,5,10,6,2,2,3,7,15,1,1,4,8,22,4,1,1),(1778,'2015-03-10 21:49:29','2015-10-11 16:46:30',1,30045319,134,104,185,102,125,135,93,102,77,226,218,74,67,191,132,89,81,101,70,229,104,60,111,109),(1779,'2015-03-10 21:49:29','2015-10-11 16:46:30',1,30002997,39,18,27,15,14,9,18,15,26,13,16,18,27,15,39,36,17,11,21,31,17,37,30,25),(1780,'2015-03-10 21:49:29','2015-10-11 16:46:30',1,30004586,30,27,27,25,37,41,22,10,26,54,74,29,30,52,26,14,36,24,20,10,38,33,29,14),(1781,'2015-03-10 21:49:29','2015-10-11 16:46:30',1,30000249,38,25,43,49,28,32,56,34,51,18,47,62,27,65,36,27,30,34,31,48,21,115,48,71),(1782,'2015-03-10 21:49:29','2015-10-11 16:46:30',1,30002555,63,23,46,38,37,23,21,8,36,39,51,31,31,54,50,71,44,20,29,52,34,34,26,43),(1783,'2015-03-10 21:49:29','2015-10-11 16:46:30',1,30000577,10,4,11,5,2,2,11,8,9,2,1,0,2,0,0,1,0,0,36,50,0,0,0,1),(1784,'2015-03-10 21:49:29','2015-10-11 16:46:30',1,30003393,91,70,84,98,83,73,80,29,49,86,85,66,65,103,96,113,105,106,60,83,84,131,132,94),(1785,'2015-03-10 21:49:29','2015-10-11 16:46:30',1,30004946,5,6,8,12,10,14,3,3,5,0,1,2,3,3,2,1,2,1,1,0,1,1,1,1),(1786,'2015-03-10 21:49:29','2015-10-11 16:46:30',1,30000655,54,37,28,28,80,31,31,14,14,61,54,52,23,11,50,40,50,21,18,26,31,66,71,31),(1787,'2015-03-10 21:49:29','2015-10-11 16:46:30',1,30002740,56,21,29,51,45,48,27,28,33,46,59,59,37,50,40,36,64,39,39,53,39,40,37,45),(1788,'2015-03-10 21:49:29','2015-10-11 16:46:30',1,30001307,7,9,24,11,14,17,6,6,5,20,15,14,18,17,60,26,6,12,6,15,32,12,13,10),(1789,'2015-03-10 21:49:29','2015-10-11 16:46:30',1,30004204,1,7,6,6,3,2,3,1,1,5,5,2,2,1,3,3,3,2,0,0,6,2,4,1),(1790,'2015-03-10 21:49:29','2015-10-11 16:46:30',1,30000814,8,1,8,10,8,13,0,4,19,38,23,11,15,5,2,0,7,5,1,11,10,0,2,8),(1791,'2015-03-10 21:49:29','2015-10-11 16:46:30',1,30000083,19,29,36,26,37,39,30,31,31,43,66,36,51,49,60,49,34,27,39,29,43,33,47,23),(1792,'2015-03-10 21:49:29','2015-10-11 16:46:30',1,30001313,3,1,1,0,5,1,2,0,1,1,0,5,5,2,18,4,1,2,2,3,5,1,0,0),(1793,'2015-03-10 21:49:29','2015-10-11 16:46:30',1,30003494,96,132,83,84,62,72,85,64,78,128,123,131,114,131,128,121,129,113,78,99,103,117,140,153),(1794,'2015-03-10 21:49:29','2015-10-11 16:46:30',1,30000740,25,3,11,19,7,9,4,10,17,2,3,6,3,8,7,6,10,6,2,0,4,4,1,7),(1795,'2015-03-10 21:49:29','2015-10-11 16:46:30',1,30005317,39,38,63,49,65,57,28,45,21,60,62,54,57,74,88,77,54,53,70,63,58,68,57,57),(1796,'2015-03-10 21:49:29','2015-10-11 16:46:30',1,30001378,298,256,255,330,265,233,224,156,235,354,360,328,285,344,360,332,389,253,176,232,327,345,360,291),(1797,'2015-03-10 21:49:29','2015-10-11 16:46:30',1,30001970,38,28,12,26,11,10,9,23,14,4,1,2,4,2,4,9,16,3,7,5,8,16,7,3),(1798,'2015-03-10 21:49:29','2015-10-11 16:46:30',1,30001434,35,17,17,23,12,10,13,5,9,13,18,24,20,12,17,19,9,17,19,22,21,21,17,24),(1799,'2015-03-10 21:49:29','2015-10-11 16:46:30',1,30003044,25,18,40,42,21,16,23,19,23,49,47,113,99,44,63,51,61,59,58,38,40,33,32,25),(1800,'2015-03-10 21:49:29','2015-10-11 16:46:30',1,30003462,15,28,27,33,38,38,37,22,21,50,60,32,29,52,60,57,49,46,29,34,30,29,25,34),(1801,'2015-03-10 21:49:29','2015-10-11 16:46:30',1,30002398,20,8,24,21,16,12,11,20,8,24,25,25,21,41,34,32,30,38,40,64,42,35,53,38),(1802,'2015-03-10 21:49:29','2015-10-11 16:46:30',1,30005315,317,250,308,289,274,253,229,242,207,380,405,377,320,484,457,431,406,301,294,299,369,381,434,320),(1803,'2015-03-10 21:49:29','2015-10-11 16:46:30',1,30003412,205,157,151,173,118,129,145,131,111,246,248,197,181,282,309,290,316,190,155,169,214,245,241,205),(1804,'2015-03-10 21:49:29','2015-10-11 16:46:30',1,30005313,46,39,31,41,33,35,21,35,20,42,43,41,34,54,47,53,58,32,32,38,37,62,82,46),(1805,'2015-03-10 21:49:29','2015-10-11 16:46:30',1,30004149,7,6,9,17,15,18,7,6,15,10,16,13,16,11,16,11,12,10,6,13,14,8,16,19),(1806,'2015-03-10 21:49:29','2015-10-11 16:46:30',1,30001399,591,409,374,447,418,370,485,281,303,453,492,410,399,478,553,570,529,476,345,410,437,567,562,435),(1807,'2015-03-10 21:49:29','2015-10-11 16:46:30',1,30003570,32,25,65,27,33,29,19,17,30,33,34,41,33,23,38,34,21,17,27,25,36,38,29,21),(1808,'2015-03-10 21:49:29','2015-10-11 16:46:30',1,30045336,25,27,16,13,10,12,20,24,23,8,17,17,29,14,15,16,21,9,7,5,19,21,14,20),(1809,'2015-03-10 21:49:29','2015-10-11 16:46:30',1,30023410,46,55,69,46,40,44,50,45,59,88,76,70,64,88,86,82,75,59,50,60,77,73,72,57),(1810,'2015-03-10 21:49:29','2015-10-11 16:46:30',1,30004880,4,9,2,6,2,2,18,6,7,0,3,14,15,0,11,5,7,6,0,9,1,2,1,0),(1811,'2015-03-10 21:49:29','2015-10-11 16:46:30',1,30002548,57,66,72,88,74,66,57,35,64,88,77,70,69,121,99,99,94,54,47,96,81,84,80,86),(1812,'2015-03-10 21:49:29','2015-10-11 16:46:30',1,30001672,415,320,423,375,380,352,317,300,287,638,605,667,581,535,569,581,550,457,370,468,578,572,550,529),(1813,'2015-03-10 21:49:29','2015-10-11 16:46:30',1,30005202,603,454,702,713,637,622,553,447,427,678,785,812,743,834,984,1000,949,711,475,571,671,852,820,806),(1814,'2015-03-10 21:49:29','2015-10-11 16:46:30',1,30003662,12,11,19,3,17,18,41,11,13,7,9,5,4,6,4,2,7,14,4,10,6,17,8,0),(1815,'2015-03-10 21:49:29','2015-10-11 16:46:30',1,30003337,1,1,0,2,1,3,3,1,1,1,1,8,5,2,0,4,1,6,0,1,1,0,6,2),(1816,'2015-03-10 21:49:29','2015-10-11 16:46:30',1,30005082,12,18,16,12,20,21,5,9,13,14,10,9,10,17,17,14,16,25,12,8,31,16,9,10),(1817,'2015-03-10 21:49:29','2015-10-11 16:46:30',1,30045339,43,34,49,59,34,35,40,67,48,68,104,70,64,203,131,79,84,61,73,122,89,76,65,58),(1818,'2015-03-10 21:49:29','2015-10-11 16:46:30',1,30001430,58,21,39,36,38,31,28,11,27,40,42,42,40,27,32,30,29,63,21,30,33,42,37,42),(1819,'2015-03-10 21:49:29','2015-10-11 16:46:30',1,30003424,13,4,9,8,5,7,6,4,9,25,24,13,8,23,13,13,3,5,8,10,12,4,8,8),(1820,'2015-03-10 21:49:29','2015-10-11 16:46:30',1,30002769,17,36,16,11,15,19,17,12,6,20,19,24,23,25,19,18,18,29,32,16,36,37,27,29),(1821,'2015-03-10 21:49:29','2015-10-11 16:46:30',1,30002558,11,2,14,19,21,10,4,4,14,13,19,9,12,8,4,10,3,4,2,5,11,14,17,15),(1822,'2015-03-10 21:49:29','2015-10-11 16:46:30',1,30003045,96,36,69,115,85,92,58,32,67,112,132,114,103,109,130,121,100,94,64,55,104,88,88,102),(1823,'2015-03-10 21:49:29','2015-10-11 16:46:30',1,30003454,5,8,9,6,6,12,8,5,11,4,8,17,6,12,10,15,12,13,5,4,8,9,13,8),(1824,'2015-03-10 21:49:29','2015-10-11 16:46:30',1,30002412,31,23,30,31,40,43,33,20,27,65,99,50,32,70,35,36,64,32,34,20,40,33,23,10),(1825,'2015-03-10 21:49:29','2015-10-11 16:46:30',1,30002475,36,25,32,47,22,23,40,33,25,49,25,26,16,71,92,106,30,23,13,32,27,57,26,111),(1826,'2015-03-10 21:49:29','2015-10-11 16:46:30',1,30000980,1,0,1,1,6,2,2,0,0,1,0,0,0,0,2,3,2,6,2,1,1,2,1,0),(1827,'2015-03-10 21:49:29','2015-10-11 16:46:30',1,30001942,6,4,1,0,3,2,4,5,2,1,2,5,6,1,4,2,4,7,4,5,2,2,1,3),(1828,'2015-03-10 21:49:29','2015-10-11 16:46:30',1,30003612,66,29,59,46,40,46,51,26,32,26,39,21,18,30,27,33,23,28,16,33,42,20,10,31),(1829,'2015-03-10 21:49:29','2015-10-11 16:46:30',1,30002845,4,2,0,1,2,1,6,3,1,0,0,0,9,0,3,4,2,0,0,0,1,4,4,0),(1830,'2015-03-10 21:49:29','2015-10-11 16:46:30',1,30004388,14,16,8,5,7,9,5,14,13,12,19,5,3,13,10,16,16,24,6,18,12,9,12,21),(1831,'2015-03-10 21:49:29','2015-10-11 16:46:30',1,30004835,1,2,0,0,0,1,0,0,0,1,1,1,0,2,0,0,1,0,0,0,1,3,2,2),(1832,'2015-03-10 21:49:29','2015-10-11 16:46:30',1,30001035,13,12,0,1,7,7,4,3,6,12,7,6,7,3,15,8,2,46,1,3,3,6,9,8),(1833,'2015-03-10 21:49:29','2015-10-11 16:46:30',1,30000676,10,6,35,7,0,6,8,1,5,5,3,3,4,1,9,8,1,9,2,3,3,5,5,0),(1834,'2015-03-10 21:49:29','2015-10-11 16:46:30',1,30003413,346,258,329,306,269,297,259,240,225,425,405,351,342,435,508,495,532,331,294,290,341,425,393,332),(1835,'2015-03-10 21:49:29','2015-10-11 16:46:30',1,30002810,27,17,11,10,7,12,8,7,10,20,25,36,24,23,48,37,29,19,12,20,24,14,12,23),(1836,'2015-03-10 21:49:29','2015-10-11 16:46:30',1,30002969,204,164,190,167,201,180,149,100,153,184,218,185,191,251,233,263,275,205,119,174,247,245,214,242),(1837,'2015-03-10 21:49:29','2015-10-11 16:46:30',1,30033410,4,6,4,8,11,11,4,3,6,4,6,3,7,3,8,7,5,8,12,8,5,7,5,3),(1838,'2015-03-10 21:49:29','2015-10-11 16:46:30',1,30001371,182,143,147,163,183,147,139,101,108,135,157,171,144,147,177,182,177,156,112,113,129,195,191,179),(1839,'2015-03-10 21:49:29','2015-10-11 16:46:30',1,30002742,21,1,4,8,8,12,6,4,4,9,15,10,8,19,5,7,21,8,14,20,15,7,6,7),(1840,'2015-03-10 21:49:29','2015-10-11 16:46:30',1,30003472,20,8,11,8,8,10,11,9,8,9,12,10,16,31,27,24,21,19,10,22,29,23,31,20),(1841,'2015-03-10 21:49:29','2015-10-11 16:46:30',1,30003078,15,9,38,38,47,40,7,20,16,13,24,37,28,12,20,19,23,6,29,24,19,34,24,14),(1842,'2015-03-10 21:49:29','2015-10-11 16:46:30',1,30003463,36,35,70,40,51,46,46,35,27,55,67,46,49,78,73,74,70,58,55,59,66,64,60,70),(1843,'2015-03-10 21:49:29','2015-10-11 16:46:30',1,30002640,624,427,661,633,533,528,558,388,458,692,697,655,524,802,875,806,747,620,505,587,673,745,690,607),(1844,'2015-03-10 21:49:29','2015-10-11 16:46:30',1,30003425,22,24,4,12,8,15,9,5,8,10,11,3,5,26,23,24,9,20,6,7,13,15,17,10),(1845,'2015-03-10 21:49:29','2015-10-11 16:46:30',1,30003419,28,22,17,17,47,56,9,12,18,28,26,28,30,36,18,29,46,36,8,27,25,17,14,26),(1846,'2015-03-10 21:49:29','2015-10-11 16:46:30',1,30004259,9,14,4,6,1,1,2,0,13,4,4,8,10,8,2,3,3,5,14,4,6,2,3,8),(1847,'2015-03-10 21:49:29','2015-10-11 16:46:30',1,30000203,4,11,16,8,16,19,8,6,6,5,7,9,6,16,8,11,6,5,5,7,8,9,15,1),(1848,'2015-03-10 21:49:29','2015-10-11 16:46:30',1,30003867,79,96,137,133,113,101,115,58,112,194,221,184,154,208,191,223,177,150,141,148,155,188,217,177),(1849,'2015-03-10 21:49:29','2015-10-11 16:46:30',1,30001233,73,85,100,58,76,55,96,29,55,283,253,60,61,87,105,105,39,37,37,114,83,68,45,33),(1850,'2015-03-10 21:49:29','2015-10-11 16:46:30',1,30003537,3,4,8,1,0,0,8,1,1,4,7,6,7,5,5,5,4,2,0,5,6,14,10,5),(1851,'2015-03-10 21:49:29','2015-10-11 16:46:30',1,30004033,4,3,0,4,10,6,5,5,0,2,0,5,5,0,2,2,0,2,1,0,3,4,2,0),(1852,'2015-03-10 21:49:29','2015-10-11 16:46:30',1,30001029,44,26,25,13,16,19,20,13,14,25,28,26,31,17,94,45,34,32,1,10,13,46,52,23),(1853,'2015-03-10 21:49:29','2015-10-11 16:46:30',1,30001736,65,39,110,70,67,64,45,25,43,82,71,79,68,157,81,91,86,69,49,74,172,74,65,108),(1854,'2015-03-10 21:49:29','2015-10-11 16:46:30',1,30004305,2,2,0,1,2,1,0,3,1,13,7,16,17,9,2,4,0,3,4,3,3,16,8,2),(1855,'2015-03-10 21:49:29','2015-10-11 16:46:30',1,30004603,19,17,23,24,13,17,24,8,20,13,11,7,5,5,10,10,20,6,25,47,40,18,12,13),(1856,'2015-03-10 21:49:29','2015-10-11 16:46:30',1,30002964,249,234,326,276,282,253,236,121,200,305,315,312,290,343,387,394,425,286,223,291,350,395,355,317),(1857,'2015-03-10 21:49:29','2015-10-11 16:46:30',1,30003842,15,13,22,9,4,11,9,12,7,7,4,14,12,9,15,21,20,13,4,12,17,9,14,15),(1858,'2015-03-10 21:49:29','2015-10-11 16:46:30',1,30000028,25,4,23,15,15,24,27,9,10,16,13,26,26,24,30,27,23,20,19,21,12,31,31,8),(1859,'2015-03-10 21:49:29','2015-10-11 16:46:30',1,30000091,0,1,2,1,5,4,7,7,0,14,11,8,8,5,1,6,5,4,6,2,6,6,3,4),(1860,'2015-03-10 21:49:29','2015-10-11 16:46:30',1,30000137,38,29,30,12,11,9,19,20,20,21,18,38,38,26,21,18,29,21,19,16,23,26,30,28),(1861,'2015-03-10 21:49:29','2015-10-11 16:46:30',1,30002730,18,8,31,21,11,13,7,15,10,22,23,12,21,27,12,10,17,24,14,7,25,15,15,31),(1862,'2015-03-10 21:49:29','2015-10-11 16:46:30',1,30003822,22,12,8,11,14,6,5,6,4,0,1,2,3,3,5,3,4,2,2,4,1,10,10,2),(1863,'2015-03-10 21:49:29','2015-10-11 16:46:30',1,30004986,3,7,2,13,11,23,3,9,4,10,12,12,13,5,6,6,4,13,9,10,4,5,11,9),(1864,'2015-03-10 21:49:29','2015-10-11 16:46:30',1,30002260,31,27,32,34,45,30,25,37,17,55,54,73,60,70,57,58,50,46,30,37,67,36,47,30),(1865,'2015-03-10 21:49:29','2015-10-11 16:46:30',1,30002673,11,9,15,16,7,11,9,7,5,13,16,8,8,14,14,3,7,8,2,3,7,8,18,11),(1866,'2015-03-10 21:49:29','2015-10-11 16:46:30',1,30004287,30,13,15,19,18,13,25,8,22,56,243,136,59,77,251,177,98,69,101,231,139,47,36,48),(1867,'2015-03-10 21:49:29','2015-10-11 16:46:30',1,30002095,102,54,65,85,71,73,48,53,55,138,102,122,117,105,186,145,128,101,128,83,112,189,195,125),(1868,'2015-03-10 21:49:29','2015-10-11 16:46:30',1,30003517,33,33,50,39,29,27,26,29,37,35,37,38,33,35,26,28,37,18,12,30,49,38,27,28),(1869,'2015-03-10 21:49:29','2015-10-11 16:46:30',1,30003033,445,260,453,431,385,389,344,271,344,571,578,524,445,721,712,635,588,561,435,470,563,628,588,562),(1870,'2015-03-10 21:49:29','2015-10-11 16:46:30',1,30001535,12,7,18,3,8,13,7,10,7,12,13,18,12,18,8,10,20,34,5,9,32,19,17,20),(1871,'2015-03-10 21:49:29','2015-10-11 16:46:30',1,30004182,1,2,1,1,7,7,8,1,1,6,1,1,1,0,1,0,1,0,0,0,4,2,1,4),(1872,'2015-03-10 21:49:29','2015-10-11 16:46:30',1,30001571,18,16,6,2,19,20,9,2,13,17,88,24,17,20,10,7,18,24,11,15,13,19,16,9),(1873,'2015-03-10 21:49:29','2015-10-11 16:46:30',1,30003365,7,1,0,0,2,2,2,3,5,0,0,3,3,2,0,1,1,2,1,0,3,0,0,0),(1874,'2015-03-10 21:49:29','2015-10-11 16:46:30',1,30000437,1,0,2,0,0,0,1,1,0,1,1,1,3,2,0,1,4,0,0,1,0,0,0,1),(1875,'2015-03-10 21:49:29','2015-10-11 16:46:30',1,30003825,17,36,121,57,38,40,14,21,12,26,27,27,33,32,27,20,30,44,21,27,64,43,37,48),(1876,'2015-03-10 21:49:29','2015-10-11 16:46:30',1,30003466,13,13,15,11,11,11,16,6,18,16,12,16,12,18,19,12,14,19,8,6,12,22,12,9),(1877,'2015-03-10 21:49:29','2015-10-11 16:46:30',1,30003381,13,8,12,19,11,11,10,11,7,16,29,21,10,25,15,18,17,14,28,19,14,25,28,30),(1878,'2015-03-10 21:49:29','2015-10-11 16:46:30',1,30000796,8,1,2,1,3,6,1,5,1,0,0,2,2,3,1,1,4,5,1,0,2,4,1,1),(1879,'2015-03-10 21:49:29','2015-10-11 16:46:30',1,30002060,119,176,221,152,121,112,102,118,104,308,230,121,112,184,201,211,173,244,163,148,200,183,147,150),(1880,'2015-03-10 21:49:29','2015-10-11 16:46:30',1,30003839,61,68,63,141,94,106,44,48,61,66,66,50,55,77,87,88,62,43,39,41,58,56,45,71),(1881,'2015-03-10 21:49:29','2015-10-11 16:46:30',1,30003408,88,56,68,81,52,56,77,35,47,63,63,50,44,91,129,116,115,60,55,75,61,80,79,66),(1882,'2015-03-10 21:49:29','2015-10-11 16:46:30',1,30003385,81,74,72,79,88,77,85,38,62,97,89,77,70,97,78,99,112,98,52,83,73,142,136,94),(1883,'2015-03-10 21:49:29','2015-10-11 16:46:30',1,30001023,3,9,13,0,3,2,3,1,6,3,5,6,16,5,9,11,6,3,0,5,7,0,3,8),(1884,'2015-03-10 21:49:29','2015-10-11 16:46:30',1,30004314,17,7,24,2,13,18,3,9,16,7,15,13,11,4,23,14,6,5,2,4,3,2,4,9),(1885,'2015-03-10 21:49:29','2015-10-11 16:46:30',1,30001985,159,40,147,51,63,65,41,51,60,50,50,31,41,33,76,80,26,35,192,186,108,39,53,54),(1886,'2015-03-10 21:49:29','2015-10-11 16:46:30',1,30001181,15,28,13,20,14,15,18,20,27,79,93,19,30,84,28,29,26,41,22,25,19,38,41,19),(1887,'2015-03-10 21:49:29','2015-10-11 16:46:30',1,30002369,48,9,35,23,50,29,35,47,43,9,8,11,10,33,51,44,36,36,17,40,10,29,23,7),(1888,'2015-03-10 21:49:29','2015-10-11 16:46:30',1,30001252,38,20,15,84,12,11,21,19,53,96,123,102,76,111,151,120,143,176,78,128,84,116,99,126),(1889,'2015-03-10 21:49:29','2015-10-11 16:46:30',1,30005281,16,16,18,29,23,22,20,5,24,24,25,12,8,18,10,11,7,4,13,16,7,40,22,14),(1890,'2015-03-10 21:49:29','2015-10-11 16:46:30',1,30003392,180,77,88,84,106,116,110,56,95,150,171,141,138,160,159,162,201,154,101,122,126,170,137,119),(1891,'2015-03-10 21:49:29','2015-10-11 16:46:30',1,30002543,1120,864,1090,988,992,922,902,629,807,1372,1436,1276,1188,1417,1661,1609,1502,1247,972,1041,1182,1471,1339,1104),(1892,'2015-03-10 21:49:29','2015-10-11 16:46:30',1,30002085,9,11,0,10,3,7,15,7,8,27,22,30,30,23,24,31,36,41,19,11,18,15,13,24),(1893,'2015-03-10 21:49:29','2015-10-11 16:46:30',1,30003281,9,10,42,28,28,24,13,11,14,65,27,17,31,55,33,29,30,17,21,19,30,32,36,28),(1894,'2015-03-10 21:49:29','2015-10-11 16:46:30',1,30001769,14,2,2,4,11,8,1,8,2,2,12,3,2,2,5,9,8,2,3,1,5,5,11,3),(1895,'2015-03-10 21:49:29','2015-10-11 16:46:30',1,30002962,100,60,107,92,90,77,51,54,59,96,70,55,44,52,60,54,59,24,48,28,52,54,37,45),(1896,'2015-03-10 21:49:29','2015-10-11 16:46:30',1,30000559,3,4,2,2,0,1,2,1,4,1,15,5,1,11,3,2,30,1,17,9,3,4,7,7),(1897,'2015-03-10 21:49:29','2015-10-11 16:46:30',1,30002598,21,0,10,10,6,0,16,0,6,12,16,12,15,4,29,8,8,15,3,0,4,11,10,15),(1898,'2015-03-10 21:49:29','2015-10-11 16:46:30',1,30000666,2,17,13,19,8,9,73,0,9,23,22,27,27,22,16,7,5,13,4,8,5,5,10,2),(1899,'2015-03-10 21:49:29','2015-10-11 16:46:30',1,30005103,7,12,20,10,20,23,7,2,10,12,67,8,4,11,22,29,10,22,14,5,9,9,7,4),(1900,'2015-03-10 21:49:29','2015-10-11 16:46:30',1,30000856,6,6,12,9,4,3,16,6,7,11,6,3,5,4,11,12,2,2,1,0,1,7,5,2),(1901,'2015-03-10 21:49:29','2015-10-11 16:46:30',1,30003192,25,7,51,18,30,16,15,19,7,6,8,3,2,11,15,17,7,2,8,13,10,7,8,6),(1902,'2015-03-10 21:49:29','2015-10-11 16:46:30',1,30004653,18,0,2,13,3,1,5,4,6,4,3,2,2,3,4,4,1,5,9,22,16,11,10,10),(1903,'2015-03-10 21:49:29','2015-10-11 16:46:30',1,30004414,0,1,0,1,1,1,1,1,1,2,1,1,1,1,0,0,1,0,2,1,0,0,0,6),(1904,'2015-03-10 21:49:29','2015-10-11 16:46:30',1,30004327,2,8,3,1,5,24,6,3,3,14,12,4,6,16,41,24,1,5,1,2,9,10,7,1),(1905,'2015-03-10 21:49:29','2015-10-11 16:46:30',1,30004784,11,5,0,6,6,8,2,4,6,6,10,9,7,24,21,26,29,33,12,1,8,8,13,11),(1906,'2015-03-10 21:49:29','2015-10-11 16:46:30',1,30005184,1,0,7,0,0,1,0,0,1,0,0,0,0,0,1,0,1,1,0,0,0,1,5,0),(1907,'2015-03-10 21:49:29','2015-10-11 16:46:30',1,30000279,2,4,20,2,7,13,10,12,17,3,2,0,2,0,0,1,2,3,0,1,14,0,3,0),(1908,'2015-03-10 21:49:29','2015-10-11 16:46:30',1,30003737,115,38,20,22,35,38,36,25,22,59,49,50,48,38,66,65,55,53,26,27,52,37,47,54),(1909,'2015-03-10 21:49:29','2015-10-11 16:46:30',1,30000578,8,14,9,24,12,9,8,2,15,26,21,27,33,13,26,25,21,9,16,25,23,22,22,11),(1910,'2015-03-10 21:49:29','2015-10-11 16:46:30',1,30000897,15,21,17,27,30,35,18,7,21,12,10,20,16,35,17,16,13,13,9,19,10,40,40,9),(1911,'2015-03-10 21:49:29','2015-10-11 16:46:30',1,30005183,1,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,2,0,3,3,0),(1912,'2015-03-10 21:49:29','2015-03-10 21:49:29',1,30000416,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(1913,'2015-03-10 21:49:29','2015-03-10 21:49:29',1,30001635,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(1914,'2015-03-10 21:49:29','2015-10-11 16:46:30',1,30004929,24,31,41,32,28,21,4,12,2,3,6,2,3,2,6,5,4,1,2,3,1,10,12,5),(1915,'2015-03-10 21:49:29','2015-10-11 16:46:30',1,30000934,2,0,6,4,1,4,6,12,5,4,4,3,4,9,3,4,3,5,2,2,7,2,8,22),(1916,'2015-03-10 21:49:29','2015-10-11 16:46:30',1,30002019,76,26,124,124,126,59,120,16,22,12,12,5,3,34,15,11,35,10,13,8,21,8,7,19),(1917,'2015-03-10 21:49:29','2015-10-11 16:46:30',1,30004032,13,14,6,6,16,14,8,7,5,17,22,22,22,11,22,22,20,35,3,7,15,15,15,13),(1918,'2015-03-10 21:49:29','2015-10-11 16:46:30',1,30000572,204,30,99,73,161,44,61,35,41,17,19,5,12,31,18,28,9,24,55,105,26,34,35,6),(1919,'2015-03-10 21:49:29','2015-10-11 16:46:30',1,30000853,98,18,113,38,30,36,37,10,36,82,97,209,118,36,63,70,33,25,10,40,37,49,50,27),(1920,'2015-03-10 21:49:29','2015-10-11 16:46:30',1,30004757,76,7,1,11,6,7,9,4,9,29,22,20,15,42,41,36,29,35,21,30,4,55,46,12),(1921,'2015-03-10 21:49:29','2015-10-11 16:46:30',1,30001064,3,0,0,0,0,1,1,0,0,0,0,2,2,0,6,4,4,3,1,2,3,0,0,0),(1922,'2015-03-10 21:49:29','2015-10-11 16:46:30',1,30001906,9,4,11,9,24,14,15,11,2,6,1,10,5,5,9,16,10,8,4,12,10,13,10,14),(1923,'2015-03-10 21:49:29','2015-10-11 16:46:30',1,30003126,19,18,9,12,16,22,46,5,4,10,11,4,9,13,6,3,2,5,7,5,5,5,6,13),(1924,'2015-03-10 21:49:29','2015-10-11 16:46:30',1,30001801,0,0,0,0,0,1,0,0,0,0,0,1,0,0,2,0,2,0,0,0,1,0,0,0),(1925,'2015-03-10 21:49:29','2015-10-11 16:46:30',1,30001087,7,3,16,3,11,11,2,4,6,5,8,5,4,25,6,9,12,11,0,11,3,3,11,13),(1926,'2015-03-10 21:49:29','2015-10-11 16:46:30',1,30004503,18,11,11,15,9,12,23,9,7,6,19,35,26,19,27,36,45,23,10,17,12,21,15,10),(1927,'2015-03-10 21:49:29','2015-10-11 16:46:30',1,30003751,360,127,151,99,98,129,95,59,81,200,166,179,135,463,245,119,177,99,73,187,674,129,171,131),(1928,'2015-03-10 21:49:29','2015-10-11 16:46:30',1,30004867,2,8,6,8,6,4,1,9,3,5,1,3,2,3,7,8,4,1,4,8,8,1,4,10),(1929,'2015-03-10 21:49:29','2015-10-11 16:46:30',1,30005187,2,2,9,1,2,2,76,1,1,0,2,6,3,7,4,3,1,2,1,18,0,8,5,1),(1930,'2015-03-10 21:49:29','2015-10-11 16:46:30',1,30004652,0,0,0,4,1,1,1,0,1,0,0,0,5,0,2,2,1,2,0,4,3,6,1,1),(1931,'2015-03-10 21:49:29','2015-10-11 16:46:30',1,30000695,13,21,40,25,43,37,17,17,13,13,2,9,2,8,8,12,23,24,0,25,9,14,12,6),(1932,'2015-03-10 21:49:29','2015-10-11 16:46:30',1,30000804,33,14,25,17,10,18,15,10,16,7,4,1,1,8,5,7,7,18,2,3,2,13,15,2),(1933,'2015-03-10 21:49:29','2015-10-11 16:46:30',1,30004013,11,11,12,6,23,17,3,1,13,13,26,17,19,28,55,97,60,18,9,12,28,21,26,24),(1934,'2015-03-10 21:49:29','2015-10-11 16:46:30',1,30000497,16,3,7,0,4,4,4,11,3,4,3,11,8,4,10,14,11,14,24,7,8,13,11,8),(1935,'2015-03-10 21:49:29','2015-10-11 16:46:30',1,30000810,84,14,33,42,74,70,31,11,50,17,20,23,18,2,8,8,4,9,2,1,5,12,13,19),(1936,'2015-03-10 21:49:29','2015-10-11 16:46:30',1,30000754,2,1,3,3,8,6,3,0,5,0,1,3,1,3,3,3,2,0,0,2,3,3,2,1),(1937,'2015-03-10 21:49:29','2015-03-10 21:49:29',1,30000332,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(1938,'2015-03-10 21:49:29','2015-10-11 16:46:30',1,30002826,4,5,8,4,4,9,12,9,7,20,26,13,10,10,11,11,8,13,0,2,3,57,13,12),(1939,'2015-03-10 21:49:29','2015-10-11 16:46:30',1,30001171,106,24,33,57,34,36,40,17,17,100,110,48,42,79,55,50,45,39,36,81,108,38,30,51),(1940,'2015-03-10 21:49:29','2015-10-11 16:46:30',1,30000959,2,4,4,7,18,14,6,4,4,6,9,7,9,2,5,2,0,3,2,0,0,5,4,0),(1941,'2015-03-10 21:49:29','2015-10-11 16:46:30',1,30004507,1,1,0,1,0,0,0,1,2,2,0,1,2,1,1,1,0,1,1,0,0,3,3,0),(1942,'2015-03-10 21:49:29','2015-10-11 16:46:30',1,30000600,30,7,35,6,46,9,33,5,8,33,26,17,10,33,29,18,48,7,35,29,14,30,41,22),(1943,'2015-03-10 21:49:29','2015-10-11 16:46:30',1,30003269,15,15,145,13,7,8,19,24,35,19,20,8,7,31,29,32,23,7,29,16,25,57,54,13),(1944,'2015-03-10 21:49:29','2015-10-11 16:46:30',1,30002381,0,10,3,3,3,6,14,0,2,0,0,4,7,3,1,1,1,1,0,8,6,10,4,8),(1945,'2015-03-10 21:49:29','2015-10-11 16:46:30',1,30001957,6,6,12,6,8,8,4,6,8,2,2,6,3,1,9,8,5,10,13,8,6,7,9,13),(1946,'2015-03-10 21:49:29','2015-10-11 16:46:30',1,30002152,1,1,1,2,0,0,1,1,2,0,0,8,10,0,7,14,3,0,7,0,0,0,0,4),(1947,'2015-03-10 21:49:29','2015-10-11 16:46:30',1,30000981,10,7,21,16,19,16,28,22,8,40,56,11,8,17,60,32,14,6,4,9,10,31,45,21),(1948,'2015-03-10 21:49:29','2015-10-11 16:46:30',1,30004046,51,44,215,40,35,28,58,24,31,26,21,24,33,77,71,59,42,19,44,11,40,31,38,36),(1949,'2015-03-10 21:49:29','2015-10-11 16:46:30',1,30000913,4,13,6,4,7,14,11,12,7,15,14,8,7,17,22,10,6,11,5,5,6,16,19,5),(1950,'2015-03-10 21:49:29','2015-10-11 16:46:30',1,30002320,20,15,12,44,14,17,28,11,19,9,7,3,4,2,3,1,6,3,31,1,15,1,5,12),(1951,'2015-03-10 21:49:29','2015-10-11 16:46:30',1,30001153,19,40,113,68,60,35,29,18,75,240,82,54,55,166,279,58,150,46,165,249,89,72,168,23),(1952,'2015-03-10 21:49:29','2015-10-11 16:46:30',1,30000500,1,0,1,2,5,4,2,1,3,5,3,2,1,6,7,5,6,3,1,2,2,12,9,2),(1953,'2015-03-10 21:49:29','2015-10-11 16:46:30',1,30001888,5,19,10,4,21,19,27,17,2,46,39,43,43,53,43,34,55,30,10,37,25,61,58,37),(1954,'2015-03-10 21:49:29','2015-10-11 16:46:30',1,30000233,12,21,7,19,14,11,18,14,13,0,0,1,1,2,3,5,8,6,1,0,4,11,12,8),(1955,'2015-03-10 21:49:29','2015-10-11 16:46:30',1,30002221,7,3,4,11,1,8,89,3,4,6,9,6,3,4,7,4,7,1,14,12,10,13,22,5),(1956,'2015-03-10 21:49:29','2015-10-11 16:46:30',1,30003505,23,11,28,25,7,9,12,8,6,7,11,22,14,16,20,23,24,5,13,12,11,23,18,14),(1957,'2015-03-10 21:49:29','2015-10-11 16:46:30',1,30004276,6,4,10,5,7,5,3,3,5,17,22,11,11,8,16,15,14,4,5,2,5,2,4,2),(1958,'2015-03-10 21:49:29','2015-10-11 16:46:30',1,30003473,25,22,15,22,38,36,29,17,18,47,38,33,34,54,66,49,37,32,51,50,60,26,49,35),(1959,'2015-03-10 21:49:29','2015-10-11 16:46:30',1,30003002,1,11,6,16,11,7,18,21,7,1,9,7,11,7,15,7,4,5,9,4,4,8,7,4),(1960,'2015-03-10 21:49:29','2015-10-11 16:46:30',1,30003938,2,2,0,1,0,1,3,1,2,0,1,1,1,12,2,8,30,1,0,3,0,0,0,5),(1961,'2015-03-10 21:49:29','2015-10-11 16:46:30',1,30001049,2,0,0,1,2,4,0,2,1,2,5,1,1,3,0,2,0,3,0,1,0,4,3,1),(1962,'2015-03-10 21:49:29','2015-10-11 16:46:30',1,30000044,12,22,7,11,12,15,9,8,6,21,21,18,23,32,26,15,30,26,4,14,19,7,18,21),(1963,'2015-03-10 21:49:29','2015-10-11 16:46:30',1,30002651,25,43,25,15,22,24,13,16,16,45,46,24,25,34,33,30,14,18,23,35,27,44,40,24),(1964,'2015-03-10 21:49:29','2015-10-11 16:46:30',1,30003541,9,23,11,23,29,15,7,16,7,25,25,16,20,12,15,17,16,16,5,9,8,11,11,8),(1965,'2015-03-10 21:49:29','2015-10-11 16:46:30',1,30001256,6,38,23,31,22,14,15,14,16,14,11,16,14,33,28,41,24,39,59,20,51,74,24,11),(1966,'2015-03-10 21:49:29','2015-10-11 16:46:30',1,30002643,137,171,135,128,142,132,156,122,134,186,162,162,176,174,196,207,161,190,124,200,150,161,149,180),(1967,'2015-03-10 21:49:29','2015-10-11 16:46:30',1,30003599,42,37,65,30,29,38,101,10,38,31,28,45,46,50,47,40,28,37,38,37,46,41,38,25),(1968,'2015-03-10 21:49:29','2015-10-11 16:46:30',1,30002321,6,3,0,6,3,4,3,4,10,3,3,2,5,2,1,2,1,3,4,2,5,0,9,3),(1969,'2015-03-10 21:49:29','2015-10-11 16:46:30',1,30002881,4,5,10,4,6,9,11,9,14,20,26,17,10,10,20,11,9,14,0,4,3,64,13,14),(1970,'2015-03-10 21:49:29','2015-10-11 16:46:30',1,30002827,6,12,4,5,9,4,1,1,3,0,0,2,4,0,1,2,4,3,1,3,2,0,5,7),(1971,'2015-03-10 21:49:29','2015-10-11 16:46:30',1,30003718,34,7,8,11,10,14,9,12,4,10,7,13,15,14,21,25,9,19,12,10,6,13,17,20),(1972,'2015-03-10 21:49:29','2015-10-11 16:46:30',1,30003276,68,46,136,54,43,44,48,62,36,58,65,59,49,68,51,36,46,23,40,100,188,69,51,33),(1973,'2015-03-10 21:49:29','2015-10-11 16:46:30',1,30004043,22,38,55,26,27,36,12,8,25,44,43,24,37,23,30,21,22,27,15,90,19,23,20,14),(1974,'2015-03-10 21:49:29','2015-10-11 16:46:30',1,30002423,11,3,28,26,14,14,16,8,25,24,10,28,19,16,14,16,15,14,9,18,43,21,14,10),(1975,'2015-03-10 21:49:29','2015-10-11 16:46:30',1,30004821,6,18,8,47,10,8,9,3,1,1,2,1,2,1,3,4,0,1,0,2,4,3,3,2),(1976,'2015-03-10 21:49:29','2015-10-11 16:46:30',1,30002408,10,20,23,35,25,26,10,27,7,22,27,32,29,66,27,20,26,11,34,33,14,15,17,8),(1977,'2015-03-10 21:49:29','2015-10-11 16:46:30',1,30005030,71,51,86,52,40,46,57,37,77,64,78,48,57,144,90,93,59,78,68,65,79,68,66,42),(1978,'2015-03-10 21:49:29','2015-10-11 16:46:30',1,30000050,1,0,4,3,0,2,0,0,4,2,1,0,1,0,1,5,1,4,0,0,1,0,0,1),(1979,'2015-03-10 21:49:29','2015-10-11 16:46:30',1,30001709,14,10,10,17,10,8,11,10,8,6,8,11,8,4,31,44,29,33,38,36,21,17,28,9),(1980,'2015-03-10 21:49:29','2015-10-11 16:46:30',1,30004263,2,3,0,4,2,3,4,3,1,4,0,5,2,3,5,8,4,3,3,3,3,1,1,3),(1981,'2015-03-10 21:49:29','2015-10-11 16:46:30',1,30002628,2,1,0,4,3,2,4,3,4,85,50,6,3,3,3,2,8,10,5,3,4,4,7,6),(1982,'2015-03-10 21:49:29','2015-10-11 16:46:30',1,30002345,1,8,10,17,11,9,1,15,1,5,5,15,10,13,8,6,28,25,21,29,13,9,6,5),(1983,'2015-03-10 21:49:29','2015-10-11 16:46:30',1,30000226,17,26,50,33,54,39,51,45,28,7,6,8,5,4,6,2,33,32,10,9,8,10,9,14),(1984,'2015-03-10 21:49:29','2015-10-11 16:46:30',1,30001344,22,9,26,10,13,15,12,5,11,8,10,8,13,15,59,19,9,8,9,15,23,31,26,11),(1985,'2015-03-10 21:49:29','2015-03-10 21:49:29',1,30000418,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(1986,'2015-03-10 21:49:29','2015-10-11 16:46:30',1,30000495,8,3,10,0,4,4,3,6,4,2,1,7,3,5,8,8,7,6,27,16,4,8,6,5),(1987,'2015-03-10 21:49:29','2015-10-11 16:46:30',1,30004254,27,19,23,32,24,18,16,17,35,35,25,30,34,29,14,20,28,26,26,19,21,35,26,24),(1988,'2015-03-10 21:49:29','2015-10-11 16:46:30',1,30043410,9,6,6,4,5,5,4,8,6,6,7,6,15,7,10,16,15,11,13,8,6,10,7,10),(1989,'2015-03-10 21:49:29','2015-10-11 16:46:30',1,30003442,31,26,25,33,41,27,36,18,26,26,21,25,26,21,33,53,59,24,12,25,24,18,19,19),(1990,'2015-03-10 21:49:29','2015-10-11 16:46:30',1,30004110,22,9,5,9,7,3,10,9,11,5,6,7,7,12,10,15,14,9,22,18,26,15,10,13),(1991,'2015-03-10 21:49:29','2015-10-11 16:46:30',1,30003691,79,65,203,71,62,75,49,51,47,28,33,22,31,47,46,44,51,31,47,54,54,37,29,49),(1992,'2015-03-10 21:49:29','2015-10-11 16:46:30',1,30003906,1,4,1,2,3,5,5,2,1,1,3,9,4,2,5,5,3,9,0,0,5,5,8,2),(1993,'2015-03-10 21:49:29','2015-10-11 16:46:30',1,30002335,1,0,0,0,0,3,2,1,0,0,1,7,8,0,0,0,0,1,0,2,0,0,0,0),(1994,'2015-03-10 21:49:29','2015-10-11 16:46:30',1,30003234,3,7,1,4,2,1,0,2,2,0,0,7,6,0,0,0,1,2,0,0,0,0,0,0),(1995,'2015-03-10 21:49:29','2015-10-11 16:46:30',1,30002316,6,0,2,3,0,1,1,0,0,2,1,0,0,1,3,1,3,1,3,1,5,3,2,4),(1996,'2015-03-10 21:49:29','2015-10-11 16:46:30',1,30004980,129,49,59,77,64,80,76,77,36,172,134,50,44,204,169,137,67,85,150,98,118,216,138,86),(1997,'2015-03-10 21:49:29','2015-10-11 16:46:30',1,30005101,0,5,0,0,0,3,3,0,1,1,0,1,1,2,3,1,3,1,0,4,2,3,2,4),(1998,'2015-03-10 21:49:29','2015-10-11 16:46:30',1,30002082,41,50,54,53,41,54,40,44,36,111,93,81,60,79,106,73,83,89,65,76,88,114,97,94),(1999,'2015-03-10 21:49:29','2015-10-11 16:46:30',1,30003382,27,39,21,27,23,26,32,20,33,45,35,30,27,39,32,40,52,39,19,33,24,62,57,42),(2000,'2015-03-10 21:49:29','2015-10-11 16:46:30',1,30002677,24,16,28,40,13,16,20,25,34,34,31,26,25,68,66,73,49,31,16,40,45,38,31,36),(2001,'2015-03-10 21:49:29','2015-10-11 16:46:30',1,30004732,18,9,1,3,3,5,7,0,3,3,12,16,11,18,24,18,10,5,13,5,15,9,6,14),(2002,'2015-03-10 21:49:29','2015-10-11 16:46:30',1,30002898,33,28,80,37,39,39,21,41,42,324,357,567,419,427,575,448,412,279,468,260,340,979,296,184),(2003,'2015-03-10 21:49:29','2015-10-11 16:46:30',1,30000227,4,15,17,14,13,10,12,16,15,8,4,5,5,1,6,1,17,5,14,9,6,4,5,11),(2004,'2015-03-10 21:49:29','2015-10-11 16:46:30',1,30000484,20,5,8,4,7,4,11,18,3,29,29,24,12,6,20,16,26,11,1,4,7,10,10,8),(2005,'2015-03-10 21:49:29','2015-10-11 16:46:30',1,30002156,0,1,0,0,0,2,2,0,0,0,0,8,4,4,3,6,2,0,10,1,53,12,19,0),(2006,'2015-03-10 21:49:29','2015-10-11 16:46:30',1,30003118,1,2,3,1,3,1,3,0,5,1,2,3,6,5,2,1,5,3,3,2,4,1,3,6),(2007,'2015-03-10 21:49:29','2015-10-11 16:46:30',1,30000809,24,9,38,47,34,28,16,7,25,6,3,4,2,0,1,2,4,2,4,1,3,6,7,3),(2008,'2015-03-10 21:49:29','2015-03-10 21:49:29',1,30001638,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(2009,'2015-03-10 21:49:29','2015-03-10 21:49:29',1,30001487,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(2010,'2015-03-10 21:49:29','2015-10-11 16:46:30',1,30001544,2,2,0,0,1,1,0,0,0,118,124,73,23,1,0,0,3,2,1,14,3,1,2,4),(2011,'2015-03-10 21:49:29','2015-10-11 16:46:30',1,30002891,37,12,78,22,15,19,14,13,19,155,64,128,39,298,77,289,76,28,15,28,98,43,156,44),(2012,'2015-03-10 21:49:29','2015-10-11 16:46:30',1,30001148,2,1,29,3,0,0,2,1,1,1,0,2,2,0,0,0,0,2,0,0,2,3,1,1),(2013,'2015-03-10 21:49:29','2015-10-11 16:46:30',1,30004303,60,31,22,19,41,43,30,40,39,111,166,180,68,112,255,163,103,71,104,237,147,85,58,32),(2014,'2015-03-10 21:49:29','2015-10-11 16:46:30',1,30023489,9,35,12,9,9,12,9,4,4,12,11,8,15,5,18,19,20,12,4,8,10,15,10,15),(2015,'2015-03-10 21:49:29','2015-10-11 16:46:30',1,30002663,46,39,37,31,36,39,54,39,41,46,47,45,39,55,52,54,64,64,48,54,53,35,35,46),(2016,'2015-03-10 21:49:29','2015-10-11 16:46:30',1,30000023,54,35,85,53,42,50,22,22,28,56,55,40,55,91,80,96,83,74,46,82,79,68,71,58),(2017,'2015-03-10 21:49:29','2015-10-11 16:46:30',1,30004058,2,2,9,10,16,9,6,0,4,0,1,3,1,5,11,6,8,3,6,4,7,8,8,6),(2018,'2015-03-10 21:49:29','2015-10-11 16:46:30',1,30002630,4,1,4,4,3,1,0,6,4,63,41,3,2,6,4,6,8,9,3,3,3,10,13,9),(2019,'2015-03-10 21:49:29','2015-03-10 21:49:29',1,30001637,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(2020,'2015-03-10 21:49:29','2015-10-11 16:46:30',1,30000478,5,14,7,6,12,11,8,7,10,9,6,7,7,12,25,9,21,15,22,142,16,9,7,7),(2021,'2015-03-10 21:49:29','2015-10-11 16:46:30',1,30003826,83,59,335,61,58,63,39,67,36,122,122,51,45,246,86,92,60,56,97,101,209,172,138,56),(2022,'2015-03-10 21:49:29','2015-10-11 16:46:30',1,30002526,786,529,722,646,696,636,597,426,520,836,829,743,711,963,904,895,1020,762,595,720,833,1022,903,743),(2023,'2015-03-10 21:49:29','2015-10-11 16:46:30',1,30003036,93,71,149,100,104,118,91,69,100,115,140,134,103,155,212,214,165,140,179,175,183,177,157,143),(2024,'2015-03-10 21:49:29','2015-10-11 16:46:30',1,30003394,38,28,37,35,36,29,28,8,25,46,45,33,25,27,38,43,36,19,23,28,40,55,57,46),(2025,'2015-03-10 21:49:29','2015-10-11 16:46:30',1,30003420,17,13,11,22,13,17,4,21,12,25,27,19,13,24,16,11,34,25,5,17,30,6,7,19),(2026,'2015-03-10 21:49:29','2015-10-11 16:46:30',1,30002090,65,63,65,53,63,69,52,42,41,159,139,115,126,114,214,174,126,120,160,115,124,181,163,135),(2027,'2015-03-10 21:49:29','2015-10-11 16:46:30',1,30002734,135,130,203,130,113,104,133,83,123,182,198,217,166,274,263,214,229,149,145,152,197,241,219,167),(2028,'2015-03-10 21:49:29','2015-10-11 16:46:30',1,30000168,82,55,126,105,91,79,97,58,58,124,123,90,68,90,99,83,115,71,72,90,85,103,92,87),(2029,'2015-03-10 21:49:29','2015-10-11 16:46:30',1,30002180,74,26,54,27,38,41,83,34,20,35,35,34,25,49,68,80,57,21,14,57,62,48,48,39),(2030,'2015-03-10 21:49:29','2015-10-11 16:46:30',1,30003467,36,34,61,33,42,35,43,27,23,36,41,33,43,65,68,63,53,61,44,49,56,56,56,64),(2031,'2015-03-10 21:49:29','2015-03-10 21:49:29',1,30000398,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(2032,'2015-03-10 21:49:29','2015-10-11 16:46:30',1,30000219,4,13,11,4,5,3,3,5,4,1,4,4,5,5,1,4,8,8,2,5,4,3,4,5),(2033,'2015-03-10 21:49:29','2015-10-11 16:46:30',1,30003710,68,38,53,66,34,37,28,27,24,164,64,89,53,126,65,70,46,49,115,62,65,48,46,66),(2034,'2015-03-10 21:49:29','2015-10-11 16:46:30',1,30001364,259,259,319,340,259,224,327,223,263,352,433,445,417,429,463,430,414,334,269,279,315,343,326,270),(2035,'2015-03-10 21:49:29','2015-10-11 16:46:30',1,30003095,8,8,8,10,26,17,2,2,5,5,7,12,4,16,14,18,9,3,24,31,19,11,10,2),(2036,'2015-03-10 21:49:29','2015-10-11 16:46:30',1,30000199,27,21,23,18,34,26,24,11,17,42,71,23,23,26,47,54,41,41,12,22,39,45,61,35),(2037,'2015-03-10 21:49:29','2015-10-11 16:46:30',1,30000017,31,21,38,14,14,18,10,15,11,18,23,11,11,72,36,19,18,23,16,55,39,22,27,18),(2038,'2015-03-10 21:49:29','2015-10-11 16:46:30',1,30001852,14,14,19,17,38,15,10,21,15,43,42,44,47,47,66,42,46,46,9,13,23,50,49,49),(2039,'2015-03-10 21:49:29','2015-10-11 16:46:30',1,30004161,4,11,3,4,8,11,3,3,16,1,6,1,3,5,1,5,1,5,1,4,0,5,4,7),(2040,'2015-03-10 21:49:29','2015-10-11 16:46:30',1,30004197,2,2,10,4,4,5,4,2,1,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0),(2041,'2015-03-10 21:49:29','2015-10-11 16:46:30',1,30001775,10,5,1,2,3,7,6,1,6,9,29,7,4,14,3,1,4,10,6,2,1,3,4,13),(2042,'2015-03-10 21:49:29','2015-10-11 16:46:30',1,30000906,8,1,7,8,7,10,9,5,2,3,2,3,5,2,9,6,4,7,4,5,5,4,5,9),(2043,'2015-03-10 21:49:29','2015-10-11 16:46:30',1,30002021,15,16,59,90,80,56,60,9,17,15,23,7,3,10,12,7,16,10,9,9,7,10,7,11),(2044,'2015-03-10 21:49:29','2015-10-11 16:46:30',1,30004718,28,41,31,18,16,20,129,31,58,54,30,39,20,59,58,168,78,55,27,59,48,71,74,17),(2045,'2015-03-10 21:49:29','2015-10-11 16:46:30',1,30003711,27,22,24,27,23,23,23,13,13,133,34,39,35,48,24,32,24,30,11,17,48,18,19,72),(2046,'2015-03-10 21:49:29','2015-03-10 21:49:29',1,30001606,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(2047,'2015-03-10 21:49:29','2015-10-11 16:46:30',1,30000835,22,3,15,7,4,34,5,3,17,0,3,4,1,1,6,11,4,8,4,0,4,0,0,0),(2048,'2015-03-10 21:49:29','2015-10-11 16:46:30',1,30000850,6,8,1,4,4,2,3,5,2,39,33,208,150,2,3,2,0,1,2,4,2,1,3,3),(2049,'2015-03-10 21:49:29','2015-10-11 16:46:30',1,30000675,3,4,4,12,2,3,13,0,4,5,3,4,3,0,8,2,0,1,1,2,1,6,5,0),(2050,'2015-03-10 21:49:29','2015-10-11 16:46:30',1,30002128,21,11,21,16,9,6,18,0,2,3,1,4,5,1,3,4,5,4,0,0,0,3,4,1),(2051,'2015-03-10 21:49:29','2015-10-11 16:46:30',1,30001186,1,1,1,3,9,17,2,2,8,8,9,3,3,3,4,1,6,6,0,6,16,2,1,5),(2052,'2015-03-10 21:49:29','2015-10-11 16:46:30',1,30003213,11,8,6,6,11,13,1,0,2,3,6,3,3,3,3,0,4,3,0,1,1,2,0,1),(2053,'2015-03-10 21:49:29','2015-10-11 16:46:30',1,30001853,15,16,21,21,35,16,10,17,10,35,33,46,46,37,54,36,33,41,10,19,14,43,49,43),(2054,'2015-03-10 21:49:29','2015-10-11 16:46:30',1,30002878,23,6,3,4,9,13,7,1,7,2,6,5,3,31,6,8,7,4,2,4,2,9,13,20),(2055,'2015-03-10 21:49:29','2015-10-11 16:46:30',1,30001041,29,52,197,149,107,65,38,31,33,97,106,64,44,331,124,113,100,97,43,90,154,60,60,63),(2056,'2015-03-10 21:49:29','2015-10-11 16:46:30',1,30003949,28,22,42,23,28,27,24,18,13,27,24,15,8,25,17,13,24,18,9,7,21,18,19,22),(2057,'2015-03-10 21:49:29','2015-10-11 16:46:30',1,30003161,12,10,14,7,5,12,6,9,3,0,2,5,7,1,1,1,4,1,1,2,0,5,5,3),(2058,'2015-03-10 21:49:29','2015-10-11 16:46:30',1,30003703,15,55,19,26,17,90,20,36,52,65,65,18,9,263,123,96,23,19,47,37,130,38,78,77),(2059,'2015-03-10 21:49:29','2015-10-11 16:46:30',1,30003367,1,4,0,1,2,3,3,5,6,0,0,1,1,2,0,1,0,0,1,0,3,1,2,2),(2060,'2015-03-10 21:49:29','2015-10-11 16:46:30',1,30002476,6,5,16,4,12,5,5,15,2,9,7,0,2,5,69,68,11,3,2,6,6,4,4,1),(2061,'2015-03-10 21:49:29','2015-10-11 16:46:30',1,30001183,22,6,11,19,18,22,9,4,7,58,68,33,28,55,51,29,63,33,27,52,30,37,34,32),(2062,'2015-03-10 21:49:29','2015-10-11 16:46:30',1,30001227,131,69,88,77,85,63,48,44,50,229,199,97,115,178,169,165,123,71,93,280,151,139,124,71),(2063,'2015-03-10 21:49:29','2015-10-11 16:46:30',1,30003772,6,8,22,14,11,2,13,4,12,16,22,10,6,12,11,4,5,9,21,7,9,5,5,8),(2064,'2015-03-10 21:49:29','2015-10-11 16:46:30',1,30004892,5,9,12,22,8,4,11,2,2,21,18,5,11,17,14,21,8,10,50,24,12,16,17,21),(2065,'2015-03-10 21:49:29','2015-10-11 16:46:30',1,30004945,1,1,2,2,3,3,0,2,5,1,0,0,0,0,1,0,1,1,1,0,0,1,0,1),(2066,'2015-03-10 21:49:29','2015-10-11 16:46:30',1,30004876,8,20,19,14,28,22,7,34,21,6,7,9,8,3,3,3,5,4,0,7,1,4,4,14),(2067,'2015-03-10 21:49:29','2015-03-10 21:49:29',1,30000338,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(2068,'2015-03-10 21:49:29','2015-10-11 16:46:30',1,30000778,63,18,21,12,14,13,23,19,21,5,7,17,12,8,7,6,13,17,1,2,1,8,18,8),(2069,'2015-03-10 21:49:29','2015-10-11 16:46:30',1,30001002,23,25,41,29,28,26,7,11,32,48,40,58,50,41,109,87,36,29,34,23,51,65,56,48),(2070,'2015-03-10 21:49:29','2015-10-11 16:46:30',1,30005113,5,6,0,1,4,3,1,4,5,2,2,0,0,0,3,5,0,0,2,0,5,0,0,0),(2071,'2015-03-10 21:49:29','2015-10-11 16:46:30',1,30001802,4,0,4,2,3,3,6,3,4,0,1,2,2,5,3,0,4,1,2,5,5,8,12,11),(2072,'2015-03-10 21:49:29','2015-10-11 16:46:30',1,30003155,9,13,9,8,7,6,11,25,9,0,4,6,6,1,6,3,9,1,3,2,0,2,4,7),(2073,'2015-03-10 21:49:29','2015-10-11 16:46:30',1,30002853,18,11,3,9,8,10,3,4,5,2,7,23,10,4,10,16,4,5,3,4,5,6,9,17),(2074,'2015-03-10 21:49:29','2015-10-11 16:46:30',1,30000213,43,39,14,21,21,16,12,6,22,3,13,17,7,7,6,1,5,4,12,13,0,3,2,5),(2075,'2015-03-10 21:49:29','2015-10-11 16:46:30',1,30004696,8,8,38,8,7,10,9,11,7,12,15,11,36,33,154,118,12,17,17,7,31,35,16,22),(2076,'2015-03-10 21:49:29','2015-10-11 16:46:30',1,30001987,134,29,140,46,40,37,20,25,56,24,19,16,16,26,16,13,8,21,90,55,17,18,30,18),(2077,'2015-03-10 21:49:29','2015-10-11 16:46:30',1,30004793,0,3,3,0,3,5,5,12,6,10,10,9,7,9,8,11,9,15,2,5,7,48,46,8),(2078,'2015-03-10 21:49:29','2015-10-11 16:46:30',1,30001848,14,7,16,30,20,33,5,9,9,50,37,49,37,36,38,57,67,61,13,35,55,52,71,43),(2079,'2015-03-10 21:49:29','2015-03-10 21:49:29',1,30001607,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(2080,'2015-03-10 21:49:29','2015-10-11 16:46:30',1,30004962,32,38,38,57,26,23,44,45,45,45,51,36,33,30,29,65,20,21,13,27,30,25,28,33),(2081,'2015-03-10 21:49:29','2015-10-11 16:46:30',1,30002301,140,29,128,61,61,39,75,25,44,21,29,20,22,74,66,76,44,51,17,42,21,42,41,19),(2082,'2015-03-10 21:49:29','2015-10-11 16:46:30',1,30001036,7,6,3,15,13,15,17,4,9,12,10,15,9,10,17,14,14,20,2,3,3,10,10,16),(2083,'2015-03-10 21:49:29','2015-10-11 16:46:30',1,30004721,0,2,1,3,2,3,79,1,1,2,4,1,1,3,4,10,4,1,4,0,2,0,3,1),(2084,'2015-03-10 21:49:29','2015-10-11 16:46:30',1,30004631,8,8,18,16,13,12,7,1,2,5,6,14,14,8,7,14,5,14,2,11,17,24,17,19),(2085,'2015-03-10 21:49:29','2015-10-11 16:46:30',1,30001569,26,10,15,14,27,62,6,2,8,98,160,54,22,41,40,48,88,39,20,15,27,26,29,21),(2086,'2015-03-10 21:49:29','2015-10-11 16:46:30',1,30003184,2,1,1,2,0,1,2,1,0,3,0,6,4,5,4,1,3,1,2,1,4,2,0,0),(2087,'2015-03-10 21:49:29','2015-10-11 16:46:30',1,30004534,2,2,0,1,3,2,1,0,2,3,2,4,5,2,0,0,1,2,1,1,0,2,2,2),(2088,'2015-03-10 21:49:29','2015-10-11 16:46:30',1,30003133,32,38,17,23,36,47,22,14,14,21,34,35,38,38,29,23,25,20,13,20,28,34,35,40),(2089,'2015-03-10 21:49:29','2015-10-11 16:46:30',1,30003636,38,45,26,22,13,14,37,19,24,13,11,16,16,35,7,14,8,18,15,1,4,20,29,22),(2090,'2015-03-10 21:49:29','2015-10-11 16:46:30',1,30000537,2,2,0,0,1,1,0,0,0,2,1,0,0,5,5,6,8,3,0,0,3,2,2,1),(2091,'2015-03-10 21:49:29','2015-10-11 16:46:30',1,30004854,6,11,4,1,0,1,2,1,0,6,7,10,4,9,9,10,3,7,7,7,4,1,3,7),(2092,'2015-03-10 21:49:29','2015-10-11 16:46:30',1,30000690,9,8,7,0,7,2,4,10,18,12,1,25,31,8,1,8,4,6,1,4,10,8,0,6),(2093,'2015-03-10 21:49:29','2015-10-11 16:46:30',1,30004664,0,4,0,3,1,0,0,0,0,7,5,2,4,214,6,6,2,1,6,1,2,1,1,3),(2094,'2015-03-10 21:49:29','2015-10-11 16:46:30',1,30004697,2,8,2,2,0,1,1,2,3,8,11,1,1,3,4,3,1,3,1,1,15,1,0,4),(2095,'2015-03-10 21:49:29','2015-03-10 21:49:29',1,30001501,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(2096,'2015-03-10 21:49:29','2015-10-11 16:46:30',1,30003101,4,3,4,3,1,2,1,0,2,1,1,2,4,2,4,4,5,5,3,1,3,2,3,3),(2097,'2015-03-10 21:49:29','2015-10-11 16:46:30',1,30000460,10,10,16,38,23,27,27,26,16,11,18,13,7,21,30,15,17,6,6,9,13,3,13,14),(2098,'2015-03-10 21:49:29','2015-10-11 16:46:30',1,30002861,7,5,3,4,10,18,5,4,2,9,18,11,9,7,5,10,7,2,1,2,16,7,10,11),(2099,'2015-03-10 21:49:29','2015-10-11 16:46:30',1,30004536,1,4,0,4,3,0,1,0,2,3,1,1,1,1,0,0,1,3,1,0,0,6,1,1),(2100,'2015-03-10 21:49:29','2015-10-11 16:46:30',1,30000310,49,32,35,30,62,49,28,21,26,23,32,10,12,12,20,7,14,31,9,10,15,18,18,7),(2101,'2015-03-10 21:49:29','2015-03-10 21:49:29',1,30001517,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(2102,'2015-03-10 21:49:29','2015-10-11 16:46:30',1,30003713,93,41,58,64,35,45,36,27,30,99,94,95,69,137,99,96,68,57,133,70,67,72,76,75),(2103,'2015-03-10 21:49:29','2015-10-11 16:46:30',1,30004061,8,3,1,3,1,1,2,0,2,2,2,3,3,1,6,3,2,1,1,3,1,7,8,3),(2104,'2015-03-10 21:49:29','2015-10-11 16:46:30',1,30001982,79,44,60,40,102,71,164,61,58,113,80,62,39,150,105,103,106,68,67,87,79,68,64,87),(2105,'2015-03-10 21:49:29','2015-10-11 16:46:30',1,30004598,5,13,14,8,3,2,10,7,9,6,9,6,2,19,19,22,18,11,27,30,9,9,16,13),(2106,'2015-03-10 21:49:29','2015-10-11 16:46:30',1,30000305,9,7,16,39,15,16,28,12,6,7,11,13,15,41,45,36,63,35,9,13,28,15,21,29),(2107,'2015-03-10 21:49:29','2015-10-11 16:46:30',1,30001348,53,28,41,37,27,32,22,27,50,19,30,29,27,43,81,48,36,36,17,30,34,48,44,28),(2108,'2015-03-10 21:49:29','2015-10-11 16:46:30',1,30000545,27,7,6,19,7,2,1,8,1,25,45,16,14,4,10,11,4,12,8,9,6,4,8,23),(2109,'2015-03-10 21:49:29','2015-10-11 16:46:30',1,30000570,5,18,1,2,3,3,3,6,7,3,6,8,8,4,4,7,3,8,0,3,10,2,5,0),(2110,'2015-03-10 21:49:29','2015-10-11 16:46:30',1,30004523,2,1,0,0,2,1,2,0,1,0,0,2,3,1,1,0,0,1,0,0,0,1,1,1),(2111,'2015-03-10 21:49:29','2015-10-11 16:46:30',1,30002020,4,0,2,5,3,0,0,1,2,0,0,0,0,14,1,0,1,1,1,0,1,1,2,2),(2112,'2015-03-10 21:49:29','2015-10-11 16:46:30',1,30001811,29,27,48,19,39,39,8,12,38,15,27,26,18,6,12,18,10,16,2,2,8,8,11,14),(2113,'2015-03-10 21:49:29','2015-10-11 16:46:30',1,30003777,19,22,20,35,39,30,12,14,19,24,26,32,40,34,41,31,32,42,18,22,33,29,25,62),(2114,'2015-03-10 21:49:29','2015-10-11 16:46:30',1,30005072,15,8,23,19,16,12,15,6,18,13,12,20,6,28,15,17,14,18,17,7,27,15,15,17),(2115,'2015-03-10 21:49:29','2015-10-11 16:46:30',1,30002204,7,4,12,6,15,17,7,6,3,12,9,5,5,13,7,6,5,4,8,10,13,18,16,14),(2116,'2015-03-10 21:49:29','2015-10-11 16:46:30',1,30001698,16,18,21,16,23,21,12,4,7,31,29,38,32,20,23,18,18,28,8,21,56,58,50,52),(2117,'2015-03-10 21:49:29','2015-10-11 16:46:30',1,30003544,1,1,7,4,18,16,6,2,15,1,0,4,9,1,1,2,4,9,0,2,4,7,19,12),(2118,'2015-03-10 21:49:29','2015-10-11 16:46:30',1,30002674,3,6,21,12,12,10,12,7,6,26,23,10,8,17,19,15,7,15,15,11,14,14,9,20),(2119,'2015-03-10 21:49:29','2015-10-11 16:46:30',1,30003844,7,20,25,11,8,11,5,1,15,8,11,12,14,17,33,33,18,18,15,19,23,19,18,58),(2120,'2015-03-10 21:49:29','2015-10-11 16:46:30',1,30005273,37,48,50,25,67,56,37,20,26,59,65,42,29,50,42,39,52,38,82,43,67,46,84,82),(2121,'2015-03-10 21:49:29','2015-10-11 16:46:30',1,30004085,95,78,96,94,112,104,75,60,67,107,147,126,110,128,206,119,81,91,106,115,126,184,185,99),(2122,'2015-03-10 21:49:29','2015-10-11 16:46:30',1,30000107,34,39,38,51,42,40,39,34,36,47,53,36,31,108,69,53,52,60,30,32,45,52,59,38),(2123,'2015-03-10 21:49:29','2015-10-11 16:46:30',1,30003076,17,6,30,21,22,20,28,10,18,26,13,11,13,20,14,11,24,31,23,11,14,33,21,19),(2124,'2015-03-10 21:49:29','2015-10-11 16:46:30',1,30003805,37,60,54,70,98,116,37,31,35,80,53,45,46,46,50,36,38,29,31,51,27,71,89,92),(2125,'2015-03-10 21:49:29','2015-10-11 16:46:30',1,30004123,14,15,19,10,11,5,7,4,10,3,7,6,5,6,13,13,13,8,9,12,10,12,11,12),(2126,'2015-03-10 21:49:29','2015-10-11 16:46:30',1,30004119,12,10,25,9,11,7,16,10,13,13,36,18,4,26,20,23,20,10,15,5,10,25,15,13),(2127,'2015-03-10 21:49:29','2015-10-11 16:46:30',1,30005282,12,14,28,28,20,21,14,10,23,25,23,9,6,19,12,12,7,8,15,14,6,35,11,12),(2128,'2015-03-10 21:49:29','2015-10-11 16:46:30',1,30005240,36,18,39,8,19,22,35,9,12,21,34,21,14,23,23,36,33,26,40,23,35,35,22,34),(2129,'2015-03-10 21:49:29','2015-10-11 16:46:30',1,30000839,19,13,6,13,12,12,26,12,12,31,35,24,32,47,39,31,44,51,18,61,73,43,56,33),(2130,'2015-03-10 21:49:29','2015-10-11 16:46:30',1,30002620,26,11,16,11,16,15,16,13,6,7,12,8,13,4,10,7,11,13,7,9,9,15,20,7),(2131,'2015-03-10 21:49:29','2015-10-11 16:46:30',1,30000464,3,0,2,2,1,4,3,2,5,1,1,0,0,1,3,0,2,3,4,4,8,1,7,5),(2132,'2015-03-10 21:49:29','2015-10-11 16:46:30',1,30001862,18,8,7,5,5,6,6,3,5,52,260,190,46,27,35,37,49,33,13,11,24,55,52,96),(2133,'2015-03-10 21:49:29','2015-10-11 16:46:30',1,30000792,34,8,5,2,7,6,5,3,3,10,10,5,33,5,16,20,4,16,0,12,9,21,11,5),(2134,'2015-03-10 21:49:29','2015-10-11 16:46:30',1,30001873,32,13,9,14,12,16,12,14,6,43,58,66,73,35,61,52,51,109,10,18,41,206,94,107),(2135,'2015-03-10 21:49:29','2015-10-11 16:46:30',1,30001198,98,45,52,71,49,40,87,58,71,607,519,471,393,700,503,592,568,318,514,979,675,650,489,465),(2136,'2015-03-10 21:49:29','2015-10-11 16:46:30',1,30001177,24,26,11,12,11,10,7,21,13,41,52,12,22,70,13,27,21,20,14,21,17,30,33,13),(2137,'2015-03-10 21:49:29','2015-10-11 16:46:30',1,30002093,23,6,13,3,4,15,3,3,3,23,18,15,17,32,16,18,25,25,13,13,8,27,27,21),(2138,'2015-03-10 21:49:29','2015-10-11 16:46:30',1,30003433,112,64,89,74,77,80,77,26,50,82,87,53,54,83,105,113,111,87,54,71,73,98,109,82),(2139,'2015-03-10 21:49:29','2015-10-11 16:46:30',1,30003429,12,11,26,9,14,8,8,14,9,8,8,12,11,5,15,11,9,5,5,31,10,14,17,4),(2140,'2015-03-10 21:49:29','2015-10-11 16:46:30',1,30003897,31,49,46,36,23,19,38,25,25,41,28,43,34,57,77,118,42,16,18,50,34,39,43,26),(2141,'2015-03-10 21:49:29','2015-10-11 16:46:30',1,30000234,13,10,11,5,7,9,16,8,3,1,1,1,2,0,3,3,5,1,4,0,0,3,4,1),(2142,'2015-03-10 21:49:29','2015-10-11 16:46:30',1,30000149,197,181,251,221,212,235,218,185,147,252,269,227,224,326,384,377,364,293,181,207,273,355,348,258),(2143,'2015-03-10 21:49:29','2015-10-11 16:46:30',1,30002386,88,87,98,82,98,78,72,99,61,151,137,111,98,140,146,133,139,110,67,97,113,122,115,99),(2144,'2015-03-10 21:49:29','2015-10-11 16:46:30',1,30000087,13,17,24,16,19,22,15,18,15,29,54,23,30,35,43,47,35,17,34,18,23,19,34,19),(2145,'2015-03-10 21:49:29','2015-10-11 16:46:30',1,30001663,20,21,14,26,11,8,14,13,13,20,11,12,27,22,20,18,18,25,54,18,17,14,16,28),(2146,'2015-03-10 21:49:29','2015-10-11 16:46:30',1,30004238,33,16,48,17,58,48,26,13,25,26,23,30,16,25,121,194,39,17,19,31,13,29,27,16),(2147,'2015-03-10 21:49:29','2015-10-11 16:46:30',1,30004083,157,141,148,142,142,152,134,98,108,204,220,204,177,238,233,226,216,149,138,140,217,227,208,150),(2148,'2015-03-10 21:49:29','2015-10-11 16:46:30',1,30000126,251,179,265,303,170,191,216,183,177,338,342,313,290,325,406,411,358,273,243,261,289,378,361,266),(2149,'2015-03-10 21:49:29','2015-10-11 16:46:30',1,30002533,61,46,69,55,45,26,35,48,46,68,67,67,63,57,70,77,69,93,24,34,36,73,41,54),(2150,'2015-03-10 21:49:29','2015-10-11 16:46:30',1,30002531,121,92,138,102,115,101,76,88,115,164,150,144,137,153,172,163,129,141,65,70,88,145,100,112),(2151,'2015-03-10 21:49:29','2015-10-11 16:46:30',1,30003586,6,4,4,6,16,17,6,5,8,55,58,20,15,6,15,11,9,2,8,3,6,7,13,10),(2152,'2015-03-10 21:49:29','2015-10-11 16:46:30',1,30005244,164,147,145,164,138,124,151,169,281,239,250,247,238,253,218,193,193,154,113,204,223,234,218,281),(2153,'2015-03-10 21:49:29','2015-10-11 16:46:30',1,30003023,10,19,13,7,10,18,4,5,9,7,6,6,9,14,6,7,6,5,14,18,15,7,15,14),(2154,'2015-03-10 21:49:29','2015-10-11 16:46:30',1,30004266,4,2,2,4,5,7,2,6,11,8,3,8,5,9,4,4,5,6,7,7,4,4,4,5),(2155,'2015-03-10 21:49:29','2015-10-11 16:46:30',1,30004282,3,17,5,6,2,1,11,7,11,25,23,30,27,20,28,27,17,34,18,4,16,28,18,17),(2156,'2015-03-10 21:49:29','2015-10-11 16:46:30',1,30003871,80,78,118,121,109,100,110,55,82,152,193,156,121,183,174,186,137,102,126,114,123,141,168,140),(2157,'2015-03-10 21:49:29','2015-10-11 16:46:30',1,30000936,7,3,1,4,3,5,4,1,3,2,2,7,11,9,11,2,9,10,4,8,11,9,9,0),(2158,'2015-03-10 21:49:29','2015-10-11 16:46:30',1,30001580,7,10,6,2,6,9,1,0,2,21,23,18,10,20,20,20,25,15,24,13,32,12,14,22),(2159,'2015-03-10 21:49:29','2015-10-11 16:46:30',1,30000553,4,9,7,3,5,6,4,4,0,9,18,4,4,11,7,10,9,4,12,4,21,10,10,3),(2160,'2015-03-10 21:49:29','2015-10-11 16:46:30',1,30003202,0,6,1,0,1,0,0,0,1,0,0,0,0,0,0,0,0,2,1,0,0,0,0,0),(2161,'2015-03-10 21:49:29','2015-10-11 16:46:30',1,30004288,26,14,19,20,18,11,29,8,24,95,245,149,58,76,212,160,105,78,99,233,140,44,53,30),(2162,'2015-03-10 21:49:29','2015-10-11 16:46:30',1,30004084,114,87,125,109,139,132,90,78,83,146,179,166,129,164,229,156,112,125,122,164,180,213,168,164),(2163,'2015-03-10 21:49:29','2015-10-11 16:46:30',1,30002972,176,155,211,170,193,176,145,85,134,220,237,205,212,232,249,261,273,208,119,177,223,248,230,252),(2164,'2015-03-10 21:49:29','2015-10-11 16:46:30',1,30001714,6,18,13,8,8,8,5,3,2,4,12,12,15,16,18,25,28,8,3,7,19,22,26,10),(2165,'2015-03-10 21:49:29','2015-10-11 16:46:30',1,30004474,3,6,3,3,7,4,1,5,2,6,6,13,10,6,7,10,9,9,4,12,7,17,9,7),(2166,'2015-03-10 21:49:29','2015-10-11 16:46:30',1,30003035,169,97,205,155,144,164,145,100,173,254,301,246,192,330,315,284,269,235,240,225,275,282,272,238),(2167,'2015-03-10 21:49:29','2015-10-11 16:46:30',1,30002232,36,50,25,22,13,16,28,37,26,38,33,33,33,44,47,45,46,31,7,27,37,45,51,33),(2168,'2015-03-10 21:49:29','2015-10-11 16:46:30',1,30003877,198,151,228,196,169,149,166,182,223,257,284,274,236,284,312,274,237,200,160,190,236,279,260,177),(2169,'2015-03-10 21:49:29','2015-10-11 16:46:30',1,30000887,10,22,12,13,15,14,15,11,17,65,51,29,20,40,45,54,46,47,26,23,29,22,39,23),(2170,'2015-03-10 21:49:29','2015-10-11 16:46:30',1,30005288,132,183,97,125,110,95,107,107,148,153,188,153,126,138,138,130,129,82,98,138,170,151,149,135),(2171,'2015-03-10 21:49:29','2015-10-11 16:46:30',1,30005312,165,151,155,174,161,141,130,123,118,163,159,165,142,244,345,304,251,164,171,165,203,325,242,189),(2172,'2015-03-10 21:49:29','2015-10-11 16:46:30',1,30001192,192,19,11,19,20,9,15,33,42,30,80,50,34,55,52,63,52,36,25,53,50,42,29,43),(2173,'2015-03-10 21:49:29','2015-10-11 16:46:30',1,30003232,4,5,0,8,2,4,6,1,2,1,0,2,6,0,0,0,0,1,0,0,0,0,0,0),(2174,'2015-03-10 21:49:29','2015-10-11 16:46:30',1,30000789,44,9,9,2,5,6,24,9,5,3,4,7,9,12,2,31,15,10,0,9,5,4,4,5),(2175,'2015-03-10 21:49:29','2015-10-11 16:46:30',1,30000859,4,4,14,8,2,2,0,1,0,3,1,1,2,1,2,4,1,4,0,0,1,1,1,1),(2176,'2015-03-10 21:49:29','2015-10-11 16:46:30',1,30001122,6,7,14,18,13,14,6,7,20,0,0,5,4,2,2,1,3,2,0,3,2,1,1,0),(2177,'2015-03-10 21:49:29','2015-10-11 16:46:30',1,30002133,19,9,15,3,1,10,5,8,5,57,90,18,10,27,37,15,12,12,10,20,12,34,27,17),(2178,'2015-03-10 21:49:29','2015-10-11 16:46:30',1,30000544,35,21,29,28,23,16,22,18,12,79,102,109,94,71,142,122,62,118,14,26,28,138,147,86),(2179,'2015-03-10 21:49:29','2015-10-11 16:46:30',1,30003698,143,54,59,79,118,144,79,35,44,14,36,116,101,163,89,58,64,15,46,26,26,40,34,33),(2180,'2015-03-10 21:49:29','2015-10-11 16:46:30',1,30001178,25,26,8,11,8,8,8,14,13,36,50,12,23,67,14,29,12,16,15,22,15,32,32,11),(2181,'2015-03-10 21:49:29','2015-10-11 16:46:30',1,30000671,7,13,55,9,9,16,8,9,6,41,51,31,18,31,37,25,29,10,9,12,46,25,18,19),(2182,'2015-03-10 21:49:29','2015-10-11 16:46:30',1,30002306,2,1,4,0,1,3,3,0,4,1,4,3,1,10,1,0,0,0,3,4,4,0,1,5),(2183,'2015-03-10 21:49:29','2015-10-11 16:46:30',1,30003736,135,40,46,33,46,54,59,50,32,104,107,81,60,80,121,133,86,64,42,49,97,69,77,72),(2184,'2015-03-10 21:49:29','2015-10-11 16:46:30',1,30002725,50,26,39,37,37,23,26,23,18,78,37,34,28,29,35,18,27,24,31,16,30,22,18,31),(2185,'2015-03-10 21:49:29','2015-10-11 16:46:30',1,30000070,31,91,46,64,38,45,20,31,15,78,91,71,33,205,54,72,53,44,22,28,68,48,45,52),(2186,'2015-03-10 21:49:29','2015-10-11 16:46:30',1,30004087,48,47,92,70,62,68,55,23,47,74,71,105,69,78,103,83,59,59,61,47,80,105,67,98),(2187,'2015-03-10 21:49:29','2015-10-11 16:46:30',1,30005268,66,56,64,66,89,82,58,41,44,88,89,77,65,72,79,77,99,66,65,72,60,104,105,79),(2188,'2015-03-10 21:49:29','2015-10-11 16:46:30',1,30002403,6,22,31,31,28,23,33,24,22,13,20,5,5,129,12,18,15,16,23,12,15,29,16,82),(2189,'2015-03-10 21:49:29','2015-10-11 16:46:30',1,30001716,61,41,34,40,55,57,36,48,31,79,74,67,62,53,59,58,74,41,58,100,91,92,100,77),(2190,'2015-03-10 21:49:29','2015-10-11 16:46:30',1,30003963,7,17,6,10,7,9,8,17,11,14,21,13,10,20,12,9,14,12,9,13,10,13,18,20),(2191,'2015-03-10 21:49:29','2015-10-11 16:46:30',1,30001646,75,110,83,68,77,82,88,53,50,101,107,93,79,122,110,98,97,87,69,54,73,144,89,110),(2192,'2015-03-10 21:49:29','2015-10-11 16:46:30',1,30003509,19,12,16,15,14,11,12,6,7,21,25,53,58,18,26,23,28,8,13,11,12,24,21,26),(2193,'2015-03-10 21:49:29','2015-10-11 16:46:30',1,30003930,17,12,24,2,9,9,10,13,25,17,9,9,16,16,25,16,17,8,6,12,20,20,23,5),(2194,'2015-03-10 21:49:29','2015-10-11 16:46:30',1,30003858,83,48,75,67,60,57,61,39,44,288,273,347,330,83,131,128,112,78,76,99,98,112,108,85),(2195,'2015-03-10 21:49:29','2015-10-11 16:46:30',1,30000598,4,3,4,7,5,4,8,0,1,1,13,3,1,6,3,4,74,3,65,35,9,7,4,0),(2196,'2015-03-10 21:49:29','2015-10-11 16:46:30',1,30000552,12,27,45,19,15,12,29,5,5,12,16,13,14,22,53,33,71,33,119,43,24,81,46,33),(2197,'2015-03-10 21:49:29','2015-10-11 16:46:30',1,30004465,42,6,10,15,15,19,19,6,34,33,30,39,30,29,49,48,41,52,53,35,57,62,29,34),(2198,'2015-03-10 21:49:29','2015-10-11 16:46:30',1,30002875,22,3,1,5,5,7,5,1,5,2,4,0,1,15,3,6,3,0,2,4,1,6,5,14),(2199,'2015-03-10 21:49:29','2015-10-11 16:46:30',1,30004694,15,31,32,13,13,23,19,16,23,26,29,11,35,44,29,22,14,21,12,14,31,38,16,22),(2200,'2015-03-10 21:49:29','2015-10-11 16:46:30',1,30004167,17,12,1,14,7,3,7,3,4,22,32,13,15,10,13,12,3,7,6,1,3,6,3,8),(2201,'2015-03-10 21:49:29','2015-10-11 16:46:30',1,30004957,9,6,1,3,2,2,15,1,1,4,8,4,3,5,4,3,7,3,1,1,6,2,3,1),(2202,'2015-03-10 21:49:29','2015-10-11 16:46:30',1,30000456,2,0,7,4,0,0,1,3,1,2,5,13,5,7,6,6,2,8,1,1,0,5,6,5),(2203,'2015-03-10 21:49:29','2015-10-11 16:46:30',1,30002653,36,26,38,55,35,32,18,42,13,56,73,41,43,59,71,77,73,27,29,30,91,48,55,50),(2204,'2015-03-10 21:49:29','2015-10-11 16:46:30',1,30000593,5,3,2,3,1,0,4,0,4,2,16,6,2,12,3,2,31,3,14,10,5,2,3,0),(2205,'2015-03-10 21:49:29','2015-10-11 16:46:30',1,30002636,194,152,198,188,189,175,184,145,131,229,254,200,177,244,310,311,250,221,153,176,184,219,212,176),(2206,'2015-03-10 21:49:29','2015-10-11 16:46:30',1,30003808,24,17,13,12,10,18,22,16,6,16,8,27,16,14,30,19,12,17,35,18,23,13,17,17),(2207,'2015-03-10 21:49:29','2015-10-11 16:46:30',1,30003360,6,12,2,4,5,9,5,1,5,2,7,3,0,9,4,2,3,0,6,6,4,4,6,37),(2208,'2015-03-10 21:49:29','2015-10-11 16:46:30',1,30003057,19,9,31,29,22,11,20,19,14,30,29,54,31,41,36,41,38,25,58,28,30,23,27,18),(2209,'2015-03-10 21:49:29','2015-10-11 16:46:30',1,30002859,0,0,2,1,1,5,0,0,1,2,1,2,3,2,2,4,2,3,0,1,1,2,1,1),(2210,'2015-03-10 21:49:29','2015-10-11 16:46:30',1,30001573,2,0,3,4,1,1,0,0,3,1,1,1,0,0,2,0,0,0,5,1,1,0,0,0),(2211,'2015-03-10 21:49:29','2015-10-11 16:46:30',1,30003199,5,6,1,1,5,3,4,0,4,1,0,1,2,3,0,0,3,5,2,1,1,8,11,1),(2212,'2015-03-10 21:49:29','2015-10-11 16:46:30',1,30002328,5,2,4,1,1,1,0,6,2,0,0,0,0,1,0,0,1,2,0,0,1,0,0,1),(2213,'2015-03-10 21:49:29','2015-10-11 16:46:30',1,30001883,27,0,12,1,7,7,7,1,5,15,23,22,18,6,3,1,10,4,10,4,9,11,14,17),(2214,'2015-03-10 21:49:29','2015-10-11 16:46:30',1,30002627,0,0,0,0,0,0,0,0,2,2,2,0,0,0,2,3,1,1,1,1,1,1,1,5),(2215,'2015-03-10 21:49:29','2015-10-11 16:46:30',1,30002102,18,11,18,18,17,17,23,14,12,26,18,11,18,20,26,23,26,25,9,5,7,13,9,27),(2216,'2015-03-10 21:49:29','2015-10-11 16:46:30',1,30002384,73,49,49,58,48,40,57,32,31,108,87,71,86,126,123,129,130,107,66,58,83,111,107,67),(2217,'2015-03-10 21:49:29','2015-10-11 16:46:30',1,30002517,127,158,159,129,140,127,110,82,140,425,320,142,115,230,348,350,175,245,297,243,279,245,163,183),(2218,'2015-03-10 21:49:29','2015-10-11 16:46:30',1,30002560,43,28,44,46,48,18,14,29,22,76,95,33,29,57,52,62,31,33,41,38,63,55,45,37),(2219,'2015-03-10 21:49:29','2015-10-11 16:46:30',1,30002556,60,37,39,25,31,25,22,12,24,37,54,31,33,44,32,70,33,28,19,37,35,40,23,18),(2220,'2015-03-10 21:49:29','2015-10-11 16:46:30',1,30001347,5,5,2,3,2,3,0,0,0,3,0,1,0,2,1,2,2,4,3,1,4,1,0,1),(2221,'2015-03-10 21:49:29','2015-10-11 16:46:30',1,30003653,11,16,5,6,11,14,7,12,5,0,0,1,1,1,6,3,5,2,1,5,2,1,4,3),(2222,'2015-03-10 21:49:29','2015-10-11 16:46:30',1,30002123,83,25,129,43,46,36,11,16,20,25,15,24,28,28,40,27,21,12,25,31,17,24,18,13),(2223,'2015-03-10 21:49:29','2015-10-11 16:46:30',1,30002947,9,16,16,11,18,15,26,21,36,24,20,2,7,14,26,17,13,14,9,8,12,9,11,10),(2224,'2015-03-10 21:49:29','2015-10-11 16:46:30',1,30004778,9,39,28,23,24,44,10,16,45,26,26,21,13,27,24,21,25,20,21,15,23,79,69,20),(2225,'2015-03-10 21:49:29','2015-10-11 16:46:30',1,30001661,25,4,12,6,6,3,3,0,1,2,1,5,5,6,24,39,40,5,2,5,7,6,8,8),(2226,'2015-03-10 21:49:29','2015-03-10 21:49:29',1,30000344,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(2227,'2015-03-10 21:49:29','2015-10-11 16:46:30',1,30002529,535,346,541,502,551,469,442,323,398,591,604,530,517,681,656,650,709,476,445,491,606,745,637,552),(2228,'2015-03-10 21:49:29','2015-10-11 16:46:30',1,30002621,14,1,7,7,9,6,10,3,12,2,6,7,3,5,17,19,13,11,0,1,2,5,7,15),(2229,'2015-03-10 21:49:29','2015-10-11 16:46:30',1,30001531,2,2,0,0,0,0,0,0,0,10,32,11,8,6,9,7,12,12,35,23,13,13,18,29),(2230,'2015-03-10 21:49:29','2015-10-11 16:46:30',1,30000276,4,5,29,10,11,22,40,15,21,4,5,6,5,4,1,4,6,3,6,3,34,1,1,8),(2231,'2015-03-10 21:49:29','2015-10-11 16:46:30',1,30005123,13,8,11,17,22,15,16,2,12,13,4,8,2,5,5,2,5,2,19,29,7,8,8,1),(2232,'2015-03-10 21:49:29','2015-10-11 16:46:30',1,30003986,8,10,22,13,12,10,20,7,6,4,20,25,5,2,2,3,6,4,7,0,0,2,1,5),(2233,'2015-03-10 21:49:29','2015-10-11 16:46:30',1,30000225,38,23,79,44,56,53,108,47,49,17,21,20,14,23,7,5,63,42,16,21,39,11,9,16),(2234,'2015-03-10 21:49:29','2015-10-11 16:46:30',1,30002588,30,8,11,20,8,11,24,12,38,18,16,5,13,42,17,43,21,14,11,23,129,14,12,25),(2235,'2015-03-10 21:49:29','2015-10-11 16:46:30',1,30000974,0,1,2,1,1,0,0,1,2,1,2,0,0,3,1,1,2,1,0,3,0,1,2,2),(2236,'2015-03-10 21:49:29','2015-10-11 16:46:30',1,30000523,27,7,2,10,3,7,6,8,0,2,4,4,5,7,22,6,6,3,1,4,9,7,7,9),(2237,'2015-03-10 21:49:29','2015-10-11 16:46:30',1,30001001,49,51,26,46,59,54,15,78,39,66,42,59,69,30,119,83,35,53,34,25,66,87,72,65),(2238,'2015-03-10 21:49:29','2015-10-11 16:46:30',1,30001331,29,7,14,10,6,5,8,11,9,24,24,40,38,29,36,23,8,15,9,12,28,16,9,20),(2239,'2015-03-10 21:49:29','2015-10-11 16:46:30',1,30001129,0,0,0,8,1,1,0,0,0,4,1,1,1,1,0,0,0,0,0,2,1,0,1,0),(2240,'2015-03-10 21:49:29','2015-03-10 21:49:29',1,30001513,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(2241,'2015-03-10 21:49:29','2015-10-11 16:46:30',1,30000281,8,17,4,11,22,16,24,11,8,2,2,3,2,6,3,1,13,29,0,3,4,5,5,5),(2242,'2015-03-10 21:49:29','2015-10-11 16:46:30',1,30000444,7,9,6,8,16,13,16,15,5,30,37,38,27,42,67,37,38,23,11,83,63,36,33,27),(2243,'2015-03-10 21:49:29','2015-10-11 16:46:30',1,30005116,3,5,6,1,3,5,3,3,3,4,1,1,2,2,16,6,1,3,1,1,38,6,3,1),(2244,'2015-03-10 21:49:29','2015-10-11 16:46:30',1,30003752,26,19,24,13,22,17,23,19,19,29,50,51,38,31,30,17,19,28,15,16,31,25,31,31),(2245,'2015-03-10 21:49:29','2015-10-11 16:46:30',1,30005090,5,5,7,2,11,14,6,9,11,11,5,5,7,5,39,15,7,6,5,5,7,10,7,2),(2246,'2015-03-10 21:49:29','2015-10-11 16:46:30',1,30000547,28,6,39,10,41,5,33,5,4,27,18,10,9,23,14,6,38,8,25,17,6,19,19,10),(2247,'2015-03-10 21:49:29','2015-10-11 16:46:30',1,30004814,2,1,5,6,3,0,8,4,4,10,5,10,9,12,2,1,8,8,5,11,5,2,7,7),(2248,'2015-03-10 21:49:29','2015-10-11 16:46:30',1,30004512,1,7,1,2,3,1,0,1,1,2,2,1,2,0,3,4,0,1,2,0,0,0,1,0),(2249,'2015-03-10 21:49:29','2015-10-11 16:46:30',1,30003261,7,8,1,0,4,5,5,13,17,5,12,0,0,4,3,4,5,5,15,18,2,0,0,0),(2250,'2015-03-10 21:49:29','2015-10-11 16:46:30',1,30000268,29,33,13,20,20,13,15,9,22,3,6,11,10,6,5,1,4,3,1,5,0,1,3,4),(2251,'2015-03-10 21:49:29','2015-10-11 16:46:30',1,30004592,16,19,22,17,12,12,5,8,12,12,24,7,8,503,12,7,5,17,7,15,21,16,9,12),(2252,'2015-03-10 21:49:29','2015-10-11 16:46:30',1,30004446,0,1,1,1,1,0,1,2,4,0,1,0,2,0,0,0,0,0,0,0,2,5,6,0),(2253,'2015-03-10 21:49:29','2015-10-11 16:46:30',1,30001269,91,46,35,59,61,55,43,39,68,142,109,77,63,71,105,109,260,70,18,40,97,71,198,80),(2254,'2015-03-10 21:49:29','2015-10-11 16:46:30',1,30002120,51,14,33,18,13,11,9,7,6,96,114,20,18,31,44,21,26,21,15,40,31,51,49,24),(2255,'2015-03-10 21:49:29','2015-10-11 16:46:30',1,30001343,1,2,3,1,1,1,1,0,2,3,2,5,4,2,1,0,0,2,0,2,6,0,0,1),(2256,'2015-03-10 21:49:29','2015-10-11 16:46:30',1,30004606,1,0,1,3,3,2,14,3,10,0,1,0,0,1,0,0,2,0,1,4,4,2,1,3),(2257,'2015-03-10 21:49:29','2015-10-11 16:46:30',1,30003144,6,4,3,10,17,25,5,3,0,2,2,3,3,4,3,4,2,4,2,0,3,3,1,4),(2258,'2015-03-10 21:49:29','2015-10-11 16:46:30',1,30000223,14,11,12,23,15,15,22,11,2,7,5,5,4,24,3,8,45,13,10,12,9,11,3,6),(2259,'2015-03-10 21:49:29','2015-10-11 16:46:30',1,30000865,150,88,175,115,133,111,83,74,69,152,287,305,162,248,182,127,164,89,46,96,152,109,140,119),(2260,'2015-03-10 21:49:29','2015-10-11 16:46:30',1,30003160,42,18,39,19,16,28,16,15,9,0,4,10,12,2,5,4,11,3,3,4,2,15,15,8),(2261,'2015-03-10 21:49:29','2015-10-11 16:46:30',1,30003608,8,7,16,12,9,10,8,3,7,5,7,6,5,7,10,15,3,5,3,4,3,1,2,7),(2262,'2015-03-10 21:49:29','2015-10-11 16:46:30',1,30002043,7,6,15,7,13,14,8,6,16,23,33,46,17,34,20,5,12,7,5,4,17,3,6,7),(2263,'2015-03-10 21:49:29','2015-10-11 16:46:30',1,30004178,13,2,10,9,12,13,11,9,8,4,4,12,18,9,3,8,8,4,1,5,5,8,6,11),(2264,'2015-03-10 21:49:29','2015-03-10 21:49:29',1,30000426,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(2265,'2015-03-10 21:49:29','2015-10-11 16:46:30',1,30001575,17,7,9,6,4,14,3,0,1,5,5,0,0,0,0,0,0,14,28,2,1,4,1,2),(2266,'2015-03-10 21:49:29','2015-03-10 21:49:29',1,30000410,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(2267,'2015-03-10 21:49:29','2015-10-11 16:46:30',1,30000685,17,9,4,5,12,4,7,4,8,6,2,1,9,2,3,10,8,7,1,1,8,5,0,3),(2268,'2015-03-10 21:49:29','2015-10-11 16:46:30',1,30003723,92,66,243,87,85,89,100,37,84,222,183,92,108,598,115,87,144,95,154,233,257,166,112,171),(2269,'2015-03-10 21:49:29','2015-10-11 16:46:30',1,30000574,12,13,18,6,12,7,19,7,20,2,1,2,1,19,10,19,0,4,0,7,5,5,8,1),(2270,'2015-03-10 21:49:29','2015-10-11 16:46:30',1,30004443,3,16,6,5,9,8,8,5,12,0,3,0,2,0,5,2,2,13,2,12,15,9,10,7),(2271,'2015-03-10 21:49:29','2015-10-11 16:46:30',1,30004034,2,0,0,0,5,4,0,1,1,7,6,12,7,2,4,7,2,5,1,3,5,9,4,5),(2272,'2015-03-10 21:49:29','2015-10-11 16:46:30',1,30000973,0,2,3,1,2,0,2,1,3,4,2,0,0,1,10,4,10,0,6,1,3,3,5,5),(2273,'2015-03-10 21:49:29','2015-03-10 21:49:29',1,30001518,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(2274,'2015-03-10 21:49:29','2015-10-11 16:46:30',1,30002857,21,10,8,11,2,5,6,1,4,8,15,16,19,9,24,31,12,19,1,2,56,9,14,25),(2275,'2015-03-10 21:49:29','2015-10-11 16:46:30',1,30004678,8,14,7,8,16,8,19,10,14,16,31,28,4,14,16,17,11,7,5,8,6,21,15,18),(2276,'2015-03-10 21:49:29','2015-10-11 16:46:30',1,30003775,39,41,43,51,39,70,10,24,38,46,59,42,42,56,59,33,45,76,72,36,46,39,31,83),(2277,'2015-03-10 21:49:29','2015-10-11 16:46:30',1,30004916,10,9,4,3,5,3,5,1,0,2,1,1,1,2,5,2,2,17,5,10,1,0,0,1),(2278,'2015-03-10 21:49:29','2015-10-11 16:46:30',1,30000960,1,2,2,3,9,7,0,2,2,1,1,1,5,1,4,1,0,3,2,1,0,4,0,0),(2279,'2015-03-10 21:49:29','2015-10-11 16:46:30',1,30001424,157,131,162,171,194,157,173,101,116,177,192,136,135,186,199,192,166,175,141,167,160,235,232,150),(2280,'2015-03-10 21:49:29','2015-10-11 16:46:30',1,30002800,241,182,202,183,209,172,215,160,126,224,252,240,215,198,261,259,259,218,147,164,181,253,264,242),(2281,'2015-03-10 21:49:29','2015-10-11 16:46:30',1,30005250,26,20,35,20,31,23,17,11,24,83,98,104,87,68,70,45,55,33,33,41,63,62,63,69),(2282,'2015-03-10 21:49:29','2015-10-11 16:46:30',1,30012547,105,91,77,73,68,63,72,58,64,157,183,142,127,144,140,126,148,113,92,99,103,124,116,88),(2283,'2015-03-10 21:49:29','2015-10-11 16:46:30',1,30005223,11,27,13,15,25,25,7,13,6,41,30,18,20,14,11,17,16,16,21,15,11,12,16,9),(2284,'2015-03-10 21:49:29','2015-10-11 16:46:30',1,30002264,8,27,24,17,31,19,17,10,14,40,29,27,22,24,27,36,31,12,17,9,14,18,19,15),(2285,'2015-03-10 21:49:29','2015-10-11 16:46:30',1,30002057,111,95,120,72,83,99,114,45,75,182,186,157,152,174,219,239,130,138,137,160,205,226,223,122),(2286,'2015-03-10 21:49:29','2015-10-11 16:46:30',1,30001367,296,149,214,245,172,163,165,109,184,200,242,240,265,229,262,280,302,224,112,159,191,195,171,194),(2287,'2015-03-10 21:49:29','2015-10-11 16:46:30',1,30002050,108,110,131,139,93,91,87,70,91,179,150,148,150,145,161,160,141,104,116,95,123,130,130,122),(2288,'2015-03-10 21:49:29','2015-10-11 16:46:30',1,30003533,24,11,26,16,21,15,11,13,13,24,17,18,17,12,17,14,11,14,13,8,19,8,10,13),(2289,'2015-03-10 21:49:29','2015-10-11 16:46:30',1,30000094,2,7,1,1,0,1,2,1,2,13,17,5,2,4,6,9,1,7,2,3,4,3,4,4),(2290,'2015-03-10 21:49:29','2015-10-11 16:46:30',1,30002250,6,2,5,7,2,0,12,5,6,4,6,10,6,15,10,7,6,1,3,0,2,5,7,9),(2291,'2015-03-10 21:49:29','2015-10-11 16:46:30',1,30004248,4,93,243,101,147,124,147,169,233,45,49,32,25,43,41,48,51,23,30,41,61,43,45,31),(2292,'2015-03-10 21:49:29','2015-10-11 16:46:30',1,30005012,8,5,9,8,7,3,4,6,6,3,6,29,36,2,6,4,3,8,3,9,12,13,12,11),(2293,'2015-03-10 21:49:29','2015-10-11 16:46:30',1,30003106,1,1,3,4,0,0,3,2,1,8,3,6,7,2,0,0,4,8,1,0,3,2,3,1),(2294,'2015-03-10 21:49:29','2015-10-11 16:46:30',1,30003918,3,1,16,8,11,18,3,3,3,7,8,5,3,13,7,14,13,5,1,5,5,9,8,4),(2295,'2015-03-10 21:49:29','2015-10-11 16:46:30',1,30004257,8,8,8,5,2,1,6,0,10,11,6,10,11,9,5,4,5,3,11,4,2,9,12,11),(2296,'2015-03-10 21:49:29','2015-10-11 16:46:30',1,30003449,44,31,46,31,31,31,41,30,33,57,53,43,35,43,62,69,72,32,36,38,43,61,68,38),(2297,'2015-03-10 21:49:29','2015-10-11 16:46:30',1,30002077,10,3,4,11,11,10,6,10,3,20,16,12,12,17,12,14,14,6,4,4,7,4,7,12),(2298,'2015-03-10 21:49:29','2015-10-11 16:46:30',1,30003085,7,0,2,5,1,3,6,4,3,7,4,0,4,6,17,4,3,4,6,2,4,4,3,2),(2299,'2015-03-10 21:49:29','2015-10-11 16:46:30',1,30001448,367,38,88,86,69,45,46,48,87,95,93,119,66,87,98,80,75,79,59,65,48,79,59,75),(2300,'2015-03-10 21:49:29','2015-10-11 16:46:30',1,30002990,46,26,65,31,18,18,33,27,43,27,37,33,30,41,47,55,52,25,33,60,40,61,60,27),(2301,'2015-03-10 21:49:29','2015-10-11 16:46:30',1,30002781,766,677,739,786,729,663,522,356,481,747,827,754,713,851,1048,995,949,719,587,643,850,928,911,757),(2302,'2015-03-10 21:49:29','2015-10-11 16:46:30',1,30003003,2,7,14,13,23,9,7,5,12,4,15,11,12,13,16,10,14,12,16,10,14,11,17,8),(2303,'2015-03-10 21:49:29','2015-10-11 16:46:30',1,30002404,12,16,19,19,24,19,18,21,22,16,20,14,14,72,12,15,10,23,8,3,8,21,16,28),(2304,'2015-03-10 21:49:29','2015-10-11 16:46:30',1,30004100,7,2,8,3,8,7,5,5,5,10,17,6,7,2,8,9,2,1,6,2,6,5,3,1),(2305,'2015-03-10 21:49:29','2015-10-11 16:46:30',1,30045341,20,19,36,45,31,32,31,51,9,57,87,35,29,119,94,62,35,37,56,96,97,42,37,49),(2306,'2015-03-10 21:49:29','2015-10-11 16:46:30',1,30003010,92,40,57,75,60,81,43,40,46,88,89,100,74,94,102,114,100,78,41,57,81,116,119,79),(2307,'2015-03-10 21:49:29','2015-10-11 16:46:30',1,30002981,24,44,30,36,23,23,25,27,21,25,25,28,21,33,27,27,34,29,29,19,17,26,26,25),(2308,'2015-03-10 21:49:29','2015-10-11 16:46:30',1,30003900,25,25,31,20,18,14,41,18,9,36,19,19,21,41,43,34,19,24,8,36,41,29,31,35),(2309,'2015-03-10 21:49:29','2015-10-11 16:46:30',1,30003523,480,531,578,604,499,484,468,242,326,526,573,522,514,592,686,669,678,465,417,505,540,706,650,566),(2310,'2015-03-10 21:49:29','2015-10-11 16:46:30',1,30000152,169,186,216,188,182,174,156,110,181,220,241,230,197,190,262,209,279,219,161,154,233,253,244,227),(2311,'2015-03-10 21:49:29','2015-10-11 16:46:30',1,30003547,6,6,7,21,11,10,8,23,4,5,5,8,11,5,5,6,14,1,2,5,3,9,13,12),(2312,'2015-03-10 21:49:29','2015-10-11 16:46:30',1,30033489,12,6,10,10,5,1,5,0,8,7,5,6,6,13,6,9,10,9,5,7,6,15,10,15),(2313,'2015-03-10 21:49:29','2015-10-11 16:46:30',1,30005265,4,5,3,2,6,8,2,1,2,4,7,2,3,4,2,0,1,6,2,6,4,6,3,21),(2314,'2015-03-10 21:49:29','2015-10-11 16:46:30',1,30004145,21,6,19,27,36,14,11,6,5,11,21,40,37,24,33,40,46,24,12,17,16,27,26,16),(2315,'2015-03-10 21:49:29','2015-10-11 16:46:30',1,30003087,27,11,18,17,18,17,7,8,8,22,14,11,17,5,6,3,12,7,5,6,5,11,12,11),(2316,'2015-03-10 21:49:29','2015-10-11 16:46:30',1,30003418,18,6,9,12,9,13,3,6,13,24,28,20,15,18,10,14,23,21,7,20,20,8,8,17),(2317,'2015-03-10 21:49:29','2015-10-11 16:46:30',1,30003597,37,41,81,20,34,60,81,18,42,64,44,37,27,59,34,34,36,58,51,30,69,49,47,29),(2318,'2015-03-10 21:49:29','2015-10-11 16:46:30',1,30003017,243,115,188,201,164,178,178,124,160,281,288,265,231,342,323,294,312,308,219,260,291,295,263,265),(2319,'2015-03-10 21:49:29','2015-10-11 16:46:30',1,30003587,3,1,14,5,4,4,3,6,12,5,4,5,4,3,13,13,5,7,8,8,5,12,11,9),(2320,'2015-03-10 21:49:29','2015-10-11 16:46:30',1,30003793,18,30,167,46,79,75,42,36,54,55,54,41,25,47,54,39,74,71,45,55,63,61,66,48),(2321,'2015-03-10 21:49:29','2015-10-11 16:46:30',1,30002225,10,5,15,10,4,8,3,1,3,11,11,7,6,14,15,18,9,9,9,15,14,20,12,9),(2322,'2015-03-10 21:49:29','2015-10-11 16:46:30',1,30002758,73,57,174,67,77,72,56,69,82,37,40,101,57,64,125,93,53,56,51,84,83,63,73,59),(2323,'2015-03-10 21:49:29','2015-10-11 16:46:30',1,30000074,32,42,19,28,13,26,9,13,10,41,39,22,20,24,32,39,20,20,12,16,26,35,35,27),(2324,'2015-03-10 21:49:29','2015-10-11 16:46:30',1,30000032,41,44,90,98,81,44,74,36,47,88,89,102,89,101,116,122,98,87,80,112,77,83,55,58),(2325,'2015-03-10 21:49:29','2015-10-11 16:46:30',1,30002806,74,74,63,66,72,58,68,40,81,118,137,98,72,157,174,125,106,120,89,98,140,189,144,105),(2326,'2015-03-10 21:49:29','2015-10-11 16:46:30',1,30002764,1425,1149,1380,1478,1324,1273,1055,889,915,1471,1553,1572,1345,1616,1769,1850,1750,1423,1022,1275,1501,1811,1722,1469),(2327,'2015-03-10 21:49:29','2015-10-11 16:46:30',1,30001737,16,13,21,15,20,9,28,13,23,38,34,39,33,31,39,31,21,11,16,24,59,49,34,28),(2328,'2015-03-10 21:49:29','2015-10-11 16:46:30',1,30002994,395,410,487,480,414,387,340,198,245,459,472,396,390,478,536,528,536,368,346,431,449,588,515,471),(2329,'2015-03-10 21:49:29','2015-10-11 16:46:30',1,30003082,11,3,3,21,7,10,14,5,7,37,38,17,27,15,17,10,22,6,6,6,2,24,18,6),(2330,'2015-03-10 21:49:29','2015-10-11 16:46:30',1,30003542,8,19,9,19,19,9,3,14,5,17,15,9,6,9,7,9,5,11,1,6,5,7,4,4),(2331,'2015-03-10 21:49:29','2015-10-11 16:46:30',1,30000979,10,7,20,15,20,17,28,19,7,31,61,11,8,16,60,28,13,9,3,11,11,29,47,19),(2332,'2015-03-10 21:49:29','2015-10-11 16:46:30',1,30004228,6,2,12,5,6,6,5,0,3,0,3,1,0,3,3,5,5,10,1,13,25,6,9,1),(2333,'2015-03-10 21:49:29','2015-10-11 16:46:30',1,30003633,7,13,11,8,11,13,28,4,7,2,3,1,0,4,3,5,11,8,1,6,1,5,7,8),(2334,'2015-03-10 21:49:29','2015-10-11 16:46:30',1,30005107,4,5,31,10,3,3,11,6,3,6,4,4,7,1,20,11,3,1,5,3,7,11,8,5),(2335,'2015-03-10 21:49:29','2015-10-11 16:46:30',1,30004325,10,12,22,11,5,8,27,19,14,21,35,19,18,14,11,16,7,5,1,11,14,11,16,7),(2336,'2015-03-10 21:49:29','2015-10-11 16:46:30',1,30001292,9,17,15,12,27,17,5,5,3,3,11,2,6,11,12,7,2,4,10,8,4,11,7,15),(2337,'2015-03-10 21:49:29','2015-10-11 16:46:30',1,30000569,2,3,2,2,4,3,2,1,1,5,2,0,0,3,0,1,0,2,1,2,1,3,3,0),(2338,'2015-03-10 21:49:29','2015-10-11 16:46:30',1,30002863,1,2,2,4,6,10,5,1,1,9,13,8,6,10,2,7,0,5,2,1,16,7,13,5),(2339,'2015-03-10 21:49:29','2015-10-11 16:46:30',1,30001330,32,5,20,5,8,7,45,5,2,4,7,9,6,13,12,12,5,12,0,3,11,22,16,10),(2340,'2015-03-10 21:49:29','2015-03-10 21:49:29',1,30001482,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(2341,'2015-03-10 21:49:29','2015-10-11 16:46:30',1,30000214,58,56,40,39,59,40,39,13,22,14,21,61,48,13,14,16,19,15,42,33,8,9,11,17),(2342,'2015-03-10 21:49:29','2015-10-11 16:46:30',1,30003649,0,0,3,0,1,1,0,0,1,1,1,2,2,4,4,1,1,1,3,1,0,0,2,0),(2343,'2015-03-10 21:49:29','2015-10-11 16:46:30',1,30003435,5,11,13,5,5,4,10,3,6,21,16,18,22,15,5,12,8,14,23,10,3,17,17,23),(2344,'2015-03-10 21:49:29','2015-10-11 16:46:30',1,30024971,10,8,16,13,14,16,25,7,12,18,17,10,7,17,12,15,11,19,9,15,11,16,13,42),(2345,'2015-03-10 21:49:29','2015-10-11 16:46:30',1,30001161,57,66,142,101,114,100,67,34,66,333,257,117,100,136,186,219,158,110,197,191,115,146,238,98),(2346,'2015-03-10 21:49:29','2015-10-11 16:46:30',1,30002406,2,12,16,15,11,9,9,14,20,6,6,1,2,13,2,4,12,8,9,5,6,12,7,25),(2347,'2015-03-10 21:49:29','2015-10-11 16:46:30',1,30002579,12,1,8,0,2,4,4,3,6,1,4,3,2,5,9,7,5,8,2,6,9,4,2,4),(2348,'2015-03-10 21:49:29','2015-10-11 16:46:30',1,30002189,291,174,230,211,222,235,170,123,155,269,285,255,244,261,354,334,244,297,206,240,277,253,275,292),(2349,'2015-03-10 21:49:29','2015-10-11 16:46:30',1,30003846,4,14,17,6,0,1,8,2,3,7,13,8,10,15,25,22,6,4,6,14,9,16,5,50),(2350,'2015-03-10 21:49:29','2015-10-11 16:46:30',1,30002418,3,19,5,1,5,6,2,1,9,8,6,17,16,7,8,19,8,8,13,23,22,11,16,3),(2351,'2015-03-10 21:49:29','2015-10-11 16:46:30',1,30002390,66,80,51,83,53,40,52,29,52,92,56,64,60,165,97,100,142,101,70,59,95,121,92,104),(2352,'2015-03-10 21:49:29','2015-10-11 16:46:30',1,30002053,1075,865,1144,1075,1100,1079,927,680,827,1322,1325,1149,1044,1339,1662,1634,1347,1149,953,1015,1192,1528,1392,1188),(2353,'2015-03-10 21:49:29','2015-10-11 16:46:30',1,30002063,19,19,32,36,50,25,42,37,23,21,30,11,22,28,45,42,25,19,20,35,27,19,14,20),(2354,'2015-03-10 21:49:29','2015-10-11 16:46:30',1,30003594,46,39,74,34,36,32,62,14,45,58,62,45,29,50,46,40,39,31,45,38,53,50,45,32),(2355,'2015-03-10 21:49:29','2015-10-11 16:46:30',1,30001044,20,11,21,18,12,14,19,16,17,31,26,20,27,116,46,45,23,30,15,45,40,32,34,41),(2356,'2015-03-10 21:49:29','2015-10-11 16:46:30',1,30003902,0,5,3,2,1,2,10,2,2,13,14,14,11,37,13,10,6,2,5,8,2,4,3,3),(2357,'2015-03-10 21:49:29','2015-10-11 16:46:30',1,30034971,16,12,19,12,12,13,12,13,15,23,34,22,17,23,32,32,21,13,4,11,14,22,23,18),(2358,'2015-03-10 21:49:29','2015-10-11 16:46:30',1,30000188,111,74,110,106,91,93,107,77,102,130,174,108,116,166,143,153,174,129,101,118,123,155,152,96),(2359,'2015-03-10 21:49:29','2015-10-11 16:46:30',1,30005290,133,196,125,145,135,116,117,134,184,203,219,191,176,195,173,152,138,127,100,185,225,205,196,179),(2360,'2015-03-10 21:49:29','2015-10-11 16:46:30',1,30003528,26,43,31,22,33,38,33,30,22,39,45,45,57,41,46,47,37,32,32,42,48,61,49,42),(2361,'2015-03-10 21:49:29','2015-10-11 16:46:30',1,30005213,6,4,5,3,1,4,5,1,2,7,7,12,15,6,2,2,4,6,4,7,6,5,1,6),(2362,'2015-03-10 21:49:29','2015-10-11 16:46:30',1,30005320,43,32,33,28,44,44,39,45,21,61,57,29,34,68,37,36,60,28,31,35,102,43,34,31),(2363,'2015-03-10 21:49:29','2015-10-11 16:46:30',1,30004979,264,141,193,183,191,243,170,167,154,454,353,193,151,349,296,294,236,198,297,205,252,446,308,223),(2364,'2015-03-10 21:49:29','2015-10-11 16:46:30',1,30003937,2,2,0,1,1,1,2,3,3,0,1,4,3,16,1,4,9,1,0,3,1,2,1,4),(2365,'2015-03-10 21:49:29','2015-10-11 16:46:30',1,30003220,17,9,7,21,17,12,9,11,7,38,38,16,21,14,21,22,18,12,6,16,13,16,12,20),(2366,'2015-03-10 21:49:29','2015-10-11 16:46:30',1,30000837,28,6,15,6,4,34,2,4,16,0,5,3,1,2,7,8,4,8,4,0,6,1,1,2),(2367,'2015-03-10 21:49:29','2015-10-11 16:46:30',1,30001135,0,0,1,0,0,0,0,11,0,1,9,3,0,1,0,0,0,0,3,1,0,2,2,1),(2368,'2015-03-10 21:49:29','2015-03-10 21:49:29',1,30001509,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(2369,'2015-03-10 21:49:29','2015-10-11 16:46:30',1,30003162,19,4,24,13,8,25,13,6,5,0,2,3,3,2,2,1,3,2,2,2,1,12,12,6),(2370,'2015-03-10 21:49:29','2015-10-11 16:46:30',1,30004686,8,17,7,5,14,6,18,10,6,15,18,15,2,10,15,9,7,7,4,6,5,15,13,14),(2371,'2015-03-10 21:49:29','2015-10-11 16:46:30',1,30003679,48,24,29,64,58,21,63,22,16,161,115,45,40,49,22,51,26,54,12,42,22,24,28,26),(2372,'2015-03-10 21:49:29','2015-03-10 21:49:29',1,30001612,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(2373,'2015-03-10 21:49:29','2015-10-11 16:46:30',1,30003099,14,22,17,12,9,19,43,12,16,151,146,51,44,55,44,57,19,38,20,40,73,237,66,91),(2374,'2015-03-10 21:49:29','2015-10-11 16:46:30',1,30001662,53,96,61,71,62,53,46,38,46,70,88,66,79,70,85,89,88,62,103,48,59,84,85,74),(2375,'2015-03-10 21:49:29','2015-10-11 16:46:30',1,30004240,47,54,136,83,93,86,60,61,88,124,107,66,68,90,176,252,91,63,73,76,89,80,77,42),(2376,'2015-03-10 21:49:29','2015-10-11 16:46:30',1,30001528,14,6,1,2,1,1,0,3,1,88,79,43,18,42,20,18,43,33,49,52,29,35,38,38),(2377,'2015-03-10 21:49:29','2015-10-11 16:46:30',1,30004142,66,11,27,28,40,24,21,10,12,30,46,43,43,39,74,68,58,44,23,22,31,38,33,30),(2378,'2015-03-10 21:49:29','2015-10-11 16:46:30',1,30045338,145,169,333,165,178,230,99,180,113,408,397,144,120,491,312,273,168,164,263,250,339,210,169,160),(2379,'2015-03-10 21:49:29','2015-10-11 16:46:30',1,30001674,171,138,171,168,154,130,184,141,151,266,264,216,222,247,266,300,269,234,210,227,242,256,274,274),(2380,'2015-03-10 21:49:29','2015-10-11 16:46:30',1,30003428,84,66,72,74,81,73,80,14,52,78,79,62,46,94,89,80,80,59,60,57,64,97,113,58),(2381,'2015-03-10 21:49:29','2015-10-11 16:46:30',1,30004133,151,71,77,83,69,67,60,35,51,111,119,137,134,110,162,173,120,98,72,77,87,111,130,134),(2382,'2015-03-10 21:49:29','2015-10-11 16:46:30',1,30002214,10,1,5,1,4,5,1,6,3,7,8,16,22,17,13,9,4,4,11,8,5,5,5,4),(2383,'2015-03-10 21:49:29','2015-10-11 16:46:30',1,30004141,8,6,4,2,4,7,7,2,1,11,6,7,5,9,5,5,14,6,2,3,6,11,3,12),(2384,'2015-03-10 21:49:29','2015-10-11 16:46:30',1,30005248,20,28,40,30,32,24,20,29,88,25,29,31,29,27,33,29,38,26,12,35,66,56,62,70),(2385,'2015-03-10 21:49:29','2015-10-11 16:46:30',1,30004077,61,36,43,55,67,56,50,29,27,58,56,50,56,82,82,68,63,55,57,66,94,59,79,52),(2386,'2015-03-10 21:49:29','2015-10-11 16:46:30',1,30045345,117,88,100,97,114,127,95,131,68,111,93,43,47,50,122,126,69,97,118,106,185,73,54,88),(2387,'2015-03-10 21:49:29','2015-10-11 16:46:30',1,30000133,107,94,125,100,140,114,73,67,92,95,125,134,113,153,138,122,141,126,53,68,112,116,134,138),(2388,'2015-03-10 21:49:29','2015-10-11 16:46:30',1,30003875,75,83,121,120,110,96,102,57,82,158,201,153,126,185,184,184,132,107,130,112,127,157,170,137),(2389,'2015-03-10 21:49:29','2015-10-11 16:46:30',1,30003531,43,42,81,55,36,26,50,50,38,60,67,56,67,53,55,45,48,58,34,30,63,60,57,42),(2390,'2015-03-10 21:49:29','2015-10-11 16:46:30',1,30031407,32,31,28,30,41,27,39,13,15,35,34,41,35,34,39,42,31,43,22,27,44,28,28,36),(2391,'2015-03-10 21:49:29','2015-10-11 16:46:30',1,30004956,32,21,21,33,20,12,15,11,71,25,18,15,40,35,131,11,14,12,6,14,34,33,21,31),(2392,'2015-03-10 21:49:29','2015-10-11 16:46:30',1,30002245,6,15,12,23,14,17,12,9,9,14,28,32,32,14,16,13,9,11,15,20,24,17,25,20),(2393,'2015-03-10 21:49:29','2015-10-11 16:46:30',1,30000721,8,21,115,11,19,27,44,15,6,79,46,58,66,94,49,65,41,26,24,18,60,32,19,45),(2394,'2015-03-10 21:49:29','2015-10-11 16:46:30',1,30002468,6,6,5,17,12,13,6,4,13,13,12,11,13,3,2,2,5,6,1,9,2,10,8,4),(2395,'2015-03-10 21:49:29','2015-10-11 16:46:30',1,30002075,21,34,36,52,27,22,28,31,29,28,27,41,39,56,59,46,53,38,20,28,58,84,74,50),(2396,'2015-03-10 21:49:29','2015-10-11 16:46:30',1,30003400,124,86,100,134,106,108,102,68,98,98,103,83,73,168,187,193,150,70,93,123,90,117,108,104),(2397,'2015-03-10 21:49:29','2015-10-11 16:46:30',1,30002485,7,3,2,9,7,7,5,2,9,4,2,1,4,2,0,1,0,3,6,0,5,3,8,1),(2398,'2015-03-10 21:49:29','2015-10-11 16:46:30',1,30000828,5,1,8,14,5,8,1,0,3,0,1,1,1,3,0,0,15,31,0,9,16,2,5,2),(2399,'2015-03-10 21:49:29','2015-10-11 16:46:30',1,30001744,7,12,3,12,17,9,8,5,5,4,4,3,2,0,23,15,13,9,1,3,5,19,13,12),(2400,'2015-03-10 21:49:29','2015-10-11 16:46:30',1,30001016,54,87,350,122,122,100,114,38,63,120,178,78,65,328,139,116,81,53,53,91,176,99,75,118),(2401,'2015-03-10 21:49:29','2015-10-11 16:46:30',1,30001847,20,21,24,48,23,38,15,24,18,91,95,93,76,64,76,110,111,118,35,67,68,88,93,77),(2402,'2015-03-10 21:49:29','2015-10-11 16:46:30',1,30004715,23,22,26,4,7,7,13,25,35,57,67,52,42,69,56,47,63,65,44,55,59,66,70,25),(2403,'2015-03-10 21:49:29','2015-10-11 16:46:30',1,30004615,1,0,0,0,0,0,0,1,0,146,24,22,14,12,12,10,22,15,12,12,27,13,9,5),(2404,'2015-03-10 21:49:29','2015-10-11 16:46:30',1,30003243,21,6,7,21,6,18,24,26,9,3,6,24,28,72,4,11,7,7,4,4,6,17,25,9),(2405,'2015-03-10 21:49:29','2015-10-11 16:46:30',1,30003469,20,25,42,28,37,32,28,27,29,28,40,26,42,47,50,48,51,54,29,32,39,47,38,61),(2406,'2015-03-10 21:49:29','2015-10-11 16:46:30',1,30002096,24,8,9,17,17,18,8,11,14,17,14,26,32,21,11,11,23,28,16,8,36,50,42,21),(2407,'2015-03-10 21:49:29','2015-10-11 16:46:30',1,30002773,176,131,173,170,148,149,107,79,92,170,221,194,185,203,242,200,199,173,98,130,199,220,189,173),(2408,'2015-03-10 21:49:29','2015-10-11 16:46:30',1,30002596,5,3,3,4,5,4,15,5,7,0,2,8,4,2,7,4,11,3,2,3,1,6,10,12),(2409,'2015-03-10 21:49:29','2015-10-11 16:46:30',1,30001680,24,24,48,53,55,53,54,40,31,106,96,109,96,68,55,66,78,66,37,53,74,118,119,92),(2410,'2015-03-10 21:49:29','2015-10-11 16:46:30',1,30004309,19,10,3,9,6,6,9,15,12,210,177,258,214,478,505,152,106,83,149,297,326,23,13,13),(2411,'2015-03-10 21:49:29','2015-10-11 16:46:30',1,30002397,38,32,63,69,37,35,38,58,32,74,75,61,58,102,105,76,52,82,71,123,101,87,92,64),(2412,'2015-03-10 21:49:29','2015-10-11 16:46:30',1,30043489,11,4,5,5,9,8,8,3,8,10,11,6,6,13,16,13,11,10,15,9,13,31,18,9),(2413,'2015-03-10 21:49:29','2015-10-11 16:46:30',1,30002741,14,5,11,10,7,7,6,8,7,11,16,18,10,16,15,16,17,12,12,16,4,20,15,29),(2414,'2015-03-10 21:49:29','2015-10-11 16:46:30',1,30004264,2,2,2,6,7,7,1,4,7,5,2,9,6,12,5,7,6,3,10,10,7,10,11,4),(2415,'2015-03-10 21:49:29','2015-10-11 16:46:30',1,30003560,3,4,4,16,9,6,9,2,4,7,6,2,1,7,3,5,7,15,2,7,9,8,3,2),(2416,'2015-03-10 21:49:29','2015-10-11 16:46:30',1,30004130,163,53,92,80,60,52,52,46,56,100,97,113,104,95,127,155,96,104,76,70,99,94,104,88),(2417,'2015-03-10 21:49:29','2015-10-11 16:46:30',1,30001690,85,70,99,76,84,84,95,45,83,290,298,365,323,118,166,164,149,114,82,102,108,117,116,90),(2418,'2015-03-10 21:49:29','2015-10-11 16:46:30',1,30000111,8,4,10,12,23,26,5,9,3,26,23,19,32,24,11,10,13,75,7,11,13,23,19,16),(2419,'2015-03-10 21:49:29','2015-10-11 16:46:30',1,30003456,22,17,21,25,11,12,13,15,18,21,20,34,35,37,35,40,30,36,24,16,31,32,31,23),(2420,'2015-03-10 21:49:29','2015-10-11 16:46:30',1,30001221,4,4,1,4,3,3,5,1,1,14,19,12,9,39,7,18,12,15,9,10,12,12,11,11),(2421,'2015-03-10 21:49:29','2015-10-11 16:46:30',1,30003776,11,18,22,21,17,54,9,19,29,26,23,27,29,22,37,22,23,35,27,18,21,15,10,21),(2422,'2015-03-10 21:49:29','2015-03-10 21:49:29',1,30000370,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(2423,'2015-03-10 21:49:29','2015-10-11 16:46:30',1,30000592,2,0,2,2,0,0,0,0,0,0,1,0,0,0,1,2,0,0,0,0,0,1,2,0),(2424,'2015-03-10 21:49:29','2015-03-10 21:49:29',1,30001463,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(2425,'2015-03-10 21:49:29','2015-10-11 16:46:30',1,30001583,4,1,3,0,1,2,0,0,1,0,0,0,1,2,2,1,2,0,2,1,0,5,5,3),(2426,'2015-03-10 21:49:29','2015-10-11 16:46:30',1,30002040,4,1,6,6,10,14,18,2,0,0,2,0,2,2,0,3,2,3,0,1,3,0,0,1),(2427,'2015-03-10 21:49:29','2015-10-11 16:46:30',1,30002856,6,10,11,11,5,6,3,1,1,24,32,17,17,6,6,6,7,4,2,2,8,4,1,5),(2428,'2015-03-10 21:49:29','2015-10-11 16:46:30',1,30000686,30,7,3,6,12,10,8,13,14,8,5,1,4,3,3,13,12,12,1,3,8,7,1,8),(2429,'2015-03-10 21:49:29','2015-10-11 16:46:30',1,30001871,4,6,14,10,15,12,9,6,5,9,273,205,14,15,16,17,15,10,2,3,9,10,16,136),(2430,'2015-03-10 21:49:29','2015-10-11 16:46:30',1,30002392,5,1,6,17,8,5,9,5,3,5,6,2,7,14,4,5,12,9,11,11,4,11,7,11),(2431,'2015-03-10 21:49:29','2015-10-11 16:46:30',1,30003468,51,35,62,44,47,38,47,39,33,40,50,43,59,90,85,82,67,85,49,63,83,79,81,79),(2432,'2015-03-10 21:49:29','2015-10-11 16:46:30',1,30002391,16,13,8,21,15,10,19,7,9,21,14,9,19,81,30,23,49,29,15,17,10,27,15,21),(2433,'2015-03-10 21:49:29','2015-10-11 16:46:30',1,30002574,30,16,35,33,44,42,11,27,21,26,44,36,33,40,37,45,33,24,8,13,19,45,41,18),(2434,'2015-03-10 21:49:29','2015-10-11 16:46:30',1,30002576,23,5,28,19,12,15,6,15,15,11,23,12,11,25,18,21,20,16,4,13,13,20,19,11),(2435,'2015-03-10 21:49:29','2015-10-11 16:46:30',1,30002054,132,104,134,101,121,133,95,73,94,123,124,128,120,179,271,264,168,164,137,140,125,240,243,133),(2436,'2015-03-10 21:49:29','2015-10-11 16:46:30',1,30003103,19,22,11,14,5,6,16,10,21,29,16,31,18,98,95,92,53,37,36,39,109,90,62,75),(2437,'2015-03-10 21:49:29','2015-10-11 16:46:30',1,30002505,87,48,77,66,69,60,58,34,36,65,71,62,79,91,91,89,56,64,54,74,74,73,66,89),(2438,'2015-03-10 21:49:29','2015-10-11 16:46:30',1,30004988,13,13,23,10,17,10,13,9,6,12,18,12,22,37,18,18,17,31,14,15,11,5,7,16),(2439,'2015-03-10 21:49:29','2015-10-11 16:46:30',1,30004304,6,1,3,2,2,1,1,6,5,4,6,16,9,5,9,6,10,7,0,2,3,2,4,0),(2440,'2015-03-10 21:49:29','2015-10-11 16:46:30',1,30003067,246,189,142,149,125,104,112,114,128,195,167,173,136,167,317,257,199,156,165,205,203,197,189,165),(2441,'2015-03-10 21:49:29','2015-10-11 16:46:30',1,30002572,29,36,30,34,20,23,20,20,34,46,49,36,45,34,34,33,25,30,14,18,21,22,23,20),(2442,'2015-03-10 21:49:29','2015-10-11 16:46:30',1,30000150,23,39,41,43,40,38,36,11,20,68,79,70,62,59,47,51,77,65,36,31,40,74,69,63),(2443,'2015-03-10 21:49:29','2015-10-11 16:46:30',1,30002217,2,2,2,1,4,5,2,2,2,10,6,9,19,12,15,6,5,1,2,3,8,8,10,1),(2444,'2015-03-10 21:49:29','2015-10-11 16:46:30',1,30002774,216,177,171,168,146,136,132,72,110,174,232,202,209,231,280,245,241,188,151,165,222,240,213,184),(2445,'2015-03-10 21:49:29','2015-10-11 16:46:30',1,30002356,27,5,12,10,10,13,3,2,0,2,1,0,0,2,3,1,3,1,3,1,7,12,5,7),(2446,'2015-03-10 21:49:29','2015-10-11 16:46:30',1,30002871,16,14,11,10,14,14,11,3,7,19,22,15,10,20,21,21,8,8,2,3,21,32,29,17),(2447,'2015-03-10 21:49:29','2015-10-11 16:46:30',1,30004205,4,3,10,9,8,9,5,3,0,1,2,2,4,9,1,3,4,3,1,6,23,7,7,45),(2448,'2015-03-10 21:49:29','2015-10-11 16:46:30',1,30001159,256,39,28,83,41,36,43,54,75,133,157,124,99,158,169,164,175,217,101,156,111,132,108,164),(2449,'2015-03-10 21:49:29','2015-10-11 16:46:30',1,30045306,137,39,130,40,44,63,48,52,25,36,35,25,25,59,30,14,41,39,37,53,40,78,119,72),(2450,'2015-03-10 21:49:29','2015-10-11 16:46:30',1,30000134,172,85,113,79,76,73,73,83,67,90,91,111,105,137,123,138,128,81,54,81,110,102,90,82),(2451,'2015-03-10 21:49:29','2015-10-11 16:46:30',1,30004481,0,2,0,0,1,0,0,3,0,2,3,8,3,4,15,8,10,17,1,5,4,2,1,3),(2452,'2015-03-10 21:49:29','2015-10-11 16:46:30',1,30002796,65,45,41,48,48,35,46,37,59,97,106,114,92,119,117,85,95,119,39,74,106,129,100,109),(2453,'2015-03-10 21:49:29','2015-10-11 16:46:30',1,30000825,0,2,9,0,2,7,1,0,5,2,1,4,6,4,6,4,5,23,0,5,15,18,16,1),(2454,'2015-03-10 21:49:29','2015-10-11 16:46:30',1,30004767,26,1,0,1,3,2,2,4,8,13,15,13,9,14,4,4,7,8,0,1,4,6,6,10),(2455,'2015-03-10 21:49:29','2015-10-11 16:46:30',1,30000482,0,2,1,2,1,1,3,2,2,3,2,8,4,0,2,2,3,1,0,0,1,0,1,0),(2456,'2015-03-10 21:49:29','2015-10-11 16:46:30',1,30001767,24,16,10,7,21,17,8,10,3,6,9,6,8,1,5,4,11,4,0,4,6,6,11,8),(2457,'2015-03-10 21:49:29','2015-10-11 16:46:30',1,30000689,3,7,4,2,6,1,6,1,1,1,0,0,2,0,4,8,5,3,1,0,4,3,0,0),(2458,'2015-03-10 21:49:29','2015-10-11 16:46:30',1,30000788,128,24,146,39,43,19,93,20,48,16,27,19,26,48,39,55,40,48,7,33,35,64,68,26),(2459,'2015-03-10 21:49:29','2015-10-11 16:46:30',1,30000636,5,2,8,5,3,1,0,1,0,3,1,15,17,3,0,0,1,1,0,1,2,0,0,1),(2460,'2015-03-10 21:49:29','2015-10-11 16:46:30',1,30001934,2,3,7,2,3,5,3,3,2,5,2,5,5,4,6,5,3,4,3,1,6,7,3,7),(2461,'2015-03-10 21:49:29','2015-10-11 16:46:30',1,30004400,10,22,17,21,29,15,58,5,19,35,42,26,25,38,30,21,21,49,54,64,60,29,23,41),(2462,'2015-03-10 21:49:29','2015-10-11 16:46:30',1,30004361,3,3,3,3,2,4,3,3,4,5,2,0,0,6,1,2,2,0,1,1,2,2,3,4),(2463,'2015-03-10 21:49:29','2015-10-11 16:46:30',1,30001188,39,37,11,17,14,10,15,7,8,38,36,18,26,33,27,19,22,16,16,38,29,19,15,26),(2464,'2015-03-10 21:49:29','2015-10-11 16:46:30',1,30000520,2,11,8,14,3,4,4,1,6,2,3,3,4,3,2,2,1,1,1,2,12,0,2,2),(2465,'2015-03-10 21:49:29','2015-10-11 16:46:30',1,30004177,1,2,7,1,7,6,5,2,2,2,1,4,8,3,1,1,7,0,0,2,2,12,9,16),(2466,'2015-03-10 21:49:29','2015-10-11 16:46:30',1,30004636,90,21,13,30,66,47,80,1,8,55,71,65,36,100,78,66,42,107,86,54,101,119,78,56),(2467,'2015-03-10 21:49:29','2015-10-11 16:46:30',1,30004775,1,1,1,1,0,0,2,1,1,7,5,6,6,2,5,4,0,3,3,1,3,3,8,2),(2468,'2015-03-10 21:49:29','2015-10-11 16:46:30',1,30001752,4,1,2,8,8,5,9,11,20,0,0,1,2,2,1,2,0,2,1,0,0,1,2,1),(2469,'2015-03-10 21:49:29','2015-10-11 16:46:30',1,30001914,6,5,10,8,6,9,10,5,6,24,26,25,28,35,21,31,29,19,12,19,19,12,13,12),(2470,'2015-03-10 21:49:29','2015-10-11 16:46:30',1,30003784,34,17,13,15,14,15,14,31,35,30,26,17,31,10,33,22,18,14,8,11,7,10,11,15),(2471,'2015-03-10 21:49:29','2015-10-11 16:46:30',1,30002134,8,18,4,4,3,8,8,12,6,28,28,5,5,6,4,4,12,4,4,0,3,4,6,7),(2472,'2015-03-10 21:49:29','2015-10-11 16:46:30',1,30000952,4,14,9,8,7,4,5,1,4,14,10,12,5,4,0,0,9,8,5,3,4,2,5,3),(2473,'2015-03-10 21:49:29','2015-03-10 21:49:29',1,30001466,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(2474,'2015-03-10 21:49:29','2015-10-11 16:46:30',1,30003701,25,10,21,36,17,19,19,10,10,4,13,14,59,18,21,16,18,4,14,13,13,21,15,12),(2475,'2015-03-10 21:49:29','2015-10-11 16:46:30',1,30003308,1,2,6,0,4,2,0,7,3,4,2,2,3,0,3,3,1,2,1,0,1,2,2,0),(2476,'2015-03-10 21:49:29','2015-10-11 16:46:30',1,30003317,2,5,3,3,0,2,4,13,7,5,3,2,8,20,11,11,3,2,10,1,0,4,3,10),(2477,'2015-03-10 21:49:29','2015-10-11 16:46:30',1,30001782,9,2,2,0,4,2,1,0,1,1,11,0,0,25,0,6,3,3,0,1,7,1,6,3),(2478,'2015-03-10 21:49:29','2015-10-11 16:46:30',1,30003621,27,11,20,12,33,32,69,12,10,6,7,8,9,18,9,9,9,12,5,12,8,10,5,5),(2479,'2015-03-10 21:49:29','2015-10-11 16:46:30',1,30004023,23,24,81,26,31,21,44,25,34,14,10,16,20,21,6,14,17,16,33,20,11,33,17,9),(2480,'2015-03-10 21:49:29','2015-10-11 16:46:30',1,30002877,15,3,5,0,4,7,5,3,4,2,4,10,3,17,6,7,6,6,1,2,1,6,11,9),(2481,'2015-03-10 21:49:29','2015-10-11 16:46:30',1,30002908,48,41,58,39,28,34,58,46,50,90,81,68,61,104,163,142,105,70,107,103,85,90,90,58),(2482,'2015-03-10 21:49:29','2015-10-11 16:46:30',1,30000758,35,4,26,13,10,7,9,9,21,32,20,9,5,5,7,10,12,16,5,23,6,3,19,7),(2483,'2015-03-10 21:49:29','2015-10-11 16:46:30',1,30004723,12,5,1,5,6,6,7,9,9,2,6,7,3,1,7,7,10,6,4,0,2,2,3,3),(2484,'2015-03-10 21:49:29','2015-10-11 16:46:30',1,30004430,1,2,1,0,0,0,0,0,1,1,1,1,0,14,3,4,15,1,0,1,3,0,0,0),(2485,'2015-03-10 21:49:29','2015-10-11 16:46:30',1,30000626,78,27,41,31,38,25,23,25,23,20,20,135,99,24,60,50,40,36,26,21,31,20,23,95),(2486,'2015-03-10 21:49:29','2015-10-11 16:46:30',1,30002343,4,5,7,6,5,4,6,0,1,3,0,3,2,7,6,2,3,1,0,19,8,7,7,9),(2487,'2015-03-10 21:49:29','2015-10-11 16:46:30',1,30004933,3,23,38,21,15,11,14,9,13,24,17,10,14,27,18,15,30,14,4,7,16,24,23,11),(2488,'2015-03-10 21:49:29','2015-10-11 16:46:30',1,30003716,50,31,38,38,24,32,19,10,26,68,60,59,47,65,75,62,46,50,117,42,52,79,70,75),(2489,'2015-03-10 21:49:29','2015-10-11 16:46:30',1,30001110,6,4,0,14,7,6,13,10,1,10,6,11,8,0,14,8,26,17,5,4,10,1,9,10),(2490,'2015-03-10 21:49:29','2015-10-11 16:46:30',1,30004482,0,4,0,0,1,0,1,2,1,1,1,1,1,0,0,2,1,3,3,1,3,0,0,0),(2491,'2015-03-10 21:49:29','2015-03-10 21:49:29',1,30001508,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(2492,'2015-03-10 21:49:29','2015-10-11 16:46:30',1,30000709,42,6,7,11,6,6,10,20,10,0,0,7,10,5,3,3,9,5,2,1,4,17,5,4),(2493,'2015-03-10 21:49:29','2015-10-11 16:46:30',1,30003241,1,7,4,6,4,3,2,15,1,9,5,2,2,1,2,3,3,2,0,0,6,3,4,1),(2494,'2015-03-10 21:49:29','2015-03-10 21:49:29',1,30001481,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(2495,'2015-03-10 21:49:29','2015-10-11 16:46:30',1,30004120,8,17,9,6,8,5,3,9,8,5,24,4,7,12,9,18,16,10,22,18,14,11,9,8),(2496,'2015-03-10 21:49:29','2015-10-11 16:46:30',1,30000509,16,5,2,5,2,4,2,1,1,17,15,7,6,7,28,11,22,4,1,5,20,15,13,18),(2497,'2015-03-10 21:49:29','2015-03-10 21:49:29',1,30001640,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(2498,'2015-03-10 21:49:29','2015-10-11 16:46:30',1,30003933,2,4,27,1,6,5,7,8,21,3,3,50,34,9,7,3,7,3,10,11,15,13,14,3),(2499,'2015-03-10 21:49:29','2015-10-11 16:46:30',1,30000053,4,10,21,16,5,8,6,6,14,7,13,12,7,6,9,6,5,5,4,8,7,9,4,3),(2500,'2015-03-10 21:49:29','2015-10-11 16:46:30',1,30002984,11,6,12,8,5,14,7,9,1,24,21,23,35,38,20,9,16,6,23,22,18,5,7,7),(2501,'2015-03-10 21:49:29','2015-10-11 16:46:30',1,30001052,2,1,0,0,0,1,1,1,0,0,0,0,0,0,0,0,2,1,3,4,1,1,0,0),(2502,'2015-03-10 21:49:29','2015-10-11 16:46:30',1,30001428,104,108,119,122,120,97,107,83,106,124,111,110,123,148,142,149,124,102,101,118,131,140,151,123),(2503,'2015-03-10 21:49:29','2015-10-11 16:46:30',1,30041407,33,22,36,44,27,27,44,12,21,41,37,31,33,27,33,33,53,27,14,28,47,49,45,28),(2504,'2015-03-10 21:49:29','2015-10-11 16:46:30',1,30045329,186,189,215,146,137,120,80,144,132,167,169,184,170,231,212,221,227,182,114,176,204,181,178,155),(2505,'2015-03-10 21:49:29','2015-10-11 16:46:30',1,30005227,21,8,14,11,21,17,29,16,16,31,27,26,11,26,26,23,18,15,19,29,22,29,20,21),(2506,'2015-03-10 21:49:29','2015-10-11 16:46:30',1,30003513,9,8,14,10,2,1,3,8,14,13,13,5,5,6,10,6,12,3,11,3,6,8,9,12),(2507,'2015-03-10 21:49:29','2015-03-10 21:49:29',1,30000400,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(2508,'2015-03-10 21:49:29','2015-10-11 16:46:30',1,30045313,17,24,5,7,8,15,7,9,10,26,34,27,27,32,22,17,13,31,7,20,29,29,44,26),(2509,'2015-03-10 21:49:29','2015-10-11 16:46:30',1,30003072,36,18,44,62,37,49,28,19,26,46,34,37,30,40,46,44,44,20,23,23,30,50,35,25),(2510,'2015-03-10 21:49:29','2015-03-10 21:49:29',1,30000422,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(2511,'2015-03-10 21:49:29','2015-10-11 16:46:30',1,30001056,7,10,1,2,2,4,6,3,1,9,4,3,2,7,6,10,9,6,3,25,0,7,5,2),(2512,'2015-03-10 21:49:29','2015-10-11 16:46:30',1,30003815,9,10,32,17,21,14,13,6,23,14,17,21,18,33,40,30,39,30,26,21,6,19,25,7),(2513,'2015-03-10 21:49:29','2015-10-11 16:46:30',1,30000254,7,11,23,15,12,3,30,7,3,12,16,18,25,16,13,14,9,16,15,7,12,31,27,13),(2514,'2015-03-10 21:49:29','2015-10-11 16:46:30',1,30003203,12,10,2,1,3,2,9,0,3,1,1,1,2,1,1,1,1,5,11,12,0,8,12,1),(2515,'2015-03-10 21:49:29','2015-10-11 16:46:30',1,30003614,39,10,27,19,19,32,54,19,19,20,27,6,4,8,9,9,8,10,9,8,12,9,5,19),(2516,'2015-03-10 21:49:29','2015-10-11 16:46:30',1,30003987,10,19,55,70,28,13,30,24,18,6,25,18,6,1,4,3,7,3,12,5,0,0,0,4),(2517,'2015-03-10 21:49:29','2015-10-11 16:46:30',1,30004583,7,34,9,7,2,13,4,18,10,145,11,15,9,271,21,23,17,18,37,57,25,13,9,12),(2518,'2015-03-10 21:49:29','2015-10-11 16:46:30',1,30003796,39,28,66,40,41,51,39,16,27,48,37,44,36,74,61,84,58,37,43,45,45,53,67,57),(2519,'2015-03-10 21:49:29','2015-10-11 16:46:30',1,30005005,22,21,32,57,42,36,64,21,26,59,71,51,58,76,82,74,53,37,29,54,44,71,69,59),(2520,'2015-03-10 21:49:29','2015-10-11 16:46:30',1,30002647,32,37,23,18,29,27,25,15,22,35,32,24,14,21,31,26,23,33,33,32,29,27,17,33),(2521,'2015-03-10 21:49:29','2015-10-11 16:46:30',1,30000169,21,30,28,40,39,23,35,26,39,65,63,14,18,21,41,26,32,29,25,35,33,34,29,26),(2522,'2015-03-10 21:49:29','2015-10-11 16:46:30',1,30000048,59,32,44,39,33,31,22,52,24,52,58,45,48,96,57,65,53,44,38,31,45,37,40,43),(2523,'2015-03-10 21:49:29','2015-03-10 21:49:29',1,30001602,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(2524,'2015-03-10 21:49:29','2015-10-11 16:46:30',1,30002907,25,8,66,12,10,11,10,11,15,46,49,56,45,24,40,25,32,22,19,25,16,17,22,41),(2525,'2015-03-10 21:49:29','2015-10-11 16:46:30',1,30001374,602,464,472,536,537,447,422,300,308,500,618,590,531,594,727,664,670,588,364,488,602,736,693,499),(2526,'2015-03-10 21:49:29','2015-10-11 16:46:30',1,30003311,20,12,33,5,12,5,11,10,4,23,18,8,12,26,32,31,12,3,12,18,30,12,17,17),(2527,'2015-03-10 21:49:29','2015-10-11 16:46:30',1,30001422,138,53,58,42,42,40,52,34,40,60,63,35,27,36,36,58,33,25,60,92,35,42,30,45),(2528,'2015-03-10 21:49:29','2015-10-11 16:46:30',1,30002766,75,38,62,64,50,50,59,32,54,68,63,73,52,86,89,91,100,84,51,72,67,93,79,57),(2529,'2015-03-10 21:49:29','2015-10-11 16:46:30',1,30000159,143,157,129,129,139,156,119,74,153,154,181,187,143,144,217,177,203,157,120,131,190,178,181,166),(2530,'2015-03-10 21:49:29','2015-10-11 16:46:30',1,30002786,859,770,990,908,803,752,647,487,557,996,1039,978,872,1108,1210,1175,1173,896,745,909,1070,1133,1042,909),(2531,'2015-03-10 21:49:29','2015-10-11 16:46:30',1,30045337,79,62,481,47,70,74,75,83,57,84,101,69,80,94,160,122,145,75,61,52,129,112,103,107),(2532,'2015-03-10 21:49:29','2015-10-11 16:46:30',1,30003641,1,17,1,1,1,1,1,1,2,2,1,2,2,1,0,2,2,0,4,0,0,0,1,3),(2533,'2015-03-10 21:49:29','2015-10-11 16:46:30',1,30000138,315,208,242,246,258,224,225,183,196,223,233,254,230,300,309,308,303,254,183,200,236,284,302,210),(2534,'2015-03-10 21:49:29','2015-10-11 16:46:30',1,30002372,23,5,2,13,14,5,6,7,1,17,14,8,9,186,206,157,26,5,20,6,8,23,27,7),(2535,'2015-03-10 21:49:29','2015-10-11 16:46:30',1,30001146,4,6,6,1,1,5,2,5,1,0,2,2,4,6,2,1,21,2,0,0,0,3,2,5),(2536,'2015-03-10 21:49:29','2015-10-11 16:46:30',1,30004832,2,2,0,1,0,1,1,3,3,3,2,1,0,4,3,3,2,6,1,3,1,2,2,0),(2537,'2015-03-10 21:49:29','2015-10-11 16:46:30',1,30000090,4,0,7,13,8,5,24,7,10,14,16,42,15,18,10,15,14,12,13,7,9,23,12,11),(2538,'2015-03-10 21:49:29','2015-10-11 16:46:30',1,30001731,8,6,20,12,10,15,5,6,12,12,11,12,12,12,8,11,11,10,11,5,11,3,5,8),(2539,'2015-03-10 21:49:29','2015-10-11 16:46:30',1,30002396,62,51,52,49,46,38,59,56,38,99,115,50,38,93,75,53,55,59,68,48,83,60,56,41),(2540,'2015-03-10 21:49:29','2015-10-11 16:46:30',1,30004294,1,2,6,4,2,1,6,6,6,8,12,2,2,5,8,9,2,12,5,6,2,9,22,6),(2541,'2015-03-10 21:49:29','2015-10-11 16:46:30',1,30002527,177,138,160,139,121,114,145,114,103,178,175,167,166,163,189,188,206,200,91,151,156,186,178,159),(2542,'2015-03-10 21:49:29','2015-10-11 16:46:30',1,30003377,163,144,144,184,146,160,116,111,136,170,156,115,119,240,258,234,229,132,124,157,158,240,212,137),(2543,'2015-03-10 21:49:29','2015-10-11 16:46:30',1,30002208,70,56,74,81,133,111,40,62,52,61,64,111,106,114,107,86,81,72,66,64,79,111,93,87),(2544,'2015-03-10 21:49:29','2015-10-11 16:46:30',1,30003445,3,5,8,6,10,13,2,4,5,10,14,22,18,11,18,10,9,8,13,10,7,11,6,3),(2545,'2015-03-10 21:49:29','2015-10-11 16:46:30',1,30003094,7,10,16,11,22,18,4,3,5,3,4,8,5,19,16,20,9,2,32,25,16,20,13,10),(2546,'2015-03-10 21:49:29','2015-10-11 16:46:30',1,30001655,33,23,42,43,57,47,39,34,22,55,48,58,58,45,56,64,52,43,16,63,63,74,74,70),(2547,'2015-03-10 21:49:29','2015-10-11 16:46:30',1,30005053,17,28,30,24,14,12,26,22,48,48,33,41,38,33,44,41,47,33,16,22,37,31,36,30),(2548,'2015-03-10 21:49:29','2015-10-11 16:46:30',1,30000895,51,37,31,39,42,36,26,13,35,19,26,26,30,47,77,43,36,35,19,25,27,63,67,28),(2549,'2015-03-10 21:49:29','2015-10-11 16:46:30',1,30045343,20,11,3,15,11,19,16,28,8,39,32,26,19,21,32,26,12,18,34,18,20,24,16,19),(2550,'2015-03-10 21:49:29','2015-10-11 16:46:30',1,30005246,81,75,72,85,89,66,82,52,61,184,178,173,168,174,112,99,97,58,72,75,130,85,90,112),(2551,'2015-03-10 21:49:29','2015-10-11 16:46:30',1,30002793,31,20,41,54,44,35,33,19,14,43,54,21,22,58,45,34,32,34,16,22,22,30,36,32),(2552,'2015-03-10 21:49:29','2015-10-11 16:46:30',1,30002788,1166,852,1118,1118,1053,1016,901,630,790,1211,1390,1260,1194,1311,1420,1379,1363,1201,865,934,1181,1381,1457,1246),(2553,'2015-03-10 21:49:29','2015-10-11 16:46:30',1,30000182,134,215,258,278,256,264,152,196,175,316,389,355,352,304,342,347,299,300,178,162,229,310,248,261),(2554,'2015-03-10 21:49:29','2015-10-11 16:46:30',1,30002072,31,29,36,40,36,44,38,32,19,34,28,42,37,31,52,51,48,40,34,26,46,58,58,66),(2555,'2015-03-10 21:49:29','2015-10-11 16:46:30',1,30004982,77,58,76,45,38,37,74,48,39,142,75,42,30,96,36,58,93,55,42,57,147,95,67,64),(2556,'2015-03-10 21:49:29','2015-10-11 16:46:30',1,30002672,26,22,21,31,14,17,26,10,18,31,29,17,13,29,33,17,25,19,19,25,36,22,25,17),(2557,'2015-03-10 21:49:29','2015-10-11 16:46:30',1,30002559,14,18,31,28,40,11,12,9,9,48,65,14,11,19,17,31,14,16,19,9,24,14,17,8),(2558,'2015-03-10 21:49:29','2015-10-11 16:46:30',1,30004102,33,23,34,20,15,9,13,7,5,35,40,26,18,22,20,27,27,31,24,15,22,26,18,13),(2559,'2015-03-10 21:49:29','2015-10-11 16:46:30',1,30045316,62,105,104,89,70,101,45,71,74,145,122,70,63,214,187,93,110,87,75,148,62,71,80,75),(2560,'2015-03-10 21:49:29','2015-10-11 16:46:30',1,30002738,41,24,42,37,24,24,61,23,21,44,50,44,22,66,25,36,33,35,30,41,60,39,31,46),(2561,'2015-03-10 21:49:29','2015-10-11 16:46:30',1,30003740,12,7,12,7,14,25,26,13,5,27,46,31,24,34,41,44,29,14,5,27,27,35,26,25),(2562,'2015-03-10 21:49:29','2015-10-11 16:46:30',1,30003788,10,37,11,13,18,26,25,29,20,13,36,24,37,29,44,37,13,30,19,18,21,28,35,26),(2563,'2015-03-10 21:49:29','2015-10-11 16:46:30',1,30003219,26,3,6,14,11,4,6,8,13,15,15,17,18,10,6,10,17,4,23,32,16,29,26,9),(2564,'2015-03-10 21:49:29','2015-10-11 16:46:30',1,30001991,24,28,34,17,21,28,16,18,17,8,6,6,7,8,7,3,5,2,16,12,4,12,10,9),(2565,'2015-03-10 21:49:29','2015-10-11 16:46:30',1,30002439,53,93,49,124,64,70,100,59,62,75,99,91,111,43,61,52,91,108,59,56,98,204,166,86),(2566,'2015-03-10 21:49:29','2015-10-11 16:46:30',1,30000062,7,7,3,1,15,22,12,6,5,9,10,5,11,18,29,25,44,5,31,13,5,6,11,0),(2567,'2015-03-10 21:49:29','2015-10-11 16:46:30',1,30001843,6,5,12,4,6,5,23,10,6,6,5,6,7,11,10,9,16,16,4,2,9,11,10,2),(2568,'2015-03-10 21:49:29','2015-10-11 16:46:30',1,30004726,24,18,7,7,6,11,14,7,13,10,12,10,9,13,17,15,27,8,12,6,15,23,22,12),(2569,'2015-03-10 21:49:29','2015-10-11 16:46:30',1,30000252,36,22,44,45,28,24,56,42,84,24,43,63,33,73,41,35,37,55,33,51,33,93,65,79),(2570,'2015-03-10 21:49:29','2015-10-11 16:46:30',1,30003861,44,36,71,45,48,53,72,18,25,75,82,76,57,83,59,61,48,35,50,72,73,54,48,42),(2571,'2015-03-10 21:49:29','2015-10-11 16:46:30',1,30003176,2,8,4,7,7,8,7,11,12,5,6,10,8,7,9,5,2,1,3,5,6,5,5,13),(2572,'2015-03-10 21:49:29','2015-10-11 16:46:30',1,30000277,5,6,32,11,18,31,66,20,26,11,10,1,4,9,6,9,4,11,8,4,34,1,4,7),(2573,'2015-03-10 21:49:29','2015-10-11 16:46:30',1,30003140,6,17,8,9,17,21,19,8,1,14,15,7,15,10,4,1,4,9,6,9,5,6,5,11),(2574,'2015-03-10 21:49:29','2015-10-11 16:46:30',1,30004556,19,15,24,17,11,16,11,9,15,12,8,11,11,8,9,8,8,17,20,57,30,22,22,4),(2575,'2015-03-10 21:49:29','2015-10-11 16:46:30',1,30045317,16,48,12,14,16,13,16,7,14,64,58,28,27,44,39,34,22,22,15,39,35,24,30,14),(2576,'2015-03-10 21:49:29','2015-10-11 16:46:30',1,30002333,0,0,1,0,0,1,0,3,1,0,0,2,1,3,0,0,0,1,0,1,0,1,3,2),(2577,'2015-03-10 21:49:29','2015-10-11 16:46:30',1,30002595,25,4,9,14,12,3,12,0,7,4,6,6,10,14,81,17,18,46,1,5,6,11,10,19),(2578,'2015-03-10 21:49:29','2015-10-11 16:46:30',1,30003452,14,14,14,12,12,11,12,17,11,25,21,15,14,15,18,24,27,14,8,12,17,25,31,12),(2579,'2015-03-10 21:49:29','2015-10-11 16:46:30',1,30002792,116,63,115,127,121,90,110,70,57,132,138,111,126,147,137,136,107,91,63,76,88,126,138,110),(2580,'2015-03-10 21:49:29','2015-10-11 16:46:30',1,30003935,6,6,14,1,10,15,16,21,7,7,22,15,18,17,17,13,11,6,8,15,23,25,24,5),(2581,'2015-03-10 21:49:29','2015-10-11 16:46:30',1,30003524,164,202,181,173,214,241,186,108,126,190,213,218,229,194,238,244,262,215,140,187,227,237,242,207),(2582,'2015-03-10 21:49:29','2015-10-11 16:46:30',1,30002192,141,114,186,231,207,168,224,119,103,167,159,138,150,263,236,253,204,170,136,137,190,184,204,154),(2583,'2015-03-10 21:49:29','2015-10-11 16:46:30',1,30001696,17,17,34,28,37,29,20,8,32,39,41,19,20,26,34,30,33,41,13,18,56,69,52,30),(2584,'2015-03-10 21:49:29','2015-10-11 16:46:30',1,30000073,34,74,39,38,28,21,25,23,12,62,61,83,32,144,70,87,62,45,57,54,55,41,42,47),(2585,'2015-03-10 21:49:29','2015-10-11 16:46:30',1,30002331,2,1,2,1,2,8,5,4,4,2,5,10,7,7,5,5,2,1,10,8,5,4,4,2),(2586,'2015-03-10 21:49:29','2015-10-11 16:46:30',1,30001236,105,44,54,37,37,40,39,32,44,92,94,92,57,70,91,112,68,57,34,46,48,39,64,67),(2587,'2015-03-10 21:49:29','2015-10-11 16:46:30',1,30002276,37,50,19,16,36,32,20,33,26,37,38,31,26,57,74,57,52,27,14,28,38,36,45,28),(2588,'2015-03-10 21:49:29','2015-10-11 16:46:30',1,30001389,1004,878,866,992,1037,902,863,589,663,874,1082,964,864,989,1202,1132,1227,1041,656,866,937,1206,1099,949),(2589,'2015-03-10 21:49:29','2015-10-11 16:46:30',1,30002739,181,132,169,175,149,130,166,97,119,188,207,171,127,225,177,153,198,177,143,142,175,166,155,213),(2590,'2015-03-10 21:49:29','2015-10-11 16:46:30',1,30002087,63,65,34,35,31,34,45,37,24,77,77,70,51,69,85,61,84,68,57,73,83,65,63,54),(2591,'2015-03-10 21:49:29','2015-10-11 16:46:30',1,30002815,74,59,82,68,88,93,59,93,74,83,82,107,87,94,120,113,91,84,67,61,82,92,95,72),(2592,'2015-03-10 21:49:29','2015-10-11 16:46:30',1,30005014,7,17,1,4,2,2,4,7,3,6,8,4,6,4,15,11,10,12,8,2,4,4,5,6),(2593,'2015-03-10 21:49:29','2015-10-11 16:46:30',1,30002546,88,41,69,58,49,52,85,34,57,89,106,84,75,86,132,121,115,48,62,99,111,91,95,74),(2594,'2015-03-10 21:49:29','2015-10-11 16:46:30',1,30000165,138,86,187,137,137,149,144,93,80,153,162,144,142,186,160,157,165,124,116,140,162,195,174,156),(2595,'2015-03-10 21:49:29','2015-10-11 16:46:30',1,30000093,2,0,1,5,5,2,10,3,1,2,3,7,7,5,6,8,3,4,3,0,2,8,5,2),(2596,'2015-03-10 21:49:29','2015-10-11 16:46:30',1,30002756,80,72,169,71,89,88,65,72,119,67,85,68,48,127,180,142,127,78,104,105,104,100,87,63),(2597,'2015-03-10 21:49:29','2015-10-11 16:46:30',1,30004243,4,5,14,3,2,11,4,7,1,7,9,10,10,1,10,8,4,12,7,5,9,10,8,7),(2598,'2015-03-10 21:49:29','2015-10-11 16:46:30',1,30001436,5,6,8,7,8,5,1,6,1,25,29,14,19,7,16,15,12,11,16,22,32,16,12,17),(2599,'2015-03-10 21:49:29','2015-10-11 16:46:30',1,30001387,75,40,89,102,98,95,42,30,21,58,72,46,32,39,82,65,75,68,51,44,57,74,62,64),(2600,'2015-03-10 21:49:29','2015-10-11 16:46:30',1,30001365,152,129,209,251,172,150,213,133,169,205,241,276,244,249,283,279,268,203,148,168,162,197,194,150),(2601,'2015-03-10 21:49:29','2015-10-11 16:46:30',1,30002804,52,19,48,47,42,43,63,34,41,60,75,48,58,53,105,92,70,65,50,46,52,51,50,74),(2602,'2015-03-10 21:49:29','2015-10-11 16:46:30',1,30001426,138,123,132,170,174,138,136,100,116,131,137,125,130,179,198,198,154,138,109,149,136,185,181,123),(2603,'2015-03-10 21:49:29','2015-10-11 16:46:30',1,30001397,60,42,59,60,50,47,47,31,64,67,71,78,90,110,87,85,85,87,38,58,70,62,67,66),(2604,'2015-03-10 21:49:29','2015-10-11 16:46:30',1,30002402,33,41,42,61,58,43,51,35,37,45,52,67,38,240,62,67,65,59,47,19,53,64,58,98),(2605,'2015-03-10 21:49:29','2015-10-11 16:46:30',1,30002777,101,80,87,99,69,71,34,86,54,115,120,137,98,121,109,114,133,88,53,71,117,101,90,85),(2606,'2015-03-10 21:49:29','2015-10-11 16:46:30',1,30001726,4,10,48,30,35,28,10,14,11,22,33,21,15,14,13,18,18,14,12,27,23,24,20,9),(2607,'2015-03-10 21:49:29','2015-10-11 16:46:30',1,30000285,7,25,15,15,4,6,7,10,15,13,9,5,7,13,15,16,15,12,2,8,9,9,9,11),(2608,'2015-03-10 21:49:29','2015-10-11 16:46:30',1,30000119,380,261,282,250,277,273,217,158,176,336,306,304,260,375,361,310,404,304,208,205,291,367,392,318),(2609,'2015-03-10 21:49:29','2015-10-11 16:46:30',1,30004157,38,20,19,25,19,23,26,1,16,33,25,35,34,23,30,36,50,21,14,15,39,36,33,25),(2610,'2015-03-10 21:49:29','2015-10-11 16:46:30',1,30005256,18,9,26,13,13,15,30,17,4,55,35,22,22,23,24,24,31,14,15,17,16,23,15,17),(2611,'2015-03-10 21:49:29','2015-10-11 16:46:30',1,30002985,4,6,7,14,6,1,2,5,4,5,3,10,11,46,8,3,6,6,12,14,12,7,7,25),(2612,'2015-03-10 21:49:29','2015-10-11 16:46:30',1,30005169,2,2,4,2,2,6,1,4,1,13,14,8,6,7,3,2,2,4,1,1,1,1,1,12),(2613,'2015-03-10 21:49:29','2015-10-11 16:46:30',1,30002886,3,0,2,6,9,6,8,20,13,6,2,10,7,3,13,1,10,5,0,0,0,1,3,2),(2614,'2015-03-10 21:49:29','2015-10-11 16:46:30',1,30002594,31,8,11,22,8,8,15,13,39,15,12,11,8,48,36,41,26,38,10,26,113,17,19,22),(2615,'2015-03-10 21:49:29','2015-10-11 16:46:30',1,30002524,268,145,213,156,197,193,170,135,98,239,230,227,224,264,269,281,260,226,184,212,232,245,213,241),(2616,'2015-03-10 21:49:29','2015-10-11 16:46:30',1,30001656,67,36,70,60,43,37,54,39,53,69,83,80,73,76,121,147,97,75,77,74,117,111,123,126),(2617,'2015-03-10 21:49:29','2015-10-11 16:46:30',1,30003813,14,4,3,2,4,5,10,3,3,3,7,9,16,11,11,4,8,12,3,7,3,10,8,7),(2618,'2015-03-10 21:49:29','2015-10-11 16:46:30',1,30000622,41,4,2,8,3,1,3,0,9,1,3,0,2,2,6,9,5,8,5,2,8,4,2,2),(2619,'2015-03-10 21:49:29','2015-10-11 16:46:30',1,30045351,23,10,5,12,18,10,10,15,15,12,18,10,7,11,24,13,21,7,13,9,20,21,17,31),(2620,'2015-03-10 21:49:29','2015-10-11 16:46:30',1,30003765,30,30,27,51,33,31,41,10,27,43,48,44,34,48,45,77,80,35,29,34,33,28,36,40),(2621,'2015-03-10 21:49:29','2015-10-11 16:46:30',1,30000956,3,8,7,6,12,12,5,6,6,13,9,7,11,3,3,2,2,7,1,1,4,8,8,13),(2622,'2015-03-10 21:49:29','2015-10-11 16:46:30',1,30002642,206,235,176,184,187,171,200,153,172,219,196,208,206,245,237,260,225,245,162,242,192,220,203,226),(2623,'2015-03-10 21:49:29','2015-10-11 16:46:30',1,30004535,14,19,10,9,8,5,7,2,12,12,4,16,14,5,6,6,5,11,2,3,4,13,10,11),(2624,'2015-03-10 21:49:29','2015-10-11 16:46:30',1,30001812,10,27,35,18,20,15,18,16,23,10,27,41,16,10,18,22,7,19,2,5,12,13,17,17),(2625,'2015-03-10 21:49:29','2015-10-11 16:46:30',1,30004905,0,1,10,1,6,4,6,3,3,2,4,0,0,1,12,2,0,0,2,5,9,1,1,3),(2626,'2015-03-10 21:49:29','2015-10-11 16:46:30',1,30004162,4,3,2,23,4,22,5,1,14,0,1,3,4,0,0,3,0,4,0,3,0,4,4,1),(2627,'2015-03-10 21:49:29','2015-10-11 16:46:30',1,30001920,6,7,14,6,8,9,10,9,14,15,24,25,12,24,27,25,19,14,17,22,43,17,24,11),(2628,'2015-03-10 21:49:29','2015-10-11 16:46:30',1,30001977,151,68,164,62,106,80,165,53,67,93,83,67,45,96,75,79,48,60,66,48,74,54,60,65),(2629,'2015-03-10 21:49:29','2015-10-11 16:46:30',1,30003206,6,8,1,0,5,5,5,8,16,8,11,0,1,4,2,3,5,3,13,17,2,0,0,0),(2630,'2015-03-10 21:49:29','2015-10-11 16:46:30',1,30000847,17,10,2,15,13,12,10,4,2,13,10,10,15,7,6,3,10,7,2,5,5,2,10,13),(2631,'2015-03-10 21:49:29','2015-03-10 21:49:29',1,30001505,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(2632,'2015-03-10 21:49:29','2015-10-11 16:46:30',1,30000489,0,0,1,2,0,0,1,0,0,0,2,0,0,2,1,1,1,2,2,6,5,1,2,1),(2633,'2015-03-10 21:49:29','2015-10-11 16:46:30',1,30004755,74,6,2,7,9,9,4,8,9,27,22,16,16,32,45,33,47,33,18,21,19,46,50,16),(2634,'2015-03-10 21:49:29','2015-10-11 16:46:30',1,30002887,0,1,1,1,2,1,1,0,0,1,1,0,3,7,7,1,5,0,0,0,0,0,1,2),(2635,'2015-03-10 21:49:29','2015-10-11 16:46:30',1,30001195,2,2,4,1,5,2,7,4,5,7,46,10,9,13,8,10,10,8,11,7,16,8,4,5),(2636,'2015-03-10 21:49:29','2015-10-11 16:46:30',1,30002026,5,2,8,7,5,5,5,2,1,9,8,3,6,3,2,2,2,5,3,2,2,4,6,4),(2637,'2015-03-10 21:49:29','2015-10-11 16:46:30',1,30002174,20,6,30,8,14,14,12,17,19,26,23,31,27,29,42,44,19,18,3,9,31,20,28,12),(2638,'2015-03-10 21:49:29','2015-10-11 16:46:30',1,30004215,4,2,5,4,8,8,7,0,4,1,0,0,2,8,4,2,5,2,1,7,1,4,3,24),(2639,'2015-03-10 21:49:29','2015-10-11 16:46:30',1,30004637,157,19,11,33,80,65,39,1,7,328,238,215,202,228,325,306,152,170,157,416,444,126,83,60),(2640,'2015-03-10 21:49:29','2015-10-11 16:46:30',1,30003142,2,13,6,13,19,26,14,6,0,1,3,5,4,6,2,2,3,9,6,6,3,4,1,8),(2641,'2015-03-10 21:49:29','2015-10-11 16:46:30',1,30000594,1,1,0,2,4,2,3,0,1,6,6,3,2,2,8,5,3,4,4,4,9,6,5,0),(2642,'2015-03-10 21:49:29','2015-10-11 16:46:30',1,30004410,5,4,13,13,15,19,3,10,30,10,7,9,7,10,9,16,18,9,13,8,3,13,14,25),(2643,'2015-03-10 21:49:29','2015-03-10 21:49:29',1,30000390,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(2644,'2015-03-10 21:49:29','2015-03-10 21:49:29',1,30000366,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(2645,'2015-03-10 21:49:29','2015-10-11 16:46:30',1,30001112,9,0,1,8,5,4,1,15,0,4,4,2,1,0,2,3,4,4,1,4,3,0,0,5),(2646,'2015-03-10 21:49:29','2015-10-11 16:46:30',1,30000843,6,6,2,3,4,8,2,5,10,2,1,3,4,4,4,6,11,7,14,2,7,7,7,2),(2647,'2015-03-10 21:49:29','2015-03-10 21:49:29',1,30001456,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(2648,'2015-03-10 21:49:29','2015-10-11 16:46:30',1,30003634,12,9,4,8,11,9,10,7,10,6,6,2,2,1,1,0,3,4,2,3,7,3,1,10),(2649,'2015-03-10 21:49:29','2015-10-11 16:46:31',1,30002942,39,14,22,8,14,15,16,10,31,26,21,26,23,28,19,20,22,13,1,10,25,21,16,23),(2650,'2015-03-10 21:49:29','2015-10-11 16:46:31',1,30004513,1,2,3,2,0,1,2,1,3,1,3,1,2,0,1,4,5,4,2,0,0,0,0,0),(2651,'2015-03-10 21:49:29','2015-10-11 16:46:31',1,30000677,6,8,18,7,3,9,7,2,5,3,2,8,12,4,3,6,3,7,3,8,1,3,4,8),(2652,'2015-03-10 21:49:29','2015-03-10 21:49:29',1,30000386,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(2653,'2015-03-10 21:49:29','2015-10-11 16:46:31',1,30001750,14,14,6,50,17,15,28,16,18,4,3,3,5,9,17,22,4,8,2,10,12,8,9,7),(2654,'2015-03-10 21:49:29','2015-10-11 16:46:31',1,30001043,1,1,8,8,11,11,1,4,0,10,11,8,4,17,17,13,0,7,4,2,1,7,4,2),(2655,'2015-03-10 21:49:29','2015-10-11 16:46:31',1,30004373,7,1,8,4,5,4,2,1,6,8,6,7,4,26,11,5,9,4,8,4,6,2,3,11),(2656,'2015-03-10 21:49:29','2015-10-11 16:46:31',1,30004589,26,35,40,45,82,82,29,7,22,60,80,38,26,61,28,23,43,21,28,47,43,17,20,10),(2657,'2015-03-10 21:49:29','2015-10-11 16:46:31',1,30001941,5,7,11,8,9,4,6,10,12,12,17,24,22,9,16,20,20,26,6,16,12,20,16,24),(2658,'2015-03-10 21:49:29','2015-10-11 16:46:31',1,30001230,41,27,29,42,34,22,25,29,36,80,44,30,36,50,48,55,63,31,33,267,163,50,54,39),(2659,'2015-03-10 21:49:29','2015-10-11 16:46:31',1,30000538,1,6,0,4,2,1,1,2,2,3,1,3,2,4,12,13,5,6,10,8,9,1,8,14),(2660,'2015-03-10 21:49:29','2015-10-11 16:46:31',1,30001013,22,8,21,4,16,8,11,10,13,2,4,6,8,1,4,3,2,5,0,0,0,1,1,1),(2661,'2015-03-10 21:49:29','2015-10-11 16:46:31',1,30002285,8,2,9,5,4,7,6,7,5,8,3,8,8,6,5,10,3,3,10,8,4,8,6,3),(2662,'2015-03-10 21:49:29','2015-10-11 16:46:31',1,30001800,0,0,0,0,3,3,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0),(2663,'2015-03-10 21:49:29','2015-10-11 16:46:31',1,30004312,15,14,31,14,21,54,16,13,31,20,33,25,27,19,73,56,9,5,6,24,17,23,19,12),(2664,'2015-03-10 21:49:29','2015-10-11 16:46:31',1,30004385,21,47,17,18,18,21,20,34,21,8,15,7,9,21,14,20,29,28,7,19,22,14,18,10),(2665,'2015-03-10 21:49:29','2015-10-11 16:46:31',1,30004460,14,2,7,10,3,4,5,2,12,4,2,7,9,7,21,11,23,21,27,10,4,21,10,9),(2666,'2015-03-10 21:49:29','2015-10-11 16:46:31',1,30005158,10,14,30,19,21,20,16,17,8,23,25,18,10,2,16,28,2,13,5,12,14,15,18,6),(2667,'2015-03-10 21:49:29','2015-10-11 16:46:31',1,30004514,14,11,9,14,7,9,16,21,7,11,9,13,9,11,53,63,37,10,8,4,5,13,18,6),(2668,'2015-03-10 21:49:29','2015-10-11 16:46:31',1,30001055,3,4,3,3,2,2,14,2,8,11,7,2,6,4,7,13,27,4,3,1,0,1,2,6),(2669,'2015-03-10 21:49:29','2015-10-11 16:46:31',1,30001225,9,2,3,5,8,8,5,4,1,23,28,30,21,38,21,28,42,18,36,53,31,41,42,42),(2670,'2015-03-10 21:49:29','2015-10-11 16:46:31',1,30003864,69,47,95,50,48,49,60,34,45,257,287,337,309,101,81,71,96,79,66,66,75,66,82,51),(2671,'2015-03-10 21:49:29','2015-10-11 16:46:31',1,30000148,376,321,436,407,357,368,354,286,323,435,449,402,386,460,597,536,581,461,302,325,469,515,521,388),(2672,'2015-03-10 21:49:29','2015-10-11 16:46:31',1,30004125,11,6,23,3,16,12,12,13,8,7,9,5,4,22,12,10,7,6,2,8,12,4,5,14),(2673,'2015-03-10 21:49:29','2015-10-11 16:46:31',1,30003554,9,10,10,25,22,14,9,5,17,15,17,23,29,47,28,20,26,24,9,9,16,25,31,30),(2674,'2015-03-10 21:49:29','2015-10-11 16:46:31',1,30001050,41,7,10,5,9,5,7,16,8,22,22,26,23,47,21,26,14,8,9,44,31,13,10,18),(2675,'2015-03-10 21:49:29','2015-10-11 16:46:31',1,30001385,127,75,120,107,95,72,85,50,56,109,103,168,154,78,151,160,126,132,93,88,112,154,146,105),(2676,'2015-03-10 21:49:29','2015-10-11 16:46:31',1,30000071,5,1,0,3,0,3,1,0,2,5,23,10,7,0,7,7,1,1,0,0,0,4,3,3),(2677,'2015-03-10 21:49:29','2015-10-11 16:46:31',1,30000060,42,24,36,25,48,74,52,35,24,38,33,53,50,58,79,79,72,28,65,34,41,73,65,26),(2678,'2015-03-10 21:49:29','2015-10-11 16:46:31',1,30000082,62,67,66,75,72,70,44,44,47,72,111,75,69,99,90,73,82,50,78,73,86,71,85,51),(2679,'2015-03-10 21:49:29','2015-10-11 16:46:31',1,30000004,288,204,295,260,239,242,255,181,208,332,341,301,271,386,455,470,402,281,253,303,374,361,328,357),(2680,'2015-03-10 21:49:29','2015-10-11 16:46:31',1,30003080,34,17,49,49,41,42,31,19,11,68,60,26,38,38,29,28,42,48,29,26,18,58,50,36),(2681,'2015-03-10 21:49:29','2015-10-11 16:46:31',1,30002263,79,67,109,85,121,91,90,49,72,135,134,109,86,114,121,111,120,77,60,87,100,91,84,90),(2682,'2015-03-10 21:49:29','2015-10-11 16:46:31',1,30001653,165,114,133,147,131,135,147,93,71,180,168,152,129,133,190,177,178,115,77,118,136,196,148,165),(2683,'2015-03-10 21:49:29','2015-10-11 16:46:31',1,30003029,120,82,122,150,102,90,112,67,84,137,159,155,149,194,156,164,137,146,167,154,158,151,133,111),(2684,'2015-03-10 21:49:29','2015-10-11 16:46:31',1,30004241,8,24,89,52,59,41,78,68,103,39,40,22,15,20,25,33,27,16,33,19,25,18,19,19),(2685,'2015-03-10 21:49:29','2015-10-11 16:46:31',1,30003551,4,5,2,3,7,4,4,9,5,7,5,7,4,12,17,11,8,15,1,8,3,11,11,17),(2686,'2015-03-10 21:49:29','2015-10-11 16:46:31',1,30000121,18,42,12,20,23,17,17,26,15,39,43,61,49,71,47,47,51,40,19,37,80,70,79,48),(2687,'2015-03-10 21:49:29','2015-10-11 16:46:31',1,30003107,17,6,9,11,4,5,13,11,23,26,20,27,18,86,93,87,43,40,35,33,68,68,42,67),(2688,'2015-03-10 21:49:29','2015-10-11 16:46:31',1,30002564,33,26,22,13,28,19,17,16,28,30,35,32,27,24,40,42,42,36,10,12,14,21,20,21),(2689,'2015-03-10 21:49:29','2015-10-11 16:46:31',1,30002336,5,7,8,5,5,4,2,7,1,31,28,9,4,21,2,4,10,9,13,15,26,21,20,2),(2690,'2015-03-10 21:49:29','2015-10-11 16:46:31',1,30000045,24,29,19,14,24,33,11,31,15,52,46,49,37,39,42,28,31,21,9,9,31,23,20,28),(2691,'2015-03-10 21:49:29','2015-10-11 16:46:31',1,30000022,18,8,13,8,9,10,7,10,8,4,4,6,3,10,11,10,10,5,5,10,10,9,10,14),(2692,'2015-03-10 21:49:29','2015-03-10 21:49:29',1,30000381,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(2693,'2015-03-10 21:49:29','2015-10-11 16:46:31',1,30001777,1,8,3,2,7,6,5,3,2,12,20,9,7,5,6,4,0,2,6,4,4,4,4,6),(2694,'2015-03-10 21:49:29','2015-10-11 16:46:31',1,30001185,7,2,4,15,23,32,8,6,22,37,44,24,19,35,40,42,45,22,10,29,36,20,13,19),(2695,'2015-03-10 21:49:29','2015-10-11 16:46:31',1,30001971,16,5,3,11,1,1,2,7,3,1,0,0,1,0,0,1,5,2,0,1,1,3,3,1),(2696,'2015-03-10 21:49:29','2015-10-11 16:46:31',1,30003148,45,27,29,29,44,31,49,48,39,33,43,35,54,69,208,196,46,29,36,35,43,51,58,35),(2697,'2015-03-10 21:49:29','2015-10-11 16:46:31',1,30002112,0,5,18,5,3,1,1,3,4,1,1,7,11,1,1,0,4,6,2,1,0,4,1,5),(2698,'2015-03-10 21:49:29','2015-10-11 16:46:31',1,30002006,91,127,115,77,78,75,91,83,124,47,59,93,84,30,60,68,86,119,105,62,139,116,105,74),(2699,'2015-03-10 21:49:29','2015-10-11 16:46:31',1,30004192,0,16,10,4,1,5,6,1,2,4,3,3,4,9,8,15,7,1,0,0,3,0,0,2),(2700,'2015-03-10 21:49:29','2015-10-11 16:46:31',1,30002500,10,2,7,9,7,4,3,7,1,2,2,1,2,2,0,0,1,1,2,2,2,0,1,1),(2701,'2015-03-10 21:49:29','2015-10-11 16:46:31',1,30005083,13,21,15,6,12,12,6,9,13,10,8,11,12,16,16,14,14,8,2,4,36,10,7,9),(2702,'2015-03-10 21:49:29','2015-10-11 16:46:31',1,30003760,81,97,69,101,98,103,88,99,65,123,158,114,99,125,131,131,141,89,54,96,114,72,81,67),(2703,'2015-03-10 21:49:29','2015-10-11 16:46:31',1,30002692,109,107,79,119,105,80,77,54,66,161,131,132,137,163,176,170,160,123,115,130,147,176,183,179),(2704,'2015-03-10 21:49:29','2015-10-11 16:46:31',1,30005033,4,5,11,0,3,4,5,14,23,9,17,21,17,3,1,9,8,2,6,0,6,6,8,0),(2705,'2015-03-10 21:49:29','2015-10-11 16:46:31',1,30004148,2,4,2,8,7,8,2,8,10,8,13,10,6,7,8,6,10,3,12,15,13,15,15,18),(2706,'2015-03-10 21:49:29','2015-10-11 16:46:31',1,30000608,5,7,3,1,0,2,5,13,0,1,2,0,0,3,1,0,2,4,11,1,2,23,23,12),(2707,'2015-03-10 21:49:29','2015-10-11 16:46:31',1,30002748,80,55,83,65,90,93,54,54,63,68,67,62,57,39,66,64,92,56,24,42,57,86,101,72),(2708,'2015-03-10 21:49:29','2015-10-11 16:46:31',1,30004281,2,2,1,7,3,3,7,7,8,7,14,9,4,1,6,4,10,14,1,0,6,23,12,11),(2709,'2015-03-10 21:49:29','2015-10-11 16:46:31',1,30002254,13,16,16,10,21,19,14,13,9,14,9,12,17,32,14,17,26,14,11,25,47,10,13,22),(2710,'2015-03-10 21:49:29','2015-10-11 16:46:31',1,30004132,68,9,7,7,4,5,7,13,2,9,9,23,18,6,17,15,4,6,3,2,4,4,7,14),(2711,'2015-03-10 21:49:29','2015-10-11 16:46:31',1,30003532,10,11,12,11,3,12,11,5,2,17,18,15,14,10,18,13,8,6,14,7,14,19,13,8),(2712,'2015-03-10 21:49:29','2015-10-11 16:46:31',1,30000451,1,0,1,3,0,1,8,1,0,14,2,5,2,1,2,0,10,3,2,5,2,4,4,3),(2713,'2015-03-10 21:49:29','2015-03-10 21:49:29',1,30001451,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(2714,'2015-03-10 21:49:29','2015-10-11 16:46:31',1,30004575,11,29,9,8,3,10,2,14,10,153,11,15,13,280,23,25,19,16,29,57,22,20,14,11),(2715,'2015-03-10 21:49:29','2015-10-11 16:46:31',1,30001243,3,2,5,9,6,4,9,6,7,25,26,27,19,63,23,26,19,22,14,38,54,33,39,47),(2716,'2015-03-10 21:49:29','2015-10-11 16:46:31',1,30003285,28,36,360,77,39,34,40,38,31,120,49,44,49,155,71,91,75,37,84,118,70,76,115,76),(2717,'2015-03-10 21:49:29','2015-10-11 16:46:31',1,30003661,17,7,1,5,14,13,1,7,9,4,6,4,1,7,7,3,9,4,2,4,0,6,4,13),(2718,'2015-03-10 21:49:29','2015-10-11 16:46:31',1,30004667,10,11,12,6,5,8,11,24,9,10,13,18,12,22,21,33,23,7,13,7,14,4,5,12),(2719,'2015-03-10 21:49:29','2015-10-11 16:46:31',1,30004435,84,8,3,5,11,6,10,1,15,2,2,5,4,8,8,8,9,4,2,9,4,10,6,6),(2720,'2015-03-10 21:49:29','2015-10-11 16:46:31',1,30004839,171,15,3,9,5,2,4,39,42,6,5,12,7,11,5,14,14,3,3,9,17,14,10,8),(2721,'2015-03-10 21:49:29','2015-10-11 16:46:31',1,30001706,11,3,13,10,15,17,16,1,4,31,34,15,11,39,36,33,29,16,13,5,19,18,8,2),(2722,'2015-03-10 21:49:29','2015-10-11 16:46:31',1,30005046,33,23,47,24,15,10,43,20,27,64,71,38,35,67,65,69,55,68,44,46,61,55,69,25),(2723,'2015-03-10 21:49:29','2015-10-11 16:46:31',1,30000142,2587,2144,2191,2362,2348,2170,1888,1645,1766,2485,2605,2569,2354,2736,2887,2765,2923,2608,1707,1947,2414,2779,2745,2503),(2724,'2015-03-10 21:49:29','2015-10-11 16:46:31',1,30004684,20,10,8,12,16,16,9,18,12,28,44,28,14,20,18,25,13,16,3,1,16,21,28,20),(2725,'2015-03-10 21:49:29','2015-10-11 16:46:31',1,30004836,171,4,1,0,0,1,0,0,2,2,2,3,1,4,3,4,2,2,3,5,1,2,4,0),(2726,'2015-03-10 21:49:29','2015-10-11 16:46:31',1,30004515,15,14,16,24,12,13,16,18,15,11,10,12,12,23,60,68,34,29,10,4,7,16,30,16),(2727,'2015-03-10 21:49:29','2015-10-11 16:46:31',1,30002150,14,8,10,3,1,2,7,1,6,1,0,6,8,2,8,9,5,4,0,0,6,8,5,8),(2728,'2015-03-10 21:49:29','2015-03-10 21:49:29',1,30001636,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(2729,'2015-03-10 21:49:29','2015-10-11 16:46:31',1,30001593,1,1,0,0,1,1,0,0,1,1,0,0,0,1,0,0,1,2,0,0,0,4,0,2),(2730,'2015-03-10 21:49:29','2015-10-11 16:46:31',1,30001556,1,2,2,1,2,2,1,5,0,2,6,6,5,0,4,5,4,8,0,6,0,12,11,9),(2731,'2015-03-10 21:49:29','2015-10-11 16:46:31',1,30000708,4,5,2,7,2,0,4,4,6,3,2,2,2,0,0,1,1,3,1,0,1,2,1,1),(2732,'2015-03-10 21:49:29','2015-10-11 16:46:31',1,30005161,0,0,1,0,5,2,0,2,2,11,12,0,0,0,3,5,0,1,0,0,0,2,1,0),(2733,'2015-03-10 21:49:29','2015-10-11 16:46:31',1,30000662,43,11,25,25,69,15,26,6,9,18,20,14,14,11,8,8,41,13,15,22,18,54,61,9),(2734,'2015-03-10 21:49:29','2015-10-11 16:46:31',1,30001542,10,14,11,10,12,15,4,6,9,15,14,11,14,11,12,6,23,8,11,16,23,3,2,17),(2735,'2015-03-10 21:49:29','2015-10-11 16:46:31',1,30004462,3,19,38,22,16,25,5,7,17,16,12,15,18,11,33,27,28,23,21,20,17,26,24,12),(2736,'2015-03-10 21:49:29','2015-10-11 16:46:31',1,30004086,6,1,10,6,26,31,3,4,0,16,15,10,9,5,11,12,1,8,9,18,18,10,6,8),(2737,'2015-03-10 21:49:29','2015-10-11 16:46:31',1,30000078,3,4,3,1,5,13,6,2,2,8,0,4,2,7,1,2,6,5,3,14,6,2,4,1),(2738,'2015-03-10 21:49:29','2015-10-11 16:46:31',1,30004974,228,106,143,146,124,136,120,133,110,145,158,211,175,209,241,214,200,207,137,149,176,270,230,183),(2739,'2015-03-10 21:49:29','2015-10-11 16:46:31',1,30002679,49,26,40,51,21,21,26,33,27,39,35,35,31,65,59,69,37,51,34,34,38,52,49,44),(2740,'2015-03-10 21:49:29','2015-10-11 16:46:31',1,30003387,37,46,35,27,25,30,23,18,49,48,30,25,30,46,34,37,53,46,20,34,43,58,50,43),(2741,'2015-03-10 21:49:29','2015-10-11 16:46:31',1,30002210,24,27,35,30,27,32,13,26,19,66,51,24,31,36,54,60,29,24,21,20,43,40,42,41),(2742,'2015-03-10 21:49:29','2015-10-11 16:46:31',1,30004088,16,6,11,18,10,8,19,2,10,17,19,21,16,16,7,6,1,5,11,11,12,36,29,14),(2743,'2015-03-10 21:49:29','2015-10-11 16:46:31',1,30001046,10,7,7,9,11,14,6,10,7,13,19,10,18,38,18,21,7,12,11,21,9,18,19,18),(2744,'2015-03-10 21:49:29','2015-10-11 16:46:31',1,30002567,2,4,0,1,5,3,3,9,11,6,5,5,8,20,10,13,5,6,0,3,7,0,0,3),(2745,'2015-03-10 21:49:29','2015-10-11 16:46:31',1,30000156,767,671,866,820,747,705,667,602,613,1084,1054,957,935,1117,1175,1063,1214,1006,718,864,995,1081,1131,971),(2746,'2015-03-10 21:49:29','2015-10-11 16:46:31',1,30003447,103,67,91,59,84,75,76,23,44,85,80,77,82,85,108,117,113,87,58,65,88,115,143,71),(2747,'2015-03-10 21:49:29','2015-10-11 16:46:31',1,30001423,60,9,27,25,14,13,18,4,11,16,15,26,21,19,11,15,14,17,17,41,36,25,21,28),(2748,'2015-03-10 21:49:29','2015-10-11 16:46:31',1,30011392,139,116,109,147,116,92,100,63,98,154,166,168,141,159,143,147,173,99,92,108,134,139,155,106),(2749,'2015-03-10 21:49:29','2015-10-11 16:46:31',1,30005321,42,21,24,26,39,35,27,20,10,32,29,25,19,55,27,38,25,19,30,22,74,20,20,22),(2750,'2015-03-10 21:49:29','2015-10-11 16:46:31',1,30004731,24,12,17,4,8,8,15,9,15,169,85,225,160,99,205,70,51,48,30,40,49,27,30,19),(2751,'2015-03-10 21:49:29','2015-10-11 16:46:31',1,30005136,4,2,1,2,0,0,0,0,0,0,0,0,0,0,0,1,2,3,1,3,4,2,0,1),(2752,'2015-03-10 21:49:29','2015-10-11 16:46:31',1,30000901,10,22,43,28,27,38,15,18,7,33,23,14,14,28,52,21,21,22,24,72,40,14,16,27),(2753,'2015-03-10 21:49:29','2015-03-10 21:49:29',1,30000363,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(2754,'2015-03-10 21:49:29','2015-10-11 16:46:31',1,30000548,0,2,4,0,0,1,7,0,0,0,1,2,1,0,1,0,0,4,0,0,1,0,1,0),(2755,'2015-03-10 21:49:29','2015-10-11 16:46:31',1,30004330,12,18,37,32,50,34,17,51,30,11,28,23,8,17,47,37,25,22,4,14,10,14,19,15),(2756,'2015-03-10 21:49:29','2015-10-11 16:46:31',1,30001851,13,12,21,16,42,18,12,24,17,42,45,46,49,41,71,61,49,44,10,18,48,61,48,52),(2757,'2015-03-10 21:49:29','2015-03-10 21:49:29',1,30001494,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(2758,'2015-03-10 21:49:29','2015-10-11 16:46:31',1,30003664,10,10,15,22,32,20,111,12,17,15,26,11,13,25,11,17,12,9,17,18,18,10,6,16),(2759,'2015-03-10 21:49:29','2015-10-11 16:46:31',1,30002821,0,2,0,0,0,1,0,5,1,0,0,1,1,0,0,0,0,0,0,0,0,0,0,0),(2760,'2015-03-10 21:49:29','2015-10-11 16:46:31',1,30002323,5,0,5,3,0,3,0,2,1,0,0,0,0,2,2,1,3,0,2,0,0,2,5,3),(2761,'2015-03-10 21:49:29','2015-10-11 16:46:31',1,30004324,5,21,14,9,12,46,19,10,20,15,18,15,21,16,56,43,2,5,3,4,14,12,4,1),(2762,'2015-03-10 21:49:29','2015-10-11 16:46:31',1,30002911,63,50,133,87,54,53,69,60,70,93,100,67,64,165,180,162,117,70,157,178,98,108,114,85),(2763,'2015-03-10 21:49:29','2015-10-11 16:46:31',1,30001937,6,2,4,3,10,6,4,22,7,5,13,11,11,11,12,15,31,14,4,7,9,19,18,25),(2764,'2015-03-10 21:49:29','2015-10-11 16:46:31',1,30000051,97,67,80,79,67,71,64,54,65,126,130,88,87,114,169,159,93,94,77,68,85,83,81,69),(2765,'2015-03-10 21:49:29','2015-10-11 16:46:31',1,30001738,37,11,4,8,14,8,16,7,13,5,7,10,12,21,21,33,33,24,32,18,12,18,29,14),(2766,'2015-03-10 21:49:29','2015-10-11 16:46:31',1,30001743,19,13,5,11,19,13,10,8,10,13,7,8,10,8,25,33,95,22,5,14,13,35,27,18),(2767,'2015-03-10 21:49:29','2015-10-11 16:46:31',1,30005308,172,190,204,235,207,191,162,157,115,194,224,224,199,286,290,306,254,188,172,213,210,249,265,215),(2768,'2015-03-10 21:49:29','2015-10-11 16:46:31',1,30000987,3,3,8,6,6,4,3,2,17,6,8,8,12,0,1,1,5,7,2,2,0,5,2,6),(2769,'2015-03-10 21:49:29','2015-10-11 16:46:31',1,30003083,6,7,9,7,5,5,4,5,0,10,8,5,1,6,5,6,4,6,1,6,5,11,13,8),(2770,'2015-03-10 21:49:29','2015-10-11 16:46:31',1,30003016,36,30,31,34,27,21,36,27,42,34,69,61,43,37,51,58,54,46,34,32,28,42,34,40),(2771,'2015-03-10 21:49:29','2015-10-11 16:46:31',1,30003013,46,32,44,43,53,52,33,20,28,55,74,81,68,48,50,68,82,56,22,32,40,50,50,66),(2772,'2015-03-10 21:49:29','2015-10-11 16:46:31',1,30001315,22,27,22,10,24,30,12,5,14,14,19,14,20,16,22,18,6,8,16,17,28,24,26,12),(2773,'2015-03-10 21:49:29','2015-10-11 16:46:31',1,30002803,736,512,725,687,652,606,518,541,494,616,716,752,689,803,895,916,860,756,511,588,648,866,882,756),(2774,'2015-03-10 21:49:29','2015-10-11 16:46:31',1,30004883,9,21,35,22,9,8,14,23,17,12,17,7,4,6,4,7,9,5,4,9,12,10,17,10),(2775,'2015-03-10 21:49:29','2015-10-11 16:46:31',1,30001567,16,7,23,11,18,43,6,13,11,45,64,15,13,24,15,33,57,17,11,20,15,17,20,10),(2776,'2015-03-10 21:49:29','2015-10-11 16:46:31',1,30001948,19,7,22,9,3,13,22,2,6,17,22,15,11,20,25,21,7,22,11,17,19,17,8,18),(2777,'2015-03-10 21:49:29','2015-10-11 16:46:31',1,30001007,43,12,24,7,18,13,18,21,20,3,10,12,13,3,5,4,6,4,2,0,2,2,1,3),(2778,'2015-03-10 21:49:29','2015-10-11 16:46:31',1,30001190,2,2,4,0,4,1,5,3,5,8,51,21,15,16,20,24,19,23,10,15,27,14,9,20),(2779,'2015-03-10 21:49:29','2015-10-11 16:46:31',1,30001793,0,0,0,0,1,3,1,0,6,0,2,1,0,1,2,3,1,3,0,3,1,3,2,1),(2780,'2015-03-10 21:49:29','2015-03-10 21:49:29',1,30001495,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(2781,'2015-03-10 21:49:29','2015-10-11 16:46:31',1,30003264,14,8,27,5,2,6,8,25,8,6,8,4,5,2,2,6,5,5,8,6,2,4,5,3),(2782,'2015-03-10 21:49:29','2015-10-11 16:46:31',1,30000640,3,2,6,4,5,3,3,1,8,5,10,19,20,0,68,33,5,11,11,6,4,2,5,3),(2783,'2015-03-10 21:49:29','2015-10-11 16:46:31',1,30005135,12,4,9,14,24,9,4,1,0,3,1,1,2,0,16,14,4,11,2,5,4,2,2,0),(2784,'2015-03-10 21:49:29','2015-10-11 16:46:31',1,30004952,6,11,5,0,3,3,25,5,5,3,2,1,1,3,10,8,2,2,1,3,5,4,4,2),(2785,'2015-03-10 21:49:29','2015-10-11 16:46:31',1,30000325,5,6,4,6,5,9,1,1,2,1,16,9,4,5,4,3,0,8,2,2,2,3,0,1),(2786,'2015-03-10 21:49:29','2015-10-11 16:46:31',1,30004912,46,35,35,10,30,31,18,5,12,17,13,12,6,16,59,54,9,52,20,79,8,6,11,15),(2787,'2015-03-10 21:49:29','2015-10-11 16:46:31',1,30005120,7,1,1,10,1,1,2,2,0,0,0,3,0,1,3,9,2,1,1,1,38,6,3,1),(2788,'2015-03-10 21:49:29','2015-10-11 16:46:31',1,30004751,126,23,5,21,16,21,15,23,75,75,53,55,48,54,76,76,67,58,28,40,64,84,96,31),(2789,'2015-03-10 21:49:29','2015-10-11 16:46:31',1,30000890,7,9,3,9,13,12,11,7,1,24,22,10,13,23,19,16,23,24,8,8,5,16,18,15),(2790,'2015-03-10 21:49:29','2015-10-11 16:46:31',1,30004379,24,26,33,20,14,24,24,31,21,24,26,17,17,21,29,21,16,15,17,32,14,15,18,25),(2791,'2015-03-10 21:49:29','2015-10-11 16:46:31',1,30004490,29,19,8,2,6,7,38,30,31,10,14,18,22,9,25,25,27,19,17,11,23,28,32,36),(2792,'2015-03-10 21:49:29','2015-10-11 16:46:31',1,30001011,36,24,65,77,26,26,30,34,18,136,177,81,48,190,96,87,44,34,42,72,97,68,45,99),(2793,'2015-03-10 21:49:29','2015-10-11 16:46:31',1,30003969,12,37,8,37,18,11,12,1,3,4,3,2,3,1,4,4,1,4,3,4,1,6,1,1),(2794,'2015-03-10 21:49:29','2015-10-11 16:46:31',1,30001550,3,9,15,3,9,9,3,15,2,6,10,21,10,23,3,2,17,29,5,28,18,10,10,18),(2795,'2015-03-10 21:49:29','2015-10-11 16:46:31',1,30001000,96,37,93,42,43,33,35,25,32,29,26,141,99,31,72,138,50,35,30,21,40,120,57,93),(2796,'2015-03-10 21:49:29','2015-10-11 16:46:31',1,30004475,2,4,0,0,2,0,2,5,0,2,4,3,7,4,0,0,5,6,1,1,2,4,2,5),(2797,'2015-03-10 21:49:29','2015-10-11 16:46:31',1,30003982,55,77,17,23,10,27,14,15,18,25,32,35,26,79,42,35,18,9,41,15,15,16,14,29),(2798,'2015-03-10 21:49:29','2015-10-11 16:46:31',1,30001006,10,1,8,2,5,3,0,2,4,11,13,3,1,4,60,48,6,3,3,4,2,3,5,2),(2799,'2015-03-10 21:49:29','2015-10-11 16:46:31',1,30001026,24,32,56,20,28,18,28,13,23,44,48,35,40,152,72,78,73,51,25,43,53,49,61,48),(2800,'2015-03-10 21:49:29','2015-10-11 16:46:31',1,30000631,26,4,3,24,8,6,2,11,10,6,2,14,14,7,35,36,5,9,8,6,3,2,3,5),(2801,'2015-03-10 21:49:29','2015-10-11 16:46:31',1,30004421,13,3,0,7,3,6,3,5,11,7,3,3,3,11,16,17,13,11,40,26,23,13,6,32),(2802,'2015-03-10 21:49:29','2015-10-11 16:46:31',1,30001543,2,2,0,0,0,2,0,0,0,3,2,6,13,7,2,2,4,5,5,17,21,0,2,5),(2803,'2015-03-10 21:49:29','2015-10-11 16:46:31',1,30003998,2,1,0,1,0,4,5,2,1,4,7,15,16,8,2,6,4,2,3,6,3,1,0,5),(2804,'2015-03-10 21:49:29','2015-10-11 16:46:31',1,30001572,40,20,10,16,33,93,13,5,11,92,137,57,19,27,22,35,90,38,17,20,18,42,40,27),(2805,'2015-03-10 21:49:29','2015-10-11 16:46:31',1,30003972,20,7,8,5,6,13,1,3,5,11,18,8,10,4,6,7,4,7,7,3,4,15,8,20),(2806,'2015-03-10 21:49:29','2015-10-11 16:46:31',1,30001172,5,2,7,10,9,9,4,0,10,6,4,0,3,5,7,6,18,12,10,6,10,8,13,7),(2807,'2015-03-10 21:49:29','2015-10-11 16:46:31',1,30003758,152,42,61,51,56,32,41,29,32,78,79,75,68,257,158,71,45,41,37,59,90,40,135,37),(2808,'2015-03-10 21:49:29','2015-10-11 16:46:31',1,30003764,35,34,25,56,29,37,50,13,19,65,88,61,71,71,64,81,106,68,55,52,28,50,63,54),(2809,'2015-03-10 21:49:29','2015-10-11 16:46:31',1,30000665,0,2,2,3,1,0,0,0,6,2,1,2,5,4,4,2,8,4,10,11,1,1,3,0),(2810,'2015-03-10 21:49:29','2015-10-11 16:46:31',1,30002464,6,11,7,10,9,10,13,5,21,11,46,11,8,2,2,6,3,8,7,4,7,5,3,8),(2811,'2015-03-10 21:49:29','2015-10-11 16:46:31',1,30001274,115,67,55,64,50,71,56,40,45,43,69,95,93,64,122,124,106,69,25,61,75,73,181,72),(2812,'2015-03-10 21:49:29','2015-10-11 16:46:31',1,30004017,12,14,37,9,21,21,2,3,7,16,9,9,12,38,15,18,11,7,5,10,13,22,25,15),(2813,'2015-03-10 21:49:29','2015-10-11 16:46:31',1,30002447,16,5,5,15,12,12,22,4,3,10,7,8,8,15,4,7,21,9,3,4,14,69,51,27),(2814,'2015-03-10 21:49:29','2015-10-11 16:46:31',1,30001762,33,34,30,64,42,49,9,11,26,7,10,23,12,20,15,14,18,9,5,4,11,4,8,16),(2815,'2015-03-10 21:49:29','2015-10-11 16:46:31',1,30003687,53,46,169,93,64,80,35,53,56,39,51,40,77,47,55,45,36,32,33,31,45,36,33,44),(2816,'2015-03-10 21:49:29','2015-10-11 16:46:31',1,30003279,19,21,103,48,30,19,45,33,25,39,37,27,17,64,53,39,35,21,8,5,26,15,13,19),(2817,'2015-03-10 21:49:29','2015-10-11 16:46:31',1,30002900,11,9,6,5,6,5,5,11,13,31,53,22,25,37,22,26,41,82,9,15,18,31,52,44),(2818,'2015-03-10 21:49:29','2015-10-11 16:46:31',1,30000659,18,24,44,13,10,11,14,9,37,22,9,17,14,9,17,16,21,37,15,23,24,22,15,16),(2819,'2015-03-10 21:49:29','2015-10-11 16:46:31',1,30001238,7,0,1,6,5,3,6,6,1,6,14,21,14,8,9,13,9,11,8,12,28,14,13,6),(2820,'2015-03-10 21:49:29','2015-10-11 16:46:31',1,30002872,8,8,7,29,6,10,6,6,3,8,6,12,9,12,14,12,8,6,1,2,8,12,22,11),(2821,'2015-03-10 21:49:29','2015-03-10 21:49:29',1,30000369,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(2822,'2015-03-10 21:49:29','2015-10-11 16:46:31',1,30003950,65,52,208,86,61,46,63,34,42,41,50,30,21,79,25,28,30,25,35,12,34,19,9,43),(2823,'2015-03-10 21:49:29','2015-10-11 16:46:31',1,30000510,0,0,1,3,2,3,1,0,0,0,1,0,0,0,0,1,0,0,0,2,2,0,0,1),(2824,'2015-03-10 21:49:29','2015-10-11 16:46:31',1,30000653,11,3,29,20,4,3,4,3,11,5,6,4,4,2,6,2,2,4,2,6,10,4,4,11),(2825,'2015-03-10 21:49:29','2015-10-11 16:46:31',1,30001040,1,1,3,3,13,9,0,0,2,5,3,1,2,2,9,11,13,11,1,0,39,3,3,2),(2826,'2015-03-10 21:49:29','2015-10-11 16:46:31',1,30004572,19,16,20,20,9,14,10,6,14,22,19,5,3,5,13,8,13,7,24,38,30,14,14,7),(2827,'2015-03-10 21:49:29','2015-10-11 16:46:31',1,30000244,21,30,24,29,19,13,29,31,11,12,20,54,6,22,13,17,19,15,28,7,8,18,12,61),(2828,'2015-03-10 21:49:29','2015-10-11 16:46:31',1,30002873,10,15,20,22,17,22,14,4,10,29,33,22,15,25,39,35,9,19,3,5,39,38,41,27),(2829,'2015-03-10 21:49:29','2015-10-11 16:46:31',1,30001231,43,30,28,35,35,27,24,24,37,78,40,33,41,55,49,46,58,39,51,147,133,49,57,42),(2830,'2015-03-10 21:49:29','2015-10-11 16:46:31',1,30002789,1598,1383,1670,1551,1511,1457,1174,805,1052,1732,1893,1799,1622,1778,2100,2006,1954,1618,1274,1402,1800,1935,1890,1635),(2831,'2015-03-10 21:49:29','2015-10-11 16:46:31',1,30002417,6,13,3,3,3,2,3,2,4,3,0,8,5,5,3,1,2,7,5,1,4,4,2,2),(2832,'2015-03-10 21:49:29','2015-10-11 16:46:31',1,30004095,217,130,217,189,150,173,122,105,134,207,217,239,218,251,318,294,229,206,165,163,245,202,208,236),(2833,'2015-03-10 21:49:29','2015-10-11 16:46:31',1,30003873,14,18,13,3,2,1,11,6,11,23,20,14,13,36,12,14,25,26,9,11,16,42,32,34),(2834,'2015-03-10 21:49:29','2015-10-11 16:46:31',1,30002751,119,100,134,163,139,156,83,89,109,111,112,119,107,105,117,113,110,91,58,58,100,106,112,100),(2835,'2015-03-10 21:49:29','2015-10-11 16:46:31',1,30003887,15,25,16,33,24,25,16,8,15,70,64,30,19,49,37,43,49,35,13,33,51,33,30,26),(2836,'2015-03-10 21:49:29','2015-10-11 16:46:31',1,30001405,550,453,521,439,416,429,425,327,406,613,657,606,577,583,672,644,553,556,388,452,569,569,556,472),(2837,'2015-03-10 21:49:29','2015-10-11 16:46:31',1,30002747,21,15,21,19,50,46,19,11,9,30,23,12,14,17,9,8,23,11,13,22,26,34,44,29),(2838,'2015-03-10 21:49:29','2015-10-11 16:46:31',1,30004115,61,35,64,38,47,46,44,42,40,80,83,67,56,42,66,55,48,62,53,51,79,43,45,62),(2839,'2015-03-10 21:49:29','2015-10-11 16:46:31',1,30003069,199,186,171,197,175,246,127,121,121,164,199,205,178,318,348,412,222,142,148,227,173,206,166,131),(2840,'2015-03-10 21:49:29','2015-10-11 16:46:31',1,30004239,45,33,118,68,84,63,51,50,78,66,54,50,39,49,143,222,62,33,48,51,43,63,56,27),(2841,'2015-03-10 21:49:29','2015-10-11 16:46:31',1,30002782,988,955,1061,1029,980,887,678,512,628,1129,1165,1120,1001,1195,1409,1356,1335,1002,822,968,1232,1214,1150,1002),(2842,'2015-03-10 21:49:29','2015-10-11 16:46:31',1,30001406,78,87,115,77,67,78,78,78,76,153,180,145,141,141,127,114,96,99,96,85,105,138,159,119),(2843,'2015-03-10 21:49:29','2015-10-11 16:46:31',1,30021392,46,47,50,55,41,38,53,41,42,99,106,86,69,64,94,73,79,50,51,51,41,67,64,47),(2844,'2015-03-10 21:49:29','2015-10-11 16:46:31',1,30004306,29,11,6,9,9,14,13,18,21,88,150,199,83,96,546,152,132,78,109,262,150,39,21,11),(2845,'2015-03-10 21:49:29','2015-10-11 16:46:31',1,30001742,54,30,134,58,55,62,54,23,42,79,68,71,48,164,73,75,72,45,47,80,176,87,71,98),(2846,'2015-03-10 21:49:29','2015-10-11 16:46:31',1,30001440,142,58,158,48,64,79,69,41,16,32,27,31,26,54,27,30,35,42,71,47,32,20,31,43),(2847,'2015-03-10 21:49:29','2015-10-11 16:46:31',1,30004134,160,83,89,101,104,79,67,46,53,108,132,150,148,125,193,237,204,119,71,86,111,133,153,133),(2848,'2015-03-10 21:49:29','2015-10-11 16:46:31',1,30000030,49,34,47,34,30,33,39,19,21,38,45,29,41,58,72,82,79,45,50,66,62,56,50,37),(2849,'2015-03-10 21:49:29','2015-10-11 16:46:31',1,30002761,1186,1067,1199,1280,1233,1145,898,729,838,1285,1402,1347,1162,1433,1606,1614,1514,1230,923,1170,1329,1534,1479,1227),(2850,'2015-03-10 21:49:29','2015-10-11 16:46:31',1,30002416,5,5,3,1,12,13,4,0,8,1,1,3,3,4,10,5,4,6,8,11,8,10,12,2),(2851,'2015-03-10 21:49:29','2015-10-11 16:46:31',1,30002580,4,14,7,14,33,14,9,16,18,45,62,25,13,45,30,44,12,22,4,16,23,27,17,12),(2852,'2015-03-10 21:49:29','2015-10-11 16:46:31',1,30002797,82,74,87,97,90,75,77,60,62,109,132,96,97,112,139,114,84,90,65,70,93,116,103,96),(2853,'2015-03-10 21:49:29','2015-10-11 16:46:31',1,30002749,155,134,222,240,279,271,84,72,99,134,117,116,106,124,144,164,164,109,69,89,131,152,174,135),(2854,'2015-03-10 21:49:29','2015-10-11 16:46:31',1,30000018,35,10,28,9,15,17,13,19,9,22,24,16,23,52,40,19,31,30,19,31,31,25,27,27),(2855,'2015-03-10 21:49:29','2015-10-11 16:46:31',1,30001242,3,2,4,8,5,4,9,6,5,25,22,32,24,54,22,25,19,24,13,35,47,33,32,43),(2856,'2015-03-10 21:49:29','2015-10-11 16:46:31',1,30004794,0,3,4,0,6,4,3,6,11,22,22,20,11,41,30,48,40,22,5,17,12,10,8,21),(2857,'2015-03-10 21:49:29','2015-10-11 16:46:31',1,30003729,163,172,130,123,116,94,136,104,145,261,258,165,148,293,320,301,218,162,285,259,276,214,189,196),(2858,'2015-03-10 21:49:29','2015-10-11 16:46:31',1,30002178,158,57,89,49,91,74,117,77,44,66,70,52,44,87,119,105,96,40,104,312,247,89,100,89),(2859,'2015-03-10 21:49:29','2015-10-11 16:46:31',1,30004579,0,2,1,2,1,1,1,0,0,9,9,104,97,26,6,6,3,2,3,5,32,6,10,16),(2860,'2015-03-10 21:49:29','2015-10-11 16:46:31',1,30000737,15,0,5,6,11,11,5,2,1,1,2,4,2,3,4,0,2,0,1,0,1,3,3,7),(2861,'2015-03-10 21:49:29','2015-10-11 16:46:31',1,30001164,29,19,16,11,15,11,13,9,8,53,81,36,8,15,30,11,14,9,9,44,12,17,12,7),(2862,'2015-03-10 21:49:29','2015-10-11 16:46:31',1,30000736,8,3,11,5,8,9,6,10,14,6,4,9,3,5,3,1,7,4,1,0,4,2,0,2),(2863,'2015-03-10 21:49:29','2015-10-11 16:46:31',1,30002027,14,5,12,14,13,9,25,15,8,3,4,0,0,6,2,1,0,4,4,2,1,5,3,3),(2864,'2015-03-10 21:49:29','2015-10-11 16:46:31',1,30000519,1,3,4,7,3,3,0,0,0,4,3,2,3,3,3,2,1,0,0,3,3,0,0,0),(2865,'2015-03-10 21:49:29','2015-10-11 16:46:31',1,30004295,8,10,5,12,12,5,19,2,8,21,21,9,11,28,23,18,11,11,16,19,16,11,5,5),(2866,'2015-03-10 21:49:29','2015-10-11 16:46:31',1,30003883,85,86,145,115,118,107,142,55,94,319,297,179,159,204,283,308,208,176,238,174,190,199,221,156),(2867,'2015-03-10 21:49:29','2015-10-11 16:46:31',1,30003239,3,4,0,1,1,2,1,0,0,2,3,1,0,0,1,1,2,0,0,0,0,0,0,0),(2868,'2015-03-10 21:49:29','2015-10-11 16:46:31',1,30045346,244,227,305,209,223,232,206,217,190,214,248,170,147,195,253,235,276,251,192,195,283,246,216,209),(2869,'2015-03-10 21:49:29','2015-10-11 16:46:31',1,30004772,6,8,3,2,4,5,7,8,9,143,63,210,173,92,208,66,53,43,27,36,55,26,29,11),(2870,'2015-03-10 21:49:29','2015-10-11 16:46:31',1,30045308,345,114,187,93,118,111,67,76,57,100,125,70,80,84,116,73,95,101,71,103,84,72,113,73),(2871,'2015-03-10 21:49:29','2015-10-11 16:46:31',1,30002193,278,210,289,268,286,285,288,192,199,274,365,294,285,362,412,383,331,283,221,275,323,413,324,285),(2872,'2015-03-10 21:49:29','2015-10-11 16:46:31',1,30000098,14,10,9,9,14,14,12,15,14,29,29,33,23,16,21,25,25,55,24,12,8,15,14,25),(2873,'2015-03-10 21:49:29','2015-10-11 16:46:31',1,30000176,31,30,41,40,42,38,71,20,20,15,34,27,37,54,70,73,70,35,52,51,52,60,51,57),(2874,'2015-03-10 21:49:29','2015-10-11 16:46:31',1,30003999,3,0,1,2,0,2,4,2,1,2,9,17,12,8,3,6,4,0,3,5,4,1,0,4),(2875,'2015-03-10 21:49:29','2015-10-11 16:46:31',1,30005206,157,97,172,199,195,180,142,91,126,152,157,151,146,187,191,219,172,127,117,135,164,188,167,168),(2876,'2015-03-10 21:49:29','2015-10-11 16:46:31',1,30004237,16,17,21,22,54,34,55,13,60,12,21,19,12,6,10,11,17,8,4,9,7,6,9,15),(2877,'2015-03-10 21:49:29','2015-10-11 16:46:31',1,30003823,12,9,4,7,7,8,5,13,10,7,7,9,8,15,6,7,6,1,1,10,5,19,19,11),(2878,'2015-03-10 21:49:29','2015-10-11 16:46:31',1,30000116,25,14,32,33,31,21,20,15,16,29,23,13,12,35,25,21,32,24,31,18,24,40,43,29),(2879,'2015-03-10 21:49:29','2015-10-11 16:46:31',1,30005078,38,7,9,7,11,11,7,3,30,4,4,5,5,14,27,28,29,20,2,26,8,10,12,13),(2880,'2015-03-10 21:49:29','2015-03-10 21:49:29',1,30001623,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(2881,'2015-03-10 21:49:29','2015-10-11 16:46:31',1,30011672,9,1,5,13,6,6,4,5,4,2,7,9,8,23,13,10,7,4,2,6,6,9,11,4),(2882,'2015-03-10 21:49:29','2015-10-11 16:46:31',1,30005260,10,1,8,1,2,4,17,6,2,4,2,2,4,6,4,4,7,6,2,9,5,7,6,5),(2883,'2015-03-10 21:49:29','2015-10-11 16:46:31',1,30005066,1,15,6,3,3,4,0,4,5,13,12,4,0,4,7,7,4,4,2,1,2,12,14,1),(2884,'2015-03-10 21:49:29','2015-10-11 16:46:31',1,30005220,115,64,56,100,74,84,72,54,63,101,110,126,102,95,150,126,120,88,66,81,103,133,127,126),(2885,'2015-03-10 21:49:29','2015-10-11 16:46:31',1,30001682,24,7,48,38,26,17,7,11,19,36,56,57,68,104,56,59,42,63,32,31,95,41,43,34),(2886,'2015-03-10 21:49:29','2015-03-10 21:49:29',1,30001515,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(2887,'2015-03-10 21:49:29','2015-10-11 16:46:31',1,30004709,7,3,2,3,3,6,5,9,3,11,12,9,1,11,8,4,8,7,6,2,5,3,3,5),(2888,'2015-03-10 21:49:29','2015-10-11 16:46:31',1,30003343,19,20,4,18,17,14,42,12,13,3,8,20,10,11,12,7,11,20,32,11,10,15,12,32),(2889,'2015-03-10 21:49:29','2015-10-11 16:46:31',1,30001790,0,6,1,1,4,7,1,0,0,0,3,6,7,4,4,3,8,3,6,4,5,5,5,13),(2890,'2015-03-10 21:49:29','2015-10-11 16:46:31',1,30002296,10,6,5,5,6,11,12,9,9,1,5,6,7,3,2,2,2,2,4,1,2,4,7,6),(2891,'2015-03-10 21:49:29','2015-10-11 16:46:31',1,30003190,11,3,79,6,2,1,6,2,0,3,3,2,1,3,7,4,1,2,7,10,5,11,9,3),(2892,'2015-03-10 21:49:29','2015-10-11 16:46:31',1,30001240,3,2,5,8,5,4,9,5,5,21,21,30,20,53,24,27,17,21,13,37,46,35,36,41),(2893,'2015-03-10 21:49:29','2015-10-11 16:46:31',1,30005032,0,5,5,3,6,7,10,1,2,3,11,14,5,18,22,3,6,9,2,2,3,8,10,1),(2894,'2015-03-10 21:49:29','2015-10-11 16:46:31',1,30000117,71,68,88,53,52,40,77,24,30,48,49,65,53,86,77,77,71,52,70,58,48,81,73,49),(2895,'2015-03-10 21:49:29','2015-10-11 16:46:31',1,30004096,48,44,72,64,58,68,49,33,54,72,67,66,57,94,112,89,73,72,54,52,77,73,49,94),(2896,'2015-03-10 21:49:29','2015-10-11 16:46:31',1,30003863,44,12,31,22,24,19,20,16,10,34,34,45,31,49,41,38,45,32,30,26,46,40,49,39),(2897,'2015-03-10 21:49:29','2015-10-11 16:46:31',1,30000056,14,11,9,15,10,9,5,7,17,21,20,6,8,14,24,31,16,10,8,9,12,13,16,9),(2898,'2015-03-10 21:49:29','2015-10-11 16:46:31',1,30003486,39,49,61,64,48,41,31,30,23,44,68,59,60,87,67,51,71,55,60,44,56,67,47,60),(2899,'2015-03-10 21:49:29','2015-10-11 16:46:31',1,30004258,8,15,8,6,6,6,3,0,11,9,7,8,10,9,4,4,3,3,12,5,4,2,3,9),(2900,'2015-03-10 21:49:29','2015-10-11 16:46:31',1,30003490,235,216,264,218,188,198,181,159,163,279,306,239,200,280,300,310,327,223,156,166,234,250,231,237),(2901,'2015-03-10 21:49:29','2015-10-11 16:46:31',1,30001969,25,23,7,17,6,5,2,16,1,5,3,1,5,26,3,7,14,7,4,4,8,9,5,2),(2902,'2015-03-10 21:49:29','2015-10-11 16:46:31',1,30004209,47,23,20,20,23,22,23,13,28,39,40,14,12,11,17,11,4,19,11,21,26,36,47,53),(2903,'2015-03-10 21:49:29','2015-10-11 16:46:31',1,30000189,92,47,87,80,67,70,76,56,94,101,136,94,103,150,103,114,139,97,78,89,103,122,112,78),(2904,'2015-03-10 21:49:29','2015-10-11 16:46:31',1,30001692,5,14,10,11,13,17,16,5,6,25,30,28,23,15,32,37,19,22,7,9,11,20,26,14),(2905,'2015-03-10 21:49:29','2015-10-11 16:46:31',1,30000024,25,3,46,20,19,21,11,8,16,19,16,19,21,38,16,22,26,32,14,25,33,24,35,11),(2906,'2015-03-10 21:49:29','2015-10-11 16:46:31',1,30004176,12,6,5,20,16,12,6,3,10,23,34,30,29,24,7,14,21,17,2,1,6,25,16,16),(2907,'2015-03-10 21:49:29','2015-10-11 16:46:31',1,30003860,140,73,153,101,99,99,117,62,65,350,369,441,383,191,183,174,166,126,126,148,163,162,174,133),(2908,'2015-03-10 21:49:29','2015-10-11 16:46:31',1,30045314,327,193,134,105,124,143,113,89,105,159,169,86,81,169,228,161,148,128,134,228,149,127,114,122),(2909,'2015-03-10 21:49:29','2015-10-11 16:46:31',1,30001372,118,110,95,118,136,125,87,59,64,106,123,117,99,112,126,124,110,117,74,66,86,119,117,126),(2910,'2015-03-10 21:49:29','2015-10-11 16:46:31',1,30001410,167,81,76,97,88,71,70,80,68,101,148,135,131,109,127,144,135,135,62,84,135,115,127,117),(2911,'2015-03-10 21:49:29','2015-10-11 16:46:31',1,30001360,9,9,2,2,8,10,7,4,5,18,15,17,27,33,25,31,14,8,7,26,24,10,9,26),(2912,'2015-03-10 21:49:29','2015-10-11 16:46:31',1,30000141,100,73,83,61,66,72,83,47,70,64,80,104,93,89,94,86,97,75,48,69,91,100,102,93),(2913,'2015-03-10 21:49:29','2015-10-11 16:46:31',1,30005056,64,51,92,50,54,51,71,34,52,86,93,100,86,82,84,91,77,66,60,64,78,79,71,53),(2914,'2015-03-10 21:49:29','2015-10-11 16:46:31',1,30004376,16,1,4,8,8,10,2,2,9,10,10,6,2,24,10,9,15,23,16,4,9,9,8,15),(2915,'2015-03-10 21:49:29','2015-10-11 16:46:31',1,30004488,15,15,31,4,8,4,42,15,20,6,6,10,19,8,21,22,37,28,19,10,25,23,21,37),(2916,'2015-03-10 21:49:29','2015-10-11 16:46:31',1,30001264,38,9,9,10,14,14,13,8,13,115,33,25,22,17,20,197,21,9,10,43,68,20,128,23),(2917,'2015-03-10 21:49:29','2015-10-11 16:46:31',1,30004340,5,5,2,10,11,6,3,3,7,7,1,2,4,26,47,7,6,5,0,14,11,0,5,9),(2918,'2015-03-10 21:49:29','2015-10-11 16:46:31',1,30003458,5,7,11,8,5,5,5,6,13,6,10,12,6,17,17,15,19,23,7,5,7,9,12,9),(2919,'2015-03-10 21:49:29','2015-10-11 16:46:31',1,30002414,10,14,19,11,14,11,9,17,21,30,32,23,26,29,16,12,21,16,19,8,15,15,12,9),(2920,'2015-03-10 21:49:29','2015-10-11 16:46:31',1,30002566,11,11,13,7,16,11,7,14,19,23,20,23,19,21,20,14,11,13,4,5,13,5,5,13),(2921,'2015-03-10 21:49:29','2015-10-11 16:46:31',1,30001020,28,66,307,168,141,98,25,33,27,59,75,41,50,253,87,85,65,41,55,108,144,48,56,60),(2922,'2015-03-10 21:49:29','2015-10-11 16:46:31',1,30002097,50,39,42,23,32,41,33,24,31,83,72,60,64,89,111,95,67,50,64,87,92,89,79,49),(2923,'2015-03-10 21:49:29','2015-10-11 16:46:31',1,30001980,106,45,105,48,106,71,168,41,83,48,47,31,40,96,71,58,58,68,62,71,39,51,48,58),(2924,'2015-03-10 21:49:29','2015-10-11 16:46:31',1,30003344,8,7,2,18,19,12,0,2,8,4,5,1,1,4,12,9,8,7,22,20,14,4,5,4),(2925,'2015-03-10 21:49:29','2015-10-11 16:46:31',1,30004316,1,3,6,1,5,8,3,0,3,2,1,2,8,0,19,3,2,2,0,1,2,4,2,3),(2926,'2015-03-10 21:49:29','2015-10-11 16:46:31',1,30002311,9,5,11,9,3,5,11,5,4,11,6,2,4,12,12,7,11,7,24,4,33,6,4,14),(2927,'2015-03-10 21:49:29','2015-10-11 16:46:31',1,30004375,6,1,6,8,5,6,1,1,6,6,9,4,1,19,10,13,13,12,8,2,6,6,4,7),(2928,'2015-03-10 21:49:29','2015-10-11 16:46:31',1,30003625,9,4,10,3,5,11,2,15,12,3,3,1,2,8,3,3,5,4,3,3,0,4,4,3),(2929,'2015-03-10 21:49:29','2015-03-10 21:49:29',1,30001485,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(2930,'2015-03-10 21:49:29','2015-10-11 16:46:31',1,30002248,5,13,19,26,16,13,20,7,11,19,17,11,8,6,14,9,10,4,6,5,5,2,5,14),(2931,'2015-03-10 21:49:29','2015-10-11 16:46:31',1,30005247,13,21,21,18,17,15,20,40,99,29,36,27,18,32,28,26,37,23,9,27,49,42,40,48),(2932,'2015-03-10 21:49:29','2015-10-11 16:46:31',1,30005124,5,2,5,8,4,6,6,1,6,6,1,2,0,0,1,0,0,0,1,0,0,5,5,0),(2933,'2015-03-10 21:49:29','2015-10-11 16:46:31',1,30003092,18,8,21,26,32,28,6,15,22,15,25,39,27,13,23,18,20,10,32,31,20,22,13,13),(2934,'2015-03-10 21:49:29','2015-10-11 16:46:31',1,30031392,84,57,93,72,100,108,86,85,75,107,99,105,109,116,126,104,95,68,53,62,100,99,112,93),(2935,'2015-03-10 21:49:29','2015-10-11 16:46:31',1,30002737,107,60,60,82,93,75,70,51,80,86,96,79,50,78,88,68,117,79,82,74,79,85,71,113),(2936,'2015-03-10 21:49:29','2015-10-11 16:46:31',1,30003471,21,27,61,40,28,32,36,34,29,30,56,92,61,74,85,147,78,57,18,24,40,50,36,61),(2937,'2015-03-10 21:49:29','2015-10-11 16:46:31',1,30004128,20,12,23,18,22,18,7,22,16,7,11,15,14,8,7,9,10,13,7,7,10,18,9,17),(2938,'2015-03-10 21:49:29','2015-10-11 16:46:31',1,30004152,33,40,40,86,88,57,40,21,17,18,25,27,22,48,43,31,44,73,31,38,68,64,63,44),(2939,'2015-03-10 21:49:29','2015-10-11 16:46:31',1,30005038,576,502,587,648,556,556,520,398,569,781,872,727,703,901,914,874,824,681,525,647,693,839,829,705),(2940,'2015-03-10 21:49:29','2015-10-11 16:46:31',1,30001394,217,178,212,204,179,167,198,155,165,210,225,233,213,248,289,270,305,229,138,153,245,296,276,243),(2941,'2015-03-10 21:49:29','2015-10-11 16:46:31',1,30045312,13,6,2,5,6,16,4,12,18,13,7,3,5,15,6,8,7,14,3,22,14,11,29,21),(2942,'2015-03-10 21:49:29','2015-10-11 16:46:31',1,30005258,24,13,24,16,8,11,17,7,10,27,44,28,19,13,19,21,29,27,6,13,23,43,40,21),(2943,'2015-03-10 21:49:29','2015-10-11 16:46:31',1,30000181,363,393,339,526,408,404,421,299,315,453,554,542,486,450,560,535,544,510,317,292,405,509,536,455),(2944,'2015-03-10 21:49:29','2015-10-11 16:46:31',1,30004103,14,20,15,8,19,13,14,7,9,25,26,9,8,9,20,22,24,27,8,11,14,24,33,21),(2945,'2015-03-10 21:49:29','2015-10-11 16:46:31',1,30003068,302,274,255,289,198,232,206,217,234,341,335,321,239,423,676,770,395,398,287,429,424,352,301,245),(2946,'2015-03-10 21:49:29','2015-10-11 16:46:31',1,30001901,8,3,7,16,15,6,2,4,10,12,6,11,7,3,12,14,3,10,0,10,3,5,3,9),(2947,'2015-03-10 21:49:29','2015-10-11 16:46:31',1,30001536,8,14,14,5,13,19,4,11,12,33,40,13,5,16,6,8,12,17,3,9,14,15,10,8),(2948,'2015-03-10 21:49:29','2015-10-11 16:46:31',1,30001963,111,29,116,19,41,39,106,24,38,70,103,349,287,41,80,61,25,8,28,17,15,36,37,35),(2949,'2015-03-10 21:49:29','2015-10-11 16:46:31',1,30002452,15,11,8,8,18,15,9,5,6,3,9,7,9,3,2,3,8,7,6,14,5,6,10,7),(2950,'2015-03-10 21:49:29','2015-10-11 16:46:31',1,30004895,18,7,25,21,19,19,27,6,7,29,25,9,11,13,28,32,13,19,10,22,22,18,17,26),(2951,'2015-03-10 21:49:29','2015-10-11 16:46:31',1,30022547,22,25,11,10,7,10,16,9,13,18,21,19,18,31,24,34,21,22,15,11,18,32,12,13),(2952,'2015-03-10 21:49:29','2015-10-11 16:46:31',1,30002079,26,20,12,18,13,12,22,5,10,40,24,31,27,11,17,13,19,11,6,6,16,6,9,19),(2953,'2015-03-10 21:49:29','2015-10-11 16:46:31',1,30002519,46,41,50,46,35,39,43,21,26,40,41,32,48,62,72,55,23,34,45,41,34,53,57,64),(2954,'2015-03-10 21:49:29','2015-10-11 16:46:31',1,30002286,5,1,18,8,6,9,7,3,5,17,10,20,25,9,6,3,4,2,13,4,8,13,10,2),(2955,'2015-03-10 21:49:29','2015-10-11 16:46:31',1,30000246,10,13,1,6,4,2,13,8,7,7,2,5,4,5,2,8,3,9,16,3,1,11,9,12),(2956,'2015-03-10 21:49:29','2015-10-11 16:46:31',1,30000807,9,7,8,8,11,7,23,13,10,0,1,1,1,2,0,0,1,2,0,1,0,2,4,0),(2957,'2015-03-10 21:49:29','2015-10-11 16:46:31',1,30001589,0,0,0,2,0,1,0,0,0,1,1,0,0,0,0,0,0,1,3,0,1,0,0,0),(2958,'2015-03-10 21:49:29','2015-10-11 16:46:31',1,30003177,4,4,14,5,3,2,8,13,4,7,9,10,6,3,6,13,13,6,4,4,3,6,3,13),(2959,'2015-03-10 21:49:29','2015-10-11 16:46:31',1,30003300,3,6,4,3,2,7,4,2,12,5,6,5,3,4,5,5,5,5,2,7,1,9,12,8),(2960,'2015-03-10 21:49:29','2015-10-11 16:46:31',1,30004698,1,7,3,0,1,1,2,2,1,3,4,0,1,4,3,3,1,2,0,1,0,1,0,1),(2961,'2015-03-10 21:49:29','2015-10-11 16:46:31',1,30002042,9,6,15,11,11,12,8,6,21,22,32,40,17,34,22,6,15,4,6,4,17,3,7,7),(2962,'2015-03-10 21:49:29','2015-10-11 16:46:31',1,30002767,23,22,22,8,11,17,18,15,6,14,27,19,24,29,23,23,17,25,12,13,28,61,57,26),(2963,'2015-03-10 21:49:29','2015-10-11 16:46:31',1,30003501,109,65,129,113,72,61,67,39,53,84,115,90,80,107,160,180,130,76,80,87,83,120,116,79),(2964,'2015-03-10 21:49:29','2015-10-11 16:46:31',1,30000021,5,2,6,5,1,4,2,1,0,0,0,4,6,2,9,3,3,2,6,16,16,4,6,8),(2965,'2015-03-10 21:49:29','2015-10-11 16:46:31',1,30003926,8,2,3,2,5,7,17,11,6,6,8,16,11,12,15,11,8,11,0,3,0,12,17,11),(2966,'2015-03-10 21:49:29','2015-10-11 16:46:31',1,30002771,118,95,110,119,84,91,74,65,68,113,129,132,121,131,148,130,140,118,49,87,120,132,126,108),(2967,'2015-03-10 21:49:29','2015-10-11 16:46:31',1,30005050,131,105,175,152,138,126,109,148,207,227,257,207,189,209,227,225,189,161,116,156,174,185,174,139),(2968,'2015-03-10 21:49:29','2015-10-11 16:46:31',1,30001415,51,19,22,19,23,20,23,15,27,25,35,28,23,29,22,25,34,41,16,20,21,40,46,32),(2969,'2015-03-10 21:49:29','2015-10-11 16:46:31',1,30003066,47,30,35,33,28,42,30,27,35,27,25,33,35,40,45,44,38,20,31,29,42,34,35,27),(2970,'2015-03-10 21:49:29','2015-10-11 16:46:31',1,30003096,3,0,2,10,6,9,4,1,9,7,7,12,9,0,4,0,4,4,0,4,3,3,2,2),(2971,'2015-03-10 21:49:29','2015-10-11 16:46:31',1,30003089,150,87,58,51,44,55,53,47,41,79,82,72,68,83,94,79,117,68,57,87,166,86,82,69),(2972,'2015-03-10 21:49:29','2015-10-11 16:46:31',1,30002802,348,268,341,340,331,295,259,245,244,315,341,367,321,354,408,428,388,335,265,253,319,378,403,368),(2973,'2015-03-10 21:49:29','2015-10-11 16:46:31',1,30004348,3,5,3,3,8,7,5,9,8,6,10,1,1,6,3,5,2,3,0,10,1,3,3,1),(2974,'2015-03-10 21:49:29','2015-10-11 16:46:31',1,30004642,58,29,15,21,43,38,21,8,13,221,159,220,182,178,343,247,160,98,106,420,344,48,53,39),(2975,'2015-03-10 21:49:29','2015-10-11 16:46:31',1,30003635,11,4,2,6,3,4,8,0,4,1,1,0,0,1,0,0,2,0,1,0,0,2,1,3),(2976,'2015-03-10 21:49:29','2015-10-11 16:46:31',1,30001180,21,33,14,18,14,13,16,21,16,53,68,19,29,84,26,29,23,35,18,26,19,31,33,17),(2977,'2015-03-10 21:49:29','2015-10-11 16:46:31',1,30004833,3,3,1,0,0,1,1,3,3,3,3,4,1,5,3,4,2,5,2,3,1,4,3,4),(2978,'2015-03-10 21:49:29','2015-10-11 16:46:31',1,30000269,20,45,13,30,25,43,16,20,24,3,4,9,8,8,9,1,1,6,1,3,0,0,4,2),(2979,'2015-03-10 21:49:29','2015-03-10 21:49:29',1,30000347,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(2980,'2015-03-10 21:49:29','2015-10-11 16:46:31',1,30000124,39,16,19,6,12,11,28,1,5,30,14,20,24,13,17,17,19,29,7,10,11,27,25,27),(2981,'2015-03-10 21:49:29','2015-10-11 16:46:31',1,30000498,23,3,9,0,7,5,12,23,4,16,11,16,8,5,16,21,19,13,15,3,9,14,9,9),(2982,'2015-03-10 21:49:29','2015-10-11 16:46:31',1,30000710,37,8,43,15,12,8,11,19,18,2,0,16,17,10,6,6,21,11,4,5,12,26,10,21),(2983,'2015-03-10 21:49:29','2015-10-11 16:46:31',1,30000874,10,7,7,11,12,3,6,10,10,2,4,3,4,0,2,1,4,10,5,2,2,3,3,9),(2984,'2015-03-10 21:49:29','2015-10-11 16:46:31',1,30004593,10,17,26,14,6,12,9,5,9,18,24,16,27,274,25,8,8,23,12,16,31,21,15,11),(2985,'2015-03-10 21:49:29','2015-10-11 16:46:31',1,30002142,27,13,13,5,11,11,7,3,4,0,1,3,2,1,0,2,1,1,1,1,1,2,7,2),(2986,'2015-03-10 21:49:29','2015-10-11 16:46:31',1,30003951,34,22,4,15,10,15,22,12,11,29,32,36,26,37,41,28,30,27,13,18,18,20,20,30),(2987,'2015-03-10 21:49:29','2015-10-11 16:46:31',1,30003970,10,21,10,38,13,10,10,1,2,5,3,3,2,0,3,2,1,4,1,5,1,4,1,0),(2988,'2015-03-10 21:49:29','2015-10-11 16:46:31',1,30004625,14,4,5,17,7,8,5,24,15,272,284,197,287,474,35,30,34,81,156,61,396,25,33,16),(2989,'2015-03-10 21:49:29','2015-10-11 16:46:31',1,30001945,3,1,10,4,10,3,7,10,11,14,12,29,34,5,18,27,14,32,8,8,15,20,26,15),(2990,'2015-03-10 21:49:29','2015-10-11 16:46:31',1,30004910,5,1,2,1,8,3,2,6,2,6,12,11,17,6,18,12,12,1,2,38,4,6,7,12),(2991,'2015-03-10 21:49:29','2015-10-11 16:46:31',1,30001223,2,1,1,7,5,3,7,6,1,10,18,18,12,10,9,10,10,10,11,15,45,12,14,9),(2992,'2015-03-10 21:49:29','2015-10-11 16:46:31',1,30003689,178,106,168,156,220,170,114,76,92,37,64,123,129,191,159,99,95,50,65,67,83,66,57,83),(2993,'2015-03-10 21:49:29','2015-03-10 21:49:29',1,30000357,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(2994,'2015-03-10 21:49:29','2015-10-11 16:46:31',1,30001592,5,3,0,0,5,6,3,2,9,104,112,12,13,17,12,19,25,27,8,15,36,29,24,21),(2995,'2015-03-10 21:49:29','2015-10-11 16:46:31',1,30000540,36,17,28,23,17,12,23,18,12,65,79,69,49,53,84,99,57,82,11,16,13,133,143,40),(2996,'2015-03-10 21:49:29','2015-10-11 16:46:31',1,30004018,0,0,1,0,1,1,1,0,1,4,1,2,3,4,1,1,1,1,1,0,0,8,5,0),(2997,'2015-03-10 21:49:29','2015-10-11 16:46:31',1,30002847,9,9,9,13,16,15,12,5,6,26,22,11,16,12,8,11,7,8,0,0,11,24,17,6),(2998,'2015-03-10 21:49:29','2015-10-11 16:46:31',1,30002434,12,4,14,16,4,6,6,2,13,7,8,21,8,2,7,6,10,9,4,5,9,4,5,8),(2999,'2015-03-10 21:49:29','2015-10-11 16:46:31',1,30001350,9,20,7,4,3,2,4,1,8,9,1,1,11,0,3,2,3,4,9,13,8,9,7,3),(3000,'2015-03-10 21:49:29','2015-10-11 16:46:31',1,30000528,20,7,3,5,4,2,20,10,4,10,14,24,31,9,19,13,4,5,2,11,26,4,1,2),(3001,'2015-03-10 21:49:29','2015-10-11 16:46:31',1,30003168,3,4,4,6,0,1,3,3,10,5,4,2,1,3,1,1,1,6,2,0,0,2,2,3),(3002,'2015-03-10 21:49:29','2015-10-11 16:46:31',1,30003643,0,0,1,0,7,3,2,0,4,1,1,3,3,3,0,0,0,3,0,0,0,0,1,2),(3003,'2015-03-10 21:49:29','2015-10-11 16:46:31',1,30005163,0,6,4,3,6,10,0,5,8,4,1,1,0,2,0,1,1,5,0,0,0,5,8,1),(3004,'2015-03-10 21:49:29','2015-10-11 16:46:31',1,30000467,5,4,4,7,13,8,7,3,3,18,15,12,11,18,19,13,6,2,1,2,18,11,8,2),(3005,'2015-03-10 21:49:29','2015-10-11 16:46:31',1,30003684,11,12,44,21,12,14,10,24,13,9,8,11,8,18,20,22,12,16,5,9,12,8,14,13),(3006,'2015-03-10 21:49:29','2015-03-10 21:49:29',1,30000430,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(3007,'2015-03-10 21:49:29','2015-10-11 16:46:31',1,30002842,11,7,2,4,6,7,6,5,7,3,2,4,17,3,11,8,4,1,0,0,8,6,8,2),(3008,'2015-03-10 21:49:29','2015-10-11 16:46:31',1,30002470,28,34,21,39,44,44,43,12,16,51,56,79,69,45,57,54,95,74,10,23,58,242,104,54),(3009,'2015-03-10 21:49:29','2015-03-10 21:49:29',1,30001499,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(3010,'2015-03-10 21:49:29','2015-10-11 16:46:31',1,30001989,133,37,143,43,58,54,38,34,36,48,54,52,62,30,86,93,29,35,160,160,111,37,43,50),(3011,'2015-03-10 21:49:29','2015-10-11 16:46:31',1,30000891,12,12,2,7,10,7,8,12,7,27,25,8,3,15,23,20,23,25,9,9,9,12,15,14),(3012,'2015-03-10 21:49:29','2015-10-11 16:46:31',1,30001526,16,10,0,2,1,1,0,3,1,84,143,47,32,37,36,27,71,40,62,58,48,44,46,48),(3013,'2015-03-10 21:49:29','2015-10-11 16:46:31',1,30004927,13,13,39,30,28,8,6,3,10,10,11,9,9,20,17,8,9,13,7,7,9,23,23,10),(3014,'2015-03-10 21:49:29','2015-10-11 16:46:31',1,30000605,5,6,3,3,6,0,4,4,0,5,7,4,2,2,0,0,0,2,11,9,2,5,21,3),(3015,'2015-03-10 21:49:29','2015-10-11 16:46:31',1,30004203,15,13,16,20,7,9,8,5,4,5,5,5,2,12,5,4,4,4,0,7,28,6,8,14),(3016,'2015-03-10 21:49:29','2015-10-11 16:46:31',1,30002300,3,2,0,0,0,1,0,0,1,0,0,2,2,0,0,0,0,0,0,0,0,0,0,1),(3017,'2015-03-10 21:49:29','2015-10-11 16:46:31',1,30001876,8,2,2,4,0,1,8,2,3,1,3,12,13,1,8,3,13,12,1,1,17,3,4,41),(3018,'2015-03-10 21:49:29','2015-10-11 16:46:31',1,30000968,2,0,2,1,1,0,2,1,0,1,1,9,4,2,4,3,1,1,1,15,2,5,3,1),(3019,'2015-03-10 21:49:29','2015-10-11 16:46:31',1,30001809,10,13,7,8,14,19,8,66,8,8,75,9,4,12,10,7,4,5,2,1,7,4,5,3),(3020,'2015-03-10 21:49:29','2015-10-11 16:46:31',1,30004827,0,0,1,3,4,3,1,1,1,1,0,2,1,1,1,1,0,3,2,1,3,4,0,4),(3021,'2015-03-10 21:49:29','2015-10-11 16:46:31',1,30004003,48,64,13,14,6,17,6,10,15,27,31,32,21,87,28,24,14,13,40,13,14,19,13,19),(3022,'2015-03-10 21:49:29','2015-10-11 16:46:31',1,30004526,12,17,12,7,7,9,9,6,14,22,10,13,25,20,5,9,6,11,8,3,8,5,5,10),(3023,'2015-03-10 21:49:29','2015-10-11 16:46:31',1,30002376,24,6,20,23,18,12,9,21,16,20,19,23,30,60,28,32,35,13,32,8,13,28,33,14),(3024,'2015-03-10 21:49:29','2015-10-11 16:46:31',1,30002435,4,2,4,2,1,2,2,2,2,1,2,5,5,0,4,3,1,4,1,2,2,6,4,0),(3025,'2015-03-10 21:49:29','2015-10-11 16:46:31',1,30000786,70,26,32,14,30,20,43,34,55,18,21,21,9,11,34,27,33,19,8,3,10,5,2,24),(3026,'2015-03-10 21:49:29','2015-10-11 16:46:31',1,30004944,16,9,3,2,4,5,24,10,20,1,0,0,0,3,1,2,3,0,1,0,0,0,0,6),(3027,'2015-03-10 21:49:29','2015-10-11 16:46:31',1,30005179,3,0,0,0,0,0,0,0,2,2,1,0,0,17,3,2,0,1,0,0,0,0,0,1),(3028,'2015-03-10 21:49:29','2015-10-11 16:46:31',1,30001928,14,6,11,8,3,12,8,2,8,11,13,13,12,17,17,16,7,17,15,16,12,13,5,19),(3029,'2015-03-10 21:49:29','2015-10-11 16:46:31',1,30002607,1,1,1,4,4,2,0,4,3,0,0,0,0,0,0,0,0,0,0,0,1,1,6,0),(3030,'2015-03-10 21:49:29','2015-03-10 21:49:29',1,30000354,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(3031,'2015-03-10 21:49:29','2015-10-11 16:46:31',1,30004659,0,0,1,0,2,5,4,0,3,1,4,6,3,10,7,0,3,3,4,2,7,3,3,2),(3032,'2015-03-10 21:49:29','2015-10-11 16:46:31',1,30001560,0,1,1,1,1,1,0,1,0,1,2,0,0,0,1,1,0,2,0,0,0,1,2,2),(3033,'2015-03-10 21:49:29','2015-10-11 16:46:31',1,30001174,5,1,0,3,3,3,2,0,11,5,2,0,0,5,4,4,12,4,4,1,6,3,5,2),(3034,'2015-03-10 21:49:29','2015-10-11 16:46:31',1,30000462,1,0,0,2,10,9,4,4,4,6,6,3,0,6,5,2,4,4,1,4,0,2,3,4),(3035,'2015-03-10 21:49:29','2015-10-11 16:46:31',1,30003255,22,20,33,18,15,12,24,17,8,5,5,7,5,7,8,5,10,1,13,6,9,5,7,18),(3036,'2015-03-10 21:49:29','2015-10-11 16:46:31',1,30041392,28,33,41,43,47,40,34,34,27,36,35,48,42,53,58,47,50,34,19,46,38,40,40,41),(3037,'2015-03-10 21:49:29','2015-10-11 16:46:31',1,30002976,139,78,53,40,47,40,35,35,42,30,34,45,40,38,51,29,49,23,24,63,65,39,31,57),(3038,'2015-03-10 21:49:29','2015-10-11 16:46:31',1,30000029,2,3,8,9,7,10,8,3,4,5,4,1,4,4,4,2,8,4,3,2,7,8,6,2),(3039,'2015-03-10 21:49:29','2015-10-11 16:46:31',1,30002989,69,44,61,62,63,50,47,44,54,43,62,73,64,87,92,104,84,53,40,80,62,81,61,70),(3040,'2015-03-10 21:49:29','2015-10-11 16:46:31',1,30004999,79,48,70,60,73,77,81,52,38,91,107,74,49,78,127,76,101,67,75,36,47,98,69,53),(3041,'2015-03-10 21:49:29','2015-10-11 16:46:31',1,30003519,9,7,20,14,23,21,11,18,12,14,17,15,16,12,5,9,7,8,6,10,26,8,9,6),(3042,'2015-03-10 21:49:29','2015-10-11 16:46:31',1,30003049,15,6,11,38,18,12,18,5,17,23,30,20,20,14,32,18,18,24,6,12,20,12,13,19),(3043,'2015-03-10 21:49:29','2015-10-11 16:46:31',1,30003063,92,63,89,97,80,65,208,83,60,90,106,124,89,111,259,505,167,66,73,181,164,63,61,48),(3044,'2015-03-10 21:49:29','2015-10-11 16:46:31',1,30002722,13,4,4,6,5,4,5,7,11,13,7,9,10,14,26,39,12,1,12,12,12,15,14,14),(3045,'2015-03-10 21:49:29','2015-10-11 16:46:31',1,30002074,290,259,306,380,349,323,286,208,234,378,378,410,313,384,576,526,428,379,170,259,335,470,461,427),(3046,'2015-03-10 21:49:29','2015-10-11 16:46:31',1,30003882,81,80,127,111,114,103,127,55,86,254,240,161,160,184,237,249,175,153,195,155,150,171,178,140),(3047,'2015-03-10 21:49:29','2015-10-11 16:46:31',1,30002540,16,6,3,6,3,2,6,25,6,25,49,27,44,21,46,24,16,19,19,19,17,26,23,19),(3048,'2015-03-10 21:49:29','2015-10-11 16:46:31',1,30001712,17,6,13,4,17,17,14,8,5,11,19,14,16,57,20,18,18,17,14,22,36,23,17,41),(3049,'2015-03-10 21:49:29','2015-10-11 16:46:31',1,30032547,19,10,19,7,7,7,19,7,15,22,18,16,19,18,16,17,21,20,15,11,5,16,12,10),(3050,'2015-03-10 21:49:29','2015-10-11 16:46:31',1,30003579,53,55,76,99,124,114,59,43,71,98,111,82,61,78,73,77,52,37,49,47,74,63,64,57),(3051,'2015-03-10 21:49:29','2015-10-11 16:46:31',1,30000002,200,191,222,195,189,186,173,121,174,236,243,210,210,292,261,286,288,204,135,184,269,268,222,211),(3052,'2015-03-10 21:49:29','2015-10-11 16:46:31',1,30003549,2,0,0,5,4,3,3,11,2,1,1,6,6,3,2,4,0,2,0,2,1,5,6,3),(3053,'2015-03-10 21:49:29','2015-10-11 16:46:31',1,30002065,8,46,47,15,20,17,9,24,10,58,49,17,17,26,27,28,19,17,20,18,40,23,26,18),(3054,'2015-03-10 21:49:29','2015-10-11 16:46:31',1,30005075,7,3,5,6,4,3,9,3,4,11,8,18,17,14,24,13,18,12,1,5,2,8,7,6),(3055,'2015-03-10 21:49:29','2015-10-11 16:46:31',1,30005002,80,64,95,67,80,71,83,63,62,156,175,152,148,143,171,163,141,83,81,115,87,169,160,129),(3056,'2015-03-10 21:49:29','2015-10-11 16:46:31',1,30004159,13,9,11,12,13,10,12,0,3,14,10,8,11,14,9,9,28,6,4,7,18,12,13,14),(3057,'2015-03-10 21:49:29','2015-10-11 16:46:31',1,30003592,16,11,25,23,27,25,24,7,19,28,32,20,24,14,20,20,39,17,9,4,18,24,21,15),(3058,'2015-03-10 21:49:29','2015-10-11 16:46:31',1,30001917,11,6,19,11,14,17,16,14,11,19,16,24,14,35,31,23,23,21,21,23,30,21,23,17),(3059,'2015-03-10 21:49:29','2015-10-11 16:46:31',1,30002161,9,3,1,9,4,4,2,0,1,1,2,5,0,0,2,0,0,0,1,7,16,3,3,1),(3060,'2015-03-10 21:49:29','2015-10-11 16:46:31',1,30000683,22,7,97,4,11,12,22,44,2,7,9,7,11,6,8,13,19,11,9,7,11,15,11,4),(3061,'2015-03-10 21:49:29','2015-10-11 16:46:31',1,30004663,5,5,4,2,4,4,12,5,3,65,96,41,58,479,278,173,190,14,27,354,193,9,13,12),(3062,'2015-03-10 21:49:29','2015-10-11 16:46:31',1,30004541,10,7,5,9,6,3,15,8,5,12,6,8,8,4,11,6,7,11,3,6,5,3,4,15),(3063,'2015-03-10 21:49:29','2015-10-11 16:46:31',1,30001923,17,9,21,23,12,18,13,15,14,24,25,20,20,48,38,53,28,17,8,18,11,17,14,35),(3064,'2015-03-10 21:49:29','2015-03-10 21:49:29',1,30001605,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(3065,'2015-03-10 21:49:29','2015-10-11 16:46:31',1,30004700,19,31,10,11,19,16,11,20,15,21,42,29,21,29,16,20,13,20,3,1,14,15,27,20),(3066,'2015-03-10 21:49:29','2015-10-11 16:46:31',1,30002849,1,3,5,5,6,5,0,0,0,0,0,1,1,0,0,0,0,0,0,0,0,2,1,0),(3067,'2015-03-10 21:49:29','2015-10-11 16:46:31',1,30002932,88,54,79,53,67,60,37,52,50,76,83,49,28,66,93,71,51,29,21,45,47,50,40,57),(3068,'2015-03-10 21:49:29','2015-10-11 16:46:31',1,30005259,3,6,9,0,2,3,2,4,1,19,15,7,6,5,4,6,9,1,2,3,6,3,1,4),(3069,'2015-03-10 21:49:29','2015-10-11 16:46:31',1,30002865,23,22,27,19,19,25,20,8,13,41,36,14,15,30,36,34,20,32,3,6,25,25,38,28),(3070,'2015-03-10 21:49:29','2015-10-11 16:46:31',1,30005233,6,15,6,9,7,12,15,9,3,3,5,14,6,10,13,8,16,11,9,27,11,11,13,8),(3071,'2015-03-10 21:49:29','2015-10-11 16:46:31',1,30003039,187,79,156,149,133,132,136,82,118,177,197,215,179,247,261,209,276,220,162,168,183,195,203,233),(3072,'2015-03-10 21:49:29','2015-10-11 16:46:31',1,30002728,28,30,25,30,29,28,29,19,13,60,42,71,26,38,33,31,27,21,24,14,64,24,25,22),(3073,'2015-03-10 21:49:29','2015-10-11 16:46:31',1,30003409,189,178,218,194,176,177,164,134,147,241,231,182,179,283,271,254,276,189,165,189,233,272,263,185),(3074,'2015-03-10 21:49:29','2015-10-11 16:46:31',1,30005039,164,151,169,203,170,169,172,121,166,250,300,228,200,278,274,318,250,216,175,194,199,273,273,214),(3075,'2015-03-10 21:49:29','2015-10-11 16:46:31',1,30003759,278,57,71,77,88,48,64,34,53,121,119,140,112,316,200,84,165,67,64,145,153,135,204,92),(3076,'2015-03-10 21:49:29','2015-10-11 16:46:31',1,30003172,7,11,6,3,2,4,5,1,19,3,4,12,9,2,9,5,3,4,1,1,1,5,3,4),(3077,'2015-03-10 21:49:29','2015-10-11 16:46:31',1,30004689,13,23,5,6,13,8,16,11,8,19,15,6,2,9,13,9,4,6,1,6,6,13,12,15),(3078,'2015-03-10 21:49:29','2015-03-10 21:49:29',1,30001460,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(3079,'2015-03-10 21:49:29','2015-10-11 16:46:31',1,30001833,20,20,19,21,23,29,28,18,21,161,150,37,39,120,230,219,43,128,46,67,46,45,48,80),(3080,'2015-03-10 21:49:29','2015-10-11 16:46:31',1,30001953,8,3,9,1,4,2,8,3,4,7,6,7,2,1,13,9,8,11,11,7,9,10,7,11),(3081,'2015-03-10 21:49:29','2015-10-11 16:46:31',1,30004505,14,11,8,17,7,10,9,32,10,13,9,18,17,13,37,29,44,14,6,1,5,15,19,8),(3082,'2015-03-10 21:49:29','2015-03-10 21:49:29',1,30001507,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(3083,'2015-03-10 21:49:29','2015-10-11 16:46:31',1,30001587,0,0,0,0,1,2,0,14,0,1,2,0,0,0,0,0,1,1,0,0,0,2,1,0),(3084,'2015-03-10 21:49:29','2015-10-11 16:46:31',1,30001069,7,4,36,37,11,18,34,17,8,39,39,25,19,43,23,27,18,8,7,8,13,71,52,14),(3085,'2015-03-10 21:49:29','2015-10-11 16:46:31',1,30002624,0,1,1,2,2,1,3,0,1,0,1,1,0,1,3,4,4,2,0,0,0,1,1,1),(3086,'2015-03-10 21:49:29','2015-10-11 16:46:31',1,30001337,4,9,10,6,3,3,9,0,5,12,16,19,18,12,13,9,0,14,1,8,8,2,3,5),(3087,'2015-03-10 21:49:29','2015-10-11 16:46:31',1,30003421,11,7,6,6,20,23,3,8,8,12,10,10,11,16,6,10,24,19,4,8,7,9,5,14),(3088,'2015-03-10 21:49:29','2015-10-11 16:46:31',1,30000154,222,196,251,252,233,212,215,157,160,308,287,266,271,389,355,324,446,292,218,348,376,298,299,278),(3089,'2015-03-10 21:49:29','2015-10-11 16:46:31',1,30000020,2,12,5,0,1,3,0,2,1,9,15,5,4,26,4,3,5,3,8,19,11,4,6,2),(3090,'2015-03-10 21:49:29','2015-10-11 16:46:31',1,30005087,16,15,33,7,10,9,13,10,19,22,14,17,21,20,22,17,16,15,6,20,13,11,15,10),(3091,'2015-03-10 21:49:29','2015-10-11 16:46:31',1,30003459,76,70,128,107,104,94,89,67,54,109,114,91,99,159,174,149,165,136,56,89,116,101,106,109),(3092,'2015-03-10 21:49:29','2015-10-11 16:46:31',1,30003025,337,260,287,383,281,229,326,223,235,431,414,464,408,611,522,522,495,414,327,381,451,477,482,455),(3093,'2015-03-10 21:49:29','2015-10-11 16:46:31',1,30005007,24,29,37,25,16,13,40,24,19,48,51,42,43,43,48,55,62,65,25,21,19,47,41,37),(3094,'2015-03-10 21:49:29','2015-10-11 16:46:31',1,30002973,203,176,203,185,195,184,158,118,170,221,229,202,192,262,244,269,292,192,125,167,265,256,220,214),(3095,'2015-03-10 21:49:29','2015-10-11 16:46:31',1,30001400,709,571,485,580,581,515,629,375,409,585,638,579,535,628,732,756,736,670,439,578,578,754,745,580),(3096,'2015-03-10 21:49:29','2015-10-11 16:46:31',1,30001048,34,7,12,5,10,8,7,12,7,23,22,42,39,46,23,28,22,8,12,44,37,14,10,24),(3097,'2015-03-10 21:49:29','2015-10-11 16:46:31',1,30001416,23,16,31,20,26,19,18,52,11,12,12,23,28,20,11,20,27,68,25,19,21,23,23,34),(3098,'2015-03-10 21:49:29','2015-10-11 16:46:31',1,30004630,31,15,24,26,19,14,16,5,18,30,30,35,33,43,28,44,40,18,94,63,45,55,24,24),(3099,'2015-03-10 21:49:29','2015-10-11 16:46:31',1,30000647,13,5,5,7,12,10,5,2,3,16,11,11,11,8,8,4,13,9,10,4,6,5,4,8),(3100,'2015-03-10 21:49:29','2015-10-11 16:46:31',1,30004641,7,0,3,6,5,11,8,0,1,13,11,8,8,3,4,3,5,3,13,2,6,0,1,1),(3101,'2015-03-10 21:49:29','2015-10-11 16:46:31',1,30001038,16,15,25,14,17,32,3,15,7,44,44,33,21,248,68,43,43,33,10,35,47,32,29,25),(3102,'2015-03-10 21:49:29','2015-10-11 16:46:31',1,30002604,0,2,0,1,0,0,0,0,0,0,0,1,0,0,27,5,2,7,0,0,1,0,1,2),(3103,'2015-03-10 21:49:29','2015-10-11 16:46:31',1,30002139,84,22,58,36,27,27,44,32,8,44,62,37,25,34,78,75,31,37,8,56,31,47,47,24),(3104,'2015-03-10 21:49:29','2015-10-11 16:46:31',1,30000599,23,10,34,5,44,10,35,16,6,32,32,35,23,23,39,34,38,6,15,27,19,34,41,12),(3105,'2015-03-10 21:49:29','2015-10-11 16:46:31',1,30000615,59,4,4,11,12,5,9,2,7,9,9,105,66,12,14,7,12,20,12,15,19,20,18,11),(3106,'2015-03-10 21:49:29','2015-10-11 16:46:31',1,30002114,4,1,4,2,0,0,8,3,0,0,0,0,2,1,1,2,0,3,0,0,2,7,4,7),(3107,'2015-03-10 21:49:29','2015-10-11 16:46:31',1,30003973,22,8,2,7,8,5,7,7,6,13,7,2,6,43,14,10,10,10,14,9,19,4,5,8),(3108,'2015-03-10 21:49:29','2015-10-11 16:46:31',1,30001119,16,15,49,37,28,24,20,29,44,9,6,42,8,5,9,11,11,11,0,10,4,2,7,4),(3109,'2015-03-10 21:49:29','2015-10-11 16:46:31',1,30005300,79,62,72,78,56,42,58,50,40,103,104,69,50,113,69,63,66,54,67,82,186,99,81,90),(3110,'2015-03-10 21:49:29','2015-10-11 16:46:31',1,30042547,22,20,37,25,13,14,11,9,14,14,14,23,22,22,23,24,24,15,14,7,20,11,12,12),(3111,'2015-03-10 21:49:29','2015-10-11 16:46:31',1,30004897,25,8,24,23,23,24,31,7,7,31,29,11,15,13,23,35,14,19,8,23,23,16,23,44),(3112,'2015-03-10 21:49:29','2015-10-11 16:46:31',1,30005193,42,72,35,47,41,51,37,30,33,65,68,50,52,71,53,56,71,35,55,42,68,102,72,55),(3113,'2015-03-10 21:49:29','2015-10-11 16:46:31',1,30001687,184,169,203,173,196,189,175,126,150,420,434,485,439,233,339,343,341,245,197,225,278,307,287,243),(3114,'2015-03-10 21:49:29','2015-10-11 16:46:31',1,30003575,14,19,24,35,59,47,22,19,31,24,17,39,28,34,38,33,21,34,21,18,25,40,34,28),(3115,'2015-03-10 21:49:29','2015-10-11 16:46:31',1,30002996,29,13,25,23,43,32,23,18,30,15,20,51,50,33,37,49,22,10,20,32,28,39,32,27),(3116,'2015-03-10 21:49:29','2015-10-11 16:46:31',1,30000533,3,6,8,4,4,4,0,1,2,1,15,3,1,10,8,20,82,6,111,44,14,10,16,0),(3117,'2015-03-10 21:49:29','2015-03-10 21:49:29',1,30000384,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(3118,'2015-03-10 21:49:29','2015-10-11 16:46:31',1,30002294,3,1,3,1,4,3,2,0,1,0,0,4,4,0,31,15,1,1,0,0,0,21,23,1),(3119,'2015-03-10 21:49:29','2015-10-11 16:46:31',1,30000649,11,3,74,12,9,12,8,5,9,8,13,5,5,10,81,45,2,6,1,7,16,5,6,6),(3120,'2015-03-10 21:49:29','2015-10-11 16:46:31',1,30004896,30,11,16,13,8,8,10,4,3,1,1,0,0,5,4,11,6,3,3,3,5,2,2,0),(3121,'2015-03-10 21:49:29','2015-10-11 16:46:31',1,30000704,8,8,18,14,15,15,13,27,15,19,25,14,17,17,80,56,13,7,6,12,35,12,11,10),(3122,'2015-03-10 21:49:29','2015-03-10 21:49:29',1,30001601,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(3123,'2015-03-10 21:49:29','2015-03-10 21:49:29',1,30000397,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(3124,'2015-03-10 21:49:29','2015-10-11 16:46:31',1,30003204,14,10,1,0,3,2,9,0,3,4,7,1,4,1,1,1,1,4,11,11,0,8,12,3),(3125,'2015-03-10 21:49:29','2015-10-11 16:46:31',1,30002493,48,43,42,44,17,17,44,59,32,42,52,33,32,28,9,14,32,28,4,14,17,28,34,24),(3126,'2015-03-10 21:49:29','2015-10-11 16:46:31',1,30004353,11,7,10,7,11,14,6,15,16,4,10,5,9,9,8,8,1,6,5,12,3,8,6,10),(3127,'2015-03-10 21:49:29','2015-10-11 16:46:31',1,30000319,13,4,11,8,8,10,16,1,10,17,17,11,8,16,23,28,25,13,7,3,17,229,68,38),(3128,'2015-03-10 21:49:29','2015-10-11 16:46:31',1,30004885,11,3,0,0,6,7,3,1,3,5,8,8,4,5,11,11,0,3,62,17,18,9,6,6),(3129,'2015-03-10 21:49:29','2015-10-11 16:46:31',1,30004021,8,8,0,4,2,3,6,8,15,0,2,1,2,1,2,4,3,6,3,19,3,2,1,0),(3130,'2015-03-10 21:49:29','2015-10-11 16:46:31',1,30002830,5,10,0,3,8,2,8,1,6,0,0,0,2,0,1,1,3,2,1,2,1,0,3,5),(3131,'2015-03-10 21:49:29','2015-10-11 16:46:31',1,30000300,1,4,7,3,3,3,8,6,4,16,15,17,19,8,16,15,12,12,17,32,8,11,9,9),(3132,'2015-03-10 21:49:29','2015-10-11 16:46:31',1,30003334,17,7,12,5,6,6,14,5,6,18,23,14,8,33,6,4,8,18,1,4,10,9,13,9),(3133,'2015-03-10 21:49:29','2015-10-11 16:46:31',1,30002928,20,26,93,24,16,26,11,30,46,26,33,29,22,44,40,36,23,24,20,27,24,22,17,20),(3134,'2015-03-10 21:49:29','2015-10-11 16:46:31',1,30000466,6,4,3,6,11,7,8,7,3,17,15,11,10,18,18,11,7,2,1,2,18,12,8,2),(3135,'2015-03-10 21:49:29','2015-10-11 16:46:31',1,30001804,9,2,4,1,0,0,4,3,6,0,1,1,1,2,3,1,4,1,0,1,4,3,4,5),(3136,'2015-03-10 21:49:29','2015-10-11 16:46:31',1,30002462,7,12,3,12,8,6,9,7,9,15,55,7,7,12,2,2,3,13,2,8,11,4,3,12),(3137,'2015-03-10 21:49:29','2015-10-11 16:46:31',1,30004747,2,1,1,0,0,1,3,0,2,6,2,2,0,3,8,3,8,8,6,5,12,4,6,7),(3138,'2015-03-10 21:49:29','2015-10-11 16:46:31',1,30004680,3,3,4,12,5,5,5,4,9,6,6,6,6,4,5,4,3,1,1,2,1,5,1,12),(3139,'2015-03-10 21:49:29','2015-10-11 16:46:31',1,30002516,13,29,26,33,23,27,31,22,32,68,67,23,34,54,43,39,24,22,40,35,42,43,32,36),(3140,'2015-03-10 21:49:29','2015-10-11 16:46:31',1,30003432,16,18,13,12,13,10,25,7,9,8,8,5,14,53,19,24,17,12,9,14,17,18,19,6),(3141,'2015-03-10 21:49:29','2015-10-11 16:46:31',1,30004967,226,173,254,223,201,203,209,155,158,265,265,281,220,313,348,318,328,261,195,214,270,287,285,250),(3142,'2015-03-10 21:49:29','2015-10-11 16:46:31',1,30002261,94,91,94,113,110,83,80,68,68,155,158,164,132,175,134,119,146,125,79,99,141,111,87,119),(3143,'2015-03-10 21:49:29','2015-10-11 16:46:31',1,30005316,304,268,334,339,332,293,304,286,226,482,487,474,435,573,544,545,456,373,345,409,468,476,468,413),(3144,'2015-03-10 21:49:29','2015-10-11 16:46:31',1,30002545,416,251,423,338,337,336,320,228,309,478,504,424,389,487,565,552,548,376,342,393,448,516,435,399),(3145,'2015-03-10 21:49:29','2015-10-11 16:46:31',1,30000813,28,12,17,18,18,40,15,9,22,1,4,7,8,2,5,4,3,8,4,0,3,6,5,3),(3146,'2015-03-10 21:49:29','2015-10-11 16:46:31',1,30005106,14,11,52,31,33,29,18,8,6,11,3,7,11,3,23,22,6,3,8,5,10,23,15,6),(3147,'2015-03-10 21:49:29','2015-10-11 16:46:31',1,30004800,20,16,14,7,6,0,5,7,42,17,15,6,33,21,128,12,13,16,1,5,9,30,20,26),(3148,'2015-03-10 21:49:29','2015-10-11 16:46:31',1,30002458,34,21,12,38,24,20,17,13,11,29,66,52,56,38,16,16,33,38,8,23,25,22,26,22),(3149,'2015-03-10 21:49:29','2015-10-11 16:46:31',1,30004705,8,22,22,23,13,13,14,24,13,30,46,25,25,27,20,24,32,31,11,10,24,39,44,24),(3150,'2015-03-10 21:49:29','2015-10-11 16:46:31',1,30002355,50,28,62,36,44,39,63,26,33,105,112,32,39,397,182,307,177,65,32,41,76,91,52,82),(3151,'2015-03-10 21:49:29','2015-10-11 16:46:31',1,30000971,0,2,14,1,3,1,2,4,3,5,4,0,1,6,19,13,16,3,9,3,5,6,10,5),(3152,'2015-03-10 21:49:29','2015-10-11 16:46:31',1,30004364,48,32,65,56,80,78,56,152,77,43,60,43,32,33,78,50,42,40,36,34,32,27,34,39),(3153,'2015-03-10 21:49:29','2015-10-11 16:46:31',1,30001078,4,1,7,3,3,2,8,11,14,14,14,16,14,13,17,27,11,19,2,2,0,11,18,22),(3154,'2015-03-10 21:49:29','2015-10-11 16:46:31',1,30000208,56,69,27,61,59,40,42,11,20,4,13,20,11,13,12,4,10,15,19,35,7,6,6,17),(3155,'2015-03-10 21:49:29','2015-10-11 16:46:31',1,30004823,1,12,5,39,8,10,12,22,1,1,2,2,2,4,37,21,2,3,0,2,3,3,2,1),(3156,'2015-03-10 21:49:29','2015-10-11 16:46:31',1,30002869,13,10,8,26,5,11,5,3,4,16,18,29,20,18,31,23,6,15,2,2,39,25,22,24),(3157,'2015-03-10 21:49:29','2015-10-11 16:46:31',1,30001995,6,19,4,6,5,5,0,1,5,1,1,4,3,1,1,1,5,0,1,1,2,0,5,3),(3158,'2015-03-10 21:49:29','2015-10-11 16:46:31',1,30002601,15,8,2,3,1,0,0,0,0,0,0,6,7,3,50,9,10,33,0,22,2,6,5,4),(3159,'2015-03-10 21:49:29','2015-10-11 16:46:31',1,30004449,1,3,2,0,3,2,5,1,1,0,1,0,0,0,3,0,2,1,0,5,7,4,4,2),(3160,'2015-03-10 21:49:29','2015-10-11 16:46:31',1,30000620,2,1,4,7,3,1,3,1,6,2,2,0,0,2,4,4,3,10,3,3,6,3,1,3),(3161,'2015-03-10 21:49:29','2015-10-11 16:46:31',1,30000922,0,2,1,1,0,1,1,1,2,1,0,2,1,4,1,2,0,1,0,2,3,1,4,1),(3162,'2015-03-10 21:49:29','2015-03-10 21:49:29',1,30001479,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(3163,'2015-03-10 21:49:29','2015-10-11 16:46:31',1,30004356,42,32,29,10,16,19,12,31,33,18,25,27,33,19,24,29,10,14,10,31,12,21,15,17),(3164,'2015-03-10 21:49:30','2015-10-11 16:46:31',1,30004633,9,4,3,1,3,1,2,0,7,1,1,5,6,3,9,7,0,5,5,4,9,6,2,4),(3165,'2015-03-10 21:49:30','2015-10-11 16:46:31',1,30000591,1,5,19,3,4,3,3,11,5,7,4,3,0,39,55,33,5,4,8,11,7,3,14,5),(3166,'2015-03-10 21:49:30','2015-10-11 16:46:31',1,30000639,6,1,20,5,5,9,4,2,11,7,11,9,11,5,104,70,3,4,0,9,9,4,5,5),(3167,'2015-03-10 21:49:30','2015-10-11 16:46:31',1,30002428,27,4,33,18,14,13,8,7,25,20,15,27,9,4,6,8,17,11,8,13,24,8,11,6),(3168,'2015-03-10 21:49:30','2015-10-11 16:46:31',1,30000905,13,22,37,22,22,33,9,3,20,19,17,7,15,45,43,28,22,18,28,48,50,25,31,9),(3169,'2015-03-10 21:49:30','2015-10-11 16:46:31',1,30001032,28,28,44,40,46,45,16,26,19,22,21,18,30,45,60,66,29,44,31,22,34,40,39,28),(3170,'2015-03-10 21:49:30','2015-10-11 16:46:31',1,30004511,17,9,14,8,6,1,16,8,12,9,4,8,8,5,10,8,3,6,1,1,4,2,3,11),(3171,'2015-03-10 21:49:30','2015-10-11 16:46:31',1,30001597,4,8,0,1,2,2,2,0,1,22,24,19,15,26,10,14,15,19,13,5,11,16,6,13),(3172,'2015-03-10 21:49:30','2015-10-11 16:46:31',1,30003200,12,9,2,2,5,3,9,0,4,1,1,1,2,1,1,1,4,8,11,12,1,7,12,2),(3173,'2015-03-10 21:49:30','2015-10-11 16:46:31',1,30000848,373,68,118,132,158,114,59,97,66,147,180,731,468,98,74,81,231,52,38,59,71,92,130,142),(3174,'2015-03-10 21:49:30','2015-10-11 16:46:31',1,30004478,4,6,18,18,6,9,13,11,11,24,15,17,14,4,25,23,25,14,7,21,11,12,12,12),(3175,'2015-03-10 21:49:30','2015-10-11 16:46:31',1,30004881,40,24,49,32,46,40,30,38,37,31,34,26,15,14,22,19,27,9,4,30,28,16,21,31),(3176,'2015-03-10 21:49:30','2015-10-11 16:46:31',1,30005140,20,12,5,1,2,3,0,7,11,0,0,2,2,0,0,1,2,1,0,1,2,3,3,2),(3177,'2015-03-10 21:49:30','2015-10-11 16:46:31',1,30004795,3,3,3,4,6,7,6,7,3,2,2,3,3,3,4,8,0,4,2,9,6,2,1,1),(3178,'2015-03-10 21:49:30','2015-10-11 16:46:31',1,30003665,8,12,9,14,19,14,76,12,10,15,23,12,9,21,9,9,11,4,20,11,21,6,3,12),(3179,'2015-03-10 21:49:30','2015-10-11 16:46:31',1,30002377,4,6,7,6,5,4,6,0,1,3,0,3,3,6,5,2,1,1,0,19,9,7,7,9),(3180,'2015-03-10 21:49:30','2015-10-11 16:46:31',1,30004213,22,2,3,5,8,9,0,1,2,0,3,1,1,1,2,0,0,4,0,0,0,2,5,0),(3181,'2015-03-10 21:49:30','2015-10-11 16:46:31',1,30002603,0,3,0,1,0,0,0,0,0,0,0,2,3,0,3,4,4,13,0,0,0,0,0,1),(3182,'2015-03-10 21:49:30','2015-10-11 16:46:31',1,30000471,9,3,2,2,6,5,9,3,7,32,6,6,6,18,40,33,3,4,1,1,26,14,8,2),(3183,'2015-03-10 21:49:30','2015-10-11 16:46:31',1,30002000,12,11,6,8,7,8,5,2,12,4,5,4,4,3,9,3,4,1,8,10,4,3,5,4),(3184,'2015-03-10 21:49:30','2015-10-11 16:46:31',1,30000953,1,5,1,0,0,0,0,0,1,4,4,2,0,1,0,0,4,1,0,1,1,1,1,1),(3185,'2015-03-10 21:49:30','2015-10-11 16:46:31',1,30002181,17,13,36,28,30,17,42,18,19,32,30,15,12,18,30,22,21,22,71,178,48,18,23,28),(3186,'2015-03-10 21:49:30','2015-10-11 16:46:31',1,30004802,2,0,2,1,2,2,1,1,1,3,0,0,1,1,1,1,3,0,1,2,1,2,3,3),(3187,'2015-03-10 21:49:30','2015-10-11 16:46:31',1,30001747,6,9,12,26,13,8,1,2,3,2,3,0,0,0,5,4,3,4,0,0,0,0,0,2),(3188,'2015-03-10 21:49:30','2015-10-11 16:46:31',1,30004010,4,25,1,6,2,3,2,4,3,9,15,16,9,11,14,9,6,5,5,1,3,11,5,12),(3189,'2015-03-10 21:49:30','2015-10-11 16:46:31',1,30001332,3,7,3,7,2,1,1,6,0,5,3,16,16,4,2,0,3,4,1,4,5,4,1,8),(3190,'2015-03-10 21:49:30','2015-10-11 16:46:31',1,30003284,29,32,126,26,47,43,31,33,17,44,31,42,34,41,37,48,49,23,41,35,43,50,50,42),(3191,'2015-03-10 21:49:30','2015-10-11 16:46:31',1,30004773,1,2,1,1,0,0,1,5,3,11,8,6,3,12,11,9,10,4,2,6,4,4,5,3),(3192,'2015-03-10 21:49:30','2015-10-11 16:46:31',1,30004461,2,5,10,8,2,4,5,4,13,7,2,7,10,3,26,18,21,22,31,12,15,22,14,12),(3193,'2015-03-10 21:49:30','2015-10-11 16:46:31',1,30002852,2,1,1,1,2,0,0,0,5,1,0,2,2,1,0,0,0,4,2,0,1,1,0,0),(3194,'2015-03-10 21:49:30','2015-10-11 16:46:31',1,30000556,3,0,0,2,5,2,2,0,1,6,5,2,2,3,8,5,2,4,4,5,7,5,5,0),(3195,'2015-03-10 21:49:30','2015-10-11 16:46:31',1,30000761,30,3,10,7,6,5,10,8,6,28,16,6,0,3,4,5,6,7,1,12,2,1,17,6),(3196,'2015-03-10 21:49:30','2015-10-11 16:46:31',1,30005153,0,0,1,2,1,1,1,0,0,0,0,0,0,0,1,2,1,2,0,0,0,2,1,1),(3197,'2015-03-10 21:49:30','2015-10-11 16:46:31',1,30001754,5,6,1,23,7,4,10,6,7,1,0,4,6,1,7,9,2,3,0,12,6,3,4,3),(3198,'2015-03-10 21:49:30','2015-10-11 16:46:31',1,30004739,5,6,19,3,12,10,15,11,11,226,373,107,57,185,189,271,179,155,108,172,228,75,36,38),(3199,'2015-03-10 21:49:30','2015-10-11 16:46:31',1,30000633,17,0,12,3,4,5,1,8,0,1,1,7,5,2,36,35,1,8,0,3,1,0,2,3),(3200,'2015-03-10 21:49:30','2015-10-11 16:46:31',1,30005134,4,4,3,4,1,1,1,0,0,9,5,2,2,1,8,10,3,11,4,2,10,3,9,13),(3201,'2015-03-10 21:49:30','2015-10-11 16:46:31',1,30004901,3,3,0,2,5,4,7,1,5,1,1,2,2,2,3,5,0,0,0,3,5,0,2,8),(3202,'2015-03-10 21:49:30','2015-10-11 16:46:31',1,30002374,1,0,0,2,2,1,1,2,4,9,7,2,2,56,79,29,6,5,0,4,2,2,3,2),(3203,'2015-03-10 21:49:30','2015-10-11 16:46:31',1,30000681,5,4,36,6,52,50,6,14,6,19,13,13,16,114,57,25,14,12,4,27,159,6,21,13),(3204,'2015-03-10 21:49:30','2015-03-10 21:49:30',1,30001625,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(3205,'2015-03-10 21:49:30','2015-10-11 16:46:31',1,30000998,20,20,87,25,18,21,25,15,22,21,23,116,69,28,65,222,40,27,14,14,20,120,44,28),(3206,'2015-03-10 21:49:30','2015-10-11 16:46:31',1,30004369,26,8,16,14,20,13,20,15,16,38,42,39,28,26,77,35,10,19,9,15,15,13,9,14),(3207,'2015-03-10 21:49:30','2015-10-11 16:46:31',1,30000272,37,22,10,24,31,34,14,28,25,3,2,6,4,5,4,1,1,2,1,1,1,0,2,3),(3208,'2015-03-10 21:49:30','2015-10-11 16:46:31',1,30004234,5,5,3,1,3,1,8,2,3,22,25,7,7,2,11,15,9,4,0,0,4,11,9,6),(3209,'2015-03-10 21:49:30','2015-10-11 16:46:31',1,30002190,75,37,60,62,61,61,57,39,44,73,71,71,58,57,91,92,70,87,54,48,58,58,69,76),(3210,'2015-03-10 21:49:30','2015-10-11 16:46:31',1,30003558,13,6,7,9,20,16,10,10,10,9,11,23,24,29,15,9,12,14,1,6,8,19,23,19),(3211,'2015-03-10 21:49:30','2015-10-11 16:46:31',1,30003503,1616,1434,1637,1595,1591,1495,1211,826,1064,1844,1941,1903,1662,1875,2214,2162,2028,1660,1337,1461,1773,1987,1904,1621),(3212,'2015-03-10 21:49:30','2015-10-11 16:46:31',1,30005243,165,141,153,172,151,134,160,139,241,222,246,225,212,216,231,194,178,153,113,211,218,265,226,256),(3213,'2015-03-10 21:49:30','2015-10-11 16:46:31',1,30005064,4,20,4,9,2,4,1,4,7,3,2,3,1,3,2,1,4,3,6,6,7,2,3,3),(3214,'2015-03-10 21:49:30','2015-10-11 16:46:31',1,30002570,330,232,318,314,300,250,257,172,218,339,328,345,344,439,407,404,413,301,213,282,327,361,321,275),(3215,'2015-03-10 21:49:30','2015-10-11 16:46:31',1,30000096,2,4,3,2,3,2,1,5,4,20,27,14,11,2,4,5,3,2,1,1,1,5,18,12),(3216,'2015-03-10 21:49:30','2015-10-11 16:46:31',1,30003520,139,108,141,121,116,117,139,75,119,210,173,164,136,170,242,243,184,151,141,143,183,180,173,165),(3217,'2015-03-10 21:49:30','2015-10-11 16:46:31',1,30000104,4,5,1,1,4,5,9,2,1,3,2,14,17,10,6,6,5,6,4,5,5,6,5,5),(3218,'2015-03-10 21:49:30','2015-10-11 16:46:31',1,30000122,70,13,11,13,20,18,17,11,17,35,24,11,17,35,26,23,16,15,11,9,14,18,14,24),(3219,'2015-03-10 21:49:30','2015-10-11 16:46:31',1,30003499,9,7,4,7,10,6,1,5,10,2,6,9,12,10,5,3,3,2,6,8,14,4,6,8),(3220,'2015-03-10 21:49:30','2015-10-11 16:46:31',1,30003546,17,16,35,44,38,41,129,40,22,22,17,23,20,29,28,31,40,24,6,22,7,31,42,34),(3221,'2015-03-10 21:49:30','2015-10-11 16:46:31',1,30000162,25,24,37,21,31,31,38,17,14,25,35,41,63,24,78,60,41,33,25,19,33,100,70,18),(3222,'2015-03-10 21:49:30','2015-10-11 16:46:31',1,30003576,49,36,66,98,182,145,50,56,36,72,84,95,64,90,100,96,88,92,47,46,83,91,90,71),(3223,'2015-03-10 21:49:30','2015-10-11 16:46:31',1,30000047,6,5,8,4,3,4,2,0,8,7,12,16,7,1,6,6,16,10,5,4,7,6,6,9),(3224,'2015-03-10 21:49:30','2015-10-11 16:46:31',1,30005210,39,15,24,54,11,17,52,10,12,28,51,22,33,72,23,31,34,42,19,21,36,56,40,39),(3225,'2015-03-10 21:49:30','2015-10-11 16:46:31',1,30001393,422,368,431,478,438,390,388,369,337,421,439,467,455,514,549,563,572,507,292,323,488,586,549,460),(3226,'2015-03-10 21:49:30','2015-10-11 16:46:31',1,30005235,150,131,161,138,135,121,157,93,89,230,223,219,193,215,244,245,229,198,141,159,202,213,191,209),(3227,'2015-03-10 21:49:30','2015-10-11 16:46:31',1,30003084,4,2,1,15,2,3,4,2,4,17,25,7,15,11,9,11,25,18,1,2,1,9,13,3),(3228,'2015-03-10 21:49:30','2015-10-11 16:46:31',1,30012505,52,54,42,24,43,38,48,49,30,60,65,55,54,49,68,68,51,60,40,41,56,66,60,59),(3229,'2015-03-10 21:49:30','2015-10-11 16:46:31',1,30002242,47,40,69,92,65,73,72,35,37,78,92,101,96,99,94,96,82,44,49,49,75,53,58,57),(3230,'2015-03-10 21:49:30','2015-10-11 16:46:31',1,30003559,63,69,66,94,65,54,61,28,52,66,76,85,118,97,145,105,107,124,94,59,102,75,98,100),(3231,'2015-03-10 21:49:30','2015-10-11 16:46:31',1,30005201,882,634,895,1032,852,822,744,594,671,972,1025,1054,949,1102,1274,1283,1192,926,664,795,967,1088,1063,1035),(3232,'2015-03-10 21:49:30','2015-10-11 16:46:31',1,30005230,164,152,173,159,158,153,153,125,126,232,233,232,191,250,256,262,256,228,153,189,254,275,253,232),(3233,'2015-03-10 21:49:30','2015-10-11 16:46:31',1,30004112,19,6,33,10,22,25,20,17,16,54,52,44,33,21,34,28,23,31,42,29,42,26,27,28),(3234,'2015-03-10 21:49:30','2015-10-11 16:46:31',1,30001658,52,47,96,86,73,67,71,51,60,97,116,114,116,124,130,144,121,104,110,108,135,120,121,112),(3235,'2015-03-10 21:49:30','2015-10-11 16:46:31',1,30002760,68,46,255,55,57,64,40,46,72,77,84,68,48,77,134,97,95,68,96,68,67,92,96,59),(3236,'2015-03-10 21:49:30','2015-10-11 16:46:31',1,30003060,28,24,26,17,30,24,26,30,19,50,37,63,30,44,35,41,49,27,53,18,73,29,39,34),(3237,'2015-03-10 21:49:30','2015-10-11 16:46:31',1,30003855,24,23,14,54,31,43,9,7,14,30,35,11,5,52,29,15,33,24,7,19,10,38,46,19),(3238,'2015-03-10 21:49:30','2015-10-11 16:46:31',1,30001388,222,70,204,90,105,92,89,73,83,95,82,128,85,115,139,127,179,94,74,124,117,95,102,103),(3239,'2015-03-10 21:49:30','2015-10-11 16:46:31',1,30004247,2,0,6,1,1,7,1,4,0,2,4,3,3,0,4,4,0,3,2,4,4,0,3,2),(3240,'2015-03-10 21:49:30','2015-10-11 16:46:31',1,30003024,157,124,119,143,102,94,150,107,102,137,137,172,162,241,190,175,199,162,132,149,155,182,179,173),(3241,'2015-03-10 21:49:30','2015-10-11 16:46:31',1,30002194,54,52,66,100,101,77,50,31,32,49,42,38,25,59,60,55,51,68,39,40,83,60,74,53),(3242,'2015-03-10 21:49:30','2015-10-11 16:46:31',1,30001722,58,63,87,71,44,33,63,62,44,97,128,115,73,113,98,99,107,93,69,74,79,95,95,90),(3243,'2015-03-10 21:49:30','2015-10-11 16:46:31',1,30045318,421,238,272,145,212,201,140,122,126,230,242,112,128,158,197,140,149,151,127,288,175,107,160,135),(3244,'2015-03-10 21:49:30','2015-10-11 16:46:31',1,30005325,84,61,92,92,116,84,76,36,55,81,81,69,76,103,121,138,136,91,103,74,101,114,97,102),(3245,'2015-03-10 21:49:30','2015-10-11 16:46:31',1,30005041,138,122,155,181,138,134,148,94,146,217,262,218,189,251,226,259,211,174,165,170,184,222,233,203),(3246,'2015-03-10 21:49:30','2015-10-11 16:46:31',1,30004235,7,8,3,1,4,10,14,2,2,5,4,8,9,11,10,20,13,6,3,9,4,13,8,9),(3247,'2015-03-10 21:49:30','2015-10-11 16:46:31',1,30003868,4,4,10,8,2,2,6,1,8,15,18,15,12,10,5,3,11,13,8,32,13,7,13,12),(3248,'2015-03-10 21:49:30','2015-10-11 16:46:31',1,30000052,102,78,97,74,68,85,70,61,81,137,149,137,117,118,184,171,116,101,88,82,99,102,82,96),(3249,'2015-03-10 21:49:30','2015-10-11 16:46:31',1,30000202,35,25,47,43,40,35,46,27,47,85,88,73,65,75,48,61,60,81,56,54,45,73,69,46),(3250,'2015-03-10 21:49:30','2015-10-11 16:46:31',1,30003444,11,14,8,16,30,29,19,24,5,37,73,16,9,12,31,32,20,31,5,18,32,20,42,23),(3251,'2015-03-10 21:49:30','2015-10-11 16:46:31',1,30003034,263,149,284,229,188,198,195,147,217,310,353,273,227,361,387,371,323,289,212,227,317,340,334,280),(3252,'2015-03-10 21:49:30','2015-10-11 16:46:31',1,30003396,111,74,81,109,104,112,98,20,63,88,101,91,71,130,112,118,124,88,73,94,104,141,158,81),(3253,'2015-03-10 21:49:30','2015-10-11 16:46:31',1,30001654,88,59,81,79,85,85,78,40,37,95,93,84,68,84,111,101,108,63,45,75,77,71,68,84),(3254,'2015-03-10 21:49:30','2015-10-11 16:46:32',1,30000140,502,316,412,398,408,401,317,269,244,434,471,400,354,529,523,483,501,396,298,285,404,485,497,438),(3255,'2015-03-10 21:49:30','2015-10-11 16:46:32',1,30003835,38,37,70,63,72,71,21,32,54,69,87,65,63,167,81,61,41,52,39,44,46,73,69,69),(3256,'2015-03-10 21:49:30','2015-10-11 16:46:32',1,30002213,22,18,47,15,26,27,10,26,21,39,50,32,49,55,50,55,36,18,16,30,48,37,44,29),(3257,'2015-03-10 21:49:30','2015-10-11 16:46:32',1,30001182,54,9,14,32,26,29,23,9,11,56,75,55,45,51,88,93,90,42,33,56,50,33,34,44),(3258,'2015-03-10 21:49:30','2015-10-11 16:46:32',1,30001832,19,16,18,22,20,24,31,18,34,201,186,33,37,109,357,369,36,104,57,68,86,67,72,81),(3259,'2015-03-10 21:49:30','2015-10-11 16:46:32',1,30001818,3,13,6,15,9,8,2,23,7,12,21,18,1,3,2,2,2,4,1,3,7,3,1,6),(3260,'2015-03-10 21:49:30','2015-10-11 16:46:32',1,30001316,4,12,2,3,3,4,3,0,4,2,1,3,4,2,4,4,1,4,3,4,2,4,5,3),(3261,'2015-03-10 21:49:30','2015-10-11 16:46:32',1,30000209,69,32,48,39,51,34,50,28,33,19,16,21,20,41,22,26,74,37,55,43,15,47,38,24),(3262,'2015-03-10 21:49:30','2015-10-11 16:46:32',1,30000443,5,10,4,7,9,8,16,12,6,23,32,38,26,40,74,41,34,21,11,81,44,32,34,25),(3263,'2015-03-10 21:49:30','2015-10-11 16:46:32',1,30001027,1,1,7,0,0,0,1,0,4,2,3,2,7,2,3,3,0,1,0,3,4,2,2,7),(3264,'2015-03-10 21:49:30','2015-10-11 16:46:32',1,30004398,17,17,17,29,13,21,69,10,8,21,23,13,7,52,21,15,29,59,60,85,51,18,20,29),(3265,'2015-03-10 21:49:30','2015-10-11 16:46:32',1,30002974,209,182,226,181,201,184,167,99,145,219,235,200,204,264,259,283,289,210,131,206,272,262,232,258),(3266,'2015-03-10 21:49:30','2015-10-11 16:46:32',1,30002401,29,20,20,24,31,27,32,17,19,30,52,14,12,32,18,11,24,16,32,16,35,20,17,6),(3267,'2015-03-10 21:49:30','2015-10-11 16:46:32',1,30003403,18,21,17,20,32,32,14,10,14,20,29,19,17,9,30,29,19,28,32,23,14,27,25,17),(3268,'2015-03-10 21:49:30','2015-10-11 16:46:32',1,30002525,267,197,281,197,206,231,216,150,135,250,253,216,197,289,295,310,327,254,172,234,253,289,270,263),(3269,'2015-03-10 21:49:30','2015-10-11 16:46:32',1,30005296,100,65,81,111,81,80,134,72,74,139,117,57,44,166,87,81,82,60,81,98,246,120,94,77),(3270,'2015-03-10 21:49:30','2015-10-11 16:46:32',1,30005238,17,7,28,7,16,28,6,5,10,15,14,7,5,24,21,12,15,15,2,13,15,11,11,4),(3271,'2015-03-10 21:49:30','2015-10-11 16:46:32',1,30002986,112,178,88,137,79,72,22,36,47,97,91,53,59,101,127,93,75,57,70,103,86,96,92,68),(3272,'2015-03-10 21:49:30','2015-10-11 16:46:32',1,30004121,17,10,13,7,7,4,11,4,11,26,35,10,1,13,13,20,25,9,14,7,12,20,12,9),(3273,'2015-03-10 21:49:30','2015-10-11 16:46:32',1,30003853,27,31,46,21,38,33,10,20,26,18,22,20,30,32,12,15,14,12,25,5,21,34,24,23),(3274,'2015-03-10 21:49:30','2015-10-11 16:46:32',1,30005303,454,371,508,468,474,427,377,309,312,473,532,484,417,543,638,600,552,477,424,455,503,613,622,460),(3275,'2015-03-10 21:49:30','2015-10-11 16:46:32',1,30003538,21,42,57,50,57,36,24,72,54,38,35,39,44,33,67,54,46,33,31,29,18,27,36,24),(3276,'2015-03-10 21:49:30','2015-10-11 16:46:32',1,30044971,7,10,14,8,19,18,9,12,15,17,29,39,31,13,19,14,12,19,10,18,17,27,28,23),(3277,'2015-03-10 21:49:30','2015-10-11 16:46:32',1,30000164,95,52,74,112,71,80,38,39,43,48,91,104,86,220,105,284,91,109,46,73,83,139,78,112),(3278,'2015-03-10 21:49:30','2015-10-11 16:46:32',1,30004975,407,237,315,316,265,263,278,195,239,329,310,347,249,442,456,393,416,342,190,367,416,416,393,326),(3279,'2015-03-10 21:49:30','2015-10-11 16:46:32',1,30002637,25,33,43,38,34,35,27,25,35,52,50,44,54,47,48,50,44,35,36,40,56,73,68,42),(3280,'2015-03-10 21:49:30','2015-10-11 16:46:32',1,30003568,1,1,3,10,10,12,5,4,2,7,6,7,6,4,1,1,2,3,1,9,9,4,4,1),(3281,'2015-03-10 21:49:30','2015-10-11 16:46:32',1,30003032,423,281,411,406,357,306,386,292,312,492,478,489,420,669,594,635,553,486,413,427,533,554,556,527),(3282,'2015-03-10 21:49:30','2015-10-11 16:46:32',1,30002299,10,7,5,4,6,9,12,8,8,1,4,5,6,3,3,2,2,2,4,1,2,3,7,3),(3283,'2015-03-10 21:49:30','2015-10-11 16:46:32',1,30004934,4,14,29,16,15,6,15,10,75,23,18,11,15,24,21,15,28,10,4,8,20,26,23,12),(3284,'2015-03-10 21:49:30','2015-10-11 16:46:32',1,30000321,13,9,22,10,22,16,10,5,4,7,15,9,4,12,6,3,4,13,5,9,12,7,7,5),(3285,'2015-03-10 21:49:30','2015-10-11 16:46:32',1,30003712,38,40,86,103,42,37,43,16,40,235,156,99,86,224,169,53,135,49,44,114,67,110,183,118),(3286,'2015-03-10 21:49:30','2015-10-11 16:46:32',1,30003268,33,38,295,71,37,32,71,55,73,98,105,38,40,75,87,67,95,77,107,54,103,128,123,52),(3287,'2015-03-10 21:49:30','2015-10-11 16:46:32',1,30001988,2,6,5,2,3,2,5,9,7,2,2,0,0,1,4,4,0,0,0,0,2,0,0,1),(3288,'2015-03-10 21:49:30','2015-10-11 16:46:32',1,30004113,94,53,66,57,48,51,76,56,42,91,101,77,72,101,105,110,84,70,61,66,106,81,86,99),(3289,'2015-03-10 21:49:30','2015-10-11 16:46:32',1,30003539,4,4,3,0,5,5,11,3,3,11,12,10,7,15,21,22,20,6,1,2,0,2,2,6),(3290,'2015-03-10 21:49:30','2015-10-11 16:46:32',1,30004968,253,197,256,261,249,246,189,136,161,212,227,258,203,320,375,312,338,287,187,198,240,327,282,228),(3291,'2015-03-10 21:49:30','2015-10-11 16:46:32',1,30000046,66,45,47,32,36,30,28,36,20,71,83,83,49,99,63,61,78,70,47,39,55,38,42,60),(3292,'2015-03-10 21:49:30','2015-10-11 16:46:32',1,30002198,87,99,158,127,139,122,114,72,84,146,213,165,170,179,286,212,175,126,114,177,164,256,186,166),(3293,'2015-03-10 21:49:30','2015-10-11 16:46:32',1,30002236,20,9,20,40,33,30,9,12,6,68,185,28,22,28,20,22,55,23,16,17,25,29,33,28),(3294,'2015-03-10 21:49:30','2015-10-11 16:46:32',1,30003001,3,17,8,13,15,7,18,15,15,6,16,16,18,23,28,14,19,20,25,13,13,16,16,12),(3295,'2015-03-10 21:49:30','2015-10-11 16:46:32',1,30000079,19,5,6,16,2,5,6,11,6,14,21,22,14,24,8,5,22,8,12,15,20,4,13,9),(3296,'2015-03-10 21:49:30','2015-10-11 16:46:32',1,30001676,13,8,27,20,24,24,22,10,26,38,33,24,20,34,40,44,54,57,27,20,23,73,63,54),(3297,'2015-03-10 21:49:30','2015-10-11 16:46:32',1,30001691,80,59,84,65,71,62,73,38,86,291,276,358,328,99,142,144,138,99,80,100,102,109,110,89),(3298,'2015-03-10 21:49:30','2015-10-11 16:46:32',1,30002410,5,13,10,13,12,6,8,10,6,50,50,24,27,29,12,5,17,10,32,15,15,5,6,9),(3299,'2015-03-10 21:49:30','2015-10-11 16:46:32',1,30004153,13,9,3,7,5,7,3,2,7,8,9,17,25,6,21,16,20,15,21,14,20,10,14,16),(3300,'2015-03-10 21:49:30','2015-10-11 16:46:32',1,30002732,86,64,85,73,52,60,78,42,68,125,114,88,89,169,167,121,137,112,76,118,101,137,130,99),(3301,'2015-03-10 21:49:30','2015-10-11 16:46:32',1,30002719,64,105,130,89,96,99,85,99,89,83,60,80,71,97,105,123,104,80,98,230,100,102,88,102),(3302,'2015-03-10 21:49:30','2015-10-11 16:46:32',1,30005084,24,24,15,10,16,13,7,18,16,16,16,22,23,21,23,22,21,19,5,12,44,12,13,15),(3303,'2015-03-10 21:49:30','2015-10-11 16:46:32',1,30003563,43,54,63,74,89,58,37,25,36,57,57,80,89,125,107,89,80,71,53,34,88,53,77,73),(3304,'2015-03-10 21:49:30','2015-10-11 16:46:32',1,30005059,59,31,65,48,52,40,37,23,26,80,92,85,71,74,104,89,65,61,42,49,62,48,46,42),(3305,'2015-03-10 21:49:30','2015-10-11 16:46:32',1,30004251,3,13,30,12,29,21,14,8,25,8,15,14,9,4,4,3,7,0,4,5,9,4,2,2),(3306,'2015-03-10 21:49:30','2015-10-11 16:46:32',1,30002665,34,23,18,34,34,36,24,23,17,12,15,25,15,32,33,28,29,36,46,45,37,31,19,23),(3307,'2015-03-10 21:49:30','2015-10-11 16:46:32',1,30003482,87,103,88,103,82,86,83,56,39,74,104,84,90,131,113,100,136,86,82,84,91,130,101,113),(3308,'2015-03-10 21:49:30','2015-10-11 16:46:32',1,30000120,137,44,60,70,79,76,52,26,59,89,71,61,69,86,56,44,67,65,56,43,55,68,67,75),(3309,'2015-03-10 21:49:30','2015-10-11 16:46:32',1,30002255,13,23,15,11,20,28,0,7,5,4,6,7,6,1,6,3,0,4,6,6,2,5,4,5),(3310,'2015-03-10 21:49:30','2015-10-11 16:46:32',1,30005133,6,2,7,3,12,8,9,1,4,6,2,4,7,7,12,17,5,4,2,9,15,24,16,4),(3311,'2015-03-10 21:49:30','2015-10-11 16:46:32',1,30000803,28,8,18,18,7,17,12,10,16,5,4,2,1,10,5,5,10,8,2,2,3,10,17,3),(3312,'2015-03-10 21:49:30','2015-10-11 16:46:32',1,30004899,6,0,0,0,3,2,7,0,3,2,3,1,0,2,3,6,1,1,0,3,5,0,0,9),(3313,'2015-03-10 21:49:30','2015-10-11 16:46:32',1,30000851,1,3,2,4,1,2,3,0,2,7,3,1,2,1,3,2,0,4,0,1,1,3,4,3),(3314,'2015-03-10 21:49:30','2015-10-11 16:46:32',1,30004743,3,1,14,6,5,5,14,7,10,2,2,9,16,32,29,30,8,5,1,11,6,2,2,2),(3315,'2015-03-10 21:49:30','2015-10-11 16:46:32',1,30004064,11,9,17,14,46,16,9,3,15,29,41,44,19,33,26,13,12,14,9,12,20,19,22,9),(3316,'2015-03-10 21:49:30','2015-10-11 16:46:32',1,30004183,14,11,10,24,20,19,20,3,24,35,44,43,40,39,12,28,30,25,2,1,6,30,39,33),(3317,'2015-03-10 21:49:30','2015-10-11 16:46:32',1,30003962,9,16,5,11,7,11,9,13,10,15,22,13,10,18,12,9,18,12,8,12,9,9,9,21),(3318,'2015-03-10 21:49:30','2015-10-11 16:46:32',1,30000529,8,9,22,6,9,7,4,9,3,9,23,13,22,20,48,33,10,33,10,8,9,29,17,40),(3319,'2015-03-10 21:49:30','2015-10-11 16:46:32',1,30000539,1,2,3,1,6,1,4,0,2,2,2,0,0,2,3,3,0,0,0,0,0,1,1,0),(3320,'2015-03-10 21:49:30','2015-10-11 16:46:32',1,30001913,10,4,14,23,9,11,16,5,4,9,18,24,19,43,26,21,18,27,15,32,40,7,13,9),(3321,'2015-03-10 21:49:30','2015-10-11 16:46:32',1,30004913,16,43,34,4,15,12,14,3,5,29,17,8,6,16,60,51,12,47,17,29,3,7,11,10),(3322,'2015-03-10 21:49:30','2015-10-11 16:46:32',1,30000580,24,36,18,35,25,16,14,9,19,45,32,42,30,33,58,50,40,30,37,53,53,116,129,31),(3323,'2015-03-10 21:49:30','2015-10-11 16:46:32',1,30004618,6,13,25,22,12,19,24,7,1,0,0,1,2,7,8,7,12,13,2,5,10,3,1,2),(3324,'2015-03-10 21:49:30','2015-10-11 16:46:32',1,30002840,20,11,10,11,23,29,10,6,17,8,10,14,20,31,20,13,4,7,2,1,15,11,11,13),(3325,'2015-03-10 21:49:30','2015-10-11 16:46:32',1,30000270,21,39,8,29,38,48,16,23,31,6,7,7,5,13,9,0,1,4,1,2,1,1,2,1),(3326,'2015-03-10 21:49:30','2015-10-11 16:46:32',1,30004765,5,2,14,0,1,0,1,1,13,8,10,4,2,7,4,4,1,3,2,1,3,6,1,2),(3327,'2015-03-10 21:49:30','2015-10-11 16:46:32',1,30002359,29,8,14,22,17,6,9,3,6,2,3,0,3,1,9,17,1,3,2,3,3,0,0,2),(3328,'2015-03-10 21:49:30','2015-10-11 16:46:32',1,30004223,2,8,0,2,6,6,2,1,6,0,0,3,2,0,5,1,2,1,1,2,2,4,5,25),(3329,'2015-03-10 21:49:30','2015-10-11 16:46:32',1,30003828,82,73,262,53,51,63,48,70,34,124,118,59,54,244,95,101,48,54,97,107,205,147,129,63),(3330,'2015-03-10 21:49:30','2015-10-11 16:46:32',1,30000801,9,2,11,0,4,10,1,6,1,5,3,2,2,2,2,2,3,1,0,0,1,0,0,2),(3331,'2015-03-10 21:49:30','2015-10-11 16:46:32',1,30004136,36,22,21,11,15,20,19,7,10,62,54,17,7,35,20,33,44,27,12,8,27,28,18,27),(3332,'2015-03-10 21:49:30','2015-10-11 16:46:32',1,30001720,10,7,1,3,0,0,1,1,3,8,6,6,2,4,21,19,14,2,7,7,5,11,10,4),(3333,'2015-03-10 21:49:30','2015-10-11 16:46:32',1,30000042,0,1,1,2,0,2,0,2,1,0,1,4,7,7,6,1,5,3,16,7,4,1,2,3),(3334,'2015-03-10 21:49:30','2015-10-11 16:46:32',1,30000031,18,14,43,51,45,28,27,21,17,41,43,40,39,30,37,31,38,34,35,61,39,42,31,23),(3335,'2015-03-10 21:49:30','2015-10-11 16:46:32',1,30003876,187,145,229,196,172,159,160,182,226,260,268,282,289,284,310,282,229,210,152,187,227,269,249,169),(3336,'2015-03-10 21:49:30','2015-10-11 16:46:32',1,30003814,8,3,1,1,8,9,3,5,4,3,4,3,5,10,12,6,8,17,2,3,1,5,4,1),(3337,'2015-03-10 21:49:30','2015-10-11 16:46:32',1,30003881,175,134,213,187,158,152,140,165,212,249,284,239,220,252,280,257,215,184,129,174,214,228,200,159),(3338,'2015-03-10 21:49:30','2015-10-11 16:46:32',1,30005037,178,128,130,118,169,167,131,106,133,145,144,107,83,163,197,195,175,126,99,148,147,145,153,151),(3339,'2015-03-10 21:49:30','2015-10-11 16:46:32',1,30003061,24,16,15,12,17,16,20,14,10,28,23,14,19,19,15,23,43,21,18,12,61,21,20,25),(3340,'2015-03-10 21:49:30','2015-10-11 16:46:32',1,30003011,10,23,8,19,19,28,15,14,18,23,41,36,31,28,27,36,45,39,21,20,24,29,26,26),(3341,'2015-03-10 21:49:30','2015-10-11 16:46:32',1,30003893,2,8,4,6,5,3,5,10,2,7,8,7,6,3,9,7,7,11,4,10,6,11,8,5),(3342,'2015-03-10 21:49:30','2015-10-11 16:46:32',1,30001554,7,6,3,2,2,3,3,11,4,7,7,9,6,9,1,3,9,21,3,3,16,12,11,12),(3343,'2015-03-10 21:49:30','2015-10-11 16:46:32',1,30003443,79,62,74,68,64,64,39,47,54,57,59,76,63,53,94,76,82,59,69,64,64,44,37,78),(3344,'2015-03-10 21:49:30','2015-10-11 16:46:32',1,30003021,12,16,14,16,13,16,12,12,24,35,34,28,26,33,28,32,22,26,12,15,29,23,23,29),(3345,'2015-03-10 21:49:30','2015-10-11 16:46:32',1,30002819,42,30,46,63,52,62,41,26,31,31,36,48,37,61,66,61,51,39,38,42,49,48,51,48),(3346,'2015-03-10 21:49:30','2015-10-11 16:46:32',1,30002257,62,49,49,68,90,90,49,43,40,48,58,86,87,88,69,73,81,65,66,55,69,72,67,67),(3347,'2015-03-10 21:49:30','2015-10-11 16:46:32',1,30001715,13,33,13,24,27,26,25,12,22,34,32,30,28,27,41,52,38,27,11,15,36,43,46,40),(3348,'2015-03-10 21:49:30','2015-10-11 16:46:32',1,30005263,27,10,9,10,19,19,31,5,4,2,7,4,4,6,5,6,4,6,2,5,2,7,2,6),(3349,'2015-03-10 21:49:30','2015-10-11 16:46:32',1,30004702,17,22,20,20,19,11,9,25,20,20,34,13,15,38,12,13,22,13,2,2,3,5,29,10),(3350,'2015-03-10 21:49:30','2015-10-11 16:46:32',1,30003699,58,24,38,69,56,54,42,20,23,10,29,32,95,140,40,23,41,4,18,14,17,24,18,15),(3351,'2015-03-10 21:49:30','2015-10-11 16:46:32',1,30002035,20,17,82,100,54,47,117,10,13,23,28,8,5,23,12,8,16,11,9,12,7,11,10,10),(3352,'2015-03-10 21:49:30','2015-10-11 16:46:32',1,30000280,10,20,16,14,28,19,25,15,8,1,2,4,2,6,3,2,13,27,0,3,4,5,5,5),(3353,'2015-03-10 21:49:30','2015-10-11 16:46:32',1,30001278,71,53,29,19,28,37,26,46,68,30,38,47,51,44,48,44,58,85,39,13,28,34,35,67),(3354,'2015-03-10 21:49:30','2015-10-11 16:46:32',1,30002421,39,17,45,32,28,20,47,21,31,32,20,29,24,30,27,26,26,45,16,27,59,34,18,16),(3355,'2015-03-10 21:49:30','2015-10-11 16:46:32',1,30005155,3,0,1,2,6,6,1,2,0,0,4,2,4,1,4,3,1,0,1,0,1,1,1,1),(3356,'2015-03-10 21:49:30','2015-10-11 16:46:32',1,30004861,0,1,0,0,1,2,2,0,1,2,2,1,1,6,1,2,1,0,0,1,2,2,3,2),(3357,'2015-03-10 21:49:30','2015-10-11 16:46:32',1,30003153,21,11,14,23,25,13,50,11,32,24,19,9,12,23,33,26,29,24,28,29,15,70,49,56),(3358,'2015-03-10 21:49:30','2015-10-11 16:46:32',1,30000774,28,19,79,34,11,12,52,12,5,24,57,22,11,10,72,62,63,14,104,33,44,106,77,22),(3359,'2015-03-10 21:49:30','2015-10-11 16:46:32',1,30000864,135,70,165,120,109,97,95,80,75,157,290,374,193,185,91,89,142,57,46,65,69,63,120,172),(3360,'2015-03-10 21:49:30','2015-10-11 16:46:32',1,30004464,4,11,20,22,8,14,7,8,11,25,17,15,15,5,26,24,27,14,10,19,12,15,13,12),(3361,'2015-03-10 21:49:30','2015-10-11 16:46:32',1,30004519,1,3,21,3,3,2,5,5,5,0,2,0,1,4,3,2,1,2,0,0,0,1,1,0),(3362,'2015-03-10 21:49:30','2015-10-11 16:46:32',1,30002028,15,7,4,5,2,2,15,9,1,3,4,0,0,0,4,2,0,3,0,0,2,3,1,2),(3363,'2015-03-10 21:49:30','2015-10-11 16:46:32',1,30003197,5,3,1,0,5,3,5,0,3,3,1,1,2,1,0,2,3,3,2,1,1,5,3,2),(3364,'2015-03-10 21:49:30','2015-10-11 16:46:32',1,30005189,19,2,20,5,8,7,165,3,1,3,5,9,4,11,11,3,1,1,2,2,9,21,20,7),(3365,'2015-03-10 21:49:30','2015-10-11 16:46:32',1,30003056,8,12,22,14,9,8,5,3,10,24,28,12,10,13,26,23,11,10,6,11,11,13,11,11),(3366,'2015-03-10 21:49:30','2015-10-11 16:46:32',1,30005299,31,16,19,17,28,25,32,25,23,45,44,20,23,40,36,27,37,24,26,16,83,33,33,12),(3367,'2015-03-10 21:49:30','2015-10-11 16:46:32',1,30004129,78,55,73,83,66,61,42,56,70,67,94,67,53,80,90,78,45,54,50,66,74,84,79,81),(3368,'2015-03-10 21:49:30','2015-10-11 16:46:32',1,30002206,107,85,105,97,111,113,67,41,73,94,90,79,97,121,145,126,101,92,50,94,95,160,148,91),(3369,'2015-03-10 21:49:30','2015-10-11 16:46:32',1,30005295,118,62,101,120,78,87,132,66,67,158,109,67,41,152,83,94,120,63,47,81,181,135,108,86),(3370,'2015-03-10 21:49:30','2015-10-11 16:46:32',1,30004092,74,63,79,75,86,79,58,59,45,79,96,99,91,157,114,97,103,59,58,66,99,92,95,84),(3371,'2015-03-10 21:49:30','2015-10-11 16:46:32',1,30003526,159,134,166,191,156,159,237,91,92,150,174,154,143,198,188,183,212,133,110,132,157,240,211,157),(3372,'2015-03-10 21:49:30','2015-10-11 16:46:32',1,30045334,93,52,282,51,60,75,62,59,85,90,115,103,91,114,171,129,110,124,122,79,92,117,118,62),(3373,'2015-03-10 21:49:30','2015-10-11 16:46:32',1,30002394,27,28,32,28,26,18,25,13,19,32,23,34,30,38,39,38,30,48,49,47,45,30,28,38),(3374,'2015-03-10 21:49:30','2015-10-11 16:46:32',1,30002780,223,196,203,191,206,200,180,137,135,320,334,276,253,257,288,276,299,242,123,156,250,233,241,210),(3375,'2015-03-10 21:49:30','2015-10-11 16:46:32',1,30001213,43,10,13,25,14,7,14,19,38,182,119,76,62,80,86,136,155,33,61,104,191,59,53,36),(3376,'2015-03-10 21:49:30','2015-10-11 16:46:32',1,30003755,48,21,25,35,30,19,30,13,22,68,66,62,41,87,54,40,195,40,33,88,53,97,86,74),(3377,'2015-03-10 21:49:30','2015-10-11 16:46:32',1,30004966,5,16,12,7,8,4,16,28,13,15,13,10,7,9,9,21,9,9,5,3,12,14,7,14),(3378,'2015-03-10 21:49:30','2015-10-11 16:46:32',1,30000546,28,5,39,7,38,5,32,5,2,25,18,12,3,26,12,5,35,10,24,16,8,16,16,1),(3379,'2015-03-10 21:49:30','2015-10-11 16:46:32',1,30002913,45,44,161,88,46,45,47,42,49,73,74,51,49,82,120,104,92,34,145,148,60,65,65,53),(3380,'2015-03-10 21:49:30','2015-10-11 16:46:32',1,30003318,3,0,1,0,0,0,2,2,0,3,3,0,1,1,2,2,0,1,2,0,2,2,3,3),(3381,'2015-03-10 21:49:30','2015-10-11 16:46:32',1,30000232,34,58,22,42,39,70,59,39,30,3,2,4,8,5,11,24,17,17,19,2,15,10,14,7),(3382,'2015-03-10 21:49:30','2015-10-11 16:46:32',1,30001202,7,8,7,13,7,9,17,7,3,23,33,18,22,152,29,21,26,20,55,87,53,33,38,45),(3383,'2015-03-10 21:49:30','2015-10-11 16:46:32',1,30003022,15,18,18,12,19,27,12,14,18,27,21,17,24,25,20,19,19,11,26,38,37,18,23,32),(3384,'2015-03-10 21:49:30','2015-10-11 16:46:32',1,30003075,81,26,43,33,35,31,26,36,29,92,73,68,71,70,85,65,57,68,33,46,68,67,65,80),(3385,'2015-03-10 21:49:30','2015-10-11 16:46:32',1,30002940,36,16,26,11,14,10,17,14,40,23,25,26,24,28,21,19,23,12,2,11,26,23,19,34),(3386,'2015-03-10 21:49:30','2015-10-11 16:46:32',1,30003185,4,2,7,2,1,5,2,1,8,7,3,8,7,2,9,6,7,6,4,4,5,3,4,5),(3387,'2015-03-10 21:49:30','2015-10-11 16:46:32',1,30003659,46,18,20,27,46,34,84,19,26,11,18,13,14,20,14,12,18,9,9,11,2,14,9,15),(3388,'2015-03-10 21:49:30','2015-03-10 21:49:30',1,30000405,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(3389,'2015-03-10 21:49:30','2015-10-11 16:46:32',1,30001309,32,6,27,14,26,17,15,16,13,36,39,38,39,35,101,41,14,27,21,26,38,15,15,16),(3390,'2015-03-10 21:49:30','2015-10-11 16:46:32',1,30000236,4,9,2,6,4,1,8,8,4,0,0,1,1,1,1,2,3,0,1,0,2,2,2,4),(3391,'2015-03-10 21:49:30','2015-10-11 16:46:32',1,30000915,4,13,11,3,5,4,3,5,10,5,7,6,6,5,6,6,0,5,8,7,10,9,13,1),(3392,'2015-03-10 21:49:30','2015-10-11 16:46:32',1,30002612,6,2,3,6,7,2,5,0,0,2,4,6,7,8,48,8,8,12,4,12,6,5,4,12),(3393,'2015-03-10 21:49:30','2015-10-11 16:46:32',1,30001209,42,64,52,49,33,29,21,35,37,26,23,36,31,65,65,67,49,31,32,37,44,37,46,16),(3394,'2015-03-10 21:49:30','2015-10-11 16:46:32',1,30004762,4,9,66,3,3,0,3,2,3,9,4,15,36,36,128,10,11,38,3,6,12,13,16,9),(3395,'2015-03-10 21:49:30','2015-03-10 21:49:30',1,30000401,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(3396,'2015-03-10 21:49:30','2015-10-11 16:46:32',1,30002583,41,11,12,26,8,6,21,13,37,20,16,11,12,58,13,43,37,20,13,26,181,12,19,12),(3397,'2015-03-10 21:49:30','2015-10-11 16:46:32',1,30000904,9,9,21,17,19,15,8,3,8,8,8,10,8,14,24,23,17,12,11,4,31,15,18,11),(3398,'2015-03-10 21:49:30','2015-03-10 21:49:30',1,30000348,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(3399,'2015-03-10 21:49:30','2015-10-11 16:46:32',1,30000862,97,19,113,37,30,36,28,10,37,78,96,208,116,43,62,68,35,27,10,41,33,46,50,25),(3400,'2015-03-10 21:49:30','2015-03-10 21:49:30',1,30001489,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(3401,'2015-03-10 21:49:30','2015-10-11 16:46:32',1,30001974,11,5,0,10,5,6,4,5,6,1,0,2,3,1,4,6,8,1,1,1,6,7,1,1),(3402,'2015-03-10 21:49:30','2015-10-11 16:46:32',1,30001060,4,5,2,10,3,1,3,4,3,28,14,37,22,5,9,5,8,2,0,0,2,21,20,9),(3403,'2015-03-10 21:49:30','2015-10-11 16:46:32',1,30002492,4,4,2,6,3,4,6,0,3,2,0,7,5,8,0,0,1,2,3,0,1,0,7,1),(3404,'2015-03-10 21:49:30','2015-10-11 16:46:32',1,30000215,20,51,34,38,37,20,31,24,28,21,22,26,21,24,30,37,34,29,30,17,19,34,37,37),(3405,'2015-03-10 21:49:30','2015-10-11 16:46:32',1,30001827,6,15,8,13,22,11,14,3,10,2,4,10,7,0,13,12,5,5,0,3,3,5,8,0),(3406,'2015-03-10 21:49:30','2015-10-11 16:46:32',1,30002820,4,4,5,5,6,4,8,3,4,24,22,8,13,11,7,10,6,7,0,0,11,19,15,5),(3407,'2015-03-10 21:49:30','2015-10-11 16:46:32',1,30004011,20,21,0,9,9,13,4,8,6,6,19,16,16,12,9,13,20,29,6,7,8,9,9,5),(3408,'2015-03-10 21:49:30','2015-10-11 16:46:32',1,30000824,0,2,10,0,2,7,2,0,5,3,1,3,3,5,3,3,5,22,0,9,2,10,7,3),(3409,'2015-03-10 21:49:30','2015-10-11 16:46:32',1,30001549,2,6,13,1,7,8,4,3,1,3,7,8,4,10,2,2,20,26,5,7,15,8,8,13),(3410,'2015-03-10 21:49:30','2015-10-11 16:46:32',1,30001267,31,9,11,14,15,11,11,8,15,115,36,25,26,18,24,201,182,14,9,35,68,21,128,30),(3411,'2015-03-10 21:49:30','2015-10-11 16:46:32',1,30000999,20,22,75,52,33,40,32,26,22,49,62,139,96,31,149,286,63,49,18,24,36,81,63,60),(3412,'2015-03-10 21:49:30','2015-10-11 16:46:32',1,30003763,22,30,28,58,33,34,36,18,29,38,52,42,36,39,67,84,67,40,19,35,38,24,30,27),(3413,'2015-03-10 21:49:30','2015-10-11 16:46:32',1,30002341,0,1,1,1,0,0,0,0,0,2,0,0,0,0,0,0,0,0,0,2,1,0,0,0),(3414,'2015-03-10 21:49:30','2015-10-11 16:46:32',1,30002918,21,7,16,5,14,10,7,9,5,26,33,46,35,23,27,14,18,21,12,9,18,10,11,44),(3415,'2015-03-10 21:49:30','2015-10-11 16:46:32',1,30001062,5,6,2,11,4,0,14,7,4,30,17,47,32,12,11,5,28,8,0,0,5,15,14,20),(3416,'2015-03-10 21:49:30','2015-10-11 16:46:32',1,30002309,7,7,9,1,4,6,7,2,2,6,2,3,2,6,5,8,2,1,2,17,1,7,5,1),(3417,'2015-03-10 21:49:30','2015-10-11 16:46:32',1,30001302,5,19,9,12,4,5,8,9,7,12,20,11,5,24,65,33,6,10,9,7,19,15,9,13),(3418,'2015-03-10 21:49:30','2015-10-11 16:46:32',1,30004580,0,0,0,0,2,2,1,0,1,0,0,2,0,0,0,1,0,0,0,2,1,2,1,3),(3419,'2015-03-10 21:49:30','2015-10-11 16:46:32',1,30002945,15,5,3,10,6,5,60,28,38,7,7,6,2,7,10,13,21,8,12,17,4,5,6,7),(3420,'2015-03-10 21:49:30','2015-10-11 16:46:32',1,30000669,30,26,242,32,63,59,40,28,44,40,46,45,35,39,66,45,57,19,10,47,105,73,47,56),(3421,'2015-03-10 21:49:30','2015-10-11 16:46:32',1,30001277,136,82,59,45,63,70,48,53,85,53,74,74,90,105,114,120,153,129,43,42,85,82,121,113),(3422,'2015-03-10 21:49:30','2015-10-11 16:46:32',1,30001280,31,42,17,25,58,57,19,8,12,39,57,80,72,36,73,89,36,11,20,53,126,17,22,19),(3423,'2015-03-10 21:49:30','2015-10-11 16:46:32',1,30001126,7,5,21,13,23,14,17,17,26,34,27,37,19,24,12,12,10,14,2,7,13,17,16,25),(3424,'2015-03-10 21:49:30','2015-10-11 16:46:32',1,30000811,17,13,8,18,24,10,6,4,6,24,32,11,6,0,0,0,0,0,1,0,0,1,1,1),(3425,'2015-03-10 21:49:30','2015-10-11 16:46:32',1,30000841,7,5,3,5,4,8,3,7,8,2,3,4,4,6,6,6,12,16,12,1,8,6,7,4),(3426,'2015-03-10 21:49:30','2015-10-11 16:46:32',1,30004783,0,9,0,0,1,2,1,2,1,1,0,0,0,1,0,2,3,5,5,0,3,10,12,17),(3427,'2015-03-10 21:49:30','2015-10-11 16:46:32',1,30003767,33,61,57,30,36,31,21,21,23,39,46,89,74,60,101,111,59,42,15,35,79,45,47,52),(3428,'2015-03-10 21:49:30','2015-10-11 16:46:32',1,30002258,61,49,53,71,94,92,40,44,42,61,65,95,91,99,68,72,80,68,59,53,65,75,70,71),(3429,'2015-03-10 21:49:30','2015-10-11 16:46:32',1,30002995,40,22,33,33,26,36,28,21,38,26,27,28,36,34,41,40,46,20,34,54,49,39,36,25),(3430,'2015-03-10 21:49:30','2015-10-11 16:46:32',1,30001651,126,107,118,114,109,118,108,83,85,136,157,125,108,131,163,172,159,86,83,80,114,116,109,146),(3431,'2015-03-10 21:49:30','2015-10-11 16:46:32',1,30001702,26,29,23,24,29,19,22,24,22,42,40,44,39,50,24,22,21,36,37,51,43,19,30,54),(3432,'2015-03-10 21:49:30','2015-10-11 16:46:32',1,30004300,6,5,9,2,6,10,5,16,9,8,11,7,5,13,25,20,16,12,6,19,11,23,26,14),(3433,'2015-03-10 21:49:30','2015-10-11 16:46:32',1,30002807,208,147,178,169,197,175,171,115,147,267,297,162,119,414,305,311,292,235,261,214,271,388,346,228),(3434,'2015-03-10 21:49:30','2015-10-11 16:46:32',1,30003475,27,12,20,26,15,19,11,24,26,32,36,24,28,60,37,42,35,36,25,33,30,36,72,62),(3435,'2015-03-10 21:49:30','2015-10-11 16:46:32',1,30005069,29,19,32,24,24,32,44,10,22,56,42,50,32,120,54,55,36,41,17,32,29,50,49,32),(3436,'2015-03-10 21:49:30','2015-10-11 16:46:32',1,30003922,16,15,20,13,12,18,12,9,14,37,23,8,10,25,8,14,21,23,5,27,52,19,19,10),(3437,'2015-03-10 21:49:30','2015-10-11 16:46:32',1,30005045,107,58,101,75,66,65,94,27,66,152,136,98,85,174,145,141,142,110,105,127,158,132,132,103),(3438,'2015-03-10 21:49:30','2015-10-11 16:46:32',1,30005242,29,18,52,13,23,18,35,8,11,17,32,21,12,22,19,34,32,28,42,15,36,25,16,27),(3439,'2015-03-10 21:49:30','2015-10-11 16:46:32',1,30000072,33,138,55,66,52,65,12,23,41,78,73,27,38,137,61,82,38,27,24,37,97,112,89,58),(3440,'2015-03-10 21:49:30','2015-10-11 16:46:32',1,30002988,140,185,134,171,96,85,47,56,43,110,122,66,68,128,152,141,110,65,95,130,106,110,95,86),(3441,'2015-03-10 21:49:30','2015-10-11 16:46:32',1,30003936,5,45,20,15,8,14,15,14,17,14,26,10,15,34,14,13,28,11,11,35,52,24,27,14),(3442,'2015-03-10 21:49:30','2015-10-11 16:46:32',1,30005043,204,172,239,227,203,175,167,180,262,264,270,261,272,289,319,297,258,234,159,202,239,288,255,192),(3443,'2015-03-10 21:49:30','2015-10-11 16:46:32',1,30003496,24,148,33,33,15,23,34,28,20,30,33,32,26,50,52,45,45,29,29,24,27,30,40,40),(3444,'2015-03-10 21:49:30','2015-10-11 16:46:32',1,30002068,416,381,393,446,482,455,369,294,319,504,521,494,414,503,704,692,530,500,381,433,552,736,654,608),(3445,'2015-03-10 21:49:30','2015-10-11 16:46:32',1,30004280,38,42,63,59,48,48,41,45,52,72,82,119,100,76,169,247,132,114,49,42,70,119,91,72),(3446,'2015-03-10 21:49:30','2015-10-11 16:46:32',1,30002262,18,14,15,31,38,16,10,13,18,33,40,25,24,22,28,23,34,15,9,10,21,27,18,19),(3447,'2015-03-10 21:49:30','2015-10-11 16:46:32',1,30001445,274,94,141,166,158,98,107,57,121,170,158,215,245,120,168,184,294,188,103,113,130,132,125,135),(3448,'2015-03-10 21:49:30','2015-10-11 16:46:32',1,30003534,3,5,7,3,2,0,5,1,10,1,4,5,4,10,5,7,6,2,3,6,4,13,6,11),(3449,'2015-03-10 21:49:30','2015-10-11 16:46:32',1,30003923,50,19,33,25,19,18,24,37,22,27,26,41,27,40,26,18,23,17,6,21,39,22,32,11),(3450,'2015-03-10 21:49:30','2015-10-11 16:46:32',1,30001413,45,25,41,32,59,48,18,21,20,49,57,54,74,27,31,34,34,31,12,26,36,21,22,39),(3451,'2015-03-10 21:49:30','2015-10-11 16:46:32',1,30001438,117,46,47,33,67,59,55,23,31,51,45,54,52,47,39,57,50,34,48,54,37,34,34,60),(3452,'2015-03-10 21:49:30','2015-10-11 16:46:32',1,30002202,35,25,36,29,13,16,13,20,31,35,51,46,59,45,50,46,51,62,37,30,48,81,56,42),(3453,'2015-03-10 21:49:30','2015-10-11 16:46:32',1,30005207,20,14,14,3,4,7,9,15,12,4,6,11,15,11,16,18,14,11,27,4,19,31,39,4),(3454,'2015-03-10 21:49:30','2015-10-11 16:46:32',1,30005054,127,84,178,142,141,123,109,113,159,184,215,164,178,204,210,188,178,162,129,159,204,180,162,121),(3455,'2015-03-10 21:49:30','2015-10-11 16:46:32',1,30001683,16,8,36,24,22,13,3,9,14,30,22,36,48,125,44,55,32,57,21,23,12,26,20,15),(3456,'2015-03-10 21:49:30','2015-10-11 16:46:32',1,30005289,162,276,134,159,142,121,123,143,185,226,250,191,173,185,193,172,149,113,111,197,219,206,198,200),(3457,'2015-03-10 21:49:30','2015-10-11 16:46:32',1,30002671,89,89,134,113,103,117,84,52,91,142,117,142,119,149,203,146,142,110,85,84,135,140,141,135),(3458,'2015-03-10 21:49:30','2015-10-11 16:46:32',1,30000016,5,2,0,1,2,4,2,6,2,6,4,4,0,1,3,1,8,1,5,7,1,4,3,0),(3459,'2015-03-10 21:49:30','2015-10-11 16:46:32',1,30000465,1,9,6,26,9,6,2,8,3,3,4,1,1,2,7,2,7,0,2,1,3,0,2,4),(3460,'2015-03-10 21:49:30','2015-10-11 16:46:32',1,30001063,4,4,7,2,2,6,5,5,3,4,2,4,9,5,6,8,28,8,1,0,0,3,2,7),(3461,'2015-03-10 21:49:30','2015-10-11 16:46:32',1,30002433,40,26,35,46,30,30,30,41,35,20,10,37,26,12,20,17,31,24,9,20,35,12,8,15),(3462,'2015-03-10 21:49:30','2015-10-11 16:46:32',1,30001117,22,18,73,57,28,22,31,32,53,12,17,63,10,20,22,20,28,18,8,11,11,14,16,17),(3463,'2015-03-10 21:49:30','2015-10-11 16:46:32',1,30002910,12,4,5,4,12,18,5,3,5,4,8,1,2,50,11,14,7,9,3,11,5,2,7,6),(3464,'2015-03-10 21:49:30','2015-10-11 16:46:32',1,30003616,47,12,26,23,13,18,54,20,18,23,28,9,9,31,10,10,7,15,16,13,14,6,5,15),(3465,'2015-03-10 21:49:30','2015-10-11 16:46:32',1,30000212,42,24,39,33,27,17,51,20,31,19,24,35,36,31,14,14,62,36,35,35,26,49,32,13),(3466,'2015-03-10 21:49:30','2015-10-11 16:46:32',1,30002867,13,15,21,20,17,22,14,4,11,39,43,20,15,25,42,37,11,23,3,5,39,27,40,30),(3467,'2015-03-10 21:49:30','2015-10-11 16:46:32',1,30003186,5,4,34,7,4,7,7,7,10,12,7,12,9,9,16,9,1,4,7,9,4,6,4,5),(3468,'2015-03-10 21:49:30','2015-10-11 16:46:32',1,30004609,15,14,32,17,8,11,1,14,11,175,39,34,23,24,53,42,37,21,44,51,58,49,42,25),(3469,'2015-03-10 21:49:30','2015-10-11 16:46:32',1,30003980,34,78,17,18,13,25,15,13,23,17,24,23,18,73,19,23,17,12,40,6,11,14,11,19),(3470,'2015-03-10 21:49:30','2015-10-11 16:46:32',1,30000917,0,1,5,0,1,0,0,1,1,0,0,1,1,1,4,6,1,0,1,2,1,1,3,0),(3471,'2015-03-10 21:49:30','2015-10-11 16:46:32',1,30005031,51,36,61,29,29,39,44,27,55,43,56,46,40,52,53,49,30,36,58,44,65,54,55,29),(3472,'2015-03-10 21:49:30','2015-10-11 16:46:32',1,30004089,10,13,69,13,25,27,20,8,12,32,27,47,30,39,24,21,13,22,22,16,32,45,30,35),(3473,'2015-03-10 21:49:30','2015-10-11 16:46:32',1,30004308,28,15,11,5,18,23,26,22,14,9,10,9,8,10,5,4,3,2,2,7,5,33,27,17),(3474,'2015-03-10 21:49:30','2015-10-11 16:46:32',1,30003929,2,55,4,1,6,5,11,2,4,1,3,1,2,6,3,2,5,0,2,3,0,1,0,1),(3475,'2015-03-10 21:49:30','2015-10-11 16:46:32',1,30003378,13,15,10,11,4,2,13,14,14,23,18,9,14,16,21,18,26,11,10,16,9,37,26,7),(3476,'2015-03-10 21:49:30','2015-10-11 16:46:32',1,30005058,26,20,35,27,31,24,32,11,25,79,84,39,33,35,40,45,65,44,24,24,48,39,39,29),(3477,'2015-03-10 21:49:30','2015-10-11 16:46:32',1,30004383,5,4,4,1,5,4,1,13,5,3,3,0,3,1,1,2,3,3,0,0,3,1,1,4),(3478,'2015-03-10 21:49:30','2015-10-11 16:46:32',1,30001695,34,38,44,53,67,53,47,43,26,86,107,138,124,81,108,109,89,124,52,65,210,292,240,244),(3479,'2015-03-10 21:49:30','2015-10-11 16:46:32',1,30003423,61,31,21,35,31,34,24,13,21,26,31,27,22,56,50,50,27,26,22,31,35,26,26,29),(3480,'2015-03-10 21:49:30','2015-10-11 16:46:32',1,30004267,47,32,79,55,58,66,34,37,62,125,104,48,62,73,171,247,96,63,58,74,86,66,60,50),(3481,'2015-03-10 21:49:30','2015-10-11 16:46:32',1,30045344,226,223,346,242,205,230,124,196,171,463,464,198,169,695,379,316,237,223,228,273,368,290,238,170),(3482,'2015-03-10 21:49:30','2015-10-11 16:46:32',1,30002228,65,65,78,83,80,117,81,68,57,80,80,74,72,79,87,80,80,75,37,83,96,94,108,73),(3483,'2015-03-10 21:49:30','2015-10-11 16:46:32',1,30003073,23,15,20,22,27,31,21,19,35,30,24,33,22,30,46,56,45,25,21,26,30,31,34,34),(3484,'2015-03-10 21:49:30','2015-10-11 16:46:32',1,30001826,20,30,23,50,44,34,32,8,20,3,12,16,14,0,9,14,14,8,2,3,11,6,11,3),(3485,'2015-03-10 21:49:30','2015-10-11 16:46:32',1,30000145,1230,1123,1333,1345,1218,1143,1010,956,955,1332,1387,1357,1389,1513,1639,1552,1651,1454,915,1056,1280,1612,1588,1422),(3486,'2015-03-10 21:49:30','2015-10-11 16:46:32',1,30005286,2,6,2,4,3,2,2,5,4,10,5,2,5,4,1,4,3,7,3,6,2,24,4,3),(3487,'2015-03-10 21:49:30','2015-10-11 16:46:32',1,30002650,79,52,42,104,73,49,63,30,62,129,113,63,73,143,120,111,86,75,89,70,109,101,87,89),(3488,'2015-03-10 21:49:30','2015-10-11 16:46:32',1,30003859,6,11,7,1,2,1,0,3,4,8,14,17,9,2,11,11,7,11,7,6,13,7,8,7),(3489,'2015-03-10 21:49:30','2015-10-11 16:46:32',1,30002246,7,7,11,15,12,20,22,6,14,14,17,12,12,37,7,12,11,6,4,8,25,11,12,18),(3490,'2015-03-10 21:49:30','2015-10-11 16:46:32',1,30000230,24,38,16,42,35,43,41,31,21,3,1,2,4,4,8,12,6,15,15,2,10,5,7,4),(3491,'2015-03-10 21:49:30','2015-10-11 16:46:32',1,30003325,7,6,3,4,4,4,2,9,7,7,6,0,0,12,5,6,5,14,1,4,4,24,24,54),(3492,'2015-03-10 21:49:30','2015-10-11 16:46:32',1,30000650,17,4,84,22,18,13,10,6,8,11,14,6,3,6,48,11,7,11,3,11,23,7,4,13),(3493,'2015-03-10 21:49:30','2015-10-11 16:46:32',1,30005170,5,6,10,5,8,6,4,3,0,1,1,6,2,6,4,4,3,1,0,1,3,2,1,3),(3494,'2015-03-10 21:49:30','2015-10-11 16:46:32',1,30001239,9,2,5,10,6,5,10,6,5,25,34,51,36,43,26,32,23,23,19,43,50,41,42,48),(3495,'2015-03-10 21:49:30','2015-10-11 16:46:32',1,30003117,9,5,5,2,5,3,6,5,9,6,5,5,7,9,4,4,8,9,7,5,9,2,5,9),(3496,'2015-03-10 21:49:30','2015-10-11 16:46:32',1,30001789,1,10,6,4,7,8,1,3,2,13,20,12,10,6,5,4,6,3,6,5,9,5,6,6),(3497,'2015-03-10 21:49:30','2015-10-11 16:46:32',1,30002185,6,2,12,4,11,7,10,0,5,8,7,3,2,3,2,2,3,7,40,54,26,9,9,11),(3498,'2015-03-10 21:49:30','2015-10-11 16:46:32',1,30003504,1562,1436,1594,1514,1521,1455,1095,774,1040,1796,1844,1709,1584,1830,2062,2039,1952,1593,1253,1375,1693,1887,1829,1617),(3499,'2015-03-10 21:49:30','2015-10-11 16:46:32',1,30005047,99,46,69,65,62,60,66,48,53,83,90,74,59,110,188,149,101,100,63,90,105,114,101,84),(3500,'2015-03-10 21:49:30','2015-10-11 16:46:32',1,30003580,32,41,38,52,79,73,32,25,39,76,87,41,24,43,35,43,36,19,30,25,43,34,38,31),(3501,'2015-03-10 21:49:30','2015-10-11 16:46:32',1,30003006,0,2,1,5,9,11,9,5,6,1,5,7,15,5,5,3,5,4,9,8,6,4,4,4),(3502,'2015-03-10 21:49:30','2015-10-11 16:46:32',1,30004769,98,16,13,3,2,2,2,9,23,20,13,7,12,22,11,13,35,4,5,10,12,30,14,24),(3503,'2015-03-10 21:49:30','2015-10-11 16:46:32',1,30004126,70,53,60,60,80,63,39,49,73,41,57,62,46,65,76,68,33,44,34,46,66,50,57,62),(3504,'2015-03-10 21:49:30','2015-10-11 16:46:32',1,30004274,2,4,2,1,2,0,0,4,4,4,3,7,4,2,6,4,5,3,3,1,0,0,0,2),(3505,'2015-03-10 21:49:30','2015-10-11 16:46:32',1,30000108,7,3,3,18,5,3,0,2,2,2,5,3,1,2,13,4,2,5,3,1,4,5,3,2),(3506,'2015-03-10 21:49:30','2015-10-11 16:46:32',1,30000642,3,2,6,3,3,3,3,1,8,5,10,20,21,0,68,34,0,12,11,5,4,2,4,3),(3507,'2015-03-10 21:49:30','2015-10-11 16:46:32',1,30003448,50,35,52,34,31,27,44,20,27,59,59,50,43,52,80,80,71,59,43,42,41,79,85,45),(3508,'2015-03-10 21:49:30','2015-10-11 16:46:32',1,30002234,49,35,59,65,56,86,50,46,30,58,49,54,50,53,56,55,63,40,30,64,74,56,64,45),(3509,'2015-03-10 21:49:30','2015-10-11 16:46:32',1,30000900,19,17,32,32,21,28,14,4,17,12,12,10,9,41,27,16,22,20,37,41,54,23,15,15),(3510,'2015-03-10 21:49:30','2015-10-11 16:46:32',1,30000057,60,39,74,47,58,54,67,37,23,89,67,82,93,120,137,145,96,67,72,51,76,88,85,70),(3511,'2015-03-10 21:49:30','2015-10-11 16:46:32',1,30002757,93,53,169,65,72,62,51,74,96,40,34,70,55,69,140,103,74,55,71,76,83,65,69,40),(3512,'2015-03-10 21:49:30','2015-10-11 16:46:32',1,30001082,10,5,25,40,20,13,30,27,26,44,40,42,21,34,16,19,19,23,6,8,19,23,21,21),(3513,'2015-03-10 21:49:30','2015-10-11 16:46:32',1,30000035,42,33,54,37,57,40,42,28,26,39,51,45,50,37,51,46,43,71,33,66,37,48,42,33),(3514,'2015-03-10 21:49:30','2015-10-11 16:46:32',1,30000008,139,94,162,102,125,124,98,62,68,186,156,147,148,237,233,254,217,178,136,166,176,180,179,159),(3515,'2015-03-10 21:49:30','2015-10-11 16:46:32',1,30005040,45,15,31,31,24,30,20,7,31,42,42,42,37,36,34,31,41,31,14,36,26,34,28,33),(3516,'2015-03-10 21:49:30','2015-10-11 16:46:32',1,30045352,108,74,94,83,103,105,81,152,98,111,118,65,68,57,112,110,109,64,86,71,85,113,122,96),(3517,'2015-03-10 21:49:30','2015-10-11 16:46:32',1,30000143,605,572,599,630,557,532,491,390,457,606,628,586,543,722,723,717,750,573,408,517,578,620,642,561),(3518,'2015-03-10 21:49:30','2015-10-11 16:46:32',1,30003141,4,16,8,10,19,22,16,7,1,11,12,6,5,10,4,2,4,10,7,9,3,3,2,11),(3519,'2015-03-10 21:49:30','2015-10-11 16:46:32',1,30000896,57,38,44,49,48,45,36,22,57,24,28,37,36,59,83,50,40,42,23,35,32,72,72,31),(3520,'2015-03-10 21:49:30','2015-10-11 16:46:32',1,30000902,10,24,42,31,28,37,17,27,9,36,28,14,14,38,58,21,21,23,31,71,55,15,14,26),(3521,'2015-03-10 21:49:30','2015-10-11 16:46:32',1,30002303,6,2,13,3,5,6,6,7,5,4,2,6,4,6,5,10,3,2,10,9,4,8,6,4),(3522,'2015-03-10 21:49:30','2015-10-11 16:46:32',1,30000855,3,5,1,4,1,1,0,1,1,2,1,1,2,2,1,1,1,3,2,0,2,4,4,0),(3523,'2015-03-10 21:49:30','2015-10-11 16:46:32',1,30004476,2,4,3,3,2,0,1,2,1,3,6,5,15,5,8,8,7,10,8,11,4,18,10,5),(3524,'2015-03-10 21:49:30','2015-10-11 16:46:32',1,30004338,0,3,9,3,2,4,4,3,2,1,0,2,1,2,1,1,3,1,0,1,0,4,5,2),(3525,'2015-03-10 21:49:30','2015-10-11 16:46:32',1,30004518,12,4,12,6,7,9,9,8,12,15,16,3,2,21,39,41,10,9,3,2,4,19,23,18),(3526,'2015-03-10 21:49:30','2015-10-11 16:46:32',1,30005018,44,34,49,50,46,43,53,39,46,39,56,61,52,48,76,57,39,64,25,39,40,48,52,54),(3527,'2015-03-10 21:49:30','2015-10-11 16:46:32',1,30004712,27,23,43,8,13,16,23,30,60,152,65,196,59,77,76,75,68,72,39,39,82,25,30,18),(3528,'2015-03-10 21:49:30','2015-10-11 16:46:32',1,30002218,10,6,19,20,23,21,7,17,3,18,18,10,14,13,15,16,6,15,7,12,15,14,19,4),(3529,'2015-03-10 21:49:30','2015-10-11 16:46:32',1,30000131,560,453,610,609,465,490,429,426,504,694,742,663,605,731,895,850,860,662,446,489,669,771,759,592),(3530,'2015-03-10 21:49:30','2015-10-11 16:46:32',1,30002219,10,9,8,6,8,9,4,4,2,24,22,13,13,8,6,5,8,17,6,9,4,6,10,12),(3531,'2015-03-10 21:49:30','2015-10-11 16:46:32',1,30001401,301,151,151,113,137,119,157,97,118,209,175,167,188,195,256,283,217,163,120,199,127,232,180,193),(3532,'2015-03-10 21:49:30','2015-10-11 16:46:32',1,30005236,62,30,57,27,38,55,37,11,25,39,48,35,30,47,49,35,36,43,43,43,71,51,46,32),(3533,'2015-03-10 21:49:30','2015-10-11 16:46:32',1,30004094,195,102,163,144,124,124,89,89,84,147,164,174,170,191,227,224,165,162,126,107,171,151,156,159),(3534,'2015-03-10 21:49:30','2015-10-11 16:46:32',1,30001725,7,3,3,7,6,3,6,1,2,3,6,2,1,4,7,12,4,12,3,3,4,8,5,4),(3535,'2015-03-10 21:49:30','2015-10-11 16:46:32',1,30045348,6,9,5,9,9,10,8,19,21,12,17,7,11,7,6,12,17,4,3,9,17,8,23,11),(3536,'2015-03-10 21:49:30','2015-10-11 16:46:32',1,30003884,2,9,4,1,2,3,16,0,4,7,9,4,3,5,3,3,2,6,10,4,2,8,6,1),(3537,'2015-03-10 21:49:30','2015-10-11 16:46:32',1,30001376,432,350,412,411,371,363,349,305,291,372,367,337,312,453,432,429,459,393,273,421,435,467,387,299),(3538,'2015-03-10 21:49:30','2015-10-11 16:46:32',1,30004307,48,23,21,11,35,40,28,43,32,19,20,14,11,18,9,37,10,4,5,17,12,56,42,37),(3539,'2015-03-10 21:49:30','2015-10-11 16:46:32',1,30004533,13,18,11,11,9,8,9,3,13,10,3,17,13,4,6,5,6,14,4,3,3,7,6,15),(3540,'2015-03-10 21:49:30','2015-10-11 16:46:32',1,30004479,12,8,18,1,2,10,13,12,9,21,14,13,14,2,20,17,28,15,6,15,15,9,9,14),(3541,'2015-03-10 21:49:30','2015-10-11 16:46:32',1,30002451,31,24,9,20,33,18,21,15,11,7,11,18,22,7,3,3,13,12,8,19,2,6,16,9),(3542,'2015-03-10 21:49:30','2015-10-11 16:46:32',1,30001822,6,11,5,13,5,7,3,25,4,10,17,3,3,4,6,14,2,4,0,1,4,4,6,4),(3543,'2015-03-10 21:49:30','2015-03-10 21:49:30',1,30000368,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(3544,'2015-03-10 21:49:30','2015-10-11 16:46:32',1,30004919,1,2,6,1,4,7,2,0,0,23,16,3,4,11,21,29,12,12,3,9,4,3,6,1),(3545,'2015-03-10 21:49:30','2015-10-11 16:46:32',1,30004866,4,8,6,7,6,4,1,11,3,5,1,4,5,2,10,9,5,2,4,15,8,1,4,9),(3546,'2015-03-10 21:49:30','2015-10-11 16:46:32',1,30001094,4,0,3,0,4,6,3,1,0,6,5,1,0,1,1,3,9,3,0,0,0,2,2,0),(3547,'2015-03-10 21:49:30','2015-10-11 16:46:32',1,30001962,1,4,5,11,11,8,3,1,4,3,3,3,2,0,1,0,3,4,6,4,1,2,3,0),(3548,'2015-03-10 21:49:30','2015-10-11 16:46:32',1,30002103,56,9,65,17,17,14,25,14,6,44,41,13,12,20,36,40,23,16,3,36,10,34,35,13),(3549,'2015-03-10 21:49:30','2015-10-11 16:46:32',1,30000696,2,9,7,5,8,6,2,5,9,4,0,8,1,3,3,6,1,7,4,16,7,7,4,5),(3550,'2015-03-10 21:49:30','2015-03-10 21:49:30',1,30001622,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(3551,'2015-03-10 21:49:30','2015-10-11 16:46:32',1,30001061,1,13,2,0,3,6,10,2,1,0,0,0,0,0,4,1,2,1,0,0,0,3,2,1),(3552,'2015-03-10 21:49:30','2015-10-11 16:46:32',1,30004318,9,6,33,3,17,26,10,16,14,8,18,14,9,4,23,15,6,9,2,3,2,5,6,9),(3553,'2015-03-10 21:49:30','2015-10-11 16:46:32',1,30004035,2,3,6,3,10,5,3,4,2,6,4,6,10,2,7,6,3,8,0,1,4,2,1,3),(3554,'2015-03-10 21:49:30','2015-10-11 16:46:32',1,30002606,7,5,3,10,9,10,2,17,8,0,2,4,4,6,9,3,7,5,2,3,3,16,22,10),(3555,'2015-03-10 21:49:30','2015-10-11 16:46:32',1,30000183,27,37,41,51,47,59,40,20,37,60,57,68,53,56,63,60,68,62,38,33,39,41,51,44),(3556,'2015-03-10 21:49:30','2015-10-11 16:46:32',1,30001665,28,21,27,21,36,27,20,16,25,24,26,35,33,24,45,50,38,23,23,22,32,38,41,32),(3557,'2015-03-10 21:49:30','2015-10-11 16:46:32',1,30003627,8,3,4,1,3,5,1,6,1,0,0,0,0,4,3,4,3,1,1,2,0,2,2,1),(3558,'2015-03-10 21:49:30','2015-03-10 21:49:30',1,30000350,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(3559,'2015-03-10 21:49:30','2015-10-11 16:46:32',1,30004438,0,0,1,3,1,1,1,0,25,2,3,5,2,0,1,2,0,2,1,1,7,0,3,1),(3560,'2015-03-10 21:49:30','2015-10-11 16:46:32',1,30002340,12,8,10,11,10,8,10,2,9,14,3,10,12,13,45,29,15,3,21,40,11,31,24,6),(3561,'2015-03-10 21:49:30','2015-10-11 16:46:32',1,30004440,82,3,8,8,7,11,15,0,39,24,19,20,11,21,23,25,10,29,27,19,32,67,31,33),(3562,'2015-03-10 21:49:30','2015-10-11 16:46:32',1,30004612,9,1,7,4,5,4,0,3,0,5,2,1,1,4,3,2,2,2,5,5,8,7,3,2),(3563,'2015-03-10 21:49:30','2015-10-11 16:46:32',1,30001874,41,14,19,19,16,16,24,16,6,50,60,74,74,39,71,60,79,130,10,25,43,258,284,123),(3564,'2015-03-10 21:49:30','2015-10-11 16:46:32',1,30004911,30,14,42,13,41,32,22,4,15,15,10,7,4,20,38,36,7,17,12,117,4,3,7,4),(3565,'2015-03-10 21:49:30','2015-10-11 16:46:32',1,30004863,0,3,0,0,3,2,0,0,26,2,1,3,4,4,3,4,10,12,2,1,2,4,7,8),(3566,'2015-03-10 21:49:30','2015-10-11 16:46:32',1,30000870,36,27,20,16,15,15,45,21,25,18,31,18,23,53,96,102,13,11,10,7,13,22,18,5),(3567,'2015-03-10 21:49:30','2015-10-11 16:46:32',1,30004050,43,11,110,17,14,8,6,5,17,48,23,10,10,39,12,15,12,26,3,25,5,9,11,16),(3568,'2015-03-10 21:49:30','2015-10-11 16:46:32',1,30002935,29,29,34,15,16,16,13,15,19,42,28,15,15,30,34,24,10,10,10,19,12,10,15,21),(3569,'2015-03-10 21:49:30','2015-10-11 16:46:32',1,30000627,18,3,0,3,11,6,6,0,1,0,0,0,6,0,1,3,1,1,0,0,2,1,1,1),(3570,'2015-03-10 21:49:30','2015-10-11 16:46:32',1,30000744,2,0,2,0,1,0,0,0,1,0,0,4,4,1,0,1,1,1,1,0,0,0,1,1),(3571,'2015-03-10 21:49:30','2015-10-11 16:46:32',1,30000982,0,1,1,3,4,2,2,0,1,2,8,3,1,2,3,3,0,5,1,1,1,1,1,0),(3572,'2015-03-10 21:49:30','2015-10-11 16:46:32',1,30004692,15,13,8,8,10,12,7,17,14,20,18,13,33,35,26,18,13,19,11,10,33,33,18,13),(3573,'2015-03-10 21:49:30','2015-10-11 16:46:32',1,30000831,23,3,29,7,6,38,2,2,26,0,1,7,1,8,7,8,8,7,6,1,6,1,1,6),(3574,'2015-03-10 21:49:30','2015-10-11 16:46:32',1,30002034,9,2,12,5,2,0,2,0,3,1,0,0,0,1,0,0,0,0,0,0,0,0,2,0),(3575,'2015-03-10 21:49:30','2015-10-11 16:46:32',1,30004060,15,13,24,7,24,17,10,4,19,30,39,43,20,37,25,13,11,23,9,21,24,23,24,9),(3576,'2015-03-10 21:49:30','2015-10-11 16:46:32',1,30001964,13,16,6,9,16,21,52,14,12,40,49,98,85,8,41,49,12,5,10,8,8,18,8,21),(3577,'2015-03-10 21:49:30','2015-10-11 16:46:32',1,30003683,120,104,372,193,138,145,111,72,70,95,115,183,214,246,142,113,107,65,69,110,137,81,84,60),(3578,'2015-03-10 21:49:30','2015-10-11 16:46:32',1,30001955,11,6,4,2,0,2,9,0,5,8,7,3,1,4,5,6,2,4,6,1,1,7,5,5),(3579,'2015-03-10 21:49:30','2015-10-11 16:46:32',1,30002358,34,17,27,28,36,32,18,8,6,5,3,0,2,5,10,18,6,2,6,5,8,15,9,6),(3580,'2015-03-10 21:49:30','2015-10-11 16:46:32',1,30004199,9,0,2,0,3,2,0,2,0,5,4,5,5,1,0,0,0,0,0,4,4,1,0,4),(3581,'2015-03-10 21:49:30','2015-10-11 16:46:32',1,30001938,5,3,5,2,8,5,4,21,5,9,15,17,17,12,15,19,32,26,4,9,14,16,20,25),(3582,'2015-03-10 21:49:30','2015-10-11 16:46:32',1,30004713,8,6,29,4,7,10,13,12,36,124,44,172,41,56,71,65,46,57,33,34,67,12,18,16),(3583,'2015-03-10 21:49:30','2015-10-11 16:46:32',1,30004049,1,8,9,2,4,3,5,5,3,6,4,6,8,7,19,15,12,5,6,10,9,9,11,5),(3584,'2015-03-10 21:49:30','2015-10-11 16:46:32',1,30004326,9,14,25,10,8,7,15,20,15,16,21,16,18,24,41,25,2,9,1,8,24,11,15,7),(3585,'2015-03-10 21:49:30','2015-10-11 16:46:32',1,30002351,39,13,11,12,12,20,18,7,12,8,8,6,6,38,15,16,19,8,8,9,32,16,14,26),(3586,'2015-03-10 21:49:30','2015-10-11 16:46:32',1,30000309,14,15,9,11,13,14,16,7,9,18,13,6,3,6,12,5,2,14,3,0,2,5,5,3),(3587,'2015-03-10 21:49:30','2015-10-11 16:46:32',1,30004671,17,5,12,5,2,3,12,12,4,7,10,11,7,4,13,21,12,6,4,4,4,4,4,10),(3588,'2015-03-10 21:49:30','2015-10-11 16:46:32',1,30004703,25,52,40,56,26,22,34,55,36,37,59,20,25,31,24,31,51,29,11,14,14,32,58,30),(3589,'2015-03-10 21:49:30','2015-10-11 16:46:32',1,30001986,142,38,146,40,58,53,41,46,45,47,40,42,52,41,86,91,30,33,150,162,106,39,53,51),(3590,'2015-03-10 21:49:30','2015-10-11 16:46:32',1,30001751,10,12,10,20,19,18,21,19,15,1,1,1,4,8,9,11,5,4,3,2,1,6,8,3),(3591,'2015-03-10 21:49:30','2015-10-11 16:46:32',1,30000993,1,5,5,5,5,4,4,4,3,3,3,4,1,2,4,3,1,2,3,3,6,4,8,0),(3592,'2015-03-10 21:49:30','2015-10-11 16:46:32',1,30004649,28,7,20,33,14,9,13,10,16,7,8,6,5,7,9,5,7,7,7,19,26,20,11,11),(3593,'2015-03-10 21:49:30','2015-10-11 16:46:32',1,30005171,4,9,13,10,7,8,6,6,3,17,6,19,12,7,8,7,3,7,0,1,2,1,1,14),(3594,'2015-03-10 21:49:30','2015-10-11 16:46:32',1,30004543,11,7,9,4,5,3,17,8,7,6,4,5,4,4,5,3,7,9,2,0,6,2,3,7),(3595,'2015-03-10 21:49:30','2015-10-11 16:46:32',1,30000975,0,1,3,2,2,0,1,1,2,4,2,0,0,0,9,4,11,0,5,1,1,3,5,5),(3596,'2015-03-10 21:49:30','2015-10-11 16:46:32',1,30001297,6,9,3,4,17,12,3,0,3,0,0,4,2,3,3,1,2,4,9,4,0,7,6,6),(3597,'2015-03-10 21:49:30','2015-10-11 16:46:32',1,30002457,38,22,18,38,30,26,23,14,11,27,24,48,46,14,15,12,37,23,9,18,36,82,63,24),(3598,'2015-03-10 21:49:30','2015-10-11 16:46:32',1,30003761,32,15,25,23,31,27,27,24,11,13,17,17,19,23,28,30,30,11,8,15,14,12,17,11),(3599,'2015-03-10 21:49:30','2015-10-11 16:46:32',1,30004044,64,61,163,42,41,41,44,23,40,59,53,36,45,87,76,74,57,39,35,76,45,52,60,42),(3600,'2015-03-10 21:49:30','2015-10-11 16:46:32',1,30002425,45,61,34,50,55,43,71,29,31,43,40,44,50,34,40,36,54,52,20,43,58,111,67,56),(3601,'2015-03-10 21:49:30','2015-10-11 16:46:32',1,30004699,3,16,6,2,4,11,7,3,3,3,4,0,1,3,1,3,3,0,1,1,10,0,2,2),(3602,'2015-03-10 21:49:30','2015-10-11 16:46:32',1,30003686,125,101,212,134,143,132,108,93,109,60,79,126,170,227,144,103,98,44,78,88,121,71,66,65),(3603,'2015-03-10 21:49:30','2015-10-11 16:46:32',1,30002602,8,4,1,3,0,0,0,0,0,0,0,3,1,1,50,8,5,14,0,45,2,0,2,4),(3604,'2015-03-10 21:49:30','2015-10-11 16:46:32',1,30002499,27,17,35,31,20,20,36,25,8,13,18,11,12,11,3,7,9,11,21,14,14,14,17,17),(3605,'2015-03-10 21:49:30','2015-10-11 16:46:32',1,30000492,17,6,6,13,12,9,8,10,2,26,29,30,22,26,61,30,37,16,12,86,67,45,33,38),(3606,'2015-03-10 21:49:30','2015-10-11 16:46:32',1,30002851,22,25,11,21,24,23,6,16,15,40,44,25,27,35,44,32,18,21,2,3,16,20,27,30),(3607,'2015-03-10 21:49:30','2015-10-11 16:46:32',1,30003645,3,2,10,11,7,10,2,6,6,4,5,4,5,6,3,2,4,3,4,2,0,3,2,3),(3608,'2015-03-10 21:49:30','2015-10-11 16:46:32',1,30003946,4,3,2,2,8,9,12,8,1,16,15,11,11,12,8,4,7,16,9,5,6,11,18,13),(3609,'2015-03-10 21:49:30','2015-10-11 16:46:32',1,30002153,3,9,2,2,0,4,4,0,10,1,0,3,4,13,4,6,7,4,1,16,25,11,15,4),(3610,'2015-03-10 21:49:30','2015-10-11 16:46:32',1,30004691,22,20,9,13,15,12,20,20,16,26,30,13,37,38,31,20,20,20,10,12,29,46,25,16),(3611,'2015-03-10 21:49:30','2015-10-11 16:46:32',1,30002884,12,3,20,19,13,10,27,34,25,24,18,30,17,26,34,15,18,18,5,3,6,21,16,23),(3612,'2015-03-10 21:49:30','2015-10-11 16:46:32',1,30000512,15,5,10,12,9,9,12,14,9,20,18,6,5,7,25,14,12,10,24,113,8,12,17,7),(3613,'2015-03-10 21:49:30','2015-10-11 16:46:32',1,30001855,10,15,19,11,5,6,15,9,8,24,15,45,47,31,60,37,39,37,10,14,8,37,48,28),(3614,'2015-03-10 21:49:30','2015-10-11 16:46:32',1,30002116,0,2,4,0,1,0,0,2,1,3,5,4,5,0,0,0,4,1,0,0,0,2,0,1),(3615,'2015-03-10 21:49:30','2015-10-11 16:46:32',1,30001099,1,1,0,3,2,1,0,0,2,5,6,0,0,0,0,0,0,0,0,0,0,0,0,0),(3616,'2015-03-10 21:49:30','2015-10-11 16:46:32',1,30002179,122,35,71,45,56,38,82,41,35,69,44,25,20,54,58,58,58,35,88,254,202,57,58,66),(3617,'2015-03-10 21:49:30','2015-10-11 16:46:32',1,30001068,7,6,8,6,0,5,2,3,2,5,1,4,4,2,8,7,9,13,3,0,3,5,3,3),(3618,'2015-03-10 21:49:30','2015-10-11 16:46:32',1,30004381,6,17,31,22,7,8,14,22,12,12,15,10,8,13,43,46,8,28,6,15,15,11,13,11),(3619,'2015-03-10 21:49:30','2015-10-11 16:46:32',1,30002879,3,0,0,0,0,0,0,0,1,1,1,1,0,0,0,0,0,0,0,1,0,0,1,1),(3620,'2015-03-10 21:49:30','2015-10-11 16:46:32',1,30004424,5,9,5,5,6,7,5,4,13,0,2,0,2,0,4,2,2,11,1,11,13,10,8,8),(3621,'2015-03-10 21:49:30','2015-10-11 16:46:32',1,30000560,12,3,2,8,10,2,4,1,3,15,7,5,2,26,10,12,30,9,24,10,31,15,19,5),(3622,'2015-03-10 21:49:30','2015-10-11 16:46:32',1,30000679,11,9,56,2,1,1,15,12,3,18,11,14,15,6,7,15,14,11,10,4,8,12,12,1),(3623,'2015-03-10 21:49:30','2015-10-11 16:46:32',1,30004996,35,31,45,20,28,15,57,36,28,58,63,54,31,105,60,58,46,40,26,21,44,46,45,48),(3624,'2015-03-10 21:49:30','2015-10-11 16:46:32',1,30000155,546,493,567,732,548,519,601,415,427,597,689,657,664,669,722,726,749,620,413,489,640,703,592,627),(3625,'2015-03-10 21:49:30','2015-10-11 16:46:32',1,30000205,46,35,90,83,56,41,43,50,96,108,118,116,59,97,95,84,73,84,71,85,64,90,92,97),(3626,'2015-03-10 21:49:30','2015-10-11 16:46:32',1,30004109,8,6,9,3,9,4,15,3,9,3,12,16,16,3,2,7,12,2,5,9,4,3,2,3),(3627,'2015-03-10 21:49:30','2015-10-11 16:46:32',1,30004487,13,16,40,4,13,7,52,16,7,7,6,10,20,8,20,25,43,26,15,11,24,23,21,37),(3628,'2015-03-10 21:49:30','2015-10-11 16:46:32',1,30002522,39,37,52,29,25,39,36,16,36,63,64,68,54,58,50,50,58,47,31,31,26,46,33,48),(3629,'2015-03-10 21:49:30','2015-10-11 16:46:32',1,30005181,1,0,1,0,0,0,0,0,0,0,0,0,0,0,1,0,1,1,0,1,1,5,5,0),(3630,'2015-03-10 21:49:30','2015-10-11 16:46:32',1,30003578,45,31,53,99,154,131,44,43,37,54,70,71,57,65,82,76,66,74,43,31,70,79,75,64),(3631,'2015-03-10 21:49:30','2015-10-11 16:46:32',1,30004426,9,8,3,15,16,11,7,8,8,2,3,3,2,5,10,10,8,12,22,24,7,3,2,5),(3632,'2015-03-10 21:49:30','2015-10-11 16:46:32',1,30003857,34,44,39,97,43,61,48,41,41,75,71,67,43,140,94,78,44,37,37,48,78,66,51,55),(3633,'2015-03-10 21:49:30','2015-10-11 16:46:32',1,30002509,482,365,451,440,469,426,374,312,338,560,581,523,489,622,696,672,591,429,414,467,577,594,509,535),(3634,'2015-03-10 21:49:30','2015-10-11 16:46:32',1,30002388,58,43,49,71,59,44,59,49,40,85,86,90,49,210,83,105,115,70,75,35,87,78,79,94),(3635,'2015-03-10 21:49:30','2015-10-11 16:46:32',1,30003470,4,7,5,4,5,3,10,10,5,5,4,12,14,11,2,1,7,8,5,5,7,11,6,20),(3636,'2015-03-10 21:49:30','2015-10-11 16:46:32',1,30002694,9,7,11,17,23,18,14,11,14,37,24,10,9,20,23,25,20,16,11,17,14,7,11,24),(3637,'2015-03-10 21:49:30','2015-10-11 16:46:32',1,30002963,168,158,221,197,214,193,152,82,136,197,230,232,210,252,261,260,301,193,136,181,261,255,221,212),(3638,'2015-03-10 21:49:30','2015-10-11 16:46:32',1,30003582,13,8,7,16,53,38,15,13,14,55,62,26,21,18,24,23,14,8,18,12,20,13,24,21),(3639,'2015-03-10 21:49:30','2015-10-11 16:46:32',1,30003050,57,30,45,45,73,47,27,32,44,81,77,91,59,55,75,66,67,44,32,52,38,51,48,71),(3640,'2015-03-10 21:49:30','2015-10-11 16:46:32',1,30000077,9,28,25,27,21,26,23,12,19,20,17,24,26,37,62,37,37,40,16,41,28,42,47,21),(3641,'2015-03-10 21:49:30','2015-10-11 16:46:32',1,30012715,20,32,21,36,24,17,48,17,16,39,59,48,50,51,49,51,42,29,33,21,49,30,32,33),(3642,'2015-03-10 21:49:30','2015-10-11 16:46:32',1,30003657,38,18,28,11,15,18,12,23,23,6,13,5,5,14,9,8,15,10,3,13,23,10,15,6),(3643,'2015-03-10 21:49:30','2015-10-11 16:46:32',1,30002008,2,17,8,5,5,10,6,9,22,8,8,9,7,0,5,10,16,2,3,2,6,3,4,17),(3644,'2015-03-10 21:49:30','2015-10-11 16:46:32',1,30000439,3,2,1,0,0,0,2,11,0,3,5,5,2,4,0,0,1,1,1,4,4,3,3,1),(3645,'2015-03-10 21:49:30','2015-10-11 16:46:32',1,30003577,51,56,100,104,155,133,64,44,76,100,118,104,72,88,109,110,92,72,57,53,95,116,104,64),(3646,'2015-03-10 21:49:30','2015-10-11 16:46:32',1,30002427,24,18,14,35,27,20,27,9,17,28,23,23,23,24,19,24,27,10,11,14,19,84,37,34),(3647,'2015-03-10 21:49:30','2015-10-11 16:46:32',1,30003446,28,23,23,37,41,35,29,34,16,53,81,36,28,31,53,56,35,35,19,40,43,41,59,44),(3648,'2015-03-10 21:49:30','2015-10-11 16:46:32',1,30003460,25,23,46,38,36,46,19,21,34,73,172,78,46,52,58,49,81,44,11,23,37,31,30,18),(3649,'2015-03-10 21:49:30','2015-10-11 16:46:32',1,30002549,74,45,62,48,49,32,35,50,52,61,68,63,55,50,67,76,63,93,24,33,37,64,42,51),(3650,'2015-03-10 21:49:30','2015-10-11 16:46:32',1,30002061,12,20,30,9,15,16,10,30,6,39,30,9,8,4,16,13,14,26,14,2,8,21,13,17),(3651,'2015-03-10 21:49:30','2015-10-11 16:46:32',1,30000472,0,1,0,2,0,1,1,3,2,6,4,7,5,6,17,7,13,11,22,128,18,31,32,10),(3652,'2015-03-10 21:49:30','2015-10-11 16:46:32',1,30003598,22,15,32,8,19,17,10,4,12,10,17,20,25,27,33,20,10,17,16,9,17,20,15,16),(3653,'2015-03-10 21:49:30','2015-10-11 16:46:32',1,30001191,2,2,4,2,6,4,7,8,6,7,46,19,19,10,4,8,10,5,7,6,12,7,2,5),(3654,'2015-03-10 21:49:30','2015-10-11 16:46:32',1,30003437,29,29,37,23,24,31,20,30,18,33,39,44,42,25,28,30,43,45,24,14,36,34,54,42),(3655,'2015-03-10 21:49:30','2015-10-11 16:46:32',1,30005068,22,15,21,33,20,28,17,11,37,76,52,17,24,33,19,24,43,22,34,23,27,35,37,25),(3656,'2015-03-10 21:49:30','2015-10-11 16:46:32',1,30002045,1,2,4,6,1,1,2,2,4,5,0,0,0,2,0,0,3,3,0,0,4,2,4,4),(3657,'2015-03-10 21:49:30','2015-10-11 16:46:32',1,30003984,29,34,96,92,36,19,37,26,18,35,73,37,16,6,29,27,25,11,16,4,7,35,29,13),(3658,'2015-03-10 21:49:30','2015-10-11 16:46:32',1,30001435,27,20,26,19,12,15,12,15,5,40,40,23,18,20,43,30,31,37,29,46,37,40,30,40),(3659,'2015-03-10 21:49:30','2015-10-11 16:46:32',1,30002970,178,158,239,195,226,194,151,99,148,209,239,235,225,255,289,274,317,216,140,191,247,271,238,234),(3660,'2015-03-10 21:49:30','2015-10-11 16:46:32',1,30000204,26,19,28,37,34,24,33,24,33,56,71,32,23,56,23,35,34,40,25,35,30,23,25,25),(3661,'2015-03-10 21:49:30','2015-10-11 16:46:32',1,30000136,72,51,48,34,27,25,40,32,22,34,31,34,25,55,54,59,31,31,23,34,57,42,43,50),(3662,'2015-03-10 21:49:30','2015-10-11 16:46:32',1,30002743,69,40,80,94,119,101,26,38,40,55,45,59,46,36,56,45,69,45,18,33,55,59,68,52),(3663,'2015-03-10 21:49:30','2015-10-11 16:46:32',1,30002818,123,76,119,118,138,162,122,117,100,132,127,153,133,143,160,136,138,106,91,86,123,128,131,110),(3664,'2015-03-10 21:49:30','2015-10-11 16:46:32',1,30003838,104,83,165,80,85,113,75,76,48,206,186,82,54,197,128,101,70,87,65,166,99,66,89,98),(3665,'2015-03-10 21:49:30','2015-10-11 16:46:32',1,30002746,53,40,82,85,106,121,42,55,47,67,56,46,47,40,41,50,69,34,37,36,55,64,73,55),(3666,'2015-03-10 21:49:30','2015-10-11 16:46:32',1,30000186,182,179,122,302,183,203,151,130,133,202,242,200,173,229,152,162,365,150,87,106,121,180,179,221),(3667,'2015-03-10 21:49:30','2015-10-11 16:46:32',1,30001444,102,45,58,69,50,57,42,32,35,62,63,61,53,45,58,66,54,54,27,37,44,55,53,76),(3668,'2015-03-10 21:49:30','2015-10-11 16:46:32',1,30045347,149,100,92,114,154,191,84,145,117,328,269,111,86,189,142,165,136,97,199,125,88,240,183,124),(3669,'2015-03-10 21:49:30','2015-10-11 16:46:32',1,30002750,214,176,236,250,199,193,177,123,152,262,254,237,214,266,251,213,233,213,135,138,207,203,219,229),(3670,'2015-03-10 21:49:30','2015-10-11 16:46:32',1,30003132,6,11,6,9,13,17,24,5,1,15,14,6,13,9,4,1,1,3,6,6,3,4,3,8),(3671,'2015-03-10 21:49:30','2015-10-11 16:46:32',1,30001425,160,143,153,182,195,147,164,109,123,170,169,130,131,199,210,210,178,174,106,157,141,211,214,133),(3672,'2015-03-10 21:49:30','2015-10-11 16:46:32',1,30022715,16,5,11,14,9,8,8,17,7,8,16,12,9,26,23,26,25,33,20,7,11,21,16,26),(3673,'2015-03-10 21:49:30','2015-10-11 16:46:32',1,30001433,9,9,7,12,8,8,7,7,6,6,5,20,22,11,6,6,7,8,7,4,3,11,9,7),(3674,'2015-03-10 21:49:30','2015-10-11 16:46:32',1,30002799,82,67,102,101,76,64,65,28,53,42,59,68,59,72,72,60,74,87,52,64,79,101,85,80),(3675,'2015-03-10 21:49:30','2015-10-11 16:46:32',1,30004334,10,13,19,13,9,10,8,5,13,5,10,11,2,8,16,19,6,6,3,4,2,1,1,6),(3676,'2015-03-10 21:49:30','2015-10-11 16:46:32',1,30001341,4,6,6,3,2,2,2,1,7,5,4,7,7,6,2,0,0,7,1,6,10,3,3,4),(3677,'2015-03-10 21:49:30','2015-10-11 16:46:32',1,30000983,4,4,9,9,3,2,6,0,7,4,5,6,3,1,0,0,5,8,2,4,2,3,3,7),(3678,'2015-03-10 21:49:30','2015-10-11 16:46:32',1,30005091,10,6,6,4,15,11,7,4,5,7,1,7,9,1,22,17,2,4,6,7,9,20,11,5),(3679,'2015-03-10 21:49:30','2015-10-11 16:46:32',1,30000945,14,7,9,6,0,7,5,2,7,1,0,3,4,7,29,54,16,4,16,2,2,1,2,9),(3680,'2015-03-10 21:49:30','2015-10-11 16:46:32',1,30045307,151,23,8,18,25,32,17,29,19,34,31,27,34,38,26,21,20,47,13,13,20,28,50,20),(3681,'2015-03-10 21:49:30','2015-10-11 16:46:32',1,30004924,26,3,27,2,11,14,27,6,7,6,7,9,14,15,3,18,25,17,6,7,19,23,21,32),(3682,'2015-03-10 21:49:30','2015-10-11 16:46:32',1,30045330,120,83,691,62,92,123,87,96,102,172,184,209,175,191,234,147,207,106,148,104,154,162,136,111),(3683,'2015-03-10 21:49:30','2015-10-11 16:46:32',1,30004645,6,2,5,1,4,10,6,2,3,17,17,4,10,2,6,1,12,12,12,32,18,2,9,11),(3684,'2015-03-10 21:49:30','2015-10-11 16:46:32',1,30003388,257,151,213,153,167,167,198,110,197,303,314,238,229,287,320,340,359,273,206,202,230,322,288,262),(3685,'2015-03-10 21:49:30','2015-10-11 16:46:32',1,30005000,145,79,94,107,119,138,129,119,94,160,152,112,93,166,179,147,165,140,116,73,90,206,146,121),(3686,'2015-03-10 21:49:30','2015-10-11 16:46:32',1,30032715,12,11,14,10,10,11,5,14,9,6,16,28,15,28,26,30,19,22,9,7,24,27,22,15),(3687,'2015-03-10 21:49:30','2015-10-11 16:46:32',1,30002686,77,44,35,42,33,31,45,28,27,31,29,54,54,51,37,32,41,52,30,110,54,40,47,42),(3688,'2015-03-10 21:49:30','2015-10-11 16:46:32',1,30002515,8,16,16,28,17,26,12,18,11,8,6,9,8,15,19,12,18,14,22,17,19,20,14,10),(3689,'2015-03-10 21:49:30','2015-10-11 16:46:32',1,30003058,21,13,22,19,36,14,20,16,12,30,25,56,29,45,25,32,40,23,38,13,34,17,26,16),(3690,'2015-03-10 21:49:30','2015-10-11 16:46:32',1,30005272,13,24,9,20,16,12,15,6,10,24,15,17,11,25,13,13,22,15,29,56,22,23,23,32),(3691,'2015-03-10 21:49:30','2015-10-11 16:46:32',1,30000158,574,495,627,742,606,558,625,444,415,645,721,694,707,729,790,779,790,664,427,515,636,741,655,671),(3692,'2015-03-10 21:49:30','2015-10-11 16:46:32',1,30004137,18,20,15,3,12,23,12,4,2,21,32,19,15,44,23,21,22,6,2,1,17,20,10,28),(3693,'2015-03-10 21:49:30','2015-10-11 16:46:32',1,30004302,3,4,4,3,5,6,3,5,4,5,4,9,21,9,17,16,4,7,1,7,5,15,15,9),(3694,'2015-03-10 21:49:30','2015-10-11 16:46:32',1,30003817,4,3,2,4,6,5,2,2,5,5,4,6,9,8,13,8,12,4,5,8,3,4,12,5),(3695,'2015-03-10 21:49:30','2015-10-11 16:46:32',1,30005027,36,23,34,31,33,32,30,24,13,36,29,35,16,47,37,39,37,52,16,24,31,53,47,34),(3696,'2015-03-10 21:49:30','2015-10-11 16:46:32',1,30004244,33,29,81,110,59,57,84,61,44,90,96,55,61,87,62,59,50,79,63,62,72,60,70,46),(3697,'2015-03-10 21:49:30','2015-10-11 16:46:32',1,30002811,105,73,87,98,64,62,55,68,49,78,72,88,67,141,141,107,104,81,58,82,109,70,71,82),(3698,'2015-03-10 21:49:30','2015-10-11 16:46:32',1,30001688,134,96,138,93,134,131,99,57,97,359,370,418,381,163,221,215,230,174,114,148,179,171,157,128),(3699,'2015-03-10 21:49:30','2015-10-11 16:46:32',1,30003603,10,23,19,38,37,30,13,23,8,16,31,21,15,29,23,29,23,14,17,30,33,32,26,33),(3700,'2015-03-10 21:49:30','2015-10-11 16:46:32',1,30002568,704,457,659,584,636,538,534,395,483,690,721,643,648,852,817,843,799,639,515,582,679,813,707,607),(3701,'2015-03-10 21:49:30','2015-10-11 16:46:32',1,30003386,91,62,68,94,75,67,77,37,56,78,95,85,64,103,78,98,91,94,63,80,79,108,99,106),(3702,'2015-03-10 21:49:30','2015-10-11 16:46:32',1,30045324,506,306,300,322,324,279,300,199,263,284,321,287,249,339,383,421,386,341,271,343,341,423,384,304),(3703,'2015-03-10 21:49:30','2015-10-11 16:46:32',1,30004990,57,55,50,47,67,54,50,23,28,37,52,140,94,96,57,74,58,50,49,48,83,50,67,67),(3704,'2015-03-10 21:49:30','2015-10-11 16:46:32',1,30002779,32,22,40,33,28,25,16,37,18,51,39,44,33,33,32,32,39,32,13,22,28,27,25,21),(3705,'2015-03-10 21:49:30','2015-10-11 16:46:32',1,30000013,51,70,46,30,29,28,33,37,23,86,78,83,56,134,71,55,72,74,74,82,90,66,63,53),(3706,'2015-03-10 21:49:30','2015-10-11 16:46:32',1,30002091,8,7,10,3,4,5,7,3,5,20,20,7,10,21,17,24,23,20,24,22,12,11,19,20),(3707,'2015-03-10 21:49:30','2015-10-11 16:46:32',1,30000174,46,43,66,70,56,60,104,28,48,25,57,42,51,88,128,131,119,81,72,64,88,94,79,88),(3708,'2015-03-10 21:49:30','2015-10-11 16:46:32',1,30001946,4,2,12,4,8,5,5,10,6,12,13,26,30,3,17,25,8,26,3,8,11,10,16,11),(3709,'2015-03-10 21:49:30','2015-10-11 16:46:32',1,30005109,25,20,59,45,28,38,21,11,12,20,17,6,5,3,12,19,2,2,8,16,23,13,11,4),(3710,'2015-03-10 21:49:30','2015-10-11 16:46:32',1,30002173,36,22,15,67,23,24,25,15,29,10,17,19,21,14,35,36,7,9,3,17,39,6,16,18),(3711,'2015-03-10 21:49:30','2015-10-11 16:46:32',1,30003430,86,82,96,97,78,73,86,31,52,68,75,68,73,104,124,109,108,73,64,88,76,113,115,60),(3712,'2015-03-10 21:49:30','2015-10-11 16:46:32',1,30004858,2,1,1,1,3,2,1,4,1,3,1,0,0,0,1,2,0,2,0,0,1,1,2,2),(3713,'2015-03-10 21:49:30','2015-10-11 16:46:32',1,30000607,6,9,7,3,0,1,7,14,0,3,5,0,0,4,0,0,1,3,18,1,3,26,43,15),(3714,'2015-03-10 21:49:30','2015-10-11 16:46:32',1,30003450,13,8,10,11,8,7,16,9,7,21,26,28,19,13,17,20,33,7,8,10,8,16,18,8),(3715,'2015-03-10 21:49:30','2015-10-11 16:46:32',1,30003201,1,4,0,3,1,0,1,0,0,0,0,0,0,0,0,0,0,2,0,1,0,0,4,0),(3716,'2015-03-10 21:49:30','2015-10-11 16:46:32',1,30001685,13,6,18,2,2,3,1,5,7,28,29,30,30,28,35,28,53,43,37,25,47,33,38,39),(3717,'2015-03-10 21:49:30','2015-10-11 16:46:32',1,30005060,38,14,40,28,25,19,17,10,8,43,50,52,37,47,58,52,38,37,18,28,38,27,24,28),(3718,'2015-03-10 21:49:30','2015-10-11 16:46:32',1,30000026,17,6,11,10,8,10,20,8,4,9,8,19,22,14,16,14,18,13,5,7,11,12,12,6),(3719,'2015-03-10 21:49:30','2015-10-11 16:46:32',1,30003453,38,48,55,46,28,33,46,36,52,76,82,76,59,110,99,84,111,72,54,61,82,85,87,75),(3720,'2015-03-10 21:49:30','2015-10-11 16:46:32',1,30002571,37,42,27,29,24,26,17,27,28,42,45,42,39,45,42,48,44,33,17,15,27,26,27,27),(3721,'2015-03-10 21:49:30','2015-10-11 16:46:32',1,30002098,47,34,41,31,48,49,37,32,35,94,95,73,57,95,108,89,67,50,67,79,89,95,74,47),(3722,'2015-03-10 21:49:30','2015-10-11 16:46:32',1,30022505,4,6,3,7,5,9,8,3,7,16,12,9,20,12,11,8,13,3,4,9,12,11,8,11),(3723,'2015-03-10 21:49:30','2015-10-11 16:46:32',1,30002399,14,23,28,57,33,33,15,46,19,30,33,40,33,62,45,28,33,21,45,59,42,33,35,11),(3724,'2015-03-10 21:49:30','2015-10-11 16:46:32',1,30003492,207,410,159,171,199,199,160,121,126,284,269,244,258,314,302,315,277,305,194,207,219,293,326,261),(3725,'2015-03-10 21:49:30','2015-10-11 16:46:32',1,30003596,4,8,1,2,6,5,8,3,7,9,6,11,8,3,7,4,2,18,9,5,19,25,21,16),(3726,'2015-03-10 21:49:30','2015-10-11 16:46:32',1,30000063,21,10,35,20,16,24,39,25,17,23,21,34,31,23,44,43,30,23,35,23,35,48,45,17),(3727,'2015-03-10 21:49:30','2015-10-11 16:46:32',1,30003830,280,178,221,217,177,184,202,145,199,282,291,298,229,369,301,267,323,253,170,330,381,370,334,256),(3728,'2015-03-10 21:49:30','2015-03-10 21:49:30',1,30000374,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(3729,'2015-03-10 21:49:30','2015-10-11 16:46:32',1,30000207,11,17,4,13,19,15,14,16,30,35,22,23,30,74,33,43,21,18,11,22,13,20,17,9),(3730,'2015-03-10 21:49:30','2015-10-11 16:46:32',1,30002569,128,98,113,88,75,65,104,64,83,127,124,104,106,133,127,141,151,137,70,107,85,108,107,78),(3731,'2015-03-10 21:49:30','2015-10-11 16:46:32',1,30002795,82,93,96,116,89,73,68,50,53,50,64,98,90,72,82,78,94,113,46,53,77,81,70,98),(3732,'2015-03-10 21:49:30','2015-10-11 16:46:32',1,30003870,81,83,121,112,109,96,110,56,85,169,195,159,123,194,175,186,143,102,128,113,132,142,169,143),(3733,'2015-03-10 21:49:30','2015-10-11 16:46:32',1,30003812,19,12,32,18,14,7,23,10,19,17,21,25,27,39,44,33,40,40,19,25,10,23,25,10),(3734,'2015-03-10 21:49:30','2015-10-11 16:46:32',1,30003831,127,94,112,117,115,119,90,64,91,153,156,138,118,252,180,144,152,126,93,140,162,178,164,150),(3735,'2015-03-10 21:49:30','2015-10-11 16:46:32',1,30005332,87,133,158,157,144,133,108,92,86,154,151,149,145,173,272,229,220,135,153,157,156,219,206,140),(3736,'2015-03-10 21:49:30','2015-10-11 16:46:32',1,30000180,522,550,566,771,615,620,569,478,473,713,871,802,784,756,834,860,794,744,433,441,601,767,746,715),(3737,'2015-03-10 21:49:30','2015-10-11 16:46:32',1,30002506,180,100,204,167,160,128,114,118,144,141,171,136,125,166,223,212,201,130,156,141,173,200,151,152),(3738,'2015-03-10 21:49:30','2015-10-11 16:46:32',1,30001358,19,7,12,19,19,20,23,19,12,38,24,31,34,35,46,61,41,36,14,24,49,26,23,27),(3739,'2015-03-10 21:49:30','2015-10-11 16:46:32',1,30003792,237,197,548,257,243,261,215,148,148,249,276,255,171,318,258,260,174,187,283,256,456,352,364,235),(3740,'2015-03-10 21:49:30','2015-10-11 16:46:32',1,30003427,29,37,31,30,28,28,20,20,29,20,29,28,30,35,53,47,33,31,28,28,38,15,15,30),(3741,'2015-03-10 21:49:30','2015-10-11 16:46:32',1,30002409,8,16,23,20,30,25,12,14,11,42,45,32,29,41,20,17,34,12,15,14,14,11,8,9),(3742,'2015-03-10 21:49:30','2015-10-11 16:46:32',1,30001579,2,1,3,2,2,8,2,1,0,1,0,0,0,0,0,0,0,3,2,0,0,0,0,0),(3743,'2015-03-10 21:49:30','2015-10-11 16:46:32',1,30001005,21,19,10,23,37,24,1,25,29,11,13,23,33,10,11,9,17,14,3,9,21,21,24,18),(3744,'2015-03-10 21:49:30','2015-10-11 16:46:32',1,30005274,28,33,49,28,49,44,31,18,29,46,42,44,35,55,42,41,53,42,62,75,51,51,57,65),(3745,'2015-03-10 21:49:30','2015-10-11 16:46:32',1,30001421,215,77,105,72,85,77,82,40,84,103,107,92,76,70,90,92,58,102,78,126,82,99,90,104),(3746,'2015-03-10 21:49:30','2015-10-11 16:46:32',1,30000192,23,20,4,24,21,25,21,40,23,61,34,26,27,46,31,50,33,19,10,23,24,17,25,10),(3747,'2015-03-10 21:49:30','2015-10-11 16:46:32',1,30000157,57,29,41,47,41,44,31,30,20,227,136,91,88,185,82,88,129,102,147,182,141,105,129,127),(3748,'2015-03-10 21:49:30','2015-10-11 16:46:32',1,30003065,147,112,142,130,116,117,132,81,116,210,175,171,145,166,255,237,175,142,141,143,177,179,175,159),(3749,'2015-03-10 21:49:30','2015-10-11 16:46:32',1,30000171,26,19,53,42,36,31,29,19,18,33,42,96,40,24,26,33,39,16,17,26,21,28,31,25),(3750,'2015-03-10 21:49:30','2015-10-11 16:46:32',1,30001538,2,1,1,1,0,1,0,0,3,0,0,0,0,0,0,0,0,0,0,0,2,2,0,0),(3751,'2015-03-10 21:49:30','2015-10-11 16:46:32',1,30001586,6,9,5,13,19,20,7,34,9,11,73,10,3,15,16,20,7,17,11,3,10,7,7,2),(3752,'2015-03-10 21:49:30','2015-10-11 16:46:32',1,30002808,59,38,31,39,28,25,30,13,30,45,62,31,33,85,59,79,86,57,79,41,59,75,73,49),(3753,'2015-03-10 21:49:30','2015-10-11 16:46:32',1,30000172,3,9,7,3,5,7,6,4,4,8,10,5,4,7,2,6,1,2,11,8,22,9,8,8),(3754,'2015-03-10 21:49:30','2015-10-11 16:46:32',1,30000196,110,56,60,115,70,76,45,54,35,143,129,136,99,234,169,368,112,109,62,91,121,240,123,170),(3755,'2015-03-10 21:49:30','2015-10-11 16:46:32',1,30002723,49,90,96,73,78,80,83,47,76,98,68,71,59,73,104,90,86,69,59,124,48,89,83,73),(3756,'2015-03-10 21:49:30','2015-10-11 16:46:32',1,30002578,19,1,11,1,4,6,2,6,10,4,16,10,32,15,16,15,8,13,4,8,11,7,3,9),(3757,'2015-03-10 21:49:30','2015-10-11 16:46:32',1,30001446,50,32,27,58,42,51,30,25,29,57,44,32,24,32,33,41,41,25,16,17,22,44,44,48),(3758,'2015-03-10 21:49:30','2015-10-11 16:46:32',1,30000194,23,28,18,39,36,26,31,18,42,53,49,21,23,22,42,33,44,25,17,22,35,38,47,19),(3759,'2015-03-10 21:49:30','2015-03-10 21:49:30',1,30001476,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(3760,'2015-03-10 21:49:30','2015-10-11 16:46:32',1,30004052,2,3,4,7,10,15,10,0,2,13,10,0,0,2,0,0,0,6,1,3,0,0,1,4),(3761,'2015-03-10 21:49:30','2015-10-11 16:46:32',1,30005297,106,75,86,109,80,68,123,76,47,132,125,78,60,144,79,77,109,71,83,102,236,125,118,105),(3762,'2015-03-10 21:49:30','2015-10-11 16:46:32',1,30003833,81,52,82,87,62,63,76,51,57,98,93,110,107,130,118,99,95,108,68,83,136,118,120,102),(3763,'2015-03-10 21:49:30','2015-10-11 16:46:32',1,30001370,84,48,40,54,58,39,48,45,42,63,74,69,53,84,83,84,75,53,44,49,65,73,63,64),(3764,'2015-03-10 21:49:30','2015-10-11 16:46:32',1,30005203,627,475,585,695,531,458,498,419,459,707,704,714,607,766,905,864,775,646,551,650,693,795,749,676),(3765,'2015-03-10 21:49:30','2015-10-11 16:46:32',1,30004969,218,188,211,279,205,209,164,114,160,187,191,196,152,296,325,255,266,239,177,181,227,278,257,247),(3766,'2015-03-10 21:49:30','2015-10-11 16:46:32',1,30000135,72,27,51,33,21,20,30,38,21,30,35,61,69,50,38,39,66,44,38,31,33,47,38,38),(3767,'2015-03-10 21:49:30','2015-03-10 21:49:30',1,30000335,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(3768,'2015-03-10 21:49:30','2015-10-11 16:46:32',1,30001819,3,10,3,9,8,7,0,23,4,7,14,8,1,3,1,1,2,4,0,1,4,3,1,6),(3769,'2015-03-10 21:49:30','2015-10-11 16:46:32',1,30004581,7,32,9,8,3,16,4,17,10,158,11,14,9,272,20,22,17,16,31,56,24,12,11,7),(3770,'2015-03-10 21:49:30','2015-10-11 16:46:32',1,30002936,70,41,56,48,42,34,41,41,39,59,70,34,16,33,56,54,46,21,14,28,38,36,30,27),(3771,'2015-03-10 21:49:30','2015-10-11 16:46:32',1,30004521,1,1,0,1,1,1,2,0,0,2,0,0,1,3,1,0,0,1,0,0,0,1,1,0),(3772,'2015-03-10 21:49:30','2015-10-11 16:46:32',1,30000735,19,33,26,9,10,6,5,3,4,0,0,0,1,1,0,2,4,1,0,2,4,1,2,1),(3773,'2015-03-10 21:49:30','2015-10-11 16:46:32',1,30004413,0,1,0,2,0,1,0,0,5,2,1,2,2,1,0,1,1,0,3,1,0,1,0,0),(3774,'2015-03-10 21:49:30','2015-10-11 16:46:32',1,30003722,34,17,9,10,14,10,3,6,5,26,28,22,37,19,29,30,15,27,14,23,18,22,51,44),(3775,'2015-03-10 21:49:30','2015-10-11 16:46:32',1,30000885,1,0,2,3,0,1,2,0,0,0,1,1,3,0,2,2,1,1,2,2,2,3,2,4),(3776,'2015-03-10 21:49:30','2015-10-11 16:46:32',1,30004958,14,6,11,25,21,16,4,2,12,6,5,0,1,4,4,2,4,2,0,10,21,5,5,4),(3777,'2015-03-10 21:49:30','2015-10-11 16:46:32',1,30002961,58,8,12,18,20,29,8,17,7,17,14,6,6,10,18,21,23,11,12,10,8,8,8,12),(3778,'2015-03-10 21:49:30','2015-10-11 16:46:32',1,30003088,200,89,88,83,62,63,84,55,58,110,94,94,83,91,94,90,113,75,68,95,164,83,82,89),(3779,'2015-03-10 21:49:30','2015-10-11 16:46:32',1,30003254,5,2,17,3,0,0,0,43,0,1,1,1,0,2,9,5,2,2,10,6,1,2,1,2),(3780,'2015-03-10 21:49:30','2015-10-11 16:46:32',1,30001282,1,7,1,1,17,20,2,1,2,2,3,1,1,2,0,0,2,0,1,0,0,2,2,3),(3781,'2015-03-10 21:49:30','2015-10-11 16:46:32',1,30002030,120,53,214,162,140,102,32,19,20,10,8,5,2,14,13,7,33,5,9,7,21,7,9,10),(3782,'2015-03-10 21:49:30','2015-10-11 16:46:32',1,30003680,58,57,224,93,100,72,85,40,64,104,115,202,259,336,152,121,109,69,73,117,152,95,85,67),(3783,'2015-03-10 21:49:30','2015-10-11 16:46:32',1,30003137,6,7,4,3,7,9,2,1,3,2,4,5,7,3,4,2,3,5,2,1,1,5,4,3),(3784,'2015-03-10 21:49:30','2015-10-11 16:46:32',1,30002482,4,8,2,9,13,15,5,3,6,6,6,4,7,0,1,0,5,2,1,1,4,3,7,3),(3785,'2015-03-10 21:49:30','2015-10-11 16:46:32',1,30001823,4,3,2,3,2,3,1,1,0,1,2,0,1,3,0,4,0,0,0,0,1,0,1,2),(3786,'2015-03-10 21:49:30','2015-10-11 16:46:32',1,30002467,25,10,13,29,22,22,12,8,6,38,32,45,39,12,27,23,33,23,8,7,25,63,44,14),(3787,'2015-03-10 21:49:30','2015-10-11 16:46:32',1,30001268,43,18,19,20,24,17,21,11,48,127,55,46,47,38,39,223,193,16,11,35,72,35,151,53),(3788,'2015-03-10 21:49:30','2015-10-11 16:46:32',1,30001293,4,6,0,4,6,4,5,2,1,1,3,2,2,2,6,5,0,1,4,1,0,3,3,4),(3789,'2015-03-10 21:49:30','2015-10-11 16:46:32',1,30004187,0,3,6,6,3,3,20,0,7,15,12,15,14,30,4,17,20,9,2,2,4,3,6,15),(3790,'2015-03-10 21:49:30','2015-03-10 21:49:30',1,30000365,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(3791,'2015-03-10 21:49:30','2015-10-11 16:46:32',1,30000661,0,1,2,0,0,0,0,0,3,5,2,2,2,6,18,3,1,6,6,0,0,1,0,2),(3792,'2015-03-10 21:49:30','2015-10-11 16:46:32',1,30001547,1,1,0,1,0,1,0,0,0,5,5,4,7,4,2,1,2,2,2,1,19,0,1,3),(3793,'2015-03-10 21:49:30','2015-10-11 16:46:32',1,30004170,4,9,1,4,0,0,5,0,2,7,7,3,4,0,6,6,6,6,5,0,0,7,8,1),(3794,'2015-03-10 21:49:30','2015-10-11 16:46:32',1,30004497,9,15,4,4,5,7,7,2,8,4,17,3,1,26,16,8,4,8,10,10,20,21,7,102),(3795,'2015-03-10 21:49:30','2015-10-11 16:46:32',1,30001795,3,11,3,5,3,3,0,5,3,13,19,10,7,6,4,2,3,0,0,6,7,6,6,5),(3796,'2015-03-10 21:49:30','2015-10-11 16:46:32',1,30003674,1,12,13,17,21,18,26,16,19,2,1,4,14,2,5,6,13,26,3,3,6,6,4,4),(3797,'2015-03-10 21:49:30','2015-10-11 16:46:32',1,30001329,24,16,19,6,6,10,20,8,10,7,14,8,13,16,17,8,4,12,2,8,11,13,11,9),(3798,'2015-03-10 21:49:30','2015-10-11 16:46:32',1,30003978,56,66,113,40,49,52,31,24,40,17,16,12,9,67,12,11,11,13,9,5,20,8,7,24),(3799,'2015-03-10 21:49:30','2015-10-11 16:46:32',1,30003248,1,5,1,2,1,3,10,4,9,0,1,2,6,1,0,1,2,3,0,0,0,4,9,4),(3800,'2015-03-10 21:49:30','2015-10-11 16:46:32',1,30000949,3,9,6,7,11,4,4,1,5,3,2,10,5,4,2,5,8,6,5,2,6,1,4,2),(3801,'2015-03-10 21:49:30','2015-10-11 16:46:32',1,30000250,41,29,71,57,42,32,43,41,112,44,56,81,45,79,64,56,55,61,51,83,56,105,91,82),(3802,'2015-03-10 21:49:30','2015-03-10 21:49:30',1,30001604,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(3803,'2015-03-10 21:49:30','2015-10-11 16:46:32',1,30001125,4,2,34,3,4,5,12,4,6,2,2,11,2,22,6,5,11,5,4,4,3,3,5,4),(3804,'2015-03-10 21:49:30','2015-10-11 16:46:32',1,30003971,39,20,44,28,37,31,36,11,17,25,42,20,26,34,21,21,23,14,29,15,32,25,20,44),(3805,'2015-03-10 21:49:30','2015-10-11 16:46:32',1,30004624,9,3,5,13,9,8,2,9,8,250,228,183,184,520,19,18,27,47,136,62,397,14,20,7),(3806,'2015-03-10 21:49:30','2015-10-11 16:46:32',1,30004076,5,33,38,9,13,6,10,2,5,9,18,4,3,8,8,13,4,5,7,3,15,10,11,8),(3807,'2015-03-10 21:49:30','2015-03-10 21:49:30',1,30000411,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(3808,'2015-03-10 21:49:30','2015-10-11 16:46:32',1,30001568,6,10,6,9,17,19,9,1,14,36,38,9,10,20,20,17,16,16,4,2,22,9,3,5),(3809,'2015-03-10 21:49:30','2015-10-11 16:46:32',1,30000638,10,1,9,6,10,7,4,4,10,6,11,23,22,5,103,69,10,11,8,6,9,4,8,5),(3810,'2015-03-10 21:49:30','2015-10-11 16:46:32',1,30000450,0,0,0,1,0,1,0,0,0,5,0,2,0,1,2,0,9,11,2,4,2,4,2,5),(3811,'2015-03-10 21:49:30','2015-10-11 16:46:32',1,30000977,9,1,9,10,14,13,10,4,2,4,2,3,5,1,10,10,4,12,6,6,7,7,6,5),(3812,'2015-03-10 21:49:30','2015-10-11 16:46:32',1,30004362,2,9,6,13,6,10,15,6,7,5,3,0,0,0,0,1,6,0,6,1,1,1,1,3),(3813,'2015-03-10 21:49:30','2015-10-11 16:46:32',1,30004471,5,6,0,6,10,4,13,4,3,0,0,5,4,8,6,10,22,16,5,12,9,25,12,14),(3814,'2015-03-10 21:49:30','2015-10-11 16:46:32',1,30003163,16,17,19,27,17,13,35,11,34,24,22,10,14,23,35,30,26,26,27,33,16,70,53,55),(3815,'2015-03-10 21:49:30','2015-10-11 16:46:32',1,30005185,4,6,1,0,4,3,1,1,2,11,14,4,6,7,6,4,1,3,1,4,11,32,31,11),(3816,'2015-03-10 21:49:30','2015-10-11 16:46:32',1,30004961,42,29,49,55,32,29,44,41,71,58,52,29,24,35,42,70,42,23,15,38,25,28,29,31),(3817,'2015-03-10 21:49:30','2015-10-11 16:46:32',1,30000198,62,34,42,45,39,41,56,19,26,55,68,49,54,299,70,269,136,66,45,45,90,89,55,107),(3818,'2015-03-10 21:49:30','2015-10-11 16:46:32',1,30002775,208,154,186,163,168,149,125,97,99,199,208,207,164,253,251,248,237,194,89,118,200,211,204,164),(3819,'2015-03-10 21:49:30','2015-10-11 16:46:32',1,30004253,4,11,51,2,19,11,11,6,12,6,5,8,9,25,12,9,11,2,7,8,9,1,1,0),(3820,'2015-03-10 21:49:30','2015-10-11 16:46:32',1,30003804,0,18,12,4,10,13,8,12,17,7,7,17,18,15,17,19,14,4,5,12,13,11,9,3),(3821,'2015-03-10 21:49:30','2015-10-11 16:46:32',1,30005198,717,735,751,847,723,707,640,463,540,758,855,816,737,899,1020,1009,897,722,618,747,919,986,1023,785),(3822,'2015-03-10 21:49:30','2015-10-11 16:46:32',1,30001390,26,15,29,43,39,30,20,6,7,25,29,15,19,15,35,29,27,34,13,12,19,37,27,23),(3823,'2015-03-10 21:49:30','2015-10-11 16:46:32',1,30003878,210,152,240,202,171,160,176,191,234,262,291,252,206,287,300,276,244,214,157,188,244,267,231,190),(3824,'2015-03-10 21:49:30','2015-10-11 16:46:32',1,30004992,18,26,18,18,16,16,31,12,10,27,28,70,20,38,30,27,23,18,17,7,60,18,21,20),(3825,'2015-03-10 21:49:30','2015-10-11 16:46:32',1,30003008,0,5,2,3,6,7,7,4,5,0,2,4,11,4,2,1,2,3,12,8,11,9,6,4),(3826,'2015-03-10 21:49:30','2015-10-11 16:46:32',1,30005232,157,128,173,145,153,138,145,104,108,240,238,232,204,241,269,277,250,212,159,194,230,234,202,236),(3827,'2015-03-10 21:49:30','2015-10-11 16:46:32',1,30005073,19,2,15,9,13,9,23,3,11,13,10,11,11,22,15,8,14,14,11,13,26,16,17,18),(3828,'2015-03-10 21:49:30','2015-10-11 16:46:32',1,30002676,99,63,109,109,84,82,60,73,85,108,105,77,73,108,137,147,125,103,73,67,95,124,125,108),(3829,'2015-03-10 21:49:30','2015-10-11 16:46:32',1,30004255,1,8,1,9,4,4,1,1,2,4,2,3,2,5,2,3,7,5,8,2,8,4,1,2),(3830,'2015-03-10 21:49:30','2015-10-11 16:46:32',1,30003909,36,50,54,31,51,48,55,28,24,56,55,51,33,60,51,67,51,34,21,38,56,59,64,51),(3831,'2015-03-10 21:49:30','2015-10-11 16:46:32',1,30005280,1,4,0,1,1,1,1,3,1,5,9,6,3,2,6,7,8,4,1,2,15,10,9,0),(3832,'2015-03-10 21:49:30','2015-10-11 16:46:32',1,30004998,33,26,42,23,35,16,57,26,20,41,48,50,37,38,44,51,37,39,22,18,27,30,32,32),(3833,'2015-03-10 21:49:30','2015-10-11 16:46:32',1,30021672,63,58,67,64,55,46,74,59,66,95,97,75,79,115,96,121,97,98,80,98,98,106,95,116),(3834,'2015-03-10 21:49:30','2015-10-11 16:46:32',1,30005231,172,152,160,155,159,149,170,123,116,242,238,247,212,265,272,262,251,225,182,205,259,267,264,246),(3835,'2015-03-10 21:49:30','2015-10-11 16:46:32',1,30001402,138,30,51,42,49,50,29,19,22,70,49,38,34,66,72,70,181,79,26,32,37,42,53,48),(3836,'2015-03-10 21:49:30','2015-10-11 16:46:32',1,30002544,382,289,286,316,361,274,314,184,259,368,408,366,349,433,501,478,431,368,277,328,409,485,431,370),(3837,'2015-03-10 21:49:30','2015-10-11 16:46:32',1,30002223,32,16,10,16,11,12,19,13,6,15,15,28,29,50,40,16,26,18,13,21,20,29,28,21),(3838,'2015-03-10 21:49:30','2015-10-11 16:46:32',1,30045320,58,76,98,61,44,70,27,44,65,94,83,57,53,143,52,55,73,52,52,61,46,49,53,56),(3839,'2015-03-10 21:49:30','2015-10-11 16:46:32',1,30001718,49,32,21,30,31,33,24,24,16,58,51,43,46,38,37,38,57,36,46,84,67,59,67,49),(3840,'2015-03-10 21:49:30','2015-10-11 16:46:32',1,30004657,2,2,0,0,2,2,9,0,1,5,6,9,3,6,5,0,1,11,3,0,10,3,4,1),(3841,'2015-03-10 21:49:30','2015-10-11 16:46:32',1,30000873,2,6,5,10,6,4,8,7,7,2,0,0,0,6,6,8,1,2,1,4,2,1,2,10),(3842,'2015-03-10 21:49:30','2015-03-10 21:49:30',1,30001483,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(3843,'2015-03-10 21:49:30','2015-10-11 16:46:32',1,30003286,27,35,191,26,22,18,24,18,17,68,34,37,30,113,46,59,53,31,53,75,47,39,63,52),(3844,'2015-03-10 21:49:30','2015-10-11 16:46:32',1,30004733,5,3,1,0,1,3,2,0,1,1,1,1,1,8,9,6,4,1,6,3,3,2,1,3),(3845,'2015-03-10 21:49:30','2015-10-11 16:46:32',1,30004825,2,22,27,30,34,32,38,138,17,13,17,16,7,11,13,11,8,8,13,8,8,12,4,18),(3846,'2015-03-10 21:49:30','2015-10-11 16:46:32',1,30003159,16,10,18,18,11,11,12,5,22,9,10,8,8,4,13,9,9,2,2,2,2,3,4,4),(3847,'2015-03-10 21:49:30','2015-10-11 16:46:32',1,30005118,3,6,10,10,7,8,6,7,4,9,5,9,4,7,10,8,3,4,14,9,22,9,4,1),(3848,'2015-03-10 21:49:30','2015-10-11 16:46:32',1,30000379,0,0,0,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(3849,'2015-03-10 21:49:30','2015-10-11 16:46:32',1,30003516,7,9,7,27,14,9,3,9,9,12,10,9,8,19,7,4,12,8,4,9,7,14,12,6),(3850,'2015-03-10 21:49:30','2015-10-11 16:46:32',1,30004829,2,15,15,28,18,20,28,52,6,7,13,5,3,6,12,8,8,5,11,8,9,8,3,17),(3851,'2015-03-10 21:49:30','2015-10-11 16:46:32',1,30003806,36,28,79,60,30,39,47,27,11,67,70,66,39,78,62,39,53,51,66,50,70,51,66,52),(3852,'2015-03-10 21:49:30','2015-10-11 16:46:32',1,30002211,30,26,50,33,32,33,14,42,26,49,51,32,41,47,53,63,35,29,20,29,53,36,48,33),(3853,'2015-03-10 21:49:30','2015-10-11 16:46:32',1,30004906,13,1,8,7,5,6,13,4,5,4,3,2,2,4,22,13,3,12,1,3,1,2,3,4),(3854,'2015-03-10 21:49:30','2015-10-11 16:46:32',1,30004978,335,169,232,211,196,163,197,140,163,207,202,201,146,327,295,257,238,221,129,228,273,249,236,226),(3855,'2015-03-10 21:49:30','2015-10-11 16:46:32',1,30004262,6,11,6,10,8,8,9,8,6,5,5,9,5,9,11,11,6,10,5,49,29,3,5,17),(3856,'2015-03-10 21:49:30','2015-10-11 16:46:32',1,30003488,547,688,553,461,490,501,429,313,387,635,663,546,531,695,715,708,687,645,443,465,567,674,672,617),(3857,'2015-03-10 21:49:30','2015-10-11 16:46:32',1,30001666,12,14,11,23,12,13,14,10,16,11,10,12,21,18,10,10,18,10,25,16,13,22,19,10),(3858,'2015-03-10 21:49:30','2015-10-11 16:46:32',1,30005061,18,11,23,32,18,21,18,7,22,71,48,25,29,39,24,29,45,32,20,31,34,23,25,27),(3859,'2015-03-10 21:49:30','2015-10-11 16:46:32',1,30005013,13,9,3,4,5,1,2,2,3,0,3,5,4,5,4,1,0,9,5,7,8,12,11,4),(3860,'2015-03-10 21:49:30','2015-10-11 16:46:32',1,30001693,6,8,13,5,3,3,9,2,11,4,6,8,5,8,24,17,18,13,10,7,13,10,11,6),(3861,'2015-03-10 21:49:30','2015-10-11 16:46:32',1,30000144,2360,1907,2183,2222,2285,2125,1826,1496,1677,2347,2561,2550,2303,2551,2731,2754,2769,2373,1675,1873,2293,2702,2705,2357),(3862,'2015-03-10 21:49:30','2015-10-11 16:46:32',1,30003573,33,24,37,40,40,45,11,21,16,47,43,51,52,26,33,40,41,17,12,17,23,18,19,24),(3863,'2015-03-10 21:49:30','2015-10-11 16:46:32',1,30005241,4,15,9,1,11,10,4,7,7,7,23,5,6,12,10,23,17,11,6,8,9,15,10,12),(3864,'2015-03-10 21:49:30','2015-10-11 16:46:32',1,30002632,168,91,163,125,128,134,136,85,99,184,179,164,151,206,220,193,210,144,136,191,195,191,179,146),(3865,'2015-03-10 21:49:30','2015-10-11 16:46:32',1,30004114,35,15,44,20,38,33,31,34,29,54,56,50,39,31,47,44,37,47,45,33,65,37,34,39),(3866,'2015-03-10 21:49:30','2015-10-11 16:46:32',1,30003277,56,43,40,43,43,38,46,53,41,50,59,62,51,65,43,33,49,39,35,126,153,119,69,30),(3867,'2015-03-10 21:49:30','2015-10-11 16:46:32',1,30004782,12,21,16,8,11,5,3,10,31,20,19,11,6,13,11,9,9,39,6,6,16,29,18,9),(3868,'2015-03-10 21:49:30','2015-10-11 16:46:32',1,30001324,17,21,26,7,12,15,12,16,9,14,24,8,18,33,22,18,12,21,10,20,37,18,16,17),(3869,'2015-03-10 21:49:30','2015-10-11 16:46:32',1,30003295,3,7,9,8,9,7,8,2,4,17,18,8,3,15,6,5,7,7,4,5,6,21,18,3),(3870,'2015-03-10 21:49:30','2015-10-11 16:46:32',1,30002009,1,16,7,8,9,5,5,5,21,1,1,9,6,4,4,1,6,9,3,7,4,7,4,0),(3871,'2015-03-10 21:49:30','2015-10-11 16:46:32',1,30005178,7,2,2,2,3,2,2,3,2,6,6,1,4,39,11,9,68,1,2,3,4,6,5,1),(3872,'2015-03-10 21:49:30','2015-10-11 16:46:32',1,30002145,5,5,5,4,4,7,27,5,10,2,0,10,14,3,16,22,4,7,0,2,6,8,5,7),(3873,'2015-03-10 21:49:30','2015-10-11 16:46:32',1,30001707,17,19,14,14,15,10,17,8,12,46,42,40,36,63,15,19,20,30,33,42,34,27,36,51),(3874,'2015-03-10 21:49:30','2015-10-11 16:46:32',1,30003735,60,28,28,26,22,33,43,22,23,80,89,50,38,70,91,89,55,31,29,46,79,51,54,33),(3875,'2015-03-10 21:49:30','2015-10-11 16:46:32',1,30001403,549,371,346,426,414,360,432,267,292,387,442,360,345,436,493,514,461,438,333,389,430,522,521,376),(3876,'2015-03-10 21:49:30','2015-10-11 16:46:32',1,30001391,262,138,172,190,187,171,167,112,140,136,180,145,152,176,213,194,251,190,85,143,136,193,178,172),(3877,'2015-03-10 21:49:30','2015-10-11 16:46:32',1,30001669,218,156,206,181,215,207,173,137,146,302,312,288,259,258,330,352,332,278,215,210,272,317,319,253),(3878,'2015-03-10 21:49:30','2015-10-11 16:46:32',1,30001652,60,58,56,57,66,71,39,55,54,95,95,62,65,66,103,91,71,67,37,46,71,74,71,88),(3879,'2015-03-10 21:49:30','2015-10-11 16:46:32',1,30005081,16,17,17,15,23,22,7,9,13,12,7,11,13,21,12,11,10,13,9,8,24,25,15,14),(3880,'2015-03-10 21:49:30','2015-10-11 16:46:32',1,30005277,0,1,2,3,1,4,1,3,1,7,5,7,6,8,6,7,4,8,1,5,9,4,5,5),(3881,'2015-03-10 21:49:30','2015-10-11 16:46:32',1,30000066,4,1,4,3,5,4,3,11,0,6,5,6,8,14,10,7,2,5,2,12,6,5,4,3),(3882,'2015-03-10 21:49:30','2015-10-11 16:46:32',1,30003167,3,7,9,11,0,2,5,10,7,8,7,3,4,3,3,2,3,8,4,4,3,6,5,8),(3883,'2015-03-10 21:49:30','2015-10-11 16:46:32',1,30004313,17,8,21,3,14,20,5,9,16,8,14,16,12,7,23,11,6,5,2,5,3,3,6,8),(3884,'2015-03-10 21:49:30','2015-10-11 16:46:32',1,30000654,1,2,22,2,4,7,5,5,1,2,2,0,1,3,2,0,1,2,0,1,2,3,5,1),(3885,'2015-03-10 21:49:30','2015-10-11 16:46:32',1,30000243,12,6,15,7,7,15,42,6,10,4,8,4,5,6,17,14,44,10,11,11,4,26,5,1),(3886,'2015-03-10 21:49:30','2015-10-11 16:46:32',1,30004411,3,0,5,6,4,8,1,2,8,4,4,4,3,3,4,6,2,3,5,3,4,7,8,9),(3887,'2015-03-10 21:49:30','2015-10-11 16:46:32',1,30003262,11,10,9,4,5,6,14,18,20,6,14,3,5,4,4,6,6,4,18,20,3,3,3,1),(3888,'2015-03-10 21:49:30','2015-10-11 16:46:32',1,30000866,114,36,131,77,63,47,56,24,61,82,101,211,118,160,71,76,31,40,16,47,39,47,52,39),(3889,'2015-03-10 21:49:30','2015-10-11 16:46:32',1,30002870,17,16,11,44,12,20,11,6,11,15,13,22,14,25,23,23,9,11,1,5,14,29,38,19),(3890,'2015-03-10 21:49:30','2015-10-11 16:46:32',1,30004559,7,3,5,13,1,5,5,7,13,374,291,193,155,794,15,15,23,32,160,53,293,17,13,16),(3891,'2015-03-10 21:49:30','2015-10-11 16:46:32',1,30003613,30,26,34,17,26,24,54,14,15,5,10,6,7,13,12,19,31,10,9,16,14,16,11,11),(3892,'2015-03-10 21:49:30','2015-10-11 16:46:32',1,30004431,7,6,0,21,12,9,14,3,21,9,13,11,5,6,9,12,23,18,5,18,14,19,8,12),(3893,'2015-03-10 21:49:30','2015-10-11 16:46:32',1,30001012,21,11,4,3,1,2,10,11,5,13,14,21,21,11,13,11,10,18,6,8,23,19,12,14),(3894,'2015-03-10 21:49:30','2015-10-11 16:46:32',1,30003604,6,10,19,32,29,21,17,18,3,12,20,11,8,19,19,24,19,8,13,23,18,25,20,19),(3895,'2015-03-10 21:49:30','2015-10-11 16:46:32',1,30000019,33,11,11,9,12,11,7,14,7,25,25,6,8,10,14,13,8,7,5,13,8,10,9,26),(3896,'2015-03-10 21:49:30','2015-10-11 16:46:32',1,30000153,732,620,746,825,662,664,654,564,603,919,938,867,825,1006,1043,980,1057,844,588,739,882,934,886,861),(3897,'2015-03-10 21:49:30','2015-10-11 16:46:32',1,30003271,21,15,124,13,9,10,16,24,22,17,21,4,3,28,31,15,21,4,29,24,16,53,44,13),(3898,'2015-03-10 21:49:30','2015-10-11 16:46:32',1,30000380,0,0,0,0,0,2,0,0,0,0,0,0,0,1,0,1,0,0,0,0,0,0,0,0),(3899,'2015-03-10 21:49:30','2015-10-11 16:46:32',1,30005048,77,38,54,65,80,73,49,34,35,85,88,51,47,67,93,88,70,58,72,54,74,57,68,75),(3900,'2015-03-10 21:49:30','2015-10-11 16:46:32',1,30003434,41,50,66,34,28,29,36,31,36,71,72,89,69,58,48,55,65,68,54,58,56,71,83,79),(3901,'2015-03-10 21:49:30','2015-10-11 16:46:32',1,30001147,1,0,5,2,1,0,1,2,0,1,0,2,3,1,0,0,0,2,0,0,1,4,2,1),(3902,'2015-03-10 21:49:30','2015-10-11 16:46:32',1,30002273,3,9,6,2,0,0,7,0,3,1,2,3,0,1,3,3,1,7,0,9,2,4,4,0),(3903,'2015-03-10 21:49:30','2015-10-11 16:46:32',1,30003581,13,23,16,20,42,38,22,21,13,58,71,33,24,20,24,22,16,7,14,20,25,18,30,22),(3904,'2015-03-10 21:49:30','2015-10-11 16:46:32',1,30003940,6,37,19,14,5,9,12,5,13,14,22,14,15,35,19,19,36,13,4,22,34,16,18,7),(3905,'2015-03-10 21:49:30','2015-10-11 16:46:32',1,30002714,69,50,44,69,58,45,65,49,41,66,79,65,60,78,86,78,82,98,39,81,73,71,56,84),(3906,'2015-03-10 21:49:30','2015-10-11 16:46:32',1,30002106,0,3,2,0,3,2,3,1,0,0,0,1,0,0,2,3,0,3,0,0,3,1,1,1),(3907,'2015-03-10 21:49:30','2015-10-11 16:46:32',1,30004065,33,16,115,21,32,19,8,8,21,18,22,10,9,13,16,18,9,24,5,21,5,14,20,15),(3908,'2015-03-10 21:49:30','2015-03-10 21:49:30',1,30001470,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(3909,'2015-03-10 21:49:30','2015-10-11 16:46:32',1,30000438,3,4,3,1,0,0,5,27,0,3,4,5,4,9,1,1,3,2,1,3,2,3,3,1),(3910,'2015-03-10 21:49:30','2015-03-10 21:49:30',1,30001628,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(3911,'2015-03-10 21:49:30','2015-10-11 16:46:32',1,30004711,47,49,59,22,31,34,95,49,102,197,145,167,151,95,125,139,90,54,27,81,100,98,139,95),(3912,'2015-03-10 21:49:30','2015-10-11 16:46:32',1,30045333,30,35,92,18,18,34,22,36,30,20,43,53,64,43,41,68,75,20,13,22,32,47,28,38),(3913,'2015-03-10 21:49:30','2015-10-11 16:46:32',1,30005284,6,14,10,7,9,9,3,9,7,18,11,4,5,10,4,6,5,11,8,8,1,35,4,4),(3914,'2015-03-10 21:49:30','2015-10-11 16:46:32',1,30004770,9,2,25,4,5,4,3,2,9,36,28,13,4,22,29,21,18,19,0,5,31,22,29,28),(3915,'2015-03-10 21:49:30','2015-10-11 16:46:32',1,30000027,10,3,5,1,3,4,5,4,2,4,1,5,6,11,5,3,7,8,4,3,8,3,2,0),(3916,'2015-03-10 21:49:30','2015-10-11 16:46:32',1,30004293,28,13,15,18,14,9,18,11,18,81,218,154,53,58,202,160,93,73,88,211,130,26,37,20),(3917,'2015-03-10 21:49:30','2015-10-11 16:46:32',1,30001863,31,12,26,9,9,11,8,4,9,45,270,193,51,27,38,40,48,34,14,13,28,51,46,91),(3918,'2015-03-10 21:49:30','2015-10-11 16:46:32',1,30000738,16,1,1,2,2,3,0,0,5,0,0,1,0,1,1,0,1,1,4,1,0,1,2,2),(3919,'2015-03-10 21:49:30','2015-10-11 16:46:32',1,30005162,0,1,2,2,1,0,0,1,0,0,0,0,0,0,1,1,0,1,0,0,0,0,0,2),(3920,'2015-03-10 21:49:30','2015-03-10 21:49:30',1,30000421,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(3921,'2015-03-10 21:49:30','2015-10-11 16:46:32',1,30000727,0,9,1,2,0,1,2,7,2,4,2,1,0,2,2,8,5,1,13,5,3,3,3,1),(3922,'2015-03-10 21:49:30','2015-10-11 16:46:32',1,30000990,1,2,9,6,5,6,11,2,3,3,3,2,1,0,2,2,0,1,1,0,2,2,4,0),(3923,'2015-03-10 21:49:30','2015-10-11 16:46:32',1,30002733,33,23,39,32,23,22,32,34,34,73,79,53,42,81,55,47,54,41,35,31,37,38,44,31),(3924,'2015-03-10 21:49:30','2015-10-11 16:46:32',1,30004754,50,22,5,17,9,13,3,11,40,36,30,27,15,25,40,43,29,21,13,17,39,36,31,20),(3925,'2015-03-10 21:49:30','2015-10-11 16:46:32',1,30002662,111,79,59,89,98,85,91,72,59,80,92,83,75,127,95,103,122,114,127,148,134,104,95,96),(3926,'2015-03-10 21:49:30','2015-10-11 16:46:32',1,30000161,75,48,42,28,48,48,67,23,53,39,47,59,57,48,64,54,57,42,44,36,59,79,73,33),(3927,'2015-03-10 21:49:30','2015-10-11 16:46:32',1,30004395,3,7,2,4,12,9,3,6,4,6,3,4,2,2,0,3,5,0,1,2,1,0,1,1),(3928,'2015-03-10 21:49:30','2015-10-11 16:46:32',1,30000978,16,7,21,17,26,23,32,21,8,31,48,9,11,11,47,31,11,11,7,12,11,35,47,22),(3929,'2015-03-10 21:49:30','2015-10-11 16:46:32',1,30005147,9,12,17,17,9,5,13,7,7,11,12,19,21,18,15,12,9,26,11,4,7,24,26,14),(3930,'2015-03-10 21:49:30','2015-10-11 16:46:32',1,30003283,14,10,14,24,22,17,6,22,11,19,8,14,17,18,16,42,28,21,41,58,10,15,8,9),(3931,'2015-03-10 21:49:30','2015-10-11 16:46:32',1,30001106,7,8,13,10,9,9,24,2,4,8,11,15,14,15,16,12,6,5,2,1,11,53,37,13),(3932,'2015-03-10 21:49:30','2015-10-11 16:46:32',1,30002370,23,17,57,40,53,38,42,26,38,97,103,27,32,336,468,470,124,63,47,34,36,59,55,25),(3933,'2015-03-10 21:49:30','2015-10-11 16:46:32',1,30000316,8,7,9,10,5,6,5,1,3,6,7,16,7,4,8,10,18,22,2,3,5,8,7,1),(3934,'2015-03-10 21:49:30','2015-10-11 16:46:32',1,30002290,6,3,4,1,3,2,6,2,2,16,20,9,8,3,1,3,4,4,0,0,1,14,10,6),(3935,'2015-03-10 21:49:30','2015-10-11 16:46:32',1,30004647,6,2,1,3,5,9,1,2,1,11,12,4,5,4,1,1,3,6,8,8,17,5,12,6),(3936,'2015-03-10 21:49:30','2015-10-11 16:46:32',1,30045353,229,212,365,207,258,291,152,231,173,427,408,156,149,285,318,322,205,178,314,261,318,255,221,209),(3937,'2015-03-10 21:49:30','2015-10-11 16:46:32',1,30002490,3,20,1,3,6,4,3,4,9,13,8,11,13,3,4,7,5,9,1,1,5,4,6,9),(3938,'2015-03-10 21:49:30','2015-10-11 16:46:32',1,30002615,3,0,6,0,2,0,3,0,1,4,2,1,3,6,24,1,1,1,1,10,2,0,1,5),(3939,'2015-03-10 21:49:30','2015-10-11 16:46:32',1,30001310,8,4,10,5,14,6,9,5,6,5,8,19,21,12,34,14,5,16,7,17,6,2,4,2),(3940,'2015-03-10 21:49:30','2015-03-10 21:49:30',1,30001449,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(3941,'2015-03-10 21:49:30','2015-10-11 16:46:32',1,30004787,4,2,0,4,15,14,2,2,17,27,20,20,25,30,30,32,46,37,20,7,15,21,22,19),(3942,'2015-03-10 21:49:30','2015-10-11 16:46:32',1,30000797,85,16,34,22,43,45,21,30,21,5,3,17,10,11,12,12,27,25,1,1,1,8,8,9),(3943,'2015-03-10 21:49:30','2015-10-11 16:46:32',1,30004389,1,6,3,3,3,1,8,3,2,0,1,0,1,2,0,2,5,5,1,1,2,2,4,1),(3944,'2015-03-10 21:49:30','2015-10-11 16:46:32',1,30002001,2,3,3,2,2,2,1,2,8,2,1,1,1,3,3,2,9,2,9,3,2,1,1,4),(3945,'2015-03-10 21:49:30','2015-10-11 16:46:32',1,30001326,2,6,2,1,1,3,4,3,1,2,4,4,3,4,5,3,1,3,1,1,4,0,0,2),(3946,'2015-03-10 21:49:30','2015-10-11 16:46:32',1,30000872,48,28,17,36,41,42,63,45,19,32,55,75,72,25,109,116,40,13,21,65,116,20,25,18),(3947,'2015-03-10 21:49:30','2015-10-11 16:46:32',1,30000274,13,14,43,19,25,33,58,24,27,6,2,6,3,1,1,1,2,3,5,5,32,1,1,4),(3948,'2015-03-10 21:49:30','2015-10-11 16:46:32',1,30004321,9,8,27,17,26,44,8,22,16,5,6,7,5,4,3,3,7,4,3,4,2,5,7,8),(3949,'2015-03-10 21:49:30','2015-10-11 16:46:32',1,30002844,14,11,6,11,16,27,9,4,8,10,19,14,12,33,14,19,10,6,3,7,25,14,18,20),(3950,'2015-03-10 21:49:30','2015-10-11 16:46:32',1,30000586,85,19,29,34,66,19,43,22,18,63,45,26,18,42,69,46,60,24,36,134,70,199,190,56),(3951,'2015-03-10 21:49:30','2015-10-11 16:46:32',1,30004737,9,14,36,9,12,14,19,27,45,76,90,63,60,72,62,49,70,59,55,61,59,78,72,44),(3952,'2015-03-10 21:49:30','2015-10-11 16:46:32',1,30002132,1,0,2,0,0,1,0,4,0,0,2,0,1,1,1,1,2,0,5,0,0,5,5,1),(3953,'2015-03-10 21:49:30','2015-10-11 16:46:32',1,30003222,33,5,5,21,13,10,7,11,22,18,20,11,16,13,14,12,21,11,23,39,15,21,16,11),(3954,'2015-03-10 21:49:30','2015-10-11 16:46:32',1,30004749,11,7,3,6,6,8,3,4,6,9,13,8,7,30,17,24,34,31,14,2,14,7,15,13),(3955,'2015-03-10 21:49:30','2015-10-11 16:46:32',1,30000682,31,23,150,36,62,65,45,30,18,29,48,28,31,35,67,59,40,15,4,46,102,38,25,42),(3956,'2015-03-10 21:49:30','2015-03-10 21:49:30',1,30000432,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(3957,'2015-03-10 21:49:30','2015-10-11 16:46:32',1,30000256,6,9,11,7,7,1,16,12,4,10,9,8,10,15,13,14,10,12,9,4,8,27,25,17),(3958,'2015-03-10 21:49:30','2015-10-11 16:46:32',1,30000717,6,5,41,11,45,45,8,14,8,25,18,13,17,143,71,25,16,12,4,28,144,11,25,17),(3959,'2015-03-10 21:49:30','2015-10-11 16:46:32',1,30004337,1,3,5,2,1,2,1,3,2,1,0,0,2,3,1,1,3,2,0,1,0,0,0,1),(3960,'2015-03-10 21:49:30','2015-10-11 16:46:32',1,30001838,27,32,49,62,25,35,20,13,23,51,59,46,57,52,64,66,48,49,14,41,33,27,38,42),(3961,'2015-03-10 21:49:30','2015-10-11 16:46:32',1,30000235,4,17,2,8,6,3,5,8,6,0,0,0,1,1,1,2,2,6,0,0,2,2,4,3),(3962,'2015-03-10 21:49:30','2015-10-11 16:46:32',1,30001196,188,18,9,19,13,8,14,29,38,8,42,22,18,19,23,26,24,9,8,17,25,12,11,12),(3963,'2015-03-10 21:49:30','2015-10-11 16:46:32',1,30002471,11,18,10,16,22,19,22,8,12,26,31,25,31,27,43,40,40,49,2,15,37,25,29,19),(3964,'2015-03-10 21:49:30','2015-10-11 16:46:32',1,30001248,38,21,28,96,18,17,30,15,54,114,237,105,77,109,161,119,136,170,72,124,100,109,94,125),(3965,'2015-03-10 21:49:30','2015-10-11 16:46:32',1,30004054,0,2,2,4,13,11,1,0,4,31,10,1,1,0,3,0,0,8,0,0,0,0,2,2),(3966,'2015-03-10 21:49:30','2015-10-11 16:46:32',1,30000618,64,4,11,11,9,4,9,4,7,13,13,104,66,13,16,7,16,20,10,16,28,20,19,11),(3967,'2015-03-10 21:49:30','2015-10-11 16:46:32',1,30001562,9,8,12,4,7,11,2,11,10,18,31,12,9,3,4,7,5,12,4,10,7,12,9,12),(3968,'2015-03-10 21:49:30','2015-10-11 16:46:32',1,30004229,0,5,0,2,4,8,1,1,1,0,0,0,0,0,4,1,1,4,0,0,2,1,2,25),(3969,'2015-03-10 21:49:30','2015-10-11 16:46:32',1,30004571,3,3,1,4,7,1,0,0,2,4,4,2,2,2,4,4,3,4,1,2,1,2,1,1),(3970,'2015-03-10 21:49:30','2015-10-11 16:46:32',1,30004845,8,9,5,4,2,3,2,51,58,7,4,5,6,2,8,12,9,1,11,12,20,6,9,8),(3971,'2015-03-10 21:49:30','2015-10-11 16:46:32',1,30000507,0,0,0,1,0,0,0,1,2,0,0,2,0,2,3,3,4,0,1,0,0,1,2,1),(3972,'2015-03-10 21:49:30','2015-10-11 16:46:32',1,30003112,46,34,25,41,21,32,39,20,43,34,29,36,74,147,200,172,42,52,38,31,57,52,45,51),(3973,'2015-03-10 21:49:30','2015-10-11 16:46:32',1,30003146,3,7,1,0,3,3,2,4,0,2,3,0,4,1,1,0,2,4,0,3,4,1,0,6),(3974,'2015-03-10 21:49:30','2015-10-11 16:46:32',1,30003669,26,11,10,17,15,10,123,3,11,17,27,5,10,13,8,12,6,5,18,13,24,8,3,12),(3975,'2015-03-10 21:49:30','2015-10-11 16:46:32',1,30003975,10,5,2,2,3,1,4,2,2,1,2,2,3,7,7,4,6,3,6,2,2,4,4,5),(3976,'2015-03-10 21:49:30','2015-10-11 16:46:32',1,30000946,1,4,9,4,2,9,4,8,10,5,3,5,6,10,6,15,13,8,10,4,5,9,70,29),(3977,'2015-03-10 21:49:30','2015-10-11 16:46:32',1,30000324,8,7,14,10,13,11,7,1,6,1,11,26,16,6,4,2,1,14,4,16,14,5,2,1),(3978,'2015-03-10 21:49:30','2015-10-11 16:46:32',1,30000715,34,11,50,37,68,67,23,20,11,28,17,18,26,147,90,33,27,25,10,53,156,14,33,16),(3979,'2015-03-10 21:49:30','2015-10-11 16:46:32',1,30004846,8,5,7,5,1,4,1,66,70,12,10,8,8,12,11,14,13,1,12,14,19,12,12,12),(3980,'2015-03-10 21:49:30','2015-10-11 16:46:32',1,30001323,9,18,6,4,5,2,4,0,5,5,0,3,8,0,5,2,6,3,5,11,6,12,8,7),(3981,'2015-03-10 21:49:30','2015-10-11 16:46:32',1,30000785,97,25,66,55,66,63,49,14,53,22,23,18,21,24,19,26,13,13,4,4,7,17,15,25),(3982,'2015-03-10 21:49:30','2015-10-11 16:46:32',1,30001763,26,19,21,26,31,26,7,9,28,6,9,5,7,1,9,10,13,4,0,3,6,8,17,9),(3983,'2015-03-10 21:49:30','2015-03-10 21:49:30',1,30000413,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(3984,'2015-03-10 21:49:30','2015-10-11 16:46:32',1,30004066,0,5,0,1,0,0,1,0,1,1,2,1,1,4,1,3,1,5,0,0,0,1,3,8),(3985,'2015-03-10 21:49:30','2015-10-11 16:46:32',1,30003183,6,3,4,5,0,5,3,4,4,6,2,4,3,1,8,6,4,7,3,0,3,4,4,10),(3986,'2015-03-10 21:49:30','2015-10-11 16:46:32',1,30004408,35,9,13,21,10,11,17,20,40,20,14,18,10,63,57,60,46,40,17,30,117,68,32,44),(3987,'2015-03-10 21:49:30','2015-10-11 16:46:32',1,30003714,63,23,24,30,21,28,37,23,18,73,76,51,45,102,64,71,48,32,35,42,61,54,53,50),(3988,'2015-03-10 21:49:30','2015-10-11 16:46:32',1,30001165,29,12,20,28,12,5,6,7,8,68,69,32,22,26,16,21,18,26,18,39,35,26,23,20),(3989,'2015-03-10 21:49:30','2015-10-11 16:46:32',1,30002363,23,19,51,43,75,82,39,25,40,45,43,22,23,86,66,67,45,50,37,24,28,53,48,16),(3990,'2015-03-10 21:49:30','2015-10-11 16:46:32',1,30004744,26,20,9,6,5,11,12,6,13,11,11,12,11,15,17,14,32,13,14,8,21,28,28,23),(3991,'2015-03-10 21:49:30','2015-10-11 16:46:32',1,30004855,5,4,1,0,2,7,3,5,23,5,4,4,3,4,5,7,6,4,3,2,1,4,6,6),(3992,'2015-03-10 21:49:30','2015-10-11 16:46:32',1,30001080,6,2,8,2,3,3,8,9,8,2,2,2,2,7,5,4,9,12,3,0,0,4,4,3),(3993,'2015-03-10 21:49:30','2015-10-11 16:46:32',1,30001935,4,3,10,5,11,13,9,6,7,12,13,5,9,12,11,15,13,7,2,4,4,4,3,2),(3994,'2015-03-10 21:49:30','2015-10-11 16:46:32',1,30004343,28,36,37,58,50,42,19,45,39,25,33,22,20,13,19,30,24,11,6,16,15,18,12,19),(3995,'2015-03-10 21:49:30','2015-10-11 16:46:32',1,30002138,61,14,48,21,23,22,32,24,9,43,47,21,15,21,47,55,21,16,5,39,10,37,42,23),(3996,'2015-03-10 21:49:30','2015-10-11 16:46:32',1,30003221,39,19,14,36,36,16,8,18,13,35,32,22,24,39,25,23,42,11,12,25,15,33,23,20),(3997,'2015-03-10 21:49:30','2015-10-11 16:46:32',1,30001246,6,2,12,25,16,12,25,13,19,145,201,87,51,98,146,100,130,154,73,122,129,72,98,103),(3998,'2015-03-10 21:49:30','2015-10-11 16:46:32',1,30001033,26,21,9,8,10,14,16,10,6,24,15,19,14,8,16,15,18,41,6,14,12,10,13,19),(3999,'2015-03-10 21:49:30','2015-10-11 16:46:32',1,30000899,11,22,37,33,18,15,25,5,32,9,10,11,11,22,20,29,23,22,6,14,18,17,15,15),(4000,'2015-03-10 21:49:30','2015-10-11 16:46:32',1,30003164,14,15,14,19,13,11,29,7,27,28,25,12,13,26,34,26,24,20,30,35,24,69,68,65),(4001,'2015-03-10 21:49:30','2015-10-11 16:46:32',1,30003181,5,0,3,1,1,0,2,3,3,4,5,6,2,4,3,1,1,1,2,2,0,2,1,5),(4002,'2015-03-10 21:49:30','2015-10-11 16:46:32',1,30001766,4,0,2,1,0,1,0,0,2,0,0,1,0,0,2,0,1,0,0,1,1,0,0,1),(4003,'2015-03-10 21:49:30','2015-10-11 16:46:32',1,30001564,2,2,3,4,1,2,0,2,0,2,4,2,4,3,3,2,13,4,1,3,5,1,1,5),(4004,'2015-03-10 21:49:30','2015-10-11 16:46:32',1,30001772,13,11,5,7,18,15,4,2,13,10,6,9,10,5,6,5,22,13,3,3,6,3,2,5),(4005,'2015-03-10 21:49:30','2015-10-11 16:46:32',1,30001749,6,8,8,48,9,11,8,5,5,4,3,1,0,7,13,15,2,5,1,2,4,6,6,7),(4006,'2015-03-10 21:49:30','2015-10-11 16:46:32',1,30001305,23,24,33,17,19,21,14,7,16,27,36,19,19,22,65,46,8,10,19,30,45,37,34,19),(4007,'2015-03-10 21:49:30','2015-10-11 16:46:32',1,30002364,5,3,5,5,10,6,10,9,7,2,3,8,11,3,34,25,9,1,10,24,1,24,19,1),(4008,'2015-03-10 21:49:30','2015-10-11 16:46:32',1,30005144,6,8,0,0,1,2,0,2,6,3,1,0,0,1,0,1,1,2,0,0,1,0,0,1),(4009,'2015-03-10 21:49:30','2015-10-11 16:46:32',1,30002104,46,13,61,20,21,16,28,20,5,42,39,19,13,21,50,53,21,17,5,38,16,36,37,19),(4010,'2015-03-10 21:49:30','2015-10-11 16:46:32',1,30004837,33,14,3,4,2,2,3,38,24,6,6,8,3,7,3,6,14,1,8,15,10,14,5,4),(4011,'2015-03-10 21:49:30','2015-10-11 16:46:32',1,30000505,0,0,1,1,0,0,0,1,1,0,0,2,1,3,0,0,3,1,1,0,1,0,0,2),(4012,'2015-03-10 21:49:30','2015-03-10 21:49:30',1,30001467,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(4013,'2015-03-10 21:49:30','2015-10-11 16:46:32',1,30004448,0,2,0,1,2,0,3,1,0,0,1,0,0,0,0,0,0,0,0,2,0,1,2,0),(4014,'2015-03-10 21:49:30','2015-10-11 16:46:32',1,30002307,1,1,4,0,2,3,2,0,1,1,1,0,0,0,0,0,0,0,2,2,2,0,0,0),(4015,'2015-03-10 21:49:30','2015-10-11 16:46:32',1,30005172,2,11,7,12,7,5,5,4,1,9,6,10,12,4,5,3,2,13,0,0,1,2,3,7),(4016,'2015-03-10 21:49:30','2015-10-11 16:46:32',1,30002431,9,0,2,1,1,0,4,1,4,5,8,4,1,1,1,1,6,3,0,1,5,4,8,1),(4017,'2015-03-10 21:49:30','2015-10-11 16:46:32',1,30000475,2,1,2,3,0,1,1,3,3,5,5,8,6,8,20,9,10,10,22,228,6,15,15,7),(4018,'2015-03-10 21:49:30','2015-10-11 16:46:32',1,30004857,7,10,7,7,11,8,3,17,4,8,2,5,6,1,9,9,4,5,4,15,9,2,6,13),(4019,'2015-03-10 21:49:30','2015-10-11 16:46:32',1,30000941,5,4,9,9,3,3,4,2,2,4,4,2,5,6,6,4,5,8,4,7,3,9,7,2),(4020,'2015-03-10 21:49:30','2015-10-11 16:46:32',1,30001903,6,8,13,28,24,15,6,10,12,18,19,17,17,39,33,41,29,13,6,19,13,17,12,38),(4021,'2015-03-10 21:49:30','2015-10-11 16:46:32',1,30002186,20,11,10,9,9,8,17,3,4,22,20,20,12,20,24,29,14,1,15,7,30,26,36,13),(4022,'2015-03-10 21:49:30','2015-10-11 16:46:32',1,30002288,19,9,16,15,9,15,20,14,15,10,8,7,10,12,11,8,11,7,28,5,34,9,10,16),(4023,'2015-03-10 21:49:30','2015-03-10 21:49:30',1,30001473,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(4024,'2015-03-10 21:49:30','2015-10-11 16:46:32',1,30003739,20,9,7,4,6,9,13,16,11,19,16,14,10,4,9,8,13,6,7,5,10,12,14,8),(4025,'2015-03-10 21:49:30','2015-10-11 16:46:32',1,30001783,33,11,6,11,14,18,2,27,4,20,43,27,22,93,74,51,62,38,16,11,34,17,28,36),(4026,'2015-03-10 21:49:30','2015-10-11 16:46:32',1,30002479,14,18,21,24,19,19,18,24,19,13,11,6,9,18,78,75,29,15,4,11,17,13,10,16),(4027,'2015-03-10 21:49:30','2015-10-11 16:46:32',1,30002893,37,11,75,22,21,22,13,15,22,219,193,261,139,430,331,366,335,134,208,129,220,390,252,86),(4028,'2015-03-10 21:49:30','2015-10-11 16:46:32',1,30000722,4,20,12,8,15,11,4,19,12,31,22,70,73,35,26,36,30,19,16,14,19,25,18,32),(4029,'2015-03-10 21:49:30','2015-10-11 16:46:32',1,30000938,6,4,4,8,4,6,5,1,2,1,6,7,10,6,8,3,7,3,1,6,2,9,7,2),(4030,'2015-03-10 21:49:30','2015-10-11 16:46:32',1,30001565,21,12,17,17,22,54,6,10,11,105,186,83,40,30,23,38,81,18,20,13,27,28,29,22),(4031,'2015-03-10 21:49:30','2015-10-11 16:46:32',1,30003719,47,19,14,13,15,31,13,12,8,19,27,42,47,28,40,46,34,53,21,26,26,41,36,40),(4032,'2015-03-10 21:49:30','2015-10-11 16:46:32',1,30004815,5,9,14,19,16,13,13,51,4,3,5,11,10,12,15,12,6,11,10,10,14,12,13,15),(4033,'2015-03-10 21:49:30','2015-10-11 16:46:32',1,30000481,0,0,3,0,1,1,1,0,0,0,0,6,5,3,5,2,0,0,0,0,0,3,1,3),(4034,'2015-03-10 21:49:30','2015-10-11 16:46:32',1,30001596,0,1,0,1,1,1,4,0,5,30,30,22,21,45,31,25,35,28,46,39,52,57,58,38),(4035,'2015-03-10 21:49:30','2015-10-11 16:46:32',1,30003174,7,5,2,7,5,2,10,3,3,15,5,12,15,13,11,5,4,5,15,13,6,17,11,14),(4036,'2015-03-10 21:49:30','2015-10-11 16:46:32',1,30001137,2,0,12,1,0,1,6,2,3,8,12,14,10,1,1,1,0,1,1,1,7,0,0,4),(4037,'2015-03-10 21:49:30','2015-10-11 16:46:32',1,30004909,36,13,37,31,48,37,34,23,33,22,29,39,47,35,50,45,30,20,19,157,17,24,25,36),(4038,'2015-03-10 21:49:30','2015-10-11 16:46:32',1,30001163,34,10,18,24,10,5,6,7,8,59,61,35,22,27,19,22,23,39,23,42,36,29,26,19),(4039,'2015-03-10 21:49:30','2015-10-11 16:46:32',1,30004198,10,4,15,9,14,13,17,8,6,14,12,13,14,11,2,9,4,4,0,5,3,6,6,15),(4040,'2015-03-10 21:49:30','2015-10-11 16:46:32',1,30000793,51,28,14,10,10,6,25,12,28,10,11,15,20,16,31,64,35,16,4,21,21,40,31,11),(4041,'2015-03-10 21:49:30','2015-03-10 21:49:30',1,30001617,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(4042,'2015-03-10 21:49:30','2015-10-11 16:46:32',1,30003037,51,39,88,71,67,67,62,46,55,64,91,76,63,97,148,152,110,91,123,114,118,102,98,97),(4043,'2015-03-10 21:49:30','2015-10-11 16:46:32',1,30004610,2,0,1,6,1,1,1,1,0,162,28,26,15,11,19,17,29,20,15,17,29,11,10,8),(4044,'2015-03-10 21:49:30','2015-10-11 16:46:32',1,30003292,8,7,9,4,3,6,7,0,8,2,5,7,7,6,3,2,1,2,4,10,1,4,3,9),(4045,'2015-03-10 21:49:30','2015-10-11 16:46:32',1,30002829,6,11,0,4,9,3,3,1,2,0,0,0,2,0,1,1,3,4,1,2,2,0,5,5),(4046,'2015-03-10 21:49:30','2015-10-11 16:46:32',1,30004714,8,6,29,3,7,10,13,10,22,155,56,175,44,59,72,58,44,55,31,34,58,14,18,20),(4047,'2015-03-10 21:49:30','2015-10-11 16:46:32',1,30000526,2,4,0,1,0,0,0,0,0,0,0,0,0,0,2,2,0,1,1,1,1,2,2,1),(4048,'2015-03-10 21:49:30','2015-10-11 16:46:32',1,30004354,41,28,34,11,21,21,13,33,38,19,27,25,30,21,21,27,12,12,12,34,17,21,16,26),(4049,'2015-03-10 21:49:30','2015-10-11 16:46:32',1,30004002,7,6,8,7,3,2,9,6,5,2,10,12,11,5,2,1,3,0,3,5,2,0,0,3),(4050,'2015-03-10 21:49:30','2015-10-11 16:46:32',1,30004041,16,7,20,28,78,22,17,3,16,31,52,42,24,29,38,20,14,15,13,34,22,16,20,12),(4051,'2015-03-10 21:49:30','2015-10-11 16:46:32',1,30004027,9,8,11,7,7,6,4,4,9,22,16,13,39,40,130,20,16,39,4,5,39,15,16,14),(4052,'2015-03-10 21:49:30','2015-10-11 16:46:32',1,30003244,5,2,1,3,0,4,9,7,1,0,0,7,10,3,6,6,3,3,0,0,1,11,13,5),(4053,'2015-03-10 21:49:30','2015-10-11 16:46:32',1,30004752,79,6,2,6,8,8,3,8,20,24,18,17,18,19,25,23,34,14,4,8,13,40,47,13),(4054,'2015-03-10 21:49:30','2015-10-11 16:46:32',1,30000767,18,2,12,13,10,16,0,3,20,34,20,12,17,3,6,7,11,7,1,11,6,3,6,6),(4055,'2015-03-10 21:49:30','2015-10-11 16:46:32',1,30003266,13,8,31,9,6,7,12,20,8,6,8,5,6,6,8,10,6,9,14,6,5,12,7,4),(4056,'2015-03-10 21:49:30','2015-10-11 16:46:32',1,30004402,0,10,8,9,10,6,29,1,11,37,37,16,18,38,27,24,31,34,46,62,50,26,24,28),(4057,'2015-03-10 21:49:30','2015-10-11 16:46:32',1,30003236,2,7,2,5,4,3,1,1,2,10,4,2,2,1,2,1,4,2,0,1,6,3,4,1),(4058,'2015-03-10 21:49:30','2015-10-11 16:46:32',1,30001107,8,11,25,26,10,10,25,3,8,20,15,25,27,29,34,20,17,22,8,5,22,88,89,38),(4059,'2015-03-10 21:49:30','2015-10-11 16:46:32',1,30002330,1,2,0,2,1,0,1,2,1,0,0,0,0,1,1,0,1,0,0,0,0,0,0,1),(4060,'2015-03-10 21:49:30','2015-10-11 16:46:32',1,30002837,7,5,2,5,3,4,2,3,5,1,1,6,10,3,4,10,2,4,1,2,3,1,1,3),(4061,'2015-03-10 21:49:30','2015-10-11 16:46:32',1,30002002,28,14,13,9,13,14,13,14,26,6,7,9,8,7,8,3,10,1,14,11,6,3,4,7),(4062,'2015-03-10 21:49:30','2015-10-11 16:46:32',1,30000658,13,36,97,22,62,31,41,18,21,76,69,58,34,65,56,65,26,17,27,33,30,28,29,24),(4063,'2015-03-10 21:49:30','2015-10-11 16:46:32',1,30002324,10,3,7,8,2,4,2,7,3,0,0,0,0,4,3,1,3,2,3,0,36,2,4,4),(4064,'2015-03-10 21:49:30','2015-10-11 16:46:32',1,30005099,6,7,1,2,1,1,4,4,2,6,1,5,3,9,3,5,5,7,2,15,1,24,9,2),(4065,'2015-03-10 21:49:30','2015-10-11 16:46:32',1,30003151,35,18,19,29,38,21,41,26,45,35,34,18,42,55,51,40,37,32,34,35,32,96,63,51),(4066,'2015-03-10 21:49:30','2015-10-11 16:46:32',1,30005112,11,6,8,29,14,16,1,8,11,4,4,0,0,1,4,8,0,0,4,6,16,1,1,0),(4067,'2015-03-10 21:49:30','2015-10-11 16:46:32',1,30004648,2,0,2,1,0,5,2,1,1,7,7,2,5,1,9,8,3,6,4,8,1,1,6,8),(4068,'2015-03-10 21:49:30','2015-10-11 16:46:32',1,30000950,3,10,7,7,10,4,4,1,4,8,5,11,6,5,3,6,9,6,5,2,4,1,4,2),(4069,'2015-03-10 21:49:30','2015-10-11 16:46:32',1,30003127,5,10,1,0,2,3,7,2,0,2,3,4,3,3,5,6,3,3,0,1,2,0,0,2),(4070,'2015-03-10 21:49:30','2015-03-10 21:49:30',1,30001491,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(4071,'2015-03-10 21:49:30','2015-10-11 16:46:32',1,30001189,2,3,4,2,5,5,5,6,6,7,46,20,16,9,3,6,9,5,4,6,9,11,3,4),(4072,'2015-03-10 21:49:30','2015-10-11 16:46:32',1,30001265,23,6,69,9,10,5,4,5,4,129,37,104,27,135,39,247,51,16,13,17,81,23,126,27),(4073,'2015-03-10 21:49:30','2015-10-11 16:46:32',1,30002013,54,11,5,12,5,3,3,4,4,4,2,4,4,3,1,2,6,5,2,7,2,2,3,8),(4074,'2015-03-10 21:49:30','2015-10-11 16:46:32',1,30004522,2,7,4,11,10,8,2,4,3,5,5,6,6,10,5,2,8,5,5,2,2,2,12,1),(4075,'2015-03-10 21:49:30','2015-10-11 16:46:32',1,30002182,127,28,42,42,46,28,63,31,28,42,25,15,16,46,41,51,76,22,29,115,163,57,78,47),(4076,'2015-03-10 21:49:30','2015-10-11 16:46:32',1,30000291,0,12,2,7,4,2,10,3,11,16,13,8,14,3,21,9,4,12,1,6,17,10,6,5),(4077,'2015-03-10 21:49:30','2015-10-11 16:46:32',1,30001577,3,1,2,1,1,2,1,0,0,0,0,0,0,2,0,0,0,0,10,0,0,1,1,0),(4078,'2015-03-10 21:49:30','2015-10-11 16:46:32',1,30001102,3,5,1,4,3,0,0,0,1,1,2,0,2,1,1,2,1,2,1,4,2,1,1,1),(4079,'2015-03-10 21:49:30','2015-10-11 16:46:32',1,30000320,6,11,17,21,19,17,11,10,21,15,22,26,17,21,10,5,5,60,9,23,9,11,12,6),(4080,'2015-03-10 21:49:30','2015-10-11 16:46:32',1,30004853,1,1,0,0,0,0,2,1,0,4,1,0,0,1,0,1,0,1,7,0,0,2,1,2),(4081,'2015-03-10 21:49:30','2015-10-11 16:46:32',1,30003631,71,66,87,68,48,41,92,49,44,28,41,20,9,28,15,16,38,31,12,29,20,26,38,32),(4082,'2015-03-10 21:49:30','2015-10-11 16:46:32',1,30003218,56,20,14,26,20,19,11,19,19,27,37,20,23,17,19,22,26,13,13,32,24,24,24,35),(4083,'2015-03-10 21:49:30','2015-10-11 16:46:32',1,30002135,2,4,0,1,1,3,3,1,0,7,12,1,0,22,2,2,2,2,0,0,2,0,0,0),(4084,'2015-03-10 21:49:30','2015-10-11 16:46:32',1,30000563,11,5,2,9,14,2,4,9,3,20,13,12,12,18,11,15,9,8,7,10,4,4,6,3),(4085,'2015-03-10 21:49:30','2015-10-11 16:46:32',1,30004871,77,19,40,29,30,20,50,37,20,42,16,15,15,21,19,21,30,23,14,124,162,30,57,43),(4086,'2015-03-10 21:49:30','2015-03-10 21:49:30',1,30001450,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(4087,'2015-03-10 21:49:30','2015-10-11 16:46:32',1,30002874,17,7,5,7,10,15,12,5,7,7,18,12,8,32,14,17,10,6,4,6,23,14,21,20),(4088,'2015-03-10 21:49:30','2015-10-11 16:46:32',1,30004891,54,12,12,26,5,8,24,6,3,13,7,0,1,16,8,18,8,1,8,7,18,7,6,0),(4089,'2015-03-10 21:49:30','2015-10-11 16:46:32',1,30003769,48,92,95,83,98,66,45,32,47,78,86,106,92,134,118,116,80,66,59,65,134,59,81,101),(4090,'2015-03-10 21:49:30','2015-10-11 16:46:32',1,30001806,21,17,12,9,21,25,12,45,9,19,50,10,8,13,14,20,12,9,2,3,8,4,7,9),(4091,'2015-03-10 21:49:30','2015-10-11 16:46:32',1,30004566,0,1,3,7,3,3,0,5,2,2,3,5,3,6,4,6,1,1,4,0,2,2,1,2),(4092,'2015-03-10 21:49:30','2015-10-11 16:46:32',1,30004473,0,1,6,2,6,5,1,2,0,0,1,3,3,4,1,0,0,6,0,1,4,2,1,3),(4093,'2015-03-10 21:49:30','2015-10-11 16:46:32',1,30000589,2,7,37,9,7,5,5,4,11,16,11,3,0,115,59,39,8,3,10,15,8,10,27,5),(4094,'2015-03-10 21:49:30','2015-10-11 16:46:32',1,30004339,3,5,5,13,9,5,4,5,8,5,2,3,4,22,47,8,6,6,0,11,11,0,4,7),(4095,'2015-03-10 21:49:30','2015-10-11 16:46:32',1,30004727,0,0,0,0,0,0,0,1,1,0,0,0,0,1,3,2,2,2,2,0,2,1,3,1),(4096,'2015-03-10 21:49:30','2015-10-11 16:46:32',1,30002010,256,67,78,44,46,50,80,59,44,32,41,61,61,17,56,74,39,90,99,69,132,65,61,38),(4097,'2015-03-10 21:49:30','2015-03-10 21:49:30',1,30001619,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(4098,'2015-03-10 21:49:30','2015-10-11 16:46:32',1,30001859,20,8,7,4,8,5,8,4,4,52,259,187,44,28,39,36,48,34,13,12,26,52,46,94),(4099,'2015-03-10 21:49:30','2015-10-11 16:46:32',1,30002894,5,2,1,4,1,4,3,2,0,6,5,5,5,10,6,6,5,5,1,0,1,5,5,8),(4100,'2015-03-10 21:49:30','2015-10-11 16:46:32',1,30003209,7,14,3,5,8,7,9,5,16,3,6,0,3,6,2,6,2,6,2,3,0,7,5,9),(4101,'2015-03-10 21:49:30','2015-10-11 16:46:32',1,30000768,1,3,3,4,5,1,0,0,4,1,2,0,0,0,1,1,2,0,0,1,1,6,12,12),(4102,'2015-03-10 21:49:30','2015-10-11 16:46:32',1,30004485,20,3,36,0,11,12,27,9,7,9,9,7,13,17,17,29,26,21,4,10,24,21,16,31),(4103,'2015-03-10 21:49:30','2015-10-11 16:46:32',1,30001018,46,59,102,45,40,49,91,26,58,89,148,72,48,82,92,101,51,35,25,35,44,83,49,93),(4104,'2015-03-10 21:49:30','2015-10-11 16:46:32',1,30002958,59,50,45,50,44,41,120,23,14,34,34,33,27,62,36,47,38,24,52,33,45,33,29,32),(4105,'2015-03-10 21:49:30','2015-10-11 16:46:32',1,30000033,20,26,57,72,52,29,36,31,25,54,52,54,49,68,58,54,56,39,54,78,56,40,32,26),(4106,'2015-03-10 21:49:30','2015-10-11 16:46:32',1,30002726,34,13,15,31,23,21,18,14,16,47,28,10,10,21,16,14,10,14,23,18,14,12,9,9),(4107,'2015-03-10 21:49:30','2015-10-11 16:46:32',1,30003941,8,34,21,7,3,8,16,4,15,15,22,12,12,32,27,22,27,13,5,22,36,18,23,9),(4108,'2015-03-10 21:49:30','2015-10-11 16:46:32',1,30002052,13,17,12,3,2,4,2,4,8,24,24,26,22,4,7,8,7,7,7,4,15,5,6,20),(4109,'2015-03-10 21:49:30','2015-10-11 16:46:32',1,30003914,5,10,4,0,4,3,5,0,4,9,12,9,6,7,4,3,4,4,0,1,3,7,7,7),(4110,'2015-03-10 21:49:30','2015-10-11 16:46:32',1,30002982,55,173,68,69,62,75,19,32,49,106,91,47,62,193,81,86,75,42,58,68,76,90,94,60),(4111,'2015-03-10 21:49:30','2015-10-11 16:46:32',1,30002839,9,7,7,9,15,23,7,2,9,4,3,6,8,30,9,11,3,5,2,1,14,6,6,11),(4112,'2015-03-10 21:49:30','2015-10-11 16:46:32',1,30045315,39,95,27,18,27,32,24,21,21,72,63,41,38,44,61,42,37,47,24,45,44,52,43,39),(4113,'2015-03-10 21:49:30','2015-10-11 16:46:32',1,30002772,37,46,18,16,10,13,31,13,16,27,31,20,19,44,46,36,43,30,29,30,39,44,31,45),(4114,'2015-03-10 21:49:30','2015-10-11 16:46:32',1,30045349,142,116,279,113,129,107,62,95,108,138,180,82,78,136,176,147,133,77,122,93,147,158,147,174),(4115,'2015-03-10 21:49:30','2015-10-11 16:46:32',1,30002239,8,6,1,11,9,7,5,11,2,18,31,5,3,7,9,6,12,9,7,2,8,5,7,7),(4116,'2015-03-10 21:49:30','2015-10-11 16:46:32',1,30002718,56,88,89,75,75,76,75,93,86,62,52,71,63,87,96,100,80,85,64,184,77,90,69,82),(4117,'2015-03-10 21:49:30','2015-10-11 16:46:32',1,30001727,7,7,38,17,15,10,7,15,11,22,36,15,6,34,17,14,20,24,39,26,24,30,17,21),(4118,'2015-03-10 21:49:30','2015-10-11 16:46:32',1,30005319,47,44,66,39,72,70,50,46,34,67,83,41,57,65,65,67,75,38,62,61,70,58,67,58),(4119,'2015-03-10 21:49:30','2015-10-11 16:46:32',1,30005085,14,16,11,8,10,6,9,14,1,5,8,9,8,8,9,12,9,10,2,13,27,5,5,10),(4120,'2015-03-10 21:49:30','2015-10-11 16:46:32',1,30005080,6,11,27,4,10,10,17,9,12,9,9,5,7,14,8,26,26,28,3,10,7,9,8,10),(4121,'2015-03-10 21:49:30','2015-10-11 16:46:32',1,30003530,10,14,33,8,9,5,19,7,11,13,26,22,28,13,20,21,14,24,10,24,26,35,32,15),(4122,'2015-03-10 21:49:30','2015-10-11 16:46:32',1,30003495,131,115,106,94,97,92,75,81,74,220,214,182,155,156,184,181,164,142,126,133,116,174,185,140),(4123,'2015-03-10 21:49:30','2015-10-11 16:46:32',1,30002212,10,7,13,18,11,12,10,20,3,10,11,10,14,12,22,25,10,17,7,14,18,10,17,6),(4124,'2015-03-10 21:49:30','2015-10-11 16:46:32',1,30004269,13,3,1,11,17,13,6,0,3,11,14,42,32,16,8,13,15,3,4,7,9,16,7,15),(4125,'2015-03-10 21:49:30','2015-10-11 16:46:32',1,30000025,13,5,19,4,8,6,6,4,5,6,7,6,5,8,11,12,13,8,5,5,7,9,9,2),(4126,'2015-03-10 21:49:30','2015-10-11 16:46:32',1,30002227,105,111,131,148,188,211,119,77,93,116,122,149,156,138,138,143,163,145,92,118,153,157,155,128),(4127,'2015-03-10 21:49:30','2015-10-11 16:46:32',1,30003602,13,18,16,31,28,23,12,20,6,15,24,20,6,26,18,22,18,13,21,28,29,26,17,16),(4128,'2015-03-10 21:49:30','2015-10-11 16:46:32',1,30001417,32,16,18,19,24,15,19,12,7,14,12,25,27,21,15,16,18,56,17,18,23,23,22,26),(4129,'2015-03-10 21:49:30','2015-10-11 16:46:32',1,30001373,26,24,17,39,57,53,26,14,20,26,38,33,33,41,50,43,32,35,12,18,22,48,45,40),(4130,'2015-03-10 21:49:30','2015-10-11 16:46:32',1,30002697,9,3,6,8,8,5,9,7,6,15,15,9,8,26,11,10,4,6,10,6,3,14,18,4),(4131,'2015-03-10 21:49:30','2015-10-11 16:46:32',1,30004116,14,15,42,24,25,15,14,25,24,18,22,16,10,18,17,18,26,9,5,7,9,9,10,7),(4132,'2015-03-10 21:49:30','2015-10-11 16:46:32',1,30002271,22,15,31,26,49,43,24,13,30,29,30,52,40,39,22,22,23,30,13,17,14,41,26,24),(4133,'2015-03-10 21:49:30','2015-03-10 21:49:30',1,30000406,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(4134,'2015-03-10 21:49:30','2015-10-11 16:46:32',1,30003104,16,17,16,9,8,21,36,9,5,5,7,7,8,4,4,3,10,14,5,15,18,5,6,7),(4135,'2015-03-10 21:49:30','2015-10-11 16:46:32',1,30004742,5,2,33,13,7,7,21,15,21,6,10,20,26,63,32,35,16,8,3,16,11,7,3,5),(4136,'2015-03-10 21:49:30','2015-10-11 16:46:32',1,30000805,2,3,3,0,1,2,0,0,1,1,0,0,0,2,0,1,0,5,0,1,1,2,2,3),(4137,'2015-03-10 21:49:30','2015-10-11 16:46:32',1,30002023,16,20,18,20,14,9,25,15,6,9,6,7,5,5,7,4,8,10,11,1,10,6,6,8),(4138,'2015-03-10 21:49:30','2015-10-11 16:46:32',1,30004577,16,14,8,7,11,10,8,10,13,153,44,173,125,134,31,36,36,32,35,31,39,56,45,34),(4139,'2015-03-10 21:49:30','2015-10-11 16:46:32',1,30002140,38,19,22,6,8,15,12,7,14,3,5,3,3,0,1,8,0,3,2,3,1,2,7,7),(4140,'2015-03-10 21:49:30','2015-10-11 16:46:32',1,30005328,25,20,40,41,49,46,32,22,19,37,33,33,32,69,42,52,54,44,70,35,29,36,27,43),(4141,'2015-03-10 21:49:30','2015-10-11 16:46:32',1,30000160,60,94,61,66,66,89,50,36,65,96,108,106,84,75,113,102,85,82,69,77,109,89,82,108),(4142,'2015-03-10 21:49:30','2015-10-11 16:46:32',1,30045354,170,124,439,87,140,163,124,132,143,184,265,219,183,227,255,191,232,162,178,122,215,201,195,200),(4143,'2015-03-10 21:49:30','2015-10-11 16:46:32',1,30001700,50,63,82,89,78,86,57,59,77,75,71,75,68,70,97,106,99,74,38,71,99,88,89,81),(4144,'2015-03-10 21:49:30','2015-10-11 16:46:32',1,30003829,181,125,373,100,83,105,96,113,61,197,184,102,112,303,214,197,124,122,135,257,374,181,165,91),(4145,'2015-03-10 21:49:30','2015-10-11 16:46:32',1,30002510,661,451,592,607,635,545,489,392,437,735,747,696,648,855,789,794,839,626,534,655,776,911,785,687),(4146,'2015-03-10 21:49:30','2015-10-11 16:46:32',1,30004970,1097,823,1121,1135,1085,992,886,669,813,1191,1262,1177,1037,1482,1496,1510,1376,1079,842,989,1088,1370,1310,1095),(4147,'2015-03-10 21:49:30','2015-10-11 16:46:32',1,30003564,7,4,2,11,2,3,5,1,8,0,4,3,5,3,6,6,2,5,3,3,3,4,5,11),(4148,'2015-03-10 21:49:30','2015-10-11 16:46:32',1,30000780,15,17,39,26,26,20,13,18,28,232,226,9,13,16,2,7,8,3,0,4,7,15,16,2),(4149,'2015-03-10 21:49:30','2015-10-11 16:46:32',1,30002056,92,68,105,60,74,80,69,32,76,91,117,97,102,103,217,212,111,138,102,90,104,160,153,90),(4150,'2015-03-10 21:49:30','2015-10-11 16:46:32',1,30003851,54,66,79,66,86,98,28,49,72,69,77,58,74,187,63,58,47,47,46,39,55,82,81,67),(4151,'2015-03-10 21:49:30','2015-10-11 16:46:32',1,30003391,25,15,19,21,10,19,23,17,17,28,39,29,28,20,24,23,16,27,21,20,25,31,27,25),(4152,'2015-03-10 21:49:30','2015-10-11 16:46:32',1,30003880,183,123,205,181,164,157,142,170,219,231,257,235,197,240,277,255,211,184,132,163,209,234,217,161),(4153,'2015-03-10 21:49:30','2015-10-11 16:46:32',1,30001686,8,6,7,4,5,8,20,6,9,17,14,14,17,12,16,13,29,33,13,29,21,15,13,28),(4154,'2015-03-10 21:49:30','2015-10-11 16:46:32',1,30002256,1,5,11,4,6,4,2,7,3,6,3,17,17,6,16,9,3,7,19,13,3,9,6,12),(4155,'2015-03-10 21:49:30','2015-10-11 16:46:32',1,30003803,3,36,15,8,29,28,15,35,30,17,11,37,44,32,30,30,28,10,9,20,22,36,33,17),(4156,'2015-03-10 21:49:30','2015-03-10 21:49:30',1,30001475,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(4157,'2015-03-10 21:49:30','2015-03-10 21:49:30',1,30000385,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(4158,'2015-03-10 21:49:30','2015-10-11 16:46:32',1,30003994,2,5,3,4,2,2,3,4,3,2,2,2,3,3,7,9,4,3,0,2,7,8,4,1),(4159,'2015-03-10 21:49:30','2015-10-11 16:46:32',1,30003333,24,15,14,27,25,30,28,19,12,17,14,7,7,39,11,16,14,4,6,13,34,23,15,13),(4160,'2015-03-10 21:49:30','2015-10-11 16:46:32',1,30004724,21,16,6,10,6,11,15,17,22,14,15,10,9,12,19,16,28,11,12,8,15,24,21,14),(4161,'2015-03-10 21:49:30','2015-10-11 16:46:32',1,30003229,8,9,5,18,13,10,4,9,10,2,0,6,4,4,2,4,4,4,2,0,12,5,3,8),(4162,'2015-03-10 21:49:30','2015-10-11 16:46:32',1,30002129,8,16,8,3,0,6,5,2,8,2,1,4,5,13,4,6,9,9,1,14,23,11,13,4),(4163,'2015-03-10 21:49:30','2015-10-11 16:46:32',1,30002491,3,1,1,3,2,2,7,2,2,3,1,5,6,2,1,1,1,1,1,0,2,0,3,1),(4164,'2015-03-10 21:49:30','2015-10-11 16:46:32',1,30002954,9,5,3,10,4,8,5,13,6,12,5,8,3,0,4,5,6,5,0,6,7,5,6,7),(4165,'2015-03-10 21:49:30','2015-10-11 16:46:32',1,30004225,7,9,17,6,1,3,3,2,3,0,3,1,0,3,2,6,5,8,1,14,28,7,11,1),(4166,'2015-03-10 21:49:30','2015-10-11 16:46:32',1,30004812,4,1,8,6,6,2,9,7,4,9,5,8,8,11,7,6,7,8,6,13,4,5,7,7),(4167,'2015-03-10 21:49:30','2015-10-11 16:46:32',1,30002151,2,2,3,3,0,0,4,2,4,0,0,7,11,0,7,13,3,0,3,0,3,0,0,14),(4168,'2015-03-10 21:49:30','2015-10-11 16:46:32',1,30004918,1,4,9,0,3,0,1,3,4,14,0,11,17,1,2,3,0,14,13,0,0,1,1,0),(4169,'2015-03-10 21:49:30','2015-10-11 16:46:32',1,30002993,166,197,190,199,118,108,100,71,52,142,152,119,122,167,168,157,142,98,127,169,137,179,176,133),(4170,'2015-03-10 21:49:30','2015-10-11 16:46:32',1,30003457,23,5,20,9,7,7,9,14,16,22,27,30,22,31,18,20,33,29,16,17,26,35,30,31),(4171,'2015-03-10 21:49:30','2015-10-11 16:46:32',1,30003916,12,12,28,29,23,22,13,15,4,73,57,41,28,16,83,59,43,14,9,5,29,19,24,23),(4172,'2015-03-10 21:49:30','2015-10-11 16:46:32',1,30002241,8,3,3,2,1,0,2,5,3,11,23,17,7,5,3,7,14,3,3,2,9,3,2,6),(4173,'2015-03-10 21:49:30','2015-10-11 16:46:32',1,30001650,31,35,31,31,28,33,19,28,26,55,54,28,33,36,54,64,39,31,23,27,42,50,50,52),(4174,'2015-03-10 21:49:30','2015-10-11 16:46:32',1,30004472,10,6,9,9,19,10,11,20,3,10,13,23,18,15,10,20,27,34,6,20,15,46,27,23),(4175,'2015-03-10 21:49:30','2015-10-11 16:46:32',1,30001090,2,5,15,5,32,15,7,13,2,0,0,0,0,0,0,0,0,1,6,6,0,1,0,1),(4176,'2015-03-10 21:49:30','2015-10-11 16:46:32',1,30004953,31,14,38,22,14,9,27,19,27,38,33,9,8,24,25,49,7,11,7,29,19,20,18,15),(4177,'2015-03-10 21:49:30','2015-10-11 16:46:32',1,30003260,8,9,10,13,7,3,10,13,19,3,2,6,4,4,24,16,9,3,1,7,9,4,8,11),(4178,'2015-03-10 21:49:30','2015-10-11 16:46:32',1,30002380,0,8,9,7,2,5,25,0,1,2,1,8,10,2,0,0,1,1,1,19,6,15,7,7),(4179,'2015-03-10 21:49:30','2015-10-11 16:46:32',1,30003626,11,5,8,1,7,6,6,17,3,0,0,2,6,7,9,6,4,7,5,10,6,5,5,4),(4180,'2015-03-10 21:49:30','2015-10-11 16:46:32',1,30004015,12,14,12,9,20,19,1,0,8,9,5,8,10,19,13,16,11,3,6,6,13,21,25,15),(4181,'2015-03-10 21:49:30','2015-10-11 16:46:32',1,30004494,20,12,28,8,7,11,5,9,4,2,3,10,6,6,21,13,52,17,4,5,9,12,12,8),(4182,'2015-03-10 21:49:30','2015-10-11 16:46:32',1,30001902,7,1,4,3,9,5,11,20,11,18,14,19,12,12,15,16,41,10,5,12,20,36,36,28),(4183,'2015-03-10 21:49:30','2015-10-11 16:46:32',1,30003353,15,13,5,9,26,22,22,6,12,20,63,19,20,14,27,7,8,9,1,34,18,12,25,4),(4184,'2015-03-10 21:49:30','2015-10-11 16:46:32',1,30002443,26,46,14,42,44,38,53,16,24,24,24,25,34,24,13,8,33,23,39,30,17,26,34,74),(4185,'2015-03-10 21:49:30','2015-10-11 16:46:32',1,30003610,8,7,18,14,9,9,14,4,12,7,9,7,7,8,13,12,3,6,5,8,4,3,3,13),(4186,'2015-03-10 21:49:30','2015-10-11 16:46:32',1,30001028,11,13,27,22,14,14,25,16,17,36,24,19,25,112,42,46,54,51,20,45,39,40,45,29),(4187,'2015-03-10 21:49:30','2015-03-10 21:49:30',1,30001520,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(4188,'2015-03-10 21:49:30','2015-10-11 16:46:32',1,30001187,10,3,4,8,11,11,4,1,4,44,48,22,18,34,33,33,32,14,19,34,23,17,15,15),(4189,'2015-03-10 21:49:30','2015-10-11 16:46:32',1,30000673,6,10,18,18,3,6,48,0,13,20,15,23,20,6,3,7,1,7,3,10,4,4,5,3),(4190,'2015-03-10 21:49:30','2015-10-11 16:46:32',1,30002322,4,3,2,8,6,4,12,1,3,1,1,1,1,0,0,0,2,1,17,0,0,1,2,2),(4191,'2015-03-10 21:49:30','2015-10-11 16:46:32',1,30003246,0,1,0,1,0,1,0,0,0,0,0,1,1,1,0,0,1,0,0,0,0,4,4,0),(4192,'2015-03-10 21:49:30','2015-10-11 16:46:32',1,30002926,16,21,93,31,14,22,9,26,36,29,28,30,42,45,42,35,23,5,12,28,25,25,24,18),(4193,'2015-03-10 21:49:30','2015-10-11 16:46:32',1,30004370,26,17,25,18,23,20,28,21,19,22,28,33,18,18,49,15,11,22,14,12,13,11,17,17),(4194,'2015-03-10 21:49:30','2015-10-11 16:46:32',1,30045325,13,8,41,14,14,12,14,12,25,15,18,18,26,13,27,23,28,29,23,24,18,39,31,23),(4195,'2015-03-10 21:49:30','2015-10-11 16:46:32',1,30001983,70,30,53,37,92,54,120,55,29,153,98,60,42,152,99,115,127,61,66,82,74,69,68,59),(4196,'2015-03-10 21:49:30','2015-10-11 16:46:32',1,30000815,5,1,7,11,8,16,2,4,14,44,31,12,18,6,2,1,7,4,1,12,10,0,4,20),(4197,'2015-03-10 21:49:30','2015-10-11 16:46:32',1,30002534,33,41,37,38,33,25,17,28,28,57,54,41,43,41,50,56,28,37,34,26,29,53,35,34),(4198,'2015-03-10 21:49:30','2015-10-11 16:46:32',1,30003395,80,43,57,79,75,79,68,19,48,65,82,65,55,90,85,82,94,61,54,59,69,104,98,59),(4199,'2015-03-10 21:49:30','2015-10-11 16:46:32',1,30004080,597,399,493,564,533,515,361,263,357,669,700,697,597,654,757,798,663,516,443,585,857,747,755,616),(4200,'2015-03-10 21:49:30','2015-10-11 16:46:32',1,30002550,33,28,13,23,45,30,11,35,29,28,41,23,21,29,25,29,24,28,13,13,13,16,12,21),(4201,'2015-03-10 21:49:30','2015-10-11 16:46:32',1,30003081,27,10,38,40,32,33,26,13,24,59,42,26,37,31,22,18,37,35,21,19,15,53,41,24),(4202,'2015-03-10 21:49:30','2015-10-11 16:46:32',1,30002721,8,4,24,17,10,12,4,3,10,12,11,15,15,28,37,31,8,7,8,10,12,4,14,35),(4203,'2015-03-10 21:49:30','2015-10-11 16:46:32',1,30002033,13,11,123,18,11,12,8,7,25,24,33,43,18,37,23,8,14,4,6,3,17,4,8,6),(4204,'2015-03-10 21:49:30','2015-10-11 16:46:32',1,30002426,0,0,0,2,0,1,1,0,2,2,1,8,5,2,3,3,1,3,1,3,5,1,1,1),(4205,'2015-03-10 21:49:30','2015-10-11 16:46:32',1,30002975,157,58,46,31,46,41,31,24,41,24,31,51,49,33,111,45,67,31,24,73,73,58,44,57),(4206,'2015-03-10 21:49:30','2015-10-11 16:46:32',1,30001936,2,1,5,2,5,6,3,3,3,5,4,2,5,5,3,3,4,0,1,1,2,3,1,1),(4207,'2015-03-10 21:49:30','2015-10-11 16:46:32',1,30004560,7,4,3,15,4,5,4,7,6,382,292,320,277,750,15,17,22,32,168,53,391,8,9,19),(4208,'2015-03-10 21:49:30','2015-10-11 16:46:32',1,30001924,13,5,14,9,7,12,9,5,12,5,7,13,13,14,16,27,16,13,9,12,8,15,9,26),(4209,'2015-03-10 21:49:30','2015-10-11 16:46:32',1,30001320,3,8,2,5,1,1,2,1,2,2,1,1,4,2,1,2,0,4,2,5,1,3,4,1),(4210,'2015-03-10 21:49:30','2015-03-10 21:49:30',1,30000359,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(4211,'2015-03-10 21:49:30','2015-10-11 16:46:32',1,30002039,18,13,10,55,27,35,16,9,8,26,26,7,3,28,12,9,18,11,7,13,6,9,8,11),(4212,'2015-03-10 21:49:30','2015-10-11 16:46:32',1,30000790,15,5,11,0,7,6,1,7,2,9,8,8,8,3,13,17,4,2,4,15,5,25,22,4),(4213,'2015-03-10 21:49:30','2015-10-11 16:46:32',1,30001830,3,15,5,16,10,21,11,0,0,0,0,0,0,0,0,2,2,6,5,0,1,2,3,1),(4214,'2015-03-10 21:49:30','2015-10-11 16:46:32',1,30002880,3,1,0,1,0,0,5,2,1,1,1,2,2,0,1,2,2,1,0,0,10,1,3,2),(4215,'2015-03-10 21:49:30','2015-10-11 16:46:32',1,30001259,12,58,30,31,30,18,17,16,25,31,21,24,26,44,24,24,29,34,55,31,91,100,34,20),(4216,'2015-03-10 21:49:30','2015-10-11 16:46:32',1,30001931,5,14,20,5,21,18,9,9,7,15,8,15,19,17,19,18,18,13,3,3,8,14,9,7),(4217,'2015-03-10 21:49:30','2015-03-10 21:49:30',1,30001511,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(4218,'2015-03-10 21:49:30','2015-10-11 16:46:32',1,30001139,0,0,1,0,0,0,0,0,0,2,2,4,2,0,4,4,0,0,0,1,0,0,1,1),(4219,'2015-03-10 21:49:30','2015-10-11 16:46:32',1,30003362,11,10,10,7,5,11,9,8,11,1,2,6,2,11,2,2,10,6,4,2,8,11,7,3),(4220,'2015-03-10 21:49:30','2015-10-11 16:46:32',1,30000511,17,12,7,8,7,9,7,6,8,19,15,5,6,6,25,13,15,11,24,117,6,7,15,9),(4221,'2015-03-10 21:49:30','2015-10-11 16:46:32',1,30001773,14,7,5,7,14,12,4,2,3,11,6,9,10,5,5,4,21,13,4,2,5,2,1,5),(4222,'2015-03-10 21:49:30','2015-10-11 16:46:32',1,30004516,1,2,1,2,1,1,2,1,9,1,1,0,1,3,2,1,1,1,0,0,0,1,3,2),(4223,'2015-03-10 21:49:30','2015-03-10 21:49:30',1,30000377,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(4224,'2015-03-10 21:49:30','2015-10-11 16:46:32',1,30002183,94,25,38,37,34,25,56,30,24,39,19,14,18,31,31,34,61,23,24,113,167,37,57,45),(4225,'2015-03-10 21:49:30','2015-10-11 16:46:32',1,30002249,1,2,5,1,5,8,5,3,6,3,5,5,1,15,2,7,6,2,1,1,8,5,6,10),(4226,'2015-03-10 21:49:30','2015-10-11 16:46:32',1,30003845,7,22,28,20,8,7,17,2,8,10,14,11,18,27,46,42,14,15,17,30,19,28,17,77),(4227,'2015-03-10 21:49:30','2015-10-11 16:46:32',1,30001123,8,2,2,17,21,26,18,13,3,2,2,4,1,1,0,0,0,2,0,0,1,0,0,0),(4228,'2015-03-10 21:49:30','2015-10-11 16:46:32',1,30001724,6,17,54,34,37,30,12,24,17,26,42,28,18,21,21,26,31,35,17,40,31,39,31,17),(4229,'2015-03-10 21:49:30','2015-10-11 16:46:32',1,30001408,210,224,224,186,201,179,151,153,194,281,307,286,277,235,321,287,287,233,171,204,275,284,234,249),(4230,'2015-03-10 21:49:30','2015-10-11 16:46:32',1,30002326,2,0,0,1,0,1,0,4,1,0,0,0,0,2,2,0,3,0,0,0,0,0,1,1),(4231,'2015-03-10 21:49:30','2015-10-11 16:46:32',1,30001900,11,3,9,10,11,11,6,14,13,16,12,30,16,7,14,11,10,16,1,12,13,25,18,15),(4232,'2015-03-10 21:49:30','2015-10-11 16:46:32',1,30000651,2,2,31,5,3,6,6,5,3,2,3,0,1,3,1,0,1,2,0,2,4,3,5,1),(4233,'2015-03-10 21:49:30','2015-10-11 16:46:32',1,30000298,2,11,9,10,6,7,16,10,7,18,26,37,34,18,25,20,19,28,22,40,28,20,24,18),(4234,'2015-03-10 21:49:30','2015-10-11 16:46:32',1,30001943,5,5,10,6,15,4,12,13,15,17,17,26,25,10,26,34,25,32,7,12,11,24,24,23),(4235,'2015-03-10 21:49:30','2015-10-11 16:46:32',1,30001142,1,0,2,7,2,7,1,1,1,4,1,1,1,1,2,1,1,1,0,0,0,3,2,3),(4236,'2015-03-10 21:49:30','2015-10-11 16:46:32',1,30001563,26,5,23,14,18,44,7,13,19,17,20,13,10,24,15,28,34,18,8,19,12,9,8,7),(4237,'2015-03-10 21:49:30','2015-10-11 16:46:32',1,30001138,3,0,3,0,0,0,0,5,1,3,5,7,4,0,10,11,2,3,0,1,7,0,0,6),(4238,'2015-03-10 21:49:30','2015-10-11 16:46:32',1,30005119,5,0,6,8,2,1,0,0,0,0,0,1,0,0,4,8,3,3,1,1,18,3,1,0),(4239,'2015-03-10 21:49:30','2015-10-11 16:46:32',1,30000712,49,8,5,12,9,12,26,17,14,2,3,7,10,5,4,16,11,3,1,1,5,20,13,10),(4240,'2015-03-10 21:49:30','2015-10-11 16:46:32',1,30003410,197,170,200,198,161,162,164,117,123,221,235,168,164,257,267,279,286,187,141,175,225,241,229,191),(4241,'2015-03-10 21:49:30','2015-10-11 16:46:32',1,30004963,21,11,9,32,17,14,17,19,26,15,13,9,2,7,9,13,16,5,3,9,7,8,10,6),(4242,'2015-03-10 21:49:30','2015-10-11 16:46:32',1,30000477,1,0,1,3,10,7,1,1,3,7,3,3,2,4,10,6,10,3,0,2,1,7,5,2),(4243,'2015-03-10 21:49:30','2015-10-11 16:46:32',1,30000834,19,2,15,5,4,33,2,2,17,0,2,4,1,1,4,7,4,6,3,0,4,0,0,0),(4244,'2015-03-10 21:49:30','2015-10-11 16:46:32',1,30005105,0,8,17,9,5,8,7,1,2,4,2,2,1,11,16,13,5,9,5,6,5,9,6,17),(4245,'2015-03-10 21:49:30','2015-10-11 16:46:32',1,30005188,14,5,30,6,13,14,238,5,1,4,7,13,9,29,14,5,7,3,13,44,9,21,24,4),(4246,'2015-03-10 21:49:30','2015-10-11 16:46:32',1,30002022,13,17,59,85,53,49,68,9,15,17,27,12,4,12,12,7,15,11,9,9,7,10,7,11),(4247,'2015-03-10 21:49:30','2015-10-11 16:46:32',1,30003628,1,2,1,0,0,1,1,6,1,0,0,4,8,1,1,0,0,1,2,3,1,2,2,1),(4248,'2015-03-10 21:49:30','2015-10-11 16:46:32',1,30001308,5,6,19,9,13,14,7,9,6,17,14,11,18,20,61,27,7,11,10,15,30,9,10,9),(4249,'2015-03-10 21:49:30','2015-10-11 16:46:32',1,30000501,1,0,0,1,2,2,2,1,4,6,1,2,2,4,7,6,2,2,1,3,3,3,3,0),(4250,'2015-03-10 21:49:30','2015-10-11 16:46:32',1,30004776,0,2,0,0,0,0,0,5,2,6,4,0,1,4,9,4,3,6,4,2,3,1,1,0),(4251,'2015-03-10 21:49:30','2015-10-11 16:46:32',1,30004819,20,60,5,5,4,4,2,14,8,4,9,9,12,9,1,1,7,5,4,16,4,2,8,3),(4252,'2015-03-10 21:49:30','2015-10-11 16:46:32',1,30004332,12,11,29,59,59,31,16,44,22,7,12,12,4,5,15,21,10,13,5,5,8,11,15,6),(4253,'2015-03-10 21:49:30','2015-10-11 16:46:32',1,30001918,4,5,1,10,14,11,8,1,4,8,5,10,5,9,16,14,6,7,11,6,9,4,6,2),(4254,'2015-03-10 21:49:30','2015-10-11 16:46:32',1,30001591,0,0,0,4,1,1,1,18,2,0,4,7,3,12,111,22,2,8,1,1,3,9,8,0),(4255,'2015-03-10 21:49:30','2015-10-11 16:46:32',1,30001893,10,6,16,7,8,4,4,8,6,16,17,31,36,32,37,44,38,20,14,23,21,43,25,52),(4256,'2015-03-10 21:49:30','2015-10-11 16:46:32',1,30002912,20,16,10,23,12,8,16,9,14,17,25,18,20,16,28,27,10,16,22,25,18,24,21,24),(4257,'2015-03-10 21:49:30','2015-10-11 16:46:32',1,30000657,49,36,31,20,33,28,20,16,26,72,54,71,51,14,123,66,48,52,19,23,44,78,65,45),(4258,'2015-03-10 21:49:30','2015-10-11 16:46:32',1,30003611,59,33,74,42,42,30,73,36,33,25,26,21,20,23,20,29,22,25,14,33,26,23,18,33),(4259,'2015-03-10 21:49:30','2015-10-11 16:46:32',1,30003340,1,0,3,0,2,2,7,1,0,2,2,5,4,7,0,0,1,6,0,0,3,0,1,1),(4260,'2015-03-10 21:49:30','2015-10-11 16:46:32',1,30003629,82,58,45,52,26,29,76,26,26,23,32,15,19,43,14,16,11,28,19,15,15,21,26,23),(4261,'2015-03-10 21:49:30','2015-10-11 16:46:32',1,30004683,21,10,8,11,13,14,9,16,11,25,41,27,12,12,20,25,12,15,4,3,14,25,30,26),(4262,'2015-03-10 21:49:30','2015-10-11 16:46:32',1,30002888,1,0,0,2,4,2,2,12,1,1,0,3,3,1,5,0,5,4,0,0,0,5,6,1),(4263,'2015-03-10 21:49:30','2015-10-11 16:46:32',1,30002017,12,7,7,11,18,18,15,2,8,9,16,6,6,3,5,2,10,6,11,8,7,5,4,5),(4264,'2015-03-10 21:49:30','2015-10-11 16:46:32',1,30000260,8,4,7,17,14,5,16,3,2,11,12,15,23,18,12,13,5,16,8,7,7,21,14,15),(4265,'2015-03-10 21:49:30','2015-03-10 21:49:30',1,30000388,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(4266,'2015-03-10 21:49:30','2015-10-11 16:46:32',1,30001088,3,4,12,10,30,29,4,15,3,0,1,3,1,1,1,1,1,10,2,6,0,2,2,3),(4267,'2015-03-10 21:49:30','2015-10-11 16:46:32',1,30001176,26,27,10,13,11,10,7,14,14,39,53,11,20,69,14,26,14,16,14,24,16,30,33,14),(4268,'2015-03-10 21:49:30','2015-10-11 16:46:32',1,30003368,13,23,33,22,14,19,8,6,18,22,18,1,5,19,29,30,19,3,17,5,8,14,14,9),(4269,'2015-03-10 21:49:30','2015-10-11 16:46:32',1,30004172,2,2,2,7,4,4,5,0,1,12,13,1,2,0,4,5,0,3,3,3,0,7,4,1),(4270,'2015-03-10 21:49:30','2015-10-11 16:46:32',1,30004886,0,0,0,0,1,1,0,7,0,2,1,1,0,0,1,1,1,3,1,1,0,0,2,1),(4271,'2015-03-10 21:49:30','2015-10-11 16:46:32',1,30000753,0,3,9,0,2,4,2,0,8,3,1,3,3,6,0,0,6,34,0,11,3,3,6,3),(4272,'2015-03-10 21:49:30','2015-10-11 16:46:32',1,30000667,2,6,8,12,3,6,64,0,6,22,21,20,19,3,4,5,0,3,0,6,4,2,4,1),(4273,'2015-03-10 21:49:30','2015-10-11 16:46:32',1,30001030,2,4,7,16,9,10,1,1,4,2,1,1,5,6,2,2,2,6,6,2,5,5,2,2),(4274,'2015-03-10 21:49:30','2015-10-11 16:46:32',1,30001237,33,11,15,19,20,16,16,5,8,6,13,7,15,6,15,22,13,19,5,4,5,10,5,8),(4275,'2015-03-10 21:49:30','2015-10-11 16:46:32',1,30004805,14,1,4,5,4,8,9,16,5,10,34,15,7,26,16,15,11,7,1,17,19,9,10,7),(4276,'2015-03-10 21:49:30','2015-03-10 21:49:30',1,30001471,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(4277,'2015-03-10 21:49:30','2015-10-11 16:46:32',1,30001145,0,1,4,0,0,1,0,1,0,1,1,1,0,0,0,0,1,0,0,0,0,3,1,3),(4278,'2015-03-10 21:49:30','2015-10-11 16:46:32',1,30000284,14,25,16,18,11,14,11,12,16,14,7,10,8,12,14,15,15,15,7,11,10,15,14,17),(4279,'2015-03-10 21:49:30','2015-10-11 16:46:32',1,30003257,26,38,63,41,23,16,42,39,30,4,4,8,3,4,8,5,11,3,3,9,14,5,7,15),(4280,'2015-03-10 21:49:30','2015-10-11 16:46:32',1,30000886,7,16,10,14,8,8,11,4,15,33,25,23,14,35,35,42,31,33,18,21,19,12,24,16),(4281,'2015-03-10 21:49:30','2015-10-11 16:46:32',1,30001891,6,2,10,4,22,12,12,8,2,6,3,8,7,17,15,14,22,16,4,10,12,16,19,10),(4282,'2015-03-10 21:49:30','2015-03-10 21:49:30',1,30000389,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(4283,'2015-03-10 21:49:30','2015-10-11 16:46:32',1,30003741,100,104,71,59,59,73,52,24,54,84,91,120,88,106,116,95,73,71,132,73,94,202,117,109),(4284,'2015-03-10 21:49:30','2015-10-11 16:46:32',1,30003506,25,9,42,38,33,41,21,16,20,28,29,20,30,22,25,21,37,22,28,63,57,41,40,22),(4285,'2015-03-10 21:49:30','2015-10-11 16:46:32',1,30001386,139,99,129,119,157,149,116,85,90,99,123,108,105,110,156,135,162,113,59,113,111,180,154,123),(4286,'2015-03-10 21:49:30','2015-10-11 16:46:32',1,30003894,3,5,5,3,3,3,6,3,0,79,88,132,104,8,5,3,5,0,3,8,7,8,11,3),(4287,'2015-03-10 21:49:30','2015-10-11 16:46:32',1,30001675,36,38,69,86,86,78,64,58,48,141,119,144,130,70,82,82,94,71,20,89,79,133,116,94),(4288,'2015-03-10 21:49:30','2015-10-11 16:46:32',1,30004242,36,46,101,118,65,69,88,61,56,88,98,63,63,77,58,60,48,68,62,56,62,67,69,46),(4289,'2015-03-10 21:49:30','2015-10-11 16:46:32',1,30002251,54,36,52,50,66,92,49,57,24,54,43,55,50,62,50,62,62,35,34,71,99,56,43,43),(4290,'2015-03-10 21:49:30','2015-10-11 16:46:32',1,30031672,0,9,5,5,1,1,9,5,2,13,15,20,14,7,5,6,9,4,4,1,2,10,10,10),(4291,'2015-03-10 21:49:30','2015-10-11 16:46:32',1,30002279,73,74,88,79,100,101,55,50,79,84,101,91,60,82,123,96,121,83,59,75,89,95,126,89),(4292,'2015-03-10 21:49:30','2015-10-11 16:46:32',1,30003879,15,10,15,8,4,6,19,4,5,12,14,9,5,15,11,9,9,17,5,4,10,8,7,13),(4293,'2015-03-10 21:49:30','2015-10-11 16:46:32',1,30001719,29,23,13,17,12,10,7,4,7,47,35,26,32,21,38,47,39,32,31,50,53,30,37,40),(4294,'2015-03-10 21:49:30','2015-10-11 16:46:32',1,30002298,100,24,78,55,56,36,54,41,43,7,11,15,15,32,48,46,36,43,15,40,13,32,29,7),(4295,'2015-03-10 21:49:30','2015-10-11 16:46:32',1,30003474,26,21,21,34,16,27,24,31,25,39,39,29,29,72,40,61,47,47,24,27,41,29,63,58),(4296,'2015-03-10 21:49:30','2015-10-11 16:46:32',1,30002259,18,26,28,30,22,23,20,19,14,45,56,57,51,56,31,29,52,38,29,33,41,28,42,49),(4297,'2015-03-10 21:49:30','2015-10-11 16:46:32',1,30003518,9,2,15,11,14,9,2,5,2,21,19,10,14,19,14,9,7,16,5,12,30,9,12,21),(4298,'2015-03-10 21:49:30','2015-10-11 16:46:32',1,30003086,151,89,99,82,79,97,64,73,63,124,97,105,101,116,105,90,88,76,46,93,108,100,92,84),(4299,'2015-03-10 21:49:30','2015-10-11 16:46:32',1,30000508,5,13,6,9,14,16,4,6,7,5,4,4,5,6,24,6,29,15,23,130,17,10,9,17),(4300,'2015-03-10 21:49:30','2015-10-11 16:46:32',1,30003090,48,33,25,21,17,24,14,40,23,43,55,27,29,37,39,38,58,23,18,17,86,42,47,41),(4301,'2015-03-10 21:49:30','2015-10-11 16:46:32',1,30003079,68,26,28,31,28,30,20,38,42,87,50,54,59,73,70,43,34,53,31,36,47,50,53,43),(4302,'2015-03-10 21:49:30','2015-10-11 16:46:32',1,30002745,23,19,20,37,39,54,22,20,21,34,29,17,24,20,13,17,32,14,15,19,45,41,57,29),(4303,'2015-03-10 21:49:30','2015-10-11 16:46:32',1,30002816,30,36,38,40,48,57,22,35,38,44,52,53,46,45,43,45,52,31,47,44,48,41,42,36),(4304,'2015-03-10 21:49:30','2015-10-11 16:46:32',1,30000146,419,369,466,441,393,377,334,285,368,453,493,480,450,521,668,618,612,496,302,345,504,534,536,396),(4305,'2015-03-10 21:49:30','2015-10-11 16:46:32',1,30010141,28,22,25,29,31,20,39,18,18,24,29,23,23,34,24,30,26,19,16,11,17,15,18,18),(4306,'2015-03-10 21:49:30','2015-10-11 16:46:32',1,30004299,34,72,110,50,44,37,62,32,52,44,210,73,49,48,120,119,113,49,64,147,97,79,77,90),(4307,'2015-03-10 21:49:30','2015-10-11 16:46:32',1,30002215,14,14,39,15,25,17,7,16,8,22,29,23,19,27,26,31,18,27,11,14,34,17,24,20),(4308,'2015-03-10 21:49:30','2015-10-11 16:46:32',1,30000167,93,63,129,116,125,136,138,78,63,110,114,93,86,118,105,85,111,68,92,94,129,118,105,103),(4309,'2015-03-10 21:49:30','2015-10-11 16:46:32',1,30002405,4,7,4,6,10,8,4,8,8,13,6,4,3,9,3,5,5,4,3,0,2,8,5,4),(4310,'2015-03-10 21:49:30','2015-10-11 16:46:32',1,30004146,17,7,16,23,37,15,9,4,4,14,19,30,26,22,43,47,30,30,15,16,16,25,32,23),(4311,'2015-03-10 21:49:30','2015-10-11 16:46:32',1,30000059,43,31,26,25,38,59,60,32,17,39,38,58,53,47,107,96,64,35,66,39,50,68,56,28),(4312,'2015-03-10 21:49:30','2015-10-11 16:46:32',1,30003874,3,2,9,5,2,0,5,2,2,5,5,6,5,14,7,4,10,19,7,34,17,11,18,20),(4313,'2015-03-10 21:49:30','2015-10-11 16:46:32',1,30045322,110,79,172,89,104,83,86,89,95,98,121,98,99,119,151,134,156,104,82,95,98,168,157,127),(4314,'2015-03-10 21:49:30','2015-10-11 16:46:32',1,30001721,9,3,7,10,9,5,2,2,5,29,23,31,20,9,28,28,50,23,10,13,9,19,26,17),(4315,'2015-03-10 21:49:30','2015-10-11 16:46:32',1,30002783,159,127,188,182,155,112,87,114,134,186,189,175,175,231,228,221,249,182,139,184,189,195,208,186),(4316,'2015-03-10 21:49:30','2015-10-11 16:46:32',1,30002785,65,50,88,76,70,67,61,59,50,78,68,76,77,123,102,100,116,75,81,89,83,92,85,85),(4317,'2015-03-10 21:49:30','2015-10-11 16:46:32',1,30005255,29,22,43,21,24,32,32,19,13,30,42,32,23,34,25,35,32,39,40,28,40,38,25,33),(4318,'2015-03-10 21:49:30','2015-10-11 16:46:32',1,30001442,122,23,155,46,36,44,48,22,23,19,15,22,21,23,14,13,9,26,82,42,18,21,32,27),(4319,'2015-03-10 21:49:30','2015-10-11 16:46:32',1,30001377,687,641,707,748,726,669,539,340,437,675,751,688,630,778,973,913,849,674,513,574,769,884,870,687),(4320,'2015-03-10 21:49:30','2015-10-11 16:46:32',1,30045310,125,35,126,34,37,52,30,19,10,26,23,12,16,44,14,10,27,33,28,22,21,16,20,12),(4321,'2015-03-10 21:49:30','2015-10-11 16:46:32',1,30000043,14,3,7,3,7,6,3,4,2,5,8,12,7,6,28,9,5,2,9,10,4,11,12,2),(4322,'2015-03-10 21:49:30','2015-10-11 16:46:32',1,30003584,11,9,29,20,14,15,14,9,18,16,17,27,22,14,10,27,17,16,9,13,12,16,13,16),(4323,'2015-03-10 21:49:30','2015-10-11 16:46:32',1,30003522,829,836,891,913,829,835,791,445,570,992,995,932,869,971,1135,1157,1113,882,722,858,957,1222,1105,976),(4324,'2015-03-10 21:49:30','2015-10-11 16:46:32',1,30003074,110,61,109,84,96,92,65,67,73,175,162,154,131,143,249,225,157,143,106,113,113,150,156,144),(4325,'2015-03-10 21:49:30','2015-10-11 16:46:32',1,30002971,175,157,220,182,209,184,147,97,143,224,252,222,222,245,282,278,299,211,136,188,229,270,241,259),(4326,'2015-03-10 21:49:30','2015-10-11 16:46:32',1,30003931,7,9,20,2,11,12,9,8,9,17,10,10,16,13,8,7,8,3,2,7,7,15,18,2),(4327,'2015-03-10 21:49:30','2015-10-11 16:46:32',1,30000005,397,329,434,393,390,368,380,242,321,524,521,451,444,580,627,674,597,457,355,461,532,541,436,459),(4328,'2015-03-10 21:49:30','2015-10-11 16:46:32',1,30003097,2,8,2,10,13,15,0,1,1,2,5,18,10,8,6,10,10,2,7,5,5,5,4,1),(4329,'2015-03-10 21:49:30','2015-10-11 16:46:32',1,30003508,124,61,108,105,67,70,57,48,72,107,111,122,117,137,126,134,141,80,74,100,91,122,135,129),(4330,'2015-03-10 21:49:30','2015-10-11 16:46:32',1,30004270,39,29,51,51,46,47,26,31,42,73,64,83,81,70,154,226,85,72,42,43,69,69,64,53),(4331,'2015-03-10 21:49:30','2015-10-11 16:46:32',1,30003865,64,48,93,50,47,45,63,33,43,262,285,340,322,86,73,63,88,72,67,63,70,63,74,51),(4332,'2015-03-10 21:49:30','2015-10-11 16:46:32',1,30000991,1,5,2,2,1,5,1,1,1,2,2,2,1,1,2,2,0,0,1,0,2,1,4,0),(4333,'2015-03-10 21:49:30','2015-10-11 16:46:32',1,30004218,0,0,1,0,0,0,0,0,0,1,0,0,0,0,0,0,0,1,0,0,0,0,0,0),(4334,'2015-03-10 21:49:30','2015-10-11 16:46:32',1,30001296,3,11,7,2,17,12,3,2,3,0,2,1,3,2,3,0,0,6,3,3,0,2,4,9),(4335,'2015-03-10 21:49:30','2015-10-11 16:46:32',1,30005310,120,129,149,144,124,113,96,87,72,145,186,159,142,186,200,209,165,122,109,157,134,172,177,131),(4336,'2015-03-10 21:49:30','2015-10-11 16:46:32',1,30005063,18,19,25,23,14,21,13,7,27,48,27,10,11,29,12,20,32,33,28,28,58,28,41,15),(4337,'2015-03-10 21:49:30','2015-10-11 16:46:32',1,30002654,18,15,15,20,20,23,18,28,9,26,32,17,23,26,24,27,45,18,15,11,65,21,17,25),(4338,'2015-03-10 21:49:30','2015-10-11 16:46:32',1,30005322,313,278,366,371,389,324,285,201,215,355,375,345,307,434,614,542,485,329,398,322,399,612,511,352),(4339,'2015-03-10 21:49:30','2015-10-11 16:46:32',1,30003054,94,26,79,63,60,67,38,28,40,93,96,84,74,85,114,105,93,64,66,68,77,74,81,100),(4340,'2015-03-10 21:49:30','2015-10-11 16:46:32',1,30000692,4,22,36,11,34,20,12,16,13,11,1,9,1,5,7,8,9,18,1,20,4,13,11,7),(4341,'2015-03-10 21:49:30','2015-10-11 16:46:32',1,30001314,28,3,16,7,6,3,7,7,8,21,24,30,22,25,35,22,9,14,9,10,28,13,8,12),(4342,'2015-03-10 21:49:30','2015-10-11 16:46:32',1,30004139,21,22,42,9,26,42,17,7,9,38,39,43,30,49,24,35,32,16,4,5,27,31,16,40),(4343,'2015-03-10 21:49:30','2015-10-11 16:46:32',1,30001659,57,33,64,49,40,30,47,29,37,66,59,83,60,73,105,119,70,84,55,87,77,88,101,104),(4344,'2015-03-10 21:49:30','2015-10-11 16:46:32',1,30005042,138,102,123,142,135,137,122,67,97,203,227,160,152,230,193,178,206,160,113,165,131,170,151,173),(4345,'2015-03-10 21:49:30','2015-10-11 16:46:32',1,30003869,42,34,61,36,35,27,34,18,34,89,106,87,54,98,66,94,68,54,55,46,60,86,93,76),(4346,'2015-03-10 21:49:30','2015-10-11 16:46:32',1,30001657,43,37,66,60,51,36,59,31,53,65,100,80,87,73,92,103,90,92,96,89,113,105,113,91),(4347,'2015-03-10 21:49:30','2015-10-11 16:46:32',1,30002243,47,41,69,93,60,68,66,35,36,77,100,114,103,96,99,85,84,45,51,53,78,45,65,56),(4348,'2015-03-10 21:49:30','2015-10-11 16:46:32',1,30041672,11,7,10,8,10,6,4,5,5,14,15,15,9,16,20,19,9,9,7,1,14,9,9,10),(4349,'2015-03-10 21:49:30','2015-10-11 16:46:32',1,30001359,4,5,2,4,5,3,12,8,3,5,8,12,21,7,19,26,23,17,2,9,12,11,2,17),(4350,'2015-03-10 21:49:30','2015-10-11 16:46:32',1,30020141,23,15,70,34,36,30,21,22,10,32,51,62,41,22,22,27,45,34,26,33,54,34,39,22),(4351,'2015-03-10 21:49:30','2015-10-11 16:46:32',1,30000015,72,59,53,35,38,38,33,46,28,105,102,75,70,174,71,70,65,80,60,79,96,98,104,72),(4352,'2015-03-10 21:49:30','2015-10-11 16:46:32',1,30000103,2,3,5,4,8,6,6,3,6,5,7,11,6,11,13,19,10,11,16,7,6,16,27,9),(4353,'2015-03-10 21:49:30','2015-10-11 16:46:32',1,30004623,42,15,89,54,31,35,44,9,18,9,6,18,12,37,27,24,14,20,16,30,35,37,18,28),(4354,'2015-03-10 21:49:30','2015-10-11 16:46:32',1,30005222,27,48,25,27,38,40,19,19,17,53,47,37,32,40,33,30,29,36,22,29,45,52,51,26),(4355,'2015-03-10 21:49:30','2015-10-11 16:46:32',1,30003898,2,11,8,8,3,6,10,4,2,9,11,17,14,73,31,33,15,3,11,12,5,5,4,2),(4356,'2015-03-10 21:49:30','2015-10-11 16:46:32',1,30005278,0,2,0,0,0,0,0,7,3,12,10,7,5,2,1,3,6,5,0,0,4,19,43,2),(4357,'2015-03-10 21:49:30','2015-10-11 16:46:32',1,30005020,9,19,29,37,31,29,29,27,13,33,44,24,27,26,25,20,36,29,23,38,39,33,41,40),(4358,'2015-03-10 21:49:30','2015-10-11 16:46:32',1,30003654,33,4,21,7,4,6,10,7,6,0,3,2,0,5,5,5,6,8,1,16,27,9,10,2),(4359,'2015-03-10 21:49:30','2015-10-11 16:46:32',1,30002833,12,7,1,8,5,8,3,5,9,3,9,24,12,4,4,11,6,15,5,5,10,4,11,7),(4360,'2015-03-10 21:49:30','2015-10-11 16:46:32',1,30000670,31,29,238,33,68,65,36,27,23,36,51,47,39,33,64,49,49,21,8,43,117,58,38,47),(4361,'2015-03-10 21:49:30','2015-10-11 16:46:32',1,30001098,3,4,1,1,1,5,0,0,6,1,1,1,1,1,1,2,1,3,1,1,0,1,1,0),(4362,'2015-03-10 21:49:30','2015-10-11 16:46:32',1,30000868,54,43,42,64,41,40,46,46,45,27,31,46,40,66,121,124,23,23,10,15,15,33,34,17),(4363,'2015-03-10 21:49:30','2015-10-11 16:46:32',1,30002831,0,1,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0),(4364,'2015-03-10 21:49:30','2015-10-11 16:46:32',1,30002267,24,31,24,25,26,26,38,20,22,56,57,55,45,61,41,29,41,52,27,48,42,38,25,42),(4365,'2015-03-10 21:49:30','2015-10-11 16:46:32',1,30000097,10,11,9,8,13,10,4,9,9,24,29,23,25,9,16,12,11,21,16,8,5,11,18,17),(4366,'2015-03-10 21:49:30','2015-10-11 16:46:32',1,30004283,41,55,59,51,49,48,54,37,38,104,286,155,121,132,306,295,220,154,92,240,143,145,109,86),(4367,'2015-03-10 21:49:30','2015-10-11 16:46:32',1,30004150,20,26,25,19,39,39,37,20,15,16,42,54,46,53,44,30,40,44,27,29,44,24,33,23),(4368,'2015-03-10 21:49:30','2015-10-11 16:46:32',1,30005057,69,43,76,43,55,58,68,34,48,90,108,109,86,88,95,93,83,76,58,61,86,80,81,58),(4369,'2015-03-10 21:49:30','2015-10-11 16:46:32',1,30003477,13,14,26,22,13,13,8,19,11,32,31,16,21,28,22,47,49,41,8,14,36,17,32,44),(4370,'2015-03-10 21:49:30','2015-10-11 16:46:32',1,30004231,3,2,1,2,7,21,7,2,3,7,2,7,8,3,14,16,14,7,2,11,7,12,8,9),(4371,'2015-03-10 21:49:30','2015-10-11 16:46:32',1,30000054,0,7,6,5,1,2,2,9,14,5,10,6,4,3,4,6,1,8,8,2,2,6,2,7),(4372,'2015-03-10 21:49:30','2015-10-11 16:46:32',1,30005270,31,52,28,38,58,47,23,18,18,55,43,31,20,53,33,26,53,23,83,58,51,52,65,53),(4373,'2015-03-10 21:49:30','2015-10-11 16:46:32',1,30000014,12,10,16,14,13,11,18,12,17,29,29,42,13,17,16,20,26,52,25,16,13,24,21,22),(4374,'2015-03-10 21:49:30','2015-10-11 16:46:32',1,30005271,14,14,18,14,35,28,24,15,16,22,18,28,20,24,17,24,30,22,22,16,24,46,69,32),(4375,'2015-03-10 21:49:30','2015-10-11 16:46:32',1,30003498,133,154,87,94,88,87,66,71,67,176,176,135,132,156,166,194,167,183,151,137,123,168,178,122),(4376,'2015-03-10 21:49:30','2015-10-11 16:46:32',1,30001739,4,15,15,18,19,6,19,6,16,41,29,36,21,22,23,15,15,6,18,22,37,54,41,34),(4377,'2015-03-10 21:49:30','2015-10-11 16:46:32',1,30000067,6,8,5,0,2,1,7,1,14,9,5,8,6,5,13,12,25,8,14,3,1,8,5,4),(4378,'2015-03-10 21:49:30','2015-10-11 16:46:32',1,30003500,47,13,47,32,19,14,28,14,15,30,24,44,37,41,39,34,34,16,21,25,24,31,31,28),(4379,'2015-03-10 21:49:30','2015-10-11 16:46:32',1,30002638,9,10,19,12,18,12,9,8,18,20,20,26,21,15,21,23,13,16,7,12,26,22,19,21),(4380,'2015-03-10 21:49:30','2015-10-11 16:46:32',1,30005276,2,19,3,3,10,18,14,15,5,21,29,26,20,29,17,24,26,28,2,9,26,64,91,12),(4381,'2015-03-10 21:49:30','2015-10-11 16:46:32',1,30002999,47,33,53,42,37,36,31,19,59,29,26,20,28,45,60,56,58,19,33,55,30,50,50,31),(4382,'2015-03-10 21:49:30','2015-10-11 16:46:32',1,30000779,15,14,24,12,10,8,10,22,19,386,211,18,17,18,3,8,12,8,0,2,2,9,16,4),(4383,'2015-03-10 21:49:30','2015-10-11 16:46:32',1,30000106,70,41,65,51,52,42,49,58,44,66,72,58,61,148,83,83,68,81,49,37,63,57,67,55),(4384,'2015-03-10 21:49:30','2015-10-11 16:46:32',1,30004155,95,63,74,81,64,67,54,24,42,105,109,130,133,101,135,131,111,70,72,87,86,92,99,79),(4385,'2015-03-10 21:49:30','2015-10-11 16:46:32',1,30004268,42,29,57,47,44,52,25,29,44,79,80,50,50,74,149,218,84,59,47,45,68,64,64,47),(4386,'2015-03-10 21:49:30','2015-10-11 16:46:32',1,30000011,21,11,8,6,8,10,7,5,4,11,14,10,15,14,20,21,12,7,24,28,27,2,10,7),(4387,'2015-03-10 21:49:30','2015-10-11 16:46:32',1,30005192,64,70,74,62,72,82,57,40,60,92,96,97,87,113,95,88,118,67,78,66,119,131,100,80),(4388,'2015-03-10 21:49:30','2015-10-11 16:46:32',1,30004278,1,4,1,3,2,1,0,4,2,8,24,11,4,3,8,7,5,12,3,1,0,0,0,6),(4389,'2015-03-10 21:49:30','2015-10-11 16:46:32',1,30005217,288,348,486,292,324,308,248,263,268,451,499,465,420,482,581,541,561,463,295,269,391,723,705,520),(4390,'2015-03-10 21:49:30','2015-10-11 16:46:32',1,30001673,116,65,86,71,96,90,68,79,51,154,147,116,116,97,119,129,125,100,106,141,139,170,187,151),(4391,'2015-03-10 21:49:30','2015-10-11 16:46:32',1,30000130,156,130,226,203,175,164,154,126,98,238,275,231,187,221,220,208,240,214,178,188,255,203,215,153),(4392,'2015-03-10 21:49:30','2015-10-11 16:46:32',1,30003725,24,26,65,26,22,26,62,20,22,53,72,48,50,215,56,35,83,37,30,22,47,80,50,83),(4393,'2015-03-10 21:49:30','2015-10-11 16:46:32',1,30004233,50,40,57,28,53,50,75,17,122,41,43,48,43,61,67,79,64,33,51,51,51,42,51,45),(4394,'2015-03-10 21:49:30','2015-10-11 16:46:32',1,30001338,5,5,3,2,1,1,2,0,3,3,5,5,6,4,1,1,0,7,1,3,6,2,1,1),(4395,'2015-03-10 21:49:30','2015-10-11 16:46:32',1,30005076,54,25,38,33,45,50,35,21,40,31,23,22,23,44,100,92,57,60,27,65,40,67,49,46),(4396,'2015-03-10 21:49:30','2015-10-11 16:46:32',1,30001667,28,31,51,40,40,39,31,23,31,34,33,34,48,28,44,37,43,39,33,39,40,32,40,43),(4397,'2015-03-10 21:49:30','2015-10-11 16:46:32',1,30002235,13,8,7,4,3,2,8,6,2,6,9,15,27,6,9,8,10,7,0,4,6,13,11,9),(4398,'2015-03-10 21:49:30','2015-10-11 16:46:32',1,30004135,8,9,4,3,3,6,9,6,4,2,4,5,4,4,2,2,9,4,1,0,6,3,6,5),(4399,'2015-03-10 21:49:30','2015-10-11 16:46:32',1,30002201,64,46,61,86,67,74,46,52,52,122,224,117,128,129,121,116,138,98,79,77,98,147,122,120),(4400,'2015-03-10 21:49:30','2015-10-11 16:46:32',1,30003728,24,13,13,9,10,17,16,9,3,25,54,18,23,30,17,21,53,14,7,6,27,30,24,39),(4401,'2015-03-10 21:49:30','2015-10-11 16:46:32',1,30005209,39,26,43,50,15,19,35,19,25,24,28,33,28,34,36,36,33,33,22,23,35,54,34,33),(4402,'2015-03-10 21:49:30','2015-10-11 16:46:32',1,30003484,8,19,16,8,13,12,8,7,6,6,12,12,21,6,8,10,17,9,5,13,15,18,6,15),(4403,'2015-03-10 21:49:30','2015-10-11 16:46:32',1,30003557,4,1,9,6,0,1,6,5,6,2,5,5,3,4,16,5,4,7,3,5,2,5,4,8),(4404,'2015-03-10 21:49:30','2015-10-11 16:46:32',1,30002959,146,72,75,97,55,48,75,45,33,56,43,34,30,45,54,77,40,36,73,50,62,44,34,45),(4405,'2015-03-10 21:49:30','2015-10-11 16:46:32',1,30005219,154,90,88,128,127,142,104,69,95,164,192,191,172,170,222,185,213,149,107,106,154,265,249,196),(4406,'2015-03-10 21:49:30','2015-10-11 16:46:32',1,30000179,19,15,19,20,16,18,20,13,8,35,73,22,26,15,32,30,33,27,10,22,18,32,34,19),(4407,'2015-03-10 21:49:30','2015-10-11 16:46:32',1,30002689,5,1,1,5,4,3,6,1,5,17,13,5,2,5,6,9,14,10,3,3,3,25,14,18),(4408,'2015-03-10 21:49:30','2015-10-11 16:46:32',1,30002195,21,11,20,16,15,13,19,14,14,18,21,12,13,26,41,44,25,31,15,5,11,18,19,18),(4409,'2015-03-10 21:49:30','2015-10-11 16:46:32',1,30005269,214,164,220,232,171,181,132,166,150,285,302,261,248,313,343,366,337,321,142,167,224,303,325,296),(4410,'2015-03-10 21:49:30','2015-10-11 16:46:32',1,30001729,25,27,35,41,52,59,26,43,26,58,51,53,43,53,53,66,65,38,34,27,48,51,52,62),(4411,'2015-03-10 21:49:30','2015-10-11 16:46:32',1,30002092,5,11,3,2,5,6,4,6,5,15,16,18,16,10,21,22,20,15,30,27,13,16,18,12),(4412,'2015-03-10 21:49:30','2015-10-11 16:46:32',1,30003540,3,3,12,13,17,14,4,26,19,7,3,6,8,3,5,7,2,7,2,2,4,11,24,7),(4413,'2015-03-10 21:49:30','2015-10-11 16:46:32',1,30002791,1519,1138,1402,1391,1420,1328,1189,907,1035,1423,1647,1604,1465,1521,1744,1736,1739,1575,1052,1179,1457,1718,1780,1586),(4414,'2015-03-10 21:49:30','2015-10-11 16:46:32',1,30000127,204,130,216,298,151,165,159,101,130,266,279,249,228,276,319,332,244,192,195,199,194,290,302,212),(4415,'2015-03-10 21:49:30','2015-10-11 16:46:32',1,30002539,165,117,190,163,143,155,137,124,172,277,227,219,207,253,437,368,244,291,238,290,275,374,304,232),(4416,'2015-03-10 21:49:30','2015-10-11 16:46:32',1,30002521,16,10,8,11,14,15,13,2,9,10,7,6,8,24,25,17,17,14,13,15,15,12,12,17),(4417,'2015-03-10 21:49:30','2015-10-11 16:46:32',1,30002229,21,20,13,16,12,10,11,10,4,24,26,16,19,25,15,29,24,20,7,27,28,19,22,27),(4418,'2015-03-10 21:49:30','2015-10-11 16:46:32',1,30003406,6,8,6,6,10,8,7,4,4,5,7,2,1,3,10,10,4,6,3,7,5,7,7,5),(4419,'2015-03-10 21:49:30','2015-10-11 16:46:32',1,30002765,1531,1184,1439,1565,1411,1345,1075,908,962,1505,1545,1647,1408,1704,1834,1950,1824,1486,1069,1324,1552,1895,1744,1439),(4420,'2015-03-10 21:49:30','2015-10-11 16:46:32',1,30001699,9,9,15,24,24,12,13,14,6,29,33,51,41,25,43,44,43,37,18,8,56,94,90,87),(4421,'2015-03-10 21:49:30','2015-10-11 16:46:32',1,30001728,1,2,22,11,17,18,3,6,6,8,8,3,5,4,11,13,9,5,4,9,11,11,8,4),(4422,'2015-03-10 21:49:30','2015-10-11 16:46:32',1,30000571,0,2,1,2,3,2,2,0,0,4,2,0,0,1,0,1,0,1,0,0,0,2,2,1),(4423,'2015-03-10 21:49:30','2015-10-11 16:46:32',1,30000436,1,1,4,0,1,0,1,2,0,0,0,0,2,5,1,1,5,0,0,4,0,0,0,5),(4424,'2015-03-10 21:49:30','2015-10-11 16:46:32',1,30004164,25,17,15,12,16,18,23,6,16,22,40,10,7,12,12,10,3,12,8,3,3,6,5,17),(4425,'2015-03-10 21:49:30','2015-10-11 16:46:32',1,30002411,20,11,28,32,27,20,19,23,19,60,57,38,39,71,28,35,44,17,40,16,20,34,29,14),(4426,'2015-03-10 21:49:30','2015-10-11 16:46:32',1,30003964,6,20,10,9,9,11,6,11,11,14,22,12,11,18,13,8,11,10,9,13,9,7,10,18),(4427,'2015-03-10 21:49:30','2015-10-11 16:46:32',1,30000964,13,6,10,10,8,10,5,6,5,7,6,8,6,22,12,3,10,11,35,39,22,8,9,8),(4428,'2015-03-10 21:49:30','2015-10-11 16:46:32',1,30003798,73,40,75,46,57,40,54,20,32,67,66,42,43,67,88,78,80,59,47,59,53,63,72,51),(4429,'2015-03-10 21:49:30','2015-10-11 16:46:32',1,30000479,18,5,8,7,7,5,35,14,11,30,9,11,14,22,49,37,4,3,1,0,49,15,14,9),(4430,'2015-03-10 21:49:30','2015-10-11 16:46:32',1,30001780,22,10,4,3,16,15,7,1,6,14,48,18,10,80,4,15,3,10,6,6,13,4,8,21),(4431,'2015-03-10 21:49:30','2015-10-11 16:46:32',1,30001808,5,5,3,1,8,10,1,14,4,0,1,5,5,1,1,1,0,5,2,0,3,2,1,2),(4432,'2015-03-10 21:49:30','2015-10-11 16:46:32',1,30000763,14,1,15,10,1,1,7,6,15,9,8,3,5,2,2,2,9,15,4,12,2,2,6,8),(4433,'2015-03-10 21:49:30','2015-10-11 16:46:32',1,30003152,18,17,15,16,12,10,15,30,25,16,23,19,20,41,147,114,33,12,9,4,14,4,7,10),(4434,'2015-03-10 21:49:30','2015-10-11 16:46:32',1,30001220,13,8,9,14,8,9,18,9,2,31,43,40,37,133,31,34,53,18,53,94,50,41,40,46),(4435,'2015-03-10 21:49:30','2015-10-11 16:46:32',1,30000584,19,2,5,1,2,3,13,2,2,2,1,0,0,13,5,8,2,3,1,0,2,3,0,6),(4436,'2015-03-10 21:49:30','2015-10-11 16:46:32',1,30001363,1462,1181,1268,1293,1279,1174,1186,899,979,1329,1504,1359,1308,1537,1670,1716,1659,1487,951,1065,1355,1520,1466,1415),(4437,'2015-03-10 21:49:30','2015-10-11 16:46:32',1,30002237,11,4,0,12,13,9,4,2,3,41,132,87,19,14,5,16,24,6,7,11,9,17,16,16),(4438,'2015-03-10 21:49:30','2015-10-11 16:46:32',1,30004273,11,7,27,17,21,14,5,8,13,46,64,26,29,19,38,37,28,20,28,20,11,8,5,13),(4439,'2015-03-10 21:49:30','2015-10-11 16:46:32',1,30003511,35,14,21,29,43,44,23,21,25,33,40,39,43,52,48,49,37,30,30,35,43,61,42,34),(4440,'2015-03-10 21:49:30','2015-10-11 16:46:32',1,30003225,1,8,2,10,3,2,8,2,7,2,3,7,5,3,2,3,2,6,5,0,2,10,4,4),(4441,'2015-03-10 21:49:30','2015-10-11 16:46:32',1,30004099,45,17,38,31,30,28,36,30,21,60,60,34,29,49,35,46,45,26,35,28,46,24,20,25),(4442,'2015-03-10 21:49:30','2015-10-11 16:46:32',1,30000009,8,1,1,5,6,5,1,3,3,2,1,7,6,2,10,7,2,1,2,3,7,3,2,4),(4443,'2015-03-10 21:49:30','2015-10-11 16:46:32',1,30002983,11,5,9,11,6,11,3,6,3,37,33,6,19,26,19,11,13,3,23,17,10,10,7,2),(4444,'2015-03-10 21:49:30','2015-10-11 16:46:32',1,30005323,145,101,156,159,191,136,154,68,91,161,169,145,117,192,225,227,234,130,153,166,190,201,185,148),(4445,'2015-03-10 21:49:30','2015-10-11 16:46:32',1,30003510,22,3,15,13,15,15,6,11,16,14,11,14,13,19,20,18,29,14,9,13,12,19,22,14),(4446,'2015-03-10 21:49:30','2015-10-11 16:46:32',1,30000089,3,3,8,5,8,8,24,10,5,30,24,37,18,12,9,18,11,12,13,10,14,29,19,13),(4447,'2015-03-10 21:49:30','2015-10-11 16:46:32',1,30003070,104,111,147,142,133,164,103,61,63,93,107,108,71,160,233,221,139,107,108,147,103,126,117,91),(4448,'2015-03-10 21:49:30','2015-10-11 16:46:32',1,30002980,153,66,74,81,55,53,60,39,48,36,52,54,38,48,65,50,74,44,49,42,65,51,47,55),(4449,'2015-03-10 21:49:30','2015-10-11 16:46:32',1,30005218,179,138,123,170,173,184,132,107,127,213,262,225,212,247,285,261,291,213,140,133,187,383,370,287),(4450,'2015-03-10 21:49:30','2015-10-11 16:46:32',1,30000175,49,32,51,62,51,54,55,36,28,68,143,68,59,48,90,83,81,74,45,39,46,89,81,50),(4451,'2015-03-10 21:49:30','2015-10-11 16:46:32',1,30004272,8,2,7,9,14,11,6,1,4,14,7,35,33,1,9,12,9,1,3,5,1,4,2,1),(4452,'2015-03-10 21:49:30','2015-10-11 16:46:32',1,30001369,77,61,33,93,91,84,77,39,51,73,100,88,83,80,98,94,81,70,33,44,45,100,102,76),(4453,'2015-03-10 21:49:30','2015-10-11 16:46:32',1,30002575,10,23,17,21,42,20,9,12,33,54,65,37,22,23,19,65,16,22,9,29,42,41,40,28),(4454,'2015-03-10 21:49:30','2015-10-11 16:46:32',1,30005052,118,73,161,140,131,117,98,101,121,172,221,168,165,187,214,201,171,152,114,147,160,165,149,111),(4455,'2015-03-10 21:49:30','2015-10-11 16:46:32',1,30004292,3,5,5,6,4,3,11,3,6,14,12,3,5,9,8,12,5,12,2,7,4,5,10,3),(4456,'2015-03-10 21:49:30','2015-10-11 16:46:32',1,30002111,0,1,3,3,1,3,13,2,0,0,1,10,4,2,8,13,2,1,1,32,28,41,10,3),(4457,'2015-03-10 21:49:30','2015-10-11 16:46:32',1,30004570,1,4,0,2,0,0,1,1,2,8,8,0,0,2,3,4,5,1,3,3,2,1,1,1),(4458,'2015-03-10 21:49:30','2015-03-10 21:49:30',1,30001453,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(4459,'2015-03-10 21:49:30','2015-03-10 21:49:30',1,30001630,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(4460,'2015-03-10 21:49:30','2015-10-11 16:46:32',1,30005141,6,2,5,1,1,3,1,1,2,0,0,0,0,0,0,1,1,0,0,0,1,0,0,1),(4461,'2015-03-10 21:49:30','2015-10-11 16:46:32',1,30000565,1,3,0,1,1,1,3,1,1,3,3,1,2,1,0,1,2,2,0,2,2,3,3,0),(4462,'2015-03-10 21:49:30','2015-10-11 16:46:32',1,30002422,50,28,36,30,40,27,51,22,24,26,19,30,32,23,26,16,32,43,17,29,36,35,23,22),(4463,'2015-03-10 21:49:30','2015-10-11 16:46:32',1,30001288,6,33,13,13,7,3,10,13,7,19,36,18,21,25,63,32,8,14,12,4,19,17,11,18),(4464,'2015-03-10 21:49:30','2015-10-11 16:46:32',1,30003794,266,241,280,245,226,219,270,123,145,240,261,226,196,279,334,284,225,206,209,242,300,275,338,239),(4465,'2015-03-10 21:49:30','2015-10-11 16:46:32',1,30002675,9,14,8,20,15,12,10,3,9,11,11,7,10,9,13,4,10,21,8,14,22,20,6,6),(4466,'2015-03-10 21:49:30','2015-10-11 16:46:32',1,30002696,29,17,22,19,28,22,21,22,24,54,44,26,26,45,46,46,25,23,33,29,33,45,35,33),(4467,'2015-03-10 21:49:30','2015-10-11 16:46:32',1,30002711,144,80,127,152,117,118,118,88,107,114,132,172,133,177,166,198,166,191,119,117,146,166,158,157),(4468,'2015-03-10 21:49:30','2015-10-11 16:46:32',1,30003376,47,33,43,40,35,38,22,21,20,41,33,24,26,51,77,66,59,53,20,25,25,44,34,30),(4469,'2015-03-10 21:49:30','2015-10-11 16:46:32',1,30005333,11,7,18,12,14,19,10,9,18,25,39,31,17,25,31,39,27,18,17,14,29,33,27,15),(4470,'2015-03-10 21:49:30','2015-10-11 16:46:32',1,30003593,9,9,6,7,13,11,14,2,10,24,34,13,16,3,13,6,37,7,3,1,5,12,13,6),(4471,'2015-03-10 21:49:30','2015-10-11 16:46:32',1,30003607,5,6,5,7,9,6,8,11,2,4,10,11,11,5,7,12,6,12,4,3,10,13,9,6),(4472,'2015-03-10 21:49:30','2015-10-11 16:46:32',1,30000086,31,22,26,32,18,24,17,16,17,36,31,27,27,35,38,49,42,17,22,38,39,30,28,27),(4473,'2015-03-10 21:49:30','2015-10-11 16:46:32',1,30002809,220,131,227,196,187,176,120,181,175,223,215,158,118,324,298,270,292,222,149,193,298,273,233,219),(4474,'2015-03-10 21:49:30','2015-10-11 16:46:32',1,30002200,10,21,46,27,18,23,28,7,15,27,35,40,32,29,44,50,36,37,10,28,27,41,45,20),(4475,'2015-03-10 21:49:30','2015-10-11 16:46:32',1,30004101,41,19,20,46,16,23,19,23,20,28,45,32,21,39,31,34,27,23,24,14,30,23,10,26),(4476,'2015-03-10 21:49:30','2015-10-11 16:46:32',1,30000944,40,13,16,8,4,17,10,13,14,10,10,12,15,21,58,75,32,19,37,13,19,9,85,47),(4477,'2015-03-10 21:49:30','2015-10-11 16:46:32',1,30002801,413,291,394,377,371,324,353,270,263,367,400,427,394,428,497,514,476,407,322,305,345,451,503,452),(4478,'2015-03-10 21:49:30','2015-10-11 16:46:32',1,30002445,2,8,1,4,3,4,3,0,2,3,2,6,6,1,0,0,1,1,0,1,1,2,3,3),(4479,'2015-03-10 21:49:30','2015-10-11 16:46:32',1,30001158,78,77,214,173,153,126,76,53,142,340,248,119,74,214,357,223,159,118,271,322,147,147,328,104),(4480,'2015-03-10 21:49:30','2015-10-11 16:46:32',1,30004377,1,1,0,0,3,5,3,1,2,7,3,3,4,8,1,2,5,3,3,3,0,2,2,13),(4481,'2015-03-10 21:49:30','2015-10-11 16:46:32',1,30004758,50,33,2,10,9,13,2,10,33,15,27,23,15,28,31,29,34,12,10,4,31,23,12,15),(4482,'2015-03-10 21:49:30','2015-10-11 16:46:32',1,30004484,19,16,48,4,10,12,39,25,13,11,6,10,22,19,20,28,44,24,10,13,24,28,26,37),(4483,'2015-03-10 21:49:30','2015-10-11 16:46:32',1,30002835,3,1,2,5,2,1,2,2,0,1,0,5,7,2,3,9,1,1,0,0,0,1,0,0),(4484,'2015-03-10 21:49:30','2015-10-11 16:46:32',1,30005174,13,4,11,7,18,10,5,8,3,16,14,7,10,25,21,19,25,9,25,17,7,9,9,11),(4485,'2015-03-10 21:49:30','2015-10-11 16:46:32',1,30000515,0,30,7,13,7,7,5,14,8,2,2,2,4,0,11,3,1,1,0,0,0,0,0,0),(4486,'2015-03-10 21:49:30','2015-10-11 16:46:32',1,30003667,3,4,4,5,4,7,12,4,4,2,2,2,2,18,0,2,2,1,11,4,9,0,2,3),(4487,'2015-03-10 21:49:30','2015-10-11 16:46:32',1,30005015,617,671,645,720,632,626,563,437,445,704,801,762,694,767,900,889,799,616,474,676,824,854,871,687),(4488,'2015-03-10 21:49:30','2015-10-11 16:46:32',1,30004143,38,9,19,27,34,16,10,5,10,26,31,29,31,30,52,64,57,36,20,19,33,28,27,23),(4489,'2015-03-10 21:49:30','2015-10-11 16:46:32',1,30003639,1,3,3,1,1,2,1,1,2,2,2,2,1,3,0,2,0,1,4,0,0,10,4,5),(4490,'2015-03-10 21:49:30','2015-10-11 16:46:32',1,30000488,0,0,0,2,0,0,0,0,0,0,0,1,1,1,9,9,2,0,1,68,37,40,18,13),(4491,'2015-03-10 21:49:30','2015-10-11 16:46:32',1,30001096,2,0,3,0,2,3,5,0,0,6,4,0,0,7,1,2,4,2,2,0,1,2,2,0),(4492,'2015-03-10 21:49:30','2015-10-11 16:46:32',1,30004211,25,9,4,5,11,9,6,9,3,5,15,4,2,2,7,7,1,4,0,2,2,7,34,4),(4493,'2015-03-10 21:49:30','2015-10-11 16:46:32',1,30001151,0,0,1,1,0,0,0,0,0,0,0,2,2,3,0,0,0,2,0,0,1,3,1,0),(4494,'2015-03-10 21:49:30','2015-10-11 16:46:32',1,30001911,28,8,37,34,18,14,24,16,11,34,45,57,57,91,53,60,52,69,41,57,79,42,27,38),(4495,'2015-03-10 21:49:30','2015-10-11 16:46:32',1,30002890,3,2,2,2,2,1,3,1,0,8,7,2,3,10,2,5,3,4,0,0,1,6,6,10),(4496,'2015-03-10 21:49:30','2015-10-11 16:46:32',1,30004877,4,9,8,7,13,10,4,16,7,0,0,6,2,2,2,2,3,2,0,4,1,1,1,3),(4497,'2015-03-10 21:49:30','2015-03-10 21:49:30',1,30001633,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(4498,'2015-03-10 21:49:30','2015-10-11 16:46:32',1,30000261,48,41,66,79,40,31,53,18,28,14,23,29,24,91,59,65,74,44,30,55,101,53,31,69),(4499,'2015-03-10 21:49:30','2015-10-11 16:46:32',1,30003195,31,18,52,23,25,19,26,24,17,7,12,13,5,9,10,7,12,5,7,12,13,8,8,25),(4500,'2015-03-10 21:49:30','2015-10-11 16:46:32',1,30002382,0,2,0,1,0,2,4,1,1,0,0,1,3,0,1,1,1,1,0,5,3,6,2,3),(4501,'2015-03-10 21:49:30','2015-10-11 16:46:32',1,30004748,2,6,1,0,0,1,2,0,2,11,13,3,5,5,25,9,18,14,8,10,13,12,14,19),(4502,'2015-03-10 21:49:30','2015-10-11 16:46:32',1,30004729,1,0,0,0,0,0,0,0,4,1,1,4,4,1,1,1,1,2,3,0,2,3,1,1),(4503,'2015-03-10 21:49:30','2015-10-11 16:46:32',1,30003673,11,9,18,3,22,18,28,7,7,5,3,2,3,3,6,4,6,18,3,9,9,17,8,0),(4504,'2015-03-10 21:49:30','2015-10-11 16:46:32',1,30003299,3,9,5,5,3,4,2,1,4,2,8,11,8,9,2,4,2,2,14,15,12,9,9,6),(4505,'2015-03-10 21:49:30','2015-10-11 16:46:32',1,30004745,29,26,11,6,6,10,7,5,15,19,22,10,11,18,25,20,44,21,12,9,23,36,37,32),(4506,'2015-03-10 21:49:30','2015-10-11 16:46:32',1,30001959,3,4,7,6,4,2,3,11,14,6,6,7,10,3,8,8,19,21,4,2,12,19,25,9),(4507,'2015-03-10 21:49:30','2015-03-10 21:49:30',1,30000330,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(4508,'2015-03-10 21:49:30','2015-10-11 16:46:32',1,30004352,46,30,39,21,47,33,73,42,38,19,24,24,24,19,20,30,28,14,11,25,16,19,24,19),(4509,'2015-03-10 21:49:30','2015-10-11 16:46:32',1,30003715,61,71,114,121,59,54,49,22,83,300,217,132,93,287,245,112,138,54,82,212,110,106,187,72),(4510,'2015-03-10 21:49:30','2015-03-10 21:49:30',1,30001631,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(4511,'2015-03-10 21:49:30','2015-10-11 16:46:32',1,30004529,2,4,0,3,3,3,1,3,2,1,2,1,6,2,0,1,0,2,2,0,0,0,1,2),(4512,'2015-03-10 21:49:30','2015-10-11 16:46:32',1,30004676,5,2,1,2,1,2,9,7,3,4,7,3,2,6,6,9,4,9,5,7,5,3,2,4),(4513,'2015-03-10 21:49:30','2015-10-11 16:46:32',1,30000303,12,18,45,32,18,15,25,5,12,6,8,8,11,33,33,43,29,26,6,17,20,13,14,22),(4514,'2015-03-10 21:49:30','2015-10-11 16:46:32',1,30001771,6,9,3,6,6,6,0,6,3,14,20,15,8,7,4,3,10,2,0,6,7,7,7,5),(4515,'2015-03-10 21:49:30','2015-10-11 16:46:32',1,30004842,83,7,3,4,7,2,5,4,18,3,3,8,5,9,4,6,8,3,2,9,2,13,8,5),(4516,'2015-03-10 21:49:30','2015-10-11 16:46:32',1,30003287,1,8,3,2,2,3,5,1,4,4,10,9,5,5,10,9,4,3,9,7,6,10,2,2),(4517,'2015-03-10 21:49:30','2015-10-11 16:46:32',1,30004735,9,2,46,2,6,2,3,3,5,33,18,16,32,42,131,12,9,10,3,12,19,13,16,7),(4518,'2015-03-10 21:49:30','2015-10-11 16:46:32',1,30004870,82,54,52,48,55,42,79,68,39,54,31,23,16,25,32,34,43,27,14,129,166,32,59,56),(4519,'2015-03-10 21:49:30','2015-10-11 16:46:32',1,30001548,3,4,13,1,7,8,4,6,3,3,9,10,5,9,2,3,20,26,5,8,16,8,8,13),(4520,'2015-03-10 21:49:30','2015-10-11 16:46:32',1,30001916,5,2,0,4,0,1,8,1,2,5,1,4,3,8,5,4,2,4,5,2,2,2,2,3),(4521,'2015-03-10 21:49:30','2015-10-11 16:46:32',1,30003943,21,24,8,29,19,18,18,22,19,18,24,20,15,44,40,23,18,19,25,20,19,10,14,15),(4522,'2015-03-10 21:49:30','2015-10-11 16:46:32',1,30003966,5,17,6,7,8,11,7,15,15,16,24,15,14,27,17,10,12,11,10,13,12,6,7,21),(4523,'2015-03-10 21:49:30','2015-10-11 16:46:32',1,30001228,97,46,43,58,59,42,42,41,51,120,90,44,54,64,123,189,181,60,93,337,158,106,93,52),(4524,'2015-03-10 21:49:30','2015-10-11 16:46:32',1,30002841,8,9,7,9,12,23,7,1,8,4,3,6,8,27,10,11,3,7,2,2,13,6,7,11),(4525,'2015-03-10 21:49:30','2015-10-11 16:46:32',1,30003465,26,24,24,30,30,41,15,16,36,54,122,61,32,80,35,34,59,28,13,16,27,25,21,10),(4526,'2015-03-10 21:49:30','2015-10-11 16:46:32',1,30005070,11,7,19,9,8,10,12,5,13,8,10,19,6,35,21,26,9,10,13,10,11,19,21,11),(4527,'2015-03-10 21:49:30','2015-10-11 16:46:32',1,30002100,42,24,41,41,29,36,49,30,47,48,39,35,41,34,64,68,62,42,68,41,32,43,26,53),(4528,'2015-03-10 21:49:30','2015-10-11 16:46:32',1,30005245,20,19,31,18,25,19,24,58,78,27,31,48,54,42,37,36,42,43,16,61,63,70,54,70),(4529,'2015-03-10 21:49:30','2015-10-11 16:46:32',1,30001447,401,69,94,113,139,100,64,83,75,118,114,268,230,92,105,109,298,115,53,63,84,114,127,135),(4530,'2015-03-10 21:49:30','2015-10-11 16:46:32',1,30005143,17,4,0,0,0,1,0,0,6,1,0,0,0,0,0,1,1,1,0,0,1,2,1,0),(4531,'2015-03-10 21:49:30','2015-10-11 16:46:32',1,30003889,34,23,36,40,32,29,24,9,23,110,185,156,89,11,37,24,21,17,24,34,29,20,30,18),(4532,'2015-03-10 21:49:30','2015-10-11 16:46:32',1,30002813,280,258,390,294,279,258,226,268,257,227,233,206,164,258,296,302,335,256,216,307,336,305,262,249),(4533,'2015-03-10 21:49:30','2015-10-11 16:46:32',1,30003407,7,16,1,9,7,3,8,3,7,8,11,7,3,7,18,25,12,5,5,6,10,13,9,1),(4534,'2015-03-10 21:49:30','2015-10-11 16:46:32',1,30001437,126,52,55,39,51,47,55,21,40,58,47,43,37,43,38,42,41,32,69,63,44,39,35,45),(4535,'2015-03-10 21:49:30','2015-10-11 16:46:32',1,30003091,53,62,63,42,36,62,28,21,32,22,30,49,37,70,45,51,36,28,32,78,82,43,36,45),(4536,'2015-03-10 21:49:30','2015-10-11 16:46:32',1,30002812,81,54,77,89,54,62,40,51,32,58,49,63,51,88,104,77,74,56,48,60,85,71,64,45),(4537,'2015-03-10 21:49:30','2015-10-11 16:46:32',1,30000001,264,219,240,243,221,230,213,154,182,352,341,312,309,422,448,452,367,312,248,292,337,320,274,305),(4538,'2015-03-10 21:49:30','2015-10-11 16:46:32',1,30005199,856,852,913,1028,868,832,745,588,683,948,1074,1024,889,1071,1229,1221,1105,922,723,885,1139,1226,1231,994),(4539,'2015-03-10 21:49:30','2015-10-11 16:46:32',1,30002979,165,79,95,87,57,65,67,43,59,42,60,57,42,78,64,68,75,41,44,38,61,52,43,49),(4540,'2015-03-10 21:49:30','2015-10-11 16:46:32',1,30005205,151,313,183,180,166,145,122,119,178,224,267,193,172,215,213,190,163,139,137,227,322,235,251,188),(4541,'2015-03-10 21:49:30','2015-10-11 16:46:32',1,30001441,76,44,48,7,7,6,13,9,9,10,20,11,12,7,10,10,16,5,6,9,15,17,19,14),(4542,'2015-03-10 21:49:30','2015-10-11 16:46:32',1,30001703,39,20,38,22,39,39,39,17,20,50,50,31,31,53,58,67,56,43,41,18,50,58,40,26),(4543,'2015-03-10 21:49:30','2015-10-11 16:46:32',1,30002778,83,52,75,70,59,53,31,72,42,90,88,99,72,97,79,88,90,64,41,61,78,72,59,60),(4544,'2015-03-10 21:49:30','2015-10-11 16:46:32',1,30001671,861,654,816,775,780,697,668,572,695,1260,1320,1279,1041,1139,1297,1328,1217,1042,852,1084,1480,1317,1305,1203),(4545,'2015-03-10 21:49:30','2015-10-11 16:46:32',1,30002274,3,3,18,7,7,12,3,4,2,12,22,30,27,19,21,31,19,29,4,10,13,20,9,9),(4546,'2015-03-10 21:49:30','2015-10-11 16:46:32',1,30000195,95,40,54,110,58,65,24,34,37,63,102,111,85,202,112,279,86,102,38,70,77,182,90,104),(4547,'2015-03-10 21:49:30','2015-10-11 16:46:32',1,30004937,22,21,50,24,16,12,18,19,77,33,36,17,42,44,202,93,43,42,14,12,77,57,43,48),(4548,'2015-03-10 21:49:30','2015-10-11 16:46:32',1,30001051,5,5,2,2,2,2,8,5,6,8,6,0,2,3,7,12,28,25,1,4,0,1,2,6),(4549,'2015-03-10 21:49:30','2015-10-11 16:46:32',1,30002502,16,11,32,21,9,8,19,13,4,9,9,7,7,10,6,3,18,20,13,7,8,12,17,18),(4550,'2015-03-10 21:49:30','2015-10-11 16:46:32',1,30005089,10,7,6,6,21,18,10,5,8,14,6,8,14,7,35,34,6,8,10,12,20,27,15,5),(4551,'2015-03-10 21:49:30','2015-10-11 16:46:32',1,30004638,112,7,15,8,30,30,14,0,3,384,273,168,127,270,445,341,269,210,232,538,378,132,109,43),(4552,'2015-03-10 21:49:30','2015-10-11 16:46:32',1,30003907,15,10,30,23,6,6,11,14,9,77,56,38,20,13,84,55,44,14,9,7,32,25,27,28),(4553,'2015-03-10 21:49:30','2015-10-11 16:46:32',1,30045350,16,5,10,10,8,6,7,6,6,11,12,12,6,11,16,14,22,33,14,5,21,27,16,16),(4554,'2015-03-10 21:49:30','2015-10-11 16:46:32',1,30003128,8,4,1,0,3,5,21,3,0,10,10,4,8,4,3,2,1,2,1,2,3,1,0,5),(4555,'2015-03-10 21:49:30','2015-10-11 16:46:32',1,30005200,154,313,183,178,163,128,132,121,172,232,271,173,163,201,208,188,157,162,137,235,330,245,237,205),(4556,'2015-03-10 21:49:30','2015-10-11 16:46:32',1,30004158,8,11,10,6,8,9,8,7,4,0,1,4,13,11,11,11,7,9,14,55,13,3,8,11),(4557,'2015-03-10 21:49:30','2015-10-11 16:46:32',1,30001645,98,126,95,116,115,112,85,68,56,120,145,106,112,137,126,121,142,93,121,69,110,192,143,115),(4558,'2015-03-10 21:49:30','2015-10-11 16:46:32',1,30002763,188,103,155,196,117,134,167,98,124,176,184,217,169,198,219,243,220,222,136,178,171,167,173,176),(4559,'2015-03-10 21:49:30','2015-10-11 16:46:32',1,30002385,330,262,312,310,310,247,262,196,216,409,391,370,357,427,475,469,441,333,239,290,342,429,368,309),(4560,'2015-03-10 21:49:30','2015-10-11 16:46:32',1,30003507,91,47,59,53,76,60,46,40,60,68,66,63,82,78,91,91,87,59,60,56,70,99,80,93),(4561,'2015-03-10 21:49:30','2015-10-11 16:46:32',1,30001681,38,20,71,43,40,36,35,26,38,65,51,46,46,112,59,61,108,95,111,81,110,59,72,85),(4562,'2015-03-10 21:49:30','2015-10-11 16:46:32',1,30045335,13,17,14,9,15,14,13,14,14,9,14,12,14,8,24,23,26,48,5,10,8,22,14,12),(4563,'2015-03-10 21:49:30','2015-10-11 16:46:32',1,30000926,1,11,8,7,5,7,10,0,2,17,22,15,12,14,12,2,3,8,3,3,4,1,5,0),(4564,'2015-03-10 21:49:30','2015-10-11 16:46:32',1,30001733,170,124,222,180,161,149,119,107,126,187,185,205,153,276,234,228,220,181,130,182,278,197,201,216),(4565,'2015-03-10 21:49:30','2015-10-11 16:46:32',1,30002038,5,1,10,46,15,14,11,2,2,2,6,2,4,3,0,2,5,3,0,3,1,1,1,1),(4566,'2015-03-10 21:49:30','2015-10-11 16:46:32',1,30001760,7,5,4,4,3,3,0,1,6,0,0,0,0,0,0,0,1,2,4,2,1,11,7,5),(4567,'2015-03-10 21:49:30','2015-10-11 16:46:32',1,30001842,33,23,78,37,62,53,53,35,23,62,63,54,63,69,129,117,97,77,16,53,81,97,89,62),(4568,'2015-03-10 21:49:30','2015-10-11 16:46:32',1,30003000,14,17,18,14,16,10,15,9,18,11,14,3,6,19,18,12,21,8,13,22,10,8,9,14),(4569,'2015-03-10 21:49:30','2015-10-11 16:46:32',1,30001677,35,69,81,102,71,84,67,77,53,143,133,164,150,81,113,115,112,108,37,98,103,129,126,97),(4570,'2015-03-10 21:49:30','2015-10-11 16:46:32',1,30002966,8,2,11,21,17,16,13,1,1,6,5,10,7,7,4,7,13,12,7,2,5,9,7,7),(4571,'2015-03-10 21:49:30','2015-10-11 16:46:32',1,30002226,167,195,180,187,221,244,159,90,116,205,199,223,220,192,206,232,261,202,123,165,209,220,239,168),(4572,'2015-03-10 21:49:30','2015-10-11 16:46:32',1,30002720,29,54,63,54,40,44,33,24,39,44,26,43,38,66,79,85,54,28,60,63,80,38,39,78),(4573,'2015-03-10 21:49:30','2015-10-11 16:46:32',1,30005314,19,1,10,10,5,7,6,13,2,16,16,11,6,9,3,7,9,5,3,12,7,11,20,16),(4574,'2015-03-10 21:49:30','2015-10-11 16:46:32',1,30000069,18,4,28,17,14,19,27,16,10,18,15,25,26,15,20,24,20,21,24,15,19,33,19,20),(4575,'2015-03-10 21:49:30','2015-03-10 21:49:30',1,30001464,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(4576,'2015-03-10 21:49:30','2015-03-10 21:49:30',1,30000352,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(4577,'2015-03-10 21:49:30','2015-10-11 16:46:32',1,30000076,36,37,51,52,32,42,32,29,30,51,46,56,40,72,67,52,70,45,36,63,60,55,67,38),(4578,'2015-03-10 21:49:30','2015-10-11 16:46:32',1,30005334,107,74,108,115,79,88,60,69,52,75,74,93,79,104,132,123,110,88,61,77,92,114,116,79),(4579,'2015-03-10 21:49:30','2015-10-11 16:46:32',1,30000100,5,7,6,4,6,6,1,5,3,4,4,10,8,3,14,6,6,8,13,9,6,8,9,1),(4580,'2015-03-10 21:49:30','2015-10-11 16:46:32',1,30003932,8,4,33,2,12,11,10,12,17,11,4,24,21,10,10,11,5,7,3,2,12,18,21,4),(4581,'2015-03-10 21:49:30','2015-10-11 16:46:32',1,30002784,74,59,117,117,96,73,58,65,69,89,86,86,84,140,117,109,135,89,91,136,101,104,105,90),(4582,'2015-03-10 21:49:30','2015-10-11 16:46:32',1,30001684,4,4,5,4,4,5,2,7,7,6,4,13,17,64,14,9,4,6,5,9,4,6,4,5),(4583,'2015-03-10 21:49:30','2015-10-11 16:46:32',1,30004298,34,29,43,25,28,27,46,17,32,61,210,61,56,60,147,141,102,64,68,238,127,57,58,55),(4584,'2015-03-10 21:49:30','2015-10-11 16:46:32',1,30001644,26,30,26,28,49,31,36,18,29,35,53,49,37,55,54,65,55,81,24,27,35,52,40,50),(4585,'2015-03-10 21:49:30','2015-10-11 16:46:32',1,30002474,26,23,23,23,34,34,31,51,23,16,11,7,16,25,135,89,35,19,6,16,27,14,12,10),(4586,'2015-03-10 21:49:30','2015-10-11 16:46:32',1,30000742,24,4,23,13,8,11,3,4,24,1,0,5,0,7,7,5,9,6,5,1,4,2,2,6),(4587,'2015-03-10 21:49:30','2015-10-11 16:46:32',1,30001908,2,8,2,9,8,10,10,6,0,14,19,3,2,5,7,13,7,3,2,6,7,3,0,2),(4588,'2015-03-10 21:49:30','2015-10-11 16:46:32',1,30002584,36,11,11,32,7,6,19,13,35,14,11,4,5,48,11,40,31,14,13,21,186,8,11,14),(4589,'2015-03-10 21:49:30','2015-10-11 16:46:32',1,30004047,0,3,3,1,1,2,0,7,4,3,3,6,7,3,1,0,7,2,2,2,7,5,5,6),(4590,'2015-03-10 21:49:30','2015-10-11 16:46:32',1,30004960,12,8,9,7,6,2,6,5,37,11,9,7,32,20,124,8,9,12,4,5,6,27,15,16),(4591,'2015-03-10 21:49:30','2015-03-10 21:49:30',1,30001461,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(4592,'2015-03-10 21:49:30','2015-03-10 21:49:30',1,30001519,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(4593,'2015-03-10 21:49:30','2015-10-11 16:46:32',1,30001407,123,73,93,73,73,66,75,59,79,119,134,123,125,131,108,110,86,105,62,82,104,81,73,64),(4594,'2015-03-10 21:49:30','2015-10-11 16:46:32',1,30032505,18,3,9,11,5,4,9,2,2,4,12,8,11,7,9,10,6,13,5,12,4,5,7,8),(4595,'2015-03-10 21:49:30','2015-10-11 16:46:32',1,30002062,96,74,131,129,81,79,82,66,65,211,198,103,68,132,154,158,112,123,102,106,158,147,120,105),(4596,'2015-03-10 21:49:30','2015-10-11 16:46:32',1,30003383,3,1,1,1,5,2,3,3,0,4,6,9,5,6,4,4,0,1,17,2,4,9,13,6),(4597,'2015-03-10 21:49:30','2015-10-11 16:46:32',1,30003052,311,144,209,259,279,226,195,163,206,333,357,238,216,339,301,317,249,221,231,230,208,265,263,264),(4598,'2015-03-10 21:49:30','2015-10-11 16:46:32',1,30003436,24,46,82,39,30,28,32,30,31,43,51,78,58,47,47,43,50,52,38,50,59,63,82,60),(4599,'2015-03-10 21:49:30','2015-10-11 16:46:32',1,30002532,30,15,21,10,21,30,11,4,19,25,14,21,16,54,26,19,20,15,4,7,16,10,7,9),(4600,'2015-03-10 21:49:30','2015-10-11 16:46:32',1,30005212,24,9,16,23,5,7,36,2,6,20,32,23,39,27,4,9,10,15,9,15,19,26,14,22),(4601,'2015-03-10 21:49:30','2015-10-11 16:46:32',1,30001429,126,81,102,86,101,91,76,60,86,105,73,94,105,88,74,90,72,72,102,82,81,94,104,81),(4602,'2015-03-10 21:49:30','2015-10-11 16:46:32',1,30003020,55,24,30,34,29,40,40,31,43,48,62,55,52,70,63,51,51,33,51,57,67,61,44,67),(4603,'2015-03-10 21:49:30','2015-10-11 16:46:32',1,30002191,74,58,109,123,99,100,114,67,59,97,105,101,115,166,151,161,125,82,69,79,113,98,102,97),(4604,'2015-03-10 21:49:30','2015-10-11 16:46:32',1,30003402,49,30,40,61,69,59,32,30,38,41,44,37,39,39,64,70,41,37,46,46,31,53,44,46),(4605,'2015-03-10 21:49:30','2015-10-11 16:46:32',1,30005301,333,217,296,308,297,268,260,220,204,368,349,354,293,361,398,451,427,355,273,333,407,405,383,364),(4606,'2015-03-10 21:49:30','2015-10-11 16:46:32',1,30003606,8,5,14,10,10,4,18,7,1,5,11,12,4,6,2,4,7,3,4,4,8,15,13,8),(4607,'2015-03-10 21:49:30','2015-10-11 16:46:32',1,30001127,5,3,4,11,3,0,19,12,17,34,25,36,19,12,8,6,32,10,1,5,8,15,12,20),(4608,'2015-03-10 21:49:30','2015-10-11 16:46:32',1,30002327,6,2,0,2,1,2,0,5,4,0,0,0,0,1,0,0,4,1,0,0,0,0,0,1),(4609,'2015-03-10 21:49:30','2015-10-11 16:46:32',1,30000588,15,13,47,13,39,7,27,4,13,51,36,13,9,125,72,58,14,9,16,15,44,43,43,12),(4610,'2015-03-10 21:49:30','2015-10-11 16:46:32',1,30004935,3,6,13,3,4,4,5,6,55,15,15,6,6,13,10,10,23,6,5,2,12,17,11,15),(4611,'2015-03-10 21:49:30','2015-10-11 16:46:32',1,30000641,3,0,0,1,2,0,0,1,5,6,4,4,1,4,0,0,2,2,1,3,5,2,3,0),(4612,'2015-03-10 21:49:30','2015-10-11 16:46:32',1,30004500,21,14,5,7,5,7,19,16,21,18,17,22,11,31,64,53,83,19,8,33,23,44,33,84),(4613,'2015-03-10 21:49:30','2015-10-11 16:46:32',1,30004452,47,12,13,29,11,14,20,19,56,21,15,32,21,103,78,71,27,40,43,47,120,78,44,58),(4614,'2015-03-10 21:49:30','2015-10-11 16:46:32',1,30005071,2,0,11,2,3,3,12,0,2,15,17,4,1,1,6,10,6,10,0,1,5,2,3,5),(4615,'2015-03-10 21:49:30','2015-10-11 16:46:32',1,30003431,96,78,88,99,67,66,110,40,55,71,78,59,64,95,143,135,133,77,70,97,102,113,113,74),(4616,'2015-03-10 21:49:30','2015-10-11 16:46:32',1,30002069,44,51,37,47,47,41,50,26,25,44,49,59,40,39,39,43,31,43,41,27,46,55,56,45),(4617,'2015-03-10 21:49:30','2015-10-11 16:46:32',1,30002562,37,33,40,23,46,28,38,24,43,41,44,34,27,37,50,53,45,50,10,16,26,38,32,35),(4618,'2015-03-10 21:49:30','2015-10-11 16:46:32',1,30000869,9,14,6,21,9,10,17,7,26,10,17,17,18,15,10,14,10,9,9,10,4,24,20,6),(4619,'2015-03-10 21:49:30','2015-10-11 16:46:32',1,30002668,125,102,140,133,132,141,82,61,94,137,116,138,114,142,156,134,164,133,91,115,144,125,133,101),(4620,'2015-03-10 21:49:30','2015-10-11 16:46:32',1,30042715,98,75,104,99,110,99,100,82,79,134,143,153,131,215,215,178,172,137,133,144,156,180,182,191),(4621,'2015-03-10 21:49:30','2015-10-11 16:46:32',1,30002508,154,99,123,114,146,143,94,86,92,145,148,139,151,140,161,171,133,103,123,125,140,137,127,137),(4622,'2015-03-10 21:49:30','2015-10-11 16:46:32',1,30004423,12,3,0,2,2,3,1,7,4,4,2,1,1,6,12,8,9,6,80,26,17,9,8,27),(4623,'2015-03-10 21:49:30','2015-10-11 16:46:32',1,30001375,370,283,313,372,333,306,310,214,271,389,410,373,373,408,478,448,483,384,236,332,447,497,470,393),(4624,'2015-03-10 21:49:30','2015-10-11 16:46:32',1,30001412,82,44,24,48,42,26,41,33,44,36,45,56,45,51,40,43,45,40,27,53,60,55,56,54),(4625,'2015-03-10 21:49:30','2015-10-11 16:46:32',1,30045327,21,18,10,3,26,30,40,19,27,23,33,20,22,29,25,28,24,23,15,23,18,40,43,37),(4626,'2015-03-10 21:49:30','2015-10-11 16:46:32',1,30000812,14,24,9,9,27,44,14,7,15,2,2,7,11,3,5,5,0,2,3,0,2,5,3,5),(4627,'2015-03-10 21:49:30','2015-10-11 16:46:32',1,30003733,9,7,5,14,2,1,11,17,39,14,13,11,8,30,19,7,26,9,28,17,5,18,15,5),(4628,'2015-03-10 21:49:30','2015-10-11 16:46:32',1,30003742,68,62,49,37,22,49,14,16,26,55,65,51,50,51,69,61,52,48,35,29,59,119,55,97),(4629,'2015-03-10 21:49:30','2015-10-11 16:46:32',1,30004634,9,2,5,8,9,5,1,3,5,1,1,4,6,6,6,4,0,3,5,5,10,13,4,9),(4630,'2015-03-10 21:49:30','2015-10-11 16:46:32',1,30004275,5,4,15,3,3,1,14,6,9,11,20,7,5,13,11,9,5,12,13,9,9,0,3,4),(4631,'2015-03-10 21:49:30','2015-10-11 16:46:32',1,30001379,653,599,666,734,708,671,502,378,458,642,646,583,562,726,762,732,804,565,412,538,668,704,697,531),(4632,'2015-03-10 21:49:30','2015-10-11 16:46:32',1,30002770,21,11,14,16,10,13,10,7,8,11,16,34,31,12,7,10,18,14,6,8,16,19,17,11),(4633,'2015-03-10 21:49:30','2015-10-11 16:46:32',1,30003064,40,31,34,30,19,34,18,25,27,24,29,41,30,43,36,40,37,20,44,32,54,41,32,30),(4634,'2015-03-10 21:49:30','2015-10-11 16:46:32',1,30004098,66,51,60,35,49,42,47,35,25,85,98,58,64,69,73,75,85,91,47,64,83,77,89,60),(4635,'2015-03-10 21:49:30','2015-10-11 16:46:32',1,30002086,10,13,9,20,10,9,6,5,6,23,19,28,28,23,28,14,37,31,23,20,27,18,22,42),(4636,'2015-03-10 21:49:30','2015-10-11 16:46:32',1,30000128,289,193,306,359,200,226,248,192,194,379,400,356,327,383,463,459,393,327,289,297,337,419,417,298),(4637,'2015-03-10 21:49:30','2015-10-11 16:46:32',1,30003958,0,0,0,0,3,3,0,1,1,4,6,1,0,0,2,3,2,0,2,1,3,0,0,1),(4638,'2015-03-10 21:49:30','2015-10-11 16:46:32',1,30002073,121,89,131,141,144,137,79,63,57,136,129,165,126,80,105,128,93,77,22,48,59,80,68,85),(4639,'2015-03-10 21:49:30','2015-10-11 16:46:32',1,30000263,113,54,84,81,81,80,119,55,73,51,85,164,73,157,173,171,143,84,90,136,213,141,114,71),(4640,'2015-03-10 21:49:30','2015-10-11 16:46:32',1,30002614,12,2,14,8,13,2,10,3,5,9,4,7,12,9,49,8,12,4,3,27,6,5,5,19),(4641,'2015-03-10 21:49:30','2015-10-11 16:46:32',1,30003779,6,6,6,7,16,15,4,2,5,5,6,6,8,6,9,4,3,6,1,2,4,23,24,13),(4642,'2015-03-10 21:49:30','2015-10-11 16:46:32',1,30002901,36,31,91,49,51,49,34,46,42,414,447,643,468,941,738,511,461,321,656,307,428,1083,323,202),(4643,'2015-03-10 21:49:30','2015-10-11 16:46:32',1,30003323,23,28,46,48,36,36,54,17,25,16,20,17,13,27,22,13,22,37,22,29,47,58,66,103),(4644,'2015-03-10 21:49:30','2015-10-11 16:46:32',1,30004844,22,17,21,8,3,4,3,42,52,5,4,3,4,2,6,11,5,2,12,10,18,6,10,8),(4645,'2015-03-10 21:49:30','2015-10-11 16:46:32',1,30000485,2,0,5,6,1,0,3,1,1,32,48,17,14,27,52,40,27,8,13,30,45,21,9,16),(4646,'2015-03-10 21:49:30','2015-10-11 16:46:32',1,30002353,23,6,3,4,9,13,8,1,10,1,5,4,2,28,6,8,7,3,2,5,2,9,12,21),(4647,'2015-03-10 21:49:30','2015-10-11 16:46:32',1,30003891,20,43,33,51,41,31,49,32,15,166,190,259,230,44,16,15,37,36,35,23,33,30,17,22),(4648,'2015-03-10 21:49:30','2015-10-11 16:46:32',1,30000601,12,1,14,3,8,7,0,0,6,9,8,8,8,27,19,20,24,2,34,20,10,15,32,19),(4649,'2015-03-10 21:49:30','2015-10-11 16:46:32',1,30002494,13,19,14,12,5,6,18,7,10,13,17,16,18,10,7,10,11,14,1,8,7,10,10,21),(4650,'2015-03-10 21:49:30','2015-10-11 16:46:32',1,30000747,4,3,8,0,5,6,1,2,1,2,1,5,5,8,4,7,6,19,0,2,0,2,6,3),(4651,'2015-03-10 21:49:30','2015-10-11 16:46:32',1,30002957,107,58,76,98,81,75,218,38,32,61,44,39,28,39,42,61,67,32,54,42,55,42,41,36),(4652,'2015-03-10 21:49:30','2015-10-11 16:46:32',1,30005156,8,2,8,4,13,14,3,10,2,8,9,6,8,10,18,16,17,11,22,15,11,13,13,23),(4653,'2015-03-10 21:49:30','2015-10-11 16:46:32',1,30004436,77,3,5,13,8,11,8,1,52,21,24,20,12,21,16,16,12,25,23,23,39,50,22,41),(4654,'2015-03-10 21:49:30','2015-10-11 16:46:32',1,30001788,0,1,0,0,0,1,1,0,0,1,4,2,3,8,3,0,2,6,0,0,1,4,4,1),(4655,'2015-03-10 21:49:30','2015-10-11 16:46:32',1,30000575,106,24,76,64,73,36,51,30,35,3,2,2,7,3,1,3,1,1,38,53,0,0,0,2),(4656,'2015-03-10 21:49:30','2015-10-11 16:46:32',1,30003717,66,75,20,27,28,34,25,15,11,32,35,69,51,43,75,80,46,60,21,51,40,71,63,70),(4657,'2015-03-10 21:49:30','2015-10-11 16:46:32',1,30004024,5,4,8,8,13,5,20,11,3,8,6,3,4,6,3,5,4,6,6,6,2,7,5,2),(4658,'2015-03-10 21:49:30','2015-10-11 16:46:32',1,30001997,40,24,114,23,24,26,24,10,11,6,10,20,17,14,22,11,14,9,23,16,9,12,10,17),(4659,'2015-03-10 21:49:30','2015-03-10 21:49:30',1,30000404,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(4660,'2015-03-10 21:49:30','2015-10-11 16:46:32',1,30000660,4,4,3,5,1,1,1,0,9,4,1,1,2,6,1,0,3,4,1,2,2,2,3,0),(4661,'2015-03-10 21:49:30','2015-03-10 21:49:30',1,30000394,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(4662,'2015-03-10 21:49:30','2015-10-11 16:46:32',1,30004439,1,0,3,0,0,0,2,2,14,6,9,9,3,4,14,10,10,14,4,7,12,22,19,27),(4663,'2015-03-10 21:49:30','2015-10-11 16:46:32',1,30002463,29,38,45,61,47,45,54,47,45,24,45,26,26,19,14,19,30,41,25,32,39,97,48,32),(4664,'2015-03-10 21:49:30','2015-10-11 16:46:32',1,30000493,14,2,4,11,11,8,4,8,0,1,3,6,3,10,15,4,8,8,1,2,3,16,7,15),(4665,'2015-03-10 21:49:30','2015-10-11 16:46:32',1,30003637,0,2,1,1,1,2,1,1,3,1,1,1,1,2,0,2,1,1,1,0,0,0,1,2),(4666,'2015-03-10 21:49:30','2015-10-11 16:46:32',1,30000459,11,4,10,9,6,4,24,8,6,6,12,20,11,16,16,12,13,12,3,1,11,9,13,9),(4667,'2015-03-10 21:49:30','2015-10-11 16:46:32',1,30000629,9,1,0,3,7,4,3,0,0,0,0,0,3,0,3,4,0,0,0,0,1,0,0,0),(4668,'2015-03-10 21:49:30','2015-10-11 16:46:32',1,30001155,50,47,74,120,34,33,68,45,77,243,321,213,96,295,268,322,205,162,240,111,218,157,195,185),(4669,'2015-03-10 21:49:30','2015-10-11 16:46:32',1,30003240,2,7,3,6,4,3,1,1,1,11,4,2,2,1,2,1,3,2,0,1,8,3,4,1),(4670,'2015-03-10 21:49:30','2015-10-11 16:46:32',1,30004594,11,7,19,6,3,11,25,2,2,1,8,0,1,8,7,8,3,4,11,4,25,14,15,1),(4671,'2015-03-10 21:49:30','2015-10-11 16:46:32',1,30002951,28,20,18,7,10,14,13,7,23,27,17,21,19,21,20,14,10,11,1,12,18,15,11,10),(4672,'2015-03-10 21:49:30','2015-10-11 16:46:32',1,30000765,10,2,8,9,6,10,0,1,3,5,6,7,9,3,2,1,4,2,0,1,7,3,7,9),(4673,'2015-03-10 21:49:30','2015-10-11 16:46:32',1,30000878,0,1,4,18,5,0,0,6,8,2,0,0,1,0,0,0,0,0,2,0,1,1,2,1),(4674,'2015-03-10 21:49:30','2015-10-11 16:46:32',1,30005131,5,2,6,3,9,4,1,2,0,2,0,0,1,1,6,4,4,8,1,5,2,2,2,0),(4675,'2015-03-10 21:49:30','2015-10-11 16:46:32',1,30001865,20,17,24,10,5,9,19,15,15,143,137,45,40,55,73,61,59,22,14,19,66,223,41,39),(4676,'2015-03-10 21:49:30','2015-10-11 16:46:32',1,30003347,2,7,1,5,2,3,1,5,3,1,2,6,3,1,3,0,2,7,3,4,2,2,1,1),(4677,'2015-03-10 21:49:30','2015-10-11 16:46:32',1,30000514,7,24,14,18,10,10,8,8,17,3,4,6,9,12,13,5,11,13,1,4,11,1,1,2),(4678,'2015-03-10 21:49:30','2015-10-11 16:46:32',1,30004441,73,4,10,13,11,17,16,0,32,19,18,30,13,18,22,23,11,34,34,23,24,57,23,28),(4679,'2015-03-10 21:49:30','2015-10-11 16:46:32',1,30001585,0,4,0,0,0,1,0,0,0,2,2,2,0,3,2,6,6,1,3,3,2,1,1,8),(4680,'2015-03-10 21:49:30','2015-10-11 16:46:32',1,30000555,2,0,2,2,6,2,2,0,1,5,4,3,2,1,7,5,2,4,5,6,5,10,6,1),(4681,'2015-03-10 21:49:30','2015-03-10 21:49:30',1,30000329,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(4682,'2015-03-10 21:49:30','2015-10-11 16:46:32',1,30003623,7,2,9,4,9,11,9,7,12,4,2,5,6,5,11,7,4,11,5,5,4,5,4,4),(4683,'2015-03-10 21:49:30','2015-10-11 16:46:32',1,30000703,18,14,31,20,23,24,36,26,16,27,47,18,17,13,51,52,13,7,9,15,34,50,51,25),(4684,'2015-03-10 21:49:30','2015-10-11 16:46:32',1,30001898,18,6,25,23,14,5,4,11,10,12,14,19,26,48,35,35,30,20,22,13,33,25,24,27),(4685,'2015-03-10 21:49:30','2015-10-11 16:46:32',1,30004834,33,20,3,4,2,0,3,38,24,4,4,9,4,6,3,6,10,1,6,14,4,16,17,4),(4686,'2015-03-10 21:49:30','2015-10-11 16:46:32',1,30000948,2,3,4,5,0,3,2,1,4,1,1,2,2,4,2,3,4,2,3,1,1,0,1,2),(4687,'2015-03-10 21:49:30','2015-10-11 16:46:32',1,30002608,17,13,4,13,19,19,4,24,24,1,3,3,3,2,6,3,5,6,2,4,1,5,12,12),(4688,'2015-03-10 21:49:30','2015-10-11 16:46:32',1,30003372,5,5,11,5,1,0,2,4,6,5,2,0,3,4,8,5,1,0,5,0,0,4,5,5),(4689,'2015-03-10 21:49:30','2015-10-11 16:46:32',1,30005126,1,0,0,3,5,3,1,0,1,2,0,0,0,0,1,0,1,2,2,0,0,0,0,1),(4690,'2015-03-10 21:49:30','2015-10-11 16:46:32',1,30003663,8,11,15,19,26,13,64,8,15,7,12,9,11,17,9,10,9,8,5,12,2,8,4,13),(4691,'2015-03-10 21:49:30','2015-10-11 16:46:32',1,30000210,30,10,13,21,18,13,23,12,10,8,4,7,8,23,7,12,45,19,13,14,10,15,5,4),(4692,'2015-03-10 21:49:30','2015-10-11 16:46:32',1,30001927,23,20,20,10,11,17,9,25,18,19,18,18,23,29,31,34,21,32,38,23,18,38,15,47),(4693,'2015-03-10 21:49:30','2015-10-11 16:46:32',1,30004074,3,2,10,9,16,11,5,1,7,1,1,3,1,5,8,9,2,3,1,3,4,7,9,3),(4694,'2015-03-10 21:49:30','2015-10-11 16:46:32',1,30000527,41,15,6,16,5,6,36,19,5,16,22,14,26,17,40,16,16,13,2,37,40,6,6,14),(4695,'2015-03-10 21:49:30','2015-10-11 16:46:32',1,30002488,1,4,5,6,5,4,8,1,1,3,5,3,6,8,2,2,0,4,6,1,6,2,3,3),(4696,'2015-03-10 21:49:30','2015-10-11 16:46:32',1,30000693,4,20,25,13,32,15,9,7,13,6,5,13,1,8,8,12,3,14,8,29,11,14,11,7),(4697,'2015-03-10 21:49:30','2015-10-11 16:46:32',1,30004202,21,8,26,26,14,14,19,7,4,6,7,11,10,13,4,7,8,9,1,14,49,10,11,66),(4698,'2015-03-10 21:49:30','2015-10-11 16:46:32',1,30002164,24,29,19,108,52,62,34,15,14,11,47,8,13,2,24,28,10,16,1,19,30,7,10,13),(4699,'2015-03-10 21:49:30','2015-03-10 21:49:30',1,30000427,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(4700,'2015-03-10 21:49:30','2015-10-11 16:46:32',1,30000644,5,2,6,4,4,3,5,0,5,8,13,129,101,4,38,34,6,21,7,8,4,8,9,4),(4701,'2015-03-10 21:49:30','2015-10-11 16:46:32',1,30003227,0,5,1,2,0,0,1,0,2,1,1,3,6,0,1,0,1,1,5,0,0,2,0,1),(4702,'2015-03-10 21:49:30','2015-10-11 16:46:32',1,30002166,73,12,80,35,56,41,21,14,7,10,14,16,14,19,29,28,14,9,7,109,117,16,13,9),(4703,'2015-03-10 21:49:30','2015-03-10 21:49:30',1,30000419,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(4704,'2015-03-10 21:49:30','2015-10-11 16:46:32',1,30004685,4,8,3,8,6,4,7,9,13,7,14,7,3,7,11,14,6,2,2,1,24,6,4,11),(4705,'2015-03-10 21:49:30','2015-10-11 16:46:32',1,30002991,280,247,325,295,307,277,245,128,215,307,325,327,307,341,389,412,401,279,230,296,363,431,363,350),(4706,'2015-03-10 21:49:30','2015-10-11 16:46:32',1,30001797,11,2,4,2,4,5,2,4,1,10,4,4,7,32,21,23,90,17,5,13,15,11,11,12),(4707,'2015-03-10 21:49:30','2015-10-11 16:46:32',1,30002101,10,3,5,7,7,7,11,4,6,18,16,8,12,9,19,18,19,13,35,15,15,13,13,20),(4708,'2015-03-10 21:49:30','2015-10-11 16:46:32',1,30004807,29,14,15,26,19,16,11,41,53,14,36,19,12,37,19,27,20,11,6,31,29,14,13,8),(4709,'2015-03-10 21:49:30','2015-10-11 16:46:32',1,30004091,36,22,21,23,23,19,11,28,18,45,40,42,39,43,45,34,30,23,21,28,37,25,26,30),(4710,'2015-03-10 21:49:30','2015-10-11 16:46:32',1,30000118,24,39,37,39,27,13,30,8,21,35,32,50,36,57,23,23,54,21,29,28,38,80,88,23),(4711,'2015-03-10 21:49:30','2015-10-11 16:46:32',1,30002361,4,5,5,2,4,10,0,1,0,0,0,0,0,1,0,0,0,1,0,1,4,2,1,4),(4712,'2015-03-10 21:49:30','2015-10-11 16:46:32',1,30004602,18,14,19,20,9,14,10,5,16,16,14,6,4,4,7,5,11,6,27,40,31,13,13,4),(4713,'2015-03-10 21:49:30','2015-10-11 16:46:32',1,30004349,12,4,12,6,11,11,9,12,8,5,9,11,13,7,4,7,4,10,2,7,8,0,1,2),(4714,'2015-03-10 21:49:30','2015-10-11 16:46:32',1,30004463,5,4,4,5,9,10,1,1,5,1,2,3,5,1,4,4,1,2,4,5,6,8,7,0),(4715,'2015-03-10 21:49:30','2015-03-10 21:49:30',1,30001465,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(4716,'2015-03-10 21:49:30','2015-10-11 16:46:32',1,30000114,36,32,57,40,64,42,39,23,27,31,38,46,46,42,46,42,38,50,33,55,40,56,57,43),(4717,'2015-03-10 21:49:30','2015-10-11 16:46:32',1,30002473,42,21,33,49,33,30,34,57,33,31,15,35,25,64,25,28,38,17,10,26,31,50,21,107),(4718,'2015-03-10 21:49:30','2015-10-11 16:46:32',1,30001813,7,4,2,2,1,0,0,0,5,0,0,0,0,1,0,0,0,1,0,0,1,0,2,0),(4719,'2015-03-10 21:49:30','2015-03-10 21:49:30',1,30001618,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(4720,'2015-03-10 21:49:30','2015-10-11 16:46:32',1,30002024,19,25,23,28,22,13,73,21,11,16,15,8,5,20,7,5,7,15,19,8,20,9,15,9),(4721,'2015-03-10 21:49:30','2015-10-11 16:46:32',1,30001244,3,4,5,8,6,3,11,14,10,28,27,26,19,156,26,27,26,24,25,48,59,38,42,45),(4722,'2015-03-10 21:49:30','2015-10-11 16:46:32',1,30002209,17,6,15,17,15,13,6,5,5,7,5,9,7,34,22,22,8,6,10,17,11,9,5,9),(4723,'2015-03-10 21:49:30','2015-10-11 16:46:32',1,30045321,37,31,71,47,47,33,27,36,40,39,31,49,61,43,82,56,57,50,45,58,50,65,56,53),(4724,'2015-03-10 21:49:30','2015-10-11 16:46:32',1,30000201,68,36,69,56,45,39,49,29,62,69,109,67,72,64,69,84,97,97,76,59,83,100,86,61),(4725,'2015-03-10 21:49:30','2015-10-11 16:46:32',1,30000997,20,19,77,37,25,26,29,11,25,22,24,113,70,30,85,248,41,24,16,16,25,93,66,30),(4726,'2015-03-10 21:49:30','2015-10-11 16:46:32',1,30004404,37,9,14,32,11,12,18,21,48,24,18,22,24,70,62,70,60,48,22,37,122,75,37,51),(4727,'2015-03-10 21:49:30','2015-10-11 16:46:32',1,30000819,1,0,1,11,14,6,1,0,2,5,2,2,1,0,0,0,1,1,0,12,1,1,1,4),(4728,'2015-03-10 21:49:30','2015-10-11 16:46:32',1,30004245,29,27,62,55,47,53,36,48,43,84,96,47,49,75,62,57,45,79,55,60,72,59,65,43),(4729,'2015-03-10 21:49:30','2015-10-11 16:46:32',1,30002825,8,4,7,5,8,9,11,2,8,17,18,10,8,17,15,14,17,12,4,3,15,224,67,37),(4730,'2015-03-10 21:49:30','2015-10-11 16:46:32',1,30002768,1594,1274,1590,1555,1448,1369,1144,975,1012,1544,1681,1742,1515,1719,1919,1929,1901,1536,1121,1365,1554,1903,1836,1525),(4731,'2015-03-10 21:49:30','2015-10-11 16:46:32',1,30002956,0,3,7,3,5,2,6,6,6,10,10,5,6,8,7,5,2,3,1,6,13,10,9,2),(4732,'2015-03-10 21:49:30','2015-10-11 16:46:32',1,30001368,839,756,644,812,816,686,793,515,551,772,910,828,716,874,1010,980,1012,882,563,729,760,1006,981,808),(4733,'2015-03-10 21:49:30','2015-10-11 16:46:32',1,30000197,67,56,53,51,62,65,58,24,30,113,105,92,65,275,157,295,130,69,50,64,130,169,109,138),(4734,'2015-03-10 21:49:30','2015-10-11 16:46:32',1,30004922,42,23,27,7,19,20,27,9,19,12,14,12,13,25,10,17,19,14,11,76,3,14,11,15),(4735,'2015-03-10 21:49:30','2015-10-11 16:46:32',1,30001821,3,12,1,7,5,6,0,23,5,6,13,2,1,4,3,5,2,4,2,1,3,3,3,3),(4736,'2015-03-10 21:49:30','2015-10-11 16:46:32',1,30002503,14,14,14,14,6,5,12,5,9,5,12,8,9,13,2,1,4,9,9,4,8,11,13,18),(4737,'2015-03-10 21:49:30','2015-10-11 16:46:32',1,30001432,54,34,34,45,40,31,29,13,29,34,35,57,59,29,28,32,25,31,27,24,27,44,32,39),(4738,'2015-03-10 21:49:30','2015-10-11 16:46:32',1,30004779,14,30,28,22,29,43,7,20,36,38,37,19,13,26,26,22,26,41,20,20,28,78,61,12),(4739,'2015-03-10 21:49:30','2015-10-11 16:46:32',1,30001854,16,16,22,19,20,12,12,15,7,30,24,44,46,32,56,35,31,34,8,18,8,28,38,32),(4740,'2015-03-10 21:49:30','2015-10-11 16:46:32',1,30003352,4,10,1,17,7,6,5,7,11,12,7,3,8,5,4,2,7,8,1,24,8,4,2,0),(4741,'2015-03-10 21:49:30','2015-10-11 16:46:32',1,30002504,14,16,9,12,9,3,16,11,16,3,11,7,5,9,1,1,1,7,3,2,2,3,4,11),(4742,'2015-03-10 21:49:30','2015-10-11 16:46:32',1,30003235,8,10,2,5,4,3,6,1,2,11,11,10,13,1,4,1,6,6,9,14,7,3,6,2),(4743,'2015-03-10 21:49:30','2015-10-11 16:46:32',1,30000229,34,42,25,57,42,33,53,32,24,6,2,2,3,8,11,16,10,16,17,2,10,9,11,12),(4744,'2015-03-10 21:49:30','2015-10-11 16:46:32',1,30004706,6,16,4,11,13,13,12,15,57,16,26,21,18,29,27,18,18,9,13,20,19,11,10,24),(4745,'2015-03-10 21:49:30','2015-10-11 16:46:32',1,30001735,113,67,140,106,96,85,71,48,75,106,116,137,128,198,145,164,151,122,80,101,207,115,113,127),(4746,'2015-03-10 21:49:30','2015-10-11 16:46:32',1,30000101,15,17,14,11,18,17,8,8,23,18,18,32,21,21,46,57,23,30,31,17,23,25,31,18),(4747,'2015-03-10 21:49:30','2015-10-11 16:46:32',1,30002047,1,1,1,2,1,1,1,1,1,2,0,0,0,1,0,0,1,2,0,0,2,1,1,2),(4748,'2015-03-10 21:49:30','2015-10-11 16:46:32',1,30002083,6,15,6,19,5,10,8,5,8,28,25,40,37,41,50,28,38,45,24,24,33,24,20,32),(4749,'2015-03-10 21:49:30','2015-10-11 16:46:32',1,30030141,126,116,143,162,195,150,142,115,101,208,219,213,204,241,218,232,228,179,188,210,232,215,221,155),(4750,'2015-03-10 21:49:30','2015-10-11 16:46:32',1,30001875,17,6,15,6,11,11,10,7,2,38,43,38,42,24,55,43,50,35,3,13,21,42,64,40),(4751,'2015-03-10 21:49:30','2015-10-11 16:46:32',1,30002824,4,4,7,5,8,9,11,2,11,12,11,6,6,13,9,11,6,9,0,2,14,111,22,14),(4752,'2015-03-10 21:49:30','2015-10-11 16:46:32',1,30002955,40,7,45,8,8,17,6,8,18,16,7,19,13,25,19,17,18,10,0,10,5,15,7,13),(4753,'2015-03-10 21:49:30','2015-10-11 16:46:32',1,30002610,2,1,0,1,0,2,0,3,0,0,0,0,0,0,0,0,0,1,0,1,0,1,3,0),(4754,'2015-03-10 21:49:30','2015-10-11 16:46:32',1,30000177,15,14,18,18,18,14,28,11,7,5,13,9,11,23,39,34,35,15,23,26,24,27,22,28),(4755,'2015-03-10 21:49:30','2015-10-11 16:46:32',1,30003005,1,3,7,3,12,6,5,4,6,3,9,5,7,7,8,4,14,7,14,11,13,12,12,6),(4756,'2015-03-10 21:49:30','2015-10-11 16:46:32',1,30001899,10,5,14,20,21,14,10,17,7,15,30,44,35,47,33,30,45,19,10,21,27,26,25,41),(4757,'2015-03-10 21:49:30','2015-10-11 16:46:32',1,30000313,14,11,23,23,29,27,10,10,20,14,20,26,17,18,18,6,5,50,10,17,9,13,13,3),(4758,'2015-03-10 21:49:30','2015-10-11 16:46:32',1,30001234,58,74,74,46,57,34,32,25,25,196,197,92,108,119,93,98,45,45,41,132,91,78,71,63),(4759,'2015-03-10 21:49:30','2015-10-11 16:46:32',1,30003004,1,7,8,21,16,17,19,14,9,2,8,8,12,4,15,6,35,10,12,8,5,9,10,3),(4760,'2015-03-10 21:49:30','2015-10-11 16:46:32',1,30003298,2,12,10,5,5,9,4,4,10,14,16,10,8,21,11,14,3,7,18,9,19,15,15,11),(4761,'2015-03-10 21:49:30','2015-10-11 16:46:32',1,30000558,27,6,35,7,38,6,31,5,4,34,25,12,3,50,23,22,36,13,31,17,37,18,27,7),(4762,'2015-03-10 21:49:30','2015-10-11 16:46:32',1,30000911,3,3,1,6,6,4,2,5,0,1,1,0,0,1,2,0,3,2,0,2,0,5,0,1),(4763,'2015-03-10 21:49:30','2015-10-11 16:46:32',1,30000858,133,49,162,74,45,39,101,40,52,116,126,460,345,188,102,118,54,30,33,39,57,57,61,40),(4764,'2015-03-10 21:49:30','2015-10-11 16:46:32',1,30000184,21,30,30,29,39,39,27,31,19,38,50,45,43,42,63,69,58,53,45,33,51,48,41,25),(4765,'2015-03-10 21:49:30','2015-10-11 16:46:32',1,30001409,103,99,120,98,97,90,83,79,120,148,169,165,154,138,176,154,169,131,102,121,158,150,142,139),(4766,'2015-03-10 21:49:30','2015-10-11 16:46:32',1,30000282,36,18,7,15,33,26,27,17,21,9,3,3,5,7,5,4,13,34,6,8,8,6,10,9),(4767,'2015-03-10 21:49:30','2015-10-11 16:46:32',1,30003481,34,33,47,47,38,33,23,11,20,46,56,51,57,74,61,42,58,40,55,34,47,50,60,45),(4768,'2015-03-10 21:49:30','2015-10-11 16:46:32',1,30002707,249,106,188,233,144,176,197,97,139,211,210,251,231,245,245,269,263,252,164,252,212,221,225,199),(4769,'2015-03-10 21:49:30','2015-10-11 16:46:32',1,30002413,7,16,17,15,21,14,9,9,14,35,45,33,29,39,14,11,33,9,18,8,13,11,8,7),(4770,'2015-03-10 21:49:30','2015-10-11 16:46:32',1,30000965,8,0,4,2,4,1,4,2,0,2,1,15,8,1,6,2,5,3,4,20,9,7,6,2),(4771,'2015-03-10 21:49:30','2015-10-11 16:46:32',1,30001679,6,24,13,9,15,21,11,9,10,23,20,14,10,16,15,25,33,34,8,4,7,25,28,28),(4772,'2015-03-10 21:49:30','2015-10-11 16:46:32',1,30000129,332,288,385,389,415,378,341,252,241,489,558,489,432,523,513,473,478,421,413,423,497,450,467,386),(4773,'2015-03-10 21:49:30','2015-10-11 16:46:32',1,30001816,4,15,7,18,8,1,1,25,6,4,14,18,1,3,5,6,2,8,2,3,6,3,3,4),(4774,'2015-03-10 21:49:30','2015-10-11 16:46:32',1,30004495,13,17,28,9,8,14,9,12,9,3,3,11,10,12,27,28,65,15,5,17,13,22,12,10),(4775,'2015-03-10 21:49:30','2015-10-11 16:46:32',1,30001366,247,141,216,248,183,166,212,127,189,201,247,209,220,237,263,291,319,219,132,148,148,195,171,155),(4776,'2015-03-10 21:49:30','2015-10-11 16:46:32',1,30002814,56,32,45,49,60,45,28,59,37,42,49,55,40,55,78,83,65,57,47,44,56,48,60,65),(4777,'2015-03-10 21:49:30','2015-10-11 16:46:32',1,30000151,170,181,211,174,188,205,161,169,129,224,249,206,205,300,317,298,305,245,176,176,230,326,333,235),(4778,'2015-03-10 21:49:30','2015-03-10 21:49:30',1,30001634,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(4779,'2015-03-10 21:49:30','2015-10-11 16:46:32',1,30003799,28,21,34,35,35,46,40,20,22,71,45,56,40,54,50,59,26,35,45,61,67,37,45,56),(4780,'2015-03-10 21:49:30','2015-10-11 16:46:32',1,30003043,44,14,27,21,30,21,25,12,21,40,45,50,51,47,55,44,47,32,43,21,31,72,52,53),(4781,'2015-03-10 21:49:30','2015-10-11 16:46:32',1,30000037,53,36,35,32,30,32,24,22,20,34,38,38,36,24,35,36,22,25,19,34,35,28,25,24),(4782,'2015-03-10 21:49:30','2015-10-11 16:46:32',1,30002998,16,8,7,15,11,9,6,12,13,6,4,25,25,6,9,19,4,6,5,11,11,23,16,17),(4783,'2015-03-10 21:49:30','2015-10-11 16:46:32',1,30003901,2,1,6,7,5,3,13,5,1,0,0,1,1,4,6,4,1,3,0,1,1,2,0,4),(4784,'2015-03-10 21:49:30','2015-10-11 16:46:32',1,30001208,3,11,2,15,16,8,5,10,9,11,7,7,8,8,3,3,7,8,9,2,3,7,5,7),(4785,'2015-03-10 21:49:30','2015-10-11 16:46:32',1,30004310,14,15,23,5,11,23,8,4,14,16,28,17,26,14,71,41,6,6,5,21,17,14,16,8),(4786,'2015-03-10 21:49:30','2015-10-11 16:46:32',1,30003955,0,4,0,2,1,2,0,4,2,3,4,4,2,2,3,3,2,0,0,0,1,1,0,0),(4787,'2015-03-10 21:49:30','2015-10-11 16:46:32',1,30004938,12,20,37,18,19,14,20,12,69,45,45,10,8,20,71,69,29,47,5,7,69,27,38,29),(4788,'2015-03-10 21:49:30','2015-10-11 16:46:32',1,30001966,5,15,3,22,35,30,7,28,38,10,18,6,21,16,16,5,6,45,2,1,7,18,22,21),(4789,'2015-03-10 21:49:30','2015-10-11 16:46:32',1,30040141,36,24,27,39,49,34,25,17,23,23,34,33,43,28,32,39,43,32,32,42,36,41,55,42),(4790,'2015-03-10 21:49:30','2015-10-11 16:46:32',1,30002070,56,46,46,51,63,55,40,47,38,49,71,53,46,53,93,88,67,53,36,47,71,82,70,73),(4791,'2015-03-10 21:49:30','2015-10-11 16:46:32',1,30000139,2204,1666,1981,1957,2005,1885,1655,1333,1523,2092,2375,2293,2061,2190,2446,2436,2416,2148,1496,1680,2069,2477,2509,2199),(4792,'2015-03-10 21:49:30','2015-10-11 16:46:32',1,30003417,22,8,2,6,7,12,10,7,11,24,22,33,30,8,5,13,25,20,9,24,12,7,8,11),(4793,'2015-03-10 21:49:30','2015-10-11 16:46:32',1,30002755,37,36,51,30,39,39,33,28,42,39,37,29,30,40,48,46,64,38,26,36,48,61,66,50),(4794,'2015-03-10 21:49:30','2015-03-10 21:49:30',1,30000382,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(4795,'2015-03-10 21:49:30','2015-10-11 16:46:32',1,30000068,2,2,0,2,2,2,5,2,3,4,4,15,14,5,9,9,7,9,6,1,6,31,19,28),(4796,'2015-03-10 21:49:30','2015-10-11 16:46:32',1,30002987,10,2,2,3,6,10,5,4,0,9,10,15,19,18,15,6,8,4,7,9,8,2,5,2),(4797,'2015-03-10 21:49:30','2015-10-11 16:46:32',1,30042505,23,21,12,8,20,16,17,7,7,24,30,24,20,36,30,36,25,20,26,27,35,21,18,25),(4798,'2015-03-10 21:49:30','2015-10-11 16:46:32',1,30004151,9,8,5,8,11,14,4,9,8,7,8,17,20,11,12,8,19,16,12,20,26,17,13,14),(4799,'2015-03-10 21:49:30','2015-10-11 16:46:32',1,30000921,6,33,43,31,25,24,6,23,5,12,10,10,15,15,30,21,21,8,20,33,45,7,15,25),(4800,'2015-03-10 21:49:30','2015-10-11 16:46:32',1,30004468,16,9,3,9,12,14,17,11,22,37,56,64,59,75,64,61,44,44,39,23,64,90,44,32),(4801,'2015-03-10 21:49:30','2015-10-11 16:46:32',1,30003306,16,4,21,1,8,7,0,19,4,9,7,4,7,1,10,11,3,3,5,1,4,5,5,4),(4802,'2015-03-10 21:49:30','2015-10-11 16:46:32',1,30001045,30,13,21,16,20,18,16,22,13,46,41,46,54,88,40,45,34,33,18,78,79,40,31,55),(4803,'2015-03-10 21:49:30','2015-10-11 16:46:32',1,30002049,726,566,753,777,774,725,614,501,523,832,918,804,698,876,1044,1022,869,703,610,664,758,960,894,819),(4804,'2015-03-10 21:49:30','2015-10-11 16:46:32',1,30045326,76,51,88,77,74,58,98,77,89,80,93,95,85,86,100,116,134,75,72,120,91,158,159,132),(4805,'2015-03-10 21:49:30','2015-10-11 16:46:32',1,30002759,59,54,211,55,68,67,43,48,81,88,88,70,44,110,172,121,101,62,93,78,80,91,95,59),(4806,'2015-03-10 21:49:30','2015-10-11 16:46:32',1,30003077,36,26,54,61,65,67,30,31,24,25,22,40,29,44,33,33,53,18,38,27,31,44,35,20),(4807,'2015-03-10 21:49:30','2015-10-11 16:46:32',1,30003988,9,15,53,44,20,10,29,15,8,3,11,2,1,1,3,5,3,1,7,2,0,1,1,19),(4808,'2015-03-10 21:49:30','2015-10-11 16:46:32',1,30001152,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,1,0,0,0,2,0,0),(4809,'2015-03-10 21:49:30','2015-10-11 16:46:32',1,30001003,14,7,31,10,15,11,2,4,7,31,28,19,9,29,98,85,28,31,20,9,10,21,25,14),(4810,'2015-03-10 21:49:30','2015-10-11 16:46:32',1,30000549,6,2,3,0,0,0,8,0,1,0,1,3,9,0,2,1,0,4,0,0,2,1,4,8),(4811,'2015-03-10 21:49:30','2015-10-11 16:46:32',1,30001121,30,6,16,25,17,24,20,17,25,3,3,7,3,3,1,2,5,3,0,4,2,1,0,0),(4812,'2015-03-10 21:49:30','2015-10-11 16:46:32',1,30005150,0,0,0,3,0,0,1,0,4,1,0,1,0,0,0,1,0,0,0,6,2,1,1,1),(4813,'2015-03-10 21:49:30','2015-10-11 16:46:32',1,30003981,32,46,14,14,32,28,16,11,17,9,9,14,9,7,4,5,15,5,36,3,7,9,7,7),(4814,'2015-03-10 21:49:30','2015-10-11 16:46:32',1,30000561,20,5,2,9,12,2,0,6,1,8,5,7,10,15,7,8,8,7,6,4,3,4,4,3),(4815,'2015-03-10 21:49:30','2015-10-11 16:46:32',1,30003536,5,8,8,10,6,0,12,12,3,13,14,10,11,16,5,4,6,6,12,10,8,10,5,9),(4816,'2015-03-10 21:49:30','2015-10-11 16:46:32',1,30000040,18,1,4,5,7,4,3,2,2,8,7,14,11,3,26,23,9,4,25,24,9,11,9,8),(4817,'2015-03-10 21:49:30','2015-10-11 16:46:32',1,30000930,4,1,4,1,1,2,2,0,0,5,4,4,1,4,0,2,10,3,0,0,1,2,0,0),(4818,'2015-03-10 21:49:30','2015-10-11 16:46:32',1,30005097,0,0,0,0,4,0,0,0,1,4,3,0,0,0,0,1,1,1,0,1,1,0,0,0),(4819,'2015-03-10 21:49:30','2015-10-11 16:46:32',1,30003965,5,20,7,4,9,13,7,14,13,15,21,13,13,20,13,8,11,11,9,13,10,6,8,19),(4820,'2015-03-10 21:49:30','2015-10-11 16:46:32',1,30001162,161,64,54,109,56,47,91,85,100,398,407,508,349,477,479,487,517,376,491,669,475,651,314,286),(4821,'2015-03-10 21:49:30','2015-10-11 16:46:32',1,30000434,3,3,8,3,3,1,3,15,1,2,2,5,4,9,6,8,12,5,1,4,1,3,2,3),(4822,'2015-03-10 21:49:30','2015-03-10 21:49:30',1,30000393,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(4823,'2015-03-10 21:49:30','2015-10-11 16:46:32',1,30000732,1,9,56,7,6,8,1,3,8,12,9,16,16,2,1,3,1,4,4,1,11,2,2,2),(4824,'2015-03-10 21:49:30','2015-10-11 16:46:32',1,30000988,4,1,2,1,1,3,2,0,9,4,5,4,6,0,0,1,3,7,4,1,0,3,1,2),(4825,'2015-03-10 21:49:30','2015-10-11 16:46:32',1,30001008,9,3,4,3,1,3,6,12,6,14,20,11,12,5,4,4,6,11,2,3,12,13,5,7),(4826,'2015-03-10 21:49:30','2015-10-11 16:46:32',1,30001143,0,6,7,0,3,2,2,5,1,1,1,3,3,3,2,0,22,1,0,1,0,4,4,5),(4827,'2015-03-10 21:49:30','2015-10-11 16:46:32',1,30000674,1,3,2,0,1,1,5,2,3,3,1,3,3,0,0,2,1,1,1,0,0,2,3,1),(4828,'2015-03-10 21:49:30','2015-10-11 16:46:32',1,30003672,17,25,32,19,34,29,42,13,17,6,4,9,13,6,13,9,14,32,6,9,8,17,12,3),(4829,'2015-03-10 21:49:30','2015-10-11 16:46:32',1,30003953,53,34,168,57,47,48,37,39,43,27,26,20,15,72,17,15,15,18,31,9,29,10,9,31),(4830,'2015-03-10 21:49:30','2015-10-11 16:46:32',1,30002437,6,1,5,2,3,1,2,2,3,0,1,7,6,0,1,1,3,1,2,2,2,4,2,0),(4831,'2015-03-10 21:49:30','2015-10-11 16:46:32',1,30000264,33,29,39,57,33,34,39,11,23,11,13,21,20,87,45,47,63,36,16,29,70,20,19,51),(4832,'2015-03-10 21:49:30','2015-10-11 16:46:32',1,30000248,8,38,15,17,15,7,29,7,14,9,14,19,19,13,20,16,14,6,15,13,4,19,17,23),(4833,'2015-03-10 21:49:30','2015-10-11 16:46:32',1,30002379,2,8,11,7,4,5,21,0,0,1,3,3,2,0,0,0,1,1,1,15,0,2,2,2),(4834,'2015-03-10 21:49:30','2015-10-11 16:46:32',1,30000755,0,3,4,0,2,5,2,1,11,10,4,5,2,7,0,0,7,36,0,11,4,4,5,3),(4835,'2015-03-10 21:49:30','2015-10-11 16:46:32',1,30000694,8,7,10,4,19,23,7,2,2,3,1,6,4,4,2,4,13,12,5,13,15,4,9,2),(4836,'2015-03-10 21:49:30','2015-10-11 16:46:32',1,30001787,5,5,0,3,12,10,2,1,0,7,15,10,10,13,4,8,12,16,3,2,9,8,8,12),(4837,'2015-03-10 21:49:30','2015-10-11 16:46:32',1,30004406,0,1,1,1,0,1,0,0,3,0,0,2,1,1,2,2,12,1,1,0,0,3,1,7),(4838,'2015-03-10 21:49:30','2015-10-11 16:46:32',1,30003226,0,1,1,1,0,0,1,0,0,1,1,0,0,0,0,0,0,1,1,0,0,1,0,1),(4839,'2015-03-10 21:49:30','2015-10-11 16:46:32',1,30003130,8,8,7,10,11,15,20,2,1,5,4,2,4,8,2,0,0,2,5,3,1,3,3,6),(4840,'2015-03-10 21:49:30','2015-10-11 16:46:32',1,30003194,13,6,30,11,14,10,17,18,10,3,12,10,7,7,11,15,11,6,7,5,4,9,7,3),(4841,'2015-03-10 21:49:30','2015-10-11 16:46:32',1,30000849,4,11,5,8,6,5,10,3,2,16,6,9,8,4,6,6,5,7,0,3,5,7,11,6),(4842,'2015-03-10 21:49:30','2015-10-11 16:46:32',1,30001892,6,4,11,4,22,12,14,8,1,6,2,17,6,12,13,16,15,11,2,5,10,15,10,8),(4843,'2015-03-10 21:49:30','2015-10-11 16:46:32',1,30003143,1,3,1,2,5,4,2,2,0,3,3,3,1,2,1,2,1,1,0,2,0,0,0,3),(4844,'2015-03-10 21:49:30','2015-10-11 16:46:32',1,30002862,6,9,6,5,11,20,7,4,4,11,20,11,10,7,4,10,5,1,1,2,17,7,11,10),(4845,'2015-03-10 21:49:30','2015-10-11 16:46:32',1,30001222,4,2,10,13,9,7,9,9,1,32,38,27,21,65,24,32,20,21,14,33,49,18,19,23),(4846,'2015-03-10 21:49:30','2015-10-11 16:46:32',1,30001084,7,6,12,4,21,24,4,7,15,0,6,7,2,20,9,8,4,11,1,9,0,7,7,8),(4847,'2015-03-10 21:49:30','2015-10-11 16:46:32',1,30001301,5,25,9,12,3,4,9,9,7,14,22,11,10,23,63,34,6,12,9,4,15,14,9,13),(4848,'2015-03-10 21:49:30','2015-03-10 21:49:30',1,30000375,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(4849,'2015-03-10 21:49:30','2015-10-11 16:46:32',1,30003294,7,13,7,9,8,10,12,3,18,9,11,9,7,10,8,6,12,12,4,9,4,38,14,7),(4850,'2015-03-10 21:49:30','2015-10-11 16:46:32',1,30004644,16,5,9,8,21,28,19,4,3,23,19,13,15,9,17,15,19,18,15,35,29,11,21,17),(4851,'2015-03-10 21:49:30','2015-10-11 16:46:32',1,30000888,4,2,0,1,2,2,1,0,0,7,6,3,0,6,8,7,4,5,1,2,5,6,5,1),(4852,'2015-03-10 21:49:30','2015-10-11 16:46:32',1,30003666,4,8,12,19,16,9,58,16,13,13,23,10,6,16,16,12,11,10,25,22,36,5,6,9),(4853,'2015-03-10 21:49:30','2015-10-11 16:46:32',1,30001015,2,0,2,3,4,7,5,5,6,2,2,3,3,11,7,5,14,11,1,0,6,2,4,4),(4854,'2015-03-10 21:49:30','2015-10-11 16:46:32',1,30000603,0,2,3,1,1,2,2,11,0,2,4,5,1,1,1,1,1,1,1,4,4,3,3,1),(4855,'2015-03-10 21:49:30','2015-10-11 16:46:32',1,30000984,4,4,11,8,4,3,8,2,9,3,2,0,2,1,0,0,5,13,2,6,1,3,2,8),(4856,'2015-03-10 21:49:30','2015-10-11 16:46:32',1,30004329,20,23,55,46,45,47,63,58,36,25,43,29,11,24,61,60,32,25,12,22,11,26,28,24),(4857,'2015-03-10 21:49:30','2015-10-11 16:46:32',1,30001175,4,1,12,9,6,6,3,0,5,2,3,0,1,8,6,6,13,8,7,2,3,3,7,11),(4858,'2015-03-10 21:49:30','2015-10-11 16:46:32',1,30001383,85,31,65,52,36,25,56,18,26,54,41,62,71,26,67,67,59,51,40,31,36,62,48,46),(4859,'2015-03-10 21:49:30','2015-10-11 16:46:32',1,30000123,75,23,15,11,20,21,11,3,9,13,21,21,17,19,30,27,29,18,18,18,12,26,35,13),(4860,'2015-03-10 21:49:30','2015-10-11 16:46:32',1,30045331,37,42,36,22,38,47,34,38,33,57,41,87,95,52,49,65,100,85,37,28,30,64,59,36),(4861,'2015-03-10 21:49:30','2015-10-11 16:46:32',1,30005306,37,29,43,47,33,31,48,36,45,39,51,39,25,49,56,52,25,39,37,48,69,60,69,56),(4862,'2015-03-10 21:49:30','2015-10-11 16:46:32',1,30004196,13,4,10,10,10,13,10,8,7,7,6,13,16,10,1,9,6,4,0,3,2,6,6,10),(4863,'2015-03-10 21:49:30','2015-10-11 16:46:32',1,30000170,13,16,23,22,30,38,23,8,9,16,19,10,11,11,18,6,20,11,8,11,23,16,16,17),(4864,'2015-03-10 21:49:30','2015-10-11 16:46:32',1,30004289,7,4,6,12,8,5,5,20,16,22,14,22,17,13,21,17,6,15,1,11,10,17,23,5),(4865,'2015-03-10 21:49:30','2015-10-11 16:46:32',1,30005029,10,12,18,42,22,21,17,16,11,38,37,30,14,25,25,23,25,28,18,10,19,17,28,31),(4866,'2015-03-10 21:49:30','2015-10-11 16:46:32',1,30003483,32,34,43,50,37,30,24,13,19,43,52,53,58,62,69,50,51,39,54,32,45,50,61,41),(4867,'2015-03-10 21:49:30','2015-10-11 16:46:32',1,30004230,27,32,49,30,45,43,43,15,28,42,32,38,35,54,39,36,47,42,51,51,47,40,50,46),(4868,'2015-03-10 21:49:30','2015-10-11 16:46:32',1,30002538,98,60,131,125,108,72,57,97,169,126,80,63,60,80,93,77,82,37,67,49,78,69,50,62),(4869,'2015-03-10 21:49:30','2015-10-11 16:46:32',1,30002400,13,4,18,11,11,10,1,10,8,10,10,23,21,30,22,25,13,49,18,31,29,19,17,13),(4870,'2015-03-10 21:49:30','2015-10-11 16:46:32',1,30000190,74,46,75,82,55,59,72,58,85,100,135,98,94,136,88,111,138,95,62,68,94,117,107,75),(4871,'2015-03-10 21:49:30','2015-10-11 16:46:32',1,30002230,6,8,5,11,2,4,11,6,15,9,15,11,8,12,12,11,10,15,1,13,17,13,12,8),(4872,'2015-03-10 21:49:30','2015-10-11 16:46:32',1,30000173,179,138,207,175,183,213,202,149,139,208,264,228,208,312,348,334,347,244,175,175,225,309,290,233),(4873,'2015-03-10 21:49:30','2015-10-11 16:46:32',1,30003027,111,62,81,96,99,77,98,76,59,126,141,129,114,152,150,160,149,136,122,98,109,112,112,137),(4874,'2015-03-10 21:49:30','2015-10-11 16:46:32',1,30005318,193,184,203,188,174,160,139,99,103,229,258,196,187,275,255,271,261,164,194,234,208,213,217,179),(4875,'2015-03-10 21:49:30','2015-10-11 16:46:32',1,30004547,28,16,13,14,11,4,18,12,4,7,2,6,4,2,6,4,8,5,2,1,5,4,6,11),(4876,'2015-03-10 21:49:30','2015-10-11 16:46:32',1,30000806,40,13,20,17,11,12,30,15,18,4,3,3,3,10,3,3,4,7,1,2,3,8,13,7),(4877,'2015-03-10 21:49:30','2015-10-11 16:46:32',1,30000842,6,6,3,5,4,7,2,5,10,2,2,4,4,4,5,6,13,8,13,2,7,7,7,3),(4878,'2015-03-10 21:49:30','2015-10-11 16:46:32',1,30001824,15,16,3,13,9,5,6,23,6,10,20,8,7,4,12,22,16,11,0,1,7,12,15,13),(4879,'2015-03-10 21:49:30','2015-10-11 16:46:32',1,30005195,37,42,44,33,27,26,17,16,33,34,45,28,29,48,50,35,31,18,26,22,42,48,60,26),(4880,'2015-03-10 21:49:30','2015-10-11 16:46:32',1,30003589,25,23,42,64,118,101,28,19,33,39,51,46,35,37,64,57,63,34,29,16,46,73,66,51),(4881,'2015-03-10 21:49:30','2015-10-11 16:46:32',1,30004246,42,33,68,53,45,46,35,49,45,92,110,52,53,84,66,64,54,74,61,68,84,63,60,43),(4882,'2015-03-10 21:49:30','2015-10-11 16:46:32',1,30001362,323,187,250,226,234,213,214,153,168,224,276,245,243,309,350,384,319,276,169,162,247,266,279,259),(4883,'2015-03-10 21:49:30','2015-10-11 16:46:32',1,30001380,352,243,322,356,264,249,258,173,204,270,339,324,330,305,413,407,397,342,203,242,261,350,314,304),(4884,'2015-03-10 21:49:30','2015-10-11 16:46:32',1,30002798,127,107,149,111,128,122,86,71,79,127,168,142,130,155,172,147,121,143,81,98,129,147,138,154),(4885,'2015-03-10 21:49:30','2015-10-11 16:46:32',1,30004220,3,3,2,2,0,0,2,1,2,4,1,0,0,10,2,1,2,1,0,1,1,0,0,1),(4886,'2015-03-10 21:49:30','2015-10-11 16:46:32',1,30003820,32,46,32,46,39,40,20,21,28,24,12,23,30,22,35,23,21,24,17,26,27,51,60,39),(4887,'2015-03-10 21:49:30','2015-10-11 16:46:32',1,30003572,22,17,26,32,30,19,19,18,8,22,38,23,12,26,19,17,18,15,20,19,35,19,17,9),(4888,'2015-03-10 21:49:30','2015-10-11 16:46:32',1,30003790,95,64,344,64,56,60,57,69,27,125,123,57,56,264,83,75,60,57,97,112,204,184,180,57),(4889,'2015-03-10 21:49:30','2015-10-11 16:46:32',1,30003899,28,55,35,20,17,16,34,14,12,37,18,19,24,36,45,40,22,19,17,45,53,24,28,27),(4890,'2015-03-10 21:49:30','2015-10-11 16:46:32',1,30004433,2,1,0,0,1,1,0,0,6,0,0,0,0,2,0,0,1,5,0,2,0,0,0,0),(4891,'2015-03-10 21:49:30','2015-10-11 16:46:32',1,30002904,81,47,97,63,42,50,76,70,72,138,132,127,125,120,231,193,147,103,129,139,105,129,116,125),(4892,'2015-03-10 21:49:30','2015-10-11 16:46:32',1,30001303,16,26,30,14,14,17,14,17,10,24,34,14,14,37,68,41,8,13,19,26,43,32,27,21),(4893,'2015-03-10 21:49:30','2015-10-11 16:46:32',1,30001351,6,17,3,3,1,1,7,2,5,5,1,2,6,7,5,4,1,5,9,10,12,9,9,2),(4894,'2015-03-10 21:49:30','2015-10-11 16:46:32',1,30001794,1,10,3,5,3,4,0,3,3,12,18,9,7,7,4,2,3,0,0,6,8,6,6,5),(4895,'2015-03-10 21:49:30','2015-10-11 16:46:32',1,30000295,9,20,17,14,13,13,13,16,12,14,14,39,31,10,17,11,18,11,23,10,23,8,15,17),(4896,'2015-03-10 21:49:30','2015-10-11 16:46:32',1,30004997,31,24,22,31,35,24,42,17,25,17,25,12,9,12,30,26,14,19,21,9,7,6,8,7),(4897,'2015-03-10 21:49:30','2015-03-10 21:49:30',1,30000346,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(4898,'2015-03-10 21:49:30','2015-10-11 16:46:32',1,30003816,2,4,28,9,6,4,4,1,9,2,4,2,1,12,14,8,14,4,11,7,3,10,13,0),(4899,'2015-03-10 21:49:30','2015-10-11 16:46:32',1,30045309,298,39,39,40,60,97,50,70,46,55,61,54,49,74,49,38,51,77,36,61,66,43,99,42),(4900,'2015-03-10 21:49:30','2015-10-11 16:46:32',1,30004993,538,313,412,478,395,393,408,328,368,478,463,418,327,608,585,553,553,424,352,426,477,526,474,479),(4901,'2015-03-10 21:49:30','2015-10-11 16:46:32',1,30003390,59,53,67,34,38,33,41,32,47,78,90,85,73,66,63,76,91,60,47,54,55,71,78,70),(4902,'2015-03-10 21:49:30','2015-10-11 16:46:32',1,30002088,4,3,1,9,5,5,2,4,7,12,13,11,11,12,26,17,25,20,19,17,9,26,21,15),(4903,'2015-03-10 21:49:30','2015-10-11 16:46:32',1,30004991,27,32,37,36,29,26,48,18,22,35,39,91,40,66,43,42,48,34,23,25,75,41,52,37),(4904,'2015-03-10 21:49:30','2015-10-11 16:46:32',1,30002731,340,265,418,358,343,304,326,243,282,500,544,496,429,692,673,562,585,441,378,424,489,532,531,507),(4905,'2015-03-10 21:49:30','2015-10-11 16:46:32',1,30003810,19,27,20,30,18,13,28,28,22,25,24,30,28,60,49,36,30,42,32,21,21,37,26,20),(4906,'2015-03-10 21:49:30','2015-10-11 16:46:32',1,30002487,1,2,1,5,4,3,7,1,2,3,2,1,2,2,1,1,0,2,6,1,4,2,3,1),(4907,'2015-03-10 21:49:30','2015-10-11 16:46:32',1,30004551,10,3,5,7,5,3,2,2,2,3,1,1,1,2,0,2,3,2,1,1,1,0,1,1),(4908,'2015-03-10 21:49:30','2015-10-11 16:46:32',1,30000625,26,19,30,22,21,16,9,23,21,12,11,18,16,13,44,39,26,25,12,11,23,2,2,45),(4909,'2015-03-10 21:49:30','2015-10-11 16:46:32',1,30001566,21,16,15,9,15,13,5,19,14,88,136,40,40,26,26,43,44,27,22,27,29,32,38,31),(4910,'2015-03-10 21:49:30','2015-10-11 16:46:32',1,30003749,32,22,24,17,21,20,21,18,21,41,63,71,55,35,29,26,26,36,21,29,41,32,38,33),(4911,'2015-03-10 21:49:30','2015-10-11 16:46:32',1,30000927,7,5,10,6,2,5,5,12,3,6,14,9,7,13,4,4,5,9,2,2,5,11,10,9),(4912,'2015-03-10 21:49:30','2015-10-11 16:46:32',1,30004315,1,7,10,2,10,16,5,1,3,10,9,13,19,2,37,7,3,6,3,10,3,7,6,5),(4913,'2015-03-10 21:49:30','2015-10-11 16:46:32',1,30003116,5,7,12,8,10,12,16,4,8,3,4,3,5,4,2,3,3,4,4,2,3,1,2,6),(4914,'2015-03-10 21:49:30','2015-10-11 16:46:32',1,30003339,1,5,7,1,2,2,12,1,0,6,15,17,7,2,1,1,2,4,1,2,2,1,1,2),(4915,'2015-03-10 21:49:30','2015-10-11 16:46:32',1,30003836,254,182,505,185,174,209,165,151,116,379,360,185,150,508,388,309,180,163,184,366,418,198,194,177),(4916,'2015-03-10 21:49:30','2015-03-10 21:49:30',1,30000420,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(4917,'2015-03-10 21:49:30','2015-10-11 16:46:32',1,30004453,3,3,7,10,6,10,6,4,20,4,3,9,11,6,21,11,31,11,20,7,46,7,5,14),(4918,'2015-03-10 21:49:30','2015-10-11 16:46:32',1,30001925,12,5,16,14,11,15,9,12,7,22,16,9,12,31,26,21,22,14,7,14,10,9,15,11),(4919,'2015-03-10 21:49:30','2015-10-11 16:46:32',1,30001019,55,77,332,107,143,119,134,40,83,162,190,91,67,365,178,166,89,60,67,134,179,114,79,129),(4920,'2015-03-10 21:49:30','2015-10-11 16:46:32',1,30000322,3,1,5,7,3,5,3,0,4,0,1,11,7,0,2,1,3,14,4,18,12,4,6,1),(4921,'2015-03-10 21:49:30','2015-10-11 16:46:32',1,30003399,6,14,24,24,21,32,15,3,10,10,15,18,17,10,17,17,17,18,10,16,14,24,20,12),(4922,'2015-03-10 21:49:30','2015-10-11 16:46:32',1,30000193,72,38,68,63,52,46,52,49,75,77,114,70,74,77,60,79,105,81,51,52,77,112,101,54),(4923,'2015-03-10 21:49:30','2015-10-11 16:46:32',1,30002948,15,4,6,11,5,8,84,62,45,13,12,5,2,13,22,17,17,10,8,9,8,8,9,4),(4924,'2015-03-10 21:49:30','2015-10-11 16:46:32',1,30004943,16,16,1,13,5,5,5,9,2,5,4,4,3,9,12,8,5,3,4,0,1,2,7,3),(4925,'2015-03-10 21:49:30','2015-10-11 16:46:32',1,30004931,24,47,41,41,30,25,11,15,4,20,25,8,12,19,8,12,11,9,6,4,7,16,24,14),(4926,'2015-03-10 21:49:30','2015-10-11 16:46:32',1,30003175,8,11,4,10,14,13,26,13,19,13,18,13,17,15,16,11,8,5,15,17,8,11,13,29),(4927,'2015-03-10 21:49:30','2015-03-10 21:49:30',1,30001506,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(4928,'2015-03-10 21:49:30','2015-10-11 16:46:32',1,30003685,129,102,418,177,174,151,58,49,26,42,53,72,48,67,61,35,59,16,21,45,31,21,22,33),(4929,'2015-03-10 21:49:30','2015-10-11 16:46:32',1,30003361,8,9,16,8,4,10,11,2,8,2,1,10,7,8,3,4,10,3,2,2,9,16,11,4),(4930,'2015-03-10 21:49:30','2015-10-11 16:46:32',1,30002448,30,19,10,28,26,25,20,11,10,30,29,45,40,14,11,11,33,18,9,17,35,81,63,25),(4931,'2015-03-10 21:49:30','2015-10-11 16:46:32',1,30003959,0,0,0,1,1,2,0,1,2,3,4,0,0,4,2,3,1,0,1,0,0,0,0,0),(4932,'2015-03-10 21:49:30','2015-10-11 16:46:32',1,30001836,9,21,17,16,12,19,12,17,11,46,48,38,42,44,21,30,35,54,22,28,24,30,37,30),(4933,'2015-03-10 21:49:30','2015-10-11 16:46:32',1,30003129,35,28,15,21,28,39,35,19,23,21,20,24,48,57,183,173,25,20,26,34,36,50,46,29),(4934,'2015-03-10 21:49:30','2015-10-11 16:46:32',1,30004890,22,11,11,22,15,18,30,7,5,36,26,13,9,24,34,50,13,16,83,30,34,28,25,27),(4935,'2015-03-10 21:49:30','2015-10-11 16:46:32',1,30002573,438,353,463,416,382,365,360,251,288,466,449,528,488,595,644,623,624,450,363,387,450,564,494,390),(4936,'2015-03-10 21:49:30','2015-10-11 16:46:32',1,30001443,256,84,131,169,110,102,92,59,109,146,166,146,176,120,169,173,211,155,69,122,145,122,126,145),(4937,'2015-03-10 21:49:30','2015-10-11 16:46:32',1,30003309,21,10,36,7,12,6,13,14,7,22,19,13,14,26,32,31,12,3,14,10,28,19,23,20),(4938,'2015-03-10 21:49:30','2015-10-11 16:46:32',1,30001073,1,6,18,7,13,15,13,13,5,13,17,18,11,21,8,16,8,5,4,7,11,11,7,7),(4939,'2015-03-10 21:49:30','2015-10-11 16:46:32',1,30001327,6,25,12,3,7,3,6,5,1,8,11,1,1,3,4,17,9,13,0,3,9,4,1,11),(4940,'2015-03-10 21:49:30','2015-10-11 16:46:32',1,30004457,3,2,4,10,3,5,4,3,21,4,3,5,6,6,19,9,22,15,19,8,4,10,5,11),(4941,'2015-03-10 21:49:30','2015-10-11 16:46:32',1,30001054,3,5,1,0,2,3,7,5,1,3,3,0,0,1,4,5,3,2,3,7,0,0,1,1),(4942,'2015-03-10 21:49:30','2015-10-11 16:46:32',1,30005173,1,5,2,6,4,2,3,2,0,0,0,4,5,2,2,1,1,10,0,1,1,1,1,15),(4943,'2015-03-10 21:49:30','2015-10-11 16:46:32',1,30001541,8,10,8,8,12,15,3,6,8,84,115,74,29,10,4,7,15,8,11,23,15,5,5,8),(4944,'2015-03-10 21:49:30','2015-10-11 16:46:32',1,30000924,6,17,41,24,24,24,11,24,8,11,9,10,15,14,25,19,18,9,26,34,40,8,15,25),(4945,'2015-03-10 21:49:30','2015-10-11 16:46:32',1,30004227,7,4,16,6,5,5,3,0,3,0,3,1,0,3,2,5,5,9,1,12,26,6,9,2),(4946,'2015-03-10 21:49:30','2015-10-11 16:46:32',1,30003098,30,35,25,18,8,12,24,19,25,157,140,77,62,131,104,108,75,51,43,55,150,272,92,109),(4947,'2015-03-10 21:49:30','2015-10-11 16:46:32',1,30002655,537,434,568,582,538,517,405,335,330,521,581,622,517,740,821,809,731,564,480,529,676,691,672,606),(4948,'2015-03-10 21:49:30','2015-10-11 16:46:32',1,30004936,11,21,36,29,14,7,12,8,99,27,26,15,39,39,140,18,16,20,6,13,36,38,27,19),(4949,'2015-03-10 21:49:30','2015-03-10 21:49:30',1,30001477,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(4950,'2015-03-10 21:49:30','2015-10-11 16:46:32',1,30003247,2,2,0,1,0,2,10,4,4,0,4,10,13,4,0,2,1,1,0,0,2,3,8,3),(4951,'2015-03-10 21:49:30','2015-10-11 16:46:32',1,30004822,32,17,3,5,6,3,5,58,29,3,7,12,12,14,14,17,11,7,3,11,6,5,8,3),(4952,'2015-03-10 21:49:30','2015-10-11 16:46:32',1,30002497,2,16,5,5,1,3,5,2,3,1,1,0,0,1,0,0,5,2,2,1,0,2,7,2),(4953,'2015-03-10 21:49:30','2015-10-11 16:46:32',1,30004392,51,25,25,25,35,47,14,38,34,25,19,44,46,24,15,17,17,11,9,19,11,12,8,12),(4954,'2015-03-10 21:49:30','2015-10-11 16:46:32',1,30004055,88,11,6,16,26,22,10,8,7,23,15,10,14,17,7,7,9,21,8,1,8,6,7,9),(4955,'2015-03-10 21:49:30','2015-10-11 16:46:32',1,30000751,0,4,8,3,12,13,3,2,15,8,3,10,5,8,4,7,8,26,0,19,5,4,7,5),(4956,'2015-03-10 21:49:30','2015-03-10 21:49:30',1,30000345,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(4957,'2015-03-10 21:49:30','2015-10-11 16:46:32',1,30005177,6,2,2,2,5,2,2,3,1,5,7,1,4,18,16,14,68,6,5,2,4,7,8,1),(4958,'2015-03-10 21:49:30','2015-10-11 16:46:32',1,30002147,3,2,6,2,0,1,5,1,6,1,0,5,5,1,4,4,2,2,0,3,3,3,1,2),(4959,'2015-03-10 21:49:30','2015-10-11 16:46:32',1,30004005,11,3,2,8,7,9,3,2,10,3,6,10,4,51,16,5,5,4,4,4,3,3,1,7),(4960,'2015-03-10 21:49:30','2015-10-11 16:46:32',1,30003968,42,45,73,45,30,19,40,21,17,15,17,29,26,73,24,23,31,14,33,17,38,14,10,34),(4961,'2015-03-10 21:49:30','2015-10-11 16:46:32',1,30004753,50,10,5,14,8,13,2,13,46,33,28,32,21,29,40,44,33,29,11,19,39,25,34,18),(4962,'2015-03-10 21:49:30','2015-10-11 16:46:32',1,30005142,7,9,2,1,1,4,0,5,2,0,0,0,0,0,0,0,1,1,0,1,1,1,1,1),(4963,'2015-03-10 21:49:30','2015-10-11 16:46:32',1,30000830,3,1,9,13,8,8,3,0,10,3,0,4,5,5,4,3,13,19,2,22,19,7,8,7),(4964,'2015-03-10 21:49:30','2015-10-11 16:46:32',1,30001250,1,7,22,23,15,11,17,1,8,35,113,47,42,38,44,30,39,23,10,23,46,37,39,27),(4965,'2015-03-10 21:49:30','2015-10-11 16:46:32',1,30001939,7,9,9,6,11,9,10,21,10,16,20,31,33,20,28,25,27,38,11,22,17,18,22,32),(4966,'2015-03-10 21:49:30','2015-10-11 16:46:32',1,30000532,1,3,2,0,1,2,0,2,0,2,1,1,2,4,3,0,2,0,0,0,3,0,1,1),(4967,'2015-03-10 21:49:30','2015-10-11 16:46:32',1,30000932,0,0,5,2,1,5,1,1,0,3,3,3,2,7,2,7,15,3,0,2,3,3,1,2),(4968,'2015-03-10 21:49:30','2015-10-11 16:46:32',1,30000893,2,3,1,2,3,5,9,4,1,6,5,3,6,5,6,5,8,6,3,3,3,9,7,3),(4969,'2015-03-10 21:49:30','2015-10-11 16:46:32',1,30001897,12,1,10,7,7,4,1,6,5,7,6,9,12,9,23,23,21,7,5,6,6,5,7,14),(4970,'2015-03-10 21:49:30','2015-03-10 21:49:30',1,30001516,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(4971,'2015-03-10 21:49:30','2015-10-11 16:46:32',1,30001105,3,0,6,2,3,3,8,6,10,6,4,7,9,1,5,6,6,2,1,3,1,7,11,9),(4972,'2015-03-10 21:49:30','2015-10-11 16:46:32',1,30004537,2,3,3,2,7,4,3,1,2,1,1,3,2,1,3,2,3,2,4,1,0,1,1,3),(4973,'2015-03-10 21:49:30','2015-10-11 16:46:32',1,30003660,25,4,4,8,19,14,13,7,5,2,4,4,3,4,3,3,3,2,1,0,0,2,3,18),(4974,'2015-03-10 21:49:30','2015-10-11 16:46:32',1,30004538,9,6,8,9,5,1,16,12,10,7,3,5,5,7,8,7,4,8,2,1,4,3,2,8),(4975,'2015-03-10 21:49:30','2015-10-11 16:46:32',1,30000617,39,1,2,11,3,1,3,0,8,5,6,0,2,3,6,6,2,4,3,1,14,5,3,4),(4976,'2015-03-10 21:49:30','2015-10-11 16:46:32',1,30001311,0,1,2,1,1,0,2,2,1,1,0,6,5,3,5,4,2,3,2,5,2,0,0,1),(4977,'2015-03-10 21:49:30','2015-03-10 21:49:30',1,30000367,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(4978,'2015-03-10 21:49:30','2015-10-11 16:46:32',1,30000635,8,0,3,8,6,3,0,3,0,3,3,25,23,5,37,35,2,9,0,3,3,0,2,3),(4979,'2015-03-10 21:49:30','2015-10-11 16:46:32',1,30002172,31,15,15,74,33,43,28,14,12,14,50,23,31,5,30,34,9,17,0,19,31,8,14,18),(4980,'2015-03-10 21:49:30','2015-10-11 16:46:32',1,30001095,6,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,2,2,0),(4981,'2015-03-10 21:49:30','2015-03-10 21:49:30',1,30001522,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(4982,'2015-03-10 21:49:30','2015-10-11 16:46:32',1,30003205,7,11,1,4,6,5,7,7,27,11,12,1,2,4,2,5,3,7,18,17,1,2,7,3),(4983,'2015-03-10 21:49:30','2015-03-10 21:49:30',1,30001502,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(4984,'2015-03-10 21:49:30','2015-10-11 16:46:32',1,30000521,15,7,6,14,12,14,7,8,0,1,4,9,7,14,20,6,11,9,2,5,5,16,9,15),(4985,'2015-03-10 21:49:30','2015-10-11 16:46:32',1,30003983,0,1,4,5,1,1,2,0,0,3,5,1,1,3,5,2,0,4,2,1,1,3,3,7),(4986,'2015-03-10 21:49:30','2015-10-11 16:46:32',1,30000894,46,51,40,46,45,43,39,20,58,26,36,35,40,51,84,49,39,43,23,24,50,65,66,33),(4987,'2015-03-10 21:49:30','2015-10-11 16:46:32',1,30003622,6,1,6,4,6,5,5,1,3,0,1,1,0,1,0,0,0,0,0,2,0,2,3,0),(4988,'2015-03-10 21:49:30','2015-10-11 16:46:32',1,30001179,22,31,11,15,13,11,9,23,11,47,61,12,23,75,15,23,18,27,14,21,18,31,33,11),(4989,'2015-03-10 21:49:30','2015-10-11 16:46:32',1,30001748,16,22,16,39,31,21,3,4,8,2,6,1,1,1,16,9,7,7,0,0,2,13,7,10),(4990,'2015-03-10 21:49:30','2015-10-11 16:46:32',1,30003102,15,19,16,9,9,21,31,9,6,5,6,6,8,2,6,4,9,14,5,15,18,6,7,9),(4991,'2015-03-10 21:49:30','2015-10-11 16:46:32',1,30002787,96,60,99,78,87,64,42,70,57,78,87,72,63,96,105,104,114,87,65,67,82,85,98,83),(4992,'2015-03-10 21:49:30','2015-10-11 16:46:32',1,30000191,10,8,2,12,14,10,11,6,8,7,11,9,8,10,4,8,10,8,7,28,19,6,4,11),(4993,'2015-03-10 21:49:30','2015-10-11 16:46:32',1,30003553,60,50,45,46,52,59,40,18,41,45,57,54,57,65,57,66,63,50,31,47,57,95,83,57),(4994,'2015-03-10 21:49:30','2015-10-11 16:46:32',1,30002790,229,135,228,319,186,170,187,120,142,258,273,279,271,280,276,297,243,209,153,181,218,339,318,222),(4995,'2015-03-10 21:49:30','2015-10-11 16:46:32',1,30004803,1,0,0,0,0,0,0,0,1,0,1,0,0,0,0,0,0,0,0,4,3,1,1,2),(4996,'2015-03-10 21:49:30','2015-10-11 16:46:32',1,30001872,5,10,13,6,15,11,6,7,5,8,8,7,11,14,15,17,16,11,1,3,6,11,12,8),(4997,'2015-03-10 21:49:30','2015-10-11 16:46:32',1,30000238,126,33,65,53,71,69,111,49,55,24,52,25,19,47,59,59,113,56,72,81,28,67,56,31),(4998,'2015-03-10 21:49:30','2015-10-11 16:46:32',1,30001160,53,28,95,102,56,37,54,44,131,114,186,101,53,183,185,264,92,113,191,88,149,126,221,96),(4999,'2015-03-10 21:49:30','2015-03-10 21:49:30',1,30001493,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(5000,'2015-03-10 21:49:30','2015-10-11 16:46:32',1,30004847,3,3,0,0,1,3,0,34,29,16,17,18,10,39,14,14,10,2,4,7,14,8,12,3),(5001,'2015-03-10 21:49:30','2015-10-11 16:46:32',1,30000972,0,3,7,2,3,0,2,5,5,6,5,1,1,6,12,8,14,2,7,3,4,5,9,7),(5002,'2015-03-10 21:49:30','2015-10-11 16:46:32',1,30002415,17,16,21,11,11,12,18,8,14,14,18,18,22,26,20,15,21,27,27,19,20,24,24,8),(5003,'2015-03-10 21:49:30','2015-10-11 16:46:32',1,30001878,16,23,21,5,31,33,9,5,2,56,58,41,52,28,49,37,54,27,17,20,29,61,71,44),(5004,'2015-03-10 21:49:30','2015-10-11 16:46:32',1,30003583,14,10,28,36,21,25,25,12,23,21,25,35,33,23,18,21,22,18,15,12,22,13,13,29),(5005,'2015-03-10 21:49:30','2015-03-10 21:49:30',1,30000326,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(5006,'2015-03-10 21:49:30','2015-10-11 16:46:32',1,30000746,0,1,1,0,1,0,0,1,1,1,0,4,5,1,1,1,1,13,1,0,0,1,2,0),(5007,'2015-03-10 21:49:30','2015-10-11 16:46:32',1,30001247,12,2,5,18,12,9,11,2,21,27,51,36,14,20,35,18,27,38,16,8,53,21,24,6),(5008,'2015-03-10 21:49:30','2015-10-11 16:46:32',1,30000725,5,1,8,0,2,3,1,8,2,1,2,1,1,10,20,49,6,2,0,1,0,2,1,11),(5009,'2015-03-10 21:49:30','2015-10-11 16:46:32',1,30002629,2,0,1,2,3,1,1,2,2,71,21,6,5,4,9,6,7,9,2,2,2,4,8,6),(5010,'2015-03-10 21:49:30','2015-10-11 16:46:32',1,30002429,25,2,22,12,8,12,5,3,23,14,9,21,8,4,10,10,13,8,6,12,20,6,11,6),(5011,'2015-03-10 21:49:30','2015-10-11 16:46:32',1,30000871,134,92,90,120,79,77,120,93,87,72,231,226,121,119,346,310,82,61,48,91,288,105,108,71),(5012,'2015-03-10 21:49:30','2015-10-11 16:46:32',1,30001839,29,21,48,56,27,34,19,13,18,45,57,48,53,49,73,69,49,50,25,48,42,30,43,46),(5013,'2015-03-10 21:49:30','2015-10-11 16:46:32',1,30000687,4,9,9,0,8,3,6,11,18,12,1,24,27,10,4,14,5,6,1,4,10,7,1,9),(5014,'2015-03-10 21:49:30','2015-10-11 16:46:32',1,30001756,10,7,2,2,2,2,1,0,2,0,2,1,1,21,16,15,3,2,0,0,1,3,2,2),(5015,'2015-03-10 21:49:30','2015-10-11 16:46:32',1,30000206,11,7,10,10,5,3,8,4,10,13,17,8,7,6,10,14,17,19,16,10,15,14,9,13),(5016,'2015-03-10 21:49:30','2015-10-11 16:46:32',1,30003422,89,31,31,32,57,52,41,17,35,58,54,43,39,44,52,41,48,41,45,39,37,50,45,38),(5017,'2015-03-10 21:49:30','2015-10-11 16:46:32',1,30002554,16,15,20,16,16,26,17,24,15,75,157,33,23,19,38,34,26,37,6,15,26,33,45,16),(5018,'2015-03-10 21:49:30','2015-10-11 16:46:32',1,30001595,1,4,0,0,3,3,3,2,8,78,92,30,29,56,45,38,47,32,42,35,63,72,67,37),(5019,'2015-03-10 21:49:30','2015-10-11 16:46:32',1,30001207,10,18,8,11,17,18,4,4,14,80,85,56,57,34,78,65,45,18,39,57,63,54,55,20),(5020,'2015-03-10 21:49:30','2015-10-11 16:46:32',1,30001890,5,3,10,4,21,12,16,13,1,10,8,16,11,33,15,15,34,20,4,22,13,23,27,17),(5021,'2015-03-10 21:49:30','2015-10-11 16:46:32',1,30001755,16,28,16,41,33,23,4,3,8,1,5,3,3,22,17,12,7,7,0,0,3,13,7,11),(5022,'2015-03-10 21:49:30','2015-10-11 16:46:32',1,30001173,64,9,14,34,21,26,30,4,5,60,70,35,30,25,52,44,46,29,22,38,38,26,18,39),(5023,'2015-03-10 21:49:30','2015-03-10 21:49:30',1,30000372,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(5024,'2015-03-10 21:49:30','2015-10-11 16:46:32',1,30001336,26,6,12,5,19,17,10,6,8,23,28,42,35,23,42,35,11,14,11,11,25,14,9,26),(5025,'2015-03-10 21:49:30','2015-03-10 21:49:30',1,30001468,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(5026,'2015-03-10 21:49:30','2015-10-11 16:46:32',1,30000315,9,7,12,11,5,5,4,0,3,10,9,17,7,12,8,10,17,20,2,5,4,10,8,3),(5027,'2015-03-10 21:49:30','2015-10-11 16:46:32',1,30004662,5,9,5,6,5,4,11,3,3,63,74,32,41,454,272,164,126,13,34,353,184,7,17,15),(5028,'2015-03-10 21:49:30','2015-10-11 16:46:32',1,30002854,32,27,26,28,10,21,6,7,9,56,77,48,38,25,44,48,26,26,2,7,28,20,43,45),(5029,'2015-03-10 21:49:30','2015-10-11 16:46:32',1,30001849,5,11,11,13,4,4,4,5,9,34,34,23,18,32,26,25,34,21,11,10,23,25,16,32),(5030,'2015-03-10 21:49:30','2015-10-11 16:46:32',1,30004368,0,5,3,14,10,6,11,11,4,11,12,16,9,11,41,25,6,5,2,11,12,7,3,12),(5031,'2015-03-10 21:49:30','2015-10-11 16:46:32',1,30000711,6,2,2,8,6,7,6,6,6,1,1,4,5,1,0,4,6,2,0,1,0,4,6,7),(5032,'2015-03-10 21:49:30','2015-10-11 16:46:32',1,30000928,5,4,3,1,0,3,0,0,0,3,6,2,1,5,1,1,0,4,1,0,1,2,0,1),(5033,'2015-03-10 21:49:30','2015-10-11 16:46:32',1,30002371,6,1,16,8,14,12,21,9,22,19,17,19,24,22,195,423,23,26,14,5,8,7,10,12),(5034,'2015-03-10 21:49:30','2015-10-11 16:46:32',1,30001194,42,47,14,22,16,16,21,18,14,44,81,61,43,40,34,22,28,19,15,45,37,28,18,26),(5035,'2015-03-10 21:49:30','2015-10-11 16:46:32',1,30003696,6,15,25,17,15,20,17,5,15,0,8,2,1,0,4,2,1,3,4,0,3,1,3,5),(5036,'2015-03-10 21:49:30','2015-10-11 16:46:32',1,30000602,1,3,5,0,3,4,2,11,0,19,18,6,2,2,19,24,3,1,1,4,6,12,11,0),(5037,'2015-03-10 21:49:30','2015-10-11 16:46:32',1,30004864,0,1,0,0,2,1,0,0,7,4,0,2,4,1,1,3,8,14,1,1,3,2,3,7),(5038,'2015-03-10 21:49:30','2015-10-11 16:46:32',1,30003166,34,14,17,18,9,7,31,6,26,42,31,12,17,32,33,21,22,18,26,19,20,75,91,98),(5039,'2015-03-10 21:49:30','2015-10-11 16:46:32',1,30000957,0,2,2,2,7,8,3,1,8,7,4,4,11,2,4,2,1,2,1,5,2,4,4,5),(5040,'2015-03-10 21:49:30','2015-10-11 16:46:32',1,30000433,3,2,6,3,4,2,0,16,2,1,2,6,3,7,5,8,8,4,1,4,0,5,3,1),(5041,'2015-03-10 21:49:30','2015-10-11 16:46:32',1,30002348,1,2,2,6,1,2,1,1,0,3,4,2,2,6,2,2,0,1,4,5,3,3,1,3),(5042,'2015-03-10 21:49:30','2015-10-11 16:46:32',1,30000187,30,54,54,63,50,46,39,46,32,75,76,72,61,42,67,74,40,60,37,50,57,83,59,45),(5043,'2015-03-10 21:49:30','2015-10-11 16:46:32',1,30002939,43,36,55,33,41,39,41,84,55,45,52,20,14,12,43,42,17,11,4,9,20,24,14,18),(5044,'2015-03-10 21:49:30','2015-10-11 16:46:32',1,30003638,6,7,12,5,4,2,12,7,14,6,5,10,6,6,1,4,6,7,2,3,2,5,5,8),(5045,'2015-03-10 21:49:30','2015-10-11 16:46:32',1,30000698,2,3,2,0,2,0,0,0,1,6,1,1,2,5,5,8,7,6,2,2,2,2,5,1),(5046,'2015-03-10 21:49:30','2015-10-11 16:46:32',1,30001140,2,5,0,2,3,1,2,6,1,4,3,13,14,4,6,2,20,4,0,0,0,4,5,13),(5047,'2015-03-10 21:49:30','2015-10-11 16:46:32',1,30003216,45,15,13,30,33,30,15,26,20,17,21,17,28,10,18,19,12,14,8,21,15,16,11,27),(5048,'2015-03-10 21:49:30','2015-10-11 16:46:32',1,30001998,22,20,12,10,11,13,9,8,23,6,7,7,7,4,7,5,4,1,8,13,6,5,9,7),(5049,'2015-03-10 21:49:30','2015-10-11 16:46:32',1,30003256,22,28,50,32,18,12,36,30,11,4,5,8,3,5,8,4,8,3,8,7,15,5,7,16),(5050,'2015-03-10 21:49:30','2015-10-11 16:46:32',1,30003120,19,22,17,19,10,14,24,13,18,22,21,21,26,46,20,11,18,26,40,25,19,19,23,34),(5051,'2015-03-10 21:49:30','2015-03-10 21:49:30',1,30000337,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(5052,'2015-03-10 21:49:30','2015-10-11 16:46:32',1,30004621,56,21,46,33,43,34,36,23,32,12,20,30,18,28,42,25,25,39,8,25,41,19,24,21),(5053,'2015-03-10 21:49:30','2015-10-11 16:46:32',1,30002126,42,18,41,29,15,8,30,0,7,3,1,6,7,2,4,5,2,6,3,2,2,7,7,2),(5054,'2015-03-10 21:49:30','2015-10-11 16:46:32',1,30005016,132,100,129,134,123,129,103,104,106,136,147,172,142,149,205,191,159,129,77,139,146,205,192,186),(5055,'2015-03-10 21:49:30','2015-10-11 16:46:32',1,30002622,1,12,8,1,4,2,4,2,0,1,8,3,3,3,5,5,2,2,4,8,3,21,35,2),(5056,'2015-03-10 21:49:30','2015-10-11 16:46:32',1,30004840,23,8,3,6,2,1,2,36,40,5,4,6,3,5,6,11,7,2,2,1,17,7,9,8),(5057,'2015-03-10 21:49:30','2015-10-11 16:46:32',1,30000517,0,1,1,0,2,3,2,5,0,1,1,0,1,0,8,2,0,0,1,0,0,0,0,0),(5058,'2015-03-10 21:49:30','2015-10-11 16:46:32',1,30004915,2,9,6,0,8,5,2,5,3,12,5,1,10,6,4,5,0,15,25,10,2,4,5,2),(5059,'2015-03-10 21:49:30','2015-10-11 16:46:32',1,30004173,5,6,0,2,0,0,2,0,0,4,3,2,0,0,3,3,1,2,0,0,0,3,4,0),(5060,'2015-03-10 21:49:30','2015-10-11 16:46:32',1,30003744,24,14,33,10,17,19,12,15,20,72,40,49,36,28,38,27,34,17,41,22,61,40,39,36),(5061,'2015-03-10 21:49:30','2015-10-11 16:46:32',1,30002148,7,3,6,7,6,2,5,1,16,0,1,5,8,2,8,7,0,5,0,0,1,6,3,5),(5062,'2015-03-10 21:49:30','2015-10-11 16:46:32',1,30003110,47,26,23,37,18,23,29,31,69,32,27,50,76,141,248,220,56,77,54,62,164,110,66,93),(5063,'2015-03-10 21:49:30','2015-10-11 16:46:32',1,30001978,285,93,217,60,133,105,166,92,97,73,64,92,85,62,112,107,54,82,97,140,63,71,63,85),(5064,'2015-03-10 21:49:30','2015-10-11 16:46:32',1,30003245,7,11,2,3,0,5,17,5,4,0,3,5,10,5,6,9,3,6,0,0,1,8,16,6),(5065,'2015-03-10 21:49:30','2015-10-11 16:46:32',1,30000541,14,2,3,8,1,0,0,5,0,11,19,16,12,1,1,2,2,13,8,5,3,2,2,14),(5066,'2015-03-10 21:49:30','2015-10-11 16:46:32',1,30003274,23,17,149,12,6,8,12,27,10,18,21,4,3,33,27,16,19,5,32,20,18,54,39,14),(5067,'2015-03-10 21:49:30','2015-10-11 16:46:32',1,30000882,10,4,7,5,4,3,10,4,2,2,2,2,4,2,3,2,7,0,2,2,2,2,1,1),(5068,'2015-03-10 21:49:30','2015-10-11 16:46:32',1,30003259,3,2,3,1,1,1,5,2,4,0,0,2,2,2,3,1,1,0,0,0,0,1,1,0),(5069,'2015-03-10 21:49:30','2015-10-11 16:46:32',1,30004907,2,1,4,4,4,4,1,6,7,2,2,0,1,0,1,2,2,0,0,0,2,2,4,4),(5070,'2015-03-10 21:49:30','2015-10-11 16:46:32',1,30003173,22,12,5,14,16,9,32,11,16,23,17,20,22,8,13,12,13,4,30,17,10,40,22,7),(5071,'2015-03-10 21:49:30','2015-10-11 16:46:32',1,30001594,2,1,0,0,3,4,2,2,8,118,126,14,16,17,12,21,30,24,11,14,38,30,27,22),(5072,'2015-03-10 21:49:30','2015-03-10 21:49:30',1,30000339,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(5073,'2015-03-10 21:49:30','2015-10-11 16:46:32',1,30003278,49,32,154,70,41,25,58,56,64,32,33,37,25,51,32,24,24,23,29,79,159,23,27,18),(5074,'2015-03-10 21:49:30','2015-10-11 16:46:32',1,30004075,2,1,12,5,6,2,4,1,4,1,0,1,1,3,5,5,1,1,1,0,1,5,6,2),(5075,'2015-03-10 21:49:30','2015-10-11 16:46:32',1,30001059,4,5,1,10,3,1,3,8,2,30,16,39,23,5,9,5,9,2,0,0,0,11,10,9),(5076,'2015-03-10 21:49:30','2015-10-11 16:46:32',1,30003288,33,28,24,14,24,24,12,9,7,17,21,25,23,23,26,19,40,35,23,15,14,20,22,30),(5077,'2015-03-10 21:49:30','2015-10-11 16:46:32',1,30003770,29,78,74,73,56,36,31,17,32,61,79,49,49,91,42,34,35,35,62,52,78,27,45,70),(5078,'2015-03-10 21:49:30','2015-10-11 16:46:32',1,30002916,22,7,53,10,9,10,10,10,5,38,42,44,41,20,39,17,16,13,17,18,18,14,18,48),(5079,'2015-03-10 21:49:30','2015-10-11 16:46:32',1,30003208,7,12,2,4,8,7,7,3,15,3,5,0,3,6,1,2,2,8,2,3,0,5,5,8),(5080,'2015-03-10 21:49:30','2015-10-11 16:46:32',1,30000808,78,26,47,54,82,62,26,14,41,17,20,20,18,2,7,7,4,7,4,1,5,13,13,14),(5081,'2015-03-10 21:49:30','2015-03-10 21:49:30',1,30000358,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(5082,'2015-03-10 21:49:30','2015-10-11 16:46:32',1,30000833,13,1,5,6,2,33,0,1,14,0,0,4,1,5,2,6,3,4,1,2,4,2,2,6),(5083,'2015-03-10 21:49:30','2015-10-11 16:46:32',1,30001835,22,28,23,28,27,28,24,17,14,48,59,40,53,66,71,67,45,58,25,48,36,31,41,49),(5084,'2015-03-10 21:49:30','2015-10-11 16:46:32',1,30001086,1,0,0,0,0,0,1,2,1,1,4,2,3,3,1,1,3,6,0,6,2,3,0,0),(5085,'2015-03-10 21:49:30','2015-10-11 16:46:32',1,30000713,39,5,3,2,5,7,40,12,6,1,2,7,6,4,3,21,0,1,0,2,4,6,4,4),(5086,'2015-03-10 21:49:30','2015-10-11 16:46:32',1,30002943,36,18,22,6,10,15,16,12,26,26,16,20,20,21,20,20,16,10,1,10,23,19,16,15),(5087,'2015-03-10 21:49:30','2015-10-11 16:46:32',1,30003688,133,97,277,119,160,123,60,64,51,36,43,37,43,50,65,48,69,28,33,58,43,42,33,57),(5088,'2015-03-10 21:49:30','2015-10-11 16:46:32',1,30001211,6,7,4,11,14,13,3,3,4,6,1,19,18,22,6,1,8,10,8,9,9,7,5,6),(5089,'2015-03-10 21:49:30','2015-10-11 16:46:32',1,30001249,17,24,30,90,33,23,33,8,28,65,210,87,65,83,100,77,90,108,43,44,102,80,61,63),(5090,'2015-03-10 21:49:30','2015-10-11 16:46:32',1,30000496,13,3,7,0,4,4,4,8,4,3,2,10,7,4,8,8,6,10,23,6,6,9,6,6),(5091,'2015-03-10 21:49:30','2015-10-11 16:46:32',1,30000245,1,8,1,1,1,1,2,3,1,2,0,0,0,0,1,1,0,0,2,2,0,5,2,7),(5092,'2015-03-10 21:49:30','2015-10-11 16:46:32',1,30001967,103,34,117,40,50,55,60,22,57,46,71,255,215,50,42,30,25,45,23,19,18,33,47,37),(5093,'2015-03-10 21:49:30','2015-10-11 16:46:32',1,30004331,10,19,56,31,43,27,18,29,21,15,26,16,8,24,66,33,19,26,6,22,19,17,18,21),(5094,'2015-03-10 21:49:30','2015-10-11 16:46:32',1,30000777,32,5,11,3,5,5,14,10,8,7,5,8,2,4,4,5,6,11,1,14,1,2,17,7),(5095,'2015-03-10 21:49:30','2015-10-11 16:46:32',1,30003700,23,6,7,7,5,15,9,4,2,0,0,4,2,0,12,9,7,1,7,1,1,9,6,3),(5096,'2015-03-10 21:49:30','2015-10-11 16:46:32',1,30001905,6,2,12,5,22,13,16,9,1,6,1,12,6,8,11,16,13,9,4,10,10,21,14,16),(5097,'2015-03-10 21:49:30','2015-10-11 16:46:32',1,30004416,7,0,4,4,0,2,2,3,10,5,3,2,0,6,13,20,13,6,0,2,1,0,2,5),(5098,'2015-03-10 21:49:30','2015-10-11 16:46:32',1,30003773,35,66,77,74,50,39,52,21,29,51,66,55,48,125,37,33,23,34,43,50,71,22,40,46),(5099,'2015-03-10 21:49:30','2015-03-10 21:49:30',1,30001490,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(5100,'2015-03-10 21:49:30','2015-10-11 16:46:32',1,30004355,3,10,7,2,4,1,1,6,5,1,2,2,2,0,2,2,1,0,0,2,1,1,1,4),(5101,'2015-03-10 21:49:30','2015-10-11 16:46:32',1,30000221,5,6,14,1,2,2,4,5,6,3,1,3,3,5,3,6,9,9,8,6,6,5,13,10),(5102,'2015-03-10 21:49:30','2015-10-11 16:46:32',1,30000664,52,17,35,31,65,14,28,13,15,17,18,12,17,18,10,12,41,14,24,24,21,58,63,5),(5103,'2015-03-10 21:49:30','2015-10-11 16:46:32',1,30000470,4,3,0,1,0,0,0,0,0,35,9,4,6,3,27,33,1,1,2,1,1,3,1,2),(5104,'2015-03-10 21:49:30','2015-10-11 16:46:32',1,30002319,0,8,3,0,1,4,3,0,0,2,1,1,3,0,0,0,1,1,2,0,0,0,1,1),(5105,'2015-03-10 21:49:30','2015-03-10 21:49:30',1,30000417,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(5106,'2015-03-10 21:49:30','2015-10-11 16:46:32',1,30002946,7,2,3,7,7,11,13,17,23,11,11,2,4,7,18,7,7,8,2,7,8,9,12,11),(5107,'2015-03-10 21:49:30','2015-10-11 16:46:32',1,30002897,29,8,57,8,13,10,4,16,16,98,152,235,177,331,213,226,122,123,223,134,161,612,103,72),(5108,'2015-03-10 21:49:30','2015-10-11 16:46:32',1,30001093,2,1,3,0,4,5,3,1,0,3,5,0,0,2,1,4,8,4,0,0,1,2,2,0),(5109,'2015-03-10 21:49:30','2015-10-11 16:46:32',1,30002118,33,10,19,17,13,5,4,8,1,86,86,13,14,23,31,10,20,18,11,23,25,38,35,20),(5110,'2015-03-10 21:49:30','2015-10-11 16:46:32',1,30000889,11,8,7,17,11,9,8,8,6,47,42,26,21,44,34,40,29,34,16,12,20,11,24,24),(5111,'2015-03-10 21:49:30','2015-10-11 16:46:32',1,30001778,0,3,0,0,1,1,12,0,0,0,0,2,2,0,0,0,0,0,0,1,1,1,2,2),(5112,'2015-03-10 21:49:30','2015-10-11 16:46:32',1,30003224,1,3,2,4,2,1,5,2,5,2,1,1,1,3,1,0,1,2,5,0,0,4,3,2),(5113,'2015-03-10 21:49:30','2015-10-11 16:46:32',1,30000604,5,0,10,3,4,5,0,0,4,4,4,5,4,16,10,11,12,2,31,8,8,12,21,11),(5114,'2015-03-10 21:49:30','2015-10-11 16:46:32',1,30000293,0,1,4,2,1,0,2,0,4,8,6,5,6,0,2,3,1,3,0,0,1,0,3,1),(5115,'2015-03-10 21:49:30','2015-10-11 16:46:32',1,30004552,26,22,42,25,22,28,17,10,32,65,86,34,31,58,25,14,42,19,26,15,58,19,33,12),(5116,'2015-03-10 21:49:30','2015-10-11 16:46:32',1,30001958,11,10,15,4,6,5,10,5,17,5,7,2,2,1,7,7,8,5,8,8,5,9,5,12),(5117,'2015-03-10 21:49:30','2015-10-11 16:46:32',1,30004069,3,32,31,6,12,5,12,3,6,12,19,5,9,10,8,17,16,6,7,2,15,11,10,13),(5118,'2015-03-10 21:49:30','2015-10-11 16:46:32',1,30004875,18,31,24,20,31,21,14,41,32,9,11,8,9,2,3,4,8,4,0,5,1,5,4,17),(5119,'2015-03-10 21:49:30','2015-10-11 16:46:32',1,30003731,232,171,137,139,157,152,140,131,172,398,424,184,160,350,292,283,234,178,294,359,444,180,167,157),(5120,'2015-03-10 21:49:30','2015-10-11 16:46:32',1,30001973,5,4,1,4,1,1,1,1,0,0,0,0,1,0,0,2,4,1,1,0,3,4,1,1),(5121,'2015-03-10 21:49:30','2015-10-11 16:46:32',1,30001798,2,0,0,0,0,1,0,0,0,0,0,2,3,32,10,10,6,4,4,5,3,5,5,2),(5122,'2015-03-10 21:49:30','2015-10-11 16:46:32',1,30004613,2,0,13,1,4,1,0,5,3,132,1,6,6,6,27,24,2,1,18,25,16,20,17,7),(5123,'2015-03-10 21:49:30','2015-10-11 16:46:32',1,30000752,2,3,6,6,12,11,3,1,8,0,1,5,4,4,4,8,4,1,0,9,4,2,5,2),(5124,'2015-03-10 21:49:30','2015-10-11 16:46:32',1,30003263,10,4,23,18,6,9,13,9,11,1,5,25,29,12,3,5,3,5,14,9,3,5,1,0),(5125,'2015-03-10 21:49:30','2015-10-11 16:46:32',1,30003119,12,13,7,14,5,4,21,6,7,24,19,23,27,52,28,14,19,34,35,17,22,15,15,38),(5126,'2015-03-10 21:49:30','2015-10-11 16:46:32',1,30004342,51,57,54,62,81,66,41,67,96,24,44,39,37,33,38,39,32,23,14,31,30,29,26,36),(5127,'2015-03-10 21:49:30','2015-10-11 16:46:32',1,30003252,18,4,45,4,2,2,14,5,3,2,3,2,0,1,4,0,5,4,3,2,2,4,1,1),(5128,'2015-03-10 21:49:30','2015-10-11 16:46:32',1,30001792,0,0,1,0,1,2,0,0,1,0,1,0,1,0,0,0,0,1,1,3,2,2,2,2),(5129,'2015-03-10 21:49:30','2015-10-11 16:46:32',1,30004894,3,6,13,4,8,3,8,1,3,9,10,4,6,6,4,6,4,9,11,10,9,10,10,10),(5130,'2015-03-10 21:49:30','2015-10-11 16:46:32',1,30001999,23,22,14,11,11,13,10,8,23,5,7,8,8,5,8,3,4,2,8,14,7,3,7,7),(5131,'2015-03-10 21:49:30','2015-10-11 16:46:32',1,30000750,0,3,5,0,2,3,3,1,14,7,3,9,4,6,4,7,7,30,0,14,2,3,2,6),(5132,'2015-03-10 21:49:30','2015-10-11 16:46:32',1,30000585,26,18,21,6,40,6,19,17,7,29,20,30,7,36,53,41,39,6,17,53,21,55,66,11),(5133,'2015-03-10 21:49:30','2015-10-11 16:46:32',1,30001584,6,1,5,3,6,4,0,0,0,0,0,0,0,1,4,5,4,0,1,0,0,0,0,0),(5134,'2015-03-10 21:49:30','2015-10-11 16:46:32',1,30002155,12,3,4,1,0,3,3,0,1,1,3,4,4,6,4,10,3,1,5,35,71,11,15,1),(5135,'2015-03-10 21:49:30','2015-10-11 16:46:32',1,30003313,18,10,29,6,9,2,9,10,1,18,15,4,9,44,42,37,13,4,24,6,9,11,24,13),(5136,'2015-03-10 21:49:30','2015-10-11 16:46:32',1,30000275,6,5,41,11,12,24,43,19,21,4,1,6,3,2,0,1,3,2,7,7,33,1,1,7),(5137,'2015-03-10 21:49:30','2015-10-11 16:46:32',1,30000447,0,1,0,1,0,1,1,3,2,4,3,4,5,7,17,6,11,13,23,163,21,33,33,10),(5138,'2015-03-10 21:49:30','2015-10-11 16:46:32',1,30001552,1,1,0,0,0,0,0,2,0,1,4,3,2,3,1,0,1,1,0,0,5,1,3,5),(5139,'2015-03-10 21:49:30','2015-10-11 16:46:32',1,30004038,10,7,19,26,49,29,20,10,15,14,20,16,11,5,18,20,7,15,12,33,5,22,11,12),(5140,'2015-03-10 21:49:30','2015-10-11 16:46:32',1,30002822,6,7,6,5,6,4,7,4,6,24,22,9,13,12,7,10,7,7,0,0,11,19,16,8),(5141,'2015-03-10 21:49:30','2015-10-11 16:46:32',1,30001113,0,0,0,0,1,1,0,1,0,0,0,0,0,0,0,0,0,1,1,1,0,1,0,0),(5142,'2015-03-10 21:49:30','2015-10-11 16:46:32',1,30001089,3,0,3,0,3,2,8,2,2,0,1,3,2,1,0,2,0,4,1,3,0,1,1,2),(5143,'2015-03-10 21:49:30','2015-10-11 16:46:32',1,30005095,7,9,20,16,15,18,5,12,6,11,6,8,7,8,20,9,7,9,5,5,6,16,10,1),(5144,'2015-03-10 21:49:30','2015-10-11 16:46:32',1,30004856,1,0,2,0,1,3,1,1,0,2,1,0,1,0,5,2,1,2,0,1,1,0,1,1),(5145,'2015-03-10 21:49:30','2015-10-11 16:46:32',1,30001753,4,2,25,8,16,15,7,5,0,1,1,1,1,2,4,1,4,1,1,0,0,3,4,1),(5146,'2015-03-10 21:49:30','2015-10-11 16:46:32',1,30004655,56,10,8,7,15,15,12,0,2,209,215,67,35,135,218,81,92,135,181,191,156,87,100,30),(5147,'2015-03-10 21:49:30','2015-10-11 16:46:32',1,30000237,3,7,2,2,6,6,5,7,6,0,0,0,2,0,1,4,5,1,1,1,0,0,1,1),(5148,'2015-03-10 21:49:30','2015-10-11 16:46:32',1,30000678,54,30,278,43,70,80,64,58,25,30,50,34,44,42,67,57,58,25,6,51,112,59,36,49),(5149,'2015-03-10 21:49:30','2015-10-11 16:46:32',1,30002122,73,16,86,30,28,29,38,23,17,59,71,34,23,41,50,45,33,36,4,51,25,44,49,22),(5150,'2015-03-10 21:49:30','2015-10-11 16:46:32',1,30004320,11,8,24,16,16,20,42,15,11,16,26,10,6,7,28,12,4,7,5,8,3,3,5,7),(5151,'2015-03-10 21:49:30','2015-10-11 16:46:32',1,30001325,14,10,19,10,6,9,9,18,11,11,18,4,14,22,18,25,15,18,4,16,30,17,12,17),(5152,'2015-03-10 21:49:30','2015-10-11 16:46:32',1,30004382,4,6,1,3,6,2,1,17,4,1,3,0,0,3,19,22,3,1,1,1,1,1,3,6),(5153,'2015-03-10 21:49:30','2015-10-11 16:46:32',1,30000499,9,0,1,0,1,1,5,5,1,2,4,7,4,1,3,7,1,2,1,0,2,3,2,1),(5154,'2015-03-10 21:49:30','2015-10-11 16:46:32',1,30002600,17,3,3,3,1,0,0,0,1,0,0,3,4,5,50,10,7,35,0,0,2,5,5,4),(5155,'2015-03-10 21:49:30','2015-10-11 16:46:32',1,30001021,58,54,50,33,61,65,65,55,65,86,94,73,67,91,90,113,72,58,34,37,42,88,44,75),(5156,'2015-03-10 21:49:30','2015-10-11 16:46:32',1,30003228,1,5,1,17,6,4,6,2,6,1,1,4,4,3,3,6,1,2,0,0,2,9,4,5),(5157,'2015-03-10 21:49:30','2015-10-11 16:46:32',1,30005175,14,7,12,12,21,9,4,5,6,20,17,10,12,20,15,15,22,8,16,15,8,13,6,12),(5158,'2015-03-10 21:49:30','2015-10-11 16:46:32',1,30003326,4,1,1,1,2,2,1,5,3,4,3,0,0,5,2,2,3,6,2,3,2,17,14,47),(5159,'2015-03-10 21:49:30','2015-10-11 16:46:32',1,30004932,14,21,30,18,17,32,11,9,4,19,9,5,5,27,19,10,20,12,5,9,10,7,8,11),(5160,'2015-03-10 21:49:30','2015-10-11 16:46:32',1,30004062,7,2,1,2,2,0,1,0,1,4,3,4,5,5,14,11,9,15,6,8,7,9,8,4),(5161,'2015-03-10 21:49:30','2015-10-11 16:46:32',1,30003237,6,2,4,5,4,6,6,1,0,8,7,4,6,1,1,0,6,3,9,13,5,1,5,1),(5162,'2015-03-10 21:49:30','2015-10-11 16:46:32',1,30004396,35,9,16,5,9,20,5,16,12,22,11,26,26,29,14,12,14,9,1,8,3,12,5,5),(5163,'2015-03-10 21:49:30','2015-10-11 16:46:32',1,30004568,16,15,20,15,6,13,9,6,13,16,14,5,3,3,8,5,8,8,20,34,27,14,15,7),(5164,'2015-03-10 21:49:30','2015-10-11 16:46:32',1,30004665,5,4,3,2,4,4,11,6,2,82,300,246,371,392,176,410,476,66,31,300,227,6,5,10),(5165,'2015-03-10 21:49:30','2015-10-11 16:46:32',1,30001291,1,28,29,11,9,11,7,7,10,30,30,19,27,14,19,10,17,20,1,20,15,20,11,12),(5166,'2015-03-10 21:49:30','2015-10-11 16:46:32',1,30001932,4,6,14,5,16,15,8,5,8,13,9,7,11,11,9,12,15,14,3,1,9,17,27,4),(5167,'2015-03-10 21:49:30','2015-03-10 21:49:30',1,30001498,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(5168,'2015-03-10 21:49:30','2015-10-11 16:46:32',1,30002597,11,0,4,3,7,0,11,0,3,10,9,10,9,3,2,4,3,2,2,0,1,5,3,3),(5169,'2015-03-10 21:49:30','2015-10-11 16:46:32',1,30003207,2,2,0,2,1,0,4,2,1,1,2,2,1,0,0,1,2,6,1,0,1,3,7,2),(5170,'2015-03-10 21:49:30','2015-10-11 16:46:32',1,30001829,0,5,1,9,9,3,0,2,0,0,0,2,2,0,1,2,4,1,0,0,1,1,1,0),(5171,'2015-03-10 21:49:30','2015-10-11 16:46:32',1,30003265,13,4,23,24,6,12,18,22,5,2,4,23,24,3,2,4,9,7,7,10,4,4,4,4),(5172,'2015-03-10 21:49:30','2015-10-11 16:46:32',1,30002044,7,8,18,9,16,18,9,6,19,31,33,42,17,33,20,5,11,8,5,5,18,3,7,9),(5173,'2015-03-10 21:49:30','2015-10-11 16:46:32',1,30002169,106,38,107,50,76,65,37,55,17,67,66,78,56,60,116,86,76,52,75,157,160,90,84,44),(5174,'2015-03-10 21:49:30','2015-10-11 16:46:32',1,30004941,69,56,32,39,40,37,58,19,35,17,8,4,7,8,6,9,9,11,6,3,9,7,11,15),(5175,'2015-03-10 21:49:30','2015-10-11 16:46:32',1,30000958,4,11,5,7,19,16,5,5,6,11,7,5,10,4,5,3,2,7,3,0,0,7,6,5),(5176,'2015-03-10 21:49:30','2015-10-11 16:46:32',1,30001031,60,47,43,40,48,49,29,34,25,31,28,25,35,32,65,57,37,48,21,28,33,64,68,36),(5177,'2015-03-10 21:49:30','2015-10-11 16:46:32',1,30004859,2,4,1,0,2,6,3,2,24,4,3,4,3,16,4,7,7,6,3,2,3,4,7,8),(5178,'2015-03-10 21:49:30','2015-10-11 16:46:32',1,30002162,40,75,30,101,40,43,50,20,20,7,46,12,15,5,33,34,12,18,2,27,30,7,11,11),(5179,'2015-03-10 21:49:30','2015-10-11 16:46:32',1,30002586,28,8,10,21,8,8,20,11,31,10,13,3,8,41,17,43,21,14,13,22,142,10,14,17),(5180,'2015-03-10 21:49:30','2015-10-11 16:46:32',1,30001039,7,14,7,10,30,21,4,11,7,33,36,28,11,22,63,65,42,36,3,5,74,20,15,14),(5181,'2015-03-10 21:49:30','2015-10-11 16:46:32',1,30003726,68,31,129,70,61,70,51,20,46,100,88,77,64,178,70,58,74,50,67,149,242,124,92,84),(5182,'2015-03-10 21:49:30','2015-10-11 16:46:32',1,30004898,6,2,0,0,6,5,10,1,4,20,14,3,3,2,7,6,1,2,0,5,12,1,4,20),(5183,'2015-03-10 21:49:30','2015-10-11 16:46:32',1,30002176,20,15,22,32,18,19,28,21,16,2,6,4,5,5,11,15,4,7,0,2,14,11,14,5),(5184,'2015-03-10 21:49:30','2015-10-11 16:46:32',1,30004763,3,1,44,2,2,1,1,1,3,3,4,4,2,3,6,4,12,5,9,4,4,12,7,10),(5185,'2015-03-10 21:49:30','2015-10-11 16:46:32',1,30004809,25,17,12,19,15,12,5,24,53,4,3,5,5,12,5,12,8,2,3,19,7,5,4,3),(5186,'2015-03-10 21:49:30','2015-10-11 16:46:32',1,30001255,2,4,11,9,4,4,8,10,3,32,22,29,41,14,19,18,12,13,22,10,25,30,11,3),(5187,'2015-03-10 21:49:30','2015-10-11 16:46:32',1,30000884,2,3,3,0,0,0,4,4,1,2,2,0,1,1,0,0,2,2,1,2,2,1,0,2),(5188,'2015-03-10 21:49:30','2015-10-11 16:46:32',1,30004171,22,12,6,35,25,17,21,7,16,41,59,38,38,36,16,27,24,22,7,6,7,27,22,30),(5189,'2015-03-10 21:49:30','2015-03-10 21:49:30',1,30000331,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(5190,'2015-03-10 21:49:30','2015-10-11 16:46:32',1,30001791,1,3,0,0,1,2,0,0,1,0,0,0,1,2,1,1,2,2,2,0,1,1,0,1),(5191,'2015-03-10 21:49:30','2015-10-11 16:46:32',1,30001261,21,7,30,8,6,8,18,10,15,42,33,110,24,122,39,71,31,17,13,21,31,21,31,26),(5192,'2015-03-10 21:49:30','2015-10-11 16:46:32',1,30003342,26,15,5,18,17,16,35,6,18,9,10,11,6,19,17,11,17,26,59,33,24,15,17,86),(5193,'2015-03-10 21:49:30','2015-10-11 16:46:32',1,30001108,5,8,24,17,5,8,32,3,10,32,30,22,24,28,27,18,13,7,2,14,23,49,46,25),(5194,'2015-03-10 21:49:30','2015-10-11 16:46:32',1,30004428,75,10,2,20,27,20,21,4,29,2,2,12,7,9,14,19,25,17,8,29,18,23,11,14),(5195,'2015-03-10 21:49:30','2015-10-11 16:46:32',1,30003651,12,5,10,4,7,5,5,16,5,0,0,2,3,6,10,7,2,6,1,10,7,4,5,3),(5196,'2015-03-10 21:49:30','2015-10-11 16:46:32',1,30000306,6,7,13,27,10,13,12,6,5,5,8,6,9,17,18,16,10,12,3,7,13,6,7,12),(5197,'2015-03-10 21:49:30','2015-10-11 16:46:32',1,30000220,14,9,21,20,22,9,14,6,5,12,6,11,8,8,14,14,14,6,11,10,5,18,20,14),(5198,'2015-03-10 21:49:30','2015-10-11 16:46:32',1,30001846,6,13,14,20,7,9,9,19,6,48,54,48,45,48,53,61,79,62,28,49,30,42,44,29),(5199,'2015-03-10 21:49:30','2015-10-11 16:46:32',1,30002109,3,2,23,10,4,7,6,15,3,1,1,20,11,3,12,18,13,8,4,32,29,42,15,20),(5200,'2015-03-10 21:49:30','2015-10-11 16:46:32',1,30002037,8,4,20,62,36,37,63,5,0,0,6,0,2,4,0,4,5,4,1,2,2,2,2,2),(5201,'2015-03-10 21:49:30','2015-10-11 16:46:32',1,30004456,0,0,2,0,4,6,0,3,3,0,0,5,9,0,2,7,6,8,2,2,3,0,0,0),(5202,'2015-03-10 21:49:30','2015-10-11 16:46:32',1,30002115,0,4,7,4,3,0,0,3,2,1,1,7,9,0,0,0,6,4,0,0,0,4,0,2),(5203,'2015-03-10 21:49:30','2015-10-11 16:46:32',1,30000918,0,4,4,4,8,9,5,1,9,6,3,4,9,5,5,4,1,2,3,6,8,4,7,0),(5204,'2015-03-10 21:49:30','2015-10-11 16:46:32',1,30001570,9,9,2,2,12,14,10,1,11,66,69,11,14,15,9,19,25,28,9,11,32,17,16,9),(5205,'2015-03-10 21:49:30','2015-10-11 16:46:32',1,30001546,7,1,0,0,0,0,0,3,0,33,25,14,3,3,0,0,4,3,2,12,7,2,5,7),(5206,'2015-03-10 21:49:30','2015-10-11 16:46:32',1,30000729,8,4,46,3,3,4,39,1,0,3,3,5,5,15,7,7,2,3,0,0,3,4,3,5),(5207,'2015-03-10 21:49:30','2015-10-11 16:46:32',1,30004785,9,5,0,6,8,8,3,9,5,13,13,10,10,28,25,30,27,31,20,2,11,13,25,15),(5208,'2015-03-10 21:49:30','2015-10-11 16:46:32',1,30000308,25,30,56,34,33,36,37,8,15,30,24,17,16,19,27,37,47,41,11,15,27,48,49,19),(5209,'2015-03-10 21:49:30','2015-10-11 16:46:32',1,30001058,7,9,2,0,1,3,9,2,1,1,1,4,5,0,3,2,5,2,0,0,0,4,2,1),(5210,'2015-03-10 21:49:30','2015-10-11 16:46:32',1,30001262,28,8,31,8,6,10,16,10,15,40,37,106,24,119,32,55,33,15,12,37,24,28,34,29),(5211,'2015-03-10 21:49:30','2015-10-11 16:46:32',1,30000947,1,0,8,4,2,9,4,8,7,5,3,6,6,10,25,32,20,8,7,2,7,4,50,23),(5212,'2015-03-10 21:49:30','2015-10-11 16:46:32',1,30001559,4,9,0,1,2,2,2,0,0,14,11,8,6,15,1,3,5,15,3,3,11,18,2,11),(5213,'2015-03-10 21:49:30','2015-10-11 16:46:32',1,30002466,10,13,1,11,6,8,6,12,14,19,22,12,20,8,6,3,16,11,3,10,19,20,21,13),(5214,'2015-03-10 21:49:30','2015-10-11 16:46:32',1,30003734,16,9,4,13,7,10,14,12,8,12,21,22,14,20,75,63,28,17,13,20,8,11,18,18),(5215,'2015-03-10 21:49:30','2015-10-11 16:46:32',1,30003307,40,26,98,25,43,52,16,22,17,51,29,39,34,27,37,37,35,24,20,20,25,31,30,26),(5216,'2015-03-10 21:49:30','2015-10-11 16:46:32',1,30002902,88,88,216,170,85,88,138,99,83,575,584,763,449,1011,689,535,358,320,589,340,404,879,322,245),(5217,'2015-03-10 21:49:30','2015-10-11 16:46:32',1,30000080,3,14,12,14,24,31,13,4,12,14,12,16,16,28,53,28,22,34,9,15,20,37,38,16),(5218,'2015-03-10 21:49:30','2015-10-11 16:46:32',1,30004286,26,21,17,20,24,19,26,12,21,64,252,139,55,82,247,182,103,73,82,206,137,54,43,61),(5219,'2015-03-10 21:49:30','2015-10-11 16:46:32',1,30002592,29,8,11,21,8,8,15,12,49,14,9,11,9,47,36,40,26,32,11,27,115,18,21,21),(5220,'2015-03-10 21:49:30','2015-10-11 16:46:32',1,30001701,113,65,80,56,73,63,59,49,75,87,95,100,91,100,85,85,91,75,79,87,97,80,77,85),(5221,'2015-03-10 21:49:30','2015-10-11 16:46:32',1,30003158,30,14,27,17,16,15,14,25,17,0,4,12,13,6,9,3,5,1,2,2,2,12,13,17),(5222,'2015-03-10 21:49:30','2015-10-11 16:46:32',1,30004111,53,24,24,26,23,17,44,24,37,23,32,28,24,57,45,59,45,31,37,37,60,37,39,53),(5223,'2015-03-10 21:49:30','2015-10-11 16:46:32',1,30002762,236,110,151,145,134,147,126,135,109,144,164,217,175,214,257,223,217,216,136,166,199,264,233,197),(5224,'2015-03-10 21:49:30','2015-10-11 16:46:32',1,30001713,5,27,16,17,26,24,11,11,12,18,25,26,26,19,32,33,29,9,4,4,28,40,46,28),(5225,'2015-03-10 21:49:30','2015-10-11 16:46:32',1,30004797,4,12,6,4,4,0,2,0,11,17,15,6,11,12,8,7,7,14,21,10,3,9,8,8),(5226,'2015-03-10 21:49:30','2015-03-10 21:49:30',1,30001525,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(5227,'2015-03-10 21:49:30','2015-10-11 16:46:32',1,30001803,4,0,4,2,0,0,5,1,4,0,1,1,1,3,2,0,4,1,0,5,4,4,8,10),(5228,'2015-03-10 21:49:30','2015-10-11 16:46:32',1,30000621,39,0,0,3,1,0,4,0,2,1,2,0,2,0,0,0,3,0,1,1,3,7,6,4),(5229,'2015-03-10 21:49:30','2015-10-11 16:46:32',1,30001915,3,1,2,7,0,0,3,1,1,2,1,2,3,12,7,5,5,7,5,3,3,0,0,1),(5230,'2015-03-10 21:49:30','2015-10-11 16:46:32',1,30004144,20,4,17,28,32,15,11,7,5,24,31,29,30,25,40,41,44,30,10,17,15,27,30,18),(5231,'2015-03-10 21:49:30','2015-10-11 16:46:32',1,30001710,14,17,23,15,15,21,17,12,31,9,16,19,20,28,39,42,30,23,13,16,35,33,30,25),(5232,'2015-03-10 21:49:30','2015-10-11 16:46:32',1,30003514,112,97,145,129,80,75,100,100,76,129,152,110,103,114,145,142,156,117,71,80,125,119,119,120),(5233,'2015-03-10 21:49:30','2015-10-11 16:46:32',1,30004236,30,24,57,18,69,60,84,16,111,28,32,39,21,28,67,151,59,18,20,34,20,25,31,21),(5234,'2015-03-10 21:49:30','2015-10-11 16:46:32',1,30004154,8,13,11,35,48,27,16,7,6,6,10,4,5,15,6,5,7,22,4,18,14,31,27,19),(5235,'2015-03-10 21:49:30','2015-10-11 16:46:32',1,30004265,2,2,1,8,3,0,3,4,4,2,3,7,4,9,4,4,11,12,3,45,21,2,4,6),(5236,'2015-03-10 21:49:30','2015-10-11 16:46:32',1,30003872,47,66,74,85,77,70,82,39,81,107,118,97,88,136,113,102,110,83,84,84,92,112,117,106),(5237,'2015-03-10 21:49:30','2015-10-11 16:46:32',1,30003997,13,15,9,12,7,4,10,9,5,5,14,21,17,19,8,5,4,1,6,9,7,0,0,8),(5238,'2015-03-10 21:49:30','2015-10-11 16:46:32',1,30004838,192,13,2,3,2,2,2,37,26,5,4,10,4,11,5,11,14,1,5,10,16,12,7,4),(5239,'2015-03-10 21:49:30','2015-10-11 16:46:32',1,30004350,5,1,5,2,4,3,5,4,4,2,2,1,1,3,1,1,3,5,2,4,4,0,1,0),(5240,'2015-03-10 21:49:30','2015-10-11 16:46:32',1,30000530,1,4,3,2,0,1,0,5,3,2,16,1,0,4,8,10,0,0,2,1,7,3,12,3),(5241,'2015-03-10 21:49:30','2015-10-11 16:46:32',1,30001204,28,21,29,15,17,16,21,18,23,207,209,89,101,284,250,233,63,85,80,167,111,213,170,326),(5242,'2015-03-10 21:49:30','2015-10-11 16:46:32',1,30004459,3,2,4,10,2,4,4,3,19,4,1,6,8,7,20,10,22,14,19,8,4,16,6,10),(5243,'2015-03-10 21:49:30','2015-10-11 16:46:32',1,30004051,131,22,118,51,59,37,29,8,20,43,25,11,10,14,15,17,12,27,8,26,10,14,17,21),(5244,'2015-03-10 21:49:30','2015-10-11 16:46:32',1,30000583,76,18,30,27,54,17,31,16,18,18,13,5,7,20,12,11,43,11,22,18,18,52,35,1),(5245,'2015-03-10 21:49:30','2015-10-11 16:46:32',1,30004260,10,13,9,11,16,16,8,9,14,17,14,15,11,14,26,26,29,16,13,10,20,9,13,23),(5246,'2015-03-10 21:49:30','2015-10-11 16:46:32',1,30000036,41,26,45,23,24,22,30,16,14,28,34,28,25,22,30,30,26,28,17,31,22,24,22,17),(5247,'2015-03-10 21:49:30','2015-10-11 16:46:32',1,30001353,2,22,5,4,3,5,12,2,4,12,7,11,15,25,27,20,1,9,13,12,9,13,10,5),(5248,'2015-03-10 21:49:30','2015-10-11 16:46:32',1,30001024,5,1,4,2,2,1,0,0,0,6,3,4,5,3,0,1,16,9,5,13,4,10,11,6),(5249,'2015-03-10 21:49:30','2015-10-11 16:46:32',1,30003690,109,86,255,94,73,79,60,51,58,36,44,38,45,44,47,39,51,32,27,59,50,37,31,57),(5250,'2015-03-10 21:49:30','2015-10-11 16:46:32',1,30001395,161,108,129,163,121,101,106,98,104,130,145,155,160,128,153,145,152,182,85,118,171,197,193,173),(5251,'2015-03-10 21:49:30','2015-10-11 16:46:32',1,30000880,19,9,10,28,10,5,14,3,2,3,4,3,8,3,5,4,6,2,5,3,4,6,5,6),(5252,'2015-03-10 21:49:30','2015-10-11 16:46:32',1,30001118,31,5,43,13,7,9,12,9,18,7,5,20,2,36,4,10,19,7,7,8,8,4,4,8),(5253,'2015-03-10 21:49:30','2015-10-11 16:46:32',1,30000241,26,16,21,35,27,19,45,22,57,13,36,17,20,49,37,34,37,24,29,52,17,70,38,18),(5254,'2015-03-10 21:49:30','2015-10-11 16:46:32',1,30002432,47,25,39,48,18,21,34,55,28,20,26,22,20,10,17,15,27,28,4,10,20,13,21,22),(5255,'2015-03-10 21:49:30','2015-10-11 16:46:32',1,30001427,122,104,122,154,152,122,119,88,113,130,114,108,120,160,181,180,142,116,103,158,145,175,171,115),(5256,'2015-03-10 21:49:30','2015-10-11 16:46:32',1,30005017,71,74,74,86,89,82,88,52,70,95,102,99,76,81,123,92,84,93,49,73,90,109,108,108),(5257,'2015-03-10 21:49:30','2015-10-11 16:46:32',1,30001668,30,42,29,57,34,25,36,18,30,28,30,30,52,34,57,49,41,47,88,32,50,25,32,60),(5258,'2015-03-10 21:49:30','2015-10-11 16:46:32',1,30004131,209,65,111,88,72,61,68,56,58,112,127,130,138,113,164,188,129,126,86,101,123,130,142,133),(5259,'2015-03-10 21:49:30','2015-10-11 16:46:32',1,30003960,4,2,7,5,2,6,0,10,1,13,12,3,6,4,7,6,8,1,10,2,6,1,2,2),(5260,'2015-03-10 21:49:30','2015-10-11 16:46:32',1,30003493,255,553,212,225,221,208,181,157,152,353,339,322,313,347,367,388,359,362,204,243,273,331,358,324),(5261,'2015-03-10 21:49:30','2015-10-11 16:46:32',1,30001271,30,12,20,15,13,21,18,6,8,35,73,43,21,22,48,36,24,12,9,24,11,17,25,9),(5262,'2015-03-10 21:49:30','2015-10-11 16:46:32',1,30000784,100,56,108,61,66,78,94,37,79,42,59,34,32,49,50,56,42,70,14,10,32,24,19,24),(5263,'2015-03-10 21:49:30','2015-10-11 16:46:32',1,30003753,13,6,8,5,12,11,11,14,6,12,11,14,13,10,10,4,8,12,5,4,12,10,13,11),(5264,'2015-03-10 21:49:30','2015-10-11 16:46:32',1,30001758,11,24,15,39,27,18,3,3,5,1,3,1,1,22,11,12,6,5,0,0,3,10,5,10),(5265,'2015-03-10 21:49:30','2015-10-11 16:46:32',1,30003212,31,13,9,28,14,23,10,18,14,12,7,13,11,7,9,17,12,11,4,4,16,22,23,21),(5266,'2015-03-10 21:49:30','2015-10-11 16:46:32',1,30004026,17,28,8,18,22,19,5,5,11,29,22,16,42,60,138,31,17,58,8,17,54,27,40,18),(5267,'2015-03-10 21:49:30','2015-10-11 16:46:32',1,30002794,143,117,150,177,136,143,127,76,99,128,160,170,153,193,198,178,161,164,83,119,134,168,148,153),(5268,'2015-03-10 21:49:30','2015-10-11 16:46:32',1,30003414,99,73,152,114,109,106,97,88,67,137,125,107,125,147,166,165,171,130,72,115,143,127,127,131),(5269,'2015-03-10 21:49:30','2015-10-11 16:46:32',1,30004627,3,0,0,6,1,2,1,5,3,1,2,2,2,0,2,1,2,20,6,1,2,23,27,5),(5270,'2015-03-10 21:49:30','2015-10-11 16:46:32',1,30003178,2,0,5,2,0,0,2,6,2,4,4,8,4,2,2,2,1,1,2,2,1,2,1,6),(5271,'2015-03-10 21:49:30','2015-03-10 21:49:30',1,30000408,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(5272,'2015-03-10 21:49:30','2015-10-11 16:46:32',1,30003545,346,401,452,428,376,374,291,197,234,398,429,368,378,413,483,470,497,352,309,394,416,510,452,421),(5273,'2015-03-10 21:49:30','2015-10-11 16:46:32',1,30005204,167,111,170,163,157,148,133,106,87,172,159,175,137,206,228,255,214,206,155,196,233,240,204,181),(5274,'2015-03-10 21:49:30','2015-10-11 16:46:32',1,30000916,0,1,1,0,1,0,0,5,3,0,0,1,1,1,11,1,1,2,1,1,1,0,4,2),(5275,'2015-03-10 21:49:30','2015-10-11 16:46:32',1,30000007,125,99,147,105,125,122,98,73,58,194,172,161,148,221,224,236,205,167,140,167,172,175,158,181),(5276,'2015-03-10 21:49:30','2015-10-11 16:46:32',1,30004679,10,11,7,14,17,8,16,14,16,14,28,29,3,18,19,21,9,14,5,5,7,19,12,18),(5277,'2015-03-10 21:49:30','2015-10-11 16:46:32',1,30004548,18,17,6,13,13,2,14,13,2,5,2,6,5,8,9,9,7,5,3,3,5,5,5,10),(5278,'2015-03-10 21:49:30','2015-10-11 16:46:32',1,30003588,29,24,41,77,134,120,34,25,38,41,51,49,38,42,70,59,61,43,32,21,55,68,70,53),(5279,'2015-03-10 21:49:30','2015-10-11 16:46:32',1,30004977,70,40,32,38,37,52,16,29,26,41,37,30,32,65,33,35,36,34,44,39,40,75,56,56),(5280,'2015-03-10 21:49:30','2015-10-11 16:46:32',1,30004561,7,2,3,12,5,4,1,6,6,327,219,323,310,714,17,18,24,32,172,57,392,9,10,11),(5281,'2015-03-10 21:49:30','2015-10-11 16:46:32',1,30003591,23,16,38,19,32,30,18,13,13,33,35,34,30,20,33,32,27,19,19,19,32,36,26,18),(5282,'2015-03-10 21:49:30','2015-10-11 16:46:32',1,30003567,41,19,78,35,53,53,21,19,32,54,43,35,32,29,39,34,35,25,28,42,46,53,42,24),(5283,'2015-03-10 21:49:30','2015-10-11 16:46:32',1,30004174,4,2,0,2,0,0,1,6,1,2,2,0,0,1,3,3,0,0,0,0,0,1,3,1),(5284,'2015-03-10 21:49:30','2015-10-11 16:46:32',1,30003990,29,45,14,12,32,28,25,9,17,8,10,10,9,7,2,5,12,7,37,3,5,8,7,8),(5285,'2015-03-10 21:49:30','2015-10-11 16:46:32',1,30003705,181,85,90,87,104,122,74,55,157,339,336,82,65,257,195,177,91,77,247,243,379,84,67,84),(5286,'2015-03-10 21:49:30','2015-10-11 16:46:32',1,30002310,0,0,2,0,1,2,0,0,1,1,1,0,0,0,0,0,0,0,0,0,1,1,1,0),(5287,'2015-03-10 21:49:30','2015-10-11 16:46:32',1,30000231,15,14,9,16,11,6,14,11,7,3,3,1,0,3,1,5,6,7,5,0,5,3,6,5),(5288,'2015-03-10 21:49:30','2015-10-11 16:46:32',1,30004617,129,53,182,160,103,103,140,40,58,46,49,71,62,124,71,66,73,61,72,91,116,140,68,91),(5289,'2015-03-10 21:49:30','2015-10-11 16:46:32',1,30002925,10,21,24,19,10,10,13,5,31,14,24,12,7,8,39,27,13,14,176,104,4,10,6,21),(5290,'2015-03-10 21:49:30','2015-10-11 16:46:32',1,30004719,29,53,34,39,26,28,79,20,25,54,30,51,29,58,60,163,47,54,26,46,52,90,87,17),(5291,'2015-03-10 21:49:30','2015-10-11 16:46:32',1,30004554,27,22,25,16,20,24,16,7,23,56,79,27,27,52,21,12,25,15,19,7,39,21,23,11),(5292,'2015-03-10 21:49:30','2015-10-11 16:46:32',1,30000506,0,0,0,1,0,0,0,2,0,1,1,1,1,0,2,1,0,1,1,0,0,1,3,4),(5293,'2015-03-10 21:49:30','2015-10-11 16:46:32',1,30004542,11,8,5,7,7,5,15,7,4,6,4,8,8,4,9,4,7,9,3,1,7,2,3,12),(5294,'2015-03-10 21:49:30','2015-10-11 16:46:32',1,30001956,17,10,15,2,4,3,13,4,14,8,5,8,5,1,13,7,10,15,17,8,10,12,8,20),(5295,'2015-03-10 21:49:30','2015-10-11 16:46:32',1,30004921,27,11,20,11,22,21,27,13,24,14,18,15,20,30,35,32,11,17,12,84,8,20,19,26),(5296,'2015-03-10 21:49:30','2015-10-11 16:46:32',1,30000266,7,19,36,10,12,11,10,5,10,22,124,132,24,18,79,75,12,11,14,9,143,16,15,5),(5297,'2015-03-10 21:49:30','2015-10-11 16:46:32',1,30000597,0,1,0,3,4,2,1,0,0,5,2,1,1,1,5,1,3,1,3,4,7,2,1,1),(5298,'2015-03-10 21:49:30','2015-03-10 21:49:30',1,30001486,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(5299,'2015-03-10 21:49:30','2015-10-11 16:46:32',1,30001074,1,6,17,6,10,13,11,11,5,10,7,16,11,8,6,8,5,3,5,8,8,8,6,5),(5300,'2015-03-10 21:49:30','2015-10-11 16:46:32',1,30002292,6,5,7,2,9,4,8,3,3,18,20,14,11,2,31,20,4,5,0,0,4,46,40,9),(5301,'2015-03-10 21:49:30','2015-10-11 16:46:32',1,30001097,3,4,1,1,1,0,0,0,4,1,1,1,1,0,1,2,1,2,1,1,0,0,1,0),(5302,'2015-03-10 21:49:30','2015-10-11 16:46:32',1,30005132,7,4,9,4,14,8,8,1,2,19,13,6,8,10,15,17,5,14,4,9,24,19,28,17),(5303,'2015-03-10 21:49:30','2015-10-11 16:46:32',1,30002368,4,1,1,0,2,2,3,4,5,0,0,1,1,1,25,19,6,0,2,14,1,20,17,17),(5304,'2015-03-10 21:49:30','2015-03-10 21:49:30',1,30001454,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(5305,'2015-03-10 21:49:30','2015-10-11 16:46:32',1,30001263,24,5,23,7,9,7,5,4,4,129,37,103,27,133,36,233,45,13,13,18,81,29,128,32),(5306,'2015-03-10 21:49:30','2015-10-11 16:46:32',1,30002141,47,19,44,26,15,24,43,14,5,21,43,19,10,8,37,32,8,26,7,17,22,10,9,14),(5307,'2015-03-10 21:49:30','2015-03-10 21:49:30',1,30000387,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(5308,'2015-03-10 21:49:30','2015-10-11 16:46:32',1,30004341,53,68,106,77,121,105,51,75,98,24,46,43,39,24,37,34,35,20,13,33,31,24,27,40),(5309,'2015-03-10 21:49:30','2015-03-10 21:49:30',1,30001613,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(5310,'2015-03-10 21:49:30','2015-10-11 16:46:32',1,30003646,7,2,8,15,6,11,2,8,10,4,4,6,9,9,6,4,5,9,4,2,0,4,4,2),(5311,'2015-03-10 21:49:30','2015-10-11 16:46:32',1,30004965,17,38,28,28,22,18,40,42,31,40,41,32,34,27,17,54,23,17,11,11,26,19,20,29),(5312,'2015-03-10 21:49:30','2015-10-11 16:46:32',1,30003154,17,10,15,19,14,9,19,20,21,9,14,11,10,23,13,11,15,7,5,4,5,5,6,9),(5313,'2015-03-10 21:49:30','2015-10-11 16:46:32',1,30002617,0,0,1,3,1,0,0,0,1,0,1,3,1,0,0,0,2,0,0,1,0,1,1,4),(5314,'2015-03-10 21:49:30','2015-10-11 16:46:32',1,30004425,66,11,5,19,23,20,8,8,12,1,2,7,3,23,16,19,15,21,22,30,14,19,7,11),(5315,'2015-03-10 21:49:30','2015-10-11 16:46:32',1,30003357,4,1,2,1,3,2,1,0,2,2,1,1,0,3,2,2,3,0,2,2,2,1,1,0),(5316,'2015-03-10 21:49:30','2015-10-11 16:46:32',1,30001919,4,2,18,5,7,8,5,2,3,5,4,11,8,21,13,7,11,22,16,16,30,17,4,12),(5317,'2015-03-10 21:49:30','2015-10-11 16:46:32',1,30003783,41,34,28,23,26,27,26,32,13,68,56,50,24,42,90,75,39,31,16,24,21,43,70,48),(5318,'2015-03-10 21:49:30','2015-10-11 16:46:32',1,30003652,1,8,4,4,7,8,2,4,1,0,0,0,3,1,1,0,2,3,0,2,2,1,2,0),(5319,'2015-03-10 21:49:30','2015-10-11 16:46:32',1,30003991,36,55,21,16,28,32,41,11,23,10,14,8,9,12,8,12,13,11,27,3,13,17,13,9),(5320,'2015-03-10 21:49:30','2015-10-11 16:46:32',1,30001929,0,0,4,3,12,4,3,2,2,8,8,2,2,5,4,1,0,6,0,4,1,2,1,3),(5321,'2015-03-10 21:49:30','2015-10-11 16:46:32',1,30003989,8,8,43,51,15,10,16,20,12,7,27,14,12,1,5,2,8,5,7,5,3,0,0,4),(5322,'2015-03-10 21:49:30','2015-10-11 16:46:32',1,30004063,11,9,16,3,14,14,7,5,12,26,32,41,18,32,22,9,7,6,4,7,18,8,11,6),(5323,'2015-03-10 21:49:30','2015-10-11 16:46:32',1,30003124,7,4,2,5,1,3,5,1,3,12,9,13,12,6,11,9,2,14,31,3,8,1,2,1),(5324,'2015-03-10 21:49:30','2015-10-11 16:46:32',1,30004666,0,4,1,0,3,2,0,0,0,5,5,2,2,7,0,0,0,0,4,1,3,0,2,3),(5325,'2015-03-10 21:49:30','2015-03-10 21:49:30',1,30000414,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(5326,'2015-03-10 21:49:30','2015-10-11 16:46:32',1,30001304,13,16,25,13,15,18,10,8,9,28,32,13,10,16,58,39,5,6,13,25,24,26,24,16),(5327,'2015-03-10 21:49:30','2015-10-11 16:46:32',1,30002337,3,1,3,2,4,3,2,1,1,0,0,3,3,0,29,14,1,0,0,0,0,21,19,0),(5328,'2015-03-10 21:49:30','2015-10-11 16:46:32',1,30001091,9,8,2,2,3,7,7,5,0,8,2,3,2,7,5,11,10,3,1,21,2,7,5,1),(5329,'2015-03-10 21:49:30','2015-10-11 16:46:32',1,30000739,8,3,11,5,8,9,5,10,14,2,3,6,3,4,3,1,7,4,1,0,4,2,0,2),(5330,'2015-03-10 21:49:30','2015-10-11 16:46:32',1,30001582,2,2,2,0,1,1,0,0,0,4,6,5,4,7,5,10,11,2,5,1,16,4,5,5),(5331,'2015-03-10 21:49:30','2015-10-11 16:46:32',1,30001861,22,17,23,10,6,9,19,20,12,148,150,53,46,69,79,68,62,27,16,19,54,218,25,40),(5332,'2015-03-10 21:49:30','2015-10-11 16:46:32',1,30004607,35,22,30,29,41,51,33,5,15,16,13,9,6,10,14,15,23,7,24,50,42,36,31,12),(5333,'2015-03-10 21:49:30','2015-10-11 16:46:32',1,30001345,9,5,25,8,7,6,7,3,4,5,7,3,0,3,7,2,2,4,7,9,23,4,4,5),(5334,'2015-03-10 21:49:30','2015-10-11 16:46:32',1,30004707,16,23,11,13,21,20,23,27,72,45,53,26,19,49,41,29,37,29,26,27,29,18,22,31),(5335,'2015-03-10 21:49:30','2015-10-11 16:46:32',1,30002137,0,0,2,1,0,2,2,3,0,2,3,1,0,0,1,1,3,0,0,1,0,0,0,1),(5336,'2015-03-10 21:49:30','2015-10-11 16:46:32',1,30002117,46,14,31,17,12,9,10,5,6,43,61,16,14,17,22,19,21,14,11,39,26,35,35,12),(5337,'2015-03-10 21:49:30','2015-10-11 16:46:32',1,30004584,29,23,24,17,23,31,18,8,28,56,75,28,29,54,21,12,29,15,18,7,34,23,27,11),(5338,'2015-03-10 21:49:30','2015-10-11 16:46:32',1,30000304,10,11,17,40,14,16,30,15,4,11,12,18,18,34,53,36,57,41,14,15,36,15,19,45),(5339,'2015-03-10 21:49:30','2015-03-10 21:49:30',1,30001455,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(5340,'2015-03-10 21:49:30','2015-10-11 16:46:32',1,30004741,3,5,12,0,6,3,5,2,4,0,0,2,1,1,6,10,5,8,1,7,11,9,8,7),(5341,'2015-03-10 21:49:30','2015-10-11 16:46:32',1,30003927,19,16,20,11,3,14,23,30,28,15,28,15,16,30,27,18,21,12,13,19,38,26,30,17),(5342,'2015-03-10 21:49:30','2015-10-11 16:46:32',1,30000006,53,37,69,46,45,51,22,24,22,64,63,36,57,105,88,108,87,72,44,73,56,66,64,75),(5343,'2015-03-10 21:49:30','2015-10-11 16:46:32',1,30003497,49,25,28,35,26,29,10,29,24,26,29,32,37,33,49,43,33,32,57,47,46,40,48,36),(5344,'2015-03-10 21:49:30','2015-10-11 16:46:32',1,30003543,4,10,2,5,4,3,3,3,2,4,3,4,2,2,4,4,1,6,1,3,1,6,1,0),(5345,'2015-03-10 21:49:30','2015-10-11 16:46:32',1,30005211,13,6,7,9,8,11,9,14,4,7,10,7,9,20,7,12,13,18,10,16,8,20,16,22),(5346,'2015-03-10 21:49:30','2015-10-11 16:46:32',1,30005079,14,9,13,5,6,9,24,5,9,4,5,4,7,11,29,53,28,21,11,18,13,18,19,20),(5347,'2015-03-10 21:49:30','2015-10-11 16:46:32',1,30002280,50,30,64,44,55,66,34,28,38,33,39,51,31,43,63,50,62,41,21,42,44,51,60,68),(5348,'2015-03-10 21:49:30','2015-10-11 16:46:32',1,30003996,16,16,10,19,11,13,12,7,7,13,20,28,24,24,18,14,6,4,4,14,7,2,3,22),(5349,'2015-03-10 21:49:30','2015-10-11 16:46:32',1,30004290,6,9,7,10,11,5,18,0,5,17,17,10,11,24,22,17,10,16,13,12,13,10,7,7),(5350,'2015-03-10 21:49:30','2015-10-11 16:46:32',1,30004232,43,33,48,25,49,49,41,11,30,35,30,40,37,54,60,72,56,35,44,50,44,40,49,46),(5351,'2015-03-10 21:49:30','2015-10-11 16:46:32',1,30004285,26,25,17,23,22,22,37,14,19,67,259,106,77,80,247,191,119,100,81,209,130,70,52,67),(5352,'2015-03-10 21:49:30','2015-10-11 16:46:32',1,30002121,3,0,0,1,1,1,7,0,3,1,0,7,5,1,3,1,8,2,0,0,0,0,1,0),(5353,'2015-03-10 21:49:30','2015-10-11 16:46:32',1,30004701,12,17,13,12,17,15,7,16,13,15,27,10,12,19,7,6,12,7,2,2,0,3,8,6),(5354,'2015-03-10 21:49:30','2015-10-11 16:46:32',1,30004817,28,30,9,12,12,7,4,41,43,4,3,5,4,11,6,15,9,2,5,17,7,5,4,2),(5355,'2015-03-10 21:49:30','2015-10-11 16:46:32',1,30001354,1,9,2,3,1,2,4,1,1,4,2,2,3,16,8,8,0,2,7,3,3,10,3,2),(5356,'2015-03-10 21:49:30','2015-10-11 16:46:32',1,30000719,7,5,8,9,13,14,13,1,4,14,17,9,13,6,8,5,18,20,7,8,34,4,3,4),(5357,'2015-03-10 21:49:30','2015-10-11 16:46:32',1,30004704,4,16,6,13,2,4,11,22,7,7,22,4,6,7,10,8,6,20,4,9,3,20,23,15),(5358,'2015-03-10 21:49:30','2015-10-11 16:46:32',1,30001734,160,102,201,169,143,131,100,92,112,173,186,208,179,292,257,272,233,205,137,178,282,191,202,221),(5359,'2015-03-10 21:49:30','2015-10-11 16:46:32',1,30000055,10,10,15,5,5,11,12,7,9,21,19,26,21,12,22,24,20,10,13,9,14,9,8,9),(5360,'2015-03-10 21:49:30','2015-10-11 16:46:32',1,30003928,12,64,23,16,8,17,22,20,20,16,36,19,31,34,18,16,23,12,13,22,38,23,25,9),(5361,'2015-03-10 21:49:30','2015-10-11 16:46:32',1,30000064,26,5,24,12,22,28,28,8,9,16,15,18,21,29,26,29,19,19,22,20,13,43,36,11),(5362,'2015-03-10 21:49:30','2015-10-11 16:46:32',1,30001765,24,17,21,34,24,26,7,11,24,7,12,22,11,19,7,7,15,9,2,2,10,1,5,12),(5363,'2015-03-10 21:49:30','2015-10-11 16:46:32',1,30000688,39,22,9,6,17,15,17,32,31,14,11,30,37,19,9,25,20,18,5,6,17,17,4,29),(5364,'2015-03-10 21:49:30','2015-10-11 16:46:32',1,30001866,10,8,5,3,3,3,4,2,4,7,6,4,5,2,1,2,8,3,1,2,5,3,6,3),(5365,'2015-03-10 21:49:30','2015-10-11 16:46:32',1,30000551,0,2,1,0,0,0,7,0,2,2,1,2,8,0,1,0,0,3,0,0,2,0,4,8),(5366,'2015-03-10 21:49:30','2015-10-11 16:46:32',1,30001922,10,7,2,13,12,10,8,1,5,6,10,6,7,15,8,7,7,8,7,8,4,2,2,3),(5367,'2015-03-10 21:49:30','2015-10-11 16:46:32',1,30003618,24,22,13,12,17,17,29,11,13,5,9,5,6,12,4,5,17,10,3,14,5,10,4,9),(5368,'2015-03-10 21:49:30','2015-10-11 16:46:32',1,30003550,5,1,1,3,3,2,5,9,2,0,0,3,3,4,1,2,4,1,0,1,3,1,3,5),(5369,'2015-03-10 21:49:30','2015-10-11 16:46:32',1,30005208,22,18,22,10,10,15,15,17,16,19,23,32,32,20,21,23,25,22,39,16,26,26,26,20),(5370,'2015-03-10 21:49:30','2015-10-11 16:46:32',1,30004489,36,22,34,4,7,7,43,25,30,10,7,11,19,9,22,24,30,25,37,10,26,30,33,40),(5371,'2015-03-10 21:49:30','2015-10-11 16:46:32',1,30004107,15,6,26,9,15,11,14,5,8,25,23,22,21,7,20,14,10,13,40,31,25,21,27,8),(5372,'2015-03-10 21:49:30','2015-10-11 16:46:32',1,30004127,70,59,69,69,69,65,37,52,69,43,63,75,59,70,76,64,40,54,37,49,67,61,65,68),(5373,'2015-03-10 21:49:30','2015-10-11 16:46:32',1,30005055,54,36,81,70,65,59,42,55,87,104,114,65,73,92,81,79,68,88,73,79,99,77,64,54),(5374,'2015-03-10 21:49:30','2015-10-11 16:46:32',1,30004140,4,9,64,7,31,33,16,5,10,28,26,34,26,35,19,27,20,17,7,6,24,27,17,31),(5375,'2015-03-10 21:49:30','2015-10-11 16:46:32',1,30002203,21,35,24,26,16,17,57,24,45,39,39,33,31,59,51,66,45,43,15,26,34,60,55,45),(5376,'2015-03-10 21:49:30','2015-10-11 16:46:32',1,30003562,4,11,3,22,16,12,10,8,8,2,5,6,11,17,7,12,12,23,9,13,11,13,12,11),(5377,'2015-03-10 21:49:30','2015-10-11 16:46:32',1,30003939,1,5,2,1,4,5,4,1,4,2,5,1,1,4,6,9,5,0,4,7,5,1,1,2),(5378,'2015-03-10 21:49:30','2015-10-11 16:46:32',1,30001732,16,13,15,14,15,17,7,8,16,10,13,18,12,9,12,12,12,13,14,11,23,11,9,16),(5379,'2015-03-10 21:49:30','2015-10-11 16:46:32',1,30004363,4,3,11,25,5,10,57,13,7,8,19,3,2,7,7,9,13,7,1,3,2,3,2,7),(5380,'2015-03-10 21:49:30','2015-10-11 16:46:32',1,30001810,12,18,15,8,22,26,7,7,14,15,25,10,8,4,8,17,8,3,1,2,5,4,5,7),(5381,'2015-03-10 21:49:30','2015-10-11 16:46:32',1,30000937,8,4,8,10,4,7,4,1,2,2,6,6,11,5,8,4,7,5,2,7,5,10,9,2),(5382,'2015-03-10 21:49:30','2015-10-11 16:46:32',1,30003619,62,24,24,20,40,43,82,18,16,11,14,11,9,22,10,12,24,16,6,16,9,14,5,11),(5383,'2015-03-10 21:49:30','2015-10-11 16:46:32',1,30002130,12,11,6,5,3,11,4,6,5,28,70,20,10,21,40,11,3,8,11,6,8,27,22,13),(5384,'2015-03-10 21:49:30','2015-10-11 16:46:32',1,30001996,15,5,1,4,3,2,2,5,5,1,1,3,1,1,1,1,2,0,2,1,2,1,6,2),(5385,'2015-03-10 21:49:30','2015-10-11 16:46:32',1,30004888,12,5,0,2,9,13,7,1,3,10,9,7,3,5,13,15,1,4,66,16,15,10,7,5),(5386,'2015-03-10 21:49:30','2015-10-11 16:46:32',1,30004498,0,1,1,2,0,0,0,2,2,1,1,3,5,1,1,2,2,2,2,0,4,0,2,1),(5387,'2015-03-10 21:49:30','2015-10-11 16:46:32',1,30003658,40,20,28,16,43,38,96,19,23,9,14,11,12,18,13,12,13,12,10,14,8,19,10,5),(5388,'2015-03-10 21:49:30','2015-03-10 21:49:30',1,30000407,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(5389,'2015-03-10 21:49:30','2015-10-11 16:46:32',1,30002018,23,15,64,111,96,55,62,9,15,15,23,7,3,10,11,6,15,11,9,9,7,9,7,11),(5390,'2015-03-10 21:49:30','2015-10-11 16:46:32',1,30000449,2,0,1,9,1,1,9,2,0,26,10,8,11,5,14,4,16,12,7,9,5,15,14,21),(5391,'2015-03-10 21:49:30','2015-10-11 16:46:32',1,30000296,3,15,24,7,22,20,14,3,12,15,19,21,21,7,13,11,25,17,19,6,7,16,18,20),(5392,'2015-03-10 21:49:30','2015-10-11 16:46:32',1,30000935,2,0,7,4,1,4,4,12,2,6,9,6,7,6,3,4,3,5,2,2,5,2,8,9),(5393,'2015-03-10 21:49:30','2015-10-11 16:46:32',1,30004820,24,77,16,48,13,9,13,15,10,3,8,9,16,8,8,12,6,7,3,20,5,7,12,4),(5394,'2015-03-10 21:49:30','2015-10-11 16:46:32',1,30003289,35,28,21,10,18,19,14,9,5,12,15,15,16,19,17,16,16,29,20,10,12,18,29,19),(5395,'2015-03-10 21:49:30','2015-10-11 16:46:32',1,30000699,1,3,35,1,9,13,3,1,3,2,3,21,17,14,8,8,8,10,1,0,2,8,1,4),(5396,'2015-03-10 21:49:30','2015-10-11 16:46:32',1,30000802,26,10,19,16,7,17,12,10,14,4,3,1,1,6,3,4,7,11,2,1,2,10,12,2),(5397,'2015-03-10 21:49:30','2015-10-11 16:46:32',1,30004882,44,12,20,14,25,27,43,15,14,5,8,22,18,33,17,40,27,24,8,95,22,29,28,27),(5398,'2015-03-10 21:49:30','2015-10-11 16:46:32',1,30001133,0,0,1,0,0,0,0,2,0,0,1,1,0,0,0,0,1,0,2,2,1,0,2,1),(5399,'2015-03-10 21:49:30','2015-10-11 16:46:32',1,30005221,91,139,98,78,91,89,61,56,67,122,127,102,83,108,120,106,74,76,64,115,138,131,134,96),(5400,'2015-03-10 21:49:30','2015-10-11 16:46:32',1,30001131,0,0,1,0,2,2,0,1,1,0,0,1,1,0,0,0,0,2,1,1,0,1,0,1),(5401,'2015-03-10 21:49:30','2015-10-11 16:46:32',1,30005067,3,2,6,13,9,8,1,4,11,15,8,1,5,1,6,6,5,10,4,3,7,3,6,2),(5402,'2015-03-10 21:49:30','2015-10-11 16:46:32',1,30004081,185,157,191,161,188,187,154,107,135,203,220,184,176,223,364,254,170,133,145,181,208,253,245,159),(5403,'2015-03-10 21:49:30','2015-10-11 16:46:32',1,30004160,16,6,24,18,14,14,10,6,3,24,28,20,30,22,16,16,19,15,48,25,10,10,13,11),(5404,'2015-03-10 21:49:30','2015-10-11 16:46:32',1,30002923,22,25,90,37,14,20,11,24,39,39,46,28,41,54,51,44,32,6,15,30,25,30,30,21),(5405,'2015-03-10 21:49:30','2015-10-11 16:46:32',1,30001226,122,62,93,56,71,57,30,29,37,190,143,61,73,165,160,129,67,60,49,184,134,95,69,60),(5406,'2015-03-10 21:49:30','2015-10-11 16:46:32',1,30004496,6,12,3,3,1,3,1,6,8,9,13,12,7,23,31,52,61,13,3,17,13,35,9,69),(5407,'2015-03-10 21:49:30','2015-10-11 16:46:32',1,30004469,16,18,14,15,21,20,25,32,6,37,43,52,38,45,47,43,42,43,27,25,48,86,56,38),(5408,'2015-03-10 21:49:30','2015-10-11 16:46:32',1,30002352,33,13,11,12,12,21,18,6,9,8,9,6,6,40,15,15,19,8,8,8,31,16,15,26),(5409,'2015-03-10 21:49:30','2015-03-10 21:49:30',1,30000328,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(5410,'2015-03-10 21:49:30','2015-10-11 16:46:32',1,30001072,0,1,1,1,0,0,0,0,0,0,0,2,2,0,1,6,4,0,2,2,1,1,0,0),(5411,'2015-03-10 21:49:30','2015-10-11 16:46:32',1,30003747,29,53,51,30,28,27,11,12,16,35,48,114,77,46,104,85,58,55,37,37,85,33,42,78),(5412,'2015-03-10 21:49:30','2015-10-11 16:46:32',1,30004660,2,0,0,0,2,3,1,0,1,7,16,11,6,13,8,3,18,8,6,4,6,3,9,8),(5413,'2015-03-10 21:49:30','2015-10-11 16:46:32',1,30004955,8,15,16,17,8,4,2,6,79,23,24,12,35,33,126,7,10,8,6,9,27,30,17,17),(5414,'2015-03-10 21:49:30','2015-10-11 16:46:32',1,30004658,2,4,4,1,11,10,13,0,1,16,21,12,8,41,16,6,11,17,23,18,24,15,15,6),(5415,'2015-03-10 21:49:30','2015-10-11 16:46:32',1,30003369,15,9,32,13,4,2,7,7,9,17,12,2,6,15,15,11,4,0,10,0,4,4,4,11),(5416,'2015-03-10 21:49:30','2015-03-10 21:49:30',1,30001621,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(5417,'2015-03-10 21:49:30','2015-10-11 16:46:32',1,30003272,20,22,268,47,27,24,29,20,20,49,40,12,28,48,54,47,19,32,48,26,43,40,64,53),(5418,'2015-03-10 21:49:30','2015-10-11 16:46:32',1,30001590,6,10,7,8,14,17,10,33,6,12,78,9,4,8,9,7,4,2,2,1,6,3,5,3),(5419,'2015-03-10 21:49:30','2015-10-11 16:46:32',1,30004687,6,13,5,3,10,5,9,8,5,8,14,6,1,9,9,8,4,4,3,3,3,11,11,15),(5420,'2015-03-10 21:49:30','2015-10-11 16:46:32',1,30003620,44,7,14,12,26,27,63,12,10,8,11,8,6,10,9,12,17,10,5,5,9,9,9,8),(5421,'2015-03-10 21:49:30','2015-10-11 16:46:32',1,30004777,5,5,3,2,3,4,6,13,2,203,567,255,418,445,520,570,335,142,130,164,205,20,11,10),(5422,'2015-03-10 21:49:30','2015-10-11 16:46:32',1,30004540,10,6,6,8,6,3,14,6,7,13,6,10,9,4,8,5,4,15,2,6,4,3,2,15),(5423,'2015-03-10 21:49:30','2015-10-11 16:46:32',1,30004528,12,17,9,10,9,8,10,4,14,10,2,15,16,6,6,6,2,10,6,3,2,6,6,15),(5424,'2015-03-10 21:49:30','2015-10-11 16:46:32',1,30001168,129,64,34,57,38,37,51,23,21,120,166,83,58,107,78,46,50,42,30,100,100,43,34,47),(5425,'2015-03-10 21:49:30','2015-10-11 16:46:32',1,30004031,20,25,0,7,7,10,5,8,6,7,21,17,22,12,14,18,23,36,4,6,10,8,13,6),(5426,'2015-03-10 21:49:30','2015-10-11 16:46:32',1,30004437,1,0,3,2,1,0,1,0,22,5,7,2,2,4,5,5,4,9,2,5,7,3,3,15),(5427,'2015-03-10 21:49:30','2015-10-11 16:46:32',1,30001004,0,4,1,0,1,5,1,0,4,2,0,2,0,22,25,16,6,2,0,1,2,5,6,3),(5428,'2015-03-10 21:49:30','2015-10-11 16:46:32',1,30002360,56,22,55,58,50,31,45,34,52,20,26,17,17,79,66,62,20,29,12,17,22,38,34,15),(5429,'2015-03-10 21:49:30','2015-03-10 21:49:30',1,30000356,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(5430,'2015-03-10 21:49:30','2015-10-11 16:46:32',1,30001807,16,17,14,7,23,32,8,9,13,14,24,11,8,4,8,16,5,7,1,2,6,3,5,7),(5431,'2015-03-10 21:49:30','2015-10-11 16:46:32',1,30002914,5,13,22,6,6,12,9,2,7,15,23,16,6,2,11,10,11,6,6,8,1,13,13,2),(8078,'2015-08-19 19:10:02','2015-08-19 19:10:02',1,31000001,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(8081,'2015-08-19 19:10:02','2015-08-19 19:10:02',1,31000002,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(8082,'2015-08-19 19:10:02','2015-08-19 19:10:02',1,31000003,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(8083,'2015-08-19 19:10:02','2015-08-19 19:10:02',1,31000006,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(8087,'2015-08-19 19:10:02','2015-08-19 19:10:02',1,31000004,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0); /*!40000 ALTER TABLE `system_jumps` ENABLE KEYS */; UNLOCK TABLES; @@ -661,7 +659,7 @@ CREATE TABLE `system_kills_factions` ( LOCK TABLES `system_kills_factions` WRITE; /*!40000 ALTER TABLE `system_kills_factions` DISABLE KEYS */; -INSERT INTO `system_kills_factions` VALUES (1,'2015-03-14 14:56:58','2015-08-29 14:46:08',1,30000995,0,0,0,0,0,0,0,8,0,8,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(2,'2015-03-14 14:56:58','2015-03-14 14:56:58',1,30001779,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(3,'2015-03-14 14:56:58','2015-08-29 14:46:08',1,30000838,312,201,639,108,22,350,64,127,54,151,300,313,219,101,48,61,155,198,0,150,190,32,234,0),(4,'2015-03-14 14:56:58','2015-08-29 14:46:08',1,30001904,0,0,0,0,0,0,1,0,0,1,1,10,0,0,0,0,0,26,15,6,0,0,0,0),(5,'2015-03-14 14:56:58','2015-08-29 14:46:08',1,30004510,0,0,0,0,0,0,0,2,0,0,1,66,161,76,0,0,0,0,0,0,0,0,0,0),(6,'2015-03-14 14:56:58','2015-08-29 14:46:08',1,30003693,174,31,215,438,415,349,266,283,188,254,284,407,198,284,109,58,239,403,280,274,609,129,146,0),(7,'2015-03-14 14:56:58','2015-08-29 14:46:08',1,30001287,3,0,0,0,0,85,0,0,0,3,0,0,5,0,0,0,0,0,43,8,0,0,0,0),(8,'2015-03-14 14:56:58','2015-08-29 14:46:08',1,30000480,0,0,0,0,0,0,0,81,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(9,'2015-03-14 14:56:58','2015-08-29 14:46:08',1,30002454,33,0,38,42,23,240,247,501,378,223,89,186,48,129,89,62,410,0,0,162,201,234,231,0),(10,'2015-03-14 14:56:58','2015-08-29 14:46:08',1,30004756,0,0,0,0,0,0,84,0,240,750,275,17,248,193,104,172,89,5,142,412,48,695,441,0),(11,'2015-03-14 14:56:58','2015-08-29 14:46:08',1,30004674,0,0,0,0,0,0,0,0,0,0,0,0,2,34,51,30,0,0,0,0,0,0,0,0),(12,'2015-03-14 14:56:58','2015-08-29 14:46:08',1,30001150,3,0,0,0,0,13,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(13,'2015-03-14 14:56:58','2015-08-29 14:46:08',1,30004930,0,0,0,27,46,0,0,0,0,0,0,0,0,0,0,0,115,0,49,0,0,0,0,0),(14,'2015-03-14 14:56:58','2015-08-29 14:46:08',1,30001322,0,97,0,0,0,0,0,0,8,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(15,'2015-03-14 14:56:58','2015-08-29 14:46:08',1,30003114,289,223,231,265,168,21,183,246,0,16,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(16,'2015-03-14 14:56:58','2015-03-14 14:56:58',1,30003198,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(17,'2015-03-14 14:56:58','2015-08-29 14:46:08',1,30000222,0,0,122,105,132,0,0,63,11,68,53,29,4,8,16,23,41,0,30,30,15,66,0,0),(18,'2015-03-14 14:56:58','2015-08-29 14:46:08',1,30001065,44,0,0,0,0,0,0,0,0,0,0,0,17,0,0,0,4,0,0,0,0,0,0,0),(19,'2015-03-14 14:56:58','2015-08-29 14:46:08',1,30005191,0,0,0,0,0,0,0,4,0,0,0,1,0,0,0,0,0,3,0,0,0,3,0,0),(20,'2015-03-14 14:56:58','2015-08-29 14:46:08',1,30003615,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,0,0,0,0,80,0),(21,'2015-03-14 14:56:58','2015-08-29 14:46:08',1,30000799,0,0,0,0,0,137,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(22,'2015-03-14 14:56:58','2015-08-29 14:46:08',1,30000440,0,0,0,0,0,0,0,0,0,0,46,33,0,0,0,0,0,0,0,0,3,0,0,0),(23,'2015-03-14 14:56:58','2015-08-29 14:46:08',1,30003947,0,0,0,60,60,160,0,0,22,44,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(24,'2015-03-14 14:56:58','2015-08-29 14:46:08',1,30004509,2,0,0,0,0,0,0,126,0,0,0,0,0,0,0,0,0,0,0,0,0,17,0,0),(25,'2015-03-14 14:56:58','2015-08-29 14:46:08',1,30001295,0,0,0,0,0,0,1,0,0,0,0,0,0,39,0,0,0,0,0,0,0,0,0,0),(26,'2015-03-14 14:56:58','2015-08-29 14:46:08',1,30000857,87,0,4,0,0,0,87,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(27,'2015-03-14 14:56:58','2015-03-14 14:56:58',1,30004656,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(28,'2015-03-14 14:56:58','2015-08-29 14:46:08',1,30004596,0,0,0,0,0,0,0,15,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(29,'2015-03-14 14:56:58','2015-08-29 14:46:08',1,30004068,58,0,66,30,30,0,0,13,95,36,0,0,0,0,0,0,168,0,0,0,0,0,0,0),(30,'2015-03-14 14:56:58','2015-08-29 14:46:08',1,30005186,0,0,0,0,0,6,0,0,0,0,0,0,0,0,0,0,63,0,0,0,0,0,0,0),(31,'2015-03-14 14:56:58','2015-08-29 14:46:08',1,30002609,158,298,132,134,68,247,60,6,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(32,'2015-03-14 14:56:58','2015-08-29 14:46:08',1,30003149,9,0,0,0,0,43,0,0,7,0,0,0,0,0,0,0,0,0,0,0,0,101,21,0),(33,'2015-03-14 14:56:58','2015-08-29 14:46:08',1,30000707,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,48,0,0,0,0,0,0,0),(34,'2015-03-14 14:56:58','2015-03-14 14:56:58',1,30000822,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(35,'2015-03-14 14:56:58','2015-08-29 14:46:08',1,30002460,120,193,146,97,211,527,355,314,493,326,269,264,5,349,331,131,338,0,83,214,175,306,276,0),(36,'2015-03-14 14:56:58','2015-03-14 14:56:58',1,30000623,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(37,'2015-03-14 14:56:58','2015-08-29 14:46:08',1,30000216,321,418,129,31,124,79,0,0,45,38,41,185,312,208,44,82,58,359,64,0,414,435,155,0),(38,'2015-03-14 14:56:58','2015-08-29 14:46:08',1,30001120,897,0,724,559,559,1,1034,1617,74,128,237,341,0,325,283,132,514,67,0,0,106,182,203,0),(39,'2015-03-14 14:56:58','2015-08-29 14:46:08',1,30000596,0,0,16,0,0,59,0,0,0,0,0,0,17,0,0,0,0,0,0,0,0,0,0,0),(40,'2015-03-14 14:56:58','2015-08-29 14:46:08',1,30002168,0,0,0,0,2,0,11,694,28,23,30,23,92,125,196,94,28,14,42,41,9,26,178,0),(41,'2015-03-14 14:56:58','2015-08-29 14:46:08',1,30004954,0,0,100,16,54,144,1581,321,0,0,0,0,0,23,0,452,960,0,0,0,407,262,16,0),(42,'2015-03-14 14:56:58','2015-08-29 14:46:08',1,30003743,40,14,50,195,187,12,117,43,112,137,147,132,56,46,81,131,125,438,242,79,90,210,225,0),(43,'2015-03-14 14:56:58','2015-03-14 14:56:58',1,30000351,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(44,'2015-03-14 14:56:58','2015-08-29 14:46:08',1,30004947,200,51,0,204,71,31,87,0,0,0,0,8,53,0,0,0,0,50,0,0,0,16,271,0),(45,'2015-03-14 14:56:58','2015-08-29 14:46:08',1,30003782,10,6,48,0,0,0,0,92,0,0,0,0,0,0,0,0,0,0,0,0,0,51,32,0),(46,'2015-03-14 14:56:58','2015-08-29 14:46:08',1,30004214,0,466,214,638,202,328,205,628,483,361,315,580,423,0,53,53,551,8,27,447,202,229,161,0),(47,'2015-03-14 14:56:58','2015-08-29 14:46:08',1,30004549,22,0,0,136,104,0,0,0,0,0,0,0,6,0,0,0,14,0,0,0,4,0,67,0),(48,'2015-03-14 14:56:58','2015-08-29 14:46:08',1,30004917,726,0,39,240,185,160,527,190,50,325,646,109,289,210,286,630,307,0,92,78,152,257,164,0),(49,'2015-03-14 14:56:58','2015-08-29 14:46:08',1,30003296,0,1,11,2,0,0,0,0,47,78,41,0,69,8,8,0,0,0,0,0,0,0,78,0),(50,'2015-03-14 14:56:58','2015-08-29 14:46:08',1,30005102,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,5,0),(51,'2015-03-14 14:56:58','2015-08-29 14:46:08',1,30001889,5,0,0,12,16,99,4,197,92,60,69,62,151,140,34,130,59,2,29,40,224,89,14,0),(52,'2015-03-14 14:56:58','2015-08-29 14:46:08',1,30001856,0,0,0,0,0,0,0,0,55,0,0,0,183,0,0,0,68,0,0,0,0,0,0,0),(53,'2015-03-14 14:56:58','2015-08-29 14:46:08',1,30000522,168,262,44,36,5,0,100,271,193,171,235,189,34,94,93,202,90,0,70,0,51,243,162,0),(54,'2015-03-14 14:56:58','2015-03-14 14:56:58',1,30001643,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(55,'2015-03-14 14:56:58','2015-08-29 14:46:08',1,30001551,0,0,0,0,0,0,0,0,371,213,216,95,189,371,219,145,3,33,53,0,151,115,18,0),(56,'2015-03-14 14:56:58','2015-08-29 14:46:08',1,30000267,0,132,72,43,27,0,0,0,0,14,31,0,0,0,0,0,0,0,0,0,61,0,0,0),(57,'2015-03-14 14:56:58','2015-08-29 14:46:08',1,30003330,27,0,0,98,0,0,0,1,0,0,0,2,21,0,0,0,4,0,0,0,0,0,0,0),(58,'2015-03-14 14:56:58','2015-08-29 14:46:08',1,30000645,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,149,0,0,0,0,4,55,0),(59,'2015-03-14 14:56:58','2015-08-29 14:46:08',1,30003647,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,14,0,0,0,0,0,0),(60,'2015-03-14 14:56:58','2015-03-14 14:56:58',1,30002308,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(61,'2015-03-14 14:56:58','2015-03-14 14:56:58',1,30001521,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(62,'2015-03-14 14:56:58','2015-08-29 14:46:08',1,30000262,82,130,99,198,187,78,43,216,243,122,1,67,97,415,888,1473,305,556,295,278,329,509,237,0),(63,'2015-03-14 14:56:58','2015-08-29 14:46:08',1,30004720,58,101,127,16,0,0,107,208,0,8,16,0,85,1,1,72,44,5,30,93,84,56,73,0),(64,'2015-03-14 14:56:58','2015-03-14 14:56:58',1,30000929,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(65,'2015-03-14 14:56:58','2015-08-29 14:46:08',1,30004950,2,0,0,50,50,72,0,0,133,0,0,69,19,21,0,0,59,0,0,0,157,0,2,0),(66,'2015-03-14 14:56:58','2015-08-29 14:46:08',1,30004483,0,6,0,0,0,0,0,230,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(67,'2015-03-14 14:56:58','2015-08-29 14:46:08',1,30002899,782,187,100,319,199,51,514,138,124,254,197,386,45,103,68,182,303,373,608,185,332,467,521,0),(68,'2015-03-14 14:56:58','2015-08-29 14:46:08',1,30004874,199,13,367,98,11,12,153,91,0,0,0,0,0,0,0,0,0,0,0,45,0,0,0,0),(69,'2015-03-14 14:56:58','2015-08-29 14:46:08',1,30004322,72,0,117,122,192,75,179,0,0,0,0,0,0,79,52,0,0,0,19,78,0,0,65,0),(70,'2015-03-14 14:56:58','2015-08-29 14:46:08',1,30000966,3,0,4,0,0,0,0,0,136,29,29,0,0,1,0,0,0,0,0,0,0,0,0,0),(71,'2015-03-14 14:56:58','2015-08-29 14:46:08',1,30003251,0,3,104,0,0,0,0,122,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(72,'2015-03-14 14:56:58','2015-08-29 14:46:08',1,30000290,0,0,85,0,64,0,0,0,0,0,0,0,0,22,8,0,56,0,0,0,1,0,0,0),(73,'2015-03-14 14:56:58','2015-08-29 14:46:08',1,30000940,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,17,0,0,172,0),(74,'2015-03-14 14:56:58','2015-08-29 14:46:08',1,30000566,0,7,0,0,0,0,0,0,0,0,0,7,0,0,0,0,0,0,0,0,0,0,0,0),(75,'2015-03-14 14:56:58','2015-03-14 14:56:58',1,30001458,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(76,'2015-03-14 14:56:58','2015-08-29 14:46:08',1,30002846,0,0,0,0,0,0,0,86,0,0,0,38,0,0,0,62,0,0,0,0,0,0,0,0),(77,'2015-03-14 14:56:58','2015-08-29 14:46:08',1,30001009,0,0,0,0,0,0,0,0,0,5,5,0,0,0,0,0,0,0,5,0,0,4,0,0),(78,'2015-03-14 14:56:58','2015-08-29 14:46:08',1,30004695,0,12,0,0,0,0,0,22,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0),(79,'2015-03-14 14:56:58','2015-08-29 14:46:08',1,30003349,0,0,0,0,0,0,54,0,36,16,15,47,1,1,2,14,80,0,0,7,0,0,13,0),(80,'2015-03-14 14:56:58','2015-08-29 14:46:08',1,30001961,0,12,21,26,18,0,0,0,0,0,0,0,0,65,22,0,0,0,0,0,112,0,0,0),(81,'2015-03-14 14:56:58','2015-08-29 14:46:08',1,30003957,0,5,0,1,2,0,0,3,0,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0),(82,'2015-03-14 14:56:58','2015-08-29 14:46:08',1,30000543,0,0,0,0,0,71,0,0,0,0,0,0,0,2,38,38,0,0,0,0,0,0,0,0),(83,'2015-03-14 14:56:58','2015-03-14 14:56:58',1,30000781,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(84,'2015-03-14 14:56:58','2015-08-29 14:46:08',1,30002934,161,134,36,30,0,0,69,0,0,171,250,0,149,107,5,100,605,459,77,206,148,28,457,0),(85,'2015-03-14 14:56:58','2015-08-29 14:46:08',1,30004843,0,0,0,0,0,0,61,198,0,0,0,0,0,0,0,0,0,256,1,44,0,0,0,0),(86,'2015-03-14 14:56:58','2015-08-29 14:46:08',1,30005157,0,0,0,0,0,0,0,0,0,19,344,167,0,0,3,8,94,214,0,0,17,0,0,0),(87,'2015-03-14 14:56:58','2015-08-29 14:46:08',1,30001837,4,2,0,91,3,0,5,0,0,8,5,0,0,6,3,3,8,0,0,1,1,0,3,0),(88,'2015-03-14 14:56:58','2015-03-14 14:56:58',1,30001599,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(89,'2015-03-14 14:56:58','2015-03-14 14:56:58',1,30004677,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(90,'2015-03-14 14:56:58','2015-03-14 14:56:58',1,30001757,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(91,'2015-03-14 14:56:58','2015-08-29 14:46:08',1,30003766,100,46,8,2,5,20,169,0,56,116,67,127,28,33,69,121,244,290,51,64,98,1,70,0),(92,'2015-03-14 14:56:58','2015-08-29 14:46:08',1,30004801,0,0,0,0,1,0,0,0,0,132,31,0,0,0,0,0,0,0,0,0,0,0,0,0),(93,'2015-03-14 14:56:58','2015-08-29 14:46:08',1,30004037,20,6,79,59,92,33,79,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(94,'2015-03-14 14:56:58','2015-08-29 14:46:08',1,30004650,0,0,0,0,0,1240,0,0,85,116,22,15,72,164,158,58,103,3,130,203,159,507,242,0),(95,'2015-03-14 14:56:58','2015-08-29 14:46:08',1,30000573,165,212,152,179,79,51,24,142,60,32,109,25,27,0,0,0,60,11,4,39,0,43,0,0),(96,'2015-03-14 14:56:58','2015-03-14 14:56:58',1,30000734,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(97,'2015-03-14 14:56:58','2015-08-29 14:46:08',1,30002581,0,0,0,0,0,0,0,0,0,0,0,50,0,0,0,0,78,0,0,0,0,0,124,0),(98,'2015-03-14 14:56:58','2015-08-29 14:46:08',1,30003258,292,550,510,205,110,0,200,98,0,0,0,0,168,78,2,0,44,0,12,164,0,21,192,0),(99,'2015-03-14 14:56:58','2015-08-29 14:46:08',1,30001109,0,28,0,0,5,83,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0),(100,'2015-03-14 14:56:58','2015-08-29 14:46:08',1,30000301,0,164,172,53,53,42,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,28,0,0),(101,'2015-03-14 14:56:58','2015-03-14 14:56:58',1,30000463,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(102,'2015-03-14 14:56:58','2015-08-29 14:46:08',1,30003215,36,5,0,146,1,0,10,0,0,0,1,1,0,0,0,0,82,0,0,0,0,0,0,0),(103,'2015-03-14 14:56:58','2015-08-29 14:46:08',1,30002823,0,0,0,0,0,72,0,0,0,0,0,0,0,0,0,0,0,0,0,0,22,0,0,0),(104,'2015-03-14 14:56:58','2015-08-29 14:46:08',1,30004940,336,12,71,53,1,23,71,62,99,104,33,81,45,349,101,117,7,14,181,164,67,20,219,0),(105,'2015-03-14 14:56:58','2015-08-29 14:46:08',1,30003297,0,0,0,0,0,0,0,0,0,0,0,0,0,12,6,0,16,0,136,58,0,0,0,0),(106,'2015-03-14 14:56:58','2015-08-29 14:46:08',1,30004048,0,5,0,0,0,1,0,0,0,0,0,0,0,5,0,0,0,0,0,0,4,0,0,0),(107,'2015-03-14 14:56:58','2015-08-29 14:46:08',1,30000474,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,41,49,0),(108,'2015-03-14 14:56:58','2015-08-29 14:46:08',1,30004738,0,116,94,163,92,173,0,4,4,3,0,2,0,0,0,0,0,0,0,0,9,0,0,0),(109,'2015-03-14 14:56:58','2015-08-29 14:46:08',1,30001270,32,23,33,24,26,15,2,5,128,89,118,126,69,124,192,221,183,0,0,23,115,76,106,0),(110,'2015-03-14 14:56:58','2015-08-29 14:46:08',1,30003336,19,0,0,0,0,0,0,0,0,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0),(111,'2015-03-14 14:56:58','2015-03-14 14:56:58',1,30003147,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(112,'2015-03-14 14:56:58','2015-08-29 14:46:08',1,30001975,0,7,13,0,5,175,336,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(113,'2015-03-14 14:56:58','2015-03-14 14:56:58',1,30001066,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(114,'2015-03-14 14:56:58','2015-08-29 14:46:08',1,30004639,70,65,8,1,0,18,125,27,0,0,0,0,0,0,0,0,22,0,0,0,68,54,33,0),(115,'2015-03-14 14:56:58','2015-08-29 14:46:08',1,30004611,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,66,0),(116,'2015-03-14 14:56:58','2015-08-29 14:46:08',1,30000861,5,13,0,0,0,96,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,97,0),(117,'2015-03-14 14:56:58','2015-03-14 14:56:58',1,30000425,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(118,'2015-03-14 14:56:58','2015-08-29 14:46:08',1,30000931,0,0,0,0,0,3,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(119,'2015-03-14 14:56:58','2015-03-14 14:56:58',1,30004849,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(120,'2015-03-14 14:56:58','2015-08-29 14:46:08',1,30003122,601,280,75,22,30,58,0,13,5,44,31,120,56,42,0,23,20,517,81,12,0,96,209,0),(121,'2015-03-14 14:56:58','2015-08-29 14:46:08',1,30003768,8,6,116,68,0,268,205,25,35,0,42,102,22,33,86,53,45,0,8,0,0,154,144,0),(122,'2015-03-14 14:56:58','2015-03-14 14:56:58',1,30000342,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(123,'2015-03-14 14:56:58','2015-08-29 14:46:08',1,30003785,8,31,143,270,279,188,171,165,6,144,89,246,134,27,50,150,113,3,0,0,252,93,354,0),(124,'2015-03-14 14:56:58','2015-08-29 14:46:08',1,30005117,2,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(125,'2015-03-14 14:56:58','2015-08-29 14:46:08',1,30002317,1260,395,654,604,550,459,318,294,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(126,'2015-03-14 14:56:58','2015-08-29 14:46:08',1,30004728,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,53,63,0),(127,'2015-03-14 14:56:58','2015-08-29 14:46:08',1,30003624,0,79,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(128,'2015-03-14 14:56:58','2015-08-29 14:46:08',1,30000963,0,0,0,0,0,0,0,0,4,0,0,21,0,0,0,0,0,0,2,0,0,0,0,0),(129,'2015-03-14 14:56:58','2015-03-14 14:56:58',1,30001524,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(130,'2015-03-14 14:56:58','2015-08-29 14:46:08',1,30004688,0,0,0,0,0,0,0,29,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(131,'2015-03-14 14:56:58','2015-08-29 14:46:08',1,30004710,0,0,4,0,0,0,5,39,0,0,0,0,0,0,14,107,37,0,0,0,0,0,0,0),(132,'2015-03-14 14:56:58','2015-03-14 14:56:58',1,30004759,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(133,'2015-03-14 14:56:58','2015-08-29 14:46:08',1,30004964,200,140,54,74,1,112,68,476,0,72,143,50,0,237,154,217,225,0,130,0,107,324,590,0),(134,'2015-03-14 14:56:58','2015-08-29 14:46:08',1,30003211,52,4,0,87,0,381,30,56,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(135,'2015-03-14 14:56:58','2015-08-29 14:46:08',1,30004367,135,115,181,167,75,529,250,128,0,134,94,43,0,0,11,146,294,0,47,0,0,85,84,0),(136,'2015-03-14 14:56:58','2015-08-29 14:46:08',1,30002332,0,0,0,0,0,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(137,'2015-03-14 14:56:58','2015-08-29 14:46:08',1,30004226,48,2,0,0,0,521,0,0,0,0,0,0,4,677,337,0,0,0,0,0,0,149,0,0),(138,'2015-03-14 14:56:58','2015-08-29 14:46:08',1,30001880,0,0,0,0,0,0,0,0,0,14,14,0,2,40,2,30,6,1,50,6,9,0,10,0),(139,'2015-03-14 14:56:58','2015-08-29 14:46:08',1,30001952,0,0,0,0,0,0,0,0,3,4,1,3,28,6,6,0,0,0,0,0,0,0,0,0),(140,'2015-03-14 14:56:58','2015-03-14 14:56:58',1,30002329,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(141,'2015-03-14 14:56:58','2015-03-14 14:56:58',1,30000395,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(142,'2015-03-14 14:56:58','2015-08-29 14:46:08',1,30001540,3,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(143,'2015-03-14 14:56:58','2015-08-29 14:46:08',1,30004920,56,0,47,48,49,1,0,0,74,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(144,'2015-03-14 14:56:58','2015-08-29 14:46:08',1,30004393,737,488,483,91,57,780,1760,1426,61,136,111,379,0,0,0,1,0,0,0,0,0,0,0,0),(145,'2015-03-14 14:56:58','2015-08-29 14:46:08',1,30000445,0,0,0,0,0,0,0,0,70,196,382,312,108,234,220,204,66,137,84,56,51,27,55,0),(146,'2015-03-14 14:56:58','2015-03-14 14:56:58',1,30000962,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(147,'2015-03-14 14:56:58','2015-08-29 14:46:08',1,30004501,0,0,0,0,0,0,4,0,0,0,0,0,0,0,0,31,0,0,0,0,0,0,83,0),(148,'2015-03-14 14:56:58','2015-08-29 14:46:08',1,30000579,0,0,1,51,74,93,200,36,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(149,'2015-03-14 14:56:58','2015-08-29 14:46:08',1,30003952,33,0,0,0,0,74,41,0,65,31,27,3,31,7,4,8,52,11,33,11,0,0,0,0),(150,'2015-03-14 14:56:58','2015-08-29 14:46:08',1,30004189,2079,60,357,1581,851,557,0,201,637,603,616,582,1340,1120,960,695,1100,260,333,334,786,599,606,0),(151,'2015-03-14 14:56:58','2015-08-29 14:46:08',1,30000294,61,9,167,143,222,160,0,0,91,209,259,192,110,9,3,163,218,1099,140,28,522,237,610,0),(152,'2015-03-14 14:56:58','2015-08-29 14:46:08',1,30001081,52,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(153,'2015-03-14 14:56:58','2015-08-29 14:46:08',1,30003233,231,266,0,222,69,0,146,264,0,0,0,0,0,1,58,57,0,0,0,0,0,0,0,0),(154,'2015-03-14 14:56:58','2015-08-29 14:46:08',1,30001170,0,3,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(155,'2015-03-14 14:56:58','2015-08-29 14:46:08',1,30002365,81,5,0,0,0,0,219,68,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(156,'2015-03-14 14:56:58','2015-03-14 14:56:58',1,30000336,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(157,'2015-03-14 14:56:58','2015-08-29 14:46:08',1,30003617,0,45,0,30,23,0,0,29,0,0,0,0,4,0,0,0,0,27,6,54,0,75,1,0),(158,'2015-03-14 14:56:58','2015-08-29 14:46:08',1,30000720,0,0,127,0,0,0,10,7,0,0,0,10,167,0,0,0,0,0,133,0,0,0,0,0),(159,'2015-03-14 14:56:58','2015-03-14 14:56:58',1,30000378,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(160,'2015-03-14 14:56:58','2015-08-29 14:46:08',1,30002866,0,0,0,0,0,0,0,0,0,0,0,0,5,0,0,0,5,0,0,0,4,0,0,0),(161,'2015-03-14 14:56:58','2015-03-14 14:56:58',1,30001452,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(162,'2015-03-14 14:56:58','2015-03-14 14:56:58',1,30000766,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(163,'2015-03-14 14:56:58','2015-03-14 14:56:58',1,30000424,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(164,'2015-03-14 14:56:58','2015-03-14 14:56:58',1,30000680,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(165,'2015-03-14 14:56:58','2015-08-29 14:46:08',1,30000286,208,7,0,0,0,0,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(166,'2015-03-14 14:56:58','2015-08-29 14:46:08',1,30000288,0,0,0,0,34,0,0,36,0,0,0,0,0,0,0,0,0,0,0,0,0,0,97,0),(167,'2015-03-14 14:56:58','2015-08-29 14:46:08',1,30000836,0,0,0,0,0,0,0,0,0,13,13,0,0,0,0,0,0,0,0,0,131,0,0,0),(168,'2015-03-14 14:56:58','2015-08-29 14:46:08',1,30000611,0,0,0,0,0,0,0,0,0,0,0,0,39,0,0,0,0,0,0,0,0,0,0,0),(169,'2015-03-14 14:56:58','2015-08-29 14:46:08',1,30003668,1480,23,36,294,138,0,90,384,17,0,0,0,0,0,0,0,114,0,0,0,0,15,95,0),(170,'2015-03-14 14:56:58','2015-03-14 14:56:58',1,30000349,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(171,'2015-03-14 14:56:58','2015-08-29 14:46:08',1,30002007,72,33,172,135,124,11,18,58,0,1,1,51,11,0,0,0,64,1,77,0,166,46,107,0),(172,'2015-03-14 14:56:58','2015-08-29 14:46:08',1,30001786,0,0,9,9,4,0,0,0,88,370,944,500,195,434,206,294,743,0,518,116,1009,750,1024,0),(173,'2015-03-14 14:56:58','2015-08-29 14:46:08',1,30004184,564,326,388,631,677,111,262,0,0,598,1096,1064,717,655,778,1155,1442,0,172,563,1116,954,23,0),(174,'2015-03-14 14:56:58','2015-08-29 14:46:08',1,30004454,0,0,14,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,83,0,0,0),(175,'2015-03-14 14:56:58','2015-08-29 14:46:08',1,30002903,715,47,63,244,197,88,464,149,115,470,446,494,148,600,379,337,831,140,178,164,511,254,551,0),(176,'2015-03-14 14:56:58','2015-08-29 14:46:08',1,30000684,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0),(177,'2015-03-14 14:56:58','2015-03-14 14:56:58',1,30001598,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(178,'2015-03-14 14:56:58','2015-08-29 14:46:08',1,30000756,0,0,0,0,28,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(179,'2015-03-14 14:56:58','2015-08-29 14:46:08',1,30004492,398,307,664,649,754,683,170,193,198,56,0,0,69,0,0,0,0,0,0,66,0,0,0,0),(180,'2015-03-14 14:56:58','2015-08-29 14:46:08',1,30003754,0,0,53,92,83,0,0,0,0,0,0,0,0,0,0,0,1,0,0,81,0,4,5,0),(181,'2015-03-14 14:56:58','2015-08-29 14:46:08',1,30001864,0,8,12,0,0,0,2,17,4,1,5,9,5,47,40,1,37,0,0,0,1,18,35,0),(182,'2015-03-14 14:56:58','2015-08-29 14:46:08',1,30003188,0,5,0,0,0,0,0,0,0,0,0,0,0,12,16,10,0,0,0,0,0,4,5,0),(183,'2015-03-14 14:56:58','2015-08-29 14:46:08',1,30000473,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,35,0,0,0),(184,'2015-03-14 14:56:58','2015-08-29 14:46:08',1,30005139,0,3,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(185,'2015-03-14 14:56:58','2015-08-29 14:46:08',1,30003238,46,0,0,0,0,0,0,0,64,57,50,266,0,0,0,0,0,0,0,0,0,0,0,0),(186,'2015-03-14 14:56:58','2015-08-29 14:46:08',1,30004734,0,0,0,0,0,0,0,0,31,80,60,7,0,107,154,78,47,113,16,0,41,46,0,0),(187,'2015-03-14 14:56:58','2015-08-29 14:46:08',1,30004467,0,0,0,0,0,174,15,0,0,94,103,0,0,1,0,0,0,0,0,45,0,0,20,0),(188,'2015-03-14 14:56:58','2015-08-29 14:46:08',1,30001784,0,0,0,0,0,0,0,0,381,14,109,354,45,293,255,361,832,645,350,5,364,360,208,0),(189,'2015-03-14 14:56:58','2015-08-29 14:46:08',1,30001258,0,0,53,22,4,59,0,0,68,175,59,128,507,11,5,9,72,0,0,16,55,209,4,0),(190,'2015-03-14 14:56:58','2015-08-29 14:46:08',1,30000832,0,0,44,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(191,'2015-03-14 14:56:58','2015-08-29 14:46:08',1,30000996,0,0,0,0,0,0,0,0,0,0,0,5,0,1,72,94,27,0,0,0,10,0,22,0),(192,'2015-03-14 14:56:58','2015-08-29 14:46:08',1,30004071,0,0,0,0,0,0,0,0,0,87,73,0,0,0,0,0,0,0,0,109,0,0,37,0),(193,'2015-03-14 14:56:58','2015-08-29 14:46:08',1,30000714,0,44,38,0,0,0,0,117,0,0,0,0,0,0,0,0,21,0,0,0,0,0,0,0),(194,'2015-03-14 14:56:58','2015-08-29 14:46:08',1,30003171,186,0,0,51,199,37,211,42,14,1,0,0,0,9,8,13,0,0,0,5,0,0,0,0),(195,'2015-03-14 14:56:58','2015-03-14 14:56:58',1,30005182,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(196,'2015-03-14 14:56:58','2015-08-29 14:46:08',1,30001949,0,13,13,13,8,0,0,0,53,0,0,4,1,0,0,0,0,54,55,22,74,0,0,0),(197,'2015-03-14 14:56:58','2015-08-29 14:46:08',1,30002342,0,4,0,0,0,0,5,0,0,0,0,0,0,0,0,0,0,0,3,1,0,0,0,0),(198,'2015-03-14 14:56:58','2015-08-29 14:46:08',1,30004394,0,0,82,117,94,0,18,0,0,274,229,0,0,79,30,0,0,0,0,0,26,0,63,0),(199,'2015-03-14 14:56:58','2015-08-29 14:46:08',1,30000898,96,123,35,149,126,148,0,37,0,0,0,0,0,0,0,0,4,0,56,89,0,0,0,0),(200,'2015-03-14 14:56:58','2015-08-29 14:46:08',1,30001965,5,0,1,4,0,2,1,1,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0),(201,'2015-03-14 14:56:58','2015-08-29 14:46:08',1,30000292,71,44,106,93,32,70,0,0,17,9,88,91,21,30,58,65,20,0,0,0,71,9,4,0),(202,'2015-03-14 14:56:58','2015-08-29 14:46:08',1,30002424,7,0,0,0,0,0,129,0,0,56,101,0,0,0,0,0,0,0,0,0,0,121,6,0),(203,'2015-03-14 14:56:58','2015-03-14 14:56:58',1,30000403,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(204,'2015-03-14 14:56:58','2015-03-14 14:56:58',1,30001746,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(205,'2015-03-14 14:56:58','2015-08-29 14:46:08',1,30001136,0,0,0,0,0,0,0,0,6,4,0,0,0,1,7,16,12,0,0,86,0,0,7,0),(206,'2015-03-14 14:56:58','2015-03-14 14:56:58',1,30002283,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(207,'2015-03-14 14:56:58','2015-08-29 14:46:08',1,30003370,26,0,4,26,41,0,0,35,0,15,0,0,0,14,7,9,76,6,0,0,23,0,0,0),(208,'2015-03-14 14:56:58','2015-08-29 14:46:08',1,30002455,530,75,502,822,947,783,412,388,0,226,345,198,394,216,59,92,656,120,53,99,117,262,109,0),(209,'2015-03-14 14:56:58','2015-08-29 14:46:08',1,30004693,0,0,160,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,0,0,0),(210,'2015-03-14 14:56:58','2015-08-29 14:46:08',1,30001352,0,36,0,0,0,0,27,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,7,0),(211,'2015-03-14 14:56:58','2015-08-29 14:46:08',1,30001774,0,0,0,69,90,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(212,'2015-03-14 14:56:58','2015-08-29 14:46:08',1,30001860,0,0,0,0,0,0,0,0,0,0,0,4,4,0,0,0,4,0,0,0,0,0,0,0),(213,'2015-03-14 14:56:58','2015-08-29 14:46:08',1,30000881,21,0,0,0,0,29,85,0,0,0,0,0,0,227,0,92,0,0,0,0,0,0,0,0),(214,'2015-03-14 14:56:58','2015-08-29 14:46:08',1,30001169,0,0,0,0,0,0,0,0,0,68,63,0,0,0,0,0,0,0,0,0,0,0,0,0),(215,'2015-03-14 14:56:58','2015-08-29 14:46:08',1,30004531,0,4,0,15,15,0,0,0,0,34,68,0,0,0,0,0,0,0,0,0,0,0,0,0),(216,'2015-03-14 14:56:58','2015-08-29 14:46:08',1,30000757,0,133,0,0,0,0,0,0,0,0,0,0,0,67,43,0,0,0,0,0,0,0,0,0),(217,'2015-03-14 14:56:58','2015-03-14 14:56:58',1,30001510,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(218,'2015-03-14 14:56:58','2015-08-29 14:46:08',1,30002175,181,50,8,29,14,219,275,153,46,288,123,478,331,234,339,390,46,0,0,0,65,476,371,0),(219,'2015-03-14 14:56:58','2015-08-29 14:46:08',1,30002909,0,511,108,36,23,410,930,38,50,333,390,740,71,338,549,624,594,61,211,179,297,697,273,0),(220,'2015-03-14 14:56:58','2015-08-29 14:46:08',1,30003332,0,0,0,0,0,3,2,14,0,0,0,0,0,0,0,0,0,41,24,0,0,0,0,0),(221,'2015-03-14 14:56:58','2015-08-29 14:46:08',1,30004830,414,0,72,70,117,0,0,82,77,321,267,1,64,0,98,423,584,395,37,58,714,380,401,0),(222,'2015-03-14 14:56:58','2015-08-29 14:46:08',1,30001319,0,0,62,92,89,0,0,0,0,0,0,0,0,0,0,0,0,0,0,20,66,0,0,0),(223,'2015-03-14 14:56:58','2015-08-29 14:46:08',1,30003304,3,0,9,0,0,0,0,0,0,0,0,6,8,5,3,0,0,0,0,0,0,0,0,0),(224,'2015-03-14 14:56:58','2015-08-29 14:46:08',1,30002905,18,83,37,111,8,0,15,0,81,361,176,0,81,588,385,341,250,300,261,159,193,496,603,0),(225,'2015-03-14 14:56:58','2015-08-29 14:46:08',1,30003182,0,154,353,435,394,290,0,42,0,101,467,280,22,187,184,104,761,0,0,122,957,907,865,0),(226,'2015-03-14 14:56:58','2015-03-14 14:56:58',1,30001615,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(227,'2015-03-14 14:56:58','2015-08-29 14:46:08',1,30001333,0,102,93,84,82,0,149,232,0,0,0,0,0,78,173,115,233,137,0,0,0,0,0,0),(228,'2015-03-14 14:56:58','2015-08-29 14:46:08',1,30004447,0,0,0,1,1,0,0,0,0,0,0,0,8,0,0,0,0,0,0,0,5,8,0,0),(229,'2015-03-14 14:56:58','2015-08-29 14:46:08',1,30001770,26,251,0,85,101,191,85,6,449,207,183,224,463,420,230,70,0,365,158,0,0,6,115,0),(230,'2015-03-14 14:56:58','2015-08-29 14:46:08',1,30003774,40,0,92,53,47,132,47,0,329,261,137,140,293,185,91,139,102,48,90,4,34,0,19,0),(231,'2015-03-14 14:56:58','2015-08-29 14:46:08',1,30005096,8,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,3,0,0,0,0,0,0,0),(232,'2015-03-14 14:56:58','2015-08-29 14:46:08',1,30001799,0,0,9,17,3,8,0,0,295,366,360,391,8,351,340,286,484,313,245,174,420,270,308,0),(233,'2015-03-14 14:56:58','2015-08-29 14:46:08',1,30003275,55,28,16,0,0,18,59,2,0,12,14,0,80,74,44,16,61,0,0,0,0,4,0,0),(234,'2015-03-14 14:56:58','2015-08-29 14:46:08',1,30000909,0,0,0,0,0,0,0,0,0,0,0,0,60,1,0,0,0,65,81,90,24,134,154,0),(235,'2015-03-14 14:56:58','2015-08-29 14:46:08',1,30001103,0,1,0,0,0,124,0,0,109,0,0,0,0,0,0,56,315,0,0,0,0,0,288,0),(236,'2015-03-14 14:56:58','2015-08-29 14:46:08',1,30001116,190,205,230,1254,1220,325,0,0,374,0,153,688,0,0,0,0,0,0,0,0,61,0,0,0),(237,'2015-03-14 14:56:58','2015-08-29 14:46:08',1,30000823,0,3,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(238,'2015-03-14 14:56:58','2015-03-14 14:56:58',1,30000452,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(239,'2015-03-14 14:56:58','2015-08-29 14:46:08',1,30004466,4,0,0,238,0,35,0,20,106,13,0,0,1,96,108,253,138,29,0,134,45,0,25,0),(240,'2015-03-14 14:56:58','2015-03-14 14:56:58',1,30001642,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(241,'2015-03-14 14:56:58','2015-08-29 14:46:08',1,30004764,0,0,0,0,0,0,0,0,24,15,0,0,0,0,0,0,0,0,0,0,0,0,38,0),(242,'2015-03-14 14:56:58','2015-08-29 14:46:08',1,30004019,0,0,0,0,0,0,0,2,0,0,19,94,0,0,0,0,0,0,0,0,0,0,0,0),(243,'2015-03-14 14:56:58','2015-03-14 14:56:58',1,30000341,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(244,'2015-03-14 14:56:58','2015-08-29 14:46:08',1,30003356,0,0,0,0,0,0,0,0,0,0,0,0,3,0,0,86,0,0,0,0,0,0,0,0),(245,'2015-03-14 14:56:58','2015-03-14 14:56:58',1,30000343,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(246,'2015-03-14 14:56:58','2015-08-29 14:46:08',1,30004004,0,22,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(247,'2015-03-14 14:56:58','2015-08-29 14:46:08',1,30003231,205,0,82,343,287,258,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,59,0),(248,'2015-03-14 14:56:58','2015-08-29 14:46:08',1,30000448,0,0,0,0,0,0,0,0,15,450,553,536,40,463,491,418,248,0,0,74,11,298,295,0),(249,'2015-03-14 14:56:58','2015-08-29 14:46:08',1,30004358,28,88,45,0,0,0,100,218,0,0,0,15,0,79,166,150,0,0,0,0,0,0,32,0),(250,'2015-03-14 14:56:58','2015-08-29 14:46:08',1,30001199,0,10,0,0,0,0,0,0,0,0,0,0,134,0,0,9,0,0,3,0,0,0,0,0),(251,'2015-03-14 14:56:58','2015-08-29 14:46:08',1,30001820,372,0,296,359,372,174,0,0,0,0,0,43,0,0,0,0,0,0,0,0,0,0,87,0),(252,'2015-03-14 14:56:58','2015-08-29 14:46:08',1,30003675,81,143,147,187,9,340,180,233,293,244,274,393,0,217,478,488,429,0,0,0,131,0,0,0),(253,'2015-03-14 14:56:58','2015-08-29 14:46:08',1,30001212,143,15,170,103,87,17,220,231,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(254,'2015-03-14 14:56:58','2015-08-29 14:46:08',1,30004336,0,0,52,85,54,0,31,21,0,18,0,0,134,177,55,0,0,21,0,0,0,0,0,0),(255,'2015-03-14 14:56:58','2015-08-29 14:46:08',1,30002582,0,0,0,0,0,0,0,0,0,0,38,109,0,0,0,0,0,0,0,0,0,0,0,0),(256,'2015-03-14 14:56:58','2015-03-14 14:56:58',1,30001500,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(257,'2015-03-14 14:56:58','2015-03-14 14:56:58',1,30004405,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(258,'2015-03-14 14:56:58','2015-08-29 14:46:08',1,30003632,520,1317,1076,418,723,317,2498,1880,88,267,173,274,59,25,0,57,205,203,515,119,516,125,507,0),(259,'2015-03-14 14:56:58','2015-08-29 14:46:08',1,30000534,0,8,0,0,0,0,0,0,43,122,90,80,0,122,144,150,141,0,0,0,277,155,1,0),(260,'2015-03-14 14:56:58','2015-08-29 14:46:08',1,30003329,0,1,20,11,11,4,31,74,0,6,3,0,0,0,0,0,7,0,10,0,0,0,52,0),(261,'2015-03-14 14:56:58','2015-08-29 14:46:08',1,30004387,397,296,282,959,879,878,228,183,35,292,280,380,450,302,477,579,314,0,140,102,199,136,257,0),(262,'2015-03-14 14:56:58','2015-08-29 14:46:08',1,30004722,11,0,15,0,3,0,0,0,0,0,0,0,0,5,0,0,17,0,0,5,0,0,0,0),(263,'2015-03-14 14:56:58','2015-08-29 14:46:08',1,30004786,0,0,0,0,0,0,0,0,0,0,2,51,0,0,0,0,1,0,0,0,0,0,0,0),(264,'2015-03-14 14:56:58','2015-08-29 14:46:08',1,30001841,0,0,0,1,16,0,0,5,0,0,0,0,0,0,0,0,0,20,0,0,0,0,0,0),(265,'2015-03-14 14:56:58','2015-08-29 14:46:08',1,30004668,0,0,0,0,0,0,43,0,0,0,0,0,0,0,0,0,43,0,0,0,0,0,0,0),(266,'2015-03-14 14:56:58','2015-08-29 14:46:08',1,30003642,55,100,78,195,434,0,70,72,6,3,7,4,0,0,0,0,0,0,5,9,9,2,9,0),(267,'2015-03-14 14:56:58','2015-08-29 14:46:08',1,30004517,0,49,0,0,4,0,0,7,0,0,0,0,43,70,32,80,0,0,0,0,47,2,75,0),(268,'2015-03-14 14:56:58','2015-08-29 14:46:08',1,30002919,0,404,608,357,57,177,302,182,215,28,0,479,2,437,383,373,396,334,0,142,327,427,249,0),(269,'2015-03-14 14:56:58','2015-08-29 14:46:08',1,30004928,0,4,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(270,'2015-03-14 14:56:58','2015-08-29 14:46:08',1,30003312,0,21,0,0,0,0,0,7,0,0,0,34,5,0,0,0,0,3,8,4,0,0,3,0),(271,'2015-03-14 14:56:58','2015-08-29 14:46:08',1,30001157,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,28,0,0,0,0),(272,'2015-03-14 14:56:58','2015-08-29 14:46:08',1,30001947,0,0,0,0,0,0,0,0,21,92,0,0,0,0,0,0,0,0,0,0,0,1,1,0),(273,'2015-03-14 14:56:58','2015-08-29 14:46:08',1,30001868,48,4,44,0,0,1,0,0,0,0,0,0,79,0,0,0,0,34,0,0,0,1,0,0),(274,'2015-03-14 14:56:58','2015-08-29 14:46:08',1,30000535,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(275,'2015-03-14 14:56:58','2015-08-29 14:46:08',1,30004632,397,182,70,222,119,289,0,0,0,0,0,0,5,4,0,0,0,20,0,3,0,0,0,0),(276,'2015-03-14 14:56:58','2015-08-29 14:46:08',1,30000829,0,0,0,0,0,0,0,3,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(277,'2015-03-14 14:56:58','2015-08-29 14:46:08',1,30002444,3,0,0,0,0,0,0,0,0,1,85,0,0,0,0,0,0,0,0,0,0,0,0,0),(278,'2015-03-14 14:56:58','2015-08-29 14:46:08',1,30004766,0,17,0,0,0,47,0,7,122,34,18,0,21,0,0,70,95,0,11,25,0,6,78,0),(279,'2015-03-14 14:56:58','2015-08-29 14:46:08',1,30001281,0,0,0,0,0,0,2,0,0,0,0,45,0,0,0,0,0,0,0,0,0,0,0,0),(280,'2015-03-14 14:56:58','2015-08-29 14:46:08',1,30000798,851,17,668,41,148,426,10,40,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(281,'2015-03-14 14:56:58','2015-08-29 14:46:08',1,30004000,0,12,5,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(282,'2015-03-14 14:56:58','2015-03-14 14:56:58',1,30000428,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(283,'2015-03-14 14:56:58','2015-08-29 14:46:08',1,30003786,18,86,0,51,44,0,0,0,1,1,3,0,0,0,0,0,94,0,0,0,0,0,17,0),(284,'2015-03-14 14:56:58','2015-08-29 14:46:08',1,30004036,151,0,0,0,0,0,0,0,81,21,0,16,0,348,1168,1760,661,0,0,0,0,0,0,0),(285,'2015-03-14 14:56:58','2015-08-29 14:46:08',1,30003609,0,92,0,0,0,0,38,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(286,'2015-03-14 14:56:58','2015-03-14 14:56:58',1,30001474,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(287,'2015-03-14 14:56:58','2015-08-29 14:46:08',1,30001553,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,18,0,0,0,0),(288,'2015-03-14 14:56:58','2015-08-29 14:46:08',1,30004390,26,0,0,0,0,0,155,38,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(289,'2015-03-14 14:56:58','2015-08-29 14:46:08',1,30004900,0,0,0,0,0,0,46,45,0,408,358,87,0,0,0,0,0,0,0,367,161,13,21,0),(290,'2015-03-14 14:56:58','2015-03-14 14:56:58',1,30002302,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(291,'2015-03-14 14:56:58','2015-08-29 14:46:08',1,30000876,0,127,13,14,40,0,0,26,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(292,'2015-03-14 14:56:58','2015-08-29 14:46:08',1,30001200,0,0,0,0,0,0,0,0,0,0,0,0,1,0,1,1,133,0,4,0,0,283,46,0),(293,'2015-03-14 14:56:58','2015-08-29 14:46:08',1,30003748,3,41,0,93,0,95,0,0,48,0,0,0,133,253,467,451,0,70,163,29,37,29,36,0),(294,'2015-03-14 14:56:58','2015-08-29 14:46:08',1,30002325,0,0,0,0,0,0,0,0,0,0,0,8,8,8,17,9,16,0,0,7,8,4,9,0),(295,'2015-03-14 14:56:58','2015-08-29 14:46:08',1,30004520,0,0,0,0,0,3,0,0,0,0,0,0,14,0,0,0,11,0,0,0,0,0,0,0),(296,'2015-03-14 14:56:58','2015-08-29 14:46:08',1,30000228,418,12,223,576,301,785,421,353,105,13,0,0,0,74,109,169,217,0,19,189,0,0,37,0),(297,'2015-03-14 14:56:58','2015-08-29 14:46:08',1,30002357,16,159,69,13,17,74,0,0,0,0,0,0,0,0,0,0,0,0,149,85,0,0,0,0),(298,'2015-03-14 14:56:58','2015-08-29 14:46:08',1,30002937,407,226,31,253,354,781,591,176,64,358,372,125,15,158,177,264,257,747,680,561,720,341,356,0),(299,'2015-03-14 14:56:58','2015-08-29 14:46:08',1,30003781,0,57,104,147,21,55,0,0,56,0,10,0,0,0,0,0,132,93,58,8,0,0,0,0),(300,'2015-03-14 14:56:58','2015-08-29 14:46:08',1,30004403,0,268,279,20,243,64,314,115,0,0,0,269,371,411,384,410,163,10,111,0,0,229,63,0),(301,'2015-03-14 14:56:58','2015-08-29 14:46:08',1,30003322,0,0,69,0,0,40,0,0,0,0,0,0,0,3,3,0,0,0,0,0,0,0,0,0),(302,'2015-03-14 14:56:58','2015-08-29 14:46:08',1,30004419,0,0,0,0,0,0,0,0,0,0,0,108,0,0,0,0,0,0,0,0,0,0,0,0),(303,'2015-03-14 14:56:58','2015-03-14 14:56:58',1,30004808,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(304,'2015-03-14 14:56:58','2015-08-29 14:46:08',1,30005166,5,0,0,0,0,0,4,0,0,83,346,476,696,586,307,348,434,31,188,316,765,692,317,0),(305,'2015-03-14 14:56:58','2015-08-29 14:46:08',1,30003324,0,0,0,0,0,9,0,8,97,0,0,0,26,0,0,0,0,0,8,0,0,0,0,0),(306,'2015-03-14 14:56:58','2015-08-29 14:46:08',1,30002917,0,0,0,4,0,0,49,160,202,223,256,461,0,9,0,0,0,17,0,29,44,0,1,0),(307,'2015-03-14 14:56:58','2015-08-29 14:46:08',1,30004951,162,89,319,406,261,316,285,270,46,67,74,15,3,115,0,70,189,202,91,96,280,133,32,0),(308,'2015-03-14 14:56:58','2015-08-29 14:46:08',1,30004682,0,1,0,229,244,0,47,120,0,0,0,0,0,0,0,0,0,0,0,127,0,0,0,0),(309,'2015-03-14 14:56:58','2015-08-29 14:46:08',1,30000590,0,0,0,0,0,0,0,0,234,69,0,120,0,0,0,0,0,0,0,0,0,0,0,0),(310,'2015-03-14 14:56:58','2015-08-29 14:46:08',1,30004868,0,0,0,0,1,0,109,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(311,'2015-03-14 14:56:58','2015-08-29 14:46:08',1,30002921,1640,351,736,758,522,678,113,7,708,897,844,1060,592,955,224,409,1364,143,595,775,0,426,715,0),(312,'2015-03-14 14:56:58','2015-03-14 14:56:58',1,30000733,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(313,'2015-03-14 14:56:58','2015-08-29 14:46:08',1,30002486,136,96,196,0,0,39,168,0,0,146,207,306,245,299,386,305,245,0,13,142,201,199,134,0),(314,'2015-03-14 14:56:58','2015-08-29 14:46:08',1,30002938,604,0,142,190,158,57,66,189,7,12,53,139,0,68,0,79,29,7,0,0,0,0,48,0),(315,'2015-03-14 14:56:58','2015-08-29 14:46:08',1,30000782,0,0,5,0,0,0,0,64,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(316,'2015-03-14 14:56:58','2015-08-29 14:46:08',1,30002449,0,137,3,190,89,0,3,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(317,'2015-03-14 14:56:58','2015-08-29 14:46:08',1,30002011,186,97,57,141,181,0,0,0,0,0,0,7,0,1,2,2,5,1,0,3,6,6,4,0),(318,'2015-03-14 14:56:58','2015-08-29 14:46:08',1,30003191,0,3,0,0,4,0,156,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(319,'2015-03-14 14:56:58','2015-08-29 14:46:08',1,30004555,251,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,6,0,0,3,0,0),(320,'2015-03-14 14:56:58','2015-08-29 14:46:08',1,30004628,0,0,0,180,0,0,0,0,0,0,0,5,0,0,0,0,0,0,0,12,0,47,28,0),(321,'2015-03-14 14:56:58','2015-08-29 14:46:08',1,30001260,45,26,0,0,0,0,0,0,333,190,220,247,519,764,726,654,400,462,315,285,471,524,591,0),(322,'2015-03-14 14:56:58','2015-08-29 14:46:08',1,30005149,0,43,16,76,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(323,'2015-03-14 14:56:58','2015-03-14 14:56:58',1,30004014,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(324,'2015-03-14 14:56:58','2015-03-14 14:56:58',1,30000730,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(325,'2015-03-14 14:56:58','2015-08-29 14:46:08',1,30004317,0,0,0,44,0,0,6,11,0,0,0,0,0,0,0,0,0,0,0,0,4,0,0,0),(326,'2015-03-14 14:56:58','2015-08-29 14:46:08',1,30001318,0,0,15,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,32,0,0,0,0),(327,'2015-03-14 14:56:58','2015-08-29 14:46:08',1,30002015,0,1,0,1,0,0,0,0,0,0,0,0,58,0,0,0,71,0,0,3,0,1,0,0),(328,'2015-03-14 14:56:58','2015-08-29 14:46:08',1,30004360,207,467,337,1134,1297,168,113,243,10,16,16,0,42,0,2,4,0,32,6,4,3,8,3,0),(329,'2015-03-14 14:56:58','2015-08-29 14:46:08',1,30000718,265,0,8,15,9,52,7,216,41,181,296,183,29,8,54,55,16,30,106,33,101,479,3,0),(330,'2015-03-14 14:56:58','2015-08-29 14:46:08',1,30002441,639,99,124,394,678,286,939,431,71,474,241,425,124,0,0,192,308,336,113,0,22,432,43,0),(331,'2015-03-14 14:56:58','2015-08-29 14:46:08',1,30000576,167,41,65,0,0,6,44,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(332,'2015-03-14 14:56:58','2015-08-29 14:46:08',1,30004553,0,0,0,0,0,0,0,0,5,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(333,'2015-03-14 14:56:58','2015-08-29 14:46:08',1,30002144,0,140,0,107,53,107,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0),(334,'2015-03-14 14:56:58','2015-08-29 14:46:08',1,30004007,83,145,30,12,6,1,0,49,0,0,67,141,0,0,0,0,0,0,0,133,0,0,0,0),(335,'2015-03-14 14:56:58','2015-08-29 14:46:08',1,30000240,0,0,0,0,0,131,0,87,0,0,0,0,3,41,0,0,0,0,0,0,0,0,0,0),(336,'2015-03-14 14:56:58','2015-03-14 14:56:58',1,30000431,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(337,'2015-03-14 14:56:58','2015-08-29 14:46:08',1,30004828,0,651,109,0,0,53,122,6,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(338,'2015-03-14 14:56:58','2015-08-29 14:46:08',1,30003366,1,0,0,0,6,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(339,'2015-03-14 14:56:58','2015-08-29 14:46:08',1,30005121,120,101,106,28,0,485,0,0,0,0,0,9,0,0,0,0,0,0,0,0,9,141,8,0),(340,'2015-03-14 14:56:58','2015-08-29 14:46:08',1,30002613,0,5,10,0,0,0,0,3,216,96,102,49,0,89,259,364,206,846,161,4,0,0,163,0),(341,'2015-03-14 14:56:58','2015-08-29 14:46:08',1,30000582,0,29,0,0,0,0,0,0,0,0,0,0,0,0,0,139,89,0,0,0,0,13,150,0),(342,'2015-03-14 14:56:58','2015-08-29 14:46:08',1,30003105,72,0,131,0,0,96,0,0,0,0,0,123,0,0,0,0,0,0,0,0,0,0,0,0),(343,'2015-03-14 14:56:58','2015-03-14 14:56:58',1,30004811,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(344,'2015-03-14 14:56:58','2015-08-29 14:46:08',1,30004165,11,0,0,0,0,5,0,0,0,0,0,0,0,0,0,0,31,0,0,0,0,0,0,0),(345,'2015-03-14 14:56:58','2015-08-29 14:46:08',1,30002344,0,0,0,0,109,1560,341,0,0,0,0,0,0,0,0,0,193,0,0,1007,1292,100,1760,0),(346,'2015-03-14 14:56:58','2015-08-29 14:46:08',1,30001867,0,30,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,0),(347,'2015-03-14 14:56:58','2015-08-29 14:46:08',1,30001894,0,3,0,0,0,0,23,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(348,'2015-03-14 14:56:58','2015-08-29 14:46:08',1,30002864,59,390,420,99,176,536,79,199,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0),(349,'2015-03-14 14:56:58','2015-08-29 14:46:08',1,30004224,0,0,0,0,0,0,0,0,0,351,654,508,0,56,20,0,0,0,0,0,0,0,0,0),(350,'2015-03-14 14:56:58','2015-03-14 14:56:58',1,30001349,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(351,'2015-03-14 14:56:58','2015-08-29 14:46:08',1,30002350,0,0,0,0,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,0,77,0,0,0),(352,'2015-03-14 14:56:58','2015-08-29 14:46:08',1,30001340,55,92,0,0,0,52,0,0,101,50,199,65,106,79,76,0,0,0,26,105,0,0,0,0),(353,'2015-03-14 14:56:58','2015-08-29 14:46:08',1,30002941,362,82,41,85,91,483,93,284,418,539,399,137,0,45,31,194,0,353,0,0,719,333,55,0),(354,'2015-03-14 14:56:58','2015-08-29 14:46:08',1,30002616,0,0,0,0,0,96,841,0,0,0,34,87,0,181,173,228,207,0,0,0,151,146,95,0),(355,'2015-03-14 14:56:58','2015-08-29 14:46:08',1,30003131,0,0,2,3,3,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,3,0,0,0),(356,'2015-03-14 14:56:58','2015-08-29 14:46:08',1,30004878,0,51,3,5,106,0,0,24,0,0,0,0,0,82,34,1,0,0,0,0,0,0,62,0),(357,'2015-03-14 14:56:58','2015-08-29 14:46:08',1,30000255,0,30,152,0,0,2,0,0,0,0,0,117,0,0,0,0,0,0,0,0,0,0,0,0),(358,'2015-03-14 14:56:58','2015-08-29 14:46:08',1,30004949,20,825,56,221,85,105,70,126,128,370,437,429,475,52,6,39,186,0,0,48,113,193,57,0),(359,'2015-03-14 14:56:58','2015-08-29 14:46:08',1,30000251,0,0,0,1,1,0,6,0,0,0,0,0,0,0,0,0,64,0,29,122,0,0,0,0),(360,'2015-03-14 14:56:58','2015-08-29 14:46:08',1,30004009,7,0,0,7,0,0,0,0,0,0,0,0,1,0,0,0,4,10,0,0,0,0,0,0),(361,'2015-03-14 14:56:58','2015-08-29 14:46:08',1,30003708,861,0,0,361,441,21,0,0,76,131,137,97,10,5,4,5,0,104,42,2,5,4,4,0),(362,'2015-03-14 14:56:58','2015-08-29 14:46:08',1,30005165,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,175,0,0,0,0,0,0,0),(363,'2015-03-14 14:56:58','2015-08-29 14:46:08',1,30004188,326,0,0,0,0,180,190,58,0,1406,2063,2740,442,1107,1420,1247,78,0,0,83,563,1107,1174,0),(364,'2015-03-14 14:56:58','2015-08-29 14:46:08',1,30001882,0,19,24,0,0,0,0,0,0,0,0,71,0,0,0,0,87,0,45,0,0,18,20,0),(365,'2015-03-14 14:56:58','2015-08-29 14:46:08',1,30004415,0,43,0,0,0,0,0,0,0,0,0,0,0,134,66,0,0,0,0,0,0,0,22,0),(366,'2015-03-14 14:56:58','2015-08-29 14:46:08',1,30001815,388,23,138,23,81,221,72,453,188,86,155,1101,1,1110,1826,2247,1120,130,404,335,1820,1560,1640,0),(367,'2015-03-14 14:56:58','2015-08-29 14:46:08',1,30003706,0,41,0,0,0,246,165,3,106,65,39,104,45,21,78,67,54,31,53,42,29,132,269,0),(368,'2015-03-14 14:56:58','2015-08-29 14:46:08',1,30004504,0,79,0,0,45,0,0,31,0,0,0,0,0,0,0,0,0,13,3,1,0,0,5,0),(369,'2015-03-14 14:56:58','2015-03-14 14:56:58',1,30000376,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(370,'2015-03-14 14:56:58','2015-08-29 14:46:08',1,30000795,0,0,0,0,0,132,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(371,'2015-03-14 14:56:58','2015-08-29 14:46:08',1,30002469,88,0,148,114,23,55,110,127,0,0,0,0,0,0,0,0,0,0,0,0,174,0,0,0),(372,'2015-03-14 14:56:58','2015-08-29 14:46:08',1,30001578,12,332,401,582,157,0,0,0,0,0,0,0,0,0,0,0,2,0,0,0,0,0,0,0),(373,'2015-03-14 14:56:58','2015-08-29 14:46:08',1,30000749,0,0,0,0,0,112,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(374,'2015-03-14 14:56:58','2015-08-29 14:46:08',1,30004384,0,120,40,0,0,32,19,110,0,37,0,0,0,0,120,164,0,0,0,0,0,0,146,0),(375,'2015-03-14 14:56:58','2015-08-29 14:46:08',1,30002154,0,0,0,0,0,0,0,0,0,0,0,0,0,79,145,70,0,0,0,0,0,0,0,0),(376,'2015-03-14 14:56:58','2015-08-29 14:46:08',1,30000701,0,0,0,0,0,0,0,0,0,0,58,0,0,4,2,2,0,0,0,0,0,4,3,0),(377,'2015-03-14 14:56:58','2015-08-29 14:46:08',1,30005159,0,0,0,0,0,0,20,0,0,2,40,137,223,0,0,0,0,0,0,0,75,25,0,0),(378,'2015-03-14 14:56:58','2015-03-14 14:56:58',1,30000536,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(379,'2015-03-14 14:56:58','2015-03-14 14:56:58',1,30005154,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(380,'2015-03-14 14:56:58','2015-03-14 14:56:58',1,30000361,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(381,'2015-03-14 14:56:58','2015-08-29 14:46:08',1,30001858,0,0,0,0,28,4,0,0,0,5,10,77,31,137,134,177,41,6,46,31,32,74,19,0),(382,'2015-03-14 14:56:58','2015-03-14 14:56:58',1,30004216,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(383,'2015-03-14 14:56:58','2015-08-29 14:46:08',1,30000239,44,442,347,93,0,0,0,0,0,30,8,0,22,14,0,0,0,0,0,0,0,0,0,0),(384,'2015-03-14 14:56:58','2015-08-29 14:46:08',1,30001785,481,15,281,158,183,0,79,0,0,0,0,0,0,0,0,0,0,0,0,0,0,36,53,0),(385,'2015-03-14 14:56:58','2015-08-29 14:46:08',1,30001558,0,0,0,0,0,0,0,0,0,0,0,0,2,0,0,0,0,0,0,0,0,0,7,0),(386,'2015-03-14 14:56:58','2015-08-29 14:46:08',1,30004661,0,0,0,0,0,0,0,0,0,85,1,0,0,0,0,0,0,2,0,0,0,0,17,0),(387,'2015-03-14 14:56:58','2015-08-29 14:46:08',1,30001844,90,91,5,114,56,2,91,103,4,1,0,0,9,90,81,9,0,54,0,90,10,4,4,0),(388,'2015-03-14 14:56:58','2015-03-14 14:56:58',1,30001869,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(389,'2015-03-14 14:56:58','2015-08-29 14:46:08',1,30004716,0,0,0,0,0,0,77,0,4,0,3,0,0,0,0,0,0,0,0,0,0,0,0,0),(390,'2015-03-14 14:56:58','2015-08-29 14:46:08',1,30002495,386,176,319,175,175,0,0,0,257,292,361,296,0,160,274,342,137,571,315,135,341,584,340,0),(391,'2015-03-14 14:56:58','2015-08-29 14:46:08',1,30003351,79,1,92,79,32,4,24,31,4,14,3,4,50,0,0,0,0,0,0,10,0,0,73,0),(392,'2015-03-14 14:56:58','2015-03-14 14:56:58',1,30000818,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(393,'2015-03-14 14:56:58','2015-03-14 14:56:58',1,30002297,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(394,'2015-03-14 14:56:58','2015-08-29 14:46:08',1,30004206,0,0,57,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,92,34,0,0,0),(395,'2015-03-14 14:56:58','2015-08-29 14:46:08',1,30001201,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,27,0,0,16,16,0),(396,'2015-03-14 14:56:58','2015-08-29 14:46:08',1,30000976,0,0,0,0,0,0,0,0,0,0,0,0,0,8,0,0,0,0,0,0,0,64,110,0),(397,'2015-03-14 14:56:58','2015-08-29 14:46:08',1,30000776,0,0,132,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(398,'2015-03-14 14:56:58','2015-08-29 14:46:08',1,30002944,189,157,325,28,0,349,53,0,212,336,273,8,545,397,254,68,0,0,57,182,227,184,421,0),(399,'2015-03-14 14:56:58','2015-08-29 14:46:08',1,30001251,12,163,0,21,21,0,0,0,0,0,0,6,78,23,0,0,0,0,0,5,102,1,0,0),(400,'2015-03-14 14:56:58','2015-08-29 14:46:08',1,30000455,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0),(401,'2015-03-14 14:56:58','2015-08-29 14:46:08',1,30002456,127,2,65,649,542,897,313,62,110,157,217,64,0,0,0,0,178,27,22,0,393,119,0,0),(402,'2015-03-14 14:56:58','2015-08-29 14:46:08',1,30004746,0,0,0,0,0,0,0,0,0,0,0,0,0,307,173,71,0,0,0,0,30,65,85,0),(403,'2015-03-14 14:56:58','2015-08-29 14:46:08',1,30001828,11,174,151,0,8,19,0,0,0,0,0,0,0,0,0,4,871,450,161,0,0,25,906,0),(404,'2015-03-14 14:56:58','2015-08-29 14:46:08',1,30002585,94,0,0,0,0,0,104,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(405,'2015-03-14 14:56:58','2015-08-29 14:46:08',1,30001149,18,19,26,24,13,24,8,28,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(406,'2015-03-14 14:56:58','2015-08-29 14:46:08',1,30002625,0,0,271,0,0,284,2,0,601,649,658,94,0,0,0,0,0,0,0,0,0,0,0,0),(407,'2015-03-14 14:56:58','2015-08-29 14:46:08',1,30001300,0,14,0,0,0,0,0,0,0,52,80,3,0,0,12,12,0,0,0,89,0,0,0,0),(408,'2015-03-14 14:56:58','2015-08-29 14:46:08',1,30001335,0,86,169,0,0,0,11,0,184,68,70,112,75,92,85,90,104,96,106,121,87,104,76,0),(409,'2015-03-14 14:56:58','2015-08-29 14:46:08',1,30000630,0,0,0,0,0,0,0,0,0,0,0,0,0,306,350,237,0,0,0,0,0,0,0,0),(410,'2015-03-14 14:56:58','2015-08-29 14:46:08',1,30004221,0,0,0,76,16,83,0,62,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(411,'2015-03-14 14:56:58','2015-03-14 14:56:58',1,30000415,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(412,'2015-03-14 14:56:58','2015-03-14 14:56:58',1,30001512,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(413,'2015-03-14 14:56:58','2015-08-29 14:46:08',1,30002889,0,0,0,0,0,41,85,0,0,90,98,0,0,0,0,0,0,0,0,0,0,3,0,0),(414,'2015-03-14 14:56:58','2015-08-29 14:46:08',1,30002461,178,0,38,49,182,216,362,375,136,181,124,99,0,237,174,58,1020,0,228,69,295,310,531,0),(415,'2015-03-14 14:56:58','2015-03-14 14:56:58',1,30004736,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(416,'2015-03-14 14:56:58','2015-08-29 14:46:08',1,30001940,0,0,0,0,0,0,0,0,0,0,0,0,79,8,6,0,7,0,0,0,0,0,21,0),(417,'2015-03-14 14:56:58','2015-08-29 14:46:08',1,30004673,0,0,0,1,0,0,0,0,0,0,0,0,22,28,0,0,0,51,37,3,0,0,0,0),(418,'2015-03-14 14:56:58','2015-08-29 14:46:08',1,30000646,0,0,0,0,0,22,0,0,0,0,0,78,0,0,0,0,0,0,0,0,0,0,0,0),(419,'2015-03-14 14:56:58','2015-08-29 14:46:08',1,30004391,115,379,369,276,309,8,474,232,148,213,140,368,0,0,0,0,35,0,0,0,0,0,24,0),(420,'2015-03-14 14:56:58','2015-03-14 14:56:58',1,30000762,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(421,'2015-03-14 14:56:58','2015-08-29 14:46:08',1,30004166,448,295,242,371,277,232,0,88,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(422,'2015-03-14 14:56:58','2015-08-29 14:46:08',1,30004789,0,0,0,0,0,0,0,0,0,0,0,14,643,512,580,609,161,0,110,116,358,391,552,0),(423,'2015-03-14 14:56:58','2015-08-29 14:46:08',1,30003310,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(424,'2015-03-14 14:56:58','2015-08-29 14:46:08',1,30003214,96,0,241,440,808,530,178,148,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(425,'2015-03-14 14:56:58','2015-08-29 14:46:08',1,30003111,0,0,0,0,0,0,0,20,0,0,0,0,0,0,0,0,0,0,0,0,0,31,0,0),(426,'2015-03-14 14:56:58','2015-08-29 14:46:08',1,30001972,0,0,85,0,0,0,0,0,0,0,0,0,0,0,0,0,0,38,0,0,0,0,0,0),(427,'2015-03-14 14:56:58','2015-08-29 14:46:08',1,30001101,0,0,0,0,0,0,0,0,0,0,0,0,226,232,234,201,0,177,135,260,323,390,151,0),(428,'2015-03-14 14:56:58','2015-03-14 14:56:58',1,30004774,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(429,'2015-03-14 14:56:58','2015-08-29 14:46:08',1,30004670,8,82,7,21,20,11,0,47,0,0,0,14,0,69,52,98,213,0,16,137,16,66,82,0),(430,'2015-03-14 14:56:58','2015-08-29 14:46:08',1,30004573,0,0,0,0,0,0,0,0,0,0,0,0,3,0,0,0,0,0,0,0,4,59,62,0),(431,'2015-03-14 14:56:58','2015-08-29 14:46:08',1,30003290,1,0,17,76,0,0,0,0,5,17,0,0,0,37,33,0,0,0,0,0,9,0,6,0),(432,'2015-03-14 14:56:58','2015-08-29 14:46:08',1,30003321,0,34,0,19,19,18,0,0,3,0,0,0,0,0,0,0,0,0,17,8,0,0,0,0),(433,'2015-03-14 14:56:58','2015-08-29 14:46:08',1,30003267,66,0,174,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,10,6,8,17,0,0),(434,'2015-03-14 14:56:58','2015-08-29 14:46:08',1,30004412,0,42,0,0,0,5,0,0,0,0,0,0,1,37,0,0,0,0,0,0,0,0,0,0),(435,'2015-03-14 14:56:58','2015-08-29 14:46:08',1,30004455,0,0,0,19,0,0,0,0,0,0,0,0,0,0,0,0,0,35,0,0,0,215,428,0),(436,'2015-03-14 14:56:58','2015-08-29 14:46:08',1,30004039,0,23,0,0,0,4,0,0,1,0,0,0,0,0,0,0,0,0,0,0,34,0,0,0),(437,'2015-03-14 14:56:58','2015-08-29 14:46:08',1,30000705,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,14,0,0),(438,'2015-03-14 14:56:58','2015-08-29 14:46:08',1,30001241,0,0,0,0,0,0,0,0,596,555,586,382,116,291,162,221,24,43,155,223,33,144,190,0),(439,'2015-03-14 14:56:58','2015-03-14 14:56:58',1,30004865,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(440,'2015-03-14 14:56:58','2015-08-29 14:46:08',1,30003630,21,0,0,59,106,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(441,'2015-03-14 14:56:58','2015-08-29 14:46:08',1,30004374,0,160,373,107,339,0,0,13,0,0,0,0,236,282,225,176,0,0,0,96,94,215,20,0),(442,'2015-03-14 14:56:58','2015-03-14 14:56:58',1,30001478,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(443,'2015-03-14 14:56:58','2015-08-29 14:46:08',1,30003302,0,0,0,0,0,0,3,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,14,0),(444,'2015-03-14 14:56:58','2015-08-29 14:46:08',1,30005151,0,0,0,0,0,0,0,0,0,0,0,0,0,0,3,49,0,0,3,0,2,82,0,0),(445,'2015-03-14 14:56:58','2015-08-29 14:46:08',1,30002883,60,108,2,106,35,148,0,0,0,0,0,0,613,647,672,522,180,513,0,0,0,0,0,0),(446,'2015-03-14 14:56:58','2015-08-29 14:46:08',1,30003346,0,0,6,0,0,0,0,12,21,0,0,0,0,25,25,0,0,28,47,19,0,0,0,0),(447,'2015-03-14 14:56:58','2015-03-14 14:56:58',1,30001641,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(448,'2015-03-14 14:56:58','2015-08-29 14:46:08',1,30000912,69,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(449,'2015-03-14 14:56:58','2015-08-29 14:46:08',1,30003354,0,0,41,17,0,46,68,0,31,21,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(450,'2015-03-14 14:56:58','2015-03-14 14:56:58',1,30000453,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(451,'2015-03-14 14:56:58','2015-08-29 14:46:08',1,30004344,218,285,200,458,511,143,230,701,305,209,154,40,420,257,367,574,138,639,395,160,231,768,493,0),(452,'2015-03-14 14:56:58','2015-08-29 14:46:08',1,30000989,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,39,59,0,0,0,0,0,0),(453,'2015-03-14 14:56:58','2015-08-29 14:46:08',1,30002480,16,18,88,0,0,0,0,0,32,17,0,0,0,0,0,0,0,0,0,0,33,32,97,0),(454,'2015-03-14 14:56:58','2015-03-14 14:56:58',1,30001480,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(455,'2015-03-14 14:56:58','2015-08-29 14:46:08',1,30000908,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,77,61,0,0),(456,'2015-03-14 14:56:58','2015-08-29 14:46:08',1,30004643,0,0,0,0,0,0,69,0,0,0,0,0,0,0,0,0,0,0,0,0,17,6,0,0),(457,'2015-03-14 14:56:58','2015-08-29 14:46:08',1,30003350,0,4,0,0,0,5,0,12,3,3,68,235,39,14,11,12,20,0,0,8,2,0,10,0),(458,'2015-03-14 14:56:58','2015-08-29 14:46:08',1,30001850,0,0,1,0,0,0,0,2,3,0,1,48,60,48,39,115,81,19,113,83,65,21,33,0),(459,'2015-03-14 14:56:58','2015-08-29 14:46:08',1,30004212,91,8,0,0,2,43,504,368,273,138,101,233,287,76,12,0,185,158,143,87,174,84,25,0),(460,'2015-03-14 14:56:58','2015-08-29 14:46:08',1,30004675,0,712,24,0,0,33,0,0,16,23,12,0,40,23,5,5,14,9,12,13,9,4,3,0),(461,'2015-03-14 14:56:58','2015-08-29 14:46:08',1,30001104,181,0,22,18,745,26,753,312,12,0,0,208,0,0,37,37,341,0,0,0,123,68,454,0),(462,'2015-03-14 14:56:58','2015-08-29 14:46:08',1,30004761,0,0,0,0,0,0,0,0,12,47,21,0,66,0,67,67,0,192,0,0,21,79,227,0),(463,'2015-03-14 14:56:58','2015-08-29 14:46:08',1,30000844,0,0,0,0,92,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(464,'2015-03-14 14:56:58','2015-03-14 14:56:58',1,30000562,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(465,'2015-03-14 14:56:58','2015-08-29 14:46:08',1,30000554,66,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(466,'2015-03-14 14:56:58','2015-08-29 14:46:08',1,30004168,65,0,0,0,0,0,0,27,0,21,21,0,0,0,0,0,20,0,0,0,0,0,0,0),(467,'2015-03-14 14:56:58','2015-08-29 14:46:08',1,30001014,0,51,21,21,9,0,0,0,0,0,0,0,0,0,0,24,60,0,0,100,128,0,41,0),(468,'2015-03-14 14:56:58','2015-08-29 14:46:08',1,30004175,0,0,0,24,72,0,0,0,0,0,0,0,143,59,0,0,0,0,0,0,0,0,0,0),(469,'2015-03-14 14:56:58','2015-08-29 14:46:08',1,30004193,196,767,277,248,742,156,249,25,339,534,564,553,30,139,163,529,620,31,121,244,613,502,403,0),(470,'2015-03-14 14:56:58','2015-08-29 14:46:08',1,30004445,0,62,13,101,49,0,0,0,0,0,0,0,0,3,0,0,0,0,0,0,39,11,0,0),(471,'2015-03-14 14:56:58','2015-08-29 14:46:08',1,30000637,0,0,0,0,0,0,14,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(472,'2015-03-14 14:56:58','2015-08-29 14:46:08',1,30002501,1,0,47,55,0,0,72,0,321,0,0,0,0,0,0,0,47,0,0,0,0,9,0,0),(473,'2015-03-14 14:56:58','2015-08-29 14:46:08',1,30000992,0,0,0,0,0,0,0,0,0,0,0,0,3,26,0,0,0,0,0,0,0,0,0,0),(474,'2015-03-14 14:56:58','2015-08-29 14:46:08',1,30002591,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,34,0,0,0),(475,'2015-03-14 14:56:58','2015-08-29 14:46:08',1,30000581,45,48,0,17,0,94,47,36,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(476,'2015-03-14 14:56:58','2015-08-29 14:46:08',1,30004185,407,242,100,485,483,468,0,294,0,123,423,1510,47,400,1066,1794,1299,0,0,114,948,615,536,0),(477,'2015-03-14 14:56:58','2015-08-29 14:46:08',1,30000820,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(478,'2015-03-14 14:56:58','2015-08-29 14:46:08',1,30003720,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,15,0),(479,'2015-03-14 14:56:58','2015-03-14 14:56:58',1,30002291,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(480,'2015-03-14 14:56:58','2015-03-14 14:56:58',1,30001951,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(481,'2015-03-14 14:56:58','2015-03-14 14:56:58',1,30000442,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(482,'2015-03-14 14:56:58','2015-03-14 14:56:58',1,30003223,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(483,'2015-03-14 14:56:58','2015-08-29 14:46:08',1,30003738,137,1057,356,400,347,826,199,302,257,518,574,105,39,89,122,101,1,0,24,298,135,92,371,0),(484,'2015-03-14 14:56:58','2015-08-29 14:46:08',1,30003348,0,0,0,0,0,0,0,12,0,2,0,40,45,0,11,62,0,163,36,0,0,0,0,0),(485,'2015-03-14 14:56:58','2015-08-29 14:46:08',1,30001532,0,0,0,136,162,0,0,0,24,0,31,111,0,0,0,0,121,0,0,0,0,110,0,0),(486,'2015-03-14 14:56:58','2015-08-29 14:46:08',1,30004345,690,494,411,326,477,517,451,923,44,49,250,287,216,322,325,217,246,114,153,48,510,294,338,0),(487,'2015-03-14 14:56:58','2015-08-29 14:46:08',1,30000741,0,216,98,42,35,151,0,0,0,0,0,0,0,32,1,0,287,0,0,0,0,0,0,0),(488,'2015-03-14 14:56:58','2015-03-14 14:56:58',1,30000609,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(489,'2015-03-14 14:56:58','2015-03-14 14:56:58',1,30000468,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(490,'2015-03-14 14:56:58','2015-08-29 14:46:08',1,30004477,0,84,909,0,0,55,0,0,0,75,214,18,205,165,181,158,96,0,108,195,37,333,214,0),(491,'2015-03-14 14:56:58','2015-08-29 14:46:08',1,30000564,24,79,90,0,0,33,0,0,342,49,11,0,144,102,100,64,23,0,0,0,100,139,8,0),(492,'2015-03-14 14:56:58','2015-08-29 14:46:08',1,30004067,0,18,16,0,0,19,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(493,'2015-03-14 14:56:58','2015-08-29 14:46:08',1,30002950,411,131,303,136,127,361,272,577,236,763,814,114,141,289,242,255,256,279,269,0,143,60,206,0),(494,'2015-03-14 14:56:58','2015-03-14 14:56:58',1,30005115,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(495,'2015-03-14 14:56:58','2015-08-29 14:46:08',1,30000299,93,8,55,152,361,45,45,5,0,0,8,18,247,151,89,80,9,0,8,58,120,155,214,0),(496,'2015-03-14 14:56:58','2015-03-14 14:56:58',1,30002313,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(497,'2015-03-14 14:56:58','2015-08-29 14:46:08',1,30004008,0,0,0,0,0,0,0,55,0,0,0,0,0,0,0,0,0,3,0,0,0,0,0,0),(498,'2015-03-14 14:56:58','2015-03-14 14:56:58',1,30005152,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(499,'2015-03-14 14:56:58','2015-03-14 14:56:58',1,30001626,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(500,'2015-03-14 14:56:58','2015-08-29 14:46:08',1,30002927,23,310,150,27,27,0,74,6,0,136,94,127,112,1520,1560,1660,70,878,789,856,781,294,357,0),(501,'2015-03-14 14:56:58','2015-08-29 14:46:08',1,30004508,3,0,0,0,0,0,0,0,0,0,0,0,0,67,0,53,0,0,0,0,0,2,46,0),(502,'2015-03-14 14:56:58','2015-08-29 14:46:08',1,30004432,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,29,0,0,0,0),(503,'2015-03-14 14:56:58','2015-08-29 14:46:08',1,30000218,16,11,130,9,1,42,17,7,0,21,49,0,0,0,0,0,0,0,0,0,0,0,0,0),(504,'2015-03-14 14:56:58','2015-08-29 14:46:08',1,30005110,0,0,4,0,0,0,0,0,21,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(505,'2015-03-14 14:56:58','2015-08-29 14:46:08',1,30002005,15,121,52,43,62,42,89,4,10,0,29,28,44,0,0,6,0,24,0,6,17,25,54,0),(506,'2015-03-14 14:56:58','2015-08-29 14:46:08',1,30005111,0,263,34,0,0,0,0,0,0,0,0,0,0,0,2,2,0,1,0,0,0,0,0,0),(507,'2015-03-14 14:56:58','2015-03-14 14:56:58',1,30001503,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(508,'2015-03-14 14:56:58','2015-08-29 14:46:08',1,30004053,0,0,30,0,3,5,31,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0),(509,'2015-03-14 14:56:58','2015-08-29 14:46:08',1,30005114,70,52,42,64,57,4,82,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(510,'2015-03-14 14:56:58','2015-08-29 14:46:08',1,30003640,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,35,0,0,0,0,0,0),(511,'2015-03-14 14:56:58','2015-08-29 14:46:08',1,30003280,0,0,0,6,6,0,0,0,4,0,0,19,6,0,3,3,0,19,3,2,0,0,0,0),(512,'2015-03-14 14:56:58','2015-03-14 14:56:58',1,30004486,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(513,'2015-03-14 14:56:58','2015-03-14 14:56:58',1,30000706,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(514,'2015-03-14 14:56:58','2015-08-29 14:46:08',1,30001759,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,13,5,0,0,0,0,0),(515,'2015-03-14 14:56:58','2015-03-14 14:56:58',1,30001603,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(516,'2015-03-14 14:56:58','2015-08-29 14:46:08',1,30002167,0,0,0,0,0,0,0,0,100,113,252,56,468,221,145,44,10,79,155,29,17,0,69,0),(517,'2015-03-14 14:56:58','2015-08-29 14:46:08',1,30004810,0,0,0,0,0,0,0,0,0,0,0,0,0,3,4,4,0,0,0,0,0,0,0,0),(518,'2015-03-14 14:56:58','2015-03-14 14:56:58',1,30001167,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(519,'2015-03-14 14:56:58','2015-08-29 14:46:08',1,30000728,4,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(520,'2015-03-14 14:56:58','2015-08-29 14:46:08',1,30000557,0,0,0,0,0,0,122,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0),(521,'2015-03-14 14:56:58','2015-08-29 14:46:08',1,30001184,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,22,168,215,16,0,0,0,0),(522,'2015-03-14 14:56:58','2015-03-14 14:56:58',1,30001492,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(523,'2015-03-14 14:56:58','2015-08-29 14:46:08',1,30004347,619,564,1179,860,1000,684,632,566,593,315,132,190,51,282,280,178,310,497,140,229,228,372,48,0),(524,'2015-03-14 14:56:58','2015-08-29 14:46:08',1,30003745,266,77,179,106,18,131,0,222,105,448,321,396,377,122,198,312,599,95,88,54,177,12,46,0),(525,'2015-03-14 14:56:58','2015-03-14 14:56:58',1,30001488,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(526,'2015-03-14 14:56:58','2015-08-29 14:46:08',1,30003145,14,0,103,52,33,33,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(527,'2015-03-14 14:56:58','2015-08-29 14:46:08',1,30003316,0,0,28,16,12,0,0,0,89,0,0,0,0,2,0,8,0,73,0,0,0,0,0,0),(528,'2015-03-14 14:56:58','2015-08-29 14:46:08',1,30001111,389,368,502,269,233,110,6,147,0,480,400,404,432,171,135,31,1120,820,600,315,387,1077,1156,0),(529,'2015-03-14 14:56:58','2015-08-29 14:46:08',1,30003956,0,8,0,0,0,0,359,241,0,0,0,0,0,0,0,0,0,0,0,0,133,0,0,0),(530,'2015-03-14 14:56:58','2015-08-29 14:46:08',1,30003315,10,0,0,0,0,0,0,0,17,31,32,21,0,0,0,0,0,0,0,0,0,70,0,0),(531,'2015-03-14 14:56:58','2015-08-29 14:46:08',1,30000513,0,0,145,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(532,'2015-03-14 14:56:58','2015-08-29 14:46:08',1,30001092,0,0,0,0,0,0,0,0,0,8,10,0,4,8,14,10,0,10,9,14,57,0,0,0),(533,'2015-03-14 14:56:58','2015-08-29 14:46:08',1,30001317,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,32,0,0,0,0,0,0),(534,'2015-03-14 14:56:58','2015-08-29 14:46:08',1,30004923,255,511,382,1,24,155,0,0,285,1334,1242,823,15,883,905,1315,1502,0,0,0,863,766,1821,0),(535,'2015-03-14 14:56:58','2015-08-29 14:46:08',1,30000289,0,0,0,0,0,0,20,33,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(536,'2015-03-14 14:56:58','2015-03-14 14:56:58',1,30000985,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(537,'2015-03-14 14:56:58','2015-08-29 14:46:08',1,30004604,0,0,81,8,5,0,0,0,0,0,0,44,0,0,0,0,73,0,0,0,0,0,29,0),(538,'2015-03-14 14:56:58','2015-08-29 14:46:08',1,30000791,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,3,0,0,0,0,0,0,0),(539,'2015-03-14 14:56:58','2015-08-29 14:46:08',1,30002593,0,19,0,0,8,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(540,'2015-03-14 14:56:58','2015-03-14 14:56:58',1,30001624,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(541,'2015-03-14 14:56:58','2015-08-29 14:46:08',1,30001134,230,25,158,198,238,11,250,141,0,0,0,0,0,0,0,0,0,0,0,83,0,0,0,0),(542,'2015-03-14 14:56:58','2015-08-29 14:46:08',1,30002623,50,0,31,244,152,0,271,140,0,0,0,0,0,0,0,0,0,0,0,0,0,0,103,0),(543,'2015-03-14 14:56:58','2015-08-29 14:46:08',1,30000764,0,0,0,0,0,0,126,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(544,'2015-03-14 14:56:58','2015-03-14 14:56:58',1,30000371,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(545,'2015-03-14 14:56:58','2015-08-29 14:46:08',1,30001257,516,91,129,102,51,0,119,70,732,650,382,19,311,200,162,90,40,181,286,22,229,244,234,0),(546,'2015-03-14 14:56:58','2015-08-29 14:46:08',1,30003270,0,8,0,0,0,0,15,0,4,0,0,0,0,0,0,0,0,0,36,0,0,11,0,0),(547,'2015-03-14 14:56:58','2015-08-29 14:46:08',1,30002619,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,5,21,0),(548,'2015-03-14 14:56:58','2015-08-29 14:46:08',1,30000907,0,7,81,56,64,0,0,0,0,0,0,0,64,56,69,34,0,79,83,86,67,37,0,0),(549,'2015-03-14 14:56:58','2015-08-29 14:46:08',1,30003139,53,0,30,326,143,55,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(550,'2015-03-14 14:56:58','2015-08-29 14:46:08',1,30004591,0,17,127,14,11,223,98,11,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(551,'2015-03-14 14:56:58','2015-03-14 14:56:58',1,30000402,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(552,'2015-03-14 14:56:58','2015-08-29 14:46:08',1,30002855,0,0,0,119,167,0,0,0,0,0,0,0,53,1,0,0,0,0,0,6,0,0,0,0),(553,'2015-03-14 14:56:58','2015-08-29 14:46:08',1,30002025,556,174,619,607,198,1,10,592,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(554,'2015-03-14 14:56:58','2015-08-29 14:46:08',1,30002459,92,0,0,21,42,0,21,94,34,8,0,0,0,0,0,0,0,0,0,0,0,3,91,0),(555,'2015-03-14 14:56:58','2015-08-29 14:46:08',1,30001290,276,226,237,47,103,64,4,47,108,320,345,61,0,0,28,35,51,0,43,77,383,6,31,0),(556,'2015-03-14 14:56:58','2015-08-29 14:46:08',1,30004442,419,111,209,89,114,41,1,6,199,23,4,21,10,35,9,23,58,14,14,0,13,10,14,0),(557,'2015-03-14 14:56:58','2015-08-29 14:46:08',1,30004073,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,80,0,0,0,0,0,0),(558,'2015-03-14 14:56:58','2015-08-29 14:46:08',1,30000457,0,44,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(559,'2015-03-14 14:56:58','2015-08-29 14:46:08',1,30003648,233,103,136,141,87,41,101,55,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(560,'2015-03-14 14:56:58','2015-08-29 14:46:08',1,30004740,0,0,0,1,5,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,5,0,0),(561,'2015-03-14 14:56:58','2015-08-29 14:46:08',1,30005128,0,0,126,52,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(562,'2015-03-14 14:56:58','2015-03-14 14:56:58',1,30000364,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(563,'2015-03-14 14:56:58','2015-08-29 14:46:08',1,30001930,199,85,170,66,244,206,27,29,113,111,57,51,115,257,177,150,247,189,0,128,172,226,688,0),(564,'2015-03-14 14:56:58','2015-08-29 14:46:08',1,30003303,1,0,0,36,59,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(565,'2015-03-14 14:56:58','2015-08-29 14:46:08',1,30004070,64,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,5,0,0,0,0),(566,'2015-03-14 14:56:58','2015-08-29 14:46:08',1,30002446,0,96,7,0,76,0,0,8,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(567,'2015-03-14 14:56:58','2015-03-14 14:56:58',1,30003179,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(568,'2015-03-14 14:56:58','2015-08-29 14:46:08',1,30004908,0,0,146,516,1056,230,0,0,0,0,0,132,0,67,367,526,392,69,0,0,0,67,51,0),(569,'2015-03-14 14:56:58','2015-08-29 14:46:08',1,30001545,0,0,0,0,0,0,0,0,0,6,4,0,0,0,0,0,0,0,0,11,0,0,1,0),(570,'2015-03-14 14:56:58','2015-08-29 14:46:08',1,30003210,32,0,5,0,0,0,0,0,0,0,0,0,0,0,0,0,15,0,0,0,0,1,0,0),(571,'2015-03-14 14:56:58','2015-08-29 14:46:08',1,30001339,64,9,0,0,0,46,9,4,48,80,29,0,106,88,93,89,60,0,21,111,0,0,0,0),(572,'2015-03-14 14:56:58','2015-08-29 14:46:08',1,30001067,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,30,0,0,0,0),(573,'2015-03-14 14:56:58','2015-08-29 14:46:08',1,30002832,0,0,0,0,0,0,305,135,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(574,'2015-03-14 14:56:58','2015-08-29 14:46:08',1,30004608,3,0,0,0,0,0,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,5,0,0),(575,'2015-03-14 14:56:58','2015-08-29 14:46:08',1,30001574,4,78,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,69,0,0,0,0,0,0),(576,'2015-03-14 14:56:58','2015-08-29 14:46:08',1,30001276,316,145,213,151,145,168,42,120,56,70,48,101,68,85,94,148,374,72,53,11,18,168,283,0),(577,'2015-03-14 14:56:58','2015-03-14 14:56:58',1,30000967,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(578,'2015-03-14 14:56:58','2015-08-29 14:46:08',1,30000258,4,47,68,16,9,177,0,0,131,40,41,12,128,173,151,103,117,0,124,63,174,26,0,0),(579,'2015-03-14 14:56:58','2015-08-29 14:46:08',1,30001197,0,0,0,0,0,0,0,0,0,0,30,36,0,74,74,0,0,0,3,0,0,0,4,0),(580,'2015-03-14 14:56:58','2015-08-29 14:46:08',1,30001907,0,0,0,0,12,1,0,0,17,0,7,24,0,0,0,0,0,0,0,5,97,36,13,0),(581,'2015-03-14 14:56:58','2015-08-29 14:46:08',1,30000297,28,0,0,0,0,0,0,0,15,198,406,148,0,412,130,1,0,0,0,0,7,0,0,0),(582,'2015-03-14 14:56:58','2015-08-29 14:46:08',1,30002465,0,0,28,69,170,4,304,0,0,0,0,0,0,0,0,0,0,0,0,138,0,0,0,0),(583,'2015-03-14 14:56:58','2015-08-29 14:46:08',1,30004792,0,0,0,0,0,0,0,0,0,8,1,147,32,55,86,321,115,0,0,290,370,497,895,0),(584,'2015-03-14 14:56:58','2015-08-29 14:46:08',1,30004057,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,31,0),(585,'2015-03-14 14:56:58','2015-08-29 14:46:08',1,30001328,61,17,1,0,0,2,13,0,29,0,0,29,0,60,0,0,21,0,0,26,0,0,11,0),(586,'2015-03-14 14:56:58','2015-08-29 14:46:08',1,30001075,0,0,0,0,0,0,35,68,289,351,132,408,3,89,0,18,135,0,0,0,17,0,159,0),(587,'2015-03-14 14:56:58','2015-08-29 14:46:08',1,30004525,0,0,0,0,0,0,18,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(588,'2015-03-14 14:56:58','2015-08-29 14:46:08',1,30004925,0,99,0,0,0,1,0,142,0,0,0,0,0,0,0,0,0,1,0,0,0,1,1,0),(589,'2015-03-14 14:56:58','2015-08-29 14:46:08',1,30004585,0,0,0,0,0,0,0,0,0,0,0,0,129,0,0,0,0,34,5,10,0,0,0,0),(590,'2015-03-14 14:56:58','2015-03-14 14:56:58',1,30001608,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(591,'2015-03-14 14:56:58','2015-08-29 14:46:08',1,30000525,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,36,0),(592,'2015-03-14 14:56:58','2015-03-14 14:56:58',1,30000919,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(593,'2015-03-14 14:56:58','2015-08-29 14:46:08',1,30000759,0,136,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(594,'2015-03-14 14:56:58','2015-08-29 14:46:08',1,30000224,8,0,0,33,0,0,17,0,0,99,134,33,45,30,0,0,0,0,0,0,0,0,0,0),(595,'2015-03-14 14:56:58','2015-08-29 14:46:08',1,30004790,0,0,0,0,0,0,0,0,0,0,81,41,0,0,0,23,28,25,157,108,111,5,142,0),(596,'2015-03-14 14:56:58','2015-08-29 14:46:08',1,30000487,0,0,48,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,9,84,0),(597,'2015-03-14 14:56:58','2015-08-29 14:46:08',1,30000287,466,3,230,547,541,127,349,43,56,0,0,0,99,130,25,0,0,74,142,125,140,64,100,0),(598,'2015-03-14 14:56:58','2015-03-14 14:56:58',1,30001588,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(599,'2015-03-14 14:56:58','2015-08-29 14:46:08',1,30000217,783,22,316,33,44,99,61,295,0,106,1,0,45,26,237,227,76,173,53,551,213,1,199,0),(600,'2015-03-14 14:56:58','2015-08-29 14:46:08',1,30003217,142,521,371,280,313,234,84,70,0,0,0,0,0,98,32,0,0,0,0,0,5,0,0,0),(601,'2015-03-14 14:56:58','2015-08-29 14:46:08',1,30001884,0,2,0,18,0,0,0,1,0,24,0,0,0,0,0,1,0,0,0,15,0,20,16,0),(602,'2015-03-14 14:56:58','2015-08-29 14:46:08',1,30001057,0,0,1,0,0,0,78,0,0,60,154,201,0,0,0,0,0,0,0,0,0,0,0,0),(603,'2015-03-14 14:56:58','2015-08-29 14:46:08',1,30002158,0,0,0,0,0,0,0,0,300,50,71,0,0,40,58,26,0,164,30,0,32,17,1,0),(604,'2015-03-14 14:56:58','2015-08-29 14:46:08',1,30000726,0,36,0,0,0,0,150,81,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0),(605,'2015-03-14 14:56:58','2015-08-29 14:46:08',1,30004893,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,17,0,0,0,0,0,0,0,0),(606,'2015-03-14 14:56:58','2015-08-29 14:46:08',1,30002848,0,0,0,0,0,0,0,83,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(607,'2015-03-14 14:56:58','2015-08-29 14:46:08',1,30000787,0,0,0,0,0,0,0,0,0,0,0,0,0,6,6,0,0,0,0,0,0,0,0,0),(608,'2015-03-14 14:56:58','2015-03-14 14:56:58',1,30000333,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(609,'2015-03-14 14:56:58','2015-08-29 14:46:08',1,30000827,0,0,0,0,0,0,0,0,203,75,0,54,118,0,0,0,0,69,130,114,0,0,0,0),(610,'2015-03-14 14:56:58','2015-08-29 14:46:08',1,30004429,0,0,28,0,0,0,0,0,37,0,0,0,1,0,0,0,0,0,0,75,0,0,0,0),(611,'2015-03-14 14:56:58','2015-08-29 14:46:08',1,30004620,354,348,317,169,146,73,200,241,0,72,160,51,28,44,59,75,72,8,9,38,14,55,43,0),(612,'2015-03-14 14:56:58','2015-08-29 14:46:08',1,30004045,0,0,0,6,0,0,0,0,0,0,0,11,0,131,131,1,0,0,0,0,0,0,7,0),(613,'2015-03-14 14:56:58','2015-08-29 14:46:08',1,30000483,0,0,0,47,29,98,0,0,152,0,9,0,0,0,118,119,0,0,0,3,0,0,1,0),(614,'2015-03-14 14:56:58','2015-08-29 14:46:08',1,30000773,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,6,0,32,0),(615,'2015-03-14 14:56:58','2015-03-14 14:56:58',1,30004816,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(616,'2015-03-14 14:56:58','2015-08-29 14:46:08',1,30002125,0,0,95,0,0,0,0,0,0,0,0,0,0,7,7,0,0,22,15,17,81,21,33,0),(617,'2015-03-14 14:56:58','2015-08-29 14:46:08',1,30005145,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,82,0,0,0,30,62,0,0),(618,'2015-03-14 14:56:58','2015-03-14 14:56:58',1,30001639,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(619,'2015-03-14 14:56:58','2015-08-29 14:46:08',1,30004635,0,15,147,0,0,1,0,572,33,216,243,157,0,0,0,0,23,0,174,0,51,451,277,0),(620,'2015-03-14 14:56:58','2015-08-29 14:46:08',1,30004616,110,349,369,265,66,0,1,167,0,0,0,0,0,0,30,161,114,0,0,0,0,0,8,0),(621,'2015-03-14 14:56:58','2015-03-14 14:56:58',1,30000360,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(622,'2015-03-14 14:56:58','2015-08-29 14:46:08',1,30002046,0,0,14,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(623,'2015-03-14 14:56:58','2015-08-29 14:46:08',1,30003671,0,118,1,0,0,0,0,0,0,0,0,0,0,0,0,0,99,121,0,0,0,0,0,0),(624,'2015-03-14 14:56:58','2015-08-29 14:46:08',1,30000840,0,0,0,0,0,0,0,0,122,31,1,0,68,0,0,0,1,0,0,0,4,0,4,0),(625,'2015-03-14 14:56:58','2015-08-29 14:46:08',1,30001817,9,270,643,91,292,722,5,11,1659,78,125,447,461,1160,1675,1635,1998,335,759,1042,1151,130,871,0),(626,'2015-03-14 14:56:58','2015-08-29 14:46:08',1,30000323,30,0,0,0,0,50,0,0,0,0,0,5,20,0,0,0,0,0,0,0,0,0,0,0),(627,'2015-03-14 14:56:58','2015-08-29 14:46:08',1,30004768,0,0,0,0,0,0,0,121,0,43,43,3,0,78,119,233,253,16,0,2,134,317,337,0),(628,'2015-03-14 14:56:58','2015-08-29 14:46:08',1,30003948,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,60,0,0,0,0,0,1,0),(629,'2015-03-14 14:56:58','2015-03-14 14:56:58',1,30001457,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(630,'2015-03-14 14:56:58','2015-08-29 14:46:08',1,30000955,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,77,0,0,0,0),(631,'2015-03-14 14:56:58','2015-03-14 14:56:58',1,30005176,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(632,'2015-03-14 14:56:58','2015-08-29 14:46:08',1,30000606,0,0,47,78,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(633,'2015-03-14 14:56:58','2015-08-29 14:46:08',1,30004872,21,110,182,2,0,0,25,13,0,0,0,0,0,0,0,0,0,0,0,0,0,23,118,0),(634,'2015-03-14 14:56:58','2015-08-29 14:46:08',1,30000745,0,0,0,0,0,0,127,0,25,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(635,'2015-03-14 14:56:58','2015-08-29 14:46:08',1,30004926,0,0,0,0,0,0,7,0,0,441,321,23,87,94,57,154,600,0,0,0,47,560,362,0),(636,'2015-03-14 14:56:58','2015-08-29 14:46:08',1,30001218,0,0,0,0,0,0,0,0,179,305,409,273,683,34,135,208,38,12,130,74,100,38,20,0),(637,'2015-03-14 14:56:58','2015-03-14 14:56:58',1,30000383,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(638,'2015-03-14 14:56:58','2015-08-29 14:46:08',1,30005138,0,0,0,0,0,0,4,46,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(639,'2015-03-14 14:56:58','2015-08-29 14:46:08',1,30004860,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,0,0,0,0),(640,'2015-03-14 14:56:58','2015-08-29 14:46:08',1,30001232,103,42,147,6,192,69,10,165,0,17,111,53,0,0,0,0,0,0,0,0,0,0,0,0),(641,'2015-03-14 14:56:58','2015-03-14 14:56:58',1,30005146,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(642,'2015-03-14 14:56:58','2015-03-14 14:56:58',1,30000353,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(643,'2015-03-14 14:56:58','2015-08-29 14:46:08',1,30003165,379,0,40,39,4,0,0,0,109,0,0,0,75,0,0,69,76,46,90,215,113,55,192,0),(644,'2015-03-14 14:56:58','2015-08-29 14:46:08',1,30000943,0,0,0,0,0,5,0,9,0,17,16,10,6,0,0,6,0,5,0,1,5,1,61,0),(645,'2015-03-14 14:56:58','2015-08-29 14:46:08',1,30001845,3,1,1,0,0,0,14,0,99,10,13,4,5,91,95,10,3,0,24,4,0,3,4,0),(646,'2015-03-14 14:56:58','2015-08-29 14:46:08',1,30002016,0,0,16,24,0,0,132,0,0,0,0,0,0,0,0,0,0,0,0,8,0,3,3,0),(647,'2015-03-14 14:56:58','2015-08-29 14:46:08',1,30001141,0,0,0,0,0,0,0,0,0,0,91,93,0,0,0,0,0,0,0,0,0,0,0,0),(648,'2015-03-14 14:56:58','2015-08-29 14:46:08',1,30002929,74,97,22,21,0,0,416,40,47,63,86,458,180,619,485,228,113,143,130,0,174,401,505,0),(649,'2015-03-14 14:56:58','2015-08-29 14:46:08',1,30004788,0,0,0,0,0,0,0,0,0,0,0,0,36,56,261,504,475,1,54,267,423,108,955,0),(650,'2015-03-14 14:56:58','2015-08-29 14:46:08',1,30003945,0,4,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(651,'2015-03-14 14:56:58','2015-08-29 14:46:08',1,30004587,0,0,64,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,134,105,0),(652,'2015-03-14 14:56:58','2015-08-29 14:46:08',1,30002031,0,78,89,134,107,0,0,0,0,0,0,0,78,0,0,0,0,27,0,0,0,0,0,0),(653,'2015-03-14 14:56:58','2015-08-29 14:46:08',1,30002177,0,168,0,0,0,170,0,30,0,9,4,24,30,39,28,15,16,0,0,1,6,9,13,0),(654,'2015-03-14 14:56:58','2015-08-29 14:46:08',1,30003778,0,97,40,0,44,90,105,216,553,428,465,542,500,591,515,413,329,0,141,195,279,177,78,0),(655,'2015-03-14 14:56:58','2015-08-29 14:46:08',1,30001071,0,0,0,0,0,0,0,0,3,7,4,32,49,146,96,41,12,210,69,45,46,0,78,0),(656,'2015-03-14 14:56:58','2015-08-29 14:46:08',1,30004351,196,15,13,111,60,61,0,237,19,50,50,34,64,22,38,123,324,0,0,0,0,0,0,0),(657,'2015-03-14 14:56:58','2015-08-29 14:46:08',1,30004869,101,1,75,0,0,0,104,98,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(658,'2015-03-14 14:56:58','2015-08-29 14:46:08',1,30001768,57,0,0,0,0,0,0,0,0,39,53,0,0,0,0,0,0,0,0,0,0,0,0,0),(659,'2015-03-14 14:56:58','2015-08-29 14:46:08',1,30004862,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,3,0,0,0,0),(660,'2015-03-14 14:56:58','2015-08-29 14:46:08',1,30000614,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,81,1,0,0,0,0,0),(661,'2015-03-14 14:56:58','2015-08-29 14:46:08',1,30004001,15,0,10,11,8,16,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(662,'2015-03-14 14:56:58','2015-08-29 14:46:08',1,30003282,48,0,2,0,0,29,0,27,0,0,0,60,0,27,14,0,0,0,0,0,0,0,0,0),(663,'2015-03-14 14:56:58','2015-08-29 14:46:08',1,30002484,490,174,235,491,530,67,270,109,0,0,0,0,0,0,0,56,352,0,0,0,0,0,0,0),(664,'2015-03-14 14:56:58','2015-03-14 14:56:58',1,30002293,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(665,'2015-03-14 14:56:58','2015-03-14 14:56:58',1,30000542,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(666,'2015-03-14 14:56:58','2015-03-14 14:56:58',1,30000334,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(667,'2015-03-14 14:56:58','2015-08-29 14:46:08',1,30003985,0,0,0,84,84,3,0,6,47,16,39,124,0,28,21,25,20,0,0,0,43,52,12,0),(668,'2015-03-14 14:56:58','2015-08-29 14:46:08',1,30000628,0,0,0,35,91,46,18,818,40,49,36,72,3,0,0,45,280,0,20,20,0,0,0,0),(669,'2015-03-14 14:56:58','2015-08-29 14:46:08',1,30000312,788,305,306,145,108,159,0,0,0,0,0,0,0,0,0,0,0,0,11,0,0,84,0,0),(670,'2015-03-14 14:56:58','2015-03-14 14:56:58',1,30001514,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(671,'2015-03-14 14:56:58','2015-03-14 14:56:58',1,30001627,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(672,'2015-03-14 14:56:58','2015-08-29 14:46:08',1,30000648,0,0,0,0,0,149,0,0,5,152,233,121,135,160,155,143,96,0,0,137,83,77,9,0),(673,'2015-03-14 14:56:58','2015-08-29 14:46:08',1,30000775,0,0,0,96,108,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(674,'2015-03-14 14:56:58','2015-03-14 14:56:58',1,30004025,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(675,'2015-03-14 14:56:58','2015-08-29 14:46:08',1,30001745,0,0,0,0,0,0,0,0,0,0,0,0,0,109,63,0,156,0,0,0,0,0,0,0),(676,'2015-03-14 14:56:58','2015-03-14 14:56:58',1,30003189,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(677,'2015-03-14 14:56:58','2015-08-29 14:46:08',1,30002924,869,674,820,848,632,746,1132,350,772,775,855,1156,1018,718,438,527,1195,330,934,512,355,1028,1560,0),(678,'2015-03-14 14:56:58','2015-08-29 14:46:08',1,30001132,0,0,0,0,0,0,0,0,0,0,32,75,0,0,0,0,0,0,0,0,0,0,0,0),(679,'2015-03-14 14:56:58','2015-08-29 14:46:08',1,30002885,41,839,857,580,838,5,296,437,306,637,164,648,22,150,150,1,154,0,0,0,307,523,416,0),(680,'2015-03-14 14:56:58','2015-08-29 14:46:08',1,30004190,169,545,0,0,0,73,149,306,93,242,217,71,309,646,180,133,129,415,369,314,881,92,158,0),(681,'2015-03-14 14:56:58','2015-08-29 14:46:08',1,30004640,0,151,0,0,0,136,0,0,5,2,2,0,0,0,0,0,0,0,0,0,0,0,0,0),(682,'2015-03-14 14:56:58','2015-08-29 14:46:08',1,30000770,0,0,0,0,0,0,0,0,0,0,44,18,0,81,38,0,0,0,0,0,0,0,0,0),(683,'2015-03-14 14:56:58','2015-08-29 14:46:08',1,30002346,189,151,322,275,145,117,0,195,0,0,0,0,0,0,0,0,0,0,0,0,44,48,0,0),(684,'2015-03-14 14:56:58','2015-08-29 14:46:08',1,30002314,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,73,95,0),(685,'2015-03-14 14:56:58','2015-03-14 14:56:58',1,30001053,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(686,'2015-03-14 14:56:58','2015-08-29 14:46:08',1,30001219,172,0,0,209,23,23,0,0,0,0,0,0,0,0,3,3,0,0,0,0,0,26,0,0),(687,'2015-03-14 14:56:58','2015-08-29 14:46:08',1,30005164,860,134,461,101,0,460,493,513,105,464,439,522,0,0,0,0,423,0,0,0,382,50,0,0),(688,'2015-03-14 14:56:58','2015-08-29 14:46:08',1,30003974,0,0,0,0,0,0,0,0,74,0,42,14,0,191,53,52,34,0,0,0,19,244,1,0),(689,'2015-03-14 14:56:58','2015-08-29 14:46:08',1,30003771,940,38,8,388,360,176,859,437,0,0,0,7,4,6,18,70,782,43,57,82,0,15,241,0),(690,'2015-03-14 14:56:58','2015-08-29 14:46:08',1,30001144,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,146,0),(691,'2015-03-14 14:56:58','2015-08-29 14:46:08',1,30001298,0,0,0,31,68,0,0,0,0,0,0,0,6,0,0,0,0,0,0,0,0,0,0,0),(692,'2015-03-14 14:56:58','2015-08-29 14:46:08',1,30000731,0,0,0,0,0,0,0,0,51,14,60,9,0,0,8,12,0,0,0,0,0,0,0,0),(693,'2015-03-14 14:56:58','2015-08-29 14:46:08',1,30000910,0,0,0,0,0,113,0,0,0,0,0,0,20,0,0,0,0,50,49,46,16,0,0,0),(694,'2015-03-14 14:56:58','2015-08-29 14:46:08',1,30000748,6,12,0,5,9,28,157,28,5,6,34,8,3,8,18,14,10,0,5,0,135,61,22,0),(695,'2015-03-14 14:56:58','2015-08-29 14:46:08',1,30004574,0,0,0,0,0,0,60,0,0,0,0,55,0,0,0,0,133,0,0,0,0,0,132,0),(696,'2015-03-14 14:56:58','2015-08-29 14:46:08',1,30004781,0,0,0,0,0,0,0,0,0,4,5,10,60,0,12,21,106,31,13,0,20,5,262,0),(697,'2015-03-14 14:56:58','2015-08-29 14:46:08',1,30000494,0,0,0,0,0,0,0,0,0,0,0,0,0,16,155,184,0,0,0,0,0,0,0,0),(698,'2015-03-14 14:56:58','2015-08-29 14:46:08',1,30000771,0,0,0,0,0,3,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(699,'2015-03-14 14:56:58','2015-08-29 14:46:08',1,30001017,5,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,3,5,3,0,0,0,0),(700,'2015-03-14 14:56:58','2015-08-29 14:46:08',1,30001776,0,0,0,0,0,7,0,0,0,0,0,0,0,0,0,0,0,0,0,5,0,0,0,0),(701,'2015-03-14 14:56:58','2015-08-29 14:46:08',1,30002354,0,0,0,0,0,0,0,0,10,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(702,'2015-03-14 14:56:58','2015-08-29 14:46:08',1,30001887,0,0,0,0,0,75,39,0,1,17,25,71,91,18,22,18,40,0,44,42,54,44,92,0),(703,'2015-03-14 14:56:58','2015-08-29 14:46:08',1,30004942,0,0,0,0,0,0,0,0,0,0,0,387,93,0,15,290,357,0,0,0,814,73,481,0),(704,'2015-03-14 14:56:58','2015-08-29 14:46:08',1,30002442,40,145,88,209,349,147,326,228,89,0,118,191,1,0,21,64,52,42,193,251,216,149,101,0),(705,'2015-03-14 14:56:58','2015-03-14 14:56:58',1,30000391,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(706,'2015-03-14 14:56:58','2015-08-29 14:46:08',1,30001879,0,1,0,86,80,0,1,0,28,0,0,8,33,57,12,0,18,0,25,13,141,85,149,0),(707,'2015-03-14 14:56:58','2015-08-29 14:46:08',1,30000652,0,2,0,0,0,0,0,0,0,0,0,0,37,41,39,151,0,417,286,0,198,159,105,0),(708,'2015-03-14 14:56:58','2015-03-14 14:56:58',1,30001561,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(709,'2015-03-14 14:56:58','2015-08-29 14:46:08',1,30003750,21,5,0,0,3,0,0,3,1,42,102,117,53,84,81,122,21,0,32,9,226,106,17,0),(710,'2015-03-14 14:56:58','2015-08-29 14:46:08',1,30000697,0,0,0,0,0,0,0,0,325,180,104,17,35,75,37,71,156,91,0,141,134,160,197,0),(711,'2015-03-14 14:56:58','2015-08-29 14:46:08',1,30004681,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,120,0,0,127,0,0),(712,'2015-03-14 14:56:58','2015-08-29 14:46:08',1,30003702,442,538,147,160,113,610,670,457,315,260,422,85,544,213,217,281,672,329,386,425,359,301,665,0),(713,'2015-03-14 14:56:58','2015-08-29 14:46:08',1,30004012,0,0,0,0,0,0,0,0,0,0,9,25,0,0,0,0,0,0,0,0,0,0,0,0),(714,'2015-03-14 14:56:58','2015-08-29 14:46:08',1,30004056,0,0,0,139,43,0,0,0,0,0,0,0,0,0,70,70,133,0,0,0,0,0,0,0),(715,'2015-03-14 14:56:58','2015-08-29 14:46:08',1,30001805,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,295,0,0,0,0,0,0,0),(716,'2015-03-14 14:56:58','2015-08-29 14:46:08',1,30004771,129,243,122,82,250,0,22,11,11,56,43,6,87,163,147,151,0,7,23,5,14,0,11,0),(717,'2015-03-14 14:56:58','2015-03-14 14:56:58',1,30001523,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(718,'2015-03-14 14:56:58','2015-08-29 14:46:08',1,30002004,59,173,75,185,212,42,0,38,37,52,58,57,3,86,125,139,38,52,51,31,197,10,47,0),(719,'2015-03-14 14:56:58','2015-08-29 14:46:08',1,30002930,0,0,28,0,0,0,24,0,0,0,0,0,90,161,1,14,0,35,58,50,0,0,0,0),(720,'2015-03-14 14:56:58','2015-08-29 14:46:08',1,30000242,0,1,5,0,0,0,0,158,0,0,0,0,0,0,0,0,0,0,0,24,0,0,0,0),(721,'2015-03-14 14:56:58','2015-03-14 14:56:58',1,30001614,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(722,'2015-03-14 14:56:58','2015-08-29 14:46:08',1,30003320,0,8,2,0,0,0,0,0,2,12,8,4,0,0,0,0,0,0,0,0,0,0,0,0),(723,'2015-03-14 14:56:58','2015-08-29 14:46:08',1,30003695,191,45,429,47,206,82,89,22,288,112,66,67,248,372,194,90,423,0,121,253,248,474,444,0),(724,'2015-03-14 14:56:58','2015-08-29 14:46:08',1,30004760,0,0,0,0,0,0,0,14,0,0,0,0,0,44,1,0,0,0,0,57,0,216,0,0),(725,'2015-03-14 14:56:58','2015-08-29 14:46:08',1,30002171,682,522,822,0,82,715,425,430,116,300,189,132,953,129,115,106,204,84,124,328,362,63,243,0),(726,'2015-03-14 14:56:58','2015-08-29 14:46:08',1,30000942,0,0,0,0,0,0,0,0,0,4,5,3,0,0,0,0,0,0,0,0,0,0,0,0),(727,'2015-03-14 14:56:58','2015-08-29 14:46:08',1,30001877,58,104,64,0,0,0,0,13,12,124,64,0,196,0,34,43,166,3,0,75,30,74,25,0),(728,'2015-03-14 14:56:58','2015-08-29 14:46:08',1,30000469,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,207,270,0,0,0,607,61,0,0),(729,'2015-03-14 14:56:58','2015-08-29 14:46:08',1,30002868,0,0,0,0,0,0,0,0,83,114,144,168,113,1,138,698,110,0,310,93,213,177,231,0),(730,'2015-03-14 14:56:58','2015-08-29 14:46:08',1,30001273,0,71,47,57,49,0,2,20,22,101,101,70,13,74,74,37,97,128,0,4,24,28,17,0),(731,'2015-03-14 14:56:58','2015-08-29 14:46:08',1,30000939,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0),(732,'2015-03-14 14:56:58','2015-08-29 14:46:08',1,30004059,0,0,9,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,33,0,0,56,0),(733,'2015-03-14 14:56:58','2015-08-29 14:46:08',1,30004219,10,0,15,20,24,89,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(734,'2015-03-14 14:56:58','2015-08-29 14:46:08',1,30001279,77,16,54,34,14,10,33,21,2,14,13,46,71,41,33,3,151,22,0,41,0,7,16,0),(735,'2015-03-14 14:56:58','2015-08-29 14:46:08',1,30001166,0,0,0,0,0,0,0,0,0,0,0,0,0,137,47,0,0,0,0,0,0,0,0,0),(736,'2015-03-14 14:56:58','2015-08-29 14:46:08',1,30004879,48,6,22,7,126,0,55,13,0,0,0,0,0,0,0,0,0,24,0,0,99,5,0,0),(737,'2015-03-14 14:56:58','2015-08-29 14:46:08',1,30004397,0,0,0,43,26,0,0,201,250,79,36,25,401,350,495,628,71,17,184,466,363,415,466,0),(738,'2015-03-14 14:56:58','2015-03-14 14:56:58',1,30001600,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(739,'2015-03-14 14:56:58','2015-03-14 14:56:58',1,30001484,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(740,'2015-03-14 14:56:58','2015-08-29 14:46:08',1,30005148,1,0,21,0,0,0,76,0,0,0,4,0,0,0,0,0,0,0,0,69,0,0,0,0),(741,'2015-03-14 14:56:58','2015-08-29 14:46:08',1,30003704,0,162,112,1,2,4,185,0,0,0,0,0,0,0,0,23,12,40,0,0,10,8,0,0),(742,'2015-03-14 14:56:58','2015-08-29 14:46:08',1,30000318,0,0,0,89,17,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,4,0,0,0),(743,'2015-03-14 14:56:58','2015-08-29 14:46:08',1,30003961,0,0,0,0,0,0,0,105,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(744,'2015-03-14 14:56:58','2015-08-29 14:46:08',1,30002590,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,4,0,0,0,0),(745,'2015-03-14 14:56:58','2015-08-29 14:46:08',1,30002450,0,0,0,0,0,0,67,3,0,0,0,0,0,90,0,0,0,0,0,0,0,0,0,0),(746,'2015-03-14 14:56:58','2015-08-29 14:46:08',1,30004826,0,0,0,0,0,0,0,24,0,0,0,0,84,0,0,0,0,0,0,0,0,0,0,0),(747,'2015-03-14 14:56:58','2015-08-29 14:46:08',1,30000454,0,0,62,0,0,176,0,0,0,0,0,0,0,0,0,1,50,0,0,0,0,0,0,0),(748,'2015-03-14 14:56:58','2015-08-29 14:46:08',1,30001266,0,0,0,0,0,36,17,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(749,'2015-03-14 14:56:58','2015-08-29 14:46:08',1,30004557,0,0,31,0,0,0,0,12,0,0,0,0,0,16,0,6,0,0,0,0,0,0,0,0),(750,'2015-03-14 14:56:58','2015-08-29 14:46:08',1,30004201,3,44,0,0,0,9,0,29,0,0,0,92,4,0,0,0,0,0,0,3,25,0,0,0),(751,'2015-03-14 14:56:58','2015-03-14 14:56:58',1,30002159,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(752,'2015-03-14 14:56:58','2015-08-29 14:46:08',1,30005168,0,0,0,0,0,0,22,0,0,0,0,0,0,0,0,0,0,0,0,0,12,0,0,0),(753,'2015-03-14 14:56:58','2015-08-29 14:46:08',1,30004409,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,11,0,0,0,0,0,0,0,0),(754,'2015-03-14 14:56:58','2015-08-29 14:46:08',1,30001814,689,126,878,409,379,565,199,307,0,38,196,489,147,256,158,127,194,0,0,0,46,20,63,0),(755,'2015-03-14 14:56:58','2015-03-14 14:56:58',1,30001609,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(756,'2015-03-14 14:56:58','2015-08-29 14:46:08',1,30003253,0,0,102,38,0,0,0,0,0,0,0,0,105,0,0,0,0,0,0,0,16,0,0,0),(757,'2015-03-14 14:56:58','2015-08-29 14:46:08',1,30000994,0,0,0,0,0,0,0,0,0,0,0,0,0,0,3,3,0,0,130,38,0,0,0,0),(758,'2015-03-14 14:56:58','2015-08-29 14:46:08',1,30001312,0,0,0,0,80,0,89,94,0,0,0,0,0,46,9,0,0,33,0,0,0,85,0,0),(759,'2015-03-14 14:56:58','2015-08-29 14:46:08',1,30001284,0,0,0,0,0,0,0,0,3,1,1,0,0,0,0,0,0,0,28,0,2,0,3,0),(760,'2015-03-14 14:56:58','2015-08-29 14:46:08',1,30001990,82,0,0,1,1,3,0,5,0,0,0,0,6,11,0,0,0,3,0,0,0,0,0,0),(761,'2015-03-14 14:56:58','2015-08-29 14:46:08',1,30002895,333,154,21,67,280,105,382,0,65,69,0,328,0,0,0,36,408,0,0,0,179,142,251,0),(762,'2015-03-14 14:56:58','2015-03-14 14:56:58',1,30002131,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(763,'2015-03-14 14:56:58','2015-08-29 14:46:08',1,30000271,41,1,5,0,15,58,369,132,0,0,44,262,0,339,180,43,0,0,0,0,38,84,0,0),(764,'2015-03-14 14:56:58','2015-08-29 14:46:08',1,30005130,2,0,0,0,0,192,0,88,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(765,'2015-03-14 14:56:58','2015-08-29 14:46:08',1,30003301,121,9,0,0,0,0,0,0,0,0,0,1,0,3,3,0,0,7,0,0,0,0,0,0),(766,'2015-03-14 14:56:58','2015-03-14 14:56:58',1,30000392,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(767,'2015-03-14 14:56:58','2015-08-29 14:46:08',1,30003373,56,0,0,1,0,0,32,0,0,2,28,8,0,27,3,4,0,4,0,0,0,27,0,0),(768,'2015-03-14 14:56:58','2015-08-29 14:46:08',1,30004914,92,13,45,85,53,15,51,39,236,95,22,155,398,35,0,0,35,8,81,405,74,121,41,0),(769,'2015-03-14 14:56:58','2015-08-29 14:46:08',1,30000616,0,0,0,0,0,0,1,0,11,26,30,1,0,45,23,28,19,31,41,16,0,0,0,0),(770,'2015-03-14 14:56:58','2015-08-29 14:46:08',1,30000724,0,0,0,0,0,0,0,0,2,0,0,15,0,22,20,31,37,0,0,0,0,5,14,0),(771,'2015-03-14 14:56:58','2015-08-29 14:46:08',1,30003979,0,0,0,0,0,0,0,0,0,0,0,0,0,58,59,14,0,0,0,0,0,0,0,0),(772,'2015-03-14 14:56:58','2015-08-29 14:46:08',1,30002949,68,75,538,236,160,357,0,251,209,226,479,743,141,203,354,505,257,0,73,202,159,209,485,0),(773,'2015-03-14 14:56:58','2015-08-29 14:46:08',1,30004629,0,0,32,168,196,9,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(774,'2015-03-14 14:56:58','2015-08-29 14:46:08',1,30004646,0,0,0,0,0,0,0,0,143,283,165,162,382,100,87,104,284,30,104,87,18,57,606,0),(775,'2015-03-14 14:56:58','2015-03-14 14:56:58',1,30003954,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(776,'2015-03-14 14:56:58','2015-08-29 14:46:08',1,30002284,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,4,0,0,0),(777,'2015-03-14 14:56:58','2015-08-29 14:46:08',1,30004366,0,317,309,683,358,0,199,500,423,778,484,383,344,725,1020,1017,205,270,542,681,0,407,381,0),(778,'2015-03-14 14:56:58','2015-08-29 14:46:08',1,30001079,207,0,1,3,3,0,0,0,0,0,0,0,0,56,56,0,136,0,0,52,2,250,37,0),(779,'2015-03-14 14:56:58','2015-08-29 14:46:08',1,30003249,0,0,64,0,0,0,73,0,0,0,0,0,0,0,0,0,0,0,0,53,0,0,0,0),(780,'2015-03-14 14:56:58','2015-08-29 14:46:08',1,30000875,193,122,354,133,181,110,102,451,74,0,45,177,44,33,0,0,0,0,0,0,0,81,0,0),(781,'2015-03-14 14:56:58','2015-08-29 14:46:08',1,30004796,0,0,0,0,0,0,0,0,0,0,0,0,29,37,0,0,0,0,0,0,0,0,0,0),(782,'2015-03-14 14:56:58','2015-03-14 14:56:58',1,30003338,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(783,'2015-03-14 14:56:58','2015-08-29 14:46:08',1,30002589,0,0,105,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,22,0,27,0),(784,'2015-03-14 14:56:58','2015-08-29 14:46:08',1,30001306,61,0,0,9,21,0,23,40,0,12,15,23,0,17,31,28,0,26,0,0,85,30,18,0),(785,'2015-03-14 14:56:58','2015-03-14 14:56:58',1,30005180,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(786,'2015-03-14 14:56:58','2015-03-14 14:56:58',1,30000429,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(787,'2015-03-14 14:56:58','2015-08-29 14:46:08',1,30004169,43,0,0,0,0,0,0,0,0,0,0,0,91,0,0,1,21,0,0,0,56,0,0,0),(788,'2015-03-14 14:56:58','2015-03-14 14:56:58',1,30001154,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(789,'2015-03-14 14:56:58','2015-08-29 14:46:08',1,30000723,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,9,0,0,0),(790,'2015-03-14 14:56:58','2015-08-29 14:46:08',1,30004884,0,0,0,0,0,0,0,0,0,161,161,0,0,0,0,0,0,4,0,0,21,0,130,0),(791,'2015-03-14 14:56:58','2015-03-14 14:56:58',1,30000399,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(792,'2015-03-14 14:56:58','2015-03-14 14:56:58',1,30000458,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(793,'2015-03-14 14:56:58','2015-08-29 14:46:08',1,30001128,0,0,151,0,0,0,0,122,0,480,365,513,499,251,116,41,1473,0,347,713,191,629,420,0),(794,'2015-03-14 14:56:58','2015-08-29 14:46:08',1,30004780,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,59,29,0,0,0,0,0,0),(795,'2015-03-14 14:56:58','2015-08-29 14:46:08',1,30004582,0,0,0,0,0,0,29,0,0,0,0,0,0,6,6,0,0,0,0,0,0,0,0,0),(796,'2015-03-14 14:56:58','2015-08-29 14:46:08',1,30001886,0,0,0,0,8,0,0,0,3,49,72,56,46,9,1,0,0,0,0,23,43,1,0,0),(797,'2015-03-14 14:56:58','2015-08-29 14:46:08',1,30000800,1500,308,1043,948,876,510,395,333,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(798,'2015-03-14 14:56:58','2015-08-29 14:46:08',1,30000247,0,0,0,0,0,53,0,0,0,0,0,0,0,0,0,0,0,35,0,0,0,0,0,0),(799,'2015-03-14 14:56:58','2015-03-14 14:56:58',1,30002287,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(800,'2015-03-14 14:56:58','2015-08-29 14:46:08',1,30002472,608,19,0,81,348,66,504,312,506,722,654,815,638,50,0,0,683,0,24,173,123,517,980,0),(801,'2015-03-14 14:56:58','2015-08-29 14:46:08',1,30000668,0,0,0,0,0,0,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(802,'2015-03-14 14:56:58','2015-03-14 14:56:58',1,30002339,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(803,'2015-03-14 14:56:58','2015-08-29 14:46:08',1,30004569,0,0,0,63,54,0,0,0,0,0,0,0,28,31,31,24,43,0,0,0,26,0,416,0),(804,'2015-03-14 14:56:58','2015-08-29 14:46:08',1,30001840,0,55,0,120,225,29,11,0,0,6,30,0,17,24,41,25,4,103,0,2,90,4,0,0),(805,'2015-03-14 14:56:58','2015-08-29 14:46:08',1,30001796,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(806,'2015-03-14 14:56:58','2015-08-29 14:46:08',1,30004022,0,0,0,79,46,0,0,0,2,0,0,0,0,0,0,0,42,0,37,107,0,0,0,0),(807,'2015-03-14 14:56:58','2015-08-29 14:46:08',1,30000883,0,0,4,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(808,'2015-03-14 14:56:58','2015-08-29 14:46:08',1,30000969,0,2,0,1,1,0,0,0,8,0,0,0,0,0,0,0,0,0,0,3,5,5,3,0),(809,'2015-03-14 14:56:58','2015-08-29 14:46:08',1,30004672,0,0,0,0,0,0,0,0,0,0,0,0,0,127,1,0,0,0,0,0,0,0,0,0),(810,'2015-03-14 14:56:58','2015-08-29 14:46:08',1,30003341,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,79,0,0,0,1,0,0,0),(811,'2015-03-14 14:56:58','2015-08-29 14:46:08',1,30001857,0,0,0,0,0,0,0,0,0,0,0,10,0,0,6,9,16,0,0,0,0,0,0,0),(812,'2015-03-14 14:56:58','2015-08-29 14:46:08',1,30003707,0,263,132,253,112,119,64,409,0,0,0,0,12,5,5,3,7,0,0,0,26,0,8,0),(813,'2015-03-14 14:56:58','2015-08-29 14:46:08',1,30005137,461,24,98,287,136,144,88,73,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(814,'2015-03-14 14:56:58','2015-03-14 14:56:58',1,30000412,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(815,'2015-03-14 14:56:58','2015-08-29 14:46:08',1,30001764,10,0,0,0,0,44,8,0,0,0,0,0,0,0,0,0,0,0,0,0,91,16,0,0),(816,'2015-03-14 14:56:58','2015-08-29 14:46:08',1,30002618,0,50,513,0,64,0,156,0,0,469,1069,598,0,0,0,0,0,0,0,0,0,625,401,0),(817,'2015-03-14 14:56:58','2015-08-29 14:46:08',1,30004179,0,0,0,67,0,0,0,5,15,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(818,'2015-03-14 14:56:58','2015-08-29 14:46:08',1,30004619,0,6,2,57,103,56,5,0,0,0,0,0,0,0,0,0,0,0,0,0,4,0,3,0),(819,'2015-03-14 14:56:58','2015-08-29 14:46:08',1,30003650,0,0,0,0,0,31,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(820,'2015-03-14 14:56:58','2015-08-29 14:46:08',1,30003319,0,34,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(821,'2015-03-14 14:56:58','2015-03-14 14:56:58',1,30000587,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(822,'2015-03-14 14:56:58','2015-08-29 14:46:08',1,30003977,101,22,281,55,0,168,0,57,171,290,293,219,19,146,340,313,634,171,519,112,266,585,231,0),(823,'2015-03-14 14:56:58','2015-08-29 14:46:08',1,30004544,0,0,0,38,1,0,0,42,0,18,7,0,0,0,0,0,0,0,0,0,0,0,0,0),(824,'2015-03-14 14:56:58','2015-03-14 14:56:58',1,30000491,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(825,'2015-03-14 14:56:58','2015-08-29 14:46:08',1,30001193,0,0,0,0,0,0,0,0,0,0,0,0,0,135,180,94,0,0,0,0,0,0,0,0),(826,'2015-03-14 14:56:58','2015-08-29 14:46:08',1,30000702,0,0,0,2,0,0,47,0,0,0,0,0,0,3,0,0,0,0,0,0,0,0,0,0),(827,'2015-03-14 14:56:58','2015-08-29 14:46:08',1,30001283,0,0,0,0,0,0,0,32,1,0,0,0,0,0,0,0,35,0,0,0,0,0,0,0),(828,'2015-03-14 14:56:58','2015-08-29 14:46:08',1,30003967,0,0,0,0,0,0,0,4,0,0,0,0,0,0,0,0,0,0,95,14,0,0,0,0),(829,'2015-03-14 14:56:58','2015-08-29 14:46:08',1,30000476,0,0,0,0,0,0,0,0,0,0,0,98,0,0,0,0,0,0,0,0,0,0,0,0),(830,'2015-03-14 14:56:58','2015-08-29 14:46:08',1,30003100,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,19,0,0,0,0,13,44,0),(831,'2015-03-14 14:56:58','2015-08-29 14:46:08',1,30000852,0,0,0,0,0,1,59,137,0,4,0,0,53,0,0,0,0,0,0,0,0,0,0,0),(832,'2015-03-14 14:56:58','2015-08-29 14:46:08',1,30001954,0,0,0,0,0,0,9,0,0,0,0,0,19,0,29,66,18,56,22,55,6,114,0,0),(833,'2015-03-14 14:56:58','2015-08-29 14:46:08',1,30004708,0,19,22,1,1,22,0,0,0,0,0,0,0,19,25,29,18,25,56,22,43,0,0,0),(834,'2015-03-14 14:56:58','2015-08-29 14:46:08',1,30004359,0,72,116,0,0,248,56,0,3,35,0,0,0,40,0,0,0,0,0,0,0,12,0,0),(835,'2015-03-14 14:56:58','2015-08-29 14:46:08',1,30001870,0,0,31,0,0,66,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(836,'2015-03-14 14:56:58','2015-08-29 14:46:08',1,30004605,8,0,0,0,0,0,0,0,16,1,1,0,59,0,2,3,0,30,16,61,0,0,0,0),(837,'2015-03-14 14:56:58','2015-08-29 14:46:08',1,30001537,1280,762,565,227,209,611,369,401,297,182,40,218,158,64,65,191,216,32,0,110,153,212,141,0),(838,'2015-03-14 14:56:58','2015-08-29 14:46:08',1,30000314,1,0,0,0,0,0,0,4,26,43,43,0,0,0,0,0,0,0,0,0,44,3,0,0),(839,'2015-03-14 14:56:58','2015-08-29 14:46:08',1,30004850,0,0,0,0,0,0,194,560,497,418,210,343,100,253,255,85,164,138,147,83,598,613,232,0),(840,'2015-03-14 14:56:58','2015-08-29 14:46:08',1,30003335,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,71,6,0,0),(841,'2015-03-14 14:56:58','2015-08-29 14:46:08',1,30000769,0,0,0,0,0,0,0,0,0,0,0,0,75,0,0,0,0,0,0,70,0,0,0,0),(842,'2015-03-14 14:56:58','2015-08-29 14:46:08',1,30001210,385,627,301,470,324,250,443,275,91,224,84,103,449,322,275,405,162,352,130,214,136,179,123,0),(843,'2015-03-14 14:56:58','2015-03-14 14:56:58',1,30000362,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(844,'2015-03-14 14:56:58','2015-08-29 14:46:08',1,30001950,0,0,0,0,0,0,91,2,2,1,0,0,1,1,1,0,0,0,1,0,0,31,1,0),(845,'2015-03-14 14:56:58','2015-08-29 14:46:08',1,30002836,0,0,0,0,79,6,0,23,0,14,10,0,0,0,0,0,0,0,0,0,0,0,0,0),(846,'2015-03-14 14:56:58','2015-08-29 14:46:08',1,30003305,0,0,0,0,10,0,0,0,64,11,0,0,0,0,0,0,0,0,20,63,0,0,14,0),(847,'2015-03-14 14:56:58','2015-08-29 14:46:08',1,30001077,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,2,0,0,0,0,0,0,0),(848,'2015-03-14 14:56:58','2015-08-29 14:46:08',1,30003125,0,0,21,75,5,4,0,0,0,0,0,0,0,33,153,122,0,0,0,0,0,0,0,0),(849,'2015-03-14 14:56:58','2015-08-29 14:46:08',1,30002611,45,0,162,302,244,0,99,78,36,0,121,41,35,106,269,373,90,282,125,438,0,0,100,0),(850,'2015-03-14 14:56:58','2015-08-29 14:46:08',1,30005167,0,0,0,0,0,261,564,63,0,0,0,0,0,0,0,30,22,0,88,95,0,0,0,0),(851,'2015-03-14 14:56:58','2015-08-29 14:46:08',1,30003655,15,0,0,59,152,0,201,0,0,0,0,0,0,0,0,0,49,0,0,0,0,0,169,0),(852,'2015-03-14 14:56:58','2015-08-29 14:46:08',1,30003942,0,101,127,0,0,0,0,9,45,159,118,92,182,47,92,74,2,9,8,29,30,66,10,0),(853,'2015-03-14 14:56:58','2015-08-29 14:46:08',1,30000794,32,0,124,49,0,4,1,0,14,0,0,18,0,11,104,267,438,0,141,602,116,53,89,0),(854,'2015-03-14 14:56:58','2015-08-29 14:46:08',1,30004550,10,81,157,39,0,0,0,47,24,49,35,24,64,35,21,56,24,0,61,95,19,168,73,0),(855,'2015-03-14 14:56:58','2015-08-29 14:46:08',1,30003944,0,18,0,0,0,0,0,0,188,80,235,368,170,105,159,227,99,104,126,121,112,296,247,0),(856,'2015-03-14 14:56:58','2015-03-14 14:56:58',1,30000409,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(857,'2015-03-14 14:56:58','2015-08-29 14:46:08',1,30000317,0,0,0,0,0,0,0,0,18,30,0,0,104,50,7,9,0,29,21,0,14,99,56,0),(858,'2015-03-14 14:56:58','2015-08-29 14:46:08',1,30002113,0,0,0,0,0,59,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(859,'2015-03-14 14:56:58','2015-08-29 14:46:08',1,30002952,169,131,333,104,168,174,158,432,116,106,32,237,0,190,114,59,1,0,94,0,406,544,184,0),(860,'2015-03-14 14:56:58','2015-08-29 14:46:08',1,30001896,0,0,0,0,0,0,0,0,5,6,11,16,0,55,41,43,74,0,76,25,9,52,89,0),(861,'2015-03-14 14:56:58','2015-08-29 14:46:08',1,30003150,0,70,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(862,'2015-03-14 14:56:58','2015-03-14 14:56:58',1,30004558,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(863,'2015-03-14 14:56:58','2015-08-29 14:46:08',1,30000259,0,29,149,0,0,231,23,8,24,0,0,45,0,419,607,759,803,0,29,97,190,193,281,0),(864,'2015-03-14 14:56:58','2015-08-29 14:46:08',1,30001993,1,0,3,4,4,25,111,0,0,0,0,0,32,27,0,0,0,0,48,22,0,0,0,0),(865,'2015-03-14 14:56:58','2015-08-29 14:46:08',1,30005092,0,360,599,427,190,0,0,28,0,0,0,0,0,0,0,0,0,196,194,203,234,315,391,0),(866,'2015-03-14 14:56:58','2015-03-14 14:56:58',1,30001459,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(867,'2015-03-14 14:56:58','2015-08-29 14:46:08',1,30003331,0,0,0,0,0,0,40,0,13,0,0,0,0,29,63,52,0,0,52,108,105,0,53,0),(868,'2015-03-14 14:56:58','2015-08-29 14:46:08',1,30004690,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,7,0),(869,'2015-03-14 14:56:58','2015-08-29 14:46:08',1,30001285,0,0,0,3,3,0,0,0,0,0,0,0,0,44,44,0,0,0,0,0,0,1,0,0),(870,'2015-03-14 14:56:58','2015-08-29 14:46:08',1,30001396,345,311,104,307,387,419,592,886,270,224,264,400,1580,563,581,999,1178,399,259,840,762,657,500,0),(871,'2015-03-14 14:56:58','2015-08-29 14:46:08',1,30001022,0,56,0,0,0,0,0,16,28,49,36,0,0,24,9,0,12,0,0,0,0,72,2,0),(872,'2015-03-14 14:56:58','2015-08-29 14:46:08',1,30003293,0,0,0,0,0,0,15,0,0,136,137,0,0,0,0,0,0,0,1,2,0,0,0,0),(873,'2015-03-14 14:56:58','2015-08-29 14:46:08',1,30000914,23,0,0,52,24,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(874,'2015-03-14 14:56:58','2015-08-29 14:46:08',1,30000147,492,672,644,331,350,280,252,148,345,813,589,541,375,681,662,661,599,223,332,280,472,427,188,0),(875,'2015-03-14 14:56:58','2015-08-29 14:46:08',1,30001694,111,159,4,119,80,11,52,77,122,120,149,121,127,101,117,104,113,235,90,1222,1247,1269,1233,0),(876,'2015-03-14 14:56:58','2015-08-29 14:46:08',1,30003512,68,22,38,77,116,11,34,21,53,78,13,10,218,19,19,74,7,42,58,117,11,139,97,0),(877,'2015-03-14 14:56:58','2015-08-29 14:46:08',1,30004090,313,380,40,296,416,89,78,92,252,438,483,230,424,176,241,259,225,93,168,372,66,178,167,0),(878,'2015-03-14 14:56:58','2015-08-29 14:46:08',1,30005062,14,32,14,24,24,0,0,0,5,64,0,0,142,31,0,0,0,0,0,0,0,0,0,0),(879,'2015-03-14 14:56:58','2015-08-29 14:46:08',1,30004831,0,0,0,0,0,0,0,0,11,20,17,0,0,0,0,0,1,0,0,0,0,0,0,0),(880,'2015-03-14 14:56:58','2015-08-29 14:46:08',1,30002713,268,88,70,102,100,31,102,2,137,104,86,183,126,174,153,131,228,124,65,77,34,147,173,0),(881,'2015-03-14 14:56:58','2015-08-29 14:46:08',1,30000105,0,2,48,0,0,0,65,4,0,4,0,0,0,1,0,0,0,0,0,9,2,7,0,0),(882,'2015-03-14 14:56:58','2015-08-29 14:46:08',1,30005254,114,5,3,1,10,6,89,56,29,2,42,4,62,37,16,16,8,28,22,15,144,44,69,0),(883,'2015-03-14 14:56:58','2015-08-29 14:46:08',1,30013410,0,0,0,0,38,19,0,15,0,58,44,8,28,0,0,0,0,33,1,46,52,110,135,0),(884,'2015-03-14 14:56:58','2015-08-29 14:46:08',1,30002507,274,399,515,558,421,397,271,258,522,621,513,393,665,317,454,567,515,403,572,614,366,486,425,0),(885,'2015-03-14 14:56:58','2015-08-29 14:46:08',1,30004984,19,1,8,19,21,19,4,19,0,2,0,10,2,20,23,15,91,0,0,3,7,4,5,0),(886,'2015-03-14 14:56:58','2015-08-29 14:46:08',1,30002160,46,3,0,3,3,46,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(887,'2015-03-14 14:56:58','2015-08-29 14:46:08',1,30004563,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,6,0,0,18,105,37,0),(888,'2015-03-14 14:56:58','2015-08-29 14:46:08',1,30005266,0,11,0,84,125,3,0,0,0,1,1,5,0,0,0,0,18,0,6,0,72,0,33,0),(889,'2015-03-14 14:56:58','2015-08-29 14:46:08',1,30003028,108,286,396,62,150,390,172,257,253,221,261,203,336,282,429,447,245,25,267,282,359,622,281,0),(890,'2015-03-14 14:56:58','2015-08-29 14:46:08',1,30004981,125,247,142,272,194,30,143,6,101,4,70,9,234,35,35,31,160,54,22,73,191,208,35,0),(891,'2015-03-14 14:56:58','2015-08-29 14:46:08',1,30002478,18,121,0,60,0,0,0,0,0,0,0,0,0,0,0,0,0,0,121,46,0,0,0,0),(892,'2015-03-14 14:56:58','2015-08-29 14:46:08',1,30002892,0,0,0,449,952,142,431,355,0,0,0,0,165,0,0,0,0,46,10,0,0,0,0,0),(893,'2015-03-14 14:56:58','2015-08-29 14:46:08',1,30003832,135,251,83,23,67,346,42,75,174,48,86,161,345,204,195,190,265,46,181,182,272,251,132,0),(894,'2015-03-14 14:56:58','2015-08-29 14:46:08',1,30001648,173,90,127,62,34,182,17,42,46,82,81,27,45,70,73,70,56,8,65,40,52,24,76,0),(895,'2015-03-14 14:56:58','2015-08-29 14:46:08',1,30015305,118,198,230,173,139,223,141,171,90,103,148,146,203,426,365,160,225,203,132,432,136,169,327,0),(896,'2015-03-14 14:56:58','2015-08-29 14:46:08',1,30001717,25,35,0,0,0,26,17,0,125,18,11,17,21,98,162,123,102,40,66,52,8,41,100,0),(897,'2015-03-14 14:56:58','2015-08-29 14:46:08',1,30003059,0,0,0,0,0,0,16,0,2,0,0,0,0,0,15,15,62,0,5,1,11,1,10,0),(898,'2015-03-14 14:56:58','2015-08-29 14:46:08',1,30003439,7,129,126,2,4,48,64,4,193,108,92,44,65,76,69,59,132,106,83,120,61,55,228,0),(899,'2015-03-14 14:56:58','2015-08-29 14:46:08',1,30002268,2,37,11,202,174,18,66,18,72,141,17,71,146,102,44,16,149,2,31,54,23,106,121,0),(900,'2015-03-14 14:56:58','2015-08-29 14:46:08',1,30002710,149,47,26,84,55,44,18,135,121,63,28,20,45,146,174,185,60,52,131,117,60,135,33,0),(901,'2015-03-14 14:56:58','2015-08-29 14:46:08',1,30005003,155,250,162,41,73,64,56,71,13,53,15,49,27,32,23,35,13,1,2,41,37,5,12,0),(902,'2015-03-14 14:56:58','2015-08-29 14:46:08',1,30002704,268,132,60,215,164,170,92,70,76,173,212,169,244,251,309,273,274,100,337,190,268,266,117,0),(903,'2015-03-14 14:56:58','2015-08-29 14:46:08',1,30005021,49,116,50,237,164,37,106,125,244,138,237,214,225,223,293,370,230,78,30,210,348,331,186,0),(904,'2015-03-14 14:56:58','2015-08-29 14:46:08',1,30002639,149,64,75,51,21,104,23,29,90,62,18,40,147,125,302,317,111,36,71,66,51,110,42,0),(905,'2015-03-14 14:56:58','2015-08-29 14:46:08',1,30002393,0,0,2,41,0,10,0,0,0,83,18,11,6,13,0,14,0,0,0,35,27,0,1,0),(906,'2015-03-14 14:56:58','2015-08-29 14:46:08',1,30002383,230,418,75,351,269,339,163,331,627,329,303,332,877,509,508,583,734,419,348,318,569,787,401,0),(907,'2015-03-14 14:56:58','2015-08-29 14:46:08',1,30002419,0,5,26,3,0,43,7,32,3,0,0,0,0,0,0,0,0,0,0,0,34,1,1,0),(908,'2015-03-14 14:56:58','2015-08-29 14:46:08',1,30005006,123,68,234,128,17,175,54,73,45,98,204,30,192,93,114,120,79,114,59,101,43,191,204,0),(909,'2015-03-14 14:56:58','2015-08-29 14:46:08',1,30005008,73,84,119,69,145,103,19,83,81,75,93,131,93,76,72,14,55,55,0,0,62,49,140,0),(910,'2015-03-14 14:56:58','2015-08-29 14:46:08',1,30003585,0,0,0,0,0,5,0,0,0,0,31,30,31,70,62,0,5,0,0,0,0,9,0,0),(911,'2015-03-14 14:56:58','2015-08-29 14:46:08',1,30002729,0,37,22,1,24,1,6,0,0,4,50,52,0,0,0,25,0,0,0,28,15,3,95,0),(912,'2015-03-14 14:56:58','2015-08-29 14:46:08',1,30002107,0,9,0,138,65,0,37,0,0,4,4,3,0,12,19,13,10,7,43,36,33,32,29,0),(913,'2015-03-14 14:56:58','2015-08-29 14:46:08',1,30003535,31,30,159,114,91,67,149,3,59,67,60,63,54,23,35,94,48,43,26,195,164,90,59,0),(914,'2015-03-14 14:56:58','2015-03-14 14:56:58',1,30002587,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(915,'2015-03-14 14:56:58','2015-08-29 14:46:08',1,30003903,91,43,7,103,66,52,3,3,113,40,52,9,24,7,0,20,29,0,21,62,18,0,3,0),(916,'2015-03-14 14:56:58','2015-08-29 14:46:08',1,30004271,0,3,52,0,1,0,0,71,1,0,0,0,0,0,0,31,234,3,68,95,8,0,0,0),(917,'2015-03-14 14:56:58','2015-08-29 14:46:08',1,30001539,19,0,0,0,0,26,0,0,0,0,0,0,0,160,157,47,9,0,9,11,0,25,62,0),(918,'2015-03-14 14:56:58','2015-08-29 14:46:08',1,30005292,861,100,58,74,285,25,72,228,27,45,28,25,107,61,111,51,72,0,78,61,63,66,123,0),(919,'2015-03-14 14:56:58','2015-08-29 14:46:08',1,30003600,49,0,165,0,0,135,51,14,2,0,0,14,0,0,0,0,0,1,0,0,19,4,74,0),(920,'2015-03-14 14:56:58','2015-08-29 14:46:08',1,30000760,0,0,0,0,0,0,16,0,0,0,0,0,0,0,0,0,100,0,0,0,0,0,0,0),(921,'2015-03-14 14:56:58','2015-08-29 14:46:08',1,30002933,0,181,1,27,43,0,106,0,264,339,362,385,57,0,17,44,39,314,330,309,23,0,19,0),(922,'2015-03-14 14:56:58','2015-08-29 14:46:08',1,30000061,170,8,50,6,9,7,6,14,63,56,75,25,23,17,32,143,11,27,9,80,159,191,9,0),(923,'2015-03-14 14:56:58','2015-08-29 14:46:08',1,30002220,97,106,58,68,107,538,50,55,59,109,64,96,94,127,14,57,70,28,85,164,110,25,142,0),(924,'2015-03-14 14:56:58','2015-08-29 14:46:08',1,30003862,0,18,51,26,26,12,35,0,0,8,0,0,0,59,65,68,0,11,21,72,0,56,15,0),(925,'2015-03-14 14:56:58','2015-08-29 14:46:08',1,30003787,89,26,1,4,4,5,2,121,0,6,6,0,3,6,24,133,1,13,23,5,2,94,2,0),(926,'2015-03-14 14:56:58','2015-08-29 14:46:08',1,30002658,730,996,1154,969,989,648,746,337,1065,1419,1640,1338,1263,1072,1355,1132,1253,1054,1291,1379,1880,1460,1094,0),(927,'2015-03-14 14:56:58','2015-08-29 14:46:08',1,30003404,88,81,129,0,56,17,8,0,45,33,4,0,43,111,99,49,83,0,92,80,111,131,112,0),(928,'2015-03-14 14:56:58','2015-08-29 14:46:08',1,30004323,290,43,262,616,667,79,67,1,0,0,0,0,0,0,0,0,0,0,6,0,41,0,0,0),(929,'2015-03-14 14:56:58','2015-08-29 14:46:08',1,30000691,0,0,2,0,0,0,0,0,38,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(930,'2015-03-14 14:56:58','2015-08-29 14:46:08',1,30002247,34,205,123,10,92,1,36,29,23,88,68,31,100,62,55,96,84,30,32,17,48,171,135,0),(931,'2015-03-14 14:56:58','2015-08-29 14:46:08',1,30004082,394,289,224,112,72,192,266,185,307,299,322,305,593,338,278,337,311,550,645,805,588,388,189,0),(932,'2015-03-14 14:56:58','2015-08-29 14:46:08',1,30005196,76,0,163,15,15,0,1,0,8,0,0,0,0,2,36,39,28,6,26,8,77,0,35,0),(933,'2015-03-14 14:56:58','2015-08-29 14:46:08',1,30001697,67,85,7,56,53,50,103,38,27,80,77,105,155,36,35,11,30,0,0,0,18,31,28,0),(934,'2015-03-14 14:56:58','2015-08-29 14:46:08',1,30002266,126,72,30,213,171,137,138,181,378,84,74,67,74,100,133,108,0,21,85,74,157,170,32,0),(935,'2015-03-14 14:56:58','2015-08-29 14:46:08',1,30004279,0,171,4,1,0,0,0,0,0,0,0,0,1,0,1,1,0,1,0,0,29,27,0,0),(936,'2015-03-14 14:56:58','2015-08-29 14:46:08',1,30001649,6,66,46,27,27,48,87,40,90,109,55,19,11,28,30,38,114,97,23,38,23,10,107,0),(937,'2015-03-14 14:56:58','2015-08-29 14:46:08',1,30001741,81,8,13,3,1,64,2,9,27,80,21,23,74,69,56,48,46,23,135,38,33,45,43,0),(938,'2015-03-14 14:56:58','2015-08-29 14:46:08',1,30045328,313,451,352,304,276,190,526,224,449,424,422,629,403,517,738,790,615,176,284,237,264,284,340,0),(939,'2015-03-14 14:56:58','2015-08-29 14:46:08',1,30000125,96,131,112,185,185,12,61,6,419,98,115,89,214,32,188,260,221,70,78,168,252,248,128,0),(940,'2015-03-14 14:56:58','2015-08-29 14:46:08',1,30002752,103,179,301,221,185,287,206,113,169,215,203,111,78,193,227,251,206,219,91,133,167,122,127,0),(941,'2015-03-14 14:56:58','2015-08-29 14:46:08',1,30000933,0,0,0,0,0,0,0,0,0,0,0,0,0,0,24,24,0,0,0,0,0,0,0,0),(942,'2015-03-14 14:56:58','2015-08-29 14:46:08',1,30003015,132,104,203,305,396,73,19,105,203,439,248,237,196,155,188,286,310,33,73,145,243,233,232,0),(943,'2015-03-14 14:56:58','2015-08-29 14:46:08',1,30002289,59,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,174,0,0),(944,'2015-03-14 14:56:58','2015-08-29 14:46:08',1,30005307,61,122,293,47,79,127,169,62,57,36,66,56,67,221,176,88,61,31,70,73,21,195,164,0),(945,'2015-03-14 14:56:58','2015-08-29 14:46:08',1,30001418,136,137,127,127,89,238,210,476,10,78,89,194,50,58,61,119,151,168,29,150,209,208,36,0),(946,'2015-03-14 14:56:58','2015-08-29 14:46:08',1,30002753,34,447,521,457,311,626,83,266,256,127,136,283,124,131,146,89,42,97,125,118,62,409,176,0),(947,'2015-03-14 14:56:58','2015-08-29 14:46:08',1,30003566,0,0,0,66,0,0,0,0,179,0,0,0,0,0,0,73,0,0,30,0,0,27,0,0),(948,'2015-03-14 14:56:58','2015-08-29 14:46:08',1,30002736,328,168,240,142,188,31,61,114,255,353,402,58,158,178,193,374,336,136,185,488,231,174,395,0),(949,'2015-03-14 14:56:58','2015-08-29 14:46:08',1,30003895,85,6,168,24,24,8,52,59,342,1136,492,259,13,42,14,15,6,7,27,21,22,50,25,0),(950,'2015-03-14 14:56:58','2015-08-29 14:46:08',1,30000185,1496,1395,1380,1253,1171,1159,1339,826,1098,1812,1972,1880,2399,2012,2013,2298,2179,1198,1258,1318,1599,1737,1429,0),(951,'2015-03-14 14:56:58','2015-08-29 14:46:08',1,30001404,468,654,561,417,533,391,383,679,787,746,675,453,488,881,795,598,597,468,463,506,1075,926,474,0),(952,'2015-03-14 14:56:58','2015-08-29 14:46:08',1,30000166,232,341,237,255,274,239,490,44,232,142,280,313,239,193,291,507,455,280,162,198,490,432,374,0),(953,'2015-03-14 14:56:58','2015-08-29 14:46:08',1,30002222,19,13,5,20,25,18,17,44,64,5,41,118,173,14,65,98,207,47,44,71,51,85,27,0),(954,'2015-03-14 14:56:58','2015-08-29 14:46:08',1,30001431,96,80,110,129,37,12,13,76,62,135,184,216,265,26,98,133,205,140,30,6,29,149,143,0),(955,'2015-03-14 14:56:58','2015-08-29 14:46:08',1,30045340,7,1,5,3,0,14,10,78,17,8,26,12,5,26,32,24,12,10,7,7,7,33,6,0),(956,'2015-03-14 14:56:58','2015-08-29 14:46:08',1,30001414,160,77,76,21,105,79,58,152,85,127,249,227,102,196,169,166,198,140,108,114,62,178,75,0),(957,'2015-03-14 14:56:58','2015-08-29 14:46:08',1,30001289,0,0,7,50,54,0,0,0,0,4,3,0,42,0,0,1,4,63,79,27,0,0,47,0),(958,'2015-03-14 14:56:58','2015-08-29 14:46:08',1,30004717,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,48,0,0,0,0,0,0,0),(959,'2015-03-14 14:56:58','2015-08-29 14:46:08',1,30004277,0,24,0,122,45,0,0,0,0,0,9,0,0,3,0,0,2,0,0,0,0,0,9,0),(960,'2015-03-14 14:56:58','2015-08-29 14:46:08',1,30005098,0,0,0,2,2,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(961,'2015-03-14 14:56:58','2015-08-29 14:46:08',1,30003291,43,10,0,0,0,0,43,9,0,0,0,4,11,8,15,8,0,4,0,0,20,30,46,0),(962,'2015-03-14 14:56:58','2015-08-29 14:46:08',1,30002992,123,207,34,26,47,122,6,166,28,53,1,64,322,1,4,35,67,69,68,87,84,146,249,0),(963,'2015-03-14 14:56:58','2015-08-29 14:46:08',1,30000088,46,124,9,0,1,46,0,31,54,17,0,57,0,47,10,37,38,102,52,22,11,19,21,0),(964,'2015-03-14 14:56:58','2015-08-29 14:46:08',1,30004147,137,36,22,3,3,41,10,18,223,60,107,17,144,117,78,50,201,77,79,107,30,211,146,0),(965,'2015-03-14 14:56:58','2015-08-29 14:46:08',1,30000065,0,0,5,12,13,55,0,0,50,26,0,9,1,67,32,0,26,0,0,0,1,56,46,0),(966,'2015-03-14 14:56:58','2015-08-29 14:46:08',1,30002197,386,235,176,108,220,939,235,251,213,396,332,184,587,548,533,589,406,109,185,201,330,196,208,0),(967,'2015-03-14 14:56:58','2015-08-29 14:46:08',1,30015042,95,162,10,0,0,0,11,9,80,100,63,24,0,0,0,0,0,17,80,51,53,36,192,0),(968,'2015-03-14 14:56:58','2015-08-29 14:46:08',1,30011407,430,707,569,674,737,511,272,201,757,982,945,756,656,1050,821,958,713,736,825,701,832,780,562,0),(969,'2015-03-14 14:56:58','2015-08-29 14:46:08',1,30045342,6,0,35,0,0,16,0,4,12,15,15,141,3,13,15,23,23,8,1,7,6,9,16,0),(970,'2015-03-14 14:56:58','2015-08-29 14:46:08',1,30003479,18,0,3,0,0,8,0,19,4,4,2,6,0,8,11,7,36,0,0,44,0,0,4,0),(971,'2015-03-14 14:56:58','2015-08-29 14:46:08',1,30000178,126,112,290,256,327,193,217,250,99,88,242,69,73,341,424,344,346,54,136,88,238,188,143,0),(972,'2015-03-14 14:56:58','2015-08-29 14:46:08',1,30000200,2,0,53,78,89,4,0,0,0,31,0,84,38,4,4,0,2,0,0,0,39,29,0,0),(973,'2015-03-14 14:56:58','2015-08-29 14:46:08',1,30001382,347,334,242,180,164,317,154,403,272,529,426,231,284,392,490,442,218,139,89,175,342,423,450,0),(974,'2015-03-14 14:56:58','2015-08-29 14:46:08',1,30000163,0,19,116,0,0,0,5,0,10,16,21,40,5,17,16,0,97,29,0,0,17,57,10,0),(975,'2015-03-14 14:56:58','2015-08-29 14:46:08',1,30000003,73,24,77,152,56,0,22,59,154,129,120,81,102,283,95,75,55,140,61,174,144,99,118,0),(976,'2015-03-14 14:56:58','2015-08-29 14:46:08',1,30001534,0,0,0,0,0,0,40,0,0,0,2,0,0,0,0,0,0,0,0,132,0,0,0,0),(977,'2015-03-14 14:56:58','2015-08-29 14:46:08',1,30004578,8,0,0,89,80,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(978,'2015-03-14 14:56:58','2015-08-29 14:46:08',1,30002652,64,56,39,78,78,136,1,8,44,321,125,4,259,50,18,23,65,20,64,89,81,64,31,0),(979,'2015-03-14 14:56:58','2015-08-29 14:46:08',1,30003042,4,1,39,9,9,80,27,41,99,66,37,6,29,17,10,8,10,29,21,30,14,26,5,0),(980,'2015-03-14 14:56:58','2015-08-29 14:46:08',1,30002512,18,185,79,60,55,104,174,227,139,197,150,71,136,80,149,282,183,95,61,174,161,123,241,0),(981,'2015-03-14 14:56:58','2015-08-29 14:46:08',1,30005225,0,54,0,0,0,9,0,0,0,0,0,0,10,7,1,0,0,0,1,0,0,0,64,0),(982,'2015-03-14 14:56:58','2015-08-29 14:46:08',1,30003854,0,31,22,1,0,12,48,29,20,10,0,7,3,2,42,95,70,1,9,7,29,93,8,0),(983,'2015-03-14 14:56:58','2015-03-14 14:56:58',1,30002338,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(984,'2015-03-14 14:56:58','2015-08-29 14:46:08',1,30003415,113,241,127,239,139,134,301,129,198,78,146,17,69,179,286,274,93,179,70,148,310,431,195,0),(985,'2015-03-14 14:56:58','2015-08-29 14:46:08',1,30002216,9,2,8,28,93,101,43,0,0,22,3,0,4,5,2,7,6,0,0,11,6,0,4,0),(986,'2015-03-14 14:56:58','2015-08-29 14:46:08',1,30003464,18,138,137,373,390,78,61,85,46,63,328,147,29,81,30,35,62,64,144,39,55,9,139,0),(987,'2015-03-14 14:56:58','2015-08-29 14:46:08',1,30003379,79,3,47,34,8,61,13,19,21,27,41,26,32,115,47,91,10,10,20,52,332,209,15,0),(988,'2015-03-14 14:56:58','2015-08-29 14:46:08',1,30003837,7,15,10,12,29,5,14,3,0,7,3,1,50,7,14,12,4,4,2,0,6,20,16,0),(989,'2015-03-14 14:56:58','2015-08-29 14:46:08',1,30003416,81,72,83,204,175,18,48,75,40,121,80,63,208,14,10,68,122,63,77,66,58,75,125,0),(990,'2015-03-14 14:56:58','2015-08-29 14:46:08',1,30005302,78,350,263,332,222,131,224,266,406,234,284,259,485,448,388,255,368,254,190,270,356,404,513,0),(991,'2015-03-14 14:56:58','2015-08-29 14:46:08',1,30005304,136,380,203,127,126,217,96,197,93,202,128,95,230,308,352,301,160,208,154,144,225,156,317,0),(992,'2015-03-14 14:56:58','2015-08-29 14:46:08',1,30003380,24,27,88,16,48,69,54,0,37,81,75,5,34,108,161,148,28,29,131,32,66,55,89,0),(993,'2015-03-14 14:56:58','2015-08-29 14:46:08',1,30003811,39,25,83,200,188,15,84,140,41,34,6,34,139,32,32,1,57,7,10,14,2,158,95,0),(994,'2015-03-14 14:56:58','2015-08-29 14:46:08',1,30004972,272,244,189,320,270,260,92,132,303,336,356,176,274,292,418,376,179,181,137,202,236,374,370,0),(995,'2015-03-14 14:56:58','2015-08-29 14:46:08',1,30002698,79,27,14,0,14,54,143,49,108,0,0,0,0,0,0,0,23,8,0,57,80,41,8,0),(996,'2015-03-14 14:56:58','2015-08-29 14:46:08',1,30002754,134,158,64,107,123,209,252,181,65,131,230,72,78,303,273,295,288,30,145,125,156,132,223,0),(997,'2015-03-14 14:56:58','2015-08-29 14:46:08',1,30002712,121,95,332,70,208,108,42,72,141,373,297,243,228,334,252,214,238,127,52,140,227,210,82,0),(998,'2015-03-14 14:56:58','2015-08-29 14:46:08',1,30003521,53,34,49,53,30,9,40,118,82,82,64,58,143,136,81,81,85,87,21,24,185,70,37,0),(999,'2015-03-14 14:56:58','2015-08-29 14:46:08',1,30000034,47,76,181,94,109,134,33,117,113,5,5,28,105,147,167,57,132,55,51,40,127,53,64,0),(1000,'2015-03-14 14:56:58','2015-08-29 14:46:08',1,30004995,88,185,151,286,282,186,238,242,147,257,229,165,174,377,376,313,299,119,104,276,484,273,248,0),(1001,'2015-03-14 14:56:58','2015-08-29 14:46:08',1,30005009,43,57,227,169,125,49,53,291,0,4,7,0,283,126,2,1,4,113,117,143,154,43,85,0),(1002,'2015-03-14 14:56:58','2015-08-29 14:46:08',1,30002664,139,239,130,57,42,36,144,168,3,45,41,25,164,241,547,533,161,235,193,227,314,101,280,0),(1003,'2015-03-14 14:56:58','2015-08-29 14:46:08',1,30002727,0,0,1,0,0,14,19,17,8,3,3,0,0,0,0,0,74,0,0,7,13,126,2,0),(1004,'2015-03-14 14:56:58','2015-08-29 14:46:08',1,30003850,32,10,37,30,15,18,11,29,0,7,20,0,44,0,3,5,7,14,0,0,13,29,0,0),(1005,'2015-03-14 14:56:58','2015-08-29 14:46:08',1,30003800,0,22,8,149,134,3,30,1,9,0,0,11,3,23,0,0,71,0,24,54,0,0,27,0),(1006,'2015-03-14 14:56:58','2015-08-29 14:46:08',1,30001730,87,125,48,206,68,3,7,61,1,2,7,24,19,69,82,135,17,110,41,13,40,24,71,0),(1007,'2015-03-14 14:56:58','2015-08-29 14:46:08',1,30003841,2,24,31,8,21,9,59,11,14,20,13,24,8,17,19,21,2,0,0,2,6,8,2,0),(1008,'2015-03-14 14:56:58','2015-08-29 14:46:08',1,30002678,27,145,138,84,100,98,310,39,100,112,74,85,110,161,103,209,148,38,191,131,118,181,7,0),(1009,'2015-03-14 14:56:58','2015-08-29 14:46:08',1,30002407,1,76,5,17,0,0,0,13,0,2,0,7,22,3,4,5,9,8,96,0,5,13,3,0),(1010,'2015-03-14 14:56:58','2015-08-29 14:46:08',1,30003389,243,167,175,126,161,128,84,158,247,283,303,241,371,142,257,276,94,57,78,101,167,116,152,0),(1011,'2015-03-14 14:56:58','2015-08-29 14:46:08',1,30003917,0,4,4,12,7,20,0,0,3,0,0,0,0,0,0,0,0,0,0,0,27,0,0,0),(1012,'2015-03-14 14:56:58','2015-08-29 14:46:08',1,30002537,5,3,28,0,1,82,0,0,5,1,2,4,4,0,0,0,6,1,1,12,0,1,4,0),(1013,'2015-03-14 14:56:58','2015-08-29 14:46:08',1,30004983,0,26,165,98,208,52,144,8,45,72,83,9,83,89,39,8,54,124,24,43,98,16,6,0),(1014,'2015-03-14 14:56:58','2015-08-29 14:46:08',1,30002187,163,185,138,88,137,288,136,114,333,332,401,262,624,489,532,362,304,136,238,247,193,520,184,0),(1015,'2015-03-14 14:56:58','2015-08-29 14:46:08',1,30003848,1,0,0,0,6,0,80,16,3,31,9,12,0,37,29,7,74,35,8,0,97,100,0,0),(1016,'2015-03-14 14:56:58','2015-08-29 14:46:08',1,30003012,249,147,382,124,76,292,203,261,164,163,56,76,72,110,78,70,88,131,108,113,184,238,70,0),(1017,'2015-03-14 14:56:58','2015-08-29 14:46:08',1,30002644,113,7,122,54,26,146,56,328,163,82,144,302,20,101,249,281,139,44,50,117,144,14,123,0),(1018,'2015-03-14 14:56:58','2015-08-29 14:46:08',1,30005036,190,162,76,181,118,61,41,159,178,180,146,206,78,82,185,198,139,100,107,238,268,220,235,0),(1019,'2015-03-14 14:56:58','2015-08-29 14:46:08',1,30002511,35,39,100,211,96,47,104,51,84,96,149,161,110,27,113,207,184,73,26,99,107,44,38,0),(1020,'2015-03-14 14:56:58','2015-08-29 14:46:08',1,30005035,3,6,0,0,0,3,41,21,8,2,4,0,3,30,24,191,73,99,54,0,20,0,15,0),(1021,'2015-03-14 14:56:58','2015-08-29 14:46:08',1,30002547,686,605,539,433,417,598,513,341,923,977,752,633,787,1126,939,806,915,237,668,911,892,872,841,0),(1022,'2015-03-14 14:56:58','2015-08-29 14:46:08',1,30002055,33,116,15,77,210,29,25,61,388,91,186,98,119,223,177,209,68,61,177,222,165,216,228,0),(1023,'2015-03-14 14:56:58','2015-08-29 14:46:08',1,30003480,31,33,0,31,27,7,0,69,0,39,81,42,14,189,149,41,17,10,0,0,0,0,49,0),(1024,'2015-03-14 14:56:58','2015-08-29 14:46:08',1,30005329,0,12,8,10,8,112,1,0,0,18,0,1,12,11,23,18,0,18,6,0,0,0,0,0),(1025,'2015-03-14 14:56:58','2015-08-29 14:46:08',1,30003847,16,180,0,4,0,46,0,7,31,1,54,0,40,4,0,11,16,19,16,13,3,97,0,0),(1026,'2015-03-14 14:56:58','2015-08-29 14:46:08',1,30000058,75,16,136,26,103,43,72,17,80,230,137,56,89,179,137,100,133,159,56,141,291,135,167,0),(1027,'2015-03-14 14:56:58','2015-08-29 14:46:08',1,30001392,355,180,377,239,355,229,206,227,165,356,348,325,399,315,471,387,714,398,493,495,462,436,341,0),(1028,'2015-03-14 14:56:58','2015-08-29 14:46:08',1,30005311,149,276,395,415,218,202,328,370,144,251,250,176,600,278,266,274,213,147,321,330,371,555,388,0),(1029,'2015-03-14 14:56:58','2015-08-29 14:46:08',1,30004527,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,121,0),(1030,'2015-03-14 14:56:58','2015-08-29 14:46:08',1,30003552,0,0,0,0,0,0,23,10,0,0,0,0,0,41,0,0,0,0,19,44,35,68,8,0),(1031,'2015-03-14 14:56:58','2015-08-29 14:46:08',1,30005279,0,0,68,0,43,0,0,0,0,55,84,0,0,0,15,15,0,0,0,8,25,0,35,0),(1032,'2015-03-14 14:56:58','2015-08-29 14:46:08',1,30004301,0,0,52,40,13,36,0,0,0,24,24,0,0,0,0,0,48,0,0,2,16,49,39,0),(1033,'2015-03-14 14:56:58','2015-08-29 14:46:08',1,30003398,154,171,110,28,84,92,23,13,68,83,81,85,27,56,56,62,105,55,40,46,21,182,213,0),(1034,'2015-03-14 14:56:58','2015-08-29 14:46:08',1,30003840,77,23,20,5,13,74,3,12,0,4,7,0,15,16,49,51,16,34,22,5,21,12,5,0),(1035,'2015-03-14 14:56:58','2015-08-29 14:46:08',1,30003571,0,0,13,2,1,19,9,1,0,0,0,10,0,10,10,0,11,14,0,0,56,21,12,0),(1036,'2015-03-14 14:56:58','2015-08-29 14:46:08',1,30003485,42,52,45,50,22,11,34,10,64,0,55,37,9,61,53,39,5,26,13,118,6,31,27,0),(1037,'2015-03-14 14:56:58','2015-08-29 14:46:08',1,30005028,163,48,102,179,220,82,312,58,81,100,71,102,148,353,283,130,135,94,53,188,116,212,40,0),(1038,'2015-03-14 14:56:58','2015-08-29 14:46:08',1,30005049,195,295,165,236,162,58,86,119,193,196,108,212,342,99,167,264,156,147,400,399,162,227,148,0),(1039,'2015-03-14 14:56:58','2015-08-29 14:46:08',1,30005022,18,0,18,4,5,0,0,6,41,106,106,6,0,3,25,22,28,24,1,11,0,0,1,0),(1040,'2015-03-14 14:56:58','2015-08-29 14:46:08',1,30003062,0,3,0,63,1,4,0,1,4,5,4,0,8,0,27,28,70,12,29,13,8,1,12,0),(1041,'2015-03-14 14:56:58','2015-08-29 14:46:08',1,30005264,13,8,0,20,13,0,10,5,1,0,0,59,16,8,0,0,1,0,13,0,0,35,29,0),(1042,'2015-03-14 14:56:58','2015-08-29 14:46:08',1,30003046,103,96,100,35,21,44,33,167,111,23,18,35,43,75,56,34,181,33,55,34,82,75,13,0),(1043,'2015-03-14 14:56:58','2015-08-29 14:46:08',1,30002051,145,66,61,172,87,43,102,92,86,106,125,88,137,96,29,38,47,190,18,10,51,85,110,0),(1044,'2015-03-14 14:56:58','2015-08-29 14:46:08',1,30003515,0,46,134,134,25,0,129,9,172,119,163,66,14,24,60,103,61,13,22,68,171,95,40,0),(1045,'2015-03-14 14:56:58','2015-08-29 14:46:08',1,30001439,69,15,35,198,102,2,57,32,137,3,50,38,0,92,81,90,77,83,3,30,105,94,85,0),(1046,'2015-03-14 14:56:58','2015-08-29 14:46:08',1,30001647,21,61,117,71,30,61,58,25,136,68,57,52,78,73,72,123,72,81,73,89,126,117,35,0),(1047,'2015-03-14 14:56:58','2015-08-29 14:46:08',1,30003071,3,21,37,15,18,23,6,31,17,29,46,0,0,3,7,4,17,2,18,13,4,24,11,0),(1048,'2015-03-14 14:56:58','2015-08-29 14:46:08',1,30025042,120,231,176,0,0,300,0,138,90,238,256,133,70,217,225,105,232,98,14,330,267,91,7,0),(1049,'2015-03-14 14:56:58','2015-08-29 14:46:08',1,30004989,22,76,36,42,20,67,3,96,97,46,31,42,23,63,46,39,47,24,33,85,92,28,190,0),(1050,'2015-03-14 14:56:58','2015-08-29 14:46:08',1,30003791,28,7,10,0,6,1,14,23,0,9,12,8,0,2,0,5,14,13,16,33,30,108,1,0),(1051,'2015-03-14 14:56:58','2015-08-29 14:46:08',1,30002776,378,408,261,199,208,213,205,130,354,445,482,406,321,334,574,782,861,245,302,388,362,474,448,0),(1052,'2015-03-14 14:56:58','2015-08-29 14:46:08',1,30005326,80,148,65,146,154,134,29,171,242,122,99,125,101,293,361,270,17,33,98,118,129,199,247,0),(1053,'2015-03-14 14:56:58','2015-08-29 14:46:08',1,30004291,0,0,57,0,0,0,9,28,0,9,18,0,0,35,117,124,0,18,25,39,86,20,0,0),(1054,'2015-03-14 14:56:58','2015-08-29 14:46:08',1,30005309,202,243,174,214,210,162,188,231,233,102,113,58,417,319,355,285,145,189,291,550,242,199,135,0),(1055,'2015-03-14 14:56:58','2015-08-29 14:46:08',1,30004104,2,0,10,0,0,0,0,75,0,19,79,22,3,0,65,66,0,97,84,0,0,0,0,0),(1056,'2015-03-14 14:56:58','2015-08-29 14:46:08',1,30002081,7,0,33,0,0,9,7,0,19,15,7,9,9,4,2,108,0,0,18,0,9,58,39,0),(1057,'2015-03-14 14:56:58','2015-08-29 14:46:08',1,30003440,51,58,0,0,48,26,0,21,11,32,8,55,111,0,31,31,0,100,47,47,0,40,28,0),(1058,'2015-03-14 14:56:58','2015-08-29 14:46:08',1,30000132,231,448,218,334,197,144,113,115,50,255,318,59,169,221,154,211,73,25,64,114,229,163,400,0),(1059,'2015-03-14 14:56:58','2015-08-29 14:46:08',1,30002669,220,67,65,83,17,270,58,32,17,55,54,80,106,184,118,71,91,1,17,13,60,86,43,0),(1060,'2015-03-14 14:56:58','2015-08-29 14:46:08',1,30003426,57,361,137,13,74,123,167,32,75,330,44,40,33,32,99,220,108,8,25,64,111,60,53,0),(1061,'2015-03-14 14:56:58','2015-08-29 14:46:08',1,30005261,50,0,24,53,0,0,53,92,1,22,0,29,24,41,0,0,15,3,2,4,8,49,198,0),(1062,'2015-03-14 14:56:58','2015-08-29 14:46:08',1,30001357,234,6,100,161,305,4,99,0,130,335,251,93,41,152,238,209,219,181,54,94,36,0,374,0),(1063,'2015-03-14 14:56:58','2015-08-29 14:46:08',1,30003051,72,233,22,82,162,124,42,66,89,136,65,36,155,243,348,246,68,14,47,39,103,101,12,0),(1064,'2015-03-14 14:56:58','2015-08-29 14:46:08',1,30002805,393,524,233,321,282,431,359,397,303,275,353,441,468,604,610,785,425,409,538,617,549,782,534,0),(1065,'2015-03-14 14:56:58','2015-08-29 14:46:08',1,30005249,1,23,27,77,4,87,3,68,1,0,19,120,41,37,43,150,28,0,4,5,102,64,5,0),(1066,'2015-03-14 14:56:58','2015-08-29 14:46:08',1,30005252,0,142,35,21,0,156,72,7,61,314,275,42,8,133,124,16,0,57,67,75,116,64,14,0),(1067,'2015-03-14 14:56:58','2015-08-29 14:46:08',1,30004006,0,0,0,0,0,0,0,0,0,0,0,0,0,519,221,0,790,0,0,958,0,0,0,0),(1068,'2015-03-14 14:56:58','2015-08-29 14:46:08',1,30001216,307,0,101,129,64,54,205,115,122,238,263,280,84,76,21,0,106,169,53,26,20,9,87,0),(1069,'2015-03-14 14:56:58','2015-08-29 14:46:08',1,30021407,72,67,85,143,99,105,7,53,0,53,58,1,22,36,0,37,52,49,14,70,32,7,115,0),(1070,'2015-03-14 14:56:58','2015-08-29 14:46:08',1,30002453,44,18,145,474,674,415,998,948,0,28,1,56,0,5,28,28,0,0,12,29,15,0,0,0),(1071,'2015-03-14 14:56:58','2015-08-29 14:46:08',1,30005216,1699,805,1959,1799,1599,2000,893,1740,1600,2119,2779,1757,2257,3179,3537,3337,2359,1010,875,2214,2599,2857,2668,0),(1072,'2015-03-14 14:56:58','2015-08-29 14:46:08',1,30001114,0,95,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(1073,'2015-03-14 14:56:58','2015-08-29 14:46:08',1,30004079,328,473,634,282,399,471,322,218,853,939,713,620,453,456,397,369,565,232,295,261,294,411,244,0),(1074,'2015-03-14 14:56:58','2015-08-29 14:46:08',1,30004124,116,68,161,13,6,113,95,339,129,208,199,57,158,116,98,91,29,40,100,70,133,113,173,0),(1075,'2015-03-14 14:56:58','2015-08-29 14:46:08',1,30004576,0,0,0,0,0,0,0,98,0,0,0,0,0,0,0,0,0,0,0,0,4,0,1,0),(1076,'2015-03-14 14:56:58','2015-08-29 14:46:08',1,30005019,191,134,323,393,334,127,104,21,110,137,118,88,138,101,130,355,251,170,166,157,115,236,26,0),(1077,'2015-03-14 14:56:58','2015-08-29 14:46:08',1,30002565,109,121,120,197,37,42,78,69,40,202,176,181,81,116,92,79,165,120,0,66,63,0,125,0),(1078,'2015-03-14 14:56:58','2015-08-29 14:46:08',1,30003656,20,9,11,53,0,5,45,47,87,80,0,0,74,423,120,115,10,0,762,1000,0,574,959,0),(1079,'2015-03-14 14:56:58','2015-08-29 14:46:08',1,30001740,77,4,13,14,43,14,194,44,4,4,0,10,22,65,12,17,97,7,74,70,25,10,8,0),(1080,'2015-03-14 14:56:58','2015-08-29 14:46:08',1,30002551,32,0,0,0,82,0,0,0,1,0,0,0,39,0,0,0,3,19,8,20,14,0,0,0),(1081,'2015-03-14 14:56:58','2015-08-29 14:46:08',1,30002817,346,328,278,419,452,265,223,371,322,228,565,116,219,207,221,264,66,261,158,219,277,422,276,0),(1082,'2015-03-14 14:56:58','2015-08-29 14:46:08',1,30000092,108,54,1,8,38,66,3,47,7,0,41,9,0,51,88,51,32,0,0,0,51,78,52,0),(1083,'2015-03-14 14:56:58','2015-08-29 14:46:08',1,30004994,179,516,319,168,205,364,129,193,169,143,34,52,132,100,180,190,270,83,261,222,296,160,239,0),(1084,'2015-03-14 14:56:58','2015-08-29 14:46:08',1,30003590,72,15,63,53,71,27,138,105,23,31,82,129,68,209,153,9,24,43,124,51,118,114,0,0),(1085,'2015-03-14 14:56:58','2015-08-29 14:46:08',1,30002977,17,20,33,60,88,24,10,3,2,22,4,4,2,0,15,15,37,39,0,0,27,8,8,0),(1086,'2015-03-14 14:56:58','2015-08-29 14:46:08',1,30003487,388,220,207,372,328,124,278,27,163,397,287,132,202,381,257,171,314,80,126,504,275,297,233,0),(1087,'2015-03-14 14:56:58','2015-08-29 14:46:08',1,30004669,0,0,0,116,0,0,116,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(1088,'2015-03-14 14:56:58','2015-08-29 14:46:08',1,30003824,0,193,27,165,97,7,26,63,5,7,2,0,40,29,32,14,24,6,58,224,88,241,2,0),(1089,'2015-03-14 14:56:58','2015-08-29 14:46:08',1,30002702,6,123,0,0,0,192,62,105,2,69,68,0,1,18,18,0,0,0,0,78,16,0,8,0),(1090,'2015-03-14 14:56:58','2015-08-29 14:46:08',1,30003030,132,62,302,48,59,55,63,5,1,151,177,44,64,76,132,125,295,28,56,26,69,126,84,0),(1091,'2015-03-14 14:56:58','2015-08-29 14:46:08',1,30002058,1,3,0,0,8,1,0,2,9,13,7,0,1,63,65,27,45,12,20,16,41,5,81,0),(1092,'2015-03-14 14:56:58','2015-08-29 14:46:08',1,30002648,29,119,83,135,169,58,129,35,10,52,141,109,55,231,160,156,75,174,212,46,117,36,73,0),(1093,'2015-03-14 14:56:58','2015-08-29 14:46:08',1,30003852,11,56,36,63,20,6,55,39,5,0,2,48,7,90,63,7,23,4,2,4,4,10,7,0),(1094,'2015-03-14 14:56:58','2015-08-29 14:46:08',1,30004118,42,0,0,47,0,0,0,0,79,0,0,64,0,0,0,0,0,0,0,60,80,0,0,0),(1095,'2015-03-14 14:56:58','2015-08-29 14:46:08',1,30002231,4,17,12,14,0,0,68,8,47,0,0,47,88,4,0,70,1,0,8,4,35,100,95,0),(1096,'2015-03-14 14:56:58','2015-08-29 14:46:08',1,30000099,11,23,1,27,54,35,0,26,0,0,0,0,16,0,13,64,0,114,0,2,52,5,1,0),(1097,'2015-03-14 14:56:58','2015-08-29 14:46:08',1,30002244,14,116,93,59,12,13,30,46,126,66,19,16,46,36,63,79,117,24,60,83,71,41,39,0),(1098,'2015-03-14 14:56:58','2015-03-14 14:56:58',1,30000656,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(1099,'2015-03-14 14:56:58','2015-08-29 14:46:08',1,30002080,0,6,12,22,0,0,63,0,20,90,19,7,19,32,61,100,8,34,21,3,4,44,17,0),(1100,'2015-03-14 14:56:58','2015-08-29 14:46:08',1,30005239,0,0,0,0,0,15,0,0,8,0,4,0,1,11,10,27,43,19,48,15,2,35,0,0),(1101,'2015-03-14 14:56:58','2015-08-29 14:46:08',1,30003595,0,0,75,23,35,139,0,16,0,0,0,0,0,16,27,26,15,1,3,0,3,0,73,0),(1102,'2015-03-14 14:56:58','2015-08-29 14:46:08',1,30001704,149,42,124,209,110,86,66,34,17,3,95,14,88,36,43,19,71,146,145,130,179,127,19,0),(1103,'2015-03-14 14:56:58','2015-08-29 14:46:08',1,30003411,206,1,45,136,73,64,65,50,40,89,70,103,48,210,117,96,80,42,53,44,134,27,74,0),(1104,'2015-03-14 14:56:58','2015-08-29 14:46:08',1,30003374,5,269,109,161,61,104,35,46,90,111,146,162,117,131,63,46,197,31,78,164,17,25,144,0),(1105,'2015-03-14 14:56:58','2015-08-29 14:46:08',1,30002205,13,55,101,108,0,14,0,5,142,138,4,115,44,11,39,81,6,91,31,46,169,60,13,0),(1106,'2015-03-14 14:56:58','2015-08-29 14:46:08',1,30003009,103,322,504,226,237,224,316,591,344,606,773,223,353,182,401,475,280,49,82,180,190,223,177,0),(1107,'2015-03-14 14:56:58','2015-08-29 14:46:08',1,30002066,3,5,8,14,20,56,18,7,24,10,13,124,5,0,13,22,30,4,0,16,11,1,3,0),(1108,'2015-03-14 14:56:58','2015-08-29 14:46:08',1,30000112,97,0,167,9,5,84,69,49,78,52,101,17,13,10,9,54,79,11,29,90,6,0,20,0),(1109,'2015-03-14 14:56:58','2015-08-29 14:46:08',1,30005001,1152,1855,1474,1355,1337,1346,1009,1019,1316,1926,1829,1452,1771,1973,1885,2108,1442,1106,1061,1629,1736,1909,1790,0),(1110,'2015-03-14 14:56:58','2015-08-29 14:46:08',1,30002064,0,60,51,12,6,48,65,55,8,2,2,5,120,15,6,5,74,1,13,2,10,25,7,0),(1111,'2015-03-14 14:56:58','2015-08-29 14:46:08',1,30002240,0,0,72,104,29,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(1112,'2015-03-14 14:56:58','2015-08-29 14:46:08',1,30005330,133,268,162,217,290,79,121,179,222,236,182,173,254,252,377,466,244,250,343,185,198,386,270,0),(1113,'2015-03-14 14:56:58','2015-08-29 14:46:08',1,30002253,150,246,29,116,42,0,332,0,55,84,79,6,123,63,97,101,1,7,105,15,136,179,38,0),(1114,'2015-03-14 14:56:58','2015-08-29 14:46:08',1,30002687,34,30,241,0,0,11,9,24,55,62,65,14,2,52,52,6,54,8,0,84,61,202,20,0),(1115,'2015-03-14 14:56:58','2015-08-29 14:46:08',1,30003556,25,0,0,0,0,0,44,9,0,1,0,0,9,0,0,0,13,38,0,0,1,5,13,0),(1116,'2015-03-14 14:56:58','2015-08-29 14:46:08',1,30002278,236,71,56,107,116,53,126,123,88,147,150,109,64,156,225,205,213,105,125,233,308,214,56,0),(1117,'2015-03-14 14:56:58','2015-08-29 14:46:08',1,30001381,340,836,732,704,639,588,198,335,169,379,329,268,367,386,392,401,264,318,188,101,266,491,312,0),(1118,'2015-03-14 14:56:58','2015-08-29 14:46:08',1,30003007,0,158,47,163,26,0,0,93,6,9,8,3,0,0,0,3,54,29,100,50,22,0,100,0),(1119,'2015-03-14 14:56:58','2015-08-29 14:46:08',1,30002078,65,9,18,61,30,35,0,0,3,12,22,29,27,46,23,4,2,6,21,1,94,0,49,0),(1120,'2015-03-14 14:56:58','2015-08-29 14:46:08',1,30005086,0,0,0,0,0,96,21,0,0,0,0,0,2,25,25,0,0,0,0,0,0,0,4,0),(1121,'2015-03-14 14:56:58','2015-08-29 14:46:08',1,30002960,32,0,32,12,15,3,0,30,7,14,13,4,10,12,12,9,10,4,1,4,11,68,12,0),(1122,'2015-03-14 14:56:58','2015-08-29 14:46:08',1,30003885,0,114,73,62,14,151,54,0,0,0,0,26,22,0,0,19,42,7,19,75,117,0,0,0),(1123,'2015-03-14 14:56:58','2015-08-29 14:46:08',1,30005065,5,10,22,4,0,12,1,20,29,18,18,0,0,0,0,0,0,5,0,0,11,2,0,0),(1124,'2015-03-14 14:56:58','2015-08-29 14:46:08',1,30003921,0,0,0,8,16,2,0,0,0,9,0,0,0,0,0,0,0,0,0,0,4,0,0,0),(1125,'2015-03-14 14:56:58','2015-08-29 14:46:08',1,30000012,56,0,2,0,32,0,0,0,1,0,70,1,0,0,51,72,6,0,0,0,9,0,0,0),(1126,'2015-03-14 14:56:58','2015-08-29 14:46:08',1,30045332,78,1,3,10,11,0,3,3,1,1,4,10,9,0,2,36,0,0,0,7,1,1,2,0),(1127,'2015-03-14 14:56:58','2015-08-29 14:46:08',1,30005251,21,278,11,1,3,46,35,95,351,455,507,616,42,130,57,27,239,53,37,61,88,47,67,0),(1128,'2015-03-14 14:56:58','2015-08-29 14:46:08',1,30001689,77,6,55,40,43,74,53,36,73,43,105,49,116,90,78,97,50,55,139,108,104,152,124,0),(1129,'2015-03-14 14:56:58','2015-08-29 14:46:08',1,30002084,0,7,5,7,4,0,37,0,22,58,55,42,21,15,3,15,13,34,14,67,2,1,19,0),(1130,'2015-03-14 14:56:58','2015-08-29 14:46:08',1,30001708,73,200,97,64,68,48,37,57,68,112,142,47,154,113,80,82,115,85,191,90,73,168,270,0),(1131,'2015-03-14 14:56:58','2015-08-29 14:46:08',1,30003384,30,149,49,94,23,66,78,55,40,18,79,115,57,67,50,30,19,14,5,19,91,64,120,0),(1132,'2015-03-14 14:56:58','2015-08-29 14:46:08',1,30000084,53,31,25,13,0,3,0,5,51,8,0,49,42,154,117,31,1,1,44,60,66,21,87,0),(1133,'2015-03-14 14:56:58','2015-08-29 14:46:08',1,30002978,18,36,10,14,14,12,9,16,12,14,23,13,14,2,20,32,41,5,6,11,13,15,31,0),(1134,'2015-03-14 14:56:58','2015-08-29 14:46:08',1,30003491,20,135,169,148,23,47,94,105,68,87,25,93,138,133,131,71,183,95,174,131,233,109,105,0),(1135,'2015-03-14 14:56:58','2015-08-29 14:46:08',1,30003890,38,56,147,74,135,63,42,80,262,216,1,27,39,27,32,60,30,33,37,119,26,16,76,0),(1136,'2015-03-14 14:56:58','2015-08-29 14:46:08',1,30045311,18,0,22,6,6,0,1,15,12,30,25,109,14,34,21,33,42,0,16,123,15,18,9,0),(1137,'2015-03-14 14:56:58','2015-08-29 14:46:08',1,30003919,10,0,0,9,9,0,0,0,0,0,0,0,0,22,0,0,0,0,0,0,11,37,308,0),(1138,'2015-03-14 14:56:58','2015-08-29 14:46:08',1,30003886,0,0,3,0,0,0,0,0,99,0,3,1,35,0,0,0,0,0,104,99,7,0,0,0),(1139,'2015-03-14 14:56:58','2015-08-29 14:46:08',1,30005214,205,99,253,305,456,323,154,434,228,206,288,490,318,679,555,466,655,257,224,776,698,644,494,0),(1140,'2015-03-14 14:56:58','2015-08-29 14:46:08',1,30000095,9,0,0,0,0,96,0,4,0,0,0,26,16,5,6,6,1,0,0,0,8,0,1,0),(1141,'2015-03-14 14:56:58','2015-08-29 14:46:08',1,30004093,321,248,206,90,129,428,232,221,173,180,233,361,215,142,260,445,202,120,347,325,267,361,114,0),(1142,'2015-03-14 14:56:58','2015-08-29 14:46:08',1,30002272,21,58,0,0,18,28,9,0,0,0,0,0,15,0,0,0,81,0,8,8,14,0,133,0),(1143,'2015-03-14 14:56:58','2015-08-29 14:46:08',1,30004156,164,170,158,35,207,246,26,55,172,95,45,250,396,309,201,127,309,172,270,380,290,81,75,0),(1144,'2015-03-14 14:56:58','2015-08-29 14:46:08',1,30000075,1,12,6,0,0,0,0,0,0,170,163,37,3,53,3,18,0,0,10,0,11,0,40,0),(1145,'2015-03-14 14:56:58','2015-08-29 14:46:08',1,30005224,0,0,14,32,47,0,42,1,0,19,16,3,0,3,0,0,8,49,8,0,5,0,104,0),(1146,'2015-03-14 14:56:58','2015-08-29 14:46:08',1,30001723,70,84,25,23,25,54,34,0,0,25,18,0,45,13,32,33,50,20,0,0,0,14,83,0),(1147,'2015-03-14 14:56:58','2015-08-29 14:46:08',1,30002724,127,82,44,142,60,64,0,42,18,56,56,95,82,31,21,0,56,0,0,18,17,16,110,0),(1148,'2015-03-14 14:56:58','2015-08-29 14:46:08',1,30000113,0,0,9,1,0,0,35,30,3,0,0,45,0,83,2,2,10,0,0,0,16,4,37,0),(1149,'2015-03-14 14:56:58','2015-08-29 14:46:08',1,30045323,263,343,124,214,281,164,189,179,129,215,328,336,265,178,372,615,236,358,236,371,393,412,878,0),(1150,'2015-03-14 14:56:58','2015-08-29 14:46:08',1,30001419,160,184,101,114,85,244,23,100,136,152,191,209,109,255,169,250,133,25,205,198,231,183,190,0),(1151,'2015-03-14 14:56:58','2015-08-29 14:46:08',1,30005077,0,0,0,2,10,0,0,0,0,0,0,28,0,3,0,0,0,0,0,4,87,46,21,0),(1152,'2015-03-14 14:56:58','2015-08-29 14:46:08',1,30002557,0,182,2,53,36,146,0,18,73,121,119,296,47,149,41,24,2,23,3,0,262,318,48,0),(1153,'2015-03-14 14:56:58','2015-08-29 14:46:08',1,30003031,72,95,59,99,83,100,143,104,112,45,46,52,150,194,102,70,150,110,55,150,157,178,70,0),(1154,'2015-03-14 14:56:58','2015-08-29 14:46:08',1,30003856,71,59,30,12,15,14,13,9,0,12,12,2,25,3,11,26,23,7,72,21,0,0,20,0),(1155,'2015-03-14 14:56:58','2015-08-29 14:46:08',1,30002701,137,97,237,116,162,262,39,96,155,127,85,29,195,316,207,226,223,65,85,184,109,95,198,0),(1156,'2015-03-14 14:56:58','2015-08-29 14:46:08',1,30002695,190,164,380,277,263,244,173,181,378,321,387,129,304,628,518,547,408,449,317,289,338,505,378,0),(1157,'2015-03-14 14:56:58','2015-08-29 14:46:08',1,30002489,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,3,0,0,0),(1158,'2015-03-14 14:56:58','2015-08-29 14:46:08',1,30005024,0,34,101,108,106,72,112,110,86,71,0,0,270,56,59,55,58,73,51,188,28,26,102,0),(1159,'2015-03-14 14:56:58','2015-08-29 14:46:08',1,30003038,183,108,243,81,31,33,11,44,80,122,33,15,92,181,108,43,3,40,22,65,53,4,97,0),(1160,'2015-03-14 14:56:58','2015-08-29 14:46:08',1,30002389,0,40,23,4,0,31,33,1,0,0,0,0,0,4,19,16,0,3,6,0,3,2,33,0),(1161,'2015-03-14 14:56:58','2015-08-29 14:46:08',1,30005010,12,1,11,54,137,1,0,24,0,0,0,30,0,0,0,3,51,14,38,6,12,0,2,0),(1162,'2015-03-14 14:56:58','2015-08-29 14:46:08',1,30003455,34,87,38,20,29,144,14,154,6,57,256,163,30,237,141,77,85,13,71,1,44,9,32,0),(1163,'2015-03-14 14:56:58','2015-08-29 14:46:08',1,30001678,179,189,213,82,12,132,258,159,270,123,197,197,162,159,181,260,523,48,236,233,312,110,118,0),(1164,'2015-03-14 14:56:58','2015-08-29 14:46:08',1,30004654,0,0,0,0,0,0,0,80,0,0,0,0,0,0,0,0,0,0,0,0,127,0,0,0),(1165,'2015-03-14 14:56:58','2015-08-29 14:46:08',1,30005197,107,34,75,90,14,104,78,26,123,7,35,23,47,57,115,106,3,46,63,26,30,4,35,0),(1166,'2015-03-14 14:56:58','2015-08-29 14:46:08',1,30005004,177,130,176,194,198,136,27,166,429,340,198,224,179,342,314,179,188,190,251,315,229,193,188,0),(1167,'2015-03-14 14:56:58','2015-08-29 14:46:08',1,30003273,0,0,0,4,4,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,15,0,0),(1168,'2015-03-14 14:56:58','2015-08-29 14:46:08',1,30002834,50,0,0,0,0,187,19,115,0,0,0,0,63,0,0,0,0,0,0,0,0,0,0,0),(1169,'2015-03-14 14:56:58','2015-08-29 14:46:08',1,30003827,6,6,16,45,28,0,5,8,0,17,25,18,8,21,16,23,33,12,42,21,9,17,6,0),(1170,'2015-03-14 14:56:58','2015-08-29 14:46:08',1,30002709,2,68,140,92,90,24,39,84,127,56,77,52,93,59,76,87,31,58,60,32,177,154,64,0),(1171,'2015-03-14 14:56:58','2015-08-29 14:46:08',1,30003849,2,23,9,0,0,9,0,10,0,28,87,0,0,3,0,0,0,4,4,0,65,3,2,0),(1172,'2015-03-14 14:56:58','2015-08-29 14:46:08',1,30002684,167,145,106,142,161,17,127,26,150,55,95,145,39,290,35,72,142,129,86,62,198,64,6,0),(1173,'2015-03-14 14:56:58','2015-08-29 14:46:08',1,30002395,54,77,163,5,0,0,0,125,10,5,0,29,69,120,95,49,40,1,0,0,1,5,6,0),(1174,'2015-03-14 14:56:58','2015-08-29 14:46:08',1,30002641,100,138,287,343,396,236,164,170,231,113,127,285,264,140,121,192,109,222,183,289,311,254,316,0),(1175,'2015-03-14 14:56:58','2015-08-29 14:46:08',1,30002542,6,26,31,8,0,11,138,0,2,0,8,2,40,1,1,0,4,0,6,6,1,23,3,0),(1176,'2015-03-14 14:56:58','2015-08-29 14:46:08',1,30002680,148,75,75,114,77,94,184,48,169,150,170,90,232,122,136,162,210,104,58,46,107,200,137,0),(1177,'2015-03-14 14:56:58','2015-08-29 14:46:08',1,30003818,47,16,8,21,9,152,51,11,10,59,13,11,11,0,0,0,0,0,3,0,1,57,1,0),(1178,'2015-03-14 14:56:58','2015-08-29 14:46:08',1,30001398,15,0,0,0,0,90,0,1,6,24,14,28,0,0,0,17,117,0,0,32,11,51,7,0),(1179,'2015-03-14 14:56:58','2015-08-29 14:46:08',1,30002059,27,9,0,18,20,2,26,48,14,23,57,22,19,15,3,13,45,143,86,58,1,10,35,0),(1180,'2015-03-14 14:56:58','2015-08-29 14:46:08',1,30002657,703,521,818,1089,763,604,720,805,853,1029,1132,1119,689,1940,1673,1653,1220,858,1040,1438,1798,1340,822,0),(1181,'2015-03-14 14:56:58','2015-08-29 14:46:08',1,30003801,7,25,21,57,16,7,5,76,26,140,65,1,18,14,10,10,0,41,45,0,2,16,52,0),(1182,'2015-03-14 14:56:58','2015-08-29 14:46:08',1,30002716,219,36,251,169,258,15,188,40,92,287,261,181,126,96,86,105,300,23,203,116,103,125,176,0),(1183,'2015-03-14 14:56:58','2015-08-29 14:46:08',1,30003915,69,161,11,32,30,1,0,33,0,119,126,44,71,89,1,54,40,45,8,0,10,34,53,0),(1184,'2015-03-14 14:56:58','2015-08-29 14:46:08',1,30002561,0,9,0,0,0,0,0,0,0,26,26,56,44,0,30,40,25,0,0,0,0,0,0,0),(1185,'2015-03-14 14:56:58','2015-08-29 14:46:08',1,30001361,15,0,31,0,0,58,100,0,0,3,82,40,0,39,21,0,26,37,0,2,92,24,1,0),(1186,'2015-03-14 14:56:58','2015-08-29 14:46:08',1,30003821,15,68,18,1,29,56,0,0,44,78,91,7,133,3,14,12,1,41,40,26,0,1,2,0),(1187,'2015-03-14 14:56:58','2015-08-29 14:46:08',1,30002523,62,6,99,22,0,58,7,54,153,150,43,35,20,316,235,4,48,29,43,71,28,59,161,0),(1188,'2015-03-14 14:56:58','2015-08-29 14:46:08',1,30001411,201,135,69,140,186,265,52,116,101,76,156,137,107,152,173,249,140,202,188,287,356,206,372,0),(1189,'2015-03-14 14:56:58','2015-08-29 14:46:08',1,30001384,429,166,316,282,256,248,279,144,242,233,251,354,362,198,165,293,328,81,114,173,307,288,214,0),(1190,'2015-03-14 14:56:58','2015-08-29 14:46:08',1,30002656,330,273,519,425,409,437,158,321,498,728,977,397,857,1015,761,677,634,416,435,593,645,722,599,0),(1191,'2015-03-14 14:56:58','2015-08-29 14:46:08',1,30002744,139,527,481,460,167,269,190,156,253,431,158,194,150,441,357,261,69,252,154,331,251,429,239,0),(1192,'2015-03-14 14:56:58','2015-08-29 14:46:08',1,30004614,0,0,0,46,0,0,128,241,0,0,0,0,3,7,7,1,0,0,10,0,8,663,562,0),(1193,'2015-03-14 14:56:58','2015-08-29 14:46:08',1,30004249,7,250,37,30,14,43,28,8,8,2,7,11,27,0,0,30,7,9,4,93,17,36,180,0),(1194,'2015-03-14 14:56:58','2015-08-29 14:46:08',1,30002270,54,4,1,99,90,19,0,19,0,0,0,0,0,0,0,0,3,0,1,1,0,35,19,0),(1195,'2015-03-14 14:56:58','2015-08-29 14:46:08',1,30003843,4,10,0,69,82,37,9,0,0,0,1,28,44,3,3,0,0,35,43,0,38,23,39,0),(1196,'2015-03-14 14:56:58','2015-08-29 14:46:08',1,30003053,185,101,239,158,166,84,29,183,111,117,124,0,136,119,163,232,152,10,40,426,180,216,57,0),(1197,'2015-03-14 14:56:58','2015-08-29 14:46:08',1,30002089,0,10,80,3,18,1,0,0,120,13,12,29,53,18,31,26,23,5,1,48,2,8,32,0),(1198,'2015-03-14 14:56:58','2015-08-29 14:46:08',1,30003047,60,108,274,84,0,181,51,45,142,110,194,3,31,109,103,128,95,163,84,35,41,336,188,0),(1199,'2015-03-14 14:56:58','2015-08-29 14:46:08',1,30002530,510,566,647,810,556,326,238,91,175,162,271,319,232,282,252,243,263,59,75,284,138,228,125,0),(1200,'2015-03-14 14:56:58','2015-08-29 14:46:08',1,30005215,1580,1048,1979,2339,2160,1840,954,756,1580,2160,2040,2017,1699,2535,2595,2458,2419,799,1238,1380,2300,2419,2538,0),(1201,'2015-03-14 14:56:58','2015-08-29 14:46:08',1,30000860,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(1202,'2015-03-14 14:56:58','2015-08-29 14:46:08',1,30001203,0,0,0,0,0,0,0,0,4,10,4,0,5,0,0,0,0,0,0,0,0,0,9,0),(1203,'2015-03-14 14:56:58','2015-08-29 14:46:08',1,30004904,0,0,0,93,1,6,0,25,0,0,0,161,0,3,0,0,0,0,0,0,0,0,0,0),(1204,'2015-03-14 14:56:58','2015-08-29 14:46:08',1,30003756,62,16,12,51,16,11,31,0,119,39,130,110,4,38,101,97,2,77,7,5,65,93,14,0),(1205,'2015-03-14 14:56:58','2015-08-29 14:46:08',1,30003746,0,19,12,4,8,0,0,0,151,132,62,90,211,186,359,321,72,14,291,51,92,387,206,0),(1206,'2015-03-14 14:56:58','2015-03-14 14:56:58',1,30005094,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(1207,'2015-03-14 14:56:58','2015-08-29 14:46:08',1,30003055,103,24,49,13,14,118,5,88,55,160,79,24,99,59,77,116,51,13,117,97,47,91,48,0),(1208,'2015-03-14 14:56:58','2015-08-29 14:46:08',1,30003093,0,66,31,0,0,0,0,0,9,0,0,2,0,69,9,9,0,0,18,28,23,1,4,0),(1209,'2015-03-14 14:56:58','2015-08-29 14:46:08',1,30002717,54,219,127,274,191,84,32,23,99,107,160,55,277,319,262,274,58,94,135,141,134,92,130,0),(1210,'2015-03-14 14:56:58','2015-08-29 14:46:08',1,30001342,50,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,14,0,0,0),(1211,'2015-03-14 14:56:58','2015-08-29 14:46:08',1,30000672,0,0,0,0,48,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(1212,'2015-03-14 14:56:58','2015-08-29 14:46:08',1,30001070,0,0,65,0,0,109,236,85,0,0,0,0,0,0,0,0,46,0,0,0,0,0,0,0),(1213,'2015-03-14 14:56:58','2015-08-29 14:46:08',1,30000265,138,0,0,123,229,57,0,0,138,127,0,144,5,337,210,87,0,0,0,11,353,275,100,0),(1214,'2015-03-14 14:56:58','2015-08-29 14:46:08',1,30005275,0,0,0,13,13,64,30,0,0,0,0,0,84,0,0,119,0,96,41,0,0,0,21,0),(1215,'2015-03-14 14:56:58','2015-08-29 14:46:08',1,30003018,164,70,347,87,45,152,62,194,104,64,101,131,212,88,75,50,148,118,145,87,238,111,67,0),(1216,'2015-03-14 14:56:58','2015-08-29 14:46:08',1,30001711,191,67,151,29,32,141,140,75,167,65,154,106,211,210,91,75,183,77,50,137,126,175,122,0),(1217,'2015-03-14 14:56:58','2015-08-29 14:46:08',1,30000920,0,0,0,0,0,22,0,0,82,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(1218,'2015-03-14 14:56:58','2015-08-29 14:46:08',1,30001705,115,123,0,90,29,179,0,0,0,139,124,152,56,257,195,34,39,0,79,72,94,69,1,0),(1219,'2015-03-14 14:56:58','2015-08-29 14:46:08',1,30002265,80,39,146,32,36,119,28,111,256,45,46,68,8,63,6,2,6,23,14,98,34,53,85,0),(1220,'2015-03-14 14:56:58','2015-08-29 14:46:08',1,30004450,12,0,68,29,0,0,0,0,0,0,55,0,0,0,0,1,74,0,0,0,0,0,0,0),(1221,'2015-03-14 14:56:58','2015-08-29 14:46:08',1,30000716,4,0,0,0,0,0,0,0,0,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0),(1222,'2015-03-14 14:56:58','2015-08-29 14:46:08',1,30001944,0,0,0,0,0,0,0,5,86,19,0,0,0,0,0,0,0,0,0,12,0,0,19,0),(1223,'2015-03-14 14:56:58','2015-08-29 14:46:08',1,30002334,0,0,0,0,0,0,0,0,147,11,136,91,72,0,0,0,0,0,25,207,0,0,0,0),(1224,'2015-03-14 14:56:58','2015-03-14 14:56:58',1,30001156,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(1225,'2015-03-14 14:56:58','2015-08-29 14:46:08',1,30000211,210,207,93,464,305,693,177,74,7,46,117,164,167,84,153,228,186,39,25,0,10,130,91,0),(1226,'2015-03-14 14:56:58','2015-03-14 14:56:58',1,30000435,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(1227,'2015-03-14 14:56:58','2015-08-29 14:46:08',1,30004873,334,37,75,12,20,0,7,47,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(1228,'2015-03-14 14:56:58','2015-08-29 14:46:08',1,30004030,135,0,0,98,98,0,0,20,0,500,1680,382,37,0,0,0,180,0,0,32,254,44,150,0),(1229,'2015-03-14 14:56:58','2015-08-29 14:46:08',1,30005160,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,96,93,0,0,0,0),(1230,'2015-03-14 14:56:58','2015-08-29 14:46:08',1,30002029,29,7,0,0,11,0,0,0,0,0,0,0,0,0,0,17,0,0,0,0,0,0,0,0),(1231,'2015-03-14 14:56:58','2015-08-29 14:46:08',1,30002108,0,0,30,18,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(1232,'2015-03-14 14:56:58','2015-08-29 14:46:08',1,30005088,0,0,0,0,0,59,0,0,110,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(1233,'2015-03-14 14:56:58','2015-03-14 14:56:58',1,30001321,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(1234,'2015-03-14 14:56:58','2015-08-29 14:46:08',1,30004040,0,1,2,5,5,0,0,0,0,1,29,0,0,0,0,0,0,0,0,0,90,0,0,0),(1235,'2015-03-14 14:56:58','2015-03-14 14:56:58',1,30000423,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(1236,'2015-03-14 14:56:58','2015-08-29 14:46:08',1,30000307,125,0,0,26,67,88,14,0,0,142,137,86,18,53,13,85,62,0,5,0,112,68,206,0),(1237,'2015-03-14 14:56:58','2015-03-14 14:56:58',1,30003250,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(1238,'2015-03-14 14:56:58','2015-08-29 14:46:08',1,30002496,88,12,253,532,339,0,87,33,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(1239,'2015-03-14 14:56:58','2015-08-29 14:46:08',1,30001910,26,0,0,0,0,44,0,0,0,0,44,6,166,0,0,0,1,1,0,7,93,55,8,0),(1240,'2015-03-14 14:56:58','2015-08-29 14:46:08',1,30004328,11,0,0,0,29,0,1280,419,42,136,257,259,0,9,249,561,105,0,49,111,348,419,186,0),(1241,'2015-03-14 14:56:58','2015-08-29 14:46:08',1,30000817,0,200,0,365,230,81,42,0,31,3,0,403,1,1,43,118,279,0,8,43,87,78,20,0),(1242,'2015-03-14 14:56:58','2015-08-29 14:46:08',1,30002143,69,109,56,31,40,8,0,0,0,0,0,0,0,0,0,0,2,0,0,0,0,0,0,0),(1243,'2015-03-14 14:56:58','2015-08-29 14:46:08',1,30002157,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,17,0,0,0),(1244,'2015-03-14 14:56:58','2015-08-29 14:46:08',1,30000961,0,0,0,0,0,0,0,0,0,0,0,1,0,41,25,7,0,17,0,0,19,0,0,0),(1245,'2015-03-14 14:56:58','2015-08-29 14:46:08',1,30002105,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,10,0),(1246,'2015-03-14 14:56:58','2015-08-29 14:46:08',1,30000854,0,0,0,3,40,0,85,0,0,0,0,0,183,0,0,20,0,5,53,1,0,60,86,0),(1247,'2015-03-14 14:56:58','2015-08-29 14:46:08',1,30000624,0,0,0,0,0,0,0,0,0,0,0,74,0,0,0,0,258,0,0,0,0,0,179,0),(1248,'2015-03-14 14:56:58','2015-08-29 14:46:08',1,30004194,334,856,414,357,544,587,189,202,0,66,10,0,0,194,108,70,3,0,0,0,0,0,0,0),(1249,'2015-03-14 14:56:58','2015-08-29 14:46:08',1,30001076,66,0,5,3,0,25,509,235,0,2,6,0,0,85,191,126,0,0,0,0,3,0,172,0),(1250,'2015-03-14 14:56:58','2015-08-29 14:46:08',1,30000970,0,0,0,0,0,0,0,0,4,0,0,0,0,14,14,0,0,0,8,137,3,14,3,0),(1251,'2015-03-14 14:56:58','2015-08-29 14:46:08',1,30003730,32,145,271,52,3,68,47,0,2,231,194,148,27,133,48,69,87,149,0,104,98,1,4,0),(1252,'2015-03-14 14:56:58','2015-08-29 14:46:08',1,30000610,73,0,0,64,23,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(1253,'2015-03-14 14:56:58','2015-08-29 14:46:08',1,30001215,7,73,391,0,72,274,1,0,10,48,50,101,563,199,259,153,202,265,331,155,260,129,9,0),(1254,'2015-03-14 14:56:58','2015-03-14 14:56:58',1,30001611,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(1255,'2015-03-14 14:56:58','2015-08-29 14:46:08',1,30004532,0,0,78,50,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(1256,'2015-03-14 14:56:58','2015-08-29 14:46:08',1,30004590,43,0,82,0,0,0,0,0,0,0,0,0,0,0,0,0,40,0,0,0,0,0,0,0),(1257,'2015-03-14 14:56:58','2015-08-29 14:46:08',1,30003180,0,0,0,0,0,0,0,0,0,78,96,134,58,72,78,121,62,0,0,0,57,199,121,0),(1258,'2015-03-14 14:56:58','2015-08-29 14:46:08',1,30002850,102,54,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(1259,'2015-03-14 14:56:58','2015-08-29 14:46:08',1,30002165,0,0,0,0,0,0,41,0,0,0,0,0,0,0,0,0,0,0,0,54,0,0,0,0),(1260,'2015-03-14 14:56:58','2015-08-29 14:46:08',1,30001115,488,664,724,693,692,642,377,488,250,365,472,418,564,422,520,492,649,0,161,338,161,612,786,0),(1261,'2015-03-14 14:56:58','2015-08-29 14:46:08',1,30004599,0,0,264,0,0,0,31,0,0,0,0,0,0,46,55,122,56,168,98,7,0,0,0,0),(1262,'2015-03-14 14:56:58','2015-08-29 14:46:08',1,30001346,0,0,0,0,0,0,0,0,72,0,43,38,12,0,0,0,0,0,92,102,61,0,0,0),(1263,'2015-03-14 14:56:58','2015-08-29 14:46:08',1,30002860,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(1264,'2015-03-14 14:56:58','2015-08-29 14:46:08',1,30002436,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,11,0,0,0,0,0,0,0,0),(1265,'2015-03-14 14:56:58','2015-03-14 14:56:58',1,30001555,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(1266,'2015-03-14 14:56:58','2015-08-29 14:46:08',1,30002012,3,1,0,13,11,2,9,0,0,2,1,3,6,0,22,80,9,0,11,0,9,27,20,0),(1267,'2015-03-14 14:56:58','2015-08-29 14:46:08',1,30004848,0,0,0,0,0,0,0,11,0,0,0,0,0,0,0,0,0,0,0,0,53,0,0,0),(1268,'2015-03-14 14:56:58','2015-08-29 14:46:08',1,30004346,0,268,179,177,350,0,211,623,280,415,335,127,0,0,0,0,0,0,0,0,0,208,310,0),(1269,'2015-03-14 14:56:58','2015-08-29 14:46:08',1,30002110,0,0,0,0,0,0,149,13,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(1270,'2015-03-14 14:56:58','2015-08-29 14:46:08',1,30001529,0,0,0,143,69,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(1271,'2015-03-14 14:56:58','2015-08-29 14:46:08',1,30005127,0,4,6,0,0,0,2,15,12,14,15,11,12,14,13,8,0,4,3,4,19,1,0,0),(1272,'2015-03-14 14:56:58','2015-08-29 14:46:08',1,30003601,22,3,6,0,0,88,32,4,1,17,15,18,49,0,0,0,4,47,5,30,0,0,17,0),(1273,'2015-03-14 14:56:58','2015-08-29 14:46:08',1,30003888,11,55,53,11,4,81,6,68,1340,1312,1500,469,108,19,24,27,70,28,40,71,32,0,69,0),(1274,'2015-03-14 14:56:58','2015-08-29 14:46:08',1,30003525,25,34,60,44,94,101,15,17,80,26,27,127,54,123,68,65,67,19,48,27,86,23,39,0),(1275,'2015-03-14 14:56:58','2015-08-29 14:46:08',1,30003502,456,237,248,273,169,78,281,118,432,360,326,309,214,269,477,681,576,210,516,307,349,416,266,0),(1276,'2015-03-14 14:56:58','2015-08-29 14:46:08',1,30000041,0,0,0,10,68,0,0,0,0,0,0,60,0,0,0,0,0,0,0,2,0,0,2,0),(1277,'2015-03-14 14:56:58','2015-08-29 14:46:08',1,30003910,40,50,139,96,88,61,95,45,6,4,19,139,4,71,136,83,64,2,29,343,26,43,109,0),(1278,'2015-03-14 14:56:58','2015-08-29 14:46:08',1,30004261,0,7,0,0,0,0,0,1,145,30,0,4,0,0,0,0,32,0,0,0,3,6,0,0),(1279,'2015-03-14 14:56:58','2015-08-29 14:46:08',1,30002528,551,392,690,727,547,371,238,413,932,731,878,456,490,921,921,743,871,292,528,927,959,911,749,0),(1280,'2015-03-14 14:56:58','2015-08-29 14:46:08',1,30002634,201,282,233,115,101,105,330,115,41,76,147,111,117,236,226,184,204,108,225,134,96,204,147,0),(1281,'2015-03-14 14:56:58','2015-08-29 14:46:08',1,30002690,0,121,67,1,3,9,52,105,205,42,6,0,0,24,267,264,8,0,0,0,153,0,0,0),(1282,'2015-03-14 14:56:58','2015-08-29 14:46:08',1,30005294,32,8,153,7,52,54,49,36,130,34,23,37,32,154,31,32,85,13,66,207,122,35,32,0),(1283,'2015-03-14 14:56:58','2015-08-29 14:46:08',1,30005257,8,11,0,0,73,37,98,0,0,18,22,19,0,0,0,0,0,0,0,38,2,0,0,0),(1284,'2015-03-14 14:56:58','2015-08-29 14:46:08',1,30004296,6,0,12,48,110,0,21,10,5,37,0,0,0,0,0,0,0,0,0,0,11,0,12,0),(1285,'2015-03-14 14:56:58','2015-08-29 14:46:08',1,30000085,69,121,7,18,20,80,9,31,31,55,55,61,76,0,1,3,7,59,36,55,2,104,38,0),(1286,'2015-03-14 14:56:58','2015-08-29 14:46:08',1,30003920,8,0,0,0,32,0,97,0,0,4,0,0,0,2,2,0,1,0,0,0,22,0,53,0),(1287,'2015-03-14 14:56:58','2015-08-29 14:46:08',1,30003548,34,18,70,65,59,29,18,9,60,54,53,26,42,45,69,79,64,40,63,114,105,38,97,0),(1288,'2015-03-14 14:56:58','2015-08-29 14:46:08',1,30002071,1044,1390,1715,1260,956,1302,1083,1560,2059,1699,1639,1740,2220,3439,3318,3057,2700,970,1497,1333,2339,2439,2079,0),(1289,'2015-03-14 14:56:58','2015-08-29 14:46:08',1,30003819,30,7,79,5,0,104,40,3,0,57,32,66,9,0,0,0,18,0,0,0,0,26,42,0),(1290,'2015-03-14 14:56:58','2015-08-29 14:46:08',1,30002683,141,142,261,81,67,123,403,18,102,82,83,85,31,145,164,74,195,94,166,25,173,128,241,0),(1291,'2015-03-14 14:56:58','2015-08-29 14:46:08',1,30003478,0,0,1,0,20,0,0,59,0,23,23,17,8,0,0,0,0,0,6,0,0,18,0,0),(1292,'2015-03-14 14:56:58','2015-08-29 14:46:08',1,30002666,73,44,142,9,6,173,104,7,13,24,29,4,30,0,0,12,4,1,3,42,126,19,4,0),(1293,'2015-03-14 14:56:58','2015-08-29 14:46:08',1,30002199,136,389,311,165,129,885,237,13,233,150,184,193,291,254,178,110,766,121,311,256,293,53,319,0),(1294,'2015-03-14 14:56:58','2015-08-29 14:46:08',1,30003908,52,1,12,85,59,60,28,207,55,11,132,10,0,289,69,0,39,0,224,12,33,70,2,0),(1295,'2015-03-14 14:56:58','2015-08-29 14:46:08',1,30001670,351,292,207,385,529,409,239,286,458,407,420,284,463,475,414,667,419,449,427,507,571,469,239,0),(1296,'2015-03-14 14:56:58','2015-08-29 14:46:08',1,30002700,140,325,379,232,81,186,150,46,63,305,158,24,287,181,259,351,108,134,90,248,156,263,95,0),(1297,'2015-03-14 14:56:58','2015-08-29 14:46:08',1,30000039,24,0,0,0,0,0,0,0,0,0,4,1,0,0,0,0,5,0,5,0,0,0,0,0),(1298,'2015-03-14 14:56:58','2015-08-29 14:46:08',1,30004252,85,308,149,195,334,161,179,155,7,18,24,62,93,19,12,11,70,7,35,174,152,36,333,0),(1299,'2015-03-14 14:56:58','2015-08-29 14:46:08',1,30004851,0,0,0,0,0,0,601,304,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(1300,'2015-03-14 14:56:58','2015-08-29 14:46:08',1,30001976,26,0,0,0,4,0,16,2,0,0,0,0,0,0,0,0,0,0,0,0,0,0,32,0),(1301,'2015-03-14 14:56:58','2015-08-29 14:46:08',1,30002498,0,0,0,96,40,0,10,78,11,8,7,9,0,0,0,0,24,0,0,0,15,4,102,0),(1302,'2015-03-14 14:56:58','2015-08-29 14:46:08',1,30005129,0,0,0,0,0,0,0,0,0,0,0,0,0,0,44,72,0,0,0,0,0,0,0,0),(1303,'2015-03-14 14:56:58','2015-08-29 14:46:08',1,30002048,64,211,174,308,329,91,363,102,83,94,248,200,79,158,170,124,363,88,103,97,195,102,256,0),(1304,'2015-03-14 14:56:58','2015-08-29 14:46:08',1,30005234,19,9,0,24,11,20,8,32,17,30,63,3,26,0,0,0,0,20,13,0,2,0,33,0),(1305,'2015-03-14 14:56:58','2015-08-29 14:46:08',1,30000110,1,90,0,15,30,0,0,9,2,1,0,10,0,0,0,24,9,0,2,0,1,0,10,0),(1306,'2015-03-14 14:56:58','2015-08-29 14:46:08',1,30003014,150,93,181,157,142,150,109,230,248,267,365,125,220,132,210,356,146,114,127,77,311,218,72,0),(1307,'2015-03-14 14:56:58','2015-08-29 14:46:08',1,30004138,54,16,39,34,47,16,0,10,0,0,0,3,17,0,21,107,3,32,0,0,0,0,51,0),(1308,'2015-03-14 14:56:58','2015-08-29 14:46:08',1,30000109,41,26,57,138,51,112,1,28,31,148,77,25,80,41,124,92,30,19,80,99,115,66,25,0),(1309,'2015-03-14 14:56:58','2015-08-29 14:46:08',1,30001885,0,29,49,0,0,44,0,22,0,5,0,29,31,0,0,15,34,176,123,99,87,52,4,0),(1310,'2015-03-14 14:56:58','2015-08-29 14:46:08',1,30004506,3,0,0,0,0,100,0,0,0,0,0,4,0,0,0,17,27,0,0,0,0,102,0,0),(1311,'2015-03-14 14:56:58','2015-03-14 14:56:58',1,30000355,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(1312,'2015-03-14 14:56:58','2015-08-29 14:46:08',1,30004427,0,0,0,0,0,0,0,0,0,0,0,0,124,0,0,0,53,0,0,0,0,117,40,0),(1313,'2015-03-14 14:56:58','2015-08-29 14:46:08',1,30002876,0,0,0,0,0,0,0,0,49,96,10,0,0,0,0,0,0,0,0,0,0,0,0,0),(1314,'2015-03-14 14:56:58','2015-08-29 14:46:08',1,30004417,0,95,0,0,0,0,0,0,0,0,0,0,0,103,135,34,0,0,0,0,0,0,0,0),(1315,'2015-03-14 14:56:58','2015-08-29 14:46:08',1,30005267,1718,2158,2120,1620,1560,1659,1619,1458,2460,2659,2717,2400,2538,3356,3415,3438,3459,1319,1819,1877,2739,3579,3299,0),(1316,'2015-03-14 14:56:58','2015-08-29 14:46:08',1,30002282,103,114,131,143,88,195,85,46,308,297,216,245,76,273,185,169,174,199,336,342,439,167,332,0),(1317,'2015-03-14 14:56:58','2015-08-29 14:46:08',1,30004163,0,171,187,30,0,0,46,225,0,0,0,0,0,0,0,0,0,0,0,0,0,0,57,0),(1318,'2015-03-14 14:56:58','2015-08-29 14:46:08',1,30002252,63,125,79,95,94,137,185,0,5,69,66,15,90,93,98,9,3,71,14,74,140,73,48,0),(1319,'2015-03-14 14:56:58','2015-08-29 14:46:08',1,30003040,174,194,93,81,115,36,136,69,69,77,61,89,12,28,57,73,112,32,9,117,117,46,31,0),(1320,'2015-03-14 14:56:58','2015-08-29 14:46:08',1,30000115,11,0,0,2,2,1,9,0,3,0,0,0,34,0,0,0,13,0,0,27,0,0,6,0),(1321,'2015-03-14 14:56:58','2015-08-29 14:46:08',1,30003561,0,0,0,0,0,0,0,0,2,0,0,0,0,0,0,1,0,0,23,0,0,0,17,0),(1322,'2015-03-14 14:56:58','2015-08-29 14:46:08',1,30003555,62,24,10,46,108,7,0,33,160,35,35,88,132,88,72,44,46,0,12,10,1,52,81,0),(1323,'2015-03-14 14:56:58','2015-08-29 14:46:08',1,30004444,0,70,0,4,6,0,0,0,0,0,0,0,0,0,0,0,0,0,0,37,114,98,0,0),(1324,'2015-03-14 14:56:58','2015-03-14 14:56:58',1,30001469,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(1325,'2015-03-14 14:56:58','2015-08-29 14:46:08',1,30004422,0,0,0,0,0,0,0,6,0,0,0,0,131,0,0,0,151,0,0,0,0,0,200,0),(1326,'2015-03-14 14:56:58','2015-08-29 14:46:08',1,30003757,247,13,1,31,31,41,8,3,188,159,150,164,31,94,192,118,318,168,200,85,114,388,263,0),(1327,'2015-03-14 14:56:58','2015-08-29 14:46:08',1,30004333,4,357,340,252,148,13,297,370,58,0,0,0,51,53,53,0,29,0,0,0,0,105,84,0),(1328,'2015-03-14 14:56:58','2015-03-14 14:56:58',1,30001497,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(1329,'2015-03-14 14:56:58','2015-08-29 14:46:08',1,30003026,92,71,83,88,26,233,113,102,95,118,225,92,126,139,152,156,147,96,84,141,191,228,54,0),(1330,'2015-03-14 14:56:58','2015-08-29 14:46:08',1,30004420,0,126,0,0,0,0,0,0,144,1,0,0,0,0,0,0,0,0,0,0,0,11,33,0),(1331,'2015-03-14 14:56:58','2015-08-29 14:46:08',1,30000619,0,0,0,0,0,0,0,0,0,0,0,0,0,47,1,0,0,0,0,0,0,0,0,0),(1332,'2015-03-14 14:56:58','2015-03-14 14:56:58',1,30002843,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(1333,'2015-03-14 14:56:58','2015-08-29 14:46:08',1,30003327,17,0,41,36,105,0,7,40,63,110,57,35,104,90,100,113,0,0,44,90,67,97,35,0),(1334,'2015-03-14 14:56:58','2015-08-29 14:46:08',1,30004539,0,0,0,0,0,0,1,20,19,9,0,0,0,9,0,0,1,0,0,0,0,0,23,0),(1335,'2015-03-14 14:56:58','2015-08-29 14:46:08',1,30002438,6,0,4,0,0,0,0,0,39,0,0,0,0,0,0,0,0,0,28,0,0,52,138,0),(1336,'2015-03-14 14:56:58','2015-08-29 14:46:08',1,30002318,0,0,13,0,0,0,0,0,0,0,0,0,0,0,0,0,2,0,0,0,0,0,0,0),(1337,'2015-03-14 14:56:58','2015-08-29 14:46:08',1,30004545,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,81,126,64,0),(1338,'2015-03-14 14:56:58','2015-08-29 14:46:08',1,30002553,0,0,0,0,0,17,0,0,0,0,1,0,0,0,2,2,103,0,0,0,2,32,30,0),(1339,'2015-03-14 14:56:58','2015-08-29 14:46:08',1,30002649,86,5,57,13,10,187,140,1,171,77,27,42,122,84,105,59,130,120,93,86,75,83,159,0),(1340,'2015-03-14 14:56:58','2015-08-29 14:46:08',1,30003913,124,209,66,36,0,69,87,108,75,61,58,158,109,123,65,37,211,0,21,17,56,25,97,0),(1341,'2015-03-14 14:56:58','2015-08-29 14:46:08',1,30003397,190,166,60,117,120,144,52,65,322,165,116,46,323,178,126,114,85,165,110,294,256,313,213,0),(1342,'2015-03-14 14:56:58','2015-08-29 14:46:08',1,30002188,160,122,63,179,164,105,78,91,59,147,170,137,308,295,359,284,307,96,195,286,312,180,160,0),(1343,'2015-03-14 14:56:58','2015-08-29 14:46:08',1,30004106,4,9,0,50,1,38,75,0,0,0,0,2,0,6,13,27,0,0,12,32,0,3,1,0),(1344,'2015-03-14 14:56:58','2015-08-29 14:46:08',1,30002514,1,0,0,32,18,0,1,64,78,30,3,19,0,54,13,29,70,1,27,3,21,19,60,0),(1345,'2015-03-14 14:56:58','2015-08-29 14:46:08',1,30002387,0,1,68,0,0,28,0,21,26,0,0,0,0,2,10,11,0,0,1,0,0,0,12,0),(1346,'2015-03-14 14:56:58','2015-08-29 14:46:08',1,30002661,218,672,652,626,478,552,474,353,93,233,307,82,171,219,152,228,147,182,303,190,297,411,108,0),(1347,'2015-03-14 14:56:58','2015-08-29 14:46:08',1,30002238,0,0,0,0,24,0,0,0,0,0,2,731,607,624,853,945,548,0,84,345,613,406,348,0),(1348,'2015-03-14 14:56:58','2015-08-29 14:46:08',1,30002715,157,182,140,111,151,194,90,111,100,184,169,202,236,306,311,247,207,98,194,261,220,237,125,0),(1349,'2015-03-14 14:56:58','2015-08-29 14:46:08',1,30003574,136,69,164,150,81,260,108,203,53,64,40,220,115,139,23,10,152,110,26,142,108,128,1,0),(1350,'2015-03-14 14:56:58','2015-03-14 14:56:58',1,30000504,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(1351,'2015-03-14 14:56:58','2015-08-29 14:46:08',1,30001037,0,0,5,13,19,2,0,0,12,13,5,30,114,87,106,77,55,45,0,25,6,8,6,0),(1352,'2015-03-14 14:56:58','2015-08-29 14:46:08',1,30003230,48,0,138,0,0,89,0,84,0,0,0,0,1,0,0,0,0,0,0,60,0,0,0,0),(1353,'2015-03-14 14:56:58','2015-08-29 14:46:08',1,30000311,0,161,0,140,279,15,387,0,19,53,28,52,0,19,19,0,7,58,0,0,0,0,0,0),(1354,'2015-03-14 14:56:58','2015-08-29 14:46:08',1,30001235,67,18,0,0,0,44,159,154,19,22,17,26,0,72,25,0,86,0,49,10,27,43,133,0),(1355,'2015-03-14 14:56:58','2015-08-29 14:46:08',1,30002699,175,254,91,59,81,27,48,15,107,264,349,281,119,127,175,268,140,49,130,85,162,296,153,0),(1356,'2015-03-14 14:56:58','2015-08-29 14:46:08',1,30003789,5,2,10,15,11,57,20,30,14,0,1,20,33,47,44,41,9,12,56,83,14,64,1,0),(1357,'2015-03-14 14:56:58','2015-08-29 14:46:08',1,30003809,18,8,117,0,140,7,55,0,50,54,71,166,37,109,88,35,102,82,14,39,119,116,64,0),(1358,'2015-03-14 14:56:58','2015-08-29 14:46:08',1,30005034,2,8,48,0,3,13,0,0,0,0,0,0,36,22,0,1,122,0,21,51,71,89,0,0),(1359,'2015-03-14 14:56:58','2015-08-29 14:46:08',1,30002067,42,40,18,103,134,82,51,16,31,5,8,24,30,10,3,3,26,4,10,39,2,3,65,0),(1360,'2015-03-14 14:56:58','2015-03-14 14:56:58',1,30000986,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(1361,'2015-03-14 14:56:58','2015-08-29 14:46:08',1,30003375,45,130,9,0,25,121,88,50,100,186,57,50,1,130,141,173,52,15,18,0,131,69,0,0),(1362,'2015-03-14 14:56:58','2015-08-29 14:46:08',1,30002703,296,268,264,204,148,231,30,52,11,81,110,43,182,127,72,104,144,84,39,160,152,161,72,0),(1363,'2015-03-14 14:56:58','2015-08-29 14:46:08',1,30000643,0,0,0,0,0,0,0,0,0,0,3,28,0,0,0,0,0,0,0,0,0,0,0,0),(1364,'2015-03-14 14:56:58','2015-08-29 14:46:08',1,30004399,0,184,171,156,90,5,601,282,1700,1212,1470,1000,754,162,0,0,17,222,185,263,0,0,7,0),(1365,'2015-03-14 14:56:58','2015-08-29 14:46:08',1,30000081,41,27,5,83,52,16,0,20,10,13,21,36,32,18,17,15,60,13,5,111,31,50,67,0),(1366,'2015-03-14 14:56:58','2015-08-29 14:46:08',1,30003866,0,14,164,52,45,52,5,4,40,70,21,36,0,21,55,55,0,0,28,19,21,79,23,0),(1367,'2015-03-14 14:56:58','2015-08-29 14:46:08',1,30002577,0,9,119,0,0,11,0,27,0,3,39,41,0,0,0,0,31,0,0,0,27,0,75,0),(1368,'2015-03-14 14:56:58','2015-08-29 14:46:08',1,30004117,0,0,2,0,0,48,0,0,0,0,0,1,1,0,0,0,0,0,112,35,0,0,0,0),(1369,'2015-03-14 14:56:58','2015-08-29 14:46:08',1,30001245,0,0,0,0,0,0,28,45,269,150,100,109,784,536,577,706,472,533,307,528,664,480,323,0),(1370,'2015-03-14 14:56:58','2015-08-29 14:46:08',1,30001286,15,1,5,0,0,0,0,1,0,0,0,3,0,0,0,0,0,0,0,0,0,64,4,0),(1371,'2015-03-14 14:56:58','2015-08-29 14:46:08',1,30002828,0,0,0,0,0,0,0,115,0,0,0,0,0,0,0,0,73,0,0,0,0,0,0,0),(1372,'2015-03-14 14:56:58','2015-03-14 14:56:58',1,30004804,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(1373,'2015-03-14 14:56:58','2015-08-29 14:46:08',1,30002440,41,80,63,201,259,405,198,428,0,0,0,10,1,0,0,8,3,0,0,0,2,0,0,0),(1374,'2015-03-14 14:56:58','2015-08-29 14:46:08',1,30004371,0,0,6,0,0,0,40,0,180,262,411,15,131,144,201,379,272,183,303,91,170,497,668,0),(1375,'2015-03-14 14:56:58','2015-03-14 14:56:58',1,30001629,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(1376,'2015-03-14 14:56:58','2015-08-29 14:46:08',1,30004029,0,0,0,2,2,0,0,0,0,0,0,0,0,12,72,154,0,0,0,0,0,792,1798,0),(1377,'2015-03-14 14:56:58','2015-08-29 14:46:08',1,30003993,56,184,9,0,0,102,163,334,0,0,273,306,0,252,248,154,730,0,0,3,364,174,235,0),(1378,'2015-03-14 14:56:58','2015-08-29 14:46:08',1,30002305,1,0,0,0,0,0,11,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(1379,'2015-03-14 14:56:58','2015-08-29 14:46:08',1,30003138,273,525,222,405,415,619,177,200,0,0,0,0,5,75,0,0,0,0,0,0,0,0,140,0),(1380,'2015-03-14 14:56:58','2015-08-29 14:46:08',1,30003328,83,8,0,77,12,30,111,0,16,32,36,0,64,150,108,40,109,0,30,27,36,97,128,0),(1381,'2015-03-14 14:56:58','2015-03-14 14:56:58',1,30000925,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(1382,'2015-03-14 14:56:58','2015-08-29 14:46:08',1,30004562,0,55,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(1383,'2015-03-14 14:56:58','2015-08-29 14:46:08',1,30003121,450,354,69,236,126,29,305,285,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(1384,'2015-03-14 14:56:58','2015-08-29 14:46:08',1,30002882,0,68,0,0,0,0,5,0,0,0,0,0,0,5,1,0,3,0,0,0,1,0,5,0),(1385,'2015-03-14 14:56:58','2015-08-29 14:46:08',1,30004434,0,0,0,0,0,0,0,0,214,442,426,349,357,153,77,52,143,207,15,0,41,431,76,0),(1386,'2015-03-14 14:56:58','2015-08-29 14:46:08',1,30002375,0,0,0,0,0,0,0,0,0,0,0,0,3,5,5,0,0,0,0,0,0,0,0,0),(1387,'2015-03-14 14:56:58','2015-08-29 14:46:08',1,30004378,29,16,1,29,79,0,113,23,0,6,26,0,11,31,180,207,0,17,35,8,0,51,0,0),(1388,'2015-03-14 14:56:58','2015-08-29 14:46:08',1,30000550,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,32,103,0),(1389,'2015-03-14 14:56:58','2015-08-29 14:46:08',1,30000632,0,0,0,0,122,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(1390,'2015-03-14 14:56:58','2015-08-29 14:46:08',1,30003995,0,0,0,0,0,0,6,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(1391,'2015-03-14 14:56:58','2015-08-29 14:46:08',1,30003976,0,418,176,65,3,23,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(1392,'2015-03-14 14:56:58','2015-08-29 14:46:08',1,30001576,10,153,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(1393,'2015-03-14 14:56:58','2015-08-29 14:46:08',1,30004564,0,10,59,60,49,0,0,0,61,28,0,75,0,0,0,0,7,5,16,4,152,325,96,0),(1394,'2015-03-14 14:56:58','2015-08-29 14:46:08',1,30000278,80,412,242,304,572,329,250,139,0,0,0,0,0,0,0,0,0,0,83,50,0,0,0,0),(1395,'2015-03-14 14:56:58','2015-03-14 14:56:58',1,30004818,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(1396,'2015-03-14 14:56:58','2015-08-29 14:46:08',1,30004651,65,0,0,0,0,0,25,0,0,0,0,0,0,0,0,0,0,0,0,28,49,0,1,0),(1397,'2015-03-14 14:56:58','2015-08-29 14:46:08',1,30000302,90,432,956,583,368,0,117,341,158,124,27,257,37,250,213,183,1,305,108,266,367,320,54,0),(1398,'2015-03-14 14:56:58','2015-08-29 14:46:08',1,30001992,242,136,492,209,60,266,76,55,0,33,9,32,18,1,0,0,0,0,0,0,0,0,0,0),(1399,'2015-03-14 14:56:58','2015-08-29 14:46:08',1,30004319,37,100,42,174,189,18,0,229,0,0,0,0,0,0,0,0,0,24,70,0,89,0,0,0),(1400,'2015-03-14 14:56:58','2015-08-29 14:46:08',1,30000772,79,0,0,41,0,18,24,0,0,0,0,0,0,3,0,0,0,0,0,0,0,0,2,0),(1401,'2015-03-14 14:56:58','2015-08-29 14:46:08',1,30000273,77,1,0,99,93,305,0,0,3,5,38,77,82,0,0,0,0,0,0,0,16,0,0,0),(1402,'2015-03-14 14:56:58','2015-08-29 14:46:08',1,30001085,0,132,236,82,0,33,6,12,0,0,31,127,0,111,21,0,0,0,0,0,0,0,0,0),(1403,'2015-03-14 14:56:58','2015-08-29 14:46:08',1,30004372,65,42,8,0,0,19,0,211,43,199,163,20,560,755,591,205,170,331,1232,1172,793,351,935,0),(1404,'2015-03-14 14:56:58','2015-08-29 14:46:08',1,30004365,164,331,576,1220,946,267,546,638,455,727,855,674,627,369,490,755,759,444,344,255,250,682,867,0),(1405,'2015-03-14 14:56:58','2015-08-29 14:46:08',1,30000567,75,0,73,0,0,120,14,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(1406,'2015-03-14 14:56:58','2015-08-29 14:46:08',1,30004600,100,0,0,0,0,0,0,19,0,0,0,0,0,0,0,0,0,0,0,0,0,0,30,0),(1407,'2015-03-14 14:56:58','2015-08-29 14:46:08',1,30001124,60,77,61,95,160,23,138,69,212,0,4,0,0,0,0,0,0,377,700,569,0,0,55,0),(1408,'2015-03-14 14:56:58','2015-08-29 14:46:08',1,30003692,0,11,34,16,97,137,37,147,201,130,41,0,138,4,0,0,20,0,70,1,0,0,0,0),(1409,'2015-03-14 14:56:58','2015-08-29 14:46:08',1,30003169,0,50,81,1136,935,140,146,845,103,153,167,105,3,0,170,328,181,248,36,119,36,208,343,0),(1410,'2015-03-14 14:56:58','2015-08-29 14:46:08',1,30002367,174,357,191,254,120,284,221,307,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(1411,'2015-03-14 14:56:58','2015-08-29 14:46:08',1,30004380,1,0,0,28,45,187,6,21,38,133,0,0,0,0,0,34,21,28,0,259,29,0,23,0),(1412,'2015-03-14 14:56:58','2015-08-29 14:46:08',1,30003113,0,0,0,0,0,0,5,0,0,0,0,0,0,0,0,0,46,2,0,0,0,0,0,0),(1413,'2015-03-14 14:56:58','2015-08-29 14:46:08',1,30004889,37,112,3,54,54,22,0,8,32,11,0,0,0,0,0,0,0,0,0,34,0,0,0,0),(1414,'2015-03-14 14:56:58','2015-08-29 14:46:08',1,30003670,35,24,43,30,0,0,0,69,0,0,0,0,0,0,0,0,0,0,0,0,127,0,0,0),(1415,'2015-03-14 14:56:58','2015-03-14 14:56:58',1,30000568,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(1416,'2015-03-14 14:56:58','2015-08-29 14:46:08',1,30004493,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0),(1417,'2015-03-14 14:56:58','2015-08-29 14:46:08',1,30003780,10,156,159,60,110,251,74,98,106,376,496,646,270,143,169,145,220,0,0,0,181,504,53,0),(1418,'2015-03-14 14:56:58','2015-08-29 14:46:08',1,30000821,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,13,59,0),(1419,'2015-03-14 14:56:58','2015-08-29 14:46:08',1,30004597,9,129,98,101,146,73,0,0,0,0,0,0,0,135,80,0,0,0,0,0,65,51,156,0),(1420,'2015-03-14 14:56:58','2015-08-29 14:46:08',1,30004191,275,954,677,344,319,314,0,0,0,0,0,0,0,0,0,0,0,0,0,0,80,0,0,0),(1421,'2015-03-14 14:56:58','2015-08-29 14:46:08',1,30001355,0,0,0,0,0,0,0,0,0,0,0,0,0,55,39,0,0,104,16,0,0,0,0,0),(1422,'2015-03-14 14:56:58','2015-08-29 14:46:08',1,30000863,4,85,0,0,0,3,0,30,0,0,0,0,6,0,5,5,0,0,0,0,0,0,92,0),(1423,'2015-03-14 14:56:58','2015-08-29 14:46:08',1,30004824,0,0,5,5,5,6,0,32,112,73,81,63,58,14,152,274,297,13,107,18,0,105,216,0),(1424,'2015-03-14 14:56:58','2015-03-14 14:56:58',1,30005190,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(1425,'2015-03-14 14:56:58','2015-08-29 14:46:08',1,30002858,0,70,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(1426,'2015-03-14 14:56:58','2015-08-29 14:46:08',1,30004798,121,52,0,0,0,0,111,41,0,0,210,432,128,423,405,640,282,0,0,25,52,9,117,0),(1427,'2015-03-14 14:56:58','2015-08-29 14:46:08',1,30003697,0,34,0,0,0,137,227,195,39,0,7,48,53,47,78,76,67,310,0,0,94,104,164,0),(1428,'2015-03-14 14:56:58','2015-08-29 14:46:08',1,30000446,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,16,0),(1429,'2015-03-14 14:56:58','2015-03-14 14:56:58',1,30001533,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(1430,'2015-03-14 14:56:58','2015-03-14 14:56:58',1,30005122,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(1431,'2015-03-14 14:56:58','2015-03-14 14:56:58',1,30004791,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(1432,'2015-03-14 14:56:58','2015-08-29 14:46:08',1,30002915,60,124,167,166,184,0,0,0,187,677,619,254,172,173,173,251,126,0,0,63,135,137,1,0),(1433,'2015-03-14 14:56:58','2015-08-29 14:46:08',1,30000700,0,0,30,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(1434,'2015-03-14 14:56:58','2015-08-29 14:46:08',1,30003676,0,128,3,0,0,0,0,4,1,0,0,2,0,5,0,0,0,1,5,61,0,0,2,0),(1435,'2015-03-14 14:56:58','2015-08-29 14:46:08',1,30000743,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,72,0,0,0,0),(1436,'2015-03-14 14:56:58','2015-08-29 14:46:08',1,30000892,0,0,0,0,0,323,41,170,265,518,333,397,370,0,0,0,10,0,146,202,469,559,206,0),(1437,'2015-03-14 14:56:58','2015-08-29 14:46:08',1,30003109,5,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,44,0,0),(1438,'2015-03-14 14:56:58','2015-03-14 14:56:58',1,30002315,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(1439,'2015-03-14 14:56:58','2015-08-29 14:46:08',1,30003934,0,46,28,12,9,0,14,0,26,0,0,0,0,0,0,0,0,0,0,0,0,7,0,0),(1440,'2015-03-14 14:56:58','2015-08-29 14:46:08',1,30003569,12,0,42,10,25,17,0,0,22,0,17,0,17,26,105,130,8,13,66,21,38,8,107,0),(1441,'2015-03-14 14:56:58','2015-08-29 14:46:08',1,30002207,59,65,2,85,83,17,98,6,20,17,143,56,29,16,21,13,28,24,2,45,68,23,36,0),(1442,'2015-03-14 14:56:58','2015-08-29 14:46:08',1,30000049,32,3,0,2,19,47,39,25,150,66,16,6,0,2,1,0,79,0,0,8,9,0,31,0),(1443,'2015-03-14 14:56:58','2015-08-29 14:46:08',1,30005287,0,0,0,0,0,0,9,0,0,0,0,0,0,0,0,0,80,36,12,0,0,0,0,0),(1444,'2015-03-14 14:56:58','2015-08-29 14:46:08',1,30002735,313,412,247,335,217,158,244,341,255,491,646,419,871,747,817,688,437,362,617,613,872,508,240,0),(1445,'2015-03-14 14:56:58','2015-08-29 14:46:08',1,30003048,175,41,225,207,59,155,30,296,65,177,92,126,169,163,93,83,267,71,148,79,73,389,186,0),(1446,'2015-03-14 14:56:58','2015-08-29 14:46:08',1,30002645,12,39,19,0,5,0,2,2,57,121,1,0,0,23,0,0,0,1,1,2,0,0,38,0),(1447,'2015-03-14 14:56:58','2015-08-29 14:46:08',1,30004973,76,96,79,198,187,115,165,149,40,129,191,148,33,203,245,370,139,115,104,100,45,138,149,0),(1448,'2015-03-14 14:56:58','2015-08-29 14:46:08',1,30005026,218,146,212,330,435,333,109,306,164,519,368,242,461,146,132,73,76,168,127,178,197,244,247,0),(1449,'2015-03-14 14:56:58','2015-08-29 14:46:08',1,30001205,1,0,0,0,0,0,0,163,0,0,0,0,0,0,0,4,0,0,0,0,0,0,0,0),(1450,'2015-03-14 14:56:58','2015-08-29 14:46:08',1,30001895,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,24,0,0),(1451,'2015-03-14 14:56:58','2015-03-14 14:56:58',1,30001206,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(1452,'2015-03-14 14:56:58','2015-08-29 14:46:08',1,30004180,0,0,0,2,84,0,0,0,103,6,3,191,7,51,22,21,162,0,44,320,101,9,4,0),(1453,'2015-03-14 14:56:58','2015-08-29 14:46:08',1,30004841,0,0,0,0,0,0,0,0,0,0,0,0,0,88,106,45,0,0,0,0,0,0,0,0),(1454,'2015-03-14 14:56:58','2015-08-29 14:46:08',1,30002906,0,278,73,83,100,16,0,41,0,5,52,83,96,6,145,605,536,214,76,2,177,124,217,0),(1455,'2015-03-14 14:56:58','2015-08-29 14:46:08',1,30005283,0,0,0,0,8,10,14,0,0,9,10,0,78,0,0,9,0,46,62,9,0,0,1,0),(1456,'2015-03-14 14:56:58','2015-03-14 14:56:58',1,30004407,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(1457,'2015-03-14 14:56:58','2015-08-29 14:46:08',1,30002483,0,0,33,153,114,0,0,12,0,0,0,0,0,0,0,0,0,0,0,0,13,0,0,0),(1458,'2015-03-14 14:56:58','2015-08-29 14:46:08',1,30004401,76,45,25,170,100,26,0,282,226,213,269,62,7,0,30,83,9,133,339,127,0,0,5,0),(1459,'2015-03-14 14:56:58','2015-08-29 14:46:08',1,30004601,293,393,743,392,1252,863,8,394,0,0,0,0,0,0,0,78,313,0,13,124,413,366,153,0),(1460,'2015-03-14 14:56:58','2015-08-29 14:46:08',1,30002688,0,1,0,208,205,0,34,44,32,22,97,61,0,20,0,38,35,0,16,60,41,8,33,0),(1461,'2015-03-14 14:56:58','2015-08-29 14:46:08',1,30035042,41,189,13,84,69,109,128,34,338,173,110,89,138,282,274,151,75,195,292,24,6,16,202,0),(1462,'2015-03-14 14:56:58','2015-08-29 14:46:08',1,30003905,0,3,0,1,0,0,0,30,17,67,1,0,0,0,0,0,0,0,0,0,0,0,0,0),(1463,'2015-03-14 14:56:58','2015-08-29 14:46:08',1,30005228,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,50,0,1,0,0,0),(1464,'2015-03-14 14:56:58','2015-08-29 14:46:08',1,30001664,0,0,67,0,9,9,13,24,0,0,0,0,34,42,42,0,9,126,9,0,0,22,12,0),(1465,'2015-03-14 14:56:58','2015-08-29 14:46:08',1,30004108,1,1,0,0,0,9,0,77,0,0,18,44,2,8,8,13,9,0,0,0,20,22,42,0),(1466,'2015-03-14 14:56:58','2015-08-29 14:46:08',1,30025305,12,53,3,42,31,127,82,78,110,73,86,8,36,159,224,233,75,57,73,93,64,72,79,0),(1467,'2015-03-14 14:56:58','2015-08-29 14:46:08',1,30004122,142,260,39,67,26,25,70,292,129,316,350,332,266,295,408,581,303,55,266,280,333,297,191,0),(1468,'2015-03-14 14:56:58','2015-08-29 14:46:08',1,30005331,256,512,260,164,150,27,53,82,112,90,116,51,31,102,248,330,154,14,31,66,169,0,62,0),(1469,'2015-03-14 14:56:58','2015-08-29 14:46:08',1,30003834,18,20,144,14,52,0,0,4,0,0,0,0,0,26,0,0,3,20,8,23,78,0,1,0),(1470,'2015-03-14 14:56:58','2015-08-29 14:46:08',1,30004976,217,212,214,59,177,89,284,200,104,149,147,169,187,332,268,289,117,146,57,63,104,210,237,0),(1471,'2015-03-14 14:56:58','2015-08-29 14:46:08',1,30002224,128,13,177,50,66,639,20,47,179,219,115,87,166,183,190,142,165,140,154,152,211,142,45,0),(1472,'2015-03-14 14:56:58','2015-08-29 14:46:08',1,30003489,679,1195,644,874,776,379,355,441,521,695,836,494,583,624,530,560,1038,677,528,764,866,769,827,0),(1473,'2015-03-14 14:56:58','2015-08-29 14:46:08',1,30005237,66,0,12,0,0,0,9,0,0,0,0,0,0,26,0,0,0,0,0,0,0,0,0,0),(1474,'2015-03-14 14:56:58','2015-08-29 14:46:08',1,30002667,49,49,68,218,103,23,147,104,64,147,80,60,127,106,118,206,81,95,79,147,62,91,74,0),(1475,'2015-03-14 14:56:58','2015-08-29 14:46:08',1,30003529,28,39,78,46,53,8,53,28,15,86,89,110,13,25,25,49,84,27,29,61,61,101,88,0),(1476,'2015-03-14 14:56:58','2015-08-29 14:46:08',1,30003019,112,59,18,20,25,63,51,53,127,32,87,38,161,57,55,35,110,62,33,48,99,69,48,0),(1477,'2015-03-14 14:56:58','2015-08-29 14:46:08',1,30005327,121,174,163,65,41,135,2,62,58,21,21,105,56,62,178,143,138,96,77,151,101,199,122,0),(1478,'2015-03-14 14:56:58','2015-08-29 14:46:08',1,30003527,0,0,62,40,0,64,0,7,38,0,0,26,10,0,31,32,47,15,0,6,95,60,28,0),(1479,'2015-03-14 14:56:58','2015-08-29 14:46:08',1,30004250,107,58,34,159,219,79,108,97,0,0,223,97,308,105,20,9,56,91,73,81,61,236,266,0),(1480,'2015-03-14 14:56:58','2015-08-29 14:46:08',1,30000010,84,5,78,41,5,42,3,0,3,2,1,168,6,26,37,32,0,7,5,0,0,0,26,0),(1481,'2015-03-14 14:56:58','2015-08-29 14:46:08',1,30005253,78,39,40,21,22,28,106,1,174,683,475,50,86,81,33,30,35,35,53,70,44,41,157,0),(1482,'2015-03-14 14:56:58','2015-08-29 14:46:08',1,30003925,39,0,34,27,28,0,10,23,0,8,0,25,0,72,58,7,0,5,0,0,10,27,15,0),(1483,'2015-03-14 14:56:58','2015-08-29 14:46:08',1,30005051,85,370,299,106,9,152,121,175,104,185,138,84,266,61,155,157,174,114,204,381,239,214,143,0),(1484,'2015-03-14 14:56:58','2015-08-29 14:46:08',1,30002965,1,13,3,35,31,24,42,5,19,28,39,21,38,6,27,24,8,0,6,6,34,5,8,0),(1485,'2015-03-14 14:56:58','2015-08-29 14:46:08',1,30004210,27,251,527,154,1,1080,0,197,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(1486,'2015-03-14 14:56:58','2015-08-29 14:46:08',1,30000951,0,0,0,0,0,0,0,0,0,0,0,0,0,4,83,83,0,0,0,0,0,0,0,0),(1487,'2015-03-14 14:56:58','2015-08-29 14:46:08',1,30003363,2,0,92,84,11,0,0,7,0,97,131,0,0,0,0,0,0,0,0,0,0,0,0,0),(1488,'2015-03-14 14:56:58','2015-08-29 14:46:08',1,30005305,174,242,71,113,159,199,166,150,171,108,182,77,275,143,135,292,140,68,123,103,145,164,154,0),(1489,'2015-03-14 14:56:58','2015-08-29 14:46:08',1,30001926,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,12,45,0),(1490,'2015-03-14 14:56:58','2015-08-29 14:46:08',1,30002127,0,0,0,0,0,0,0,118,166,165,5,0,236,760,511,112,79,113,99,112,46,16,76,0),(1491,'2015-03-14 14:56:58','2015-08-29 14:46:08',1,30002170,0,202,17,0,0,40,154,0,219,86,49,55,105,55,36,41,52,0,0,0,104,35,0,0),(1492,'2015-03-14 14:56:58','2015-08-29 14:46:08',1,30001042,0,3,3,22,18,0,0,0,3,5,2,6,5,11,7,4,22,81,31,52,5,23,3,0),(1493,'2015-03-14 14:56:58','2015-08-29 14:46:08',1,30001025,0,54,11,0,0,1,0,0,9,8,13,8,15,9,9,4,0,9,5,0,0,27,6,0),(1494,'2015-03-14 14:56:58','2015-08-29 14:46:08',1,30004565,0,78,93,53,0,0,0,0,0,0,0,0,8,115,111,119,0,0,0,0,0,0,32,0),(1495,'2015-03-14 14:56:58','2015-08-29 14:46:08',1,30002362,5,0,3,7,6,0,0,4,4,6,3,70,7,0,0,0,5,4,70,0,0,0,0,0),(1496,'2015-03-14 14:56:58','2015-08-29 14:46:08',1,30004458,684,0,643,0,0,656,0,81,0,0,0,0,0,0,0,0,0,5,119,51,0,0,0,0),(1497,'2015-03-14 14:56:58','2015-08-29 14:46:08',1,30001981,1,1,0,0,8,0,145,42,0,0,0,0,0,1,1,11,13,0,6,2,8,0,36,0),(1498,'2015-03-14 14:56:58','2015-08-29 14:46:08',1,30035305,93,122,139,85,63,166,66,107,171,200,298,112,248,165,97,100,170,99,118,140,203,55,191,0),(1499,'2015-03-14 14:56:58','2015-08-29 14:46:08',1,30003896,0,0,3,94,41,0,0,0,0,9,9,29,5,0,4,4,0,0,0,0,17,0,0,0),(1500,'2015-03-14 14:56:58','2015-08-29 14:46:08',1,30002275,246,101,28,0,0,14,2,12,89,90,0,58,118,16,18,14,42,0,47,79,20,17,166,0),(1501,'2015-03-14 14:56:58','2015-08-29 14:46:08',1,30005324,370,453,281,338,232,290,51,82,166,252,198,158,462,632,595,548,209,165,383,397,277,337,314,0),(1502,'2015-03-14 14:56:58','2015-08-29 14:46:08',1,30002708,32,63,158,66,67,8,102,123,143,56,141,100,181,21,18,66,116,52,59,162,21,30,70,0),(1503,'2015-03-14 14:56:58','2015-03-14 14:56:58',1,30001616,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(1504,'2015-03-14 14:56:58','2015-08-29 14:46:08',1,30045305,536,513,648,691,408,659,390,345,730,1008,963,853,936,791,749,808,854,579,510,542,621,986,488,0),(1505,'2015-03-14 14:56:58','2015-08-29 14:46:08',1,30005194,192,223,179,144,93,68,28,17,50,95,212,133,72,162,186,180,160,21,2,167,36,73,80,0),(1506,'2015-03-14 14:56:58','2015-08-29 14:46:08',1,30005023,59,74,94,208,88,40,70,1,72,14,33,7,6,7,59,325,295,19,163,3,1,128,4,0),(1507,'2015-03-14 14:56:58','2015-03-14 14:56:58',1,30001100,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(1508,'2015-03-14 14:56:58','2015-08-29 14:46:08',1,30001254,0,0,6,0,0,101,0,0,55,146,156,55,230,177,133,23,0,261,317,171,66,130,0,0),(1509,'2015-03-14 14:56:58','2015-08-29 14:46:08',1,30001825,65,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(1510,'2015-03-14 14:56:58','2015-08-29 14:46:08',1,30004887,0,0,0,59,106,0,0,0,50,0,0,0,0,46,17,0,0,81,0,44,0,0,0,0),(1511,'2015-03-14 14:56:58','2015-08-29 14:46:08',1,30003904,230,413,5,177,154,174,0,0,29,0,0,14,18,0,0,0,50,0,82,241,4,18,99,0),(1512,'2015-03-14 14:56:58','2015-08-29 14:46:08',1,30003041,31,77,39,114,52,38,114,73,81,19,65,7,93,95,49,7,4,17,68,87,200,7,8,0),(1513,'2015-03-14 14:56:58','2015-08-29 14:46:08',1,30002682,242,154,150,114,91,122,150,41,148,136,155,95,197,234,233,282,207,105,164,117,304,207,167,0),(1514,'2015-03-14 14:56:58','2015-08-29 14:46:08',1,30045042,152,277,292,171,235,185,156,345,114,167,145,230,310,319,329,263,329,205,209,265,305,259,191,0),(1515,'2015-03-14 14:56:58','2015-08-29 14:46:08',1,30003565,0,0,0,108,107,0,122,0,0,31,43,0,0,0,22,23,0,52,2,0,0,39,46,0),(1516,'2015-03-14 14:56:58','2015-08-29 14:46:08',1,30005298,60,8,1,7,12,1,29,52,3,16,22,23,5,18,6,6,11,0,80,3,0,44,9,0),(1517,'2015-03-14 14:56:58','2015-08-29 14:46:08',1,30014971,717,1037,832,711,652,686,385,610,1123,1091,1289,955,1046,954,1075,1107,1121,535,802,885,1053,1189,830,0),(1518,'2015-03-14 14:56:58','2015-08-29 14:46:08',1,30003795,38,86,36,0,0,3,7,4,0,21,3,6,4,0,0,0,69,1,6,4,12,0,30,0),(1519,'2015-03-14 14:56:58','2015-08-29 14:46:08',1,30003123,17,27,0,0,0,0,0,0,0,0,0,14,0,0,0,26,491,369,431,0,0,100,401,0),(1520,'2015-03-14 14:56:58','2015-08-29 14:46:08',1,30002003,46,78,72,71,39,204,7,50,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(1521,'2015-03-14 14:56:58','2015-08-29 14:46:08',1,30003678,32,0,9,69,0,44,0,0,55,137,0,0,1,0,0,0,174,0,104,0,64,62,3,0),(1522,'2015-03-14 14:56:58','2015-08-29 14:46:08',1,30000845,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,21,0,0),(1523,'2015-03-14 14:56:58','2015-08-29 14:46:08',1,30002691,26,0,1,2,2,0,1,0,49,0,2,3,15,6,6,4,2,0,3,0,7,0,5,0),(1524,'2015-03-14 14:56:58','2015-08-29 14:46:08',1,30002705,97,141,22,198,209,100,190,47,46,20,57,37,104,57,19,79,82,90,51,135,60,25,143,0),(1525,'2015-03-14 14:56:58','2015-08-29 14:46:08',1,30000923,0,0,0,0,0,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(1526,'2015-03-14 14:56:58','2015-08-29 14:46:08',1,30004357,119,1,0,137,0,46,1,0,194,420,457,180,74,1,155,218,0,292,0,35,0,27,39,0),(1527,'2015-03-14 14:56:58','2015-08-29 14:46:08',1,30001275,117,213,9,10,12,67,20,82,1,27,46,5,13,68,12,46,32,20,29,13,14,83,174,0),(1528,'2015-03-14 14:56:58','2015-08-29 14:46:08',1,30004530,0,3,0,0,0,0,0,0,53,87,5,20,8,14,5,7,3,3,22,32,0,0,0,0),(1529,'2015-03-14 14:56:58','2015-08-29 14:46:08',1,30002373,40,0,0,4,0,0,0,0,0,0,0,0,5,4,8,8,0,0,0,0,0,0,0,0),(1530,'2015-03-14 14:56:58','2015-08-29 14:46:08',1,30002896,43,0,0,77,178,0,426,289,69,71,28,0,0,0,0,0,731,344,0,33,169,75,325,0),(1531,'2015-03-14 14:56:58','2015-08-29 14:46:08',1,30003802,19,43,20,20,5,22,48,69,0,0,0,150,0,10,10,0,0,0,0,15,16,7,24,0),(1532,'2015-03-14 14:56:58','2015-08-29 14:46:08',1,30004200,6,0,2,0,0,0,0,0,0,67,132,28,93,82,0,0,0,0,0,1,0,0,0,0),(1533,'2015-03-14 14:56:58','2015-08-29 14:46:08',1,30001034,1,0,3,0,1,27,0,0,26,0,0,0,24,0,0,8,0,0,83,41,1,0,41,0),(1534,'2015-03-14 14:56:58','2015-03-14 14:56:58',1,30001472,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(1535,'2015-03-14 14:56:58','2015-08-29 14:46:08',1,30004939,0,0,20,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,132,132,0,0,0,0),(1536,'2015-03-14 14:56:58','2015-08-29 14:46:08',1,30004335,24,90,111,0,0,41,0,0,0,111,64,0,0,0,0,0,0,0,0,66,0,0,0,0),(1537,'2015-03-14 14:56:58','2015-03-14 14:56:58',1,30001224,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(1538,'2015-03-14 14:56:58','2015-08-29 14:46:08',1,30004072,109,17,4,110,110,0,135,169,130,107,84,122,13,62,164,224,4,229,7,104,227,227,4,0),(1539,'2015-03-14 14:56:58','2015-08-29 14:46:08',1,30004799,0,8,49,0,0,0,0,0,0,0,34,375,41,0,119,185,0,0,0,0,0,0,0,0),(1540,'2015-03-14 14:56:58','2015-08-29 14:46:08',1,30001979,0,72,184,164,95,0,181,115,12,62,89,16,15,73,17,36,63,16,35,7,65,33,63,0),(1541,'2015-03-14 14:56:58','2015-08-29 14:46:08',1,30003371,0,0,0,0,126,21,34,0,20,99,75,0,1,0,0,0,0,5,0,0,0,0,0,0),(1542,'2015-03-14 14:56:58','2015-03-14 14:56:58',1,30002312,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(1543,'2015-03-14 14:56:58','2015-03-14 14:56:58',1,30001496,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(1544,'2015-03-14 14:56:58','2015-08-29 14:46:08',1,30003134,0,24,0,0,0,0,0,0,0,0,0,0,0,0,0,58,0,0,0,0,0,0,0,0),(1545,'2015-03-14 14:56:58','2015-08-29 14:46:08',1,30002953,319,92,315,43,159,1014,1560,108,708,956,995,968,414,1284,1574,1605,696,357,571,866,1266,1007,1064,0),(1546,'2015-03-14 14:56:58','2015-08-29 14:46:08',1,30001253,51,0,0,0,0,0,59,42,0,0,0,0,0,110,73,24,0,0,0,0,6,5,74,0),(1547,'2015-03-14 14:56:58','2015-08-29 14:46:08',1,30000461,0,0,0,0,0,0,0,0,0,0,0,0,172,1,0,0,0,0,0,0,0,0,0,0),(1548,'2015-03-14 14:56:58','2015-08-29 14:46:08',1,30004750,0,0,0,0,0,0,0,0,0,0,0,0,27,0,0,0,0,0,0,0,3,6,0,0),(1549,'2015-03-14 14:56:58','2015-03-14 14:56:58',1,30000613,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(1550,'2015-03-14 14:56:58','2015-08-29 14:46:08',1,30002838,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,68,0),(1551,'2015-03-14 14:56:58','2015-08-29 14:46:08',1,30003727,516,27,195,122,57,191,413,8,240,90,209,106,237,282,250,208,157,0,19,138,66,126,280,0),(1552,'2015-03-14 14:56:58','2015-08-29 14:46:08',1,30001272,50,14,2,9,10,17,16,17,1,26,26,3,8,5,4,1,3,0,0,24,0,6,2,0),(1553,'2015-03-14 14:56:58','2015-08-29 14:46:08',1,30004813,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,94,0,0,0,0,0,0,0),(1554,'2015-03-14 14:56:58','2015-08-29 14:46:08',1,30003358,0,0,0,0,0,0,0,0,0,0,0,0,21,0,23,60,0,0,0,0,0,0,0,0),(1555,'2015-03-14 14:56:58','2015-08-29 14:46:08',1,30002149,0,0,0,0,0,0,0,222,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(1556,'2015-03-14 14:56:58','2015-03-14 14:56:58',1,30002304,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(1557,'2015-03-14 14:56:58','2015-08-29 14:46:08',1,30003115,452,763,1162,235,227,220,991,48,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(1558,'2015-03-14 14:56:58','2015-08-29 14:46:08',1,30003709,0,9,6,0,0,0,0,0,0,0,0,0,24,1,1,0,2,0,1,96,0,0,0,0),(1559,'2015-03-14 14:56:58','2015-08-29 14:46:08',1,30002481,229,1,0,154,285,39,378,190,294,465,495,326,455,124,33,105,451,682,596,93,0,170,361,0),(1560,'2015-03-14 14:56:58','2015-08-29 14:46:08',1,30002347,18,365,288,460,367,588,33,312,541,544,196,0,426,16,17,76,114,282,256,213,69,6,175,0),(1561,'2015-03-14 14:56:58','2015-08-29 14:46:08',1,30001761,35,0,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(1562,'2015-03-14 14:56:58','2015-03-14 14:56:58',1,30002626,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(1563,'2015-03-14 14:56:58','2015-03-14 14:56:58',1,30002366,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(1564,'2015-03-14 14:56:58','2015-08-29 14:46:08',1,30000826,353,106,362,115,111,403,57,0,17,0,0,0,41,204,388,320,117,0,0,0,0,123,427,0),(1565,'2015-03-14 14:56:58','2015-03-14 14:56:58',1,30000340,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(1566,'2015-03-14 14:56:58','2015-08-29 14:46:08',1,30003135,151,34,0,58,9,16,74,74,0,0,0,0,0,0,65,137,0,0,0,0,0,0,0,0),(1567,'2015-03-14 14:56:58','2015-08-29 14:46:08',1,30004622,3,5,5,0,0,34,0,0,0,11,35,0,0,34,67,40,31,0,36,104,32,0,33,0),(1568,'2015-03-14 14:56:58','2015-03-14 14:56:58',1,30005125,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(1569,'2015-03-14 14:56:58','2015-08-29 14:46:08',1,30001299,25,1,12,3,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(1570,'2015-03-14 14:56:58','2015-08-29 14:46:08',1,30004730,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,31,3,0),(1571,'2015-03-14 14:56:58','2015-08-29 14:46:08',1,30002430,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,85,25,82,0,0,1,0),(1572,'2015-03-14 14:56:58','2015-08-29 14:46:08',1,30002036,0,119,42,11,0,0,0,0,0,0,0,85,0,0,0,0,0,0,0,0,0,0,0,0),(1573,'2015-03-14 14:56:58','2015-08-29 14:46:08',1,30004588,0,47,380,206,74,139,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(1574,'2015-03-14 14:56:58','2015-08-29 14:46:08',1,30004902,14,103,0,100,108,370,377,583,267,562,337,131,5,95,210,482,1000,365,227,0,0,192,138,0),(1575,'2015-03-14 14:56:58','2015-03-14 14:56:58',1,30002295,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(1576,'2015-03-14 14:56:58','2015-08-29 14:46:08',1,30004491,133,133,0,153,144,100,469,0,37,0,59,241,5,187,75,211,230,341,142,103,649,553,325,0),(1577,'2015-03-14 14:56:58','2015-08-29 14:46:08',1,30004626,0,0,0,0,0,0,83,0,0,0,0,0,0,0,0,0,0,35,81,0,0,0,0,0),(1578,'2015-03-14 14:56:58','2015-08-29 14:46:08',1,30004386,131,10,966,37,0,253,1400,130,97,285,345,331,513,553,202,12,262,632,1260,530,393,556,1217,0),(1579,'2015-03-14 14:56:58','2015-08-29 14:46:08',1,30004502,9,9,8,0,0,6,1,0,0,7,16,1,0,3,0,0,0,0,5,5,0,5,26,0),(1580,'2015-03-14 14:56:58','2015-08-29 14:46:08',1,30003724,26,0,0,0,0,0,59,0,0,0,0,0,258,0,12,12,0,0,0,0,8,0,12,0),(1581,'2015-03-14 14:56:58','2015-08-29 14:46:08',1,30004480,112,3,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(1582,'2015-03-14 14:56:58','2015-08-29 14:46:08',1,30000867,0,2,8,0,0,0,0,53,0,8,101,0,91,0,0,4,0,3,0,0,4,47,0,0),(1583,'2015-03-14 14:56:58','2015-08-29 14:46:08',1,30001968,0,0,0,0,0,0,14,5,1,2,2,1,0,4,5,2,1,1,0,6,4,2,6,0),(1584,'2015-03-14 14:56:58','2015-08-29 14:46:08',1,30003345,0,0,0,10,0,0,20,0,43,28,86,36,0,18,0,6,38,3,0,4,0,16,72,0),(1585,'2015-03-14 14:56:58','2015-08-29 14:46:08',1,30001010,0,2,0,45,43,0,0,0,0,0,0,0,0,0,0,0,21,0,1,0,0,0,48,0),(1586,'2015-03-14 14:56:58','2015-03-14 14:56:58',1,30000327,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(1587,'2015-03-14 14:56:58','2015-08-29 14:46:08',1,30001881,5,4,0,0,0,0,0,0,3,30,0,32,224,24,14,0,3,19,32,4,7,0,0,0),(1588,'2015-03-14 14:56:58','2015-03-14 14:56:58',1,30004222,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(1589,'2015-03-14 14:56:58','2015-08-29 14:46:08',1,30001660,76,239,169,118,87,85,67,24,320,437,416,270,307,419,737,457,681,171,396,330,478,515,631,0),(1590,'2015-03-14 14:56:58','2015-08-29 14:46:08',1,30001921,21,45,19,0,0,71,31,0,5,48,6,0,10,1,6,6,41,0,0,23,250,120,125,0),(1591,'2015-03-14 14:56:58','2015-03-14 14:56:58',1,30001083,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(1592,'2015-03-14 14:56:58','2015-08-29 14:46:08',1,30002233,27,0,10,83,33,87,2,0,10,19,15,90,12,61,58,30,3,75,97,26,33,38,69,0),(1593,'2015-03-14 14:56:58','2015-08-29 14:46:08',1,30002541,0,63,8,3,0,0,0,0,49,19,14,8,22,42,32,12,25,12,32,7,10,21,13,0),(1594,'2015-03-14 14:56:58','2015-08-29 14:46:08',1,30002513,310,215,127,141,159,47,217,78,80,171,136,132,60,186,187,187,154,37,249,76,77,226,217,0),(1595,'2015-03-14 14:56:58','2015-08-29 14:46:08',1,30003912,115,13,49,21,14,294,13,31,109,196,75,46,78,139,130,83,134,23,94,115,50,85,50,0),(1596,'2015-03-14 14:56:58','2015-08-29 14:46:08',1,30004097,17,138,26,23,156,19,4,10,21,97,100,54,29,76,106,62,80,18,12,140,70,45,126,0),(1597,'2015-03-14 14:56:58','2015-08-29 14:46:08',1,30003451,204,80,24,31,9,8,21,134,106,81,68,187,106,136,57,75,133,9,49,123,133,296,231,0),(1598,'2015-03-14 14:56:58','2015-08-29 14:46:08',1,30001356,1,0,0,0,0,30,0,13,14,17,0,0,0,26,30,4,6,0,0,6,2,32,1,0),(1599,'2015-03-14 14:56:58','2015-08-29 14:46:08',1,30005044,157,44,66,94,86,142,8,32,107,333,302,121,264,141,302,505,57,246,345,289,242,258,216,0),(1600,'2015-03-14 14:56:58','2015-08-29 14:46:08',1,30005074,1,11,7,0,9,7,9,49,86,4,3,1,0,9,7,94,9,17,18,10,0,8,89,0),(1601,'2015-03-14 14:56:58','2015-08-29 14:46:08',1,30001420,0,0,0,0,0,0,71,0,0,0,21,76,93,0,23,24,0,0,0,22,0,0,14,0),(1602,'2015-03-14 14:56:58','2015-08-29 14:46:08',1,30003797,45,8,25,7,24,25,27,75,62,55,72,123,40,31,22,24,52,36,19,37,64,47,55,0),(1603,'2015-03-14 14:56:58','2015-08-29 14:46:08',1,30003405,67,43,60,166,1,62,0,0,13,54,0,20,0,42,57,18,23,0,85,58,60,25,44,0),(1604,'2015-03-14 14:56:58','2015-08-29 14:46:08',1,30000253,0,0,0,84,52,0,0,0,131,0,0,0,0,0,0,0,0,0,0,0,2,0,0,0),(1605,'2015-03-14 14:56:58','2015-08-29 14:46:08',1,30004524,99,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(1606,'2015-03-14 14:56:58','2015-08-29 14:46:08',1,30004470,2040,1620,1036,240,493,15,1004,157,291,18,177,408,552,622,720,1007,904,110,203,147,0,695,452,0),(1607,'2015-03-14 14:56:58','2015-08-29 14:46:08',1,30004595,0,221,243,186,150,61,0,191,0,0,0,0,0,0,0,5,58,0,0,0,0,5,286,0),(1608,'2015-03-14 14:56:58','2015-08-29 14:46:08',1,30000877,187,139,50,420,567,461,235,365,0,0,0,0,0,0,0,0,0,6,0,0,0,0,42,0),(1609,'2015-03-14 14:56:58','2015-08-29 14:46:08',1,30003364,4,0,0,11,11,0,0,0,0,0,0,0,0,0,0,0,31,0,0,0,0,0,0,0),(1610,'2015-03-14 14:56:58','2015-08-29 14:46:08',1,30004311,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,36,0),(1611,'2015-03-14 14:56:58','2015-08-29 14:46:08',1,30003644,0,0,0,0,0,0,0,31,0,0,0,0,9,0,0,0,0,0,0,0,0,2,32,0),(1612,'2015-03-14 14:56:58','2015-08-29 14:46:08',1,30002631,0,0,0,0,61,0,0,76,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(1613,'2015-03-14 14:56:58','2015-08-29 14:46:08',1,30000663,30,0,0,0,0,0,0,0,0,0,0,4,0,0,0,0,0,0,0,0,0,5,0,0),(1614,'2015-03-14 14:56:58','2015-08-29 14:46:08',1,30005093,0,0,0,0,0,0,0,0,0,0,0,54,0,0,0,0,0,0,0,0,0,0,0,0),(1615,'2015-03-14 14:56:58','2015-08-29 14:46:08',1,30000954,0,0,0,0,0,0,0,0,0,0,0,0,159,0,0,0,0,0,0,0,0,0,0,0),(1616,'2015-03-14 14:56:58','2015-08-29 14:46:08',1,30005285,0,0,0,0,0,0,0,37,0,48,4,107,14,0,0,0,0,0,90,1,11,0,1,0),(1617,'2015-03-14 14:56:58','2015-08-29 14:46:08',1,30002635,0,20,2,32,10,19,13,125,8,38,44,48,50,23,16,37,52,3,12,1,11,11,10,0),(1618,'2015-03-14 14:56:58','2015-08-29 14:46:08',1,30013489,351,389,693,381,416,411,374,298,647,490,577,597,760,1018,1161,1012,744,241,376,901,720,615,666,0),(1619,'2015-03-14 14:56:58','2015-08-29 14:46:08',1,30004284,24,13,3,11,6,21,6,42,27,12,13,4,0,0,0,0,0,0,0,0,0,59,26,0),(1620,'2015-03-14 14:56:58','2015-08-29 14:46:08',1,30004105,0,0,0,21,21,0,0,0,0,0,0,12,0,39,90,71,0,0,0,0,0,0,42,0),(1621,'2015-03-14 14:56:58','2015-08-29 14:46:08',1,30002681,1136,564,344,547,647,190,683,772,1317,1178,1018,780,780,1200,1100,980,1353,531,547,610,918,954,913,0),(1622,'2015-03-14 14:56:58','2015-08-29 14:46:08',1,30004987,4,93,32,77,30,84,54,66,208,35,91,55,37,237,52,97,132,76,22,14,62,74,45,0),(1623,'2015-03-14 14:56:58','2015-08-29 14:46:08',1,30005025,191,199,329,152,246,45,181,25,194,188,119,436,332,269,247,261,348,196,91,222,246,261,233,0),(1624,'2015-03-14 14:56:58','2015-08-29 14:46:08',1,30004985,16,25,23,8,11,117,26,1,35,13,9,1,35,19,16,9,5,103,83,3,9,20,38,0),(1625,'2015-03-14 14:56:58','2015-03-14 14:56:58',1,30000816,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(1626,'2015-03-14 14:56:58','2015-08-29 14:46:08',1,30001557,0,0,0,0,0,0,0,0,0,110,258,91,0,52,31,22,527,0,5,11,14,17,237,0),(1627,'2015-03-14 14:56:58','2015-08-29 14:46:08',1,30000441,0,0,19,11,0,0,0,0,10,18,35,25,0,6,56,84,28,0,13,0,17,9,25,0),(1628,'2015-03-14 14:56:58','2015-08-29 14:46:08',1,30004016,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,51,0,0,0),(1629,'2015-03-14 14:56:58','2015-08-29 14:46:08',1,30003187,0,0,0,0,0,0,0,0,0,0,0,0,0,2,1,0,0,0,0,0,0,0,0,0),(1630,'2015-03-14 14:56:58','2015-08-29 14:46:08',1,30005229,62,97,71,162,221,214,54,29,215,442,339,139,171,245,225,195,293,124,155,199,342,328,199,0),(1631,'2015-03-14 14:56:58','2015-08-29 14:46:08',1,30003156,240,0,114,56,187,0,39,133,0,0,0,0,0,0,0,0,0,0,0,0,0,0,61,0),(1632,'2015-03-14 14:56:58','2015-08-29 14:46:08',1,30002967,87,22,65,114,135,53,92,105,30,107,111,100,32,123,147,92,25,10,36,49,160,52,6,0),(1633,'2015-03-14 14:56:58','2015-08-29 14:46:08',1,30003924,0,0,0,0,0,0,72,0,15,16,10,1,10,0,0,10,34,0,0,0,45,10,0,0),(1634,'2015-03-14 14:56:58','2015-08-29 14:46:08',1,30002646,77,97,271,95,41,245,76,151,150,275,232,70,100,361,61,244,276,29,198,164,192,371,131,0),(1635,'2015-03-14 14:56:58','2015-08-29 14:46:08',1,30003461,51,65,81,86,44,214,1,76,158,43,52,73,28,51,33,78,8,80,25,117,81,113,65,0),(1636,'2015-03-14 14:56:58','2015-08-29 14:46:08',1,30002968,0,91,154,4,83,125,13,0,9,4,4,54,15,30,160,146,89,73,4,37,1,8,13,0),(1637,'2015-03-14 14:56:58','2015-08-29 14:46:08',1,30001781,96,0,200,318,86,89,0,979,0,0,0,0,0,0,5,5,4,0,0,0,0,93,261,0),(1638,'2015-03-14 14:56:58','2015-08-29 14:46:08',1,30005262,0,0,0,0,0,0,12,79,0,118,151,0,13,16,0,0,36,0,0,0,0,19,54,0),(1639,'2015-03-14 14:56:58','2015-08-29 14:46:08',1,30004903,0,554,546,0,0,990,600,576,840,980,930,806,1000,601,980,1000,101,0,0,10,352,384,936,0),(1640,'2015-03-14 14:56:58','2015-08-29 14:46:08',1,30001994,68,460,354,183,125,136,26,0,0,3,29,10,0,0,0,0,108,43,0,0,0,84,15,0),(1641,'2015-03-14 14:56:58','2015-03-14 14:56:58',1,30004207,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(1642,'2015-03-14 14:56:58','2015-03-14 14:56:58',1,30001960,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(1643,'2015-03-14 14:56:58','2015-08-29 14:46:08',1,30002920,0,0,0,35,46,18,0,0,0,278,90,0,0,40,84,354,21,579,562,466,0,0,5,0),(1644,'2015-03-14 14:56:58','2015-08-29 14:46:08',1,30003170,0,11,6,9,10,199,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,128,0),(1645,'2015-03-14 14:56:58','2015-08-29 14:46:08',1,30000879,0,32,0,95,62,0,0,0,0,0,0,0,0,0,0,0,0,0,0,15,89,0,11,0),(1646,'2015-03-14 14:56:58','2015-03-14 14:56:58',1,30001632,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(1647,'2015-03-14 14:56:58','2015-08-29 14:46:08',1,30004195,891,94,676,388,332,518,212,200,0,0,0,0,0,0,0,46,0,95,19,0,2,0,0,0),(1648,'2015-03-14 14:56:58','2015-08-29 14:46:08',1,30003157,313,0,108,143,165,0,0,211,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(1649,'2015-03-14 14:56:58','2015-08-29 14:46:08',1,30003762,57,84,99,105,51,129,35,0,96,180,321,294,291,370,402,732,197,17,13,65,368,311,421,0),(1650,'2015-03-14 14:56:58','2015-08-29 14:46:08',1,30003681,0,0,8,65,68,0,85,0,0,4,5,1,4,44,85,84,156,0,0,0,0,2,1,0),(1651,'2015-03-14 14:56:58','2015-03-14 14:56:58',1,30001130,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(1652,'2015-03-14 14:56:58','2015-08-29 14:46:08',1,30002685,66,10,73,9,100,93,0,31,154,173,23,17,164,9,11,4,164,0,30,68,216,97,128,0),(1653,'2015-03-14 14:56:58','2015-08-29 14:46:08',1,30002659,444,387,274,351,341,456,110,196,118,347,434,451,528,538,607,593,406,236,247,475,285,402,394,0),(1654,'2015-03-14 14:56:58','2015-08-29 14:46:08',1,30005226,69,0,28,0,0,51,9,4,74,0,0,0,21,4,1,189,33,0,5,0,27,0,39,0),(1655,'2015-03-14 14:56:58','2015-08-29 14:46:08',1,30000038,0,0,0,0,0,0,0,0,0,86,1,0,0,0,0,0,0,0,9,0,26,0,9,0),(1656,'2015-03-14 14:56:58','2015-08-29 14:46:08',1,30001047,0,0,0,25,22,0,0,0,15,1,0,0,10,0,3,3,8,10,27,19,0,0,44,0),(1657,'2015-03-14 14:56:58','2015-08-29 14:46:08',1,30003807,0,29,81,27,8,32,36,36,12,19,19,2,20,37,13,47,10,0,17,2,0,156,45,0),(1658,'2015-03-14 14:56:58','2015-08-29 14:46:08',1,30002706,118,108,62,104,67,128,201,75,42,49,23,63,110,163,105,190,82,60,107,245,129,45,130,0),(1659,'2015-03-14 14:56:58','2015-08-29 14:46:08',1,30005293,734,81,76,42,27,19,129,15,77,57,74,171,137,146,180,139,59,17,36,36,224,63,60,0),(1660,'2015-03-14 14:56:58','2015-08-29 14:46:08',1,30002014,147,38,76,4,1,1,0,181,1,2,2,5,0,0,16,78,4,4,0,0,4,1,3,0),(1661,'2015-03-14 14:56:58','2015-08-29 14:46:08',1,30001912,56,128,0,0,0,0,49,0,100,97,16,47,74,78,104,98,93,25,239,11,0,0,0,0),(1662,'2015-03-14 14:56:58','2015-08-29 14:46:08',1,30003721,9,97,58,5,11,8,21,7,50,46,15,98,0,0,27,132,45,62,52,35,55,92,73,0),(1663,'2015-03-14 14:56:58','2015-08-29 14:46:08',1,30003314,18,0,0,0,0,0,70,0,14,16,4,10,4,0,8,20,0,35,29,0,54,6,0,0),(1664,'2015-03-14 14:56:58','2015-08-29 14:46:08',1,30002184,363,238,86,75,158,262,231,242,28,86,135,328,283,139,185,89,5,49,2,25,84,197,56,0),(1665,'2015-03-14 14:56:58','2015-08-29 14:46:08',1,30004078,626,529,451,408,291,149,298,453,515,575,615,330,470,347,412,295,302,341,584,399,642,577,342,0),(1666,'2015-03-14 14:56:58','2015-08-29 14:46:08',1,30005011,121,27,6,30,4,3,0,193,47,0,5,21,24,18,27,13,16,23,53,109,158,32,9,0),(1667,'2015-03-14 14:56:58','2015-08-29 14:46:08',1,30003992,0,0,0,0,0,16,0,0,0,61,62,0,0,0,0,0,0,0,0,0,0,0,0,0),(1668,'2015-03-14 14:56:58','2015-08-29 14:46:08',1,30003193,33,0,84,31,0,8,0,199,0,0,0,0,0,0,0,0,0,0,71,2,0,0,95,0),(1669,'2015-03-14 14:56:58','2015-08-29 14:46:08',1,30001831,0,0,0,9,72,3,0,0,5,20,7,0,0,0,0,0,0,0,0,3,0,0,48,0),(1670,'2015-03-14 14:56:58','2015-03-14 14:56:58',1,30001610,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(1671,'2015-03-14 14:56:58','2015-08-29 14:46:08',1,30004806,0,0,0,0,0,0,0,0,0,0,0,72,0,0,0,0,0,0,0,0,0,0,0,0),(1672,'2015-03-14 14:56:58','2015-08-29 14:46:08',1,30002041,0,76,159,41,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(1673,'2015-03-14 14:56:58','2015-08-29 14:46:08',1,30003108,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,0,0,0,0),(1674,'2015-03-14 14:56:58','2015-08-29 14:46:08',1,30002633,37,137,189,134,99,27,69,63,77,28,44,26,378,169,201,149,86,63,101,127,111,69,47,0),(1675,'2015-03-14 14:56:58','2015-08-29 14:46:08',1,30002076,0,0,0,0,0,0,0,0,29,5,0,58,14,69,120,66,0,0,1,50,0,0,1,0),(1676,'2015-03-14 14:56:58','2015-03-14 14:56:58',1,30000396,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(1677,'2015-03-14 14:56:58','2015-08-29 14:46:08',1,30002520,66,48,41,5,3,55,8,87,31,127,40,11,132,45,10,13,60,65,92,173,37,119,125,0),(1678,'2015-03-14 14:56:58','2015-08-29 14:46:08',1,30002670,26,34,90,32,45,47,18,86,82,76,112,142,131,112,51,86,162,4,1,118,70,29,109,0),(1679,'2015-03-14 14:56:58','2015-03-14 14:56:58',1,30000595,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(1680,'2015-03-14 14:56:58','2015-08-29 14:46:08',1,30004971,370,596,321,250,226,399,218,301,299,567,560,273,495,409,371,466,473,169,321,267,511,527,264,0),(1681,'2015-03-14 14:56:58','2015-08-29 14:46:08',1,30004418,0,0,28,0,0,109,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,12,0,0),(1682,'2015-03-14 14:56:58','2015-08-29 14:46:08',1,30003359,0,0,0,0,0,30,0,0,0,0,0,0,18,0,0,0,0,0,0,0,0,0,0,0),(1683,'2015-03-14 14:56:58','2015-03-14 14:56:58',1,30001504,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(1684,'2015-03-14 14:56:58','2015-08-29 14:46:08',1,30001581,0,0,0,0,0,0,0,0,1,0,0,4,27,47,22,10,15,49,54,22,8,56,15,0),(1685,'2015-03-14 14:56:58','2015-03-14 14:56:58',1,30000518,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(1686,'2015-03-14 14:56:58','2015-08-29 14:46:08',1,30002146,0,0,0,0,0,0,0,0,3,12,4,5,0,0,0,0,41,0,0,0,214,42,0,0),(1687,'2015-03-14 14:56:58','2015-08-29 14:46:08',1,30003682,25,47,32,0,0,61,0,97,0,0,91,0,0,0,42,42,0,0,0,4,0,0,23,0),(1688,'2015-03-14 14:56:58','2015-03-14 14:56:58',1,30000516,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(1689,'2015-03-14 14:56:58','2015-08-29 14:46:08',1,30000490,0,125,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(1690,'2015-03-14 14:56:58','2015-08-29 14:46:08',1,30002599,0,0,1,59,0,0,0,0,0,0,0,0,0,27,28,17,0,0,0,0,0,0,0,0),(1691,'2015-03-14 14:56:58','2015-08-29 14:46:08',1,30004042,0,0,0,0,0,0,0,0,0,0,0,0,50,35,0,0,0,0,0,0,0,0,1,0),(1692,'2015-03-14 14:56:58','2015-08-29 14:46:08',1,30002119,0,0,0,0,0,0,0,0,2,1,0,0,98,35,25,0,0,0,0,0,0,0,0,0),(1693,'2015-03-14 14:56:58','2015-08-29 14:46:08',1,30002378,0,0,0,0,0,0,0,0,14,126,35,5,19,10,8,0,0,11,17,7,99,1,0,0),(1694,'2015-03-14 14:56:58','2015-08-29 14:46:08',1,30003196,0,0,0,11,6,0,34,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,60,0),(1695,'2015-03-14 14:56:58','2015-08-29 14:46:08',1,30000102,27,21,9,0,0,11,1,0,0,0,9,1,60,12,23,12,2,0,0,6,9,33,2,0),(1696,'2015-03-14 14:56:58','2015-08-29 14:46:08',1,30004852,0,0,0,0,0,0,0,0,0,0,0,136,0,0,0,0,0,0,0,0,0,0,0,0),(1697,'2015-03-14 14:56:58','2015-03-14 14:56:58',1,30000502,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(1698,'2015-03-14 14:56:58','2015-08-29 14:46:08',1,30001294,0,6,24,0,0,82,5,0,0,0,0,0,0,11,4,0,0,0,0,0,0,0,0,0),(1699,'2015-03-14 14:56:58','2015-08-29 14:46:08',1,30002477,0,0,91,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,31,0,10,0),(1700,'2015-03-14 14:56:58','2015-08-29 14:46:08',1,30003677,27,0,0,0,0,74,10,105,0,27,27,46,5,5,5,5,0,0,0,0,105,26,0,0),(1701,'2015-03-14 14:56:58','2015-08-29 14:46:08',1,30000503,0,0,52,0,0,0,0,109,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(1702,'2015-03-14 14:56:58','2015-08-29 14:46:08',1,30004186,578,96,385,838,860,865,925,364,152,456,921,1716,1393,2540,2420,1483,491,0,144,403,1340,1406,527,0),(1703,'2015-03-14 14:56:58','2015-08-29 14:46:08',1,30001530,2,0,0,0,0,0,0,0,201,113,20,365,356,85,76,113,568,148,418,367,214,193,749,0),(1704,'2015-03-14 14:56:58','2015-08-29 14:46:08',1,30004567,0,0,0,0,0,0,0,0,0,0,0,0,45,0,0,0,19,0,0,0,6,85,0,0),(1705,'2015-03-14 14:56:58','2015-08-29 14:46:08',1,30004181,0,0,0,0,0,0,19,0,0,0,0,0,0,0,0,0,0,0,85,85,0,0,0,0),(1706,'2015-03-14 14:56:58','2015-08-29 14:46:08',1,30001834,5,0,0,0,0,0,3,0,0,18,23,0,2,0,0,3,0,1,0,69,0,1,0,0),(1707,'2015-03-14 14:56:58','2015-08-29 14:46:08',1,30000257,0,0,0,0,0,200,0,140,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(1708,'2015-03-14 14:56:58','2015-08-29 14:46:08',1,30004948,1,0,186,767,739,79,442,284,10,112,67,0,0,0,0,80,218,0,70,47,55,156,79,0),(1709,'2015-03-14 14:56:58','2015-03-14 14:56:58',1,30004217,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(1710,'2015-03-14 14:56:58','2015-08-29 14:46:08',1,30002922,858,240,433,905,424,276,457,167,69,175,342,938,300,221,127,593,1020,133,207,128,356,229,232,0),(1711,'2015-03-14 14:56:58','2015-08-29 14:46:08',1,30004546,0,0,0,61,77,0,0,0,0,0,0,0,65,1,0,0,0,0,0,0,0,0,0,0),(1712,'2015-03-14 14:56:58','2015-08-29 14:46:08',1,30000531,0,0,0,0,0,0,0,97,0,0,3,0,0,0,0,0,0,0,0,0,0,0,0,0),(1713,'2015-03-14 14:56:58','2015-08-29 14:46:08',1,30000846,67,0,0,0,0,0,35,0,0,1,0,0,6,0,0,0,0,0,7,33,0,0,0,0),(1714,'2015-03-14 14:56:58','2015-08-29 14:46:08',1,30004451,50,17,17,0,0,116,8,0,163,234,107,52,0,0,0,0,375,217,91,56,0,127,261,0),(1715,'2015-03-14 14:56:58','2015-03-14 14:56:58',1,30001620,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(1716,'2015-03-14 14:56:58','2015-08-29 14:46:08',1,30000283,0,0,0,79,0,0,0,45,0,0,0,0,0,0,0,0,0,0,0,0,0,104,1,0),(1717,'2015-03-14 14:56:58','2015-03-14 14:56:58',1,30004028,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(1718,'2015-03-14 14:56:58','2015-03-14 14:56:58',1,30005100,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(1719,'2015-03-14 14:56:58','2015-08-29 14:46:08',1,30003732,55,272,85,37,21,55,0,84,206,139,369,346,18,69,140,132,57,36,15,18,212,23,15,0),(1720,'2015-03-14 14:56:58','2015-08-29 14:46:08',1,30001229,110,339,372,93,11,335,200,97,24,7,4,3,21,0,55,56,0,138,1,0,98,59,27,0),(1721,'2015-03-14 14:56:58','2015-08-29 14:46:08',1,30002032,85,0,0,0,0,108,0,0,0,0,0,0,99,0,0,0,0,0,0,0,0,0,3,0),(1722,'2015-03-14 14:56:58','2015-08-29 14:46:08',1,30000903,0,8,3,0,0,0,0,0,3,33,20,37,0,0,0,0,3,4,10,5,0,0,0,0),(1723,'2015-03-14 14:56:58','2015-08-29 14:46:08',1,30004208,123,129,0,0,50,5,176,267,0,0,0,0,57,0,0,0,139,0,124,1,53,4,0,0),(1724,'2015-03-14 14:56:58','2015-08-29 14:46:08',1,30001214,0,0,0,0,0,0,0,0,0,10,20,0,9,12,18,7,14,37,3,0,0,15,27,0),(1725,'2015-03-14 14:56:58','2015-08-29 14:46:08',1,30001334,0,0,0,0,0,0,128,0,0,0,85,40,0,0,0,0,0,0,0,0,0,0,0,0),(1726,'2015-03-14 14:56:58','2015-08-29 14:46:08',1,30002136,0,0,0,29,29,0,0,9,0,44,133,0,6,0,0,0,0,0,0,0,0,0,0,0),(1727,'2015-03-14 14:56:58','2015-08-29 14:46:08',1,30003136,28,403,793,33,973,744,218,845,0,0,17,43,0,0,0,0,0,0,28,1,0,0,0,0),(1728,'2015-03-14 14:56:58','2015-08-29 14:46:08',1,30000612,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,6,0,0,0,0,0,0,0),(1729,'2015-03-14 14:56:58','2015-08-29 14:46:08',1,30004959,2060,0,42,1399,853,90,1990,1526,688,1099,657,283,501,161,245,452,549,1080,213,535,313,892,241,0),(1730,'2015-03-14 14:56:58','2015-03-14 14:56:58',1,30001462,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(1731,'2015-03-14 14:56:58','2015-08-29 14:46:08',1,30001217,0,0,0,0,0,0,0,0,0,10,115,30,0,0,0,0,0,0,0,0,0,0,0,0),(1732,'2015-03-14 14:56:58','2015-08-29 14:46:08',1,30004725,0,0,0,0,0,0,0,0,0,0,0,0,0,4,3,0,6,0,0,0,0,0,0,0),(1733,'2015-03-14 14:56:58','2015-08-29 14:46:08',1,30002931,0,0,0,27,0,26,43,0,23,0,0,0,0,6,0,0,0,30,0,0,40,4,5,0),(1734,'2015-03-14 14:56:58','2015-08-29 14:46:08',1,30001527,0,0,139,71,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,86,0,1,0,0),(1735,'2015-03-14 14:56:58','2015-08-29 14:46:08',1,30000524,255,32,34,40,124,172,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(1736,'2015-03-14 14:56:58','2015-08-29 14:46:08',1,30000634,0,0,0,0,0,0,0,0,0,0,4,1,0,0,0,0,0,0,0,0,0,0,0,0),(1737,'2015-03-14 14:56:58','2015-08-29 14:46:08',1,30003242,0,0,0,0,0,9,0,0,0,60,60,0,0,0,0,0,0,0,0,0,3,146,41,0),(1738,'2015-03-14 14:56:58','2015-08-29 14:46:08',1,30001909,39,0,41,0,0,12,0,0,0,6,8,0,24,0,11,156,0,0,0,0,1,0,0,0),(1739,'2015-03-14 14:56:58','2015-08-29 14:46:08',1,30002605,12,69,12,20,6,88,67,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(1740,'2015-03-14 14:56:58','2015-08-29 14:46:08',1,30002349,237,250,176,175,322,25,20,110,0,0,1,0,1,0,87,87,0,0,0,0,0,0,0,0),(1741,'2015-03-14 14:56:58','2015-08-29 14:46:08',1,30002163,245,18,0,2,3,10,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(1742,'2015-03-14 14:56:58','2015-08-29 14:46:08',1,30004499,0,0,104,0,0,0,0,9,0,0,0,0,0,1,1,2,0,0,77,1,17,45,0,0),(1743,'2015-03-14 14:56:58','2015-08-29 14:46:08',1,30003694,0,0,120,0,0,69,14,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(1744,'2015-03-14 14:56:58','2015-08-29 14:46:08',1,30002124,155,0,0,8,12,10,0,0,0,0,0,0,0,0,0,0,0,0,18,0,0,0,20,0),(1745,'2015-03-14 14:56:58','2015-08-29 14:46:08',1,30003476,31,6,67,117,133,142,15,14,57,4,60,99,70,49,7,6,3,27,120,89,3,177,72,0),(1746,'2015-03-14 14:56:58','2015-08-29 14:46:08',1,30003438,73,8,80,100,59,179,28,49,0,115,0,28,116,124,158,99,109,40,87,68,81,85,73,0),(1747,'2015-03-14 14:56:58','2015-08-29 14:46:08',1,30003441,90,99,51,4,25,36,45,39,69,61,86,40,16,217,211,162,82,23,36,50,55,34,177,0),(1748,'2015-03-14 14:56:58','2015-08-29 14:46:08',1,30001933,0,0,0,0,0,0,0,0,0,0,0,0,6,0,0,0,0,0,0,0,0,0,0,0),(1749,'2015-03-14 14:56:58','2015-08-29 14:46:08',1,30002281,78,141,108,42,32,157,14,70,152,111,81,63,75,109,185,251,16,82,147,110,180,118,59,0),(1750,'2015-03-14 14:56:58','2015-08-29 14:46:08',1,30005291,333,4,101,79,186,176,9,58,12,137,147,135,417,152,73,90,79,21,67,61,151,78,87,0),(1751,'2015-03-14 14:56:58','2015-08-29 14:46:08',1,30002535,34,104,65,59,0,12,49,43,38,7,145,5,48,54,22,27,19,13,55,196,112,48,16,0),(1752,'2015-03-14 14:56:58','2015-08-29 14:46:08',1,30002196,199,191,50,128,238,103,40,257,198,203,72,122,246,195,233,263,283,149,90,78,92,168,212,0),(1753,'2015-03-14 14:56:58','2015-08-29 14:46:08',1,30002269,6,60,139,85,30,29,35,24,0,33,112,145,76,110,85,66,75,31,94,54,67,89,50,0),(1754,'2015-03-14 14:56:58','2015-08-29 14:46:08',1,30002536,0,0,0,58,56,9,0,0,0,119,96,0,3,2,12,72,3,57,0,0,89,0,54,0),(1755,'2015-03-14 14:56:58','2015-08-29 14:46:08',1,30002094,8,0,0,0,0,0,0,0,0,23,15,59,0,2,1,59,34,79,14,8,4,17,84,0),(1756,'2015-03-14 14:56:58','2015-08-29 14:46:08',1,30002277,141,185,50,219,131,173,141,60,115,98,155,204,354,255,166,251,298,67,101,202,211,154,158,0),(1757,'2015-03-14 14:56:58','2015-08-29 14:46:08',1,30001984,11,4,0,0,0,0,0,0,0,0,0,0,8,0,0,0,0,0,0,0,0,0,0,0),(1758,'2015-03-14 14:56:58','2015-08-29 14:46:08',1,30004020,20,102,34,37,39,0,4,0,136,238,214,75,0,0,0,0,0,0,0,0,0,0,0,0),(1759,'2015-03-14 14:56:58','2015-08-29 14:46:08',1,30003911,5,131,42,17,32,0,121,35,32,89,60,65,143,35,23,39,94,21,48,62,36,19,153,0),(1760,'2015-03-14 14:56:58','2015-08-29 14:46:08',1,30002552,63,100,34,72,92,28,44,102,20,73,54,2,125,55,106,124,105,46,101,53,37,1,69,0),(1761,'2015-03-14 14:56:58','2015-08-29 14:46:08',1,30004256,0,0,0,0,0,0,26,1,52,0,0,0,0,0,0,2,0,0,0,0,79,28,19,0),(1762,'2015-03-14 14:56:58','2015-08-29 14:46:08',1,30002518,0,7,22,47,31,22,0,29,0,1,1,0,21,70,53,4,0,76,0,0,35,31,24,0),(1763,'2015-03-14 14:56:58','2015-08-29 14:46:08',1,30000486,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,5,15,0,0,0),(1764,'2015-03-14 14:56:58','2015-08-29 14:46:08',1,30003355,0,0,0,0,0,0,19,0,0,0,0,0,0,5,5,0,0,0,0,0,0,0,0,0),(1765,'2015-03-14 14:56:58','2015-08-29 14:46:08',1,30005104,0,812,8,0,0,0,0,13,9,17,22,0,3,3,8,6,5,0,0,32,6,0,0,0),(1766,'2015-03-14 14:56:58','2015-08-29 14:46:08',1,30003892,0,0,12,0,70,80,101,0,0,0,0,0,0,5,7,7,54,0,0,0,0,0,0,0),(1767,'2015-03-14 14:56:58','2015-08-29 14:46:08',1,30000783,0,8,1,0,0,0,0,0,0,0,0,9,0,0,0,0,0,0,0,0,0,0,0,0),(1768,'2015-03-14 14:56:58','2015-08-29 14:46:08',1,30004297,0,49,63,3,3,8,8,27,0,0,0,0,7,0,0,0,0,0,0,1,0,13,55,0),(1769,'2015-03-14 14:56:58','2015-08-29 14:46:08',1,30002420,0,106,0,103,146,0,0,0,1,0,0,14,1,97,94,14,32,0,0,13,12,0,0,0),(1770,'2015-03-14 14:56:58','2015-08-29 14:46:08',1,30003401,30,0,57,0,0,148,47,0,38,2,32,0,0,13,63,83,0,0,0,48,77,0,0,0),(1771,'2015-03-14 14:56:58','2015-08-29 14:46:08',1,30002693,2,13,26,6,25,4,1,15,11,8,0,14,0,18,19,1,26,15,7,0,31,32,33,0),(1772,'2015-03-14 14:56:58','2015-08-29 14:46:08',1,30003605,235,54,148,103,100,44,208,0,5,173,28,0,117,44,37,53,74,5,37,130,119,111,181,0),(1773,'2015-03-14 14:56:58','2015-08-29 14:46:08',1,30002660,585,1082,764,983,634,844,582,547,462,856,902,510,1376,1016,1059,1279,894,931,717,1100,790,730,1079,0),(1774,'2015-03-14 14:56:58','2015-08-29 14:46:08',1,30002099,0,3,31,5,5,104,18,8,9,5,67,41,1,2,3,7,4,10,7,14,8,0,39,0),(1775,'2015-03-14 14:56:58','2015-08-29 14:46:08',1,30002563,147,16,31,54,123,68,6,144,11,222,104,11,71,199,158,24,86,9,77,133,63,223,123,0),(1776,'2015-03-14 14:56:58','2015-03-14 14:56:58',1,30000373,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(1777,'2015-03-14 14:56:58','2015-08-29 14:46:08',1,30005108,0,0,0,0,0,0,62,0,0,0,0,0,0,0,0,0,0,0,0,0,81,0,0,0),(1778,'2015-03-14 14:56:58','2015-08-29 14:46:08',1,30045319,9,104,3,35,59,99,1,120,0,15,11,9,4,5,7,7,5,0,0,55,8,2,15,0),(1779,'2015-03-14 14:56:58','2015-08-29 14:46:08',1,30002997,8,10,37,10,20,41,0,43,93,27,27,138,42,48,43,42,9,115,14,29,57,63,66,0),(1780,'2015-03-14 14:56:58','2015-08-29 14:46:08',1,30004586,0,0,0,0,0,0,0,0,0,0,0,0,0,79,0,0,0,0,0,0,0,0,0,0),(1781,'2015-03-14 14:56:58','2015-08-29 14:46:08',1,30000249,0,0,0,0,3,25,0,0,0,0,85,1,0,0,0,0,0,0,0,0,0,0,0,0),(1782,'2015-03-14 14:56:58','2015-08-29 14:46:08',1,30002555,3,0,0,0,0,3,3,2,69,0,0,23,72,12,28,19,0,1,51,0,26,14,16,0),(1783,'2015-03-14 14:56:58','2015-08-29 14:46:08',1,30000577,0,113,129,138,138,152,79,0,0,0,0,37,0,0,0,0,0,0,0,0,0,0,0,0),(1784,'2015-03-14 14:56:58','2015-08-29 14:46:08',1,30003393,101,70,127,131,138,133,30,43,46,156,104,26,117,128,87,65,137,37,58,30,47,67,103,0),(1785,'2015-03-14 14:56:58','2015-08-29 14:46:08',1,30004946,32,74,3,71,60,218,0,84,0,0,0,0,0,0,0,0,0,0,0,7,0,0,45,0),(1786,'2015-03-14 14:56:58','2015-03-14 14:56:58',1,30000655,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(1787,'2015-03-14 14:56:58','2015-08-29 14:46:08',1,30002740,159,286,195,204,172,237,74,355,176,184,301,358,340,442,270,306,231,305,94,275,354,220,365,0),(1788,'2015-03-14 14:56:58','2015-08-29 14:46:08',1,30001307,28,0,1,68,1,0,0,0,0,0,17,0,0,0,0,0,0,0,0,0,0,0,15,0),(1789,'2015-03-14 14:56:58','2015-03-14 14:56:58',1,30004204,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(1790,'2015-03-14 14:56:58','2015-03-14 14:56:58',1,30000814,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(1791,'2015-03-14 14:56:58','2015-08-29 14:46:08',1,30000083,138,57,151,17,0,105,10,11,64,50,32,72,67,35,43,20,29,57,0,25,139,233,31,0),(1792,'2015-03-14 14:56:58','2015-08-29 14:46:08',1,30001313,91,0,0,43,64,120,6,0,6,106,36,85,114,19,46,88,82,84,149,232,67,87,11,0),(1793,'2015-03-14 14:56:58','2015-08-29 14:46:08',1,30003494,406,102,305,199,255,152,165,124,235,278,327,268,329,347,334,374,318,175,165,221,408,425,542,0),(1794,'2015-03-14 14:56:58','2015-03-14 14:56:58',1,30000740,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(1795,'2015-03-14 14:56:58','2015-08-29 14:46:08',1,30005317,176,94,140,244,145,222,190,29,145,142,181,112,205,405,354,255,246,155,166,112,264,158,299,0),(1796,'2015-03-14 14:56:58','2015-08-29 14:46:08',1,30001378,181,177,143,173,191,228,39,102,214,191,277,175,305,453,424,385,329,84,180,185,283,290,193,0),(1797,'2015-03-14 14:56:58','2015-08-29 14:46:08',1,30001970,0,0,0,0,0,0,104,0,0,0,0,0,0,0,0,0,0,0,6,6,0,0,0,0),(1798,'2015-03-14 14:56:58','2015-08-29 14:46:08',1,30001434,168,20,165,184,28,201,66,83,154,302,439,84,175,70,139,322,185,122,104,196,300,55,266,0),(1799,'2015-03-14 14:56:58','2015-08-29 14:46:08',1,30003044,17,7,42,0,0,0,4,3,8,0,0,1,0,21,9,16,13,61,2,26,0,8,49,0),(1800,'2015-03-14 14:56:58','2015-08-29 14:46:08',1,30003462,35,144,42,85,118,9,91,178,60,61,67,123,33,32,19,125,230,15,28,99,38,178,90,0),(1801,'2015-03-14 14:56:58','2015-08-29 14:46:08',1,30002398,4,232,67,56,33,141,11,0,78,64,326,61,120,145,49,189,267,19,16,119,108,307,148,0),(1802,'2015-03-14 14:56:58','2015-08-29 14:46:08',1,30005315,51,78,95,54,61,71,98,64,27,77,75,170,105,166,139,159,74,59,48,41,66,91,12,0),(1803,'2015-03-14 14:56:58','2015-08-29 14:46:08',1,30003412,150,29,100,40,28,21,53,18,181,188,179,2,72,45,65,58,88,78,10,10,194,176,78,0),(1804,'2015-03-14 14:56:58','2015-08-29 14:46:08',1,30005313,260,77,39,134,72,30,0,22,36,167,83,49,153,201,147,123,59,82,167,80,180,103,55,0),(1805,'2015-03-14 14:56:58','2015-08-29 14:46:08',1,30004149,59,66,48,140,6,79,115,0,99,59,59,24,8,4,5,3,139,14,95,0,7,10,88,0),(1806,'2015-03-14 14:56:58','2015-08-29 14:46:08',1,30001399,239,374,271,298,243,357,303,342,137,237,516,206,302,348,430,525,278,81,207,237,231,440,222,0),(1807,'2015-03-14 14:56:58','2015-08-29 14:46:08',1,30003570,0,0,3,5,11,10,0,0,0,0,0,0,0,0,0,0,0,2,9,24,0,0,168,0),(1808,'2015-03-14 14:56:58','2015-08-29 14:46:08',1,30045336,382,13,46,1,7,1,56,7,7,8,15,26,1,7,17,31,6,0,0,11,6,91,13,0),(1809,'2015-03-14 14:56:58','2015-08-29 14:46:08',1,30023410,205,311,322,340,308,238,305,259,323,270,220,320,415,355,393,444,335,289,350,474,357,246,257,0),(1810,'2015-03-14 14:56:58','2015-08-29 14:46:08',1,30004880,329,132,1,10,81,5,0,493,0,0,0,0,0,84,0,0,162,0,0,78,0,0,0,0),(1811,'2015-03-14 14:56:58','2015-08-29 14:46:08',1,30002548,417,306,241,408,467,366,266,69,554,436,594,337,275,602,479,438,268,216,521,630,329,320,344,0),(1812,'2015-03-14 14:56:58','2015-08-29 14:46:08',1,30001672,150,82,122,222,182,88,114,161,279,226,170,148,158,239,245,308,411,299,132,182,310,245,228,0),(1813,'2015-03-14 14:56:58','2015-08-29 14:46:08',1,30005202,50,56,53,61,41,37,18,19,13,15,171,18,70,34,96,96,57,50,81,52,94,54,82,0),(1814,'2015-03-14 14:56:58','2015-08-29 14:46:08',1,30003662,0,0,0,0,0,0,96,122,0,0,0,0,0,0,0,0,11,0,0,0,0,0,0,0),(1815,'2015-03-14 14:56:58','2015-08-29 14:46:08',1,30003337,0,0,0,0,0,0,0,0,0,0,0,0,0,177,78,0,0,0,0,0,5,211,11,0),(1816,'2015-03-14 14:56:58','2015-08-29 14:46:08',1,30005082,0,0,0,0,0,0,27,27,164,0,7,34,3,2,2,6,6,37,0,0,68,28,26,0),(1817,'2015-03-14 14:56:58','2015-08-29 14:46:08',1,30045339,5,63,3,0,1,3,94,66,6,9,9,10,3,3,2,0,23,0,0,5,6,1,18,0),(1818,'2015-03-14 14:56:58','2015-08-29 14:46:08',1,30001430,60,264,213,399,388,98,137,62,62,154,172,98,137,54,55,148,118,17,50,48,169,183,23,0),(1819,'2015-03-14 14:56:58','2015-08-29 14:46:08',1,30003424,2,6,14,6,15,3,6,5,3,47,100,0,30,18,33,28,6,10,10,8,8,57,5,0),(1820,'2015-03-14 14:56:58','2015-08-29 14:46:08',1,30002769,7,0,33,2,2,20,45,0,32,3,2,3,81,46,5,0,7,103,12,78,24,21,53,0),(1821,'2015-03-14 14:56:58','2015-08-29 14:46:08',1,30002558,23,26,112,33,96,32,11,125,99,172,229,119,1,25,88,66,151,2,3,39,58,71,141,0),(1822,'2015-03-14 14:56:58','2015-08-29 14:46:08',1,30003045,43,70,50,145,114,76,22,102,38,146,102,0,52,149,133,114,37,14,154,160,147,152,130,0),(1823,'2015-03-14 14:56:58','2015-08-29 14:46:08',1,30003454,164,132,296,91,196,262,68,99,6,247,245,80,217,181,181,315,28,83,0,133,65,143,210,0),(1824,'2015-03-14 14:56:58','2015-08-29 14:46:08',1,30002412,75,3,106,1,0,8,17,0,0,0,7,59,1,0,0,0,0,5,0,98,43,22,0,0),(1825,'2015-03-14 14:56:58','2015-08-29 14:46:08',1,30002475,0,2,0,0,0,0,86,0,0,5,0,0,8,44,93,103,0,58,0,0,0,0,0,0),(1826,'2015-03-14 14:56:58','2015-03-14 14:56:58',1,30000980,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(1827,'2015-03-14 14:56:58','2015-08-29 14:46:08',1,30001942,0,139,69,8,0,0,0,0,0,0,0,0,0,0,0,0,0,0,88,9,0,0,0,0),(1828,'2015-03-14 14:56:58','2015-08-29 14:46:08',1,30003612,0,33,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,82,0),(1829,'2015-03-14 14:56:58','2015-03-14 14:56:58',1,30002845,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(1830,'2015-03-14 14:56:58','2015-08-29 14:46:08',1,30004388,339,304,820,484,581,68,46,320,393,455,808,819,409,45,218,591,91,0,41,213,219,725,660,0),(1831,'2015-03-14 14:56:58','2015-03-14 14:56:58',1,30004835,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(1832,'2015-03-14 14:56:58','2015-08-29 14:46:08',1,30001035,3,3,0,1,0,15,1,64,48,4,0,3,23,62,55,0,115,0,0,25,0,12,24,0),(1833,'2015-03-14 14:56:58','2015-08-29 14:46:08',1,30000676,0,0,0,0,0,0,0,0,10,47,0,0,0,0,0,0,46,0,3,7,8,17,0,0),(1834,'2015-03-14 14:56:58','2015-08-29 14:46:08',1,30003413,116,201,37,200,174,124,244,123,89,97,130,158,69,141,151,148,175,58,193,201,300,241,316,0),(1835,'2015-03-14 14:56:58','2015-08-29 14:46:08',1,30002810,8,5,80,18,19,5,4,5,0,7,22,53,5,7,33,43,44,0,6,4,5,0,45,0),(1836,'2015-03-14 14:56:58','2015-08-29 14:46:08',1,30002969,117,88,270,247,178,18,57,128,121,174,39,61,119,209,221,119,290,16,188,315,93,542,431,0),(1837,'2015-03-14 14:56:58','2015-08-29 14:46:08',1,30033410,1,7,0,6,11,21,93,0,15,11,0,12,0,36,36,0,11,8,44,33,0,38,0,0),(1838,'2015-03-14 14:56:58','2015-08-29 14:46:08',1,30001371,257,367,499,281,176,101,391,324,77,323,270,265,263,239,305,247,432,28,63,116,335,195,321,0),(1839,'2015-03-14 14:56:58','2015-08-29 14:46:08',1,30002742,0,0,0,24,52,0,0,76,0,81,81,0,9,8,26,36,14,45,105,63,5,0,35,0),(1840,'2015-03-14 14:56:58','2015-08-29 14:46:08',1,30003472,167,112,84,106,130,158,24,86,115,292,92,170,250,377,287,280,260,154,114,76,111,221,284,0),(1841,'2015-03-14 14:56:58','2015-08-29 14:46:08',1,30003078,0,1,61,60,31,4,3,15,1,6,11,14,5,0,3,3,3,3,99,152,6,35,179,0),(1842,'2015-03-14 14:56:58','2015-08-29 14:46:08',1,30003463,100,82,97,59,45,24,44,111,70,0,14,107,117,108,91,148,26,21,33,121,1,16,122,0),(1843,'2015-03-14 14:56:58','2015-08-29 14:46:08',1,30002640,146,113,129,110,143,95,194,224,56,45,41,111,99,98,135,89,101,18,15,126,44,42,152,0),(1844,'2015-03-14 14:56:58','2015-08-29 14:46:08',1,30003425,122,0,0,2,2,0,0,0,0,0,0,0,0,2,3,1,0,0,0,1,0,4,4,0),(1845,'2015-03-14 14:56:58','2015-08-29 14:46:08',1,30003419,121,193,41,21,3,180,54,71,99,131,125,25,117,150,163,113,48,0,46,124,100,83,54,0),(1846,'2015-03-14 14:56:58','2015-08-29 14:46:08',1,30004259,8,146,2,0,0,0,0,0,0,0,1,61,117,0,0,0,41,0,0,0,0,2,0,0),(1847,'2015-03-14 14:56:58','2015-08-29 14:46:08',1,30000203,219,0,29,9,1,72,98,55,71,9,11,46,2,0,0,0,0,0,0,0,1,0,0,0),(1848,'2015-03-14 14:56:58','2015-08-29 14:46:08',1,30003867,147,79,37,87,79,129,0,0,1,7,3,2,24,29,88,107,20,24,118,37,144,34,30,0),(1849,'2015-03-14 14:56:58','2015-08-29 14:46:08',1,30001233,182,26,89,22,32,15,0,51,0,209,299,0,0,57,78,65,0,0,0,0,0,0,2,0),(1850,'2015-03-14 14:56:58','2015-08-29 14:46:08',1,30003537,39,23,17,0,0,42,0,7,20,4,2,3,3,152,93,146,102,1,4,79,60,58,46,0),(1851,'2015-03-14 14:56:58','2015-08-29 14:46:08',1,30004033,0,0,0,0,0,0,0,0,0,450,649,0,0,0,0,0,0,0,0,0,0,0,0,0),(1852,'2015-03-14 14:56:58','2015-08-29 14:46:08',1,30001029,455,72,184,125,129,81,0,465,89,0,54,41,99,25,103,85,164,16,0,43,187,111,283,0),(1853,'2015-03-14 14:56:58','2015-08-29 14:46:08',1,30001736,20,2,70,15,10,15,111,79,102,75,45,32,13,64,63,63,14,1,12,63,57,113,4,0),(1854,'2015-03-14 14:56:58','2015-08-29 14:46:08',1,30004305,24,24,9,0,0,0,103,0,24,8,15,0,173,46,36,0,0,42,10,0,28,47,8,0),(1855,'2015-03-14 14:56:58','2015-08-29 14:46:08',1,30004603,0,3,0,0,0,0,3,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,3,0),(1856,'2015-03-14 14:56:58','2015-08-29 14:46:08',1,30002964,29,71,107,97,46,38,26,42,62,29,73,18,77,40,57,37,18,30,71,36,62,33,15,0),(1857,'2015-03-14 14:56:58','2015-08-29 14:46:08',1,30003842,107,32,21,115,106,4,0,0,0,78,73,0,13,13,31,52,0,34,38,5,20,33,6,0),(1858,'2015-03-14 14:56:58','2015-08-29 14:46:08',1,30000028,6,55,16,9,67,44,95,60,21,88,108,1,0,0,0,66,0,14,23,52,124,74,0,0),(1859,'2015-03-14 14:56:58','2015-08-29 14:46:08',1,30000091,15,7,1,25,25,72,1,0,6,1,1,5,13,0,0,0,34,0,54,0,6,0,26,0),(1860,'2015-03-14 14:56:58','2015-08-29 14:46:08',1,30000137,522,172,291,159,85,212,106,109,173,106,349,129,171,256,263,228,305,106,90,234,228,272,196,0),(1861,'2015-03-14 14:56:58','2015-08-29 14:46:08',1,30002730,22,0,0,111,77,0,0,0,2,0,81,2,28,0,0,26,0,0,6,6,0,0,0,0),(1862,'2015-03-14 14:56:58','2015-08-29 14:46:08',1,30003822,38,0,48,2,0,12,3,0,0,2,0,2,14,33,43,87,206,0,1,0,11,0,1,0),(1863,'2015-03-14 14:56:58','2015-08-29 14:46:08',1,30004986,0,18,158,0,25,5,9,67,0,157,243,24,2,5,0,0,16,9,62,57,14,0,87,0),(1864,'2015-03-14 14:56:58','2015-08-29 14:46:08',1,30002260,146,44,115,135,172,40,41,42,25,117,46,15,27,49,82,82,101,0,52,73,38,56,51,0),(1865,'2015-03-14 14:56:58','2015-08-29 14:46:08',1,30002673,297,227,205,82,167,49,47,44,43,61,77,143,328,57,104,182,118,18,4,197,79,314,157,0),(1866,'2015-03-14 14:56:58','2015-08-29 14:46:08',1,30004287,153,0,12,1,1,22,11,0,0,0,0,0,0,0,0,0,0,0,0,0,57,3,24,0),(1867,'2015-03-14 14:56:58','2015-08-29 14:46:08',1,30002095,3,71,7,0,0,6,2,17,8,0,1,6,19,4,5,10,68,5,16,5,12,24,9,0),(1868,'2015-03-14 14:56:58','2015-08-29 14:46:08',1,30003517,33,54,171,35,11,41,143,155,76,136,101,27,41,68,106,79,0,51,60,60,213,150,45,0),(1869,'2015-03-14 14:56:58','2015-08-29 14:46:08',1,30003033,64,83,39,20,23,106,9,13,81,43,43,51,60,53,74,111,63,24,35,21,52,54,26,0),(1870,'2015-03-14 14:56:58','2015-08-29 14:46:08',1,30001535,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,58,60,0,0,0,0,0,1,0),(1871,'2015-03-14 14:56:58','2015-08-29 14:46:08',1,30004182,212,181,157,0,86,279,79,61,101,0,0,0,0,0,0,0,0,0,48,52,0,0,57,0),(1872,'2015-03-14 14:56:58','2015-08-29 14:46:08',1,30001571,0,0,0,0,0,0,0,0,0,1,0,0,75,0,90,90,0,0,0,0,0,0,0,0),(1873,'2015-03-14 14:56:58','2015-08-29 14:46:08',1,30003365,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0),(1874,'2015-03-14 14:56:58','2015-03-14 14:56:58',1,30000437,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(1875,'2015-03-14 14:56:58','2015-08-29 14:46:08',1,30003825,28,11,75,33,27,45,6,8,6,5,1,3,21,5,36,41,27,0,12,5,22,24,5,0),(1876,'2015-03-14 14:56:58','2015-08-29 14:46:08',1,30003466,0,0,17,38,80,11,0,0,1,0,9,1,28,0,79,80,142,0,18,74,9,23,36,0),(1877,'2015-03-14 14:56:58','2015-08-29 14:46:08',1,30003381,77,4,16,100,6,36,165,88,16,43,40,9,79,39,69,126,12,45,151,17,41,31,141,0),(1878,'2015-03-14 14:56:58','2015-08-29 14:46:08',1,30000796,902,0,366,901,921,0,0,0,0,0,0,0,0,0,0,0,0,0,4,78,57,27,3,0),(1879,'2015-03-14 14:56:58','2015-08-29 14:46:08',1,30002060,41,123,0,5,86,1,3,17,1,11,29,32,36,6,1,2,15,7,2,0,15,20,14,0),(1880,'2015-03-14 14:56:58','2015-08-29 14:46:08',1,30003839,17,11,30,22,13,34,7,15,3,6,10,10,6,23,9,16,7,7,14,0,5,4,13,0),(1881,'2015-03-14 14:56:58','2015-08-29 14:46:08',1,30003408,131,77,116,0,37,66,51,62,215,61,145,152,22,363,247,143,16,7,12,68,82,22,123,0),(1882,'2015-03-14 14:56:58','2015-08-29 14:46:09',1,30003385,63,146,32,17,4,120,3,44,9,56,173,48,58,32,77,157,159,35,55,46,20,41,100,0),(1883,'2015-03-14 14:56:58','2015-08-29 14:46:09',1,30001023,3,135,0,0,0,5,0,21,0,0,0,1,15,86,87,24,0,2,15,1,0,5,17,0),(1884,'2015-03-14 14:56:58','2015-08-29 14:46:09',1,30004314,0,0,0,0,47,0,0,1,97,0,46,3,0,0,0,0,0,0,0,0,0,0,18,0),(1885,'2015-03-14 14:56:58','2015-08-29 14:46:09',1,30001985,0,0,0,3,0,0,0,0,0,0,21,53,0,0,0,0,0,5,2,0,5,53,0,0),(1886,'2015-03-14 14:56:58','2015-08-29 14:46:09',1,30001181,0,0,0,0,0,0,0,5,0,0,0,0,1,0,2,2,0,0,0,0,0,0,0,0),(1887,'2015-03-14 14:56:58','2015-08-29 14:46:09',1,30002369,84,10,0,11,11,0,19,645,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(1888,'2015-03-14 14:56:58','2015-08-29 14:46:09',1,30001252,0,11,0,0,0,0,0,0,0,7,16,18,9,0,6,6,0,0,0,0,0,9,0,0),(1889,'2015-03-14 14:56:58','2015-08-29 14:46:09',1,30005281,68,6,0,0,0,0,0,67,0,0,0,29,0,0,0,9,0,0,7,22,0,0,0,0),(1890,'2015-03-14 14:56:58','2015-08-29 14:46:09',1,30003392,117,77,86,27,31,118,96,142,15,289,220,107,87,49,154,208,211,138,65,94,203,160,63,0),(1891,'2015-03-14 14:56:58','2015-08-29 14:46:09',1,30002543,150,334,176,178,48,112,104,64,181,380,396,251,230,523,251,278,398,272,589,365,334,183,214,0),(1892,'2015-03-14 14:56:58','2015-08-29 14:46:09',1,30002085,0,2,0,7,19,125,0,20,38,47,33,19,11,56,112,75,17,16,33,91,6,6,47,0),(1893,'2015-03-14 14:56:58','2015-08-29 14:46:09',1,30003281,0,0,2,0,0,28,0,17,0,0,0,0,0,69,69,0,0,2,121,0,0,0,0,0),(1894,'2015-03-14 14:56:58','2015-08-29 14:46:09',1,30001769,0,29,10,3,0,0,68,0,6,70,107,240,7,226,362,309,443,6,6,42,145,347,379,0),(1895,'2015-03-14 14:56:58','2015-08-29 14:46:09',1,30002962,58,43,29,92,93,12,34,5,11,6,7,12,11,17,4,4,9,6,0,2,5,4,14,0),(1896,'2015-03-14 14:56:58','2015-08-29 14:46:09',1,30000559,7,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(1897,'2015-03-14 14:56:58','2015-03-14 14:56:58',1,30002598,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(1898,'2015-03-14 14:56:58','2015-03-14 14:56:58',1,30000666,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(1899,'2015-03-14 14:56:58','2015-08-29 14:46:09',1,30005103,0,0,0,63,0,0,0,48,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(1900,'2015-03-14 14:56:58','2015-08-29 14:46:09',1,30000856,111,326,151,0,0,0,20,143,79,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(1901,'2015-03-14 14:56:58','2015-08-29 14:46:09',1,30003192,0,89,100,0,0,0,0,3,77,147,71,0,8,4,4,0,0,0,0,48,0,0,0,0),(1902,'2015-03-14 14:56:58','2015-08-29 14:46:09',1,30004653,510,1240,1258,1900,1519,1057,810,284,47,284,302,34,140,42,75,78,299,43,34,129,145,463,583,0),(1903,'2015-03-14 14:56:58','2015-03-14 14:56:58',1,30004414,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(1904,'2015-03-14 14:56:58','2015-08-29 14:46:09',1,30004327,426,110,880,1235,1045,603,1239,900,378,89,68,120,112,166,246,400,392,203,220,212,358,133,525,0),(1905,'2015-03-14 14:56:58','2015-08-29 14:46:09',1,30004784,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,9,0,0,0,0,0,0,0,0),(1906,'2015-03-14 14:56:58','2015-08-29 14:46:09',1,30005184,0,0,0,0,0,0,307,112,0,0,26,354,0,516,635,373,41,0,0,0,0,103,0,0),(1907,'2015-03-14 14:56:58','2015-08-29 14:46:09',1,30000279,1047,59,307,552,763,547,276,296,248,214,94,0,0,8,2,0,0,242,72,239,26,20,9,0),(1908,'2015-03-14 14:56:58','2015-08-29 14:46:09',1,30003737,352,340,590,355,391,46,0,52,96,22,4,464,504,522,346,354,411,299,104,0,265,334,132,0),(1909,'2015-03-14 14:56:58','2015-08-29 14:46:09',1,30000578,161,108,34,174,113,78,95,84,83,173,92,520,10,11,3,10,0,141,2,3,149,317,257,0),(1910,'2015-03-14 14:56:58','2015-08-29 14:46:09',1,30000897,0,0,76,65,45,0,0,0,0,0,0,0,0,0,0,0,0,17,0,0,0,0,0,0),(1911,'2015-03-14 14:56:58','2015-03-14 14:56:58',1,30005183,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(1912,'2015-03-14 14:56:58','2015-03-14 14:56:58',1,30000416,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(1913,'2015-03-14 14:56:58','2015-03-14 14:56:58',1,30001635,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(1914,'2015-03-14 14:56:58','2015-08-29 14:46:09',1,30004929,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,20,35,0,0,0,0),(1915,'2015-03-14 14:56:58','2015-08-29 14:46:09',1,30000934,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(1916,'2015-03-14 14:56:58','2015-08-29 14:46:09',1,30002019,0,104,73,0,0,195,0,0,0,0,0,0,0,0,0,0,0,0,3,124,0,0,0,0),(1917,'2015-03-14 14:56:58','2015-08-29 14:46:09',1,30004032,0,108,42,40,45,0,0,0,441,689,625,542,131,335,552,749,553,0,0,102,229,9,713,0),(1918,'2015-03-14 14:56:58','2015-08-29 14:46:09',1,30000572,10,24,72,0,0,3,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(1919,'2015-03-14 14:56:58','2015-08-29 14:46:09',1,30000853,0,0,0,0,0,12,0,0,0,0,0,0,0,0,0,1,0,4,0,0,0,0,0,0),(1920,'2015-03-14 14:56:58','2015-08-29 14:46:09',1,30004757,0,0,0,0,0,0,0,0,23,17,13,18,0,1,4,4,5,0,0,20,0,0,537,0),(1921,'2015-03-14 14:56:58','2015-08-29 14:46:09',1,30001064,0,0,0,0,0,0,0,0,0,0,0,0,0,0,20,80,0,0,0,0,0,0,0,0),(1922,'2015-03-14 14:56:58','2015-08-29 14:46:09',1,30001906,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,3,0,0,0),(1923,'2015-03-14 14:56:58','2015-08-29 14:46:09',1,30003126,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,4,4,0,0,0),(1924,'2015-03-14 14:56:58','2015-03-14 14:56:58',1,30001801,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(1925,'2015-03-14 14:56:58','2015-08-29 14:46:09',1,30001087,0,0,0,0,0,0,0,0,0,9,11,7,2,12,9,13,92,0,0,0,0,0,0,0),(1926,'2015-03-14 14:56:58','2015-08-29 14:46:09',1,30004503,0,0,0,0,0,0,0,0,1,4,8,3,0,0,0,4,0,0,0,0,0,5,15,0),(1927,'2015-03-14 14:56:58','2015-08-29 14:46:09',1,30003751,0,0,14,69,49,63,53,73,9,8,36,29,6,24,43,29,18,0,26,8,169,180,30,0),(1928,'2015-03-14 14:56:58','2015-08-29 14:46:09',1,30004867,0,0,0,0,0,0,0,0,0,0,0,51,0,0,0,0,0,0,156,35,0,0,0,0),(1929,'2015-03-14 14:56:58','2015-08-29 14:46:09',1,30005187,7,0,0,0,11,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(1930,'2015-03-14 14:56:58','2015-08-29 14:46:09',1,30004652,0,3,107,0,0,0,0,0,0,0,0,17,0,0,0,0,0,0,0,0,0,0,9,0),(1931,'2015-03-14 14:56:58','2015-08-29 14:46:09',1,30000695,0,88,283,30,29,0,198,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(1932,'2015-03-14 14:56:58','2015-08-29 14:46:09',1,30000804,0,0,0,0,0,0,0,0,0,7,19,23,14,16,9,0,0,0,0,0,0,0,0,0),(1933,'2015-03-14 14:56:58','2015-08-29 14:46:09',1,30004013,0,0,0,0,0,3,0,0,0,0,0,0,21,0,0,0,10,0,0,0,0,0,0,0),(1934,'2015-03-14 14:56:58','2015-08-29 14:46:09',1,30000497,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,4,0,116,0,0),(1935,'2015-03-14 14:56:58','2015-08-29 14:46:09',1,30000810,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(1936,'2015-03-14 14:56:58','2015-08-29 14:46:09',1,30000754,0,9,0,20,23,17,6,43,0,71,47,138,0,11,52,209,52,0,90,182,64,60,1,0),(1937,'2015-03-14 14:56:58','2015-03-14 14:56:58',1,30000332,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(1938,'2015-03-14 14:56:58','2015-08-29 14:46:09',1,30002826,0,0,0,0,0,0,0,143,0,0,3,0,0,0,0,0,179,0,0,0,0,0,0,0),(1939,'2015-03-14 14:56:58','2015-08-29 14:46:09',1,30001171,0,0,8,12,0,0,0,0,0,0,0,0,27,0,0,0,0,0,0,0,0,0,0,0),(1940,'2015-03-14 14:56:58','2015-08-29 14:46:09',1,30000959,0,0,0,0,0,72,0,0,1,0,0,0,0,0,0,0,0,0,0,0,133,0,0,0),(1941,'2015-03-14 14:56:58','2015-08-29 14:46:09',1,30004507,0,0,0,0,0,0,44,0,0,0,0,0,0,0,0,0,2,0,0,0,183,20,0,0),(1942,'2015-03-14 14:56:58','2015-08-29 14:46:09',1,30000600,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,5,0,0,0),(1943,'2015-03-14 14:56:58','2015-08-29 14:46:09',1,30003269,0,0,20,105,92,0,0,4,23,30,63,55,17,27,64,46,60,0,0,0,0,0,0,0),(1944,'2015-03-14 14:56:58','2015-08-29 14:46:09',1,30002381,105,273,298,75,57,53,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(1945,'2015-03-14 14:56:58','2015-08-29 14:46:09',1,30001957,0,0,72,11,11,0,0,0,0,0,0,0,0,0,0,0,0,209,0,0,0,0,0,0),(1946,'2015-03-14 14:56:58','2015-08-29 14:46:09',1,30002152,0,0,0,0,0,0,0,0,0,0,0,0,98,72,20,0,0,41,0,0,0,0,135,0),(1947,'2015-03-14 14:56:58','2015-03-14 14:56:58',1,30000981,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(1948,'2015-03-14 14:56:58','2015-08-29 14:46:09',1,30004046,0,0,9,0,0,0,0,0,0,0,0,0,0,29,0,0,0,0,0,0,0,0,5,0),(1949,'2015-03-14 14:56:58','2015-08-29 14:46:09',1,30000913,0,0,2,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(1950,'2015-03-14 14:56:58','2015-08-29 14:46:09',1,30002320,733,325,480,173,227,344,874,320,0,0,0,0,41,1,0,0,0,0,0,0,0,0,0,0),(1951,'2015-03-14 14:56:58','2015-08-29 14:46:09',1,30001153,0,0,0,23,128,0,0,0,0,0,0,0,26,2,2,0,1,2,7,4,0,0,0,0),(1952,'2015-03-14 14:56:58','2015-03-14 14:56:58',1,30000500,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(1953,'2015-03-14 14:56:58','2015-08-29 14:46:09',1,30001888,54,0,0,49,67,54,0,5,54,6,42,86,136,0,0,8,124,39,102,37,52,45,22,0),(1954,'2015-03-14 14:56:58','2015-08-29 14:46:09',1,30000233,721,629,446,655,804,390,174,308,0,0,0,0,0,313,234,109,264,0,0,0,36,37,0,0),(1955,'2015-03-14 14:56:58','2015-08-29 14:46:09',1,30002221,41,14,7,21,24,564,102,29,124,9,13,0,0,191,79,154,0,29,91,70,42,0,168,0),(1956,'2015-03-14 14:56:58','2015-08-29 14:46:09',1,30003505,119,56,83,75,20,89,55,14,6,22,64,9,56,100,19,84,61,57,30,42,187,189,95,0),(1957,'2015-03-14 14:56:58','2015-08-29 14:46:09',1,30004276,115,587,558,0,0,9,60,112,119,502,958,105,16,140,229,252,102,0,355,422,6,85,37,0),(1958,'2015-03-14 14:56:58','2015-08-29 14:46:09',1,30003473,47,76,93,109,101,7,36,26,153,135,132,77,67,78,188,158,56,30,90,97,114,144,28,0),(1959,'2015-03-14 14:56:58','2015-08-29 14:46:09',1,30003002,15,92,20,45,26,12,15,34,0,0,0,0,0,6,3,27,0,21,13,14,29,3,45,0),(1960,'2015-03-14 14:56:58','2015-08-29 14:46:09',1,30003938,0,0,1,0,0,0,0,0,0,0,0,0,48,0,0,0,0,0,0,0,0,0,142,0),(1961,'2015-03-14 14:56:58','2015-08-29 14:46:09',1,30001049,0,0,0,0,1,0,0,5,0,0,0,0,0,0,0,0,0,0,0,0,16,67,0,0),(1962,'2015-03-14 14:56:58','2015-08-29 14:46:09',1,30000044,155,7,8,0,0,1,8,0,9,51,44,0,81,58,42,9,6,107,73,2,57,80,9,0),(1963,'2015-03-14 14:56:58','2015-08-29 14:46:09',1,30002651,1,6,0,0,0,26,0,0,4,3,2,146,29,0,0,38,0,0,0,0,10,0,0,0),(1964,'2015-03-14 14:56:58','2015-08-29 14:46:09',1,30003541,12,0,54,2,7,26,0,0,1,0,0,30,0,0,0,58,19,0,27,69,0,11,17,0),(1965,'2015-03-14 14:56:58','2015-08-29 14:46:09',1,30001256,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,9,0,0,0),(1966,'2015-03-14 14:56:58','2015-08-29 14:46:09',1,30002643,217,133,217,149,157,37,39,130,261,283,154,102,181,197,175,184,175,104,107,69,86,110,120,0),(1967,'2015-03-14 14:56:58','2015-08-29 14:46:09',1,30003599,0,0,0,60,5,6,55,14,0,0,0,37,0,15,40,43,20,0,0,0,0,0,0,0),(1968,'2015-03-14 14:56:58','2015-08-29 14:46:09',1,30002321,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,83,41,0),(1969,'2015-03-14 14:56:58','2015-08-29 14:46:09',1,30002881,0,67,0,0,0,85,0,15,0,0,0,0,0,4,0,0,12,0,0,0,0,0,0,0),(1970,'2015-03-14 14:56:58','2015-08-29 14:46:09',1,30002827,0,0,0,0,0,0,0,0,0,0,0,0,0,39,39,0,0,0,0,0,0,0,0,0),(1971,'2015-03-14 14:56:58','2015-08-29 14:46:09',1,30003718,28,28,3,11,8,7,111,116,164,108,87,10,23,19,78,95,270,8,106,122,151,328,131,0),(1972,'2015-03-14 14:56:58','2015-08-29 14:46:09',1,30003276,0,32,0,0,0,25,11,3,0,0,0,0,0,2,2,1,0,0,0,121,0,0,0,0),(1973,'2015-03-14 14:56:58','2015-08-29 14:46:09',1,30004043,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,7,0),(1974,'2015-03-14 14:56:58','2015-08-29 14:46:09',1,30002423,0,0,0,121,0,0,0,0,1,0,6,16,0,0,0,0,0,0,0,0,0,2,6,0),(1975,'2015-03-14 14:56:58','2015-08-29 14:46:09',1,30004821,0,0,0,0,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,58,19,0,0),(1976,'2015-03-14 14:56:58','2015-08-29 14:46:09',1,30002408,207,38,27,123,121,6,148,63,43,385,85,9,24,58,48,31,0,107,66,103,0,38,6,0),(1977,'2015-03-14 14:56:58','2015-08-29 14:46:09',1,30005030,0,1,14,0,0,29,0,26,2,6,0,0,1,11,49,40,5,1,44,7,0,0,169,0),(1978,'2015-03-14 14:56:58','2015-08-29 14:46:09',1,30000050,9,60,230,4,4,0,0,470,31,0,0,0,0,0,0,0,0,0,231,167,0,0,0,0),(1979,'2015-03-14 14:56:58','2015-08-29 14:46:09',1,30001709,7,197,59,33,23,53,73,152,67,44,100,14,146,33,36,105,60,0,26,32,0,165,4,0),(1980,'2015-03-14 14:56:58','2015-08-29 14:46:09',1,30004263,76,0,32,0,0,0,2,0,0,0,15,48,0,0,0,0,0,0,0,0,0,0,0,0),(1981,'2015-03-14 14:56:58','2015-03-14 14:56:58',1,30002628,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(1982,'2015-03-14 14:56:58','2015-08-29 14:46:09',1,30002345,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,5,0,0,0,0,0,0,0,0),(1983,'2015-03-14 14:56:58','2015-08-29 14:46:09',1,30000226,3,0,9,18,34,43,104,32,0,0,0,0,9,0,0,0,10,0,0,0,0,0,80,0),(1984,'2015-03-14 14:56:58','2015-08-29 14:46:09',1,30001344,0,0,0,0,0,17,0,0,0,0,0,0,0,0,0,0,0,76,0,0,0,0,0,0),(1985,'2015-03-14 14:56:58','2015-03-14 14:56:58',1,30000418,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(1986,'2015-03-14 14:56:58','2015-08-29 14:46:09',1,30000495,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,24,0,0,0,0,0,0,0),(1987,'2015-03-14 14:56:58','2015-08-29 14:46:09',1,30004254,61,114,116,0,1,26,18,0,84,91,64,0,0,67,43,26,13,1,41,0,67,33,7,0),(1988,'2015-03-14 14:56:58','2015-08-29 14:46:09',1,30043410,16,111,0,0,11,3,123,42,44,27,14,37,26,137,94,51,99,110,44,83,96,322,1,0),(1989,'2015-03-14 14:56:58','2015-08-29 14:46:09',1,30003442,54,139,85,65,81,72,128,64,217,62,59,99,120,60,49,245,132,40,163,86,81,168,17,0),(1990,'2015-03-14 14:56:58','2015-08-29 14:46:09',1,30004110,59,119,60,7,76,15,108,35,20,37,67,35,216,92,98,201,43,40,12,100,136,98,58,0),(1991,'2015-03-14 14:56:58','2015-08-29 14:46:09',1,30003691,72,158,31,3,46,189,231,8,0,90,81,19,8,157,25,8,110,221,45,103,171,45,18,0),(1992,'2015-03-14 14:56:58','2015-08-29 14:46:09',1,30003906,0,5,37,94,16,119,33,0,0,0,0,0,93,0,0,0,138,0,52,63,7,41,4,0),(1993,'2015-03-14 14:56:58','2015-08-29 14:46:09',1,30002335,0,0,0,0,0,15,0,0,899,241,0,173,597,561,431,160,0,274,270,313,152,0,0,0),(1994,'2015-03-14 14:56:58','2015-08-29 14:46:09',1,30003234,84,140,262,2,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(1995,'2015-03-14 14:56:58','2015-08-29 14:46:09',1,30002316,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,50,0,0,0),(1996,'2015-03-14 14:56:58','2015-08-29 14:46:09',1,30004980,10,14,19,17,24,15,61,5,4,6,11,37,79,0,0,0,21,27,31,9,1,19,7,0),(1997,'2015-03-14 14:56:58','2015-03-14 14:56:58',1,30005101,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(1998,'2015-03-14 14:56:58','2015-08-29 14:46:09',1,30002082,11,0,0,76,77,0,0,46,20,27,7,13,17,15,6,2,27,104,42,31,15,12,30,0),(1999,'2015-03-14 14:56:58','2015-08-29 14:46:09',1,30003382,102,5,251,46,0,37,0,26,43,57,87,49,5,99,49,13,24,59,53,25,28,73,207,0),(2000,'2015-03-14 14:56:58','2015-08-29 14:46:09',1,30002677,58,27,72,5,36,65,61,122,55,44,46,151,95,62,93,216,116,4,76,82,69,103,48,0),(2001,'2015-03-14 14:56:58','2015-08-29 14:46:09',1,30004732,0,0,11,0,0,0,0,0,0,15,1,0,0,239,35,0,82,21,0,58,76,56,75,0),(2002,'2015-03-14 14:56:58','2015-08-29 14:46:09',1,30002898,39,69,0,94,215,5,0,0,0,0,0,0,14,1,58,100,21,0,0,0,0,86,204,0),(2003,'2015-03-14 14:56:58','2015-08-29 14:46:09',1,30000227,0,59,0,0,0,37,0,0,55,25,24,0,22,79,172,144,0,22,0,27,8,36,3,0),(2004,'2015-03-14 14:56:58','2015-08-29 14:46:09',1,30000484,252,0,0,32,0,0,2,0,83,109,60,197,79,62,208,289,143,0,45,57,0,258,881,0),(2005,'2015-03-14 14:56:58','2015-08-29 14:46:09',1,30002156,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,4,0,0,0,0),(2006,'2015-03-14 14:56:58','2015-08-29 14:46:09',1,30003118,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,23,0,0,0,0,0,0,0),(2007,'2015-03-14 14:56:58','2015-08-29 14:46:09',1,30000809,0,0,0,0,0,49,11,7,3,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(2008,'2015-03-14 14:56:58','2015-03-14 14:56:58',1,30001638,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(2009,'2015-03-14 14:56:58','2015-03-14 14:56:58',1,30001487,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(2010,'2015-03-14 14:56:58','2015-08-29 14:46:09',1,30001544,0,0,38,0,0,0,0,0,2,0,2,2,104,95,86,0,3,0,44,0,265,0,0,0),(2011,'2015-03-14 14:56:58','2015-08-29 14:46:09',1,30002891,113,220,249,222,234,0,211,242,32,0,0,0,0,43,19,0,306,0,0,0,135,1,31,0),(2012,'2015-03-14 14:56:58','2015-08-29 14:46:09',1,30001148,0,4,0,0,0,0,11,17,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(2013,'2015-03-14 14:56:58','2015-08-29 14:46:09',1,30004303,21,1,1,23,14,58,128,8,21,1,1,0,8,0,0,0,0,0,0,0,0,13,19,0),(2014,'2015-03-14 14:56:58','2015-08-29 14:46:09',1,30023489,44,57,28,63,15,48,0,64,36,32,28,57,45,239,71,54,104,1,30,0,50,20,110,0),(2015,'2015-03-14 14:56:58','2015-08-29 14:46:09',1,30002663,105,165,187,48,68,140,120,163,151,199,303,103,208,357,197,181,398,139,136,221,226,126,130,0),(2016,'2015-03-14 14:56:58','2015-08-29 14:46:09',1,30000023,26,0,28,10,28,21,19,33,30,20,148,0,12,0,18,30,87,19,157,73,127,34,0,0),(2017,'2015-03-14 14:56:58','2015-08-29 14:46:09',1,30004058,0,0,0,0,0,87,0,0,11,30,30,0,105,0,68,81,0,0,0,0,0,0,0,0),(2018,'2015-03-14 14:56:58','2015-08-29 14:46:09',1,30002630,16,8,22,10,5,36,19,14,3,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(2019,'2015-03-14 14:56:58','2015-03-14 14:56:58',1,30001637,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(2020,'2015-03-14 14:56:58','2015-08-29 14:46:09',1,30000478,9,0,83,0,0,193,0,0,125,0,0,0,0,0,0,0,119,0,0,92,0,0,0,0),(2021,'2015-03-14 14:56:58','2015-08-29 14:46:09',1,30003826,32,5,22,7,12,0,8,8,0,13,8,3,4,4,6,3,7,0,1,0,9,16,20,0),(2022,'2015-03-14 14:56:58','2015-08-29 14:46:09',1,30002526,400,414,164,434,228,487,180,284,411,419,331,380,532,560,409,638,632,337,577,632,710,641,576,0),(2023,'2015-03-14 14:56:58','2015-08-29 14:46:09',1,30003036,418,758,505,365,309,395,199,466,413,502,538,499,787,1099,1197,1044,735,785,672,868,911,670,859,0),(2024,'2015-03-14 14:56:58','2015-08-29 14:46:09',1,30003394,106,91,140,148,245,116,23,149,355,62,80,200,128,190,202,183,118,123,51,128,46,52,89,0),(2025,'2015-03-14 14:56:58','2015-08-29 14:46:09',1,30003420,226,218,80,20,72,164,33,55,227,199,169,256,33,154,164,151,161,40,79,121,75,40,103,0),(2026,'2015-03-14 14:56:58','2015-08-29 14:46:09',1,30002090,4,0,0,7,10,3,0,1,12,12,32,33,8,13,3,10,14,5,4,11,7,22,24,0),(2027,'2015-03-14 14:56:58','2015-08-29 14:46:09',1,30002734,511,382,455,254,241,293,232,440,290,318,585,412,558,600,595,1170,615,372,470,412,521,658,484,0),(2028,'2015-03-14 14:56:58','2015-08-29 14:46:09',1,30000168,111,504,340,198,90,299,115,197,221,151,396,283,294,508,321,339,412,162,192,247,344,405,242,0),(2029,'2015-03-14 14:56:58','2015-08-29 14:46:09',1,30002180,12,6,0,20,24,16,9,0,0,0,0,0,0,0,0,4,0,0,0,0,0,0,0,0),(2030,'2015-03-14 14:56:58','2015-08-29 14:46:09',1,30003467,26,2,0,0,0,0,0,0,0,0,0,0,0,0,3,3,0,0,0,0,3,0,0,0),(2031,'2015-03-14 14:56:58','2015-03-14 14:56:58',1,30000398,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(2032,'2015-03-14 14:56:58','2015-08-29 14:46:09',1,30000219,335,59,58,253,133,15,191,0,0,0,0,168,204,0,35,43,0,42,76,333,0,0,0,0),(2033,'2015-03-14 14:56:58','2015-08-29 14:46:09',1,30003710,38,0,0,0,0,0,0,0,0,0,31,0,17,0,4,10,11,6,17,129,6,0,18,0),(2034,'2015-03-14 14:56:58','2015-08-29 14:46:09',1,30001364,702,547,408,507,455,561,326,368,423,308,443,397,689,736,608,471,335,316,575,372,592,679,546,0),(2035,'2015-03-14 14:56:58','2015-08-29 14:46:09',1,30003095,5,5,19,0,24,16,0,3,29,0,0,9,64,1,5,9,120,43,78,38,6,13,0,0),(2036,'2015-03-14 14:56:58','2015-08-29 14:46:09',1,30000199,0,0,0,2,3,0,47,2,108,95,18,13,6,16,8,8,0,49,7,90,0,0,0,0),(2037,'2015-03-14 14:56:58','2015-08-29 14:46:09',1,30000017,0,0,0,9,0,69,0,32,48,0,0,0,0,0,0,0,0,0,5,2,0,0,2,0),(2038,'2015-03-14 14:56:58','2015-08-29 14:46:09',1,30001852,0,0,0,0,0,0,0,0,3,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(2039,'2015-03-14 14:56:58','2015-08-29 14:46:09',1,30004161,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,145,0,0),(2040,'2015-03-14 14:56:58','2015-08-29 14:46:09',1,30004197,3,11,6,0,0,5,12,39,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(2041,'2015-03-14 14:56:58','2015-03-14 14:56:58',1,30001775,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(2042,'2015-03-14 14:56:58','2015-03-14 14:56:58',1,30000906,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(2043,'2015-03-14 14:56:58','2015-08-29 14:46:09',1,30002021,0,113,215,121,106,0,1,0,2,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(2044,'2015-03-14 14:56:58','2015-08-29 14:46:09',1,30004718,0,0,0,0,0,0,0,4,4,0,0,0,5,56,64,57,25,27,0,0,0,0,0,0),(2045,'2015-03-14 14:56:58','2015-08-29 14:46:09',1,30003711,42,0,70,0,0,137,3,364,47,313,310,21,181,77,260,336,182,3,1,13,282,227,21,0),(2046,'2015-03-14 14:56:58','2015-03-14 14:56:58',1,30001606,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(2047,'2015-03-14 14:56:58','2015-08-29 14:46:09',1,30000835,0,0,0,0,0,0,0,0,0,13,14,0,0,0,0,0,0,0,0,0,0,0,0,0),(2048,'2015-03-14 14:56:58','2015-08-29 14:46:09',1,30000850,7,26,12,21,19,254,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(2049,'2015-03-14 14:56:58','2015-08-29 14:46:09',1,30000675,127,911,520,916,726,80,0,0,0,0,4,21,0,3,5,2,0,0,0,0,8,10,7,0),(2050,'2015-03-14 14:56:58','2015-08-29 14:46:09',1,30002128,0,101,18,40,45,11,0,211,0,0,0,0,11,0,0,0,17,0,0,0,0,0,118,0),(2051,'2015-03-14 14:56:58','2015-08-29 14:46:09',1,30001186,0,0,0,170,171,0,0,0,0,0,0,0,173,19,14,176,221,121,229,196,21,49,26,0),(2052,'2015-03-14 14:56:58','2015-08-29 14:46:09',1,30003213,16,2,372,18,72,18,0,15,26,0,0,12,0,9,46,96,122,0,0,0,0,0,116,0),(2053,'2015-03-14 14:56:58','2015-08-29 14:46:09',1,30001853,0,0,0,0,0,0,0,0,15,92,92,0,0,0,0,1,0,0,0,0,55,0,0,0),(2054,'2015-03-14 14:56:58','2015-08-29 14:46:09',1,30002878,0,0,0,0,50,23,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(2055,'2015-03-14 14:56:58','2015-08-29 14:46:09',1,30001041,0,56,37,118,340,7,0,0,70,68,112,209,66,34,108,132,339,2,4,38,303,72,41,0),(2056,'2015-03-14 14:56:58','2015-08-29 14:46:09',1,30003949,0,3,0,4,4,0,0,0,12,130,131,0,0,32,254,402,93,0,0,0,21,7,30,0),(2057,'2015-03-14 14:56:58','2015-08-29 14:46:09',1,30003161,26,42,316,158,195,727,91,241,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(2058,'2015-03-14 14:56:58','2015-08-29 14:46:09',1,30003703,0,30,69,4,4,7,60,0,0,0,0,0,0,0,0,0,133,0,0,0,0,0,0,0),(2059,'2015-03-14 14:56:58','2015-08-29 14:46:09',1,30003367,2,0,0,0,0,0,132,22,0,0,0,0,0,0,0,0,0,0,0,1,71,0,160,0),(2060,'2015-03-14 14:56:58','2015-08-29 14:46:09',1,30002476,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,27,59,20,0,0,0,0),(2061,'2015-03-14 14:56:58','2015-08-29 14:46:09',1,30001183,0,37,35,158,299,0,87,9,60,136,209,278,667,160,138,218,11,133,350,407,124,135,135,0),(2062,'2015-03-14 14:56:58','2015-08-29 14:46:09',1,30001227,0,0,0,0,0,6,0,0,7,3,3,4,0,0,0,0,0,5,1,0,5,9,4,0),(2063,'2015-03-14 14:56:58','2015-08-29 14:46:09',1,30003772,68,24,95,213,97,58,90,9,0,12,114,96,58,326,411,388,62,174,270,272,166,38,88,0),(2064,'2015-03-14 14:56:58','2015-08-29 14:46:09',1,30004892,10,2,16,0,3,0,163,0,145,181,237,201,255,246,105,403,290,100,63,69,203,271,397,0),(2065,'2015-03-14 14:56:58','2015-08-29 14:46:09',1,30004945,0,0,0,0,0,0,0,81,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(2066,'2015-03-14 14:56:58','2015-08-29 14:46:09',1,30004876,169,542,91,137,166,41,141,165,0,31,155,19,0,64,45,59,47,0,0,0,5,3,8,0),(2067,'2015-03-14 14:56:58','2015-03-14 14:56:58',1,30000338,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(2068,'2015-03-14 14:56:58','2015-08-29 14:46:09',1,30000778,0,0,0,0,0,0,34,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(2069,'2015-03-14 14:56:58','2015-08-29 14:46:09',1,30001002,62,23,10,46,35,9,75,62,163,99,86,145,80,88,80,98,83,52,28,52,141,74,31,0),(2070,'2015-03-14 14:56:58','2015-08-29 14:46:09',1,30005113,322,0,60,0,12,5,173,391,44,72,24,23,39,17,14,9,15,0,7,22,15,10,0,0),(2071,'2015-03-14 14:56:58','2015-08-29 14:46:09',1,30001802,0,0,0,0,0,88,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(2072,'2015-03-14 14:56:58','2015-08-29 14:46:09',1,30003155,0,0,0,0,0,234,57,127,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(2073,'2015-03-14 14:56:58','2015-03-14 14:56:58',1,30002853,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(2074,'2015-03-14 14:56:58','2015-08-29 14:46:09',1,30000213,172,3,0,29,30,22,0,41,103,18,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(2075,'2015-03-14 14:56:58','2015-08-29 14:46:09',1,30004696,96,108,92,85,155,89,0,129,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(2076,'2015-03-14 14:56:58','2015-08-29 14:46:09',1,30001987,0,0,0,0,0,0,9,4,0,0,0,0,3,1,0,0,0,0,92,1,0,0,18,0),(2077,'2015-03-14 14:56:58','2015-08-29 14:46:09',1,30004793,40,0,0,967,708,644,70,822,0,0,0,0,0,165,127,0,279,0,0,0,16,189,201,0),(2078,'2015-03-14 14:56:58','2015-08-29 14:46:09',1,30001848,54,43,181,72,60,47,37,76,405,769,710,200,350,571,601,552,313,78,384,366,456,85,443,0),(2079,'2015-03-14 14:56:58','2015-03-14 14:56:58',1,30001607,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(2080,'2015-03-14 14:56:58','2015-08-29 14:46:09',1,30004962,514,66,290,377,591,158,1458,512,30,88,345,310,241,6,0,0,51,616,301,114,133,346,81,0),(2081,'2015-03-14 14:56:58','2015-08-29 14:46:09',1,30002301,0,84,0,0,0,5,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,2,0),(2082,'2015-03-14 14:56:58','2015-08-29 14:46:09',1,30001036,10,0,31,15,11,87,61,64,223,113,140,169,242,117,91,193,340,31,148,68,71,81,96,0),(2083,'2015-03-14 14:56:58','2015-08-29 14:46:09',1,30004721,0,0,7,19,0,9,0,1,0,0,0,21,13,114,72,29,48,27,26,79,0,46,21,0),(2084,'2015-03-14 14:56:58','2015-08-29 14:46:09',1,30004631,78,48,109,38,13,79,0,0,0,5,5,53,0,0,0,0,0,3,22,0,8,0,0,0),(2085,'2015-03-14 14:56:58','2015-08-29 14:46:09',1,30001569,0,0,0,0,42,0,0,0,0,1,0,55,4,0,0,0,138,0,0,0,0,0,0,0),(2086,'2015-03-14 14:56:58','2015-08-29 14:46:09',1,30003184,0,0,0,0,3,0,0,0,0,54,105,0,0,56,96,103,0,0,4,0,0,0,258,0),(2087,'2015-03-14 14:56:58','2015-08-29 14:46:09',1,30004534,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,93,47,0),(2088,'2015-03-14 14:56:58','2015-08-29 14:46:09',1,30003133,0,0,0,2,66,0,0,0,116,0,0,0,61,59,20,64,1,0,68,152,0,0,0,0),(2089,'2015-03-14 14:56:58','2015-08-29 14:46:09',1,30003636,0,0,0,0,0,0,0,0,136,48,0,0,0,0,0,0,0,0,0,0,105,0,3,0),(2090,'2015-03-14 14:56:58','2015-03-14 14:56:58',1,30000537,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(2091,'2015-03-14 14:56:58','2015-08-29 14:46:09',1,30004854,0,0,0,0,0,0,64,4,193,294,237,100,41,146,167,185,189,0,66,182,54,81,9,0),(2092,'2015-03-14 14:56:58','2015-08-29 14:46:09',1,30000690,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,11,0,0,0,0,0,0,0),(2093,'2015-03-14 14:56:58','2015-08-29 14:46:09',1,30004664,0,0,100,0,0,0,0,0,0,0,0,0,0,31,1,0,0,0,0,0,0,0,0,0),(2094,'2015-03-14 14:56:58','2015-08-29 14:46:09',1,30004697,0,0,0,0,0,0,0,0,0,12,8,0,0,0,0,0,0,0,0,0,0,0,0,0),(2095,'2015-03-14 14:56:58','2015-03-14 14:56:58',1,30001501,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(2096,'2015-03-14 14:56:58','2015-03-14 14:56:58',1,30003101,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(2097,'2015-03-14 14:56:58','2015-08-29 14:46:09',1,30000460,0,6,12,1,0,0,49,0,143,103,136,194,151,83,84,52,16,1,410,125,52,128,387,0),(2098,'2015-03-14 14:56:58','2015-08-29 14:46:09',1,30002861,0,32,0,0,0,0,0,0,5,0,0,0,0,0,0,0,0,0,0,0,0,31,0,0),(2099,'2015-03-14 14:56:58','2015-08-29 14:46:09',1,30004536,0,0,95,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,79,0,0,0),(2100,'2015-03-14 14:56:58','2015-08-29 14:46:09',1,30000310,110,80,303,132,21,306,47,141,218,39,59,109,169,262,189,130,29,0,42,0,361,135,0,0),(2101,'2015-03-14 14:56:58','2015-03-14 14:56:58',1,30001517,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(2102,'2015-03-14 14:56:58','2015-08-29 14:46:09',1,30003713,15,0,0,5,5,7,0,0,0,46,47,0,83,0,0,0,42,48,36,14,73,0,148,0),(2103,'2015-03-14 14:56:58','2015-08-29 14:46:09',1,30004061,0,0,0,0,0,13,0,7,0,0,0,0,0,0,0,0,0,0,0,0,4,103,0,0),(2104,'2015-03-14 14:56:58','2015-08-29 14:46:09',1,30001982,11,0,0,17,10,1,0,1,143,4,3,52,44,69,10,13,0,4,0,5,13,0,98,0),(2105,'2015-03-14 14:56:58','2015-08-29 14:46:09',1,30004598,46,331,288,82,73,797,49,119,10,62,128,381,8,11,0,0,84,35,107,27,17,129,0,0),(2106,'2015-03-14 14:56:58','2015-08-29 14:46:09',1,30000305,13,249,0,0,78,15,317,288,160,172,217,1180,0,164,222,97,180,672,598,540,697,768,139,0),(2107,'2015-03-14 14:56:58','2015-08-29 14:46:09',1,30001348,0,89,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(2108,'2015-03-14 14:56:58','2015-08-29 14:46:09',1,30000545,4,7,13,9,3,5,0,17,0,0,0,0,0,0,0,0,0,64,0,0,286,39,0,0),(2109,'2015-03-14 14:56:58','2015-03-14 14:56:58',1,30000570,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(2110,'2015-03-14 14:56:58','2015-08-29 14:46:09',1,30004523,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0),(2111,'2015-03-14 14:56:58','2015-08-29 14:46:09',1,30002020,0,24,14,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(2112,'2015-03-14 14:56:58','2015-08-29 14:46:09',1,30001811,92,40,106,25,78,117,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,2,21,0),(2113,'2015-03-14 14:56:58','2015-08-29 14:46:09',1,30003777,224,0,103,3,58,2,0,0,146,390,491,304,240,194,264,504,259,132,129,98,110,118,38,0),(2114,'2015-03-14 14:56:58','2015-08-29 14:46:09',1,30005072,0,0,0,49,0,0,34,0,0,0,0,5,5,0,0,1,0,0,0,0,0,0,9,0),(2115,'2015-03-14 14:56:58','2015-08-29 14:46:09',1,30002204,73,61,145,47,3,5,28,6,21,20,3,5,78,47,115,115,6,19,54,24,146,197,223,0),(2116,'2015-03-14 14:56:58','2015-08-29 14:46:09',1,30001698,0,88,11,89,43,106,1,3,11,256,268,242,32,197,167,96,56,8,48,495,1220,1083,1480,0),(2117,'2015-03-14 14:56:58','2015-08-29 14:46:09',1,30003544,0,0,0,2,2,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,19,0,0),(2118,'2015-03-14 14:56:58','2015-08-29 14:46:09',1,30002674,13,57,167,24,46,42,14,57,118,301,209,79,85,279,322,277,218,53,54,185,130,174,38,0),(2119,'2015-03-14 14:56:58','2015-08-29 14:46:09',1,30003844,2,62,18,42,45,11,0,49,1,0,0,0,0,0,0,0,3,0,36,2,3,9,60,0),(2120,'2015-03-14 14:56:58','2015-08-29 14:46:09',1,30005273,4,23,21,0,23,0,17,6,43,22,12,1,17,15,0,0,0,0,1,8,14,0,8,0),(2121,'2015-03-14 14:56:58','2015-08-29 14:46:09',1,30004085,22,80,136,200,139,104,49,105,1,146,235,110,75,36,23,32,158,151,110,164,240,180,34,0),(2122,'2015-03-14 14:56:58','2015-08-29 14:46:09',1,30000107,73,127,21,33,34,21,22,13,42,83,107,3,70,115,196,139,67,0,55,17,56,127,159,0),(2123,'2015-03-14 14:56:58','2015-08-29 14:46:09',1,30003076,1,189,51,8,1,11,13,0,127,175,1,98,26,197,62,2,12,10,27,19,143,26,7,0),(2124,'2015-03-14 14:56:58','2015-08-29 14:46:09',1,30003805,14,9,147,163,57,34,14,0,62,0,2,68,0,9,16,20,80,0,0,7,43,10,16,0),(2125,'2015-03-14 14:56:58','2015-08-29 14:46:09',1,30004123,113,98,160,66,15,196,2,201,32,242,258,195,62,36,42,112,11,1,82,24,298,299,112,0),(2126,'2015-03-14 14:56:58','2015-08-29 14:46:09',1,30004119,0,0,0,59,48,59,119,2,3,0,0,0,20,64,167,153,0,0,0,0,1,64,65,0),(2127,'2015-03-14 14:56:58','2015-08-29 14:46:09',1,30005282,20,51,1,35,28,7,0,79,5,31,34,22,32,82,90,73,127,0,12,0,0,0,1,0),(2128,'2015-03-14 14:56:58','2015-08-29 14:46:09',1,30005240,0,0,0,7,7,3,0,0,9,0,0,102,15,1,3,3,0,0,0,1,0,0,9,0),(2129,'2015-03-14 14:56:58','2015-08-29 14:46:09',1,30000839,116,0,0,0,0,0,0,0,0,0,1,0,248,0,23,58,2,31,20,132,102,710,69,0),(2130,'2015-03-14 14:56:58','2015-08-29 14:46:09',1,30002620,0,0,0,0,0,0,0,16,0,0,0,0,73,93,283,361,16,113,13,46,47,73,74,0),(2131,'2015-03-14 14:56:58','2015-08-29 14:46:09',1,30000464,267,47,273,219,312,166,40,71,0,28,0,0,9,0,0,0,6,0,0,0,0,117,70,0),(2132,'2015-03-14 14:56:58','2015-08-29 14:46:09',1,30001862,0,0,0,0,0,0,1,0,0,0,0,0,3,0,0,0,0,0,0,0,0,0,0,0),(2133,'2015-03-14 14:56:58','2015-08-29 14:46:09',1,30000792,0,0,0,45,137,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,11,0),(2134,'2015-03-14 14:56:58','2015-08-29 14:46:09',1,30001873,53,34,38,0,0,42,0,0,1,0,0,150,46,36,31,0,9,0,66,0,53,192,76,0),(2135,'2015-03-14 14:56:58','2015-08-29 14:46:09',1,30001198,0,0,0,0,54,0,0,0,11,46,63,39,52,16,11,29,8,49,52,72,36,35,34,0),(2136,'2015-03-14 14:56:58','2015-08-29 14:46:09',1,30001177,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,57,0,0,0,0,0,0,0),(2137,'2015-03-14 14:56:58','2015-08-29 14:46:09',1,30002093,14,11,15,42,14,5,0,1,7,33,26,11,75,4,18,43,28,0,1,8,11,12,10,0),(2138,'2015-03-14 14:56:58','2015-08-29 14:46:09',1,30003433,31,78,14,103,8,48,22,26,69,82,87,85,20,75,112,121,111,65,33,70,181,64,30,0),(2139,'2015-03-14 14:56:58','2015-08-29 14:46:09',1,30003429,22,44,4,33,37,44,106,56,79,42,69,111,75,119,99,47,44,41,40,97,169,145,45,0),(2140,'2015-03-14 14:56:58','2015-08-29 14:46:09',1,30003897,8,0,70,59,56,0,0,0,27,18,9,34,0,3,4,4,14,0,106,0,2,44,14,0),(2141,'2015-03-14 14:56:58','2015-08-29 14:46:09',1,30000234,383,195,503,193,227,919,437,919,146,196,189,187,169,84,42,42,209,0,0,243,143,122,0,0),(2142,'2015-03-14 14:56:58','2015-08-29 14:46:09',1,30000149,537,753,895,890,1038,499,197,316,295,596,500,488,609,597,555,1011,744,573,493,492,361,576,486,0),(2143,'2015-03-14 14:56:58','2015-08-29 14:46:09',1,30002386,518,176,83,163,141,236,449,172,421,465,446,606,278,323,300,274,551,174,223,355,769,480,398,0),(2144,'2015-03-14 14:56:58','2015-08-29 14:46:09',1,30000087,100,24,29,7,83,29,66,36,141,126,40,71,46,102,80,69,56,5,46,43,12,86,62,0),(2145,'2015-03-14 14:56:58','2015-08-29 14:46:09',1,30001663,22,0,18,0,0,0,0,0,10,60,0,0,0,50,0,0,82,0,0,0,19,23,1,0),(2146,'2015-03-14 14:56:58','2015-08-29 14:46:09',1,30004238,0,0,0,111,86,55,54,21,0,0,0,5,0,0,0,0,100,0,0,0,0,0,9,0),(2147,'2015-03-14 14:56:58','2015-08-29 14:46:09',1,30004083,84,394,391,439,295,215,305,162,642,623,743,641,474,738,711,496,289,104,188,467,248,463,130,0),(2148,'2015-03-14 14:56:58','2015-08-29 14:46:09',1,30000126,207,308,319,172,137,201,249,156,206,184,214,200,115,233,271,213,180,62,92,223,502,204,77,0),(2149,'2015-03-14 14:56:58','2015-08-29 14:46:09',1,30002533,48,63,66,20,56,14,84,47,78,50,66,6,57,1,0,7,57,99,10,43,151,3,83,0),(2150,'2015-03-14 14:56:58','2015-08-29 14:46:09',1,30002531,175,17,51,20,142,65,67,48,61,49,18,62,23,21,49,97,76,17,24,78,32,27,70,0),(2151,'2015-03-14 14:56:58','2015-08-29 14:46:09',1,30003586,5,15,108,41,123,143,144,34,142,190,72,100,11,127,42,0,124,88,0,20,26,81,42,0),(2152,'2015-03-14 14:56:58','2015-08-29 14:46:09',1,30005244,67,28,93,49,27,58,409,419,67,54,132,132,96,65,46,25,70,8,35,19,97,67,385,0),(2153,'2015-03-14 14:56:58','2015-08-29 14:46:09',1,30003023,65,18,87,68,39,0,50,53,0,1,4,0,5,54,11,60,0,4,0,12,0,31,23,0),(2154,'2015-03-14 14:56:58','2015-08-29 14:46:09',1,30004266,47,0,1,66,59,0,52,24,18,107,45,21,6,90,0,0,0,0,45,121,0,31,1,0),(2155,'2015-03-14 14:56:58','2015-08-29 14:46:09',1,30004282,0,46,1,73,48,68,27,27,17,79,112,20,0,57,17,18,30,3,0,0,132,24,33,0),(2156,'2015-03-14 14:56:58','2015-08-29 14:46:09',1,30003871,0,70,0,0,0,106,0,2,36,76,124,16,14,0,106,214,0,145,0,28,1,21,0,0),(2157,'2015-03-14 14:56:58','2015-08-29 14:46:09',1,30000936,0,0,0,0,0,0,0,0,3,0,0,0,5,0,0,0,0,2,0,0,0,0,0,0),(2158,'2015-03-14 14:56:58','2015-08-29 14:46:09',1,30001580,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0),(2159,'2015-03-14 14:56:58','2015-03-14 14:56:58',1,30000553,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(2160,'2015-03-14 14:56:58','2015-03-14 14:56:58',1,30003202,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(2161,'2015-03-14 14:56:58','2015-08-29 14:46:09',1,30004288,4,0,76,0,0,52,0,20,0,0,0,0,40,5,42,42,0,0,0,0,0,0,76,0),(2162,'2015-03-14 14:56:58','2015-08-29 14:46:09',1,30004084,81,119,87,106,111,54,65,23,54,88,78,112,269,174,134,449,144,261,502,519,541,238,375,0),(2163,'2015-03-14 14:56:58','2015-08-29 14:46:09',1,30002972,118,98,155,93,88,89,12,36,363,130,346,131,144,252,146,90,438,98,60,420,235,418,370,0),(2164,'2015-03-14 14:56:58','2015-08-29 14:46:09',1,30001714,103,16,113,82,14,0,14,7,4,141,91,10,158,81,70,59,28,32,70,142,158,339,39,0),(2165,'2015-03-14 14:56:58','2015-08-29 14:46:09',1,30004474,0,0,0,0,0,0,0,0,6,102,11,0,115,260,383,163,46,312,119,0,86,299,41,0),(2166,'2015-03-14 14:56:58','2015-08-29 14:46:09',1,30003035,128,15,77,86,90,123,66,9,143,91,31,78,52,52,82,75,245,92,75,136,98,50,114,0),(2167,'2015-03-14 14:56:58','2015-08-29 14:46:09',1,30002232,5,36,12,26,43,84,170,21,28,0,0,4,7,26,25,65,11,7,13,18,10,123,24,0),(2168,'2015-03-14 14:56:58','2015-08-29 14:46:09',1,30003877,51,168,221,17,32,84,0,75,108,70,35,99,185,168,170,137,143,193,167,71,107,176,82,0),(2169,'2015-03-14 14:56:58','2015-08-29 14:46:09',1,30000887,743,1,71,1,30,94,747,0,61,25,16,9,82,71,257,463,204,304,240,445,190,296,310,0),(2170,'2015-03-14 14:56:58','2015-08-29 14:46:09',1,30005288,19,17,104,109,163,112,8,143,121,121,79,27,67,61,79,95,67,39,153,49,36,36,108,0),(2171,'2015-03-14 14:56:58','2015-08-29 14:46:09',1,30005312,166,52,286,111,59,57,118,67,95,76,52,86,154,366,309,163,241,30,82,106,208,231,120,0),(2172,'2015-03-14 14:56:58','2015-08-29 14:46:09',1,30001192,0,0,0,0,0,0,0,0,188,31,0,8,148,72,135,170,0,150,168,33,8,3,12,0),(2173,'2015-03-14 14:56:58','2015-08-29 14:46:09',1,30003232,44,0,0,10,61,0,3,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(2174,'2015-03-14 14:56:58','2015-08-29 14:46:09',1,30000789,0,0,0,0,0,0,0,48,0,0,0,0,0,0,0,0,23,0,0,0,0,0,0,0),(2175,'2015-03-14 14:56:58','2015-08-29 14:46:09',1,30000859,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,72,0,0,0,0,0,0,0),(2176,'2015-03-14 14:56:58','2015-08-29 14:46:09',1,30001122,7,187,3,0,12,176,0,5,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(2177,'2015-03-14 14:56:58','2015-08-29 14:46:09',1,30002133,0,8,0,0,0,0,0,0,77,19,0,0,0,0,0,0,0,0,76,62,0,0,0,0),(2178,'2015-03-14 14:56:58','2015-08-29 14:46:09',1,30000544,0,0,0,0,0,0,0,0,0,1,1,0,0,5,5,0,3,0,0,12,4,0,21,0),(2179,'2015-03-14 14:56:58','2015-08-29 14:46:09',1,30003698,340,4,0,0,12,0,136,0,0,0,0,4,0,0,0,0,0,0,0,0,0,0,32,0),(2180,'2015-03-14 14:56:58','2015-08-29 14:46:09',1,30001178,88,0,0,0,0,0,0,0,0,0,0,20,1,1,33,130,0,0,0,0,0,0,0,0),(2181,'2015-03-14 14:56:58','2015-08-29 14:46:09',1,30000671,0,140,0,0,0,0,0,0,0,0,0,0,27,29,29,0,44,0,0,0,0,0,101,0),(2182,'2015-03-14 14:56:58','2015-08-29 14:46:09',1,30002306,0,0,0,0,0,0,0,0,159,224,184,46,7,45,102,114,57,207,184,257,78,228,62,0),(2183,'2015-03-14 14:56:58','2015-08-29 14:46:09',1,30003736,185,39,50,186,161,0,111,89,50,507,297,62,453,201,542,712,238,284,44,85,81,168,112,0),(2184,'2015-03-14 14:56:58','2015-08-29 14:46:09',1,30002725,0,2,39,25,3,7,1,0,0,0,0,0,0,0,0,0,0,0,26,0,2,82,31,0),(2185,'2015-03-14 14:56:58','2015-08-29 14:46:09',1,30000070,24,0,15,14,14,13,0,0,0,0,0,0,0,0,0,0,0,1,0,25,0,0,0,0),(2186,'2015-03-14 14:56:58','2015-08-29 14:46:09',1,30004087,6,135,182,95,30,50,3,0,104,53,124,6,44,269,211,53,48,32,308,184,134,24,61,0),(2187,'2015-03-14 14:56:58','2015-08-29 14:46:09',1,30005268,18,36,87,23,26,19,0,0,0,0,0,16,1,8,9,5,0,0,0,4,1,137,4,0),(2188,'2015-03-14 14:56:58','2015-08-29 14:46:09',1,30002403,0,0,15,121,60,11,4,59,0,0,0,0,0,34,18,18,0,3,136,34,21,0,0,0),(2189,'2015-03-14 14:56:58','2015-08-29 14:46:09',1,30001716,14,3,1,44,28,78,53,20,53,45,32,5,32,78,40,109,46,102,18,119,71,27,75,0),(2190,'2015-03-14 14:56:58','2015-08-29 14:46:09',1,30003963,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,75,0,0,0,0,0,0,0,0),(2191,'2015-03-14 14:56:58','2015-08-29 14:46:09',1,30001646,44,73,37,61,53,57,87,44,34,42,34,23,38,110,109,75,50,12,6,76,64,167,76,0),(2192,'2015-03-14 14:56:58','2015-08-29 14:46:09',1,30003509,23,39,116,25,30,79,33,43,40,98,57,73,252,34,88,85,94,29,148,138,70,222,121,0),(2193,'2015-03-14 14:56:58','2015-08-29 14:46:09',1,30003930,3,23,0,0,1,0,156,86,0,0,0,1,0,0,0,0,7,0,3,0,0,0,0,0),(2194,'2015-03-14 14:56:58','2015-08-29 14:46:09',1,30003858,0,36,73,41,42,18,34,0,3,7,13,9,14,130,196,113,34,26,26,35,41,130,123,0),(2195,'2015-03-14 14:56:58','2015-08-29 14:46:09',1,30000598,16,15,15,8,21,63,0,0,0,0,0,0,2,0,0,0,0,0,0,0,0,0,0,0),(2196,'2015-03-14 14:56:58','2015-08-29 14:46:09',1,30000552,141,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,6,65,1,0,0,0,0,0),(2197,'2015-03-14 14:56:58','2015-08-29 14:46:09',1,30004465,0,0,74,0,0,0,0,0,7,3,6,0,0,127,128,21,0,0,0,0,0,0,0,0),(2198,'2015-03-14 14:56:58','2015-03-14 14:56:58',1,30002875,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(2199,'2015-03-14 14:56:58','2015-08-29 14:46:09',1,30004694,0,91,1,127,64,0,0,5,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(2200,'2015-03-14 14:56:58','2015-08-29 14:46:09',1,30004167,0,0,0,0,0,0,0,0,0,0,0,0,92,0,0,0,2,0,0,0,0,0,0,0),(2201,'2015-03-14 14:56:58','2015-08-29 14:46:09',1,30004957,223,152,1,164,164,0,106,0,35,82,81,52,240,196,23,10,0,0,0,0,50,35,8,0),(2202,'2015-03-14 14:56:58','2015-08-29 14:46:09',1,30000456,0,0,0,0,0,0,23,0,0,0,0,0,0,0,0,0,0,0,0,45,30,0,0,0),(2203,'2015-03-14 14:56:58','2015-08-29 14:46:09',1,30002653,61,3,10,9,9,0,0,0,10,0,15,5,47,0,0,0,40,0,0,0,27,0,1,0),(2204,'2015-03-14 14:56:58','2015-08-29 14:46:09',1,30000593,36,372,284,116,71,51,0,5,0,0,9,179,1,0,0,0,166,0,0,0,0,0,0,0),(2205,'2015-03-14 14:56:58','2015-08-29 14:46:09',1,30002636,149,86,125,86,47,113,141,73,121,179,206,159,104,232,154,187,69,72,99,180,96,145,157,0),(2206,'2015-03-14 14:56:58','2015-08-29 14:46:09',1,30003808,0,19,43,31,10,0,3,0,2,3,5,18,5,58,40,39,41,0,0,0,125,0,27,0),(2207,'2015-03-14 14:56:58','2015-08-29 14:46:09',1,30003360,0,0,0,42,50,88,7,0,0,0,0,0,16,0,0,0,0,74,67,0,0,0,0,0),(2208,'2015-03-14 14:56:58','2015-08-29 14:46:09',1,30003057,59,7,8,51,1,79,17,3,2,0,0,1,0,13,13,2,40,33,43,32,3,18,27,0),(2209,'2015-03-14 14:56:58','2015-03-14 14:56:58',1,30002859,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(2210,'2015-03-14 14:56:58','2015-08-29 14:46:09',1,30001573,8,0,19,156,14,201,0,106,0,0,0,0,0,3,0,0,0,2,0,0,0,0,0,0),(2211,'2015-03-14 14:56:58','2015-03-14 14:56:58',1,30003199,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(2212,'2015-03-14 14:56:58','2015-08-29 14:46:09',1,30002328,0,115,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,0,0,0,0),(2213,'2015-03-14 14:56:58','2015-08-29 14:46:09',1,30001883,0,0,0,0,0,0,0,32,24,0,0,17,7,63,110,144,80,0,0,0,0,14,57,0),(2214,'2015-03-14 14:56:58','2015-08-29 14:46:09',1,30002627,256,0,0,178,332,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,57,0),(2215,'2015-03-14 14:56:58','2015-08-29 14:46:09',1,30002102,9,62,92,39,9,43,101,40,16,49,28,98,26,12,16,9,33,0,2,11,52,20,86,0),(2216,'2015-03-14 14:56:58','2015-08-29 14:46:09',1,30002384,469,262,404,539,548,560,219,499,754,403,301,418,944,767,1071,1005,665,457,554,744,524,857,552,0),(2217,'2015-03-14 14:56:58','2015-08-29 14:46:09',1,30002517,1,0,60,0,0,0,8,36,0,79,58,8,92,125,110,184,7,30,5,2,14,0,4,0),(2218,'2015-03-14 14:56:58','2015-08-29 14:46:09',1,30002560,41,0,0,75,0,0,0,82,17,0,0,128,149,3,13,24,12,71,1,3,0,2,75,0),(2219,'2015-03-14 14:56:58','2015-08-29 14:46:09',1,30002556,0,1,13,0,0,0,99,0,36,3,27,0,13,0,108,416,0,7,6,21,229,244,66,0),(2220,'2015-03-14 14:56:58','2015-08-29 14:46:09',1,30001347,0,0,62,79,36,138,0,4,35,19,29,53,53,0,0,4,126,0,44,147,146,161,73,0),(2221,'2015-03-14 14:56:58','2015-08-29 14:46:09',1,30003653,28,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(2222,'2015-03-14 14:56:58','2015-08-29 14:46:09',1,30002123,0,8,4,68,19,2,8,124,5,9,9,0,0,9,18,9,7,30,16,26,0,23,19,0),(2223,'2015-03-14 14:56:58','2015-08-29 14:46:09',1,30002947,568,510,295,170,22,331,35,67,152,224,286,52,487,56,59,69,60,0,28,108,1,22,163,0),(2224,'2015-03-14 14:56:58','2015-08-29 14:46:09',1,30004778,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,46,0,13,63,0,1,0,0),(2225,'2015-03-14 14:56:58','2015-08-29 14:46:09',1,30001661,73,2,5,0,0,0,0,15,0,0,0,0,3,29,20,3,0,10,0,10,0,0,0,0),(2226,'2015-03-14 14:56:58','2015-03-14 14:56:58',1,30000344,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(2227,'2015-03-14 14:56:58','2015-08-29 14:46:09',1,30002529,134,287,269,221,161,679,121,143,192,308,262,248,368,620,688,829,641,108,47,247,302,538,504,0),(2228,'2015-03-14 14:56:58','2015-08-29 14:46:09',1,30002621,406,0,0,4,0,6,198,61,0,5,5,277,0,0,0,0,202,0,0,0,0,76,534,0),(2229,'2015-03-14 14:56:58','2015-08-29 14:46:09',1,30001531,0,0,0,0,0,0,0,0,109,66,36,36,71,358,505,230,120,72,151,308,74,119,79,0),(2230,'2015-03-14 14:56:58','2015-08-29 14:46:09',1,30000276,0,0,0,0,0,0,0,0,0,0,0,0,0,0,71,72,0,0,0,0,0,0,0,0),(2231,'2015-03-14 14:56:58','2015-08-29 14:46:09',1,30005123,73,9,31,0,6,1,3,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(2232,'2015-03-14 14:56:58','2015-08-29 14:46:09',1,30003986,40,17,4,217,331,280,5,0,62,26,101,164,0,337,457,177,163,0,0,0,10,88,147,0),(2233,'2015-03-14 14:56:58','2015-08-29 14:46:09',1,30000225,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,30,0,0),(2234,'2015-03-14 14:56:58','2015-08-29 14:46:09',1,30002588,0,0,0,0,0,0,0,0,0,0,106,0,0,0,0,0,0,0,0,0,0,0,0,0),(2235,'2015-03-14 14:56:58','2015-08-29 14:46:09',1,30000974,0,0,0,0,0,0,0,0,0,0,0,0,20,0,0,0,0,0,0,0,0,3,0,0),(2236,'2015-03-14 14:56:58','2015-08-29 14:46:09',1,30000523,0,0,0,0,0,0,68,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(2237,'2015-03-14 14:56:58','2015-08-29 14:46:09',1,30001001,15,59,131,132,114,0,15,182,73,79,24,96,2,3,0,17,0,0,0,2,15,35,96,0),(2238,'2015-03-14 14:56:58','2015-08-29 14:46:09',1,30001331,0,98,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(2239,'2015-03-14 14:56:58','2015-08-29 14:46:09',1,30001129,0,0,0,0,0,0,779,0,82,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(2240,'2015-03-14 14:56:58','2015-03-14 14:56:58',1,30001513,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(2241,'2015-03-14 14:56:58','2015-08-29 14:46:09',1,30000281,32,0,0,0,0,0,313,0,0,0,0,0,0,0,10,15,0,0,0,0,0,0,0,0),(2242,'2015-03-14 14:56:58','2015-03-14 14:56:58',1,30000444,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(2243,'2015-03-14 14:56:58','2015-03-14 14:56:58',1,30005116,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(2244,'2015-03-14 14:56:58','2015-08-29 14:46:09',1,30003752,53,0,0,0,0,159,1,34,0,104,62,544,19,5,42,171,279,0,0,0,42,250,364,0),(2245,'2015-03-14 14:56:58','2015-08-29 14:46:09',1,30005090,0,0,0,0,0,0,0,63,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(2246,'2015-03-14 14:56:58','2015-03-14 14:56:58',1,30000547,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(2247,'2015-03-14 14:56:58','2015-03-14 14:56:58',1,30004814,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(2248,'2015-03-14 14:56:58','2015-08-29 14:46:09',1,30004512,28,0,0,0,0,0,0,0,0,0,0,0,0,121,121,0,0,0,0,0,0,0,0,0),(2249,'2015-03-14 14:56:58','2015-03-14 14:56:58',1,30003261,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(2250,'2015-03-14 14:56:58','2015-08-29 14:46:09',1,30000268,0,0,0,94,56,0,89,0,7,82,0,127,0,336,479,363,275,24,7,0,103,162,463,0),(2251,'2015-03-14 14:56:58','2015-08-29 14:46:09',1,30004592,1,122,91,45,0,0,152,168,31,45,40,97,5,19,16,18,8,0,7,50,140,13,83,0),(2252,'2015-03-14 14:56:58','2015-08-29 14:46:09',1,30004446,11,0,11,30,14,0,81,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(2253,'2015-03-14 14:56:58','2015-08-29 14:46:09',1,30001269,0,0,80,73,8,0,3,23,68,207,107,79,255,362,56,50,138,9,24,181,177,163,55,0),(2254,'2015-03-14 14:56:58','2015-03-14 14:56:58',1,30002120,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(2255,'2015-03-14 14:56:58','2015-08-29 14:46:09',1,30001343,49,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,9,0,0,0,0,0,0,0),(2256,'2015-03-14 14:56:58','2015-08-29 14:46:09',1,30004606,0,91,0,0,0,0,0,9,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(2257,'2015-03-14 14:56:58','2015-08-29 14:46:09',1,30003144,127,7,4,13,11,58,0,0,0,0,0,0,29,133,0,0,10,0,247,91,0,0,0,0),(2258,'2015-03-14 14:56:58','2015-08-29 14:46:09',1,30000223,0,38,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(2259,'2015-03-14 14:56:58','2015-08-29 14:46:09',1,30000865,109,15,83,130,95,32,47,188,0,14,14,9,0,20,53,34,0,0,0,0,31,0,10,0),(2260,'2015-03-14 14:56:58','2015-03-14 14:56:58',1,30003160,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(2261,'2015-03-14 14:56:58','2015-08-29 14:46:09',1,30003608,80,53,2,0,0,0,0,23,140,288,149,228,0,0,0,0,0,0,1,96,0,23,0,0),(2262,'2015-03-14 14:56:58','2015-08-29 14:46:09',1,30002043,0,0,0,0,0,0,0,17,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(2263,'2015-03-14 14:56:58','2015-08-29 14:46:09',1,30004178,0,0,1,0,76,65,0,0,0,0,0,0,0,0,0,0,0,0,82,0,63,19,64,0),(2264,'2015-03-14 14:56:58','2015-03-14 14:56:58',1,30000426,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(2265,'2015-03-14 14:56:58','2015-08-29 14:46:09',1,30001575,5,0,0,3,3,0,0,0,0,0,0,0,0,0,0,0,0,2,0,0,0,0,0,0),(2266,'2015-03-14 14:56:58','2015-03-14 14:56:58',1,30000410,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(2267,'2015-03-14 14:56:58','2015-08-29 14:46:09',1,30000685,0,0,39,33,125,417,1,367,0,0,0,0,0,39,55,25,147,0,0,48,181,166,276,0),(2268,'2015-03-14 14:56:58','2015-08-29 14:46:09',1,30003723,5,4,0,0,0,0,16,0,0,3,53,4,0,4,0,5,70,0,0,0,21,8,0,0),(2269,'2015-03-14 14:56:58','2015-08-29 14:46:09',1,30000574,186,707,235,451,185,51,99,7,0,0,0,0,13,4,0,0,0,0,0,0,0,0,0,0),(2270,'2015-03-14 14:56:58','2015-08-29 14:46:09',1,30004443,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,51,0,0),(2271,'2015-03-14 14:56:58','2015-08-29 14:46:09',1,30004034,237,52,29,140,0,0,29,0,45,468,481,211,78,67,24,31,907,0,8,5,701,1085,212,0),(2272,'2015-03-14 14:56:58','2015-08-29 14:46:09',1,30000973,0,0,0,0,0,0,0,0,0,0,0,0,0,3,0,0,0,0,0,0,0,0,0,0),(2273,'2015-03-14 14:56:58','2015-03-14 14:56:58',1,30001518,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(2274,'2015-03-14 14:56:58','2015-08-29 14:46:09',1,30002857,0,0,0,0,0,0,0,0,0,0,0,0,0,188,60,0,99,0,0,3,0,0,0,0),(2275,'2015-03-14 14:56:58','2015-08-29 14:46:09',1,30004678,81,0,2,195,248,140,0,44,0,0,0,0,0,0,0,0,0,0,0,0,0,0,38,0),(2276,'2015-03-14 14:56:58','2015-08-29 14:46:09',1,30003775,0,3,1,78,9,0,5,0,220,708,659,157,271,215,314,475,367,59,221,245,115,79,43,0),(2277,'2015-03-14 14:56:58','2015-08-29 14:46:09',1,30004916,0,226,395,381,150,9,0,0,142,83,50,47,0,0,390,870,0,7,64,233,0,0,353,0),(2278,'2015-03-14 14:56:58','2015-08-29 14:46:09',1,30000960,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,34,0,0,0,135,0,0,0),(2279,'2015-03-14 14:56:58','2015-08-29 14:46:09',1,30001424,337,704,650,882,601,574,211,308,391,298,343,206,909,518,535,558,479,459,201,411,393,717,430,0),(2280,'2015-03-14 14:56:58','2015-08-29 14:46:09',1,30002800,684,374,356,317,326,837,531,451,390,509,731,917,496,595,469,573,556,319,284,381,610,864,664,0),(2281,'2015-03-14 14:56:58','2015-08-29 14:46:09',1,30005250,57,2,51,64,19,21,28,53,28,0,111,600,67,113,24,86,49,1,2,56,127,13,53,0),(2282,'2015-03-14 14:56:58','2015-08-29 14:46:09',1,30012547,526,339,328,269,314,438,327,281,576,561,608,827,759,953,843,809,661,370,537,560,440,574,659,0),(2283,'2015-03-14 14:56:58','2015-08-29 14:46:09',1,30005223,50,282,131,18,45,92,50,51,161,15,79,52,165,59,34,10,40,39,10,170,81,170,3,0),(2284,'2015-03-14 14:56:58','2015-08-29 14:46:09',1,30002264,216,178,134,117,63,178,41,119,77,318,220,149,222,153,209,215,116,3,90,4,115,170,20,0),(2285,'2015-03-14 14:56:58','2015-08-29 14:46:09',1,30002057,0,2,0,1,1,0,3,1,25,0,0,79,16,2,11,15,3,0,7,25,2,12,9,0),(2286,'2015-03-14 14:56:58','2015-08-29 14:46:09',1,30001367,154,529,338,305,214,266,392,234,202,340,428,319,334,413,628,644,171,230,252,333,462,465,412,0),(2287,'2015-03-14 14:56:58','2015-08-29 14:46:09',1,30002050,49,99,0,88,63,14,0,1,80,65,12,1,46,212,32,44,8,0,0,5,9,6,4,0),(2288,'2015-03-14 14:56:58','2015-08-29 14:46:09',1,30003533,45,100,108,59,25,25,50,92,105,52,61,145,113,107,96,87,73,43,26,59,27,51,77,0),(2289,'2015-03-14 14:56:58','2015-08-29 14:46:09',1,30000094,11,0,0,1,1,0,0,29,8,57,57,0,0,24,0,0,48,3,0,9,0,13,37,0),(2290,'2015-03-14 14:56:58','2015-08-29 14:46:09',1,30002250,0,79,3,0,0,7,47,1,32,55,75,49,48,16,58,45,64,1,0,28,43,39,89,0),(2291,'2015-03-14 14:56:58','2015-08-29 14:46:09',1,30004248,119,290,296,152,126,211,238,155,27,22,14,164,27,219,120,54,40,223,13,82,3,6,4,0),(2292,'2015-03-14 14:56:58','2015-08-29 14:46:09',1,30005012,4,23,12,4,22,0,0,0,16,55,34,96,0,0,0,0,33,4,57,5,0,18,7,0),(2293,'2015-03-14 14:56:58','2015-03-14 14:56:58',1,30003106,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(2294,'2015-03-14 14:56:58','2015-08-29 14:46:09',1,30003918,0,9,0,7,10,0,0,0,79,0,0,0,85,0,0,0,0,0,0,0,0,0,0,0),(2295,'2015-03-14 14:56:58','2015-08-29 14:46:09',1,30004257,126,0,5,0,0,24,0,21,0,59,120,99,0,0,0,0,1,0,0,0,0,0,9,0),(2296,'2015-03-14 14:56:58','2015-08-29 14:46:09',1,30003449,142,208,222,143,120,133,84,126,292,169,205,313,102,475,377,322,57,253,148,27,141,282,99,0),(2297,'2015-03-14 14:56:58','2015-08-29 14:46:09',1,30002077,0,0,3,31,34,4,0,0,7,140,73,18,68,3,5,3,27,8,9,0,9,0,78,0),(2298,'2015-03-14 14:56:58','2015-08-29 14:46:09',1,30003085,100,0,0,0,82,11,3,6,0,0,0,0,0,98,3,26,28,0,0,45,75,7,9,0),(2299,'2015-03-14 14:56:58','2015-08-29 14:46:09',1,30001448,32,10,1,131,13,90,11,37,36,0,3,8,0,113,76,2,79,7,24,43,54,29,8,0),(2300,'2015-03-14 14:56:58','2015-08-29 14:46:09',1,30002990,105,274,205,112,110,91,28,95,157,124,317,145,196,243,142,166,276,183,194,214,150,203,61,0),(2301,'2015-03-14 14:56:58','2015-08-29 14:46:09',1,30002781,162,272,299,240,124,77,194,344,149,105,225,154,250,284,327,270,150,161,143,209,250,75,214,0),(2302,'2015-03-14 14:56:58','2015-08-29 14:46:09',1,30003003,38,12,13,36,36,0,25,19,0,0,0,8,33,48,67,52,44,89,18,33,90,87,38,0),(2303,'2015-03-14 14:56:58','2015-08-29 14:46:09',1,30002404,9,92,30,0,0,121,42,0,24,3,2,4,2,0,0,0,65,0,5,11,130,95,25,0),(2304,'2015-03-14 14:56:58','2015-08-29 14:46:09',1,30004100,29,12,106,52,69,91,8,96,131,193,180,44,79,50,73,40,22,69,27,28,42,20,34,0),(2305,'2015-03-14 14:56:58','2015-08-29 14:46:09',1,30045341,4,1,23,1,2,95,6,25,61,12,18,31,90,4,11,62,10,5,3,0,0,1,2,0),(2306,'2015-03-14 14:56:58','2015-08-29 14:46:09',1,30003010,113,205,244,36,22,158,101,60,458,138,116,190,285,392,260,143,129,151,68,163,327,469,59,0),(2307,'2015-03-14 14:56:58','2015-08-29 14:46:09',1,30002981,25,15,19,78,37,15,5,3,1,0,3,2,6,0,7,17,52,0,0,1,7,31,22,0),(2308,'2015-03-14 14:56:58','2015-08-29 14:46:09',1,30003900,0,76,1,0,0,26,0,0,0,0,0,0,1,0,0,0,37,0,1,5,0,0,0,0),(2309,'2015-03-14 14:56:58','2015-08-29 14:46:09',1,30003523,0,48,10,29,53,10,26,13,63,70,0,67,7,32,58,42,82,0,59,28,13,60,30,0),(2310,'2015-03-14 14:56:58','2015-08-29 14:46:09',1,30000152,124,487,233,221,130,343,374,764,283,451,339,268,456,610,641,398,541,798,759,875,715,761,927,0),(2311,'2015-03-14 14:56:58','2015-08-29 14:46:09',1,30003547,0,0,3,0,0,0,15,20,20,0,96,47,0,0,0,0,0,0,20,168,43,37,98,0),(2312,'2015-03-14 14:56:58','2015-08-29 14:46:09',1,30033489,0,9,0,0,0,2,0,0,10,7,1,14,51,0,11,22,85,0,0,0,26,0,24,0),(2313,'2015-03-14 14:56:58','2015-08-29 14:46:09',1,30005265,0,0,0,28,69,52,0,0,0,0,0,0,14,0,0,3,9,0,0,0,0,0,4,0),(2314,'2015-03-14 14:56:58','2015-08-29 14:46:09',1,30004145,0,0,11,21,0,135,14,0,36,16,64,0,0,21,59,59,52,12,0,0,53,1,5,0),(2315,'2015-03-14 14:56:58','2015-08-29 14:46:09',1,30003087,41,16,28,43,34,4,93,13,78,1,2,30,2,75,4,4,48,50,3,10,60,27,55,0),(2316,'2015-03-14 14:56:58','2015-08-29 14:46:09',1,30003418,156,166,153,94,71,4,85,181,147,252,190,59,276,103,99,65,197,47,123,122,138,80,166,0),(2317,'2015-03-14 14:56:58','2015-08-29 14:46:09',1,30003597,0,0,2,0,7,7,18,51,19,11,32,43,0,3,32,43,39,7,58,27,79,21,0,0),(2318,'2015-03-14 14:56:58','2015-08-29 14:46:09',1,30003017,403,565,751,509,500,421,558,500,373,497,536,637,804,963,1084,783,721,423,509,417,703,509,750,0),(2319,'2015-03-14 14:56:58','2015-08-29 14:46:09',1,30003587,85,0,104,0,2,0,0,0,0,0,0,0,60,5,71,141,0,0,0,0,0,2,0,0),(2320,'2015-03-14 14:56:58','2015-08-29 14:46:09',1,30003793,83,0,53,0,0,10,31,1,3,31,11,3,5,4,0,15,0,2,59,49,25,0,3,0),(2321,'2015-03-14 14:56:58','2015-08-29 14:46:09',1,30002225,92,79,139,107,123,62,43,123,110,234,173,58,101,71,57,72,48,113,118,104,250,156,49,0),(2322,'2015-03-14 14:56:58','2015-08-29 14:46:09',1,30002758,29,7,4,16,14,21,33,24,17,3,8,5,0,20,123,113,19,1,79,41,1,10,7,0),(2323,'2015-03-14 14:56:58','2015-08-29 14:46:09',1,30000074,0,0,21,9,9,0,0,0,78,0,0,9,7,0,6,6,0,2,16,24,1,25,17,0),(2324,'2015-03-14 14:56:58','2015-08-29 14:46:09',1,30000032,110,116,31,44,24,44,6,128,119,118,116,176,166,366,372,205,164,7,103,103,238,140,336,0),(2325,'2015-03-14 14:56:58','2015-08-29 14:46:09',1,30002806,82,2,6,29,10,49,8,68,2,7,21,65,3,16,9,36,50,29,44,208,0,6,18,0),(2326,'2015-03-14 14:56:58','2015-08-29 14:46:09',1,30002764,106,655,482,427,375,383,291,201,359,461,619,471,509,620,546,620,664,343,430,202,348,624,334,0),(2327,'2015-03-14 14:56:58','2015-08-29 14:46:09',1,30001737,54,12,7,8,5,54,0,4,79,143,44,22,42,57,57,117,0,41,11,48,4,2,109,0),(2328,'2015-03-14 14:56:58','2015-08-29 14:46:09',1,30002994,30,40,78,3,0,2,0,16,0,4,26,8,113,22,22,5,3,33,106,30,0,22,97,0),(2329,'2015-03-14 14:56:58','2015-08-29 14:46:09',1,30003082,35,11,4,9,7,38,44,0,0,38,7,0,94,165,41,0,2,3,0,0,151,5,7,0),(2330,'2015-03-14 14:56:58','2015-08-29 14:46:09',1,30003542,0,21,0,128,68,0,213,37,0,1,1,72,49,0,0,0,46,3,13,25,10,11,0,0),(2331,'2015-03-14 14:56:58','2015-08-29 14:46:09',1,30000979,0,0,0,0,0,0,0,0,0,3,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(2332,'2015-03-14 14:56:58','2015-08-29 14:46:09',1,30004228,0,94,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(2333,'2015-03-14 14:56:58','2015-08-29 14:46:09',1,30003633,259,133,675,247,183,481,198,255,0,0,0,0,0,0,0,88,107,0,86,93,0,96,246,0),(2334,'2015-03-14 14:56:58','2015-08-29 14:46:09',1,30005107,0,1,0,0,0,0,0,0,0,0,0,30,0,0,0,0,0,0,0,0,0,0,0,0),(2335,'2015-03-14 14:56:58','2015-08-29 14:46:09',1,30004325,85,0,77,313,574,915,692,416,182,30,0,5,25,0,31,111,75,115,335,272,298,524,159,0),(2336,'2015-03-14 14:56:58','2015-08-29 14:46:09',1,30001292,71,0,0,0,0,0,0,0,0,0,0,98,0,0,0,0,0,0,0,0,0,0,0,0),(2337,'2015-03-14 14:56:58','2015-03-14 14:56:58',1,30000569,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(2338,'2015-03-14 14:56:58','2015-03-14 14:56:58',1,30002863,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(2339,'2015-03-14 14:56:58','2015-08-29 14:46:09',1,30001330,1,0,0,0,0,0,0,0,0,0,0,0,0,2,2,0,0,0,0,0,2,0,0,0),(2340,'2015-03-14 14:56:58','2015-03-14 14:56:58',1,30001482,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(2341,'2015-03-14 14:56:58','2015-08-29 14:46:09',1,30000214,0,3,43,2,0,4,0,0,0,4,1,0,4,333,167,28,63,12,0,4,10,14,9,0),(2342,'2015-03-14 14:56:58','2015-08-29 14:46:09',1,30003649,0,0,3,174,168,71,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(2343,'2015-03-14 14:56:58','2015-08-29 14:46:09',1,30003435,54,19,24,11,0,78,0,0,12,0,11,25,91,0,11,35,60,54,25,26,20,29,14,0),(2344,'2015-03-14 14:56:58','2015-08-29 14:46:09',1,30024971,0,51,130,50,57,155,74,73,126,215,111,29,144,122,270,203,174,79,91,158,106,35,88,0),(2345,'2015-03-14 14:56:58','2015-08-29 14:46:09',1,30001161,0,4,3,1,1,1,0,8,0,0,0,0,1,8,4,4,10,5,0,4,6,9,4,0),(2346,'2015-03-14 14:56:58','2015-08-29 14:46:09',1,30002406,0,133,1,9,2,86,0,0,0,26,26,26,0,0,0,0,17,3,6,60,110,0,0,0),(2347,'2015-03-14 14:56:58','2015-08-29 14:46:09',1,30002579,0,0,0,0,76,7,0,18,0,40,148,0,0,142,126,33,22,0,0,0,4,0,81,0),(2348,'2015-03-14 14:56:58','2015-08-29 14:46:09',1,30002189,467,360,511,274,252,293,90,183,494,856,591,404,687,470,406,359,411,326,413,548,597,431,518,0),(2349,'2015-03-14 14:56:58','2015-08-29 14:46:09',1,30003846,41,24,0,0,9,0,0,0,0,0,83,0,0,77,52,0,0,0,9,1,25,3,0,0),(2350,'2015-03-14 14:56:58','2015-08-29 14:46:09',1,30002418,2,0,1,18,0,20,2,0,35,0,0,54,0,0,0,0,63,3,0,42,9,23,0,0),(2351,'2015-03-14 14:56:58','2015-08-29 14:46:09',1,30002390,4,2,40,26,28,1,19,8,11,126,93,104,5,8,2,4,35,0,0,0,1,7,0,0),(2352,'2015-03-14 14:56:58','2015-08-29 14:46:09',1,30002053,689,465,524,581,489,367,235,374,763,619,615,445,632,628,565,622,397,341,372,589,644,664,303,0),(2353,'2015-03-14 14:56:58','2015-08-29 14:46:09',1,30002063,65,16,125,56,15,109,25,2,119,0,0,15,248,6,4,21,51,8,8,1,7,15,79,0),(2354,'2015-03-14 14:56:58','2015-08-29 14:46:09',1,30003594,0,0,18,0,1,33,70,0,11,10,13,21,17,60,48,0,57,11,49,8,78,15,1,0),(2355,'2015-03-14 14:56:58','2015-08-29 14:46:09',1,30001044,0,0,54,0,0,25,0,0,0,11,0,0,5,4,1,33,64,0,0,0,0,0,7,0),(2356,'2015-03-14 14:56:58','2015-08-29 14:46:09',1,30003902,0,15,0,0,27,49,0,0,49,14,13,61,0,0,0,0,14,2,0,0,0,0,1,0),(2357,'2015-03-14 14:56:58','2015-08-29 14:46:09',1,30034971,93,216,65,134,84,43,8,13,11,156,166,65,51,121,249,179,126,132,25,39,82,78,63,0),(2358,'2015-03-14 14:56:58','2015-08-29 14:46:09',1,30000188,177,98,307,37,44,195,40,12,91,186,127,125,60,222,220,204,337,94,39,106,155,167,285,0),(2359,'2015-03-14 14:56:59','2015-08-29 14:46:09',1,30005290,65,14,118,305,250,65,108,63,304,46,58,67,63,130,66,32,217,41,86,91,164,127,164,0),(2360,'2015-03-14 14:56:59','2015-08-29 14:46:09',1,30003528,1,57,95,7,11,41,1,26,4,25,21,78,14,11,29,46,96,19,15,21,38,123,17,0),(2361,'2015-03-14 14:56:59','2015-08-29 14:46:09',1,30005213,0,101,0,0,0,13,0,0,0,0,0,12,0,0,0,0,0,7,52,0,0,0,4,0),(2362,'2015-03-14 14:56:59','2015-08-29 14:46:09',1,30005320,9,19,10,19,24,6,2,9,4,8,1,0,35,9,72,127,59,2,8,34,6,4,25,0),(2363,'2015-03-14 14:56:59','2015-08-29 14:46:09',1,30004979,22,1,14,0,1,26,18,8,51,56,20,21,96,0,9,16,4,3,76,45,5,3,3,0),(2364,'2015-03-14 14:56:59','2015-08-29 14:46:09',1,30003937,7,0,0,0,0,0,4,23,0,0,0,0,0,0,0,0,0,0,0,0,0,0,70,0),(2365,'2015-03-14 14:56:59','2015-08-29 14:46:09',1,30003220,0,0,39,66,267,321,0,37,23,16,0,31,116,240,143,133,0,139,0,124,136,19,28,0),(2366,'2015-03-14 14:56:59','2015-08-29 14:46:09',1,30000837,37,0,0,0,0,0,0,0,0,0,0,0,0,0,54,141,0,0,0,20,0,0,145,0),(2367,'2015-03-14 14:56:59','2015-08-29 14:46:09',1,30001135,0,0,0,0,0,0,3,0,2,83,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(2368,'2015-03-14 14:56:59','2015-03-14 14:56:59',1,30001509,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(2369,'2015-03-14 14:56:59','2015-08-29 14:46:09',1,30003162,135,0,33,0,0,352,21,234,131,129,123,35,16,100,122,67,56,0,37,90,74,44,155,0),(2370,'2015-03-14 14:56:59','2015-08-29 14:46:09',1,30004686,66,0,0,0,0,0,75,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(2371,'2015-03-14 14:56:59','2015-08-29 14:46:09',1,30003679,0,0,0,0,0,79,0,0,4,0,0,0,0,0,0,0,65,0,0,16,0,0,53,0),(2372,'2015-03-14 14:56:59','2015-03-14 14:56:59',1,30001612,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(2373,'2015-03-14 14:56:59','2015-08-29 14:46:09',1,30003099,0,0,0,0,0,0,33,0,0,0,0,0,0,108,129,38,14,8,0,0,0,1,5,0),(2374,'2015-03-14 14:56:59','2015-08-29 14:46:09',1,30001662,44,100,82,36,44,13,77,1,83,24,52,15,98,27,53,38,146,176,39,116,75,18,33,0),(2375,'2015-03-14 14:56:59','2015-08-29 14:46:09',1,30004240,0,23,49,0,0,0,0,7,0,0,0,0,0,0,0,0,0,0,0,75,1,0,0,0),(2376,'2015-03-14 14:56:59','2015-08-29 14:46:09',1,30001528,0,0,0,0,0,0,0,0,68,75,117,51,311,82,133,328,810,72,0,81,95,130,41,0),(2377,'2015-03-14 14:56:59','2015-08-29 14:46:09',1,30004142,0,65,35,10,0,45,67,96,103,68,131,238,16,96,104,57,21,33,0,0,23,10,129,0),(2378,'2015-03-14 14:56:59','2015-08-29 14:46:09',1,30045338,18,16,9,12,1,13,6,3,5,0,2,2,6,8,9,14,9,0,0,2,6,10,2,0),(2379,'2015-03-14 14:56:59','2015-08-29 14:46:09',1,30001674,179,330,156,108,122,252,161,52,445,341,308,165,217,255,164,214,250,309,214,264,193,478,217,0),(2380,'2015-03-14 14:56:59','2015-08-29 14:46:09',1,30003428,67,21,50,108,113,82,53,18,97,109,135,55,29,55,73,19,0,103,23,9,76,35,218,0),(2381,'2015-03-14 14:56:59','2015-08-29 14:46:09',1,30004133,9,53,28,29,28,0,77,0,108,28,81,112,2,27,28,26,14,26,110,10,0,106,36,0),(2382,'2015-03-14 14:56:59','2015-08-29 14:46:09',1,30002214,94,76,50,90,108,0,14,7,11,39,9,132,32,148,147,40,6,13,43,14,92,20,48,0),(2383,'2015-03-14 14:56:59','2015-08-29 14:46:09',1,30004141,0,26,0,3,7,0,0,3,66,0,5,87,9,38,13,20,18,0,52,36,0,35,177,0),(2384,'2015-03-14 14:56:59','2015-08-29 14:46:09',1,30005248,12,97,46,132,113,17,559,589,163,86,92,9,11,3,155,292,58,43,336,497,684,454,0,0),(2385,'2015-03-14 14:56:59','2015-08-29 14:46:09',1,30004077,85,266,261,235,522,212,85,21,95,100,199,133,308,73,144,250,234,151,396,165,361,237,36,0),(2386,'2015-03-14 14:56:59','2015-08-29 14:46:09',1,30045345,17,14,26,69,17,20,24,63,4,90,1,4,2,10,2,0,4,6,0,4,6,50,11,0),(2387,'2015-03-14 14:56:59','2015-08-29 14:46:09',1,30000133,161,227,168,103,71,36,130,140,133,184,304,76,46,98,69,60,45,70,31,162,219,159,63,0),(2388,'2015-03-14 14:56:59','2015-08-29 14:46:09',1,30003875,43,141,162,0,23,123,11,0,23,0,4,25,97,1,24,23,19,26,28,5,5,27,12,0),(2389,'2015-03-14 14:56:59','2015-08-29 14:46:09',1,30003531,25,40,153,20,65,36,143,52,88,230,220,164,106,20,73,66,99,115,75,51,100,136,216,0),(2390,'2015-03-14 14:56:59','2015-08-29 14:46:09',1,30031407,159,94,92,136,96,96,95,91,134,191,262,40,239,236,273,457,102,112,49,278,212,126,230,0),(2391,'2015-03-14 14:56:59','2015-08-29 14:46:09',1,30004956,0,0,0,0,0,0,0,13,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(2392,'2015-03-14 14:56:59','2015-08-29 14:46:09',1,30002245,85,94,207,53,89,53,28,57,93,103,25,144,32,49,65,58,158,8,83,175,188,111,116,0),(2393,'2015-03-14 14:56:59','2015-08-29 14:46:09',1,30000721,382,0,0,0,0,0,0,0,0,0,0,2,7,4,4,52,2,0,28,16,13,17,8,0),(2394,'2015-03-14 14:56:59','2015-08-29 14:46:09',1,30002468,165,0,3,605,451,91,55,45,26,37,150,149,83,0,0,5,259,0,5,19,331,143,118,0),(2395,'2015-03-14 14:56:59','2015-08-29 14:46:09',1,30002075,424,467,400,533,508,329,169,336,262,596,597,466,583,540,399,507,888,195,275,469,420,457,481,0),(2396,'2015-03-14 14:56:59','2015-08-29 14:46:09',1,30003400,46,0,0,12,15,18,22,0,76,12,0,112,0,70,111,55,7,0,0,81,41,30,11,0),(2397,'2015-03-14 14:56:59','2015-08-29 14:46:09',1,30002485,0,0,0,149,268,0,0,0,29,0,0,0,0,0,0,0,51,0,0,0,0,82,14,0),(2398,'2015-03-14 14:56:59','2015-08-29 14:46:09',1,30000828,0,0,0,0,0,0,61,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(2399,'2015-03-14 14:56:59','2015-08-29 14:46:09',1,30001744,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,4,0,0,0),(2400,'2015-03-14 14:56:59','2015-08-29 14:46:09',1,30001016,3,0,33,0,10,0,0,11,0,25,49,0,0,1,2,1,0,0,43,2,1,0,31,0),(2401,'2015-03-14 14:56:59','2015-08-29 14:46:09',1,30001847,9,33,141,85,285,58,38,42,136,187,162,89,89,107,145,191,319,0,77,124,71,130,149,0),(2402,'2015-03-14 14:56:59','2015-03-14 14:56:59',1,30004715,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(2403,'2015-03-14 14:56:59','2015-08-29 14:46:09',1,30004615,0,0,0,0,0,41,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(2404,'2015-03-14 14:56:59','2015-08-29 14:46:09',1,30003243,194,0,198,0,0,97,176,164,0,0,0,59,0,0,0,0,1,0,0,0,1,0,0,0),(2405,'2015-03-14 14:56:59','2015-08-29 14:46:09',1,30003469,234,209,376,130,171,22,96,68,65,297,339,293,285,210,247,168,205,35,51,24,192,116,481,0),(2406,'2015-03-14 14:56:59','2015-08-29 14:46:09',1,30002096,0,0,20,0,1,0,0,10,46,15,6,3,9,29,20,22,26,109,49,38,20,10,7,0),(2407,'2015-03-14 14:56:59','2015-08-29 14:46:09',1,30002773,287,327,151,202,209,297,133,306,154,283,293,141,178,376,383,334,347,70,228,125,220,97,310,0),(2408,'2015-03-14 14:56:59','2015-08-29 14:46:09',1,30002596,0,0,0,0,0,0,219,0,0,88,106,0,0,0,0,0,0,0,0,0,0,0,0,0),(2409,'2015-03-14 14:56:59','2015-08-29 14:46:09',1,30001680,165,137,154,218,212,0,108,172,249,138,216,202,146,173,188,120,170,59,94,40,182,226,76,0),(2410,'2015-03-14 14:56:59','2015-08-29 14:46:09',1,30004309,2,0,15,0,9,16,6,23,0,6,4,1,12,0,0,3,0,35,1,0,1,0,0,0),(2411,'2015-03-14 14:56:59','2015-08-29 14:46:09',1,30002397,71,45,131,92,130,1,141,24,96,126,109,161,125,77,42,43,107,14,171,89,136,185,115,0),(2412,'2015-03-14 14:56:59','2015-08-29 14:46:09',1,30043489,75,81,0,19,44,0,48,8,52,34,22,0,49,15,57,91,8,0,0,0,181,1,75,0),(2413,'2015-03-14 14:56:59','2015-08-29 14:46:09',1,30002741,42,0,58,57,82,6,1,0,93,61,34,0,23,0,6,6,0,48,21,185,20,42,17,0),(2414,'2015-03-14 14:56:59','2015-08-29 14:46:09',1,30004264,9,0,24,0,0,0,0,0,0,0,1,1,0,14,10,33,25,86,74,237,22,98,61,0),(2415,'2015-03-14 14:56:59','2015-08-29 14:46:09',1,30003560,20,0,48,0,3,7,0,6,0,0,0,0,45,1,3,46,12,1,59,0,0,0,2,0),(2416,'2015-03-14 14:56:59','2015-08-29 14:46:09',1,30004130,79,85,105,27,45,50,66,38,89,163,148,81,113,104,107,152,82,12,69,154,139,152,44,0),(2417,'2015-03-14 14:56:59','2015-08-29 14:46:09',1,30001690,104,108,1,58,35,29,26,15,64,18,14,35,49,101,122,104,90,11,33,29,185,152,66,0),(2418,'2015-03-14 14:56:59','2015-08-29 14:46:09',1,30000111,0,0,0,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(2419,'2015-03-14 14:56:59','2015-08-29 14:46:09',1,30003456,42,66,15,123,61,70,20,40,10,99,145,174,289,291,189,187,17,27,20,54,71,215,159,0),(2420,'2015-03-14 14:56:59','2015-08-29 14:46:09',1,30001221,0,0,0,0,0,0,0,0,3,0,7,7,83,14,14,7,4,9,17,7,17,1,11,0),(2421,'2015-03-14 14:56:59','2015-08-29 14:46:09',1,30003776,139,155,27,30,93,479,249,180,212,181,210,136,638,412,334,309,307,55,203,120,0,274,22,0),(2422,'2015-03-14 14:56:59','2015-03-14 14:56:59',1,30000370,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(2423,'2015-03-14 14:56:59','2015-03-14 14:56:59',1,30000592,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(2424,'2015-03-14 14:56:59','2015-03-14 14:56:59',1,30001463,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(2425,'2015-03-14 14:56:59','2015-08-29 14:46:09',1,30001583,2,0,0,0,0,0,0,0,0,0,0,0,0,0,0,11,0,0,0,0,0,0,0,0),(2426,'2015-03-14 14:56:59','2015-08-29 14:46:09',1,30002040,0,502,311,893,814,7,0,0,0,0,0,0,0,0,0,0,0,0,187,187,0,0,0,0),(2427,'2015-03-14 14:56:59','2015-08-29 14:46:09',1,30002856,447,124,211,57,41,141,36,143,186,327,535,618,82,270,458,864,248,5,60,281,316,352,190,0),(2428,'2015-03-14 14:56:59','2015-08-29 14:46:09',1,30000686,0,0,0,0,0,0,3,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(2429,'2015-03-14 14:56:59','2015-08-29 14:46:09',1,30001871,13,67,64,53,24,132,80,67,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(2430,'2015-03-14 14:56:59','2015-08-29 14:46:09',1,30002392,15,3,0,0,0,38,39,8,6,95,0,79,0,30,19,50,0,7,0,0,0,0,0,0),(2431,'2015-03-14 14:56:59','2015-08-29 14:46:09',1,30003468,21,68,59,13,39,220,84,54,53,49,51,118,362,354,350,285,100,78,243,168,203,149,194,0),(2432,'2015-03-14 14:56:59','2015-08-29 14:46:09',1,30002391,36,28,3,46,46,11,83,75,39,54,17,25,0,26,23,20,15,0,123,4,14,63,1,0),(2433,'2015-03-14 14:56:59','2015-08-29 14:46:09',1,30002574,0,68,9,0,0,0,75,0,23,6,5,95,31,13,1,0,0,159,34,0,4,6,0,0),(2434,'2015-03-14 14:56:59','2015-08-29 14:46:09',1,30002576,0,0,0,1,1,0,0,9,0,25,25,25,7,113,70,70,0,0,0,2,57,88,0,0),(2435,'2015-03-14 14:56:59','2015-08-29 14:46:09',1,30002054,103,125,243,210,283,145,77,74,100,367,409,174,209,183,334,438,236,247,196,189,300,359,290,0),(2436,'2015-03-14 14:56:59','2015-08-29 14:46:09',1,30003103,119,0,0,27,27,0,0,0,0,0,0,0,0,0,13,50,0,0,0,0,68,8,0,0),(2437,'2015-03-14 14:56:59','2015-08-29 14:46:09',1,30002505,28,65,70,194,154,49,27,92,93,74,70,104,124,105,115,145,96,54,34,71,126,106,85,0),(2438,'2015-03-14 14:56:59','2015-08-29 14:46:09',1,30004988,5,13,0,17,0,0,1,7,1,1,30,59,27,3,0,0,1,18,0,0,0,22,2,0),(2439,'2015-03-14 14:56:59','2015-08-29 14:46:09',1,30004304,0,0,1,87,96,1,1,5,9,89,25,0,102,73,43,7,75,0,0,0,0,36,0,0),(2440,'2015-03-14 14:56:59','2015-08-29 14:46:09',1,30003067,4,2,16,33,62,69,3,1,8,8,17,101,9,1,2,2,1,9,4,4,15,0,1,0),(2441,'2015-03-14 14:56:59','2015-08-29 14:46:09',1,30002572,49,89,190,143,52,116,73,16,149,66,108,119,57,196,186,111,67,87,46,98,66,143,109,0),(2442,'2015-03-14 14:56:59','2015-08-29 14:46:09',1,30000150,721,795,540,355,220,428,40,244,291,613,732,486,346,455,223,408,773,509,169,193,538,521,445,0),(2443,'2015-03-14 14:56:59','2015-08-29 14:46:09',1,30002217,27,51,1,165,55,51,57,2,59,0,0,20,16,7,15,39,0,27,4,90,12,0,0,0),(2444,'2015-03-14 14:56:59','2015-08-29 14:46:09',1,30002774,190,191,228,178,151,129,157,54,125,145,174,283,17,189,153,95,95,94,48,141,149,366,137,0),(2445,'2015-03-14 14:56:59','2015-08-29 14:46:09',1,30002356,319,219,94,150,100,275,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(2446,'2015-03-14 14:56:59','2015-08-29 14:46:09',1,30002871,104,82,270,9,0,214,134,0,112,62,93,175,164,107,178,187,82,140,64,82,110,138,54,0),(2447,'2015-03-14 14:56:59','2015-08-29 14:46:09',1,30004205,55,0,0,0,58,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,39,0),(2448,'2015-03-14 14:56:59','2015-08-29 14:46:09',1,30001159,0,0,0,0,0,1,150,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,3,0),(2449,'2015-03-14 14:56:59','2015-08-29 14:46:09',1,30045306,35,17,2,0,0,1,0,67,15,18,24,21,51,85,7,47,1,1,1,21,22,8,21,0),(2450,'2015-03-14 14:56:59','2015-08-29 14:46:09',1,30000134,231,396,453,108,234,235,186,79,197,240,209,186,387,182,273,343,95,146,125,345,374,110,232,0),(2451,'2015-03-14 14:56:59','2015-08-29 14:46:09',1,30004481,181,0,0,0,0,0,0,0,0,125,3,0,230,0,0,0,0,0,0,195,0,0,166,0),(2452,'2015-03-14 14:56:59','2015-08-29 14:46:09',1,30002796,540,61,226,121,46,318,253,47,255,1478,1497,1599,255,1150,1140,1177,1178,77,183,266,1337,934,780,0),(2453,'2015-03-14 14:56:59','2015-03-14 14:56:59',1,30000825,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(2454,'2015-03-14 14:56:59','2015-08-29 14:46:09',1,30004767,0,0,0,0,0,0,0,0,122,21,6,0,0,0,14,18,13,0,0,0,37,81,178,0),(2455,'2015-03-14 14:56:59','2015-08-29 14:46:09',1,30000482,0,103,0,77,37,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(2456,'2015-03-14 14:56:59','2015-08-29 14:46:09',1,30001767,0,0,0,0,0,0,0,0,0,1,143,31,0,16,16,0,0,0,0,0,0,0,0,0),(2457,'2015-03-14 14:56:59','2015-08-29 14:46:09',1,30000689,693,459,402,0,139,293,100,231,0,0,0,0,0,0,0,0,142,30,0,32,0,0,74,0),(2458,'2015-03-14 14:56:59','2015-08-29 14:46:09',1,30000788,0,0,0,0,0,0,3,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(2459,'2015-03-14 14:56:59','2015-08-29 14:46:09',1,30000636,12,8,3,0,0,0,0,0,10,9,4,4,12,8,0,0,0,0,0,0,0,0,0,0),(2460,'2015-03-14 14:56:59','2015-08-29 14:46:09',1,30001934,0,0,0,0,0,5,0,0,35,0,35,54,0,10,0,0,0,2,0,32,56,0,0,0),(2461,'2015-03-14 14:56:59','2015-08-29 14:46:09',1,30004400,232,107,14,0,0,0,2,0,145,70,135,397,18,393,532,323,181,14,184,279,237,207,64,0),(2462,'2015-03-14 14:56:59','2015-08-29 14:46:09',1,30004361,0,1,88,471,523,351,64,0,0,128,36,365,151,384,310,185,0,164,70,89,80,59,448,0),(2463,'2015-03-14 14:56:59','2015-08-29 14:46:09',1,30001188,171,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(2464,'2015-03-14 14:56:59','2015-08-29 14:46:09',1,30000520,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,50,46,0,0,0,0),(2465,'2015-03-14 14:56:59','2015-08-29 14:46:09',1,30004177,0,0,0,0,0,64,0,0,0,0,19,83,0,0,0,0,75,0,0,0,0,0,88,0),(2466,'2015-03-14 14:56:59','2015-08-29 14:46:09',1,30004636,150,38,0,1,105,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,7,8,19,0),(2467,'2015-03-14 14:56:59','2015-08-29 14:46:09',1,30004775,0,0,0,0,0,0,0,0,0,42,42,39,118,37,38,9,33,0,24,0,26,54,0,0),(2468,'2015-03-14 14:56:59','2015-08-29 14:46:09',1,30001752,11,0,8,7,3,12,14,11,249,71,65,15,54,51,83,44,5,15,55,90,99,212,134,0),(2469,'2015-03-14 14:56:59','2015-08-29 14:46:09',1,30001914,111,0,17,129,114,33,0,0,89,262,385,167,233,196,253,240,149,27,88,226,191,181,193,0),(2470,'2015-03-14 14:56:59','2015-08-29 14:46:09',1,30003784,16,5,183,78,75,0,58,90,25,24,82,32,5,45,346,708,294,30,33,0,219,0,81,0),(2471,'2015-03-14 14:56:59','2015-08-29 14:46:09',1,30002134,79,514,538,12,120,0,268,238,4,0,0,0,4,4,0,0,0,0,0,0,18,12,0,0),(2472,'2015-03-14 14:56:59','2015-03-14 14:56:59',1,30000952,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(2473,'2015-03-14 14:56:59','2015-03-14 14:56:59',1,30001466,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(2474,'2015-03-14 14:56:59','2015-08-29 14:46:09',1,30003701,547,290,55,138,243,627,887,724,229,561,576,442,388,189,208,173,277,452,293,364,482,265,93,0),(2475,'2015-03-14 14:56:59','2015-08-29 14:46:09',1,30003308,0,0,0,0,0,0,36,133,0,0,0,0,0,0,0,0,2,0,0,0,0,0,0,0),(2476,'2015-03-14 14:56:59','2015-08-29 14:46:09',1,30003317,3,10,0,0,7,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(2477,'2015-03-14 14:56:59','2015-08-29 14:46:09',1,30001782,0,25,0,25,55,0,0,0,1384,1234,1798,1272,335,493,456,943,820,52,0,248,1440,1226,959,0),(2478,'2015-03-14 14:56:59','2015-08-29 14:46:09',1,30003621,0,0,0,33,68,0,0,89,0,0,25,0,15,0,0,0,0,0,23,0,0,34,0,0),(2479,'2015-03-14 14:56:59','2015-08-29 14:46:09',1,30004023,0,143,137,0,0,0,326,580,0,0,0,0,0,0,0,0,0,0,0,0,75,0,0,0),(2480,'2015-03-14 14:56:59','2015-08-29 14:46:09',1,30002877,0,0,0,0,0,0,0,0,22,178,187,8,0,0,0,0,9,0,0,0,0,4,4,0),(2481,'2015-03-14 14:56:59','2015-08-29 14:46:09',1,30002908,500,1001,287,207,79,313,297,182,209,61,119,124,3,179,209,155,498,631,16,0,94,228,185,0),(2482,'2015-03-14 14:56:59','2015-08-29 14:46:09',1,30000758,0,0,0,0,0,0,0,66,0,0,0,0,0,99,135,82,0,0,0,0,0,0,0,0),(2483,'2015-03-14 14:56:59','2015-08-29 14:46:09',1,30004723,66,0,31,26,121,50,249,188,161,92,152,1,45,93,151,283,252,1,0,0,33,71,267,0),(2484,'2015-03-14 14:56:59','2015-03-14 14:56:59',1,30004430,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(2485,'2015-03-14 14:56:59','2015-08-29 14:46:09',1,30000626,0,0,0,0,0,0,0,50,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(2486,'2015-03-14 14:56:59','2015-03-14 14:56:59',1,30002343,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(2487,'2015-03-14 14:56:59','2015-08-29 14:46:09',1,30004933,0,0,0,46,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(2488,'2015-03-14 14:56:59','2015-08-29 14:46:09',1,30003716,0,124,157,0,0,378,80,66,197,88,118,42,0,53,56,137,91,0,42,187,42,76,119,0),(2489,'2015-03-14 14:56:59','2015-08-29 14:46:09',1,30001110,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,90,0),(2490,'2015-03-14 14:56:59','2015-08-29 14:46:09',1,30004482,196,80,151,151,109,163,0,0,155,258,168,97,74,6,0,0,0,95,0,0,0,0,0,0),(2491,'2015-03-14 14:56:59','2015-03-14 14:56:59',1,30001508,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(2492,'2015-03-14 14:56:59','2015-08-29 14:46:09',1,30000709,0,46,0,0,0,12,0,0,0,0,0,0,49,83,29,0,0,0,0,0,0,0,0,0),(2493,'2015-03-14 14:56:59','2015-08-29 14:46:09',1,30003241,0,0,0,0,0,0,0,0,90,0,0,0,0,188,107,15,0,0,0,0,0,0,0,0),(2494,'2015-03-14 14:56:59','2015-03-14 14:56:59',1,30001481,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(2495,'2015-03-14 14:56:59','2015-08-29 14:46:09',1,30004120,29,1,58,1,12,52,33,0,0,1,1,0,0,0,43,43,0,0,52,37,0,0,0,0),(2496,'2015-03-14 14:56:59','2015-08-29 14:46:09',1,30000509,0,11,0,0,0,0,0,0,0,0,0,0,0,20,20,1,0,0,0,0,0,0,6,0),(2497,'2015-03-14 14:56:59','2015-03-14 14:56:59',1,30001640,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(2498,'2015-03-14 14:56:59','2015-08-29 14:46:09',1,30003933,9,0,0,12,2,22,50,0,0,0,4,5,0,0,0,2,33,0,0,0,0,43,26,0),(2499,'2015-03-14 14:56:59','2015-08-29 14:46:09',1,30000053,127,7,86,58,126,2,21,26,138,85,1,48,145,109,22,9,0,0,26,55,0,0,0,0),(2500,'2015-03-14 14:56:59','2015-08-29 14:46:09',1,30002984,5,0,66,0,0,26,0,0,18,150,115,3,68,0,0,0,12,2,0,9,0,0,1,0),(2501,'2015-03-14 14:56:59','2015-08-29 14:46:09',1,30001052,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,32,0,0,0,0,0,0,0),(2502,'2015-03-14 14:56:59','2015-08-29 14:46:09',1,30001428,158,400,530,313,288,324,160,339,426,409,419,488,455,490,589,615,194,312,237,251,52,370,457,0),(2503,'2015-03-14 14:56:59','2015-08-29 14:46:09',1,30041407,74,80,200,169,225,516,71,46,327,332,248,246,110,326,133,298,321,82,39,348,300,339,300,0),(2504,'2015-03-14 14:56:59','2015-08-29 14:46:09',1,30045329,374,376,221,336,297,233,132,145,122,123,308,148,361,184,264,384,644,168,224,103,284,213,298,0),(2505,'2015-03-14 14:56:59','2015-08-29 14:46:09',1,30005227,27,31,18,266,57,174,46,54,36,35,41,47,24,63,45,49,29,8,24,109,87,110,28,0),(2506,'2015-03-14 14:56:59','2015-08-29 14:46:09',1,30003513,48,334,183,208,171,132,5,149,0,112,83,74,121,71,11,104,52,117,93,18,54,138,49,0),(2507,'2015-03-14 14:56:59','2015-03-14 14:56:59',1,30000400,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(2508,'2015-03-14 14:56:59','2015-08-29 14:46:09',1,30045313,34,1,19,26,37,5,9,17,0,76,95,27,23,25,21,27,39,0,10,28,23,54,21,0),(2509,'2015-03-14 14:56:59','2015-08-29 14:46:09',1,30003072,4,37,41,38,77,15,18,14,6,8,6,1,0,3,17,22,20,25,8,47,6,51,110,0),(2510,'2015-03-14 14:56:59','2015-03-14 14:56:59',1,30000422,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(2511,'2015-03-14 14:56:59','2015-08-29 14:46:09',1,30001056,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,3,0,4,0,86,0,0,0),(2512,'2015-03-14 14:56:59','2015-08-29 14:46:09',1,30003815,0,26,11,97,0,0,1,128,0,0,0,0,0,34,1,28,81,37,61,0,0,46,1,0),(2513,'2015-03-14 14:56:59','2015-08-29 14:46:09',1,30000254,0,0,140,0,0,0,12,10,0,0,0,0,0,0,0,0,0,0,2,3,0,0,0,0),(2514,'2015-03-14 14:56:59','2015-03-14 14:56:59',1,30003203,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(2515,'2015-03-14 14:56:59','2015-08-29 14:46:09',1,30003614,0,4,11,0,0,0,0,25,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(2516,'2015-03-14 14:56:59','2015-08-29 14:46:09',1,30003987,0,0,5,0,0,9,0,0,0,0,0,36,0,368,376,216,0,0,0,0,337,277,0,0),(2517,'2015-03-14 14:56:59','2015-08-29 14:46:09',1,30004583,70,0,0,0,0,0,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,0,30,0),(2518,'2015-03-14 14:56:59','2015-08-29 14:46:09',1,30003796,68,11,65,66,19,32,8,45,64,260,184,40,79,70,91,152,25,27,30,112,113,234,303,0),(2519,'2015-03-14 14:56:59','2015-08-29 14:46:09',1,30005005,77,110,549,229,65,194,185,83,234,535,317,160,289,281,101,87,96,131,430,149,295,357,284,0),(2520,'2015-03-14 14:56:59','2015-08-29 14:46:09',1,30002647,1,28,32,0,1,13,17,49,22,0,4,13,5,2,0,0,46,72,18,68,2,12,3,0),(2521,'2015-03-14 14:56:59','2015-08-29 14:46:09',1,30000169,2,3,7,0,0,38,0,10,38,39,5,0,0,1,0,1,32,1,61,1,74,9,66,0),(2522,'2015-03-14 14:56:59','2015-08-29 14:46:09',1,30000048,0,22,106,42,127,26,0,18,0,0,3,103,0,5,35,44,0,10,65,9,8,23,97,0),(2523,'2015-03-14 14:56:59','2015-03-14 14:56:59',1,30001602,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(2524,'2015-03-14 14:56:59','2015-08-29 14:46:09',1,30002907,1138,881,156,0,31,1,605,220,135,156,171,381,0,144,142,267,154,0,137,8,164,284,231,0),(2525,'2015-03-14 14:56:59','2015-08-29 14:46:09',1,30001374,602,374,405,371,465,417,263,379,469,657,648,737,767,886,870,810,854,78,213,561,823,611,496,0),(2526,'2015-03-14 14:56:59','2015-08-29 14:46:09',1,30003311,58,36,0,40,66,0,0,0,0,0,0,0,0,0,0,0,0,0,13,3,0,0,0,0),(2527,'2015-03-14 14:56:59','2015-08-29 14:46:09',1,30001422,0,19,7,0,0,0,0,19,0,0,0,0,9,0,0,35,53,0,0,7,31,1,0,0),(2528,'2015-03-14 14:56:59','2015-08-29 14:46:09',1,30002766,110,138,24,251,201,166,15,202,142,51,170,123,223,107,155,472,92,261,287,103,555,364,113,0),(2529,'2015-03-14 14:56:59','2015-08-29 14:46:09',1,30000159,213,607,94,180,180,98,145,174,209,115,297,384,298,186,289,327,224,298,156,238,365,271,410,0),(2530,'2015-03-14 14:56:59','2015-08-29 14:46:09',1,30002786,302,260,298,606,515,120,176,87,297,429,519,367,387,539,445,510,442,410,128,97,296,296,264,0),(2531,'2015-03-14 14:56:59','2015-08-29 14:46:09',1,30045337,0,1,92,4,4,15,8,13,12,2,7,18,5,7,1,2,31,2,34,3,5,2,77,0),(2532,'2015-03-14 14:56:59','2015-08-29 14:46:09',1,30003641,0,17,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,34,0,0,0),(2533,'2015-03-14 14:56:59','2015-08-29 14:46:09',1,30000138,60,92,15,176,121,8,138,111,0,78,61,119,53,128,138,207,22,80,53,92,95,188,114,0),(2534,'2015-03-14 14:56:59','2015-08-29 14:46:09',1,30002372,0,0,0,86,105,0,13,0,0,10,0,0,0,0,0,0,0,0,0,0,5,0,0,0),(2535,'2015-03-14 14:56:59','2015-08-29 14:46:09',1,30001146,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,76,0,0),(2536,'2015-03-14 14:56:59','2015-03-14 14:56:59',1,30004832,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(2537,'2015-03-14 14:56:59','2015-08-29 14:46:09',1,30000090,0,0,26,7,7,0,0,0,0,0,0,9,23,0,0,0,0,4,0,33,0,0,11,0),(2538,'2015-03-14 14:56:59','2015-08-29 14:46:09',1,30001731,100,45,24,57,100,5,25,18,4,7,5,39,6,8,85,84,7,33,2,51,4,41,63,0),(2539,'2015-03-14 14:56:59','2015-08-29 14:46:09',1,30002396,0,42,0,18,20,2,38,3,35,13,16,0,0,7,7,0,53,7,1,0,3,9,0,0),(2540,'2015-03-14 14:56:59','2015-08-29 14:46:09',1,30004294,0,0,0,1,1,0,0,0,43,58,1,19,57,0,0,0,2,0,16,52,17,0,0,0),(2541,'2015-03-14 14:56:59','2015-08-29 14:46:09',1,30002527,300,912,574,458,369,547,452,290,640,409,414,620,524,643,583,831,1052,327,173,686,386,390,501,0),(2542,'2015-03-14 14:56:59','2015-08-29 14:46:09',1,30003377,336,17,109,44,13,43,55,69,43,60,100,24,29,124,176,141,79,67,32,40,183,52,83,0),(2543,'2015-03-14 14:56:59','2015-08-29 14:46:09',1,30002208,17,19,20,41,0,32,17,55,45,23,41,4,1,1,0,0,7,65,13,21,79,4,50,0),(2544,'2015-03-14 14:56:59','2015-08-29 14:46:09',1,30003445,21,106,0,8,94,0,0,18,12,30,108,96,110,142,57,78,24,9,10,12,40,121,9,0),(2545,'2015-03-14 14:56:59','2015-08-29 14:46:09',1,30003094,0,0,0,71,71,0,0,2,31,12,1,0,77,43,133,111,0,16,0,0,0,0,0,0),(2546,'2015-03-14 14:56:59','2015-08-29 14:46:09',1,30001655,50,30,1,84,46,0,31,75,0,91,41,24,101,0,9,27,66,20,31,35,0,64,131,0),(2547,'2015-03-14 14:56:59','2015-08-29 14:46:09',1,30005053,138,0,150,101,126,173,0,0,112,93,112,142,55,138,157,369,141,99,32,38,189,231,47,0),(2548,'2015-03-14 14:56:59','2015-08-29 14:46:09',1,30000895,37,0,21,0,33,52,0,0,1,0,0,0,24,6,0,0,0,0,0,0,0,0,0,0),(2549,'2015-03-14 14:56:59','2015-08-29 14:46:09',1,30045343,3,19,25,30,34,22,8,19,6,1,12,39,9,24,30,29,41,12,0,31,16,13,8,0),(2550,'2015-03-14 14:56:59','2015-08-29 14:46:09',1,30005246,35,25,108,28,9,124,32,53,91,79,94,103,30,110,50,132,129,0,23,74,88,76,3,0),(2551,'2015-03-14 14:56:59','2015-08-29 14:46:09',1,30002793,636,1098,939,718,696,610,367,366,337,664,495,449,851,697,536,493,700,457,231,510,813,590,514,0),(2552,'2015-03-14 14:56:59','2015-08-29 14:46:09',1,30002788,327,401,203,368,350,427,197,428,260,452,649,285,341,438,242,440,366,289,173,159,379,644,475,0),(2553,'2015-03-14 14:56:59','2015-08-29 14:46:09',1,30000182,2900,3460,3418,2897,2538,1199,1900,1878,2559,3965,4180,4159,4040,3899,3980,3499,3858,920,1073,1230,2119,2239,2440,0),(2554,'2015-03-14 14:56:59','2015-08-29 14:46:09',1,30002072,233,429,569,607,496,513,275,351,225,256,429,194,370,496,378,688,276,473,224,244,651,673,450,0),(2555,'2015-03-14 14:56:59','2015-08-29 14:46:09',1,30004982,27,22,10,19,23,17,90,43,4,22,45,136,5,8,16,21,121,2,26,1,64,92,128,0),(2556,'2015-03-14 14:56:59','2015-08-29 14:46:09',1,30002672,53,8,20,40,8,74,106,53,104,123,190,93,218,70,67,33,130,30,27,89,45,125,20,0),(2557,'2015-03-14 14:56:59','2015-08-29 14:46:09',1,30002559,9,0,157,5,11,0,5,0,12,0,17,42,1,66,0,0,0,0,0,0,0,131,0,0),(2558,'2015-03-14 14:56:59','2015-08-29 14:46:09',1,30004102,47,104,34,0,0,0,0,33,42,85,103,90,22,73,31,86,0,0,67,227,34,51,20,0),(2559,'2015-03-14 14:56:59','2015-08-29 14:46:09',1,30045316,4,12,15,110,22,3,85,62,2,7,16,2,4,40,6,5,20,15,6,7,21,17,5,0),(2560,'2015-03-14 14:56:59','2015-08-29 14:46:09',1,30002738,558,418,222,327,352,322,183,223,331,393,345,208,331,302,378,532,658,69,291,415,379,186,280,0),(2561,'2015-03-14 14:56:59','2015-08-29 14:46:09',1,30003740,18,76,22,98,26,26,120,94,10,125,266,407,175,404,339,599,45,158,323,108,379,40,197,0),(2562,'2015-03-14 14:56:59','2015-08-29 14:46:09',1,30003788,40,18,10,16,18,0,8,2,0,11,5,5,37,23,10,9,0,11,30,10,13,3,13,0),(2563,'2015-03-14 14:56:59','2015-08-29 14:46:09',1,30003219,0,0,10,218,0,114,426,149,43,290,417,474,118,1,54,203,214,63,131,169,132,0,0,0),(2564,'2015-03-14 14:56:59','2015-08-29 14:46:09',1,30001991,0,0,0,0,0,0,0,35,0,0,0,0,0,0,0,0,0,0,0,0,0,85,62,0),(2565,'2015-03-14 14:56:59','2015-08-29 14:46:09',1,30002439,118,65,76,98,109,343,61,204,425,202,185,144,15,0,0,0,256,0,52,48,29,0,189,0),(2566,'2015-03-14 14:56:59','2015-08-29 14:46:09',1,30000062,150,75,2,94,133,77,20,25,27,73,89,241,11,59,59,53,138,7,54,12,89,114,21,0),(2567,'2015-03-14 14:56:59','2015-08-29 14:46:09',1,30001843,18,31,23,10,11,1,48,0,0,85,66,16,46,37,60,118,148,9,0,54,73,44,0,0),(2568,'2015-03-14 14:56:59','2015-08-29 14:46:09',1,30004726,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,38,0,0,0),(2569,'2015-03-14 14:56:59','2015-08-29 14:46:09',1,30000252,0,0,0,65,86,116,0,0,0,0,0,0,0,0,0,0,14,0,0,0,0,0,0,0),(2570,'2015-03-14 14:56:59','2015-08-29 14:46:09',1,30003861,0,111,24,17,17,80,0,0,10,8,8,0,13,28,25,50,31,19,0,36,122,47,0,0),(2571,'2015-03-14 14:56:59','2015-08-29 14:46:09',1,30003176,242,538,848,173,100,123,284,176,0,0,78,19,36,133,152,42,0,6,69,109,30,454,68,0),(2572,'2015-03-14 14:56:59','2015-08-29 14:46:09',1,30000277,66,78,1,8,29,0,15,0,192,121,166,11,189,103,268,282,89,96,130,5,152,74,46,0),(2573,'2015-03-14 14:56:59','2015-08-29 14:46:09',1,30003140,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,16,0,0,0,0),(2574,'2015-03-14 14:56:59','2015-08-29 14:46:09',1,30004556,0,0,0,0,0,0,0,67,0,0,0,0,0,0,0,0,0,0,4,0,0,4,0,0),(2575,'2015-03-14 14:56:59','2015-08-29 14:46:09',1,30045317,4,5,3,44,20,9,1,23,8,12,18,91,23,24,13,24,29,13,12,14,12,17,11,0),(2576,'2015-03-14 14:56:59','2015-08-29 14:46:09',1,30002333,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,61,0,0,0,0,74,0,0),(2577,'2015-03-14 14:56:59','2015-08-29 14:46:09',1,30002595,0,0,0,0,0,164,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(2578,'2015-03-14 14:56:59','2015-08-29 14:46:09',1,30003452,104,27,175,54,128,20,196,54,49,81,139,152,36,112,172,147,62,10,49,141,130,158,80,0),(2579,'2015-03-14 14:56:59','2015-08-29 14:46:09',1,30002792,581,505,867,683,620,444,401,289,616,820,1120,765,747,869,754,701,712,593,164,644,942,928,1040,0),(2580,'2015-03-14 14:56:59','2015-08-29 14:46:09',1,30003935,0,9,8,9,9,0,0,26,0,0,0,33,0,0,24,27,0,0,0,0,0,0,0,0),(2581,'2015-03-14 14:56:59','2015-08-29 14:46:09',1,30003524,11,1,43,37,33,42,3,1,77,15,15,28,0,0,15,23,68,2,1,71,138,42,85,0),(2582,'2015-03-14 14:56:59','2015-08-29 14:46:09',1,30002192,263,242,238,317,240,412,144,143,355,252,160,126,461,282,319,367,275,319,229,281,162,324,345,0),(2583,'2015-03-14 14:56:59','2015-08-29 14:46:09',1,30001696,6,79,4,76,25,45,78,149,128,118,142,96,153,79,150,156,120,25,23,175,238,57,86,0),(2584,'2015-03-14 14:56:59','2015-08-29 14:46:09',1,30000073,0,0,10,2,20,0,0,0,3,4,4,0,13,3,3,0,0,10,0,5,0,0,13,0),(2585,'2015-03-14 14:56:59','2015-08-29 14:46:09',1,30002331,0,0,0,0,0,0,0,0,0,0,0,3,0,1,0,0,0,0,0,0,0,0,0,0),(2586,'2015-03-14 14:56:59','2015-08-29 14:46:09',1,30001236,0,35,162,1,3,0,10,4,0,0,0,0,56,0,0,0,0,0,0,0,0,0,69,0),(2587,'2015-03-14 14:56:59','2015-08-29 14:46:09',1,30002276,172,159,26,89,52,120,210,111,174,125,85,51,220,376,304,233,105,65,130,159,206,272,84,0),(2588,'2015-03-14 14:56:59','2015-08-29 14:46:09',1,30001389,187,116,137,153,142,164,124,97,118,152,122,243,157,228,146,205,273,173,170,122,314,431,221,0),(2589,'2015-03-14 14:56:59','2015-08-29 14:46:09',1,30002739,262,369,195,246,124,389,215,212,131,380,159,202,445,450,351,434,535,450,457,459,490,345,310,0),(2590,'2015-03-14 14:56:59','2015-08-29 14:46:09',1,30002087,1,5,10,13,5,12,124,1,30,24,33,25,6,6,7,8,21,14,0,3,10,4,25,0),(2591,'2015-03-14 14:56:59','2015-08-29 14:46:09',1,30002815,376,215,94,302,214,188,132,169,301,479,328,129,355,265,149,172,468,193,249,137,63,336,137,0),(2592,'2015-03-14 14:56:59','2015-08-29 14:46:09',1,30005014,7,0,0,0,0,0,0,0,0,21,21,0,0,3,25,25,111,0,0,0,39,0,18,0),(2593,'2015-03-14 14:56:59','2015-08-29 14:46:09',1,30002546,475,590,671,574,507,937,237,727,734,999,777,404,781,1097,788,1011,625,724,922,1031,1212,806,802,0),(2594,'2015-03-14 14:56:59','2015-08-29 14:46:09',1,30000165,184,296,117,120,136,131,49,77,140,69,43,262,126,158,123,101,277,82,179,173,159,84,119,0),(2595,'2015-03-14 14:56:59','2015-08-29 14:46:09',1,30000093,0,0,0,4,4,3,53,6,0,8,8,0,12,171,72,17,156,0,0,0,1,0,0,0),(2596,'2015-03-14 14:56:59','2015-08-29 14:46:09',1,30002756,0,3,63,9,30,0,0,0,19,6,8,1,26,0,0,3,54,12,1,5,16,2,68,0),(2597,'2015-03-14 14:56:59','2015-08-29 14:46:09',1,30004243,0,0,17,0,14,0,6,0,10,33,55,47,0,0,0,0,75,40,1,2,38,57,30,0),(2598,'2015-03-14 14:56:59','2015-08-29 14:46:09',1,30001436,49,62,0,0,0,0,0,0,19,40,41,0,7,11,0,58,16,15,11,0,0,0,0,0),(2599,'2015-03-14 14:56:59','2015-08-29 14:46:09',1,30001387,104,176,125,217,201,151,85,114,150,247,291,113,101,149,174,120,190,338,63,199,89,346,100,0),(2600,'2015-03-14 14:56:59','2015-08-29 14:46:09',1,30001365,455,1280,1419,866,1035,651,661,899,665,1170,1680,1211,1154,1555,1346,968,826,842,663,543,793,953,543,0),(2601,'2015-03-14 14:56:59','2015-08-29 14:46:09',1,30002804,564,658,876,926,745,1054,972,514,512,971,1192,1197,1153,1980,2100,1680,1440,831,525,839,1153,1375,1619,0),(2602,'2015-03-14 14:56:59','2015-08-29 14:46:09',1,30001426,402,270,389,249,348,302,257,298,396,258,94,190,492,683,872,781,275,185,219,185,316,282,254,0),(2603,'2015-03-14 14:56:59','2015-08-29 14:46:09',1,30001397,616,546,767,813,629,668,599,720,1086,894,913,797,556,603,512,690,774,69,388,255,555,572,587,0),(2604,'2015-03-14 14:56:59','2015-08-29 14:46:09',1,30002402,27,64,39,2,2,8,83,0,87,0,0,0,37,0,0,0,10,195,0,4,107,0,0,0),(2605,'2015-03-14 14:56:59','2015-08-29 14:46:09',1,30002777,554,259,398,414,246,125,359,276,281,356,306,250,217,263,371,480,221,371,200,287,429,367,197,0),(2606,'2015-03-14 14:56:59','2015-08-29 14:46:09',1,30001726,18,6,185,15,22,4,4,22,10,97,268,92,66,7,84,113,50,96,14,14,42,55,80,0),(2607,'2015-03-14 14:56:59','2015-08-29 14:46:09',1,30000285,0,123,0,0,44,0,21,0,30,0,4,15,0,4,8,9,36,0,0,0,5,3,11,0),(2608,'2015-03-14 14:56:59','2015-08-29 14:46:09',1,30000119,208,314,187,195,376,134,293,162,172,316,283,205,162,227,235,320,161,195,161,147,230,249,266,0),(2609,'2015-03-14 14:56:59','2015-08-29 14:46:09',1,30004157,154,52,127,118,28,280,49,57,90,177,189,212,100,63,54,46,266,70,32,188,127,163,26,0),(2610,'2015-03-14 14:56:59','2015-08-29 14:46:09',1,30005256,58,0,25,0,0,0,0,25,16,9,0,26,0,7,0,0,45,0,0,0,56,23,17,0),(2611,'2015-03-14 14:56:59','2015-08-29 14:46:09',1,30002985,2,0,12,0,0,0,31,98,24,3,0,0,0,0,0,0,0,0,9,30,0,0,4,0),(2612,'2015-03-14 14:56:59','2015-08-29 14:46:09',1,30005169,302,0,0,110,546,0,0,0,0,0,0,0,0,0,28,74,0,0,0,0,0,0,3,0),(2613,'2015-03-14 14:56:59','2015-08-29 14:46:09',1,30002886,50,287,0,114,56,0,1519,478,0,0,0,41,0,78,109,95,0,0,0,0,0,0,0,0),(2614,'2015-03-14 14:56:59','2015-08-29 14:46:09',1,30002594,0,0,0,0,0,0,0,95,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(2615,'2015-03-14 14:56:59','2015-08-29 14:46:09',1,30002524,245,460,240,498,368,361,517,144,270,169,217,229,403,376,444,434,416,165,257,294,258,335,489,0),(2616,'2015-03-14 14:56:59','2015-08-29 14:46:09',1,30001656,183,341,286,180,130,193,47,141,218,27,110,113,238,346,338,200,188,302,288,268,278,326,222,0),(2617,'2015-03-14 14:56:59','2015-08-29 14:46:09',1,30003813,5,23,145,39,0,0,0,34,21,0,0,0,0,0,0,84,232,0,0,0,40,12,147,0),(2618,'2015-03-14 14:56:59','2015-03-14 14:56:59',1,30000622,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(2619,'2015-03-14 14:56:59','2015-08-29 14:46:09',1,30045351,2,20,29,9,1,2,18,19,15,84,1,0,14,25,35,101,1,35,11,11,106,22,50,0),(2620,'2015-03-14 14:56:59','2015-08-29 14:46:09',1,30003765,61,316,11,300,170,258,0,0,181,90,187,181,312,120,225,232,77,313,479,63,37,290,507,0),(2621,'2015-03-14 14:56:59','2015-08-29 14:46:09',1,30000956,0,47,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(2622,'2015-03-14 14:56:59','2015-08-29 14:46:09',1,30002642,124,65,162,194,113,45,129,217,222,116,101,158,213,293,400,374,304,252,285,188,350,272,247,0),(2623,'2015-03-14 14:56:59','2015-08-29 14:46:09',1,30004535,46,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,21,0,0,0,0,0,11,0),(2624,'2015-03-14 14:56:59','2015-08-29 14:46:09',1,30001812,135,138,257,185,112,511,111,54,0,0,0,0,0,0,0,0,0,0,0,0,0,36,76,0),(2625,'2015-03-14 14:56:59','2015-08-29 14:46:09',1,30004905,0,386,135,21,0,277,154,168,0,0,0,143,166,4,0,0,4,9,93,2,0,44,113,0),(2626,'2015-03-14 14:56:59','2015-08-29 14:46:09',1,30004162,262,6,1,57,174,0,354,284,0,64,84,0,0,0,0,0,0,0,0,0,0,0,0,0),(2627,'2015-03-14 14:56:59','2015-08-29 14:46:09',1,30001920,0,97,0,42,79,35,0,0,45,29,60,0,82,97,145,189,65,70,20,28,129,0,39,0),(2628,'2015-03-14 14:56:59','2015-08-29 14:46:09',1,30001977,26,7,30,34,51,33,52,120,5,126,164,121,115,54,75,156,44,12,28,32,0,4,65,0),(2629,'2015-03-14 14:56:59','2015-03-14 14:56:59',1,30003206,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(2630,'2015-03-14 14:56:59','2015-08-29 14:46:09',1,30000847,205,216,0,320,370,89,0,0,0,0,0,0,0,0,0,0,0,0,21,21,0,0,0,0),(2631,'2015-03-14 14:56:59','2015-03-14 14:56:59',1,30001505,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(2632,'2015-03-14 14:56:59','2015-08-29 14:46:09',1,30000489,0,0,0,0,0,0,0,0,0,26,10,0,0,0,0,0,0,13,4,0,0,0,0,0),(2633,'2015-03-14 14:56:59','2015-08-29 14:46:09',1,30004755,49,2,148,63,11,33,366,148,300,117,36,41,3,0,6,6,126,53,346,257,17,0,356,0),(2634,'2015-03-14 14:56:59','2015-08-29 14:46:09',1,30002887,242,0,0,0,0,0,0,17,8,289,185,230,71,129,306,490,52,0,75,0,177,65,72,0),(2635,'2015-03-14 14:56:59','2015-08-29 14:46:09',1,30001195,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,110,0,0,0,0),(2636,'2015-03-14 14:56:59','2015-08-29 14:46:09',1,30002026,0,8,34,309,106,58,6,0,0,0,0,0,0,0,0,0,0,0,0,0,56,87,0,0),(2637,'2015-03-14 14:56:59','2015-08-29 14:46:09',1,30002174,218,458,201,573,583,205,121,48,136,41,100,376,139,200,103,33,120,1,88,44,61,69,420,0),(2638,'2015-03-14 14:56:59','2015-03-14 14:56:59',1,30004215,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(2639,'2015-03-14 14:56:59','2015-08-29 14:46:09',1,30004637,0,0,0,29,0,0,0,0,24,1,0,0,0,0,0,4,0,0,0,0,0,0,0,0),(2640,'2015-03-14 14:56:59','2015-08-29 14:46:09',1,30003142,0,0,0,28,46,0,0,0,0,0,0,0,0,0,0,0,0,93,0,0,0,0,72,0),(2641,'2015-03-14 14:56:59','2015-08-29 14:46:09',1,30000594,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,19,0),(2642,'2015-03-14 14:56:59','2015-08-29 14:46:09',1,30004410,0,0,0,0,0,0,0,112,0,0,0,0,0,0,11,11,0,0,0,0,0,0,0,0),(2643,'2015-03-14 14:56:59','2015-03-14 14:56:59',1,30000390,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(2644,'2015-03-14 14:56:59','2015-03-14 14:56:59',1,30000366,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(2645,'2015-03-14 14:56:59','2015-08-29 14:46:09',1,30001112,0,0,1,0,0,0,21,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(2646,'2015-03-14 14:56:59','2015-08-29 14:46:09',1,30000843,0,0,0,0,0,0,0,0,0,0,1,0,39,79,56,41,20,0,0,0,0,0,0,0),(2647,'2015-03-14 14:56:59','2015-03-14 14:56:59',1,30001456,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(2648,'2015-03-14 14:56:59','2015-08-29 14:46:09',1,30003634,95,318,154,120,251,5,442,539,131,0,0,0,0,0,0,61,8,0,0,0,0,0,0,0),(2649,'2015-03-14 14:56:59','2015-08-29 14:46:10',1,30002942,505,0,52,152,142,0,1078,99,0,0,156,46,0,0,25,93,210,0,0,0,84,0,0,0),(2650,'2015-03-14 14:56:59','2015-08-29 14:46:10',1,30004513,0,0,0,0,0,0,0,0,0,0,0,0,0,0,40,40,0,0,0,0,0,0,0,0),(2651,'2015-03-14 14:56:59','2015-08-29 14:46:10',1,30000677,0,0,0,0,0,0,0,0,1,0,0,4,16,53,37,0,41,0,7,0,7,5,58,0),(2652,'2015-03-14 14:56:59','2015-03-14 14:56:59',1,30000386,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(2653,'2015-03-14 14:56:59','2015-08-29 14:46:10',1,30001750,0,0,2,0,0,114,44,2,0,0,0,0,0,0,0,0,48,0,35,43,0,0,0,0),(2654,'2015-03-14 14:56:59','2015-08-29 14:46:10',1,30001043,31,1,12,19,14,0,3,10,153,32,51,111,49,48,76,54,154,44,0,37,137,6,96,0),(2655,'2015-03-14 14:56:59','2015-08-29 14:46:10',1,30004373,20,49,102,143,0,0,0,0,0,0,0,0,51,0,0,0,0,0,22,111,203,279,61,0),(2656,'2015-03-14 14:56:59','2015-08-29 14:46:10',1,30004589,134,22,42,23,39,200,0,10,0,0,0,0,0,11,15,4,11,0,0,0,0,0,20,0),(2657,'2015-03-14 14:56:59','2015-08-29 14:46:10',1,30001941,0,0,0,0,0,0,0,0,100,22,0,0,37,0,0,0,8,0,0,0,0,32,11,0),(2658,'2015-03-14 14:56:59','2015-08-29 14:46:10',1,30001230,0,0,0,0,0,0,4,0,94,42,55,109,0,0,1,4,0,0,1,131,0,0,0,0),(2659,'2015-03-14 14:56:59','2015-08-29 14:46:10',1,30000538,0,0,0,0,0,0,34,0,0,0,0,0,0,0,0,0,0,0,58,160,0,0,0,0),(2660,'2015-03-14 14:56:59','2015-08-29 14:46:10',1,30001013,23,25,58,47,99,21,85,46,1,0,0,140,0,0,0,0,0,0,0,0,0,0,0,0),(2661,'2015-03-14 14:56:59','2015-08-29 14:46:10',1,30002285,0,6,0,2,43,0,21,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(2662,'2015-03-14 14:56:59','2015-03-14 14:56:59',1,30001800,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(2663,'2015-03-14 14:56:59','2015-08-29 14:46:10',1,30004312,0,248,0,150,21,133,0,0,0,0,59,87,0,0,0,0,0,0,0,0,30,0,0,0),(2664,'2015-03-14 14:56:59','2015-08-29 14:46:10',1,30004385,192,282,354,196,204,149,0,163,89,41,100,395,241,97,135,254,0,524,89,151,133,31,134,0),(2665,'2015-03-14 14:56:59','2015-08-29 14:46:10',1,30004460,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,91,0,0),(2666,'2015-03-14 14:56:59','2015-08-29 14:46:10',1,30005158,0,0,0,4,4,0,0,0,17,147,51,14,35,54,0,0,0,0,0,0,0,0,0,0),(2667,'2015-03-14 14:56:59','2015-08-29 14:46:10',1,30004514,0,0,0,0,0,2,0,0,0,0,0,0,12,0,0,0,1,0,0,0,0,0,0,0),(2668,'2015-03-14 14:56:59','2015-08-29 14:46:10',1,30001055,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,3,0,0,0,0,0,0,0),(2669,'2015-03-14 14:56:59','2015-08-29 14:46:10',1,30001225,0,0,0,0,0,0,0,0,0,0,4,6,0,0,0,0,0,0,0,0,0,0,0,0),(2670,'2015-03-14 14:56:59','2015-08-29 14:46:10',1,30003864,54,17,18,42,23,5,15,20,60,19,72,113,66,25,20,77,48,49,173,44,19,54,0,0),(2671,'2015-03-14 14:56:59','2015-08-29 14:46:10',1,30000148,436,840,498,448,556,778,217,122,176,348,162,222,271,289,211,306,297,176,182,229,239,460,292,0),(2672,'2015-03-14 14:56:59','2015-08-29 14:46:10',1,30004125,70,149,18,22,0,241,55,59,52,0,79,54,2,53,80,174,77,125,1,97,34,135,155,0),(2673,'2015-03-14 14:56:59','2015-08-29 14:46:10',1,30003554,24,34,143,1,1,59,44,68,41,67,46,139,66,144,71,30,107,53,26,80,68,40,77,0),(2674,'2015-03-14 14:56:59','2015-08-29 14:46:10',1,30001050,0,0,0,1,1,1,0,0,0,57,0,0,0,7,7,0,0,0,0,1,0,0,71,0),(2675,'2015-03-14 14:56:59','2015-08-29 14:46:10',1,30001385,16,91,1,11,8,12,0,45,79,3,1,23,0,21,21,13,58,22,0,9,4,24,20,0),(2676,'2015-03-14 14:56:59','2015-08-29 14:46:10',1,30000071,29,0,78,426,183,0,49,0,4,75,175,12,25,31,66,102,0,0,0,0,42,7,3,0),(2677,'2015-03-14 14:56:59','2015-08-29 14:46:10',1,30000060,84,131,88,52,51,41,89,65,90,110,59,75,58,71,124,82,74,75,25,50,95,0,109,0),(2678,'2015-03-14 14:56:59','2015-08-29 14:46:10',1,30000082,64,24,49,5,6,1,0,7,41,75,55,90,247,5,15,18,0,13,56,17,58,60,31,0),(2679,'2015-03-14 14:56:59','2015-08-29 14:46:10',1,30000004,50,204,76,100,74,68,37,9,53,97,15,38,34,98,163,112,0,151,25,168,58,91,57,0),(2680,'2015-03-14 14:56:59','2015-08-29 14:46:10',1,30003080,29,93,80,0,0,36,114,2,141,25,76,20,10,2,2,8,11,0,161,63,45,56,23,0),(2681,'2015-03-14 14:56:59','2015-08-29 14:46:10',1,30002263,49,198,111,124,37,160,23,109,154,392,263,146,163,201,173,177,50,6,87,92,186,85,178,0),(2682,'2015-03-14 14:56:59','2015-08-29 14:46:10',1,30001653,38,54,132,62,57,18,84,56,5,65,45,91,31,79,190,197,61,28,132,72,30,45,40,0),(2683,'2015-03-14 14:56:59','2015-08-29 14:46:10',1,30003029,87,170,649,125,286,72,159,37,242,160,142,165,170,54,75,85,163,52,106,131,264,127,75,0),(2684,'2015-03-14 14:56:59','2015-08-29 14:46:10',1,30004241,4,27,45,38,27,23,20,68,15,39,27,0,19,0,0,0,0,0,0,0,0,4,3,0),(2685,'2015-03-14 14:56:59','2015-08-29 14:46:10',1,30003551,0,37,0,0,0,0,15,62,39,235,136,120,21,0,0,0,86,3,158,0,1,31,5,0),(2686,'2015-03-14 14:56:59','2015-08-29 14:46:10',1,30000121,125,67,327,116,105,44,74,185,113,176,161,74,155,274,196,167,257,78,178,53,200,346,125,0),(2687,'2015-03-14 14:56:59','2015-08-29 14:46:10',1,30003107,0,0,0,0,66,0,125,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(2688,'2015-03-14 14:56:59','2015-08-29 14:46:10',1,30002564,35,55,28,106,41,28,78,0,0,119,90,42,100,85,92,222,21,41,21,0,0,72,54,0),(2689,'2015-03-14 14:56:59','2015-08-29 14:46:10',1,30002336,0,0,0,0,39,0,0,0,224,0,0,0,40,0,0,0,0,0,177,282,0,0,0,0),(2690,'2015-03-14 14:56:59','2015-08-29 14:46:10',1,30000045,9,0,38,42,112,20,0,0,27,35,67,43,138,0,0,0,0,15,10,0,10,25,14,0),(2691,'2015-03-14 14:56:59','2015-08-29 14:46:10',1,30000022,3,22,43,39,28,0,0,48,0,0,0,0,70,0,0,0,2,0,0,0,0,0,0,0),(2692,'2015-03-14 14:56:59','2015-03-14 14:56:59',1,30000381,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(2693,'2015-03-14 14:56:59','2015-08-29 14:46:10',1,30001777,0,0,0,0,0,0,0,0,0,0,0,2,0,0,0,0,0,0,2,0,0,0,0,0),(2694,'2015-03-14 14:56:59','2015-08-29 14:46:10',1,30001185,73,43,107,190,86,168,35,0,120,137,241,205,636,121,137,138,238,804,373,153,607,588,146,0),(2695,'2015-03-14 14:56:59','2015-08-29 14:46:10',1,30001971,191,0,110,0,46,145,14,117,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(2696,'2015-03-14 14:56:59','2015-03-14 14:56:59',1,30003148,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(2697,'2015-03-14 14:56:59','2015-08-29 14:46:10',1,30002112,0,0,0,0,0,0,0,126,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(2698,'2015-03-14 14:56:59','2015-08-29 14:46:10',1,30002006,3,15,1,50,16,8,0,198,33,28,64,99,19,116,95,93,195,36,70,72,230,132,179,0),(2699,'2015-03-14 14:56:59','2015-08-29 14:46:10',1,30004192,280,1077,69,212,94,400,0,0,796,837,736,770,711,432,469,888,161,880,1080,980,519,473,153,0),(2700,'2015-03-14 14:56:59','2015-08-29 14:46:10',1,30002500,379,115,65,145,53,19,0,63,9,9,7,0,39,0,0,0,0,0,0,5,0,0,0,0),(2701,'2015-03-14 14:56:59','2015-08-29 14:46:10',1,30005083,11,14,0,0,0,49,67,9,0,0,1,0,0,0,0,0,0,0,0,88,30,3,8,0),(2702,'2015-03-14 14:56:59','2015-08-29 14:46:10',1,30003760,213,39,100,3,91,84,298,231,62,47,23,233,55,22,1,0,0,0,0,14,57,0,0,0),(2703,'2015-03-14 14:56:59','2015-08-29 14:46:10',1,30002692,296,123,217,145,126,175,109,229,421,409,510,551,275,221,311,325,379,239,266,519,249,339,240,0),(2704,'2015-03-14 14:56:59','2015-08-29 14:46:10',1,30005033,2,9,0,0,0,42,231,408,3,41,28,12,16,0,0,7,7,41,10,130,12,11,0,0),(2705,'2015-03-14 14:56:59','2015-08-29 14:46:10',1,30004148,5,0,4,0,0,0,15,0,0,0,0,0,0,0,0,22,22,5,14,14,3,0,0,0),(2706,'2015-03-14 14:56:59','2015-08-29 14:46:10',1,30000608,0,0,0,0,0,70,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(2707,'2015-03-14 14:56:59','2015-08-29 14:46:10',1,30002748,121,67,424,1144,1092,85,84,255,219,183,269,142,215,331,385,490,166,6,42,108,326,275,81,0),(2708,'2015-03-14 14:56:59','2015-08-29 14:46:10',1,30004281,75,3,17,36,36,24,82,0,0,74,94,0,0,0,0,30,287,3,0,17,56,0,21,0),(2709,'2015-03-14 14:56:59','2015-08-29 14:46:10',1,30002254,97,51,37,80,22,24,88,42,80,49,113,109,207,65,64,33,61,88,45,16,63,22,79,0),(2710,'2015-03-14 14:56:59','2015-08-29 14:46:10',1,30004132,78,34,35,2,31,88,0,0,45,14,19,30,32,31,49,48,128,88,33,35,7,9,59,0),(2711,'2015-03-14 14:56:59','2015-08-29 14:46:10',1,30003532,82,87,90,37,85,97,43,17,46,87,120,119,41,138,99,109,49,16,24,23,201,118,103,0),(2712,'2015-03-14 14:56:59','2015-08-29 14:46:10',1,30000451,4,0,3,4,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(2713,'2015-03-14 14:56:59','2015-03-14 14:56:59',1,30001451,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(2714,'2015-03-14 14:56:59','2015-08-29 14:46:10',1,30004575,0,0,129,0,0,0,0,0,0,0,0,0,0,0,0,7,0,0,0,0,0,0,0,0),(2715,'2015-03-14 14:56:59','2015-08-29 14:46:10',1,30001243,0,0,0,0,0,0,0,0,0,128,77,0,0,0,0,0,0,0,0,0,0,0,0,0),(2716,'2015-03-14 14:56:59','2015-08-29 14:46:10',1,30003285,0,13,0,0,0,0,0,0,3,0,0,0,8,5,3,3,0,0,7,0,0,0,128,0),(2717,'2015-03-14 14:56:59','2015-08-29 14:46:10',1,30003661,4,3,0,93,151,52,130,305,10,101,187,0,4,3,12,9,8,0,23,16,4,18,386,0),(2718,'2015-03-14 14:56:59','2015-08-29 14:46:10',1,30004667,0,136,0,0,0,47,0,77,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(2719,'2015-03-14 14:56:59','2015-08-29 14:46:10',1,30004435,63,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,70,0,4,30,0,0),(2720,'2015-03-14 14:56:59','2015-08-29 14:46:10',1,30004839,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,156,0,0,0,0),(2721,'2015-03-14 14:56:59','2015-08-29 14:46:10',1,30001706,28,227,33,111,99,133,57,0,16,0,48,182,188,324,270,265,247,53,45,231,294,82,24,0),(2722,'2015-03-14 14:56:59','2015-08-29 14:46:10',1,30005046,95,254,104,67,113,229,202,57,104,208,228,77,147,153,168,187,231,104,250,166,146,60,113,0),(2723,'2015-03-14 14:56:59','2015-08-29 14:46:10',1,30000142,70,20,8,138,101,79,48,8,37,71,67,131,71,126,137,99,0,32,28,52,110,0,14,0),(2724,'2015-03-14 14:56:59','2015-08-29 14:46:10',1,30004684,158,0,0,137,0,0,0,52,0,0,0,0,0,0,0,0,0,0,0,191,0,0,0,0),(2725,'2015-03-14 14:56:59','2015-08-29 14:46:10',1,30004836,0,0,0,0,0,0,0,0,0,0,270,591,0,0,98,304,635,0,0,0,160,431,444,0),(2726,'2015-03-14 14:56:59','2015-08-29 14:46:10',1,30004515,0,16,0,0,0,0,0,44,0,0,0,0,0,0,0,0,0,0,0,0,0,4,49,0),(2727,'2015-03-14 14:56:59','2015-08-29 14:46:10',1,30002150,182,35,1,0,0,152,26,51,2,54,0,0,0,0,0,5,0,0,0,4,7,125,118,0),(2728,'2015-03-14 14:56:59','2015-03-14 14:56:59',1,30001636,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(2729,'2015-03-14 14:56:59','2015-08-29 14:46:10',1,30001593,0,0,0,0,0,0,0,0,0,0,0,0,118,0,0,0,165,0,0,0,0,0,0,0),(2730,'2015-03-14 14:56:59','2015-08-29 14:46:10',1,30001556,0,0,0,0,0,0,0,0,0,47,47,0,0,0,0,0,0,0,0,0,1,1,74,0),(2731,'2015-03-14 14:56:59','2015-08-29 14:46:10',1,30000708,2,117,11,0,0,0,0,3,0,0,0,0,0,0,0,0,143,0,0,0,0,0,0,0),(2732,'2015-03-14 14:56:59','2015-08-29 14:46:10',1,30005161,0,0,0,0,0,0,0,0,0,49,31,341,0,187,119,278,436,0,0,72,83,0,0,0),(2733,'2015-03-14 14:56:59','2015-08-29 14:46:10',1,30000662,0,13,9,0,0,7,10,0,0,0,0,5,173,0,0,0,0,0,0,0,0,3,0,0),(2734,'2015-03-14 14:56:59','2015-08-29 14:46:10',1,30001542,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,17,0,149,0),(2735,'2015-03-14 14:56:59','2015-08-29 14:46:10',1,30004462,0,0,0,0,0,0,0,0,89,38,0,0,0,0,0,0,0,0,0,0,25,133,0,0),(2736,'2015-03-14 14:56:59','2015-08-29 14:46:10',1,30004086,26,62,98,223,220,104,69,0,167,48,81,18,116,168,128,46,58,170,148,389,332,123,216,0),(2737,'2015-03-14 14:56:59','2015-08-29 14:46:10',1,30000078,3,3,0,5,4,41,30,3,0,0,0,22,108,0,0,1,11,0,0,19,66,30,0,0),(2738,'2015-03-14 14:56:59','2015-08-29 14:46:10',1,30004974,131,239,228,67,114,59,114,65,138,208,210,89,112,249,102,134,223,33,27,69,172,242,113,0),(2739,'2015-03-14 14:56:59','2015-08-29 14:46:10',1,30002679,202,105,114,85,145,67,97,50,21,327,421,116,179,119,84,106,113,179,141,349,196,211,55,0),(2740,'2015-03-14 14:56:59','2015-08-29 14:46:10',1,30003387,6,114,133,48,51,61,63,23,37,0,18,47,52,125,32,20,14,8,0,210,22,20,176,0),(2741,'2015-03-14 14:56:59','2015-08-29 14:46:10',1,30002210,34,18,56,52,89,100,23,23,0,32,29,2,28,48,50,20,47,79,13,4,42,108,27,0),(2742,'2015-03-14 14:56:59','2015-08-29 14:46:10',1,30004088,24,137,80,14,115,48,6,32,100,129,172,134,244,84,119,74,140,229,58,213,536,510,241,0),(2743,'2015-03-14 14:56:59','2015-08-29 14:46:10',1,30001046,0,0,23,0,0,0,5,0,0,0,0,1,3,1,11,38,21,4,18,21,0,29,32,0),(2744,'2015-03-14 14:56:59','2015-08-29 14:46:10',1,30002567,66,192,13,141,8,0,27,65,11,58,70,58,11,16,11,9,9,0,14,46,0,0,33,0),(2745,'2015-03-14 14:56:59','2015-08-29 14:46:10',1,30000156,302,261,427,233,292,252,375,442,245,448,480,234,398,463,563,462,301,197,468,279,301,314,291,0),(2746,'2015-03-14 14:56:59','2015-08-29 14:46:10',1,30003447,207,136,173,9,33,203,77,77,61,258,241,222,132,183,234,220,282,83,105,202,47,105,114,0),(2747,'2015-03-14 14:56:59','2015-08-29 14:46:10',1,30001423,150,296,274,141,26,77,31,73,210,174,295,279,153,333,293,91,304,54,160,147,46,306,280,0),(2748,'2015-03-14 14:56:59','2015-08-29 14:46:10',1,30011392,461,420,342,394,254,456,391,249,450,421,382,441,683,1009,690,411,461,230,413,571,451,476,416,0),(2749,'2015-03-14 14:56:59','2015-08-29 14:46:10',1,30005321,3,10,5,30,21,69,6,0,0,0,2,0,7,0,6,15,34,0,3,5,9,37,48,0),(2750,'2015-03-14 14:56:59','2015-08-29 14:46:10',1,30004731,78,0,0,0,0,0,0,0,0,0,16,116,13,0,0,0,0,0,0,53,33,0,0,0),(2751,'2015-03-14 14:56:59','2015-08-29 14:46:10',1,30005136,0,0,0,0,0,0,0,0,0,0,3,2,12,5,0,0,3,0,3,14,0,4,6,0),(2752,'2015-03-14 14:56:59','2015-08-29 14:46:10',1,30000901,0,0,0,0,0,0,0,0,61,0,0,0,0,0,0,0,0,0,5,5,0,0,0,0),(2753,'2015-03-14 14:56:59','2015-03-14 14:56:59',1,30000363,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(2754,'2015-03-14 14:56:59','2015-08-29 14:46:10',1,30000548,14,7,18,16,12,1,0,13,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(2755,'2015-03-14 14:56:59','2015-08-29 14:46:10',1,30004330,0,0,0,361,405,0,91,0,0,44,42,0,38,0,0,21,40,0,0,0,32,0,0,0),(2756,'2015-03-14 14:56:59','2015-08-29 14:46:10',1,30001851,0,1,0,0,0,0,0,0,0,0,0,0,1,36,0,0,0,0,0,1,80,4,132,0),(2757,'2015-03-14 14:56:59','2015-03-14 14:56:59',1,30001494,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(2758,'2015-03-14 14:56:59','2015-08-29 14:46:10',1,30003664,53,17,0,0,0,0,0,0,0,50,50,0,0,0,0,0,0,0,6,0,0,0,0,0),(2759,'2015-03-14 14:56:59','2015-08-29 14:46:10',1,30002821,0,0,0,0,0,0,60,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,123,0),(2760,'2015-03-14 14:56:59','2015-08-29 14:46:10',1,30002323,0,0,0,0,3,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(2761,'2015-03-14 14:56:59','2015-08-29 14:46:10',1,30004324,247,166,190,202,116,229,362,99,71,0,161,63,0,192,257,272,43,55,30,23,324,139,130,0),(2762,'2015-03-14 14:56:59','2015-08-29 14:46:10',1,30002911,830,667,955,740,476,764,335,325,450,320,354,429,287,899,718,679,562,669,935,619,471,931,383,0),(2763,'2015-03-14 14:56:59','2015-08-29 14:46:10',1,30001937,0,0,0,0,0,0,23,66,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(2764,'2015-03-14 14:56:59','2015-08-29 14:46:10',1,30000051,9,1,8,30,0,66,47,25,57,172,70,36,30,44,87,119,106,20,26,23,47,98,22,0),(2765,'2015-03-14 14:56:59','2015-08-29 14:46:10',1,30001738,26,0,0,116,0,28,38,0,4,4,0,0,74,29,12,77,116,0,0,47,18,18,0,0),(2766,'2015-03-14 14:56:59','2015-08-29 14:46:10',1,30001743,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,92,0,0,0),(2767,'2015-03-14 14:56:59','2015-08-29 14:46:10',1,30005308,136,397,309,488,491,388,205,366,414,608,596,505,643,630,785,800,297,218,732,477,294,261,392,0),(2768,'2015-03-14 14:56:59','2015-08-29 14:46:10',1,30000987,0,35,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(2769,'2015-03-14 14:56:59','2015-08-29 14:46:10',1,30003083,90,4,3,101,103,6,41,0,14,0,70,44,8,3,0,0,2,6,3,29,76,0,130,0),(2770,'2015-03-14 14:56:59','2015-08-29 14:46:10',1,30003016,111,108,281,103,149,145,353,271,132,358,405,418,272,378,252,190,327,54,24,121,135,272,36,0),(2771,'2015-03-14 14:56:59','2015-08-29 14:46:10',1,30003013,146,284,285,225,267,268,149,422,177,282,265,282,247,503,331,237,699,46,151,374,277,332,304,0),(2772,'2015-03-14 14:56:59','2015-08-29 14:46:10',1,30001315,0,0,0,0,0,0,0,20,0,44,6,0,0,0,0,0,0,0,0,0,0,3,0,0),(2773,'2015-03-14 14:56:59','2015-08-29 14:46:10',1,30002803,450,674,644,586,444,162,473,181,389,819,532,666,1258,1278,998,1052,1034,668,674,950,1048,1026,967,0),(2774,'2015-03-14 14:56:59','2015-08-29 14:46:10',1,30004883,939,930,670,467,351,56,441,252,745,293,128,418,559,285,194,292,517,232,281,218,623,311,385,0),(2775,'2015-03-14 14:56:59','2015-08-29 14:46:10',1,30001567,0,21,0,2,0,0,0,17,0,0,1,0,0,0,102,208,0,0,0,0,0,0,0,0),(2776,'2015-03-14 14:56:59','2015-08-29 14:46:10',1,30001948,0,51,13,0,0,0,0,0,6,23,46,13,0,0,0,0,0,25,29,40,29,76,26,0),(2777,'2015-03-14 14:56:59','2015-08-29 14:46:10',1,30001007,63,121,66,92,64,10,92,79,7,9,0,0,91,0,0,0,0,0,5,0,0,0,15,0),(2778,'2015-03-14 14:56:59','2015-08-29 14:46:10',1,30001190,0,0,0,0,0,0,0,0,4,102,215,47,111,112,165,216,25,174,151,234,130,12,5,0),(2779,'2015-03-14 14:56:59','2015-03-14 14:56:59',1,30001793,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(2780,'2015-03-14 14:56:59','2015-03-14 14:56:59',1,30001495,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(2781,'2015-03-14 14:56:59','2015-03-14 14:56:59',1,30003264,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(2782,'2015-03-14 14:56:59','2015-03-14 14:56:59',1,30000640,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(2783,'2015-03-14 14:56:59','2015-03-14 14:56:59',1,30005135,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(2784,'2015-03-14 14:56:59','2015-08-29 14:46:10',1,30004952,162,89,0,0,0,528,292,0,0,0,0,0,0,30,72,51,0,0,0,0,45,0,0,0),(2785,'2015-03-14 14:56:59','2015-08-29 14:46:10',1,30000325,1140,181,444,325,349,735,540,855,445,293,289,374,630,672,577,670,172,214,24,103,316,423,336,0),(2786,'2015-03-14 14:56:59','2015-08-29 14:46:10',1,30004912,55,80,323,188,384,76,0,72,57,258,228,87,85,141,48,120,0,3,32,270,276,143,75,0),(2787,'2015-03-14 14:56:59','2015-08-29 14:46:10',1,30005120,0,6,0,0,0,0,5,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(2788,'2015-03-14 14:56:59','2015-08-29 14:46:10',1,30004751,0,0,0,0,0,0,112,5,29,0,0,0,27,13,7,0,0,0,0,0,0,0,51,0),(2789,'2015-03-14 14:56:59','2015-08-29 14:46:10',1,30000890,74,312,398,103,217,235,287,102,546,625,415,534,322,368,365,264,426,295,360,421,175,259,247,0),(2790,'2015-03-14 14:56:59','2015-08-29 14:46:10',1,30004379,255,8,420,236,189,188,307,233,296,302,184,0,99,100,288,581,169,209,157,161,224,63,618,0),(2791,'2015-03-14 14:56:59','2015-08-29 14:46:10',1,30004490,858,478,27,163,276,66,122,148,616,197,193,436,513,26,222,246,9,0,0,177,661,548,860,0),(2792,'2015-03-14 14:56:59','2015-08-29 14:46:10',1,30001011,17,0,0,0,0,25,0,0,1,2,2,8,0,57,15,0,0,4,19,10,0,0,3,0),(2793,'2015-03-14 14:56:59','2015-08-29 14:46:10',1,30003969,63,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(2794,'2015-03-14 14:56:59','2015-08-29 14:46:10',1,30001550,0,0,0,0,0,0,0,0,0,2,5,0,0,0,0,0,0,0,0,0,0,0,0,0),(2795,'2015-03-14 14:56:59','2015-08-29 14:46:10',1,30001000,0,106,0,49,15,0,0,39,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(2796,'2015-03-14 14:56:59','2015-08-29 14:46:10',1,30004475,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,233,0,0,0,0,0,159,0),(2797,'2015-03-14 14:56:59','2015-08-29 14:46:10',1,30003982,0,0,0,0,0,0,0,0,0,0,0,0,0,0,75,132,0,0,0,0,0,0,0,0),(2798,'2015-03-14 14:56:59','2015-08-29 14:46:10',1,30001006,1,0,0,8,0,0,65,89,0,44,33,0,0,0,0,3,0,2,8,0,1,49,98,0),(2799,'2015-03-14 14:56:59','2015-08-29 14:46:10',1,30001026,0,0,0,7,17,33,0,17,15,90,43,25,0,0,35,54,0,0,0,22,4,7,17,0),(2800,'2015-03-14 14:56:59','2015-08-29 14:46:10',1,30000631,0,0,0,180,48,0,0,0,0,0,0,0,0,0,0,0,0,48,0,0,0,0,0,0),(2801,'2015-03-14 14:56:59','2015-08-29 14:46:10',1,30004421,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,53,0,0,0,0,0,0,0,0),(2802,'2015-03-14 14:56:59','2015-08-29 14:46:10',1,30001543,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,4,0,0,0,84,0),(2803,'2015-03-14 14:56:59','2015-08-29 14:46:10',1,30003998,0,0,0,0,0,0,0,0,0,0,0,48,0,0,0,0,0,0,0,0,0,0,0,0),(2804,'2015-03-14 14:56:59','2015-08-29 14:46:10',1,30001572,5,0,0,0,0,0,0,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(2805,'2015-03-14 14:56:59','2015-08-29 14:46:10',1,30003972,60,5,414,118,30,0,0,14,0,0,0,3,0,0,0,0,0,0,0,81,122,31,0,0),(2806,'2015-03-14 14:56:59','2015-08-29 14:46:10',1,30001172,0,0,0,0,25,0,0,0,2,0,0,0,0,0,0,0,0,24,0,0,0,131,0,0),(2807,'2015-03-14 14:56:59','2015-08-29 14:46:10',1,30003758,132,143,150,296,187,115,223,218,4,46,39,5,0,74,116,219,85,0,126,66,0,0,39,0),(2808,'2015-03-14 14:56:59','2015-08-29 14:46:10',1,30003764,274,33,113,217,38,155,0,45,108,136,382,446,125,174,64,105,388,146,255,234,344,211,424,0),(2809,'2015-03-14 14:56:59','2015-08-29 14:46:10',1,30000665,0,0,6,0,0,0,0,0,0,0,0,0,25,18,0,98,0,67,10,18,0,0,0,0),(2810,'2015-03-14 14:56:59','2015-08-29 14:46:10',1,30002464,392,290,0,199,121,239,0,183,63,57,166,17,0,68,68,57,0,0,0,0,46,93,0,0),(2811,'2015-03-14 14:56:59','2015-08-29 14:46:10',1,30001274,92,39,79,20,11,41,42,127,1,30,5,94,51,18,19,20,89,44,6,6,0,112,22,0),(2812,'2015-03-14 14:56:59','2015-08-29 14:46:10',1,30004017,0,0,0,0,0,0,0,0,307,28,171,187,67,3,4,7,8,0,0,0,33,0,253,0),(2813,'2015-03-14 14:56:59','2015-08-29 14:46:10',1,30002447,247,14,10,350,165,151,21,2,0,0,0,0,0,4,9,9,36,7,0,0,110,103,80,0),(2814,'2015-03-14 14:56:59','2015-08-29 14:46:10',1,30001762,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,160,0,21,0),(2815,'2015-03-14 14:56:59','2015-08-29 14:46:10',1,30003687,187,0,60,49,32,178,29,0,0,0,0,6,10,35,0,0,105,0,0,0,15,156,23,0),(2816,'2015-03-14 14:56:59','2015-08-29 14:46:10',1,30003279,0,128,0,0,0,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(2817,'2015-03-14 14:56:59','2015-08-29 14:46:10',1,30002900,2000,384,116,175,134,393,1700,123,422,520,477,916,762,830,756,700,1400,690,914,296,960,773,614,0),(2818,'2015-03-14 14:56:59','2015-08-29 14:46:10',1,30000659,0,0,5,0,0,0,0,49,0,0,0,3,0,0,0,0,2,0,0,0,0,0,0,0),(2819,'2015-03-14 14:56:59','2015-08-29 14:46:10',1,30001238,0,0,0,0,0,0,0,0,0,0,0,77,0,136,137,18,0,28,36,4,0,0,0,0),(2820,'2015-03-14 14:56:59','2015-08-29 14:46:10',1,30002872,167,260,222,453,452,301,471,245,97,245,292,76,190,160,92,138,203,0,0,15,271,371,433,0),(2821,'2015-03-14 14:56:59','2015-03-14 14:56:59',1,30000369,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(2822,'2015-03-14 14:56:59','2015-08-29 14:46:10',1,30003950,0,10,5,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,9,0,0),(2823,'2015-03-14 14:56:59','2015-08-29 14:46:10',1,30000510,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0),(2824,'2015-03-14 14:56:59','2015-08-29 14:46:10',1,30000653,489,0,0,0,0,36,0,253,27,29,21,124,0,0,0,43,200,0,59,29,120,339,25,0),(2825,'2015-03-14 14:56:59','2015-08-29 14:46:10',1,30001040,5,3,1,8,2,3,0,0,5,31,4,3,0,5,27,55,7,2,0,0,3,6,2,0),(2826,'2015-03-14 14:56:59','2015-03-14 14:56:59',1,30004572,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(2827,'2015-03-14 14:56:59','2015-08-29 14:46:10',1,30000244,0,70,0,0,0,84,0,0,97,0,0,0,1,0,0,0,14,0,0,0,119,0,1,0),(2828,'2015-03-14 14:56:59','2015-08-29 14:46:10',1,30002873,0,0,0,0,0,3,0,0,5,0,0,0,0,0,0,0,0,0,0,0,0,0,105,0),(2829,'2015-03-14 14:56:59','2015-08-29 14:46:10',1,30001231,0,106,63,92,31,3,81,49,0,0,2,0,131,0,0,0,0,0,0,0,13,210,0,0),(2830,'2015-03-14 14:56:59','2015-08-29 14:46:10',1,30002789,209,96,237,234,205,156,182,217,155,195,227,190,131,182,201,232,235,63,87,147,83,152,192,0),(2831,'2015-03-14 14:56:59','2015-08-29 14:46:10',1,30002417,0,0,25,1,0,31,0,47,1,0,0,0,0,0,0,0,40,0,0,0,54,0,0,0),(2832,'2015-03-14 14:56:59','2015-08-29 14:46:10',1,30004095,139,103,361,131,129,46,113,96,69,74,130,105,50,308,354,261,167,121,115,78,57,138,186,0),(2833,'2015-03-14 14:56:59','2015-08-29 14:46:10',1,30003873,4,70,30,5,9,49,0,3,0,152,135,37,32,1,2,12,49,2,18,0,128,55,228,0),(2834,'2015-03-14 14:56:59','2015-08-29 14:46:10',1,30002751,383,272,370,243,205,205,226,189,219,416,270,274,188,188,256,329,183,89,165,148,348,151,201,0),(2835,'2015-03-14 14:56:59','2015-08-29 14:46:10',1,30003887,0,1,0,0,45,0,93,104,0,0,0,0,0,0,0,0,2,0,0,0,0,0,0,0),(2836,'2015-03-14 14:56:59','2015-08-29 14:46:10',1,30001405,721,556,325,333,328,389,356,488,513,793,696,611,826,622,713,787,482,411,504,702,951,790,668,0),(2837,'2015-03-14 14:56:59','2015-08-29 14:46:10',1,30002747,160,553,371,919,1120,336,169,98,174,210,58,139,472,76,71,208,333,193,138,516,202,172,127,0),(2838,'2015-03-14 14:56:59','2015-08-29 14:46:10',1,30004115,102,50,85,48,61,94,89,29,310,97,238,257,74,231,134,26,92,29,7,81,55,261,125,0),(2839,'2015-03-14 14:56:59','2015-08-29 14:46:10',1,30003069,2,7,5,4,3,4,23,14,3,2,0,3,1,0,0,1,13,6,0,1,7,3,13,0),(2840,'2015-03-14 14:56:59','2015-08-29 14:46:10',1,30004239,0,0,0,0,0,0,0,0,30,0,0,0,2,0,0,0,0,7,25,0,8,9,1,0),(2841,'2015-03-14 14:56:59','2015-08-29 14:46:10',1,30002782,86,188,149,187,170,218,117,110,63,50,213,150,90,138,73,130,200,89,63,258,181,189,138,0),(2842,'2015-03-14 14:56:59','2015-08-29 14:46:10',1,30001406,1037,1099,462,570,558,820,993,784,1297,1639,1680,1419,949,1053,1118,1064,985,1094,1080,1237,1374,1548,1192,0),(2843,'2015-03-14 14:56:59','2015-08-29 14:46:10',1,30021392,471,756,872,682,587,786,897,732,827,901,867,875,1120,1223,1042,1231,780,709,796,844,1039,734,810,0),(2844,'2015-03-14 14:56:59','2015-08-29 14:46:10',1,30004306,37,24,9,56,28,1,17,0,0,40,0,0,0,25,18,5,0,0,0,0,9,42,80,0),(2845,'2015-03-14 14:56:59','2015-08-29 14:46:10',1,30001742,26,0,19,9,12,29,59,76,186,7,12,15,10,87,90,54,2,0,273,87,17,72,94,0),(2846,'2015-03-14 14:56:59','2015-08-29 14:46:10',1,30001440,73,69,5,0,0,0,38,6,4,4,0,2,3,86,100,47,85,0,1,170,56,50,1,0),(2847,'2015-03-14 14:56:59','2015-08-29 14:46:10',1,30004134,53,20,118,75,38,8,16,75,43,135,59,24,89,83,43,37,33,30,77,67,0,34,4,0),(2848,'2015-03-14 14:56:59','2015-08-29 14:46:10',1,30000030,35,108,27,68,54,28,49,161,61,15,26,68,59,0,0,1,183,29,0,122,66,44,2,0),(2849,'2015-03-14 14:56:59','2015-08-29 14:46:10',1,30002761,129,87,115,172,107,202,60,44,277,35,113,69,50,143,112,47,51,114,73,31,28,117,133,0),(2850,'2015-03-14 14:56:59','2015-08-29 14:46:10',1,30002416,0,104,3,0,1,0,238,197,17,3,1,179,265,176,57,0,1,4,6,10,1,101,6,0),(2851,'2015-03-14 14:56:59','2015-08-29 14:46:10',1,30002580,139,25,36,0,0,21,1,36,116,7,48,69,0,5,4,4,3,0,1,149,106,56,1,0),(2852,'2015-03-14 14:56:59','2015-08-29 14:46:10',1,30002797,282,743,593,522,405,282,755,525,683,757,607,448,597,890,764,627,741,438,274,515,643,725,477,0),(2853,'2015-03-14 14:56:59','2015-08-29 14:46:10',1,30002749,234,205,195,375,237,174,245,161,153,308,211,257,174,286,248,158,156,42,51,156,207,169,121,0),(2854,'2015-03-14 14:56:59','2015-08-29 14:46:10',1,30000018,0,0,0,0,0,20,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,38,0,0),(2855,'2015-03-14 14:56:59','2015-08-29 14:46:10',1,30001242,0,62,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,5,5,0,0,0,0),(2856,'2015-03-14 14:56:59','2015-08-29 14:46:10',1,30004794,0,0,0,0,0,227,85,147,148,230,230,32,707,429,127,69,140,105,285,129,68,9,421,0),(2857,'2015-03-14 14:56:59','2015-08-29 14:46:10',1,30003729,20,68,7,0,0,0,62,4,11,0,0,0,67,10,3,3,0,0,0,0,0,0,13,0),(2858,'2015-03-14 14:56:59','2015-08-29 14:46:10',1,30002178,290,308,77,20,140,97,0,47,0,0,97,0,0,0,0,0,1,0,32,32,0,0,0,0),(2859,'2015-03-14 14:56:59','2015-08-29 14:46:10',1,30004579,0,0,11,0,0,0,0,0,30,6,30,61,47,59,43,87,0,28,0,32,51,39,90,0),(2860,'2015-03-14 14:56:59','2015-08-29 14:46:10',1,30000737,48,73,7,95,152,85,0,21,69,212,106,353,47,0,0,0,0,0,0,0,277,300,331,0),(2861,'2015-03-14 14:56:59','2015-08-29 14:46:10',1,30001164,0,0,0,0,0,0,0,0,0,0,0,0,4,0,0,0,23,0,0,0,0,0,0,0),(2862,'2015-03-14 14:56:59','2015-03-14 14:56:59',1,30000736,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(2863,'2015-03-14 14:56:59','2015-08-29 14:46:10',1,30002027,47,4,252,3,3,0,121,30,0,0,0,0,0,0,0,146,73,3,0,16,139,4,135,0),(2864,'2015-03-14 14:56:59','2015-08-29 14:46:10',1,30000519,0,0,0,0,0,0,0,0,0,0,0,0,0,0,3,3,0,0,0,0,0,0,0,0),(2865,'2015-03-14 14:56:59','2015-08-29 14:46:10',1,30004295,0,100,34,22,0,88,0,0,0,24,99,3,0,8,8,0,29,0,57,0,0,46,1,0),(2866,'2015-03-14 14:56:59','2015-08-29 14:46:10',1,30003883,10,136,28,102,36,113,4,50,45,9,9,0,27,42,41,3,55,0,0,58,85,68,17,0),(2867,'2015-03-14 14:56:59','2015-08-29 14:46:10',1,30003239,0,0,0,0,0,0,0,0,113,60,68,0,0,0,66,66,0,0,273,41,0,0,0,0),(2868,'2015-03-14 14:56:59','2015-08-29 14:46:10',1,30045346,2,15,18,6,20,4,26,24,11,7,8,16,0,2,49,66,19,9,6,1,38,0,11,0),(2869,'2015-03-14 14:56:59','2015-08-29 14:46:10',1,30004772,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,31,0,0),(2870,'2015-03-14 14:56:59','2015-08-29 14:46:10',1,30045308,14,0,1,89,23,0,85,6,127,78,7,8,4,44,37,17,26,0,12,23,5,1,97,0),(2871,'2015-03-14 14:56:59','2015-08-29 14:46:10',1,30002193,110,137,75,86,169,227,25,84,101,374,246,143,251,145,203,250,213,120,90,180,307,208,63,0),(2872,'2015-03-14 14:56:59','2015-08-29 14:46:10',1,30000098,0,0,0,1,0,2,0,0,0,0,0,0,34,90,109,65,0,49,0,0,0,2,0,0),(2873,'2015-03-14 14:56:59','2015-08-29 14:46:10',1,30000176,205,54,87,241,153,270,46,129,208,193,281,51,255,262,229,154,278,35,100,280,159,163,163,0),(2874,'2015-03-14 14:56:59','2015-08-29 14:46:10',1,30003999,0,0,0,21,0,0,0,0,569,95,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(2875,'2015-03-14 14:56:59','2015-08-29 14:46:10',1,30005206,25,87,41,39,5,165,208,14,50,50,117,43,140,18,62,90,54,43,54,39,34,62,63,0),(2876,'2015-03-14 14:56:59','2015-08-29 14:46:10',1,30004237,0,28,26,3,3,0,17,30,0,0,0,0,31,0,2,2,79,0,0,0,0,0,43,0),(2877,'2015-03-14 14:56:59','2015-08-29 14:46:10',1,30003823,110,58,10,30,31,19,105,0,60,21,10,20,144,69,0,23,8,0,18,0,12,1,41,0),(2878,'2015-03-14 14:56:59','2015-08-29 14:46:10',1,30000116,11,3,36,36,62,0,0,23,184,113,24,182,132,54,0,0,70,15,123,161,3,27,2,0),(2879,'2015-03-14 14:56:59','2015-08-29 14:46:10',1,30005078,83,12,53,63,47,41,140,49,18,48,71,86,220,174,254,128,17,17,190,41,26,114,16,0),(2880,'2015-03-14 14:56:59','2015-03-14 14:56:59',1,30001623,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(2881,'2015-03-14 14:56:59','2015-08-29 14:46:10',1,30011672,0,34,10,42,42,89,18,26,0,50,0,0,1,41,79,64,131,7,71,31,37,73,72,0),(2882,'2015-03-14 14:56:59','2015-08-29 14:46:10',1,30005260,0,48,9,25,20,55,5,0,22,0,0,51,93,29,37,15,0,0,70,0,0,0,4,0),(2883,'2015-03-14 14:56:59','2015-08-29 14:46:10',1,30005066,3,2,0,0,0,0,0,55,0,4,0,0,69,48,18,0,16,0,0,0,0,56,0,0),(2884,'2015-03-14 14:56:59','2015-08-29 14:46:10',1,30005220,176,506,423,503,718,342,469,274,432,736,791,594,513,984,645,867,611,509,469,416,683,938,342,0),(2885,'2015-03-14 14:56:59','2015-08-29 14:46:10',1,30001682,20,1,0,0,0,4,6,18,107,95,37,7,1,78,76,13,2,55,72,64,106,106,15,0),(2886,'2015-03-14 14:56:59','2015-03-14 14:56:59',1,30001515,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(2887,'2015-03-14 14:56:59','2015-08-29 14:46:10',1,30004709,128,0,0,0,0,0,0,0,0,17,43,0,0,29,6,0,18,26,0,0,22,59,54,0),(2888,'2015-03-14 14:56:59','2015-08-29 14:46:10',1,30003343,11,4,63,24,38,0,17,0,26,20,9,0,0,0,0,0,0,0,4,33,109,0,10,0),(2889,'2015-03-14 14:56:59','2015-08-29 14:46:10',1,30001790,0,0,0,0,0,0,0,0,262,109,1,0,61,0,34,151,6,0,0,0,0,0,94,0),(2890,'2015-03-14 14:56:59','2015-08-29 14:46:10',1,30002296,0,0,0,0,2,0,0,0,0,0,0,3,0,0,0,0,0,0,0,0,0,0,0,0),(2891,'2015-03-14 14:56:59','2015-08-29 14:46:10',1,30003190,0,3,0,0,0,0,0,0,0,0,0,0,3,0,0,0,0,0,0,0,60,34,13,0),(2892,'2015-03-14 14:56:59','2015-08-29 14:46:10',1,30001240,0,0,0,0,0,0,0,0,0,0,0,0,5,0,0,0,0,0,12,12,0,0,0,0),(2893,'2015-03-14 14:56:59','2015-08-29 14:46:10',1,30005032,51,18,55,9,0,1,0,0,211,48,47,8,9,0,0,0,56,0,0,8,0,0,0,0),(2894,'2015-03-14 14:56:59','2015-08-29 14:46:10',1,30000117,0,2,0,3,1,17,9,58,47,69,93,100,72,67,101,106,128,21,101,107,105,77,118,0),(2895,'2015-03-14 14:56:59','2015-08-29 14:46:10',1,30004096,41,355,25,11,169,200,22,39,100,151,104,171,271,188,123,160,63,156,124,83,50,27,108,0),(2896,'2015-03-14 14:56:59','2015-08-29 14:46:10',1,30003863,0,17,101,75,25,99,135,24,22,105,156,47,253,249,225,96,36,7,17,264,206,297,257,0),(2897,'2015-03-14 14:56:59','2015-08-29 14:46:10',1,30000056,174,133,22,12,11,2,37,140,194,196,179,56,169,242,297,252,168,120,305,103,137,124,62,0),(2898,'2015-03-14 14:56:59','2015-08-29 14:46:10',1,30003486,0,0,0,0,0,0,0,0,5,2,0,8,0,0,0,0,0,4,0,0,0,0,0,0),(2899,'2015-03-14 14:56:59','2015-08-29 14:46:10',1,30004258,25,0,0,0,0,0,0,0,0,96,104,100,0,0,0,0,50,0,0,0,0,0,52,0),(2900,'2015-03-14 14:56:59','2015-08-29 14:46:10',1,30003490,664,617,547,378,430,360,310,217,557,747,583,277,786,559,745,887,912,252,439,494,864,796,306,0),(2901,'2015-03-14 14:56:59','2015-08-29 14:46:10',1,30001969,0,0,0,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(2902,'2015-03-14 14:56:59','2015-08-29 14:46:10',1,30004209,8,15,15,239,255,380,73,0,8,0,3,4,12,0,0,17,369,212,7,6,0,0,0,0),(2903,'2015-03-14 14:56:59','2015-08-29 14:46:10',1,30000189,83,151,204,163,101,85,54,62,47,187,39,328,263,59,104,114,148,67,91,225,88,177,142,0),(2904,'2015-03-14 14:56:59','2015-08-29 14:46:10',1,30001692,24,96,54,137,107,11,135,0,23,73,0,80,57,67,92,113,24,2,5,104,127,4,4,0),(2905,'2015-03-14 14:56:59','2015-08-29 14:46:10',1,30000024,3,49,33,33,72,86,14,0,88,50,36,17,78,36,9,71,153,179,73,117,67,102,11,0),(2906,'2015-03-14 14:56:59','2015-08-29 14:46:10',1,30004176,0,0,0,0,0,0,0,0,0,0,0,0,83,22,0,0,0,0,0,0,0,0,0,0),(2907,'2015-03-14 14:56:59','2015-08-29 14:46:10',1,30003860,1,298,126,99,95,170,13,43,314,297,184,101,169,309,265,173,93,375,104,192,192,201,189,0),(2908,'2015-03-14 14:56:59','2015-08-29 14:46:10',1,30045314,0,47,6,67,0,0,25,154,0,0,1,3,4,0,0,0,1,7,6,85,2,0,14,0),(2909,'2015-03-14 14:56:59','2015-08-29 14:46:10',1,30001372,77,222,244,94,185,230,118,135,133,114,146,193,200,208,177,177,81,64,68,149,182,158,150,0),(2910,'2015-03-14 14:56:59','2015-08-29 14:46:10',1,30001410,239,247,199,127,112,248,175,95,220,288,317,353,206,148,105,252,287,71,157,147,173,212,285,0),(2911,'2015-03-14 14:56:59','2015-08-29 14:46:10',1,30001360,258,242,18,179,13,45,12,0,68,47,6,14,251,88,111,173,83,192,149,104,65,186,190,0),(2912,'2015-03-14 14:56:59','2015-08-29 14:46:10',1,30000141,355,342,259,282,285,431,363,466,261,350,520,371,483,484,543,596,284,163,269,322,436,541,290,0),(2913,'2015-03-14 14:56:59','2015-08-29 14:46:10',1,30005056,11,267,65,6,8,32,73,20,1,116,291,186,121,181,118,225,92,23,25,82,82,124,173,0),(2914,'2015-03-14 14:56:59','2015-08-29 14:46:10',1,30004376,0,0,0,0,0,0,33,0,0,0,0,0,171,111,181,197,0,0,0,2,61,189,0,0),(2915,'2015-03-14 14:56:59','2015-08-29 14:46:10',1,30004488,1016,39,207,121,46,17,849,38,0,0,0,0,0,0,0,0,0,304,0,0,0,0,605,0),(2916,'2015-03-14 14:56:59','2015-08-29 14:46:10',1,30001264,0,135,1,0,0,85,2,3,41,0,1,0,0,0,0,0,126,0,0,0,0,0,16,0),(2917,'2015-03-14 14:56:59','2015-08-29 14:46:10',1,30004340,0,0,65,0,0,12,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,78,0),(2918,'2015-03-14 14:56:59','2015-08-29 14:46:10',1,30003458,7,39,17,8,84,77,106,68,12,17,40,30,178,95,117,94,133,58,36,89,162,216,224,0),(2919,'2015-03-14 14:56:59','2015-08-29 14:46:10',1,30002414,35,10,0,33,11,210,0,0,4,37,60,28,40,3,1,1,141,0,3,0,8,14,26,0),(2920,'2015-03-14 14:56:59','2015-08-29 14:46:10',1,30002566,61,22,11,268,1,17,153,72,89,192,167,33,7,112,84,140,40,11,6,43,4,6,29,0),(2921,'2015-03-14 14:56:59','2015-08-29 14:46:10',1,30001020,14,0,5,8,4,16,0,1,2,27,7,0,20,0,16,16,3,18,40,4,47,0,42,0),(2922,'2015-03-14 14:56:59','2015-08-29 14:46:10',1,30002097,28,5,0,109,10,17,0,4,22,41,24,1,0,29,32,8,27,0,2,5,4,52,16,0),(2923,'2015-03-14 14:56:59','2015-08-29 14:46:10',1,30001980,21,0,11,8,19,26,47,46,58,42,109,165,70,151,120,197,50,95,15,102,107,1,76,0),(2924,'2015-03-14 14:56:59','2015-08-29 14:46:10',1,30003344,3,0,0,0,24,0,0,53,127,5,0,0,0,2,14,15,0,30,5,0,0,0,68,0),(2925,'2015-03-14 14:56:59','2015-08-29 14:46:10',1,30004316,8,594,1068,598,388,411,0,0,0,39,59,117,0,136,12,0,0,0,0,0,41,0,0,0),(2926,'2015-03-14 14:56:59','2015-08-29 14:46:10',1,30002311,0,0,0,3,3,0,0,0,0,0,0,0,0,0,1,2,0,0,0,0,0,0,0,0),(2927,'2015-03-14 14:56:59','2015-08-29 14:46:10',1,30004375,0,0,0,0,0,0,0,56,0,24,24,0,1,243,359,450,2,112,4,0,92,1,0,0),(2928,'2015-03-14 14:56:59','2015-08-29 14:46:10',1,30003625,0,0,0,0,0,0,0,0,0,0,35,35,0,0,0,1,0,0,0,0,0,0,0,0),(2929,'2015-03-14 14:56:59','2015-03-14 14:56:59',1,30001485,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(2930,'2015-03-14 14:56:59','2015-08-29 14:46:10',1,30002248,57,13,103,38,10,22,0,124,62,53,17,153,16,57,100,75,123,49,58,25,23,132,55,0),(2931,'2015-03-14 14:56:59','2015-08-29 14:46:10',1,30005247,197,55,42,113,48,115,744,844,114,0,11,22,86,28,63,116,52,33,6,50,1,31,457,0),(2932,'2015-03-14 14:56:59','2015-08-29 14:46:10',1,30005124,50,3,62,174,123,8,31,75,0,0,0,0,0,0,0,0,0,0,0,2,0,0,0,0),(2933,'2015-03-14 14:56:59','2015-08-29 14:46:10',1,30003092,0,3,0,1,0,0,0,1,80,0,0,6,0,29,49,137,0,6,0,50,11,244,0,0),(2934,'2015-03-14 14:56:59','2015-08-29 14:46:10',1,30031392,231,348,254,195,185,133,234,431,259,88,249,145,179,127,215,302,90,304,136,83,246,397,318,0),(2935,'2015-03-14 14:56:59','2015-08-29 14:46:10',1,30002737,317,340,232,245,223,190,356,391,301,236,287,147,401,288,104,328,448,558,386,272,459,240,451,0),(2936,'2015-03-14 14:56:59','2015-08-29 14:46:10',1,30003471,0,0,0,0,0,0,0,16,12,0,0,0,34,0,0,0,0,0,0,13,17,17,108,0),(2937,'2015-03-14 14:56:59','2015-08-29 14:46:10',1,30004128,127,134,323,215,184,21,57,52,38,35,48,10,169,64,66,71,30,180,94,0,320,34,241,0),(2938,'2015-03-14 14:56:59','2015-08-29 14:46:10',1,30004152,41,0,10,18,41,40,0,3,1,130,150,42,0,36,23,1,121,0,31,82,131,42,49,0),(2939,'2015-03-14 14:56:59','2015-08-29 14:46:10',1,30005038,82,53,29,9,55,28,13,110,88,72,56,6,110,51,45,113,16,50,127,74,215,86,51,0),(2940,'2015-03-14 14:56:59','2015-08-29 14:46:10',1,30001394,362,353,307,275,272,440,337,422,434,339,401,496,314,459,537,507,469,331,118,336,297,467,375,0),(2941,'2015-03-14 14:56:59','2015-08-29 14:46:10',1,30045312,97,3,7,24,23,12,15,28,15,3,11,12,27,28,27,32,29,10,54,24,32,105,63,0),(2942,'2015-03-14 14:56:59','2015-08-29 14:46:10',1,30005258,7,0,0,0,0,0,26,0,8,0,26,36,0,0,5,5,51,0,0,0,3,10,7,0),(2943,'2015-03-14 14:56:59','2015-08-29 14:46:10',1,30000181,2338,1699,1680,1938,2059,2480,1959,1758,1259,2254,2448,2180,2120,2620,2520,2880,3078,1740,1880,2558,3380,4200,3237,0),(2944,'2015-03-14 14:56:59','2015-08-29 14:46:10',1,30004103,90,58,360,21,2,29,118,10,34,103,107,38,57,77,98,186,26,25,8,32,77,128,22,0),(2945,'2015-03-14 14:56:59','2015-08-29 14:46:10',1,30003068,6,41,0,54,51,1,13,26,3,4,5,10,5,0,0,4,0,0,3,1,31,1,7,0),(2946,'2015-03-14 14:56:59','2015-08-29 14:46:10',1,30001901,0,0,5,0,0,25,28,5,1,0,0,3,1,15,15,1,0,0,39,0,0,0,1,0),(2947,'2015-03-14 14:56:59','2015-03-14 14:56:59',1,30001536,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(2948,'2015-03-14 14:56:59','2015-08-29 14:46:10',1,30001963,0,1,1,5,125,0,0,1,3,1,1,1,0,0,1,2,46,32,0,0,134,2,90,0),(2949,'2015-03-14 14:56:59','2015-08-29 14:46:10',1,30002452,53,0,8,45,18,2,0,269,0,0,0,0,0,8,18,15,8,0,0,0,13,0,0,0),(2950,'2015-03-14 14:56:59','2015-08-29 14:46:10',1,30004895,0,240,0,0,0,5,0,7,0,0,0,0,0,125,42,1,0,94,8,0,5,0,125,0),(2951,'2015-03-14 14:56:59','2015-08-29 14:46:10',1,30022547,99,67,55,86,55,59,75,0,3,26,29,5,7,106,79,0,159,21,20,0,27,0,5,0),(2952,'2015-03-14 14:56:59','2015-08-29 14:46:10',1,30002079,75,5,4,22,2,0,0,1,35,1,1,54,78,47,33,55,0,0,27,21,21,0,1,0),(2953,'2015-03-14 14:56:59','2015-08-29 14:46:10',1,30002519,33,23,73,19,45,70,39,65,69,3,3,78,22,78,70,16,0,88,15,27,34,0,79,0),(2954,'2015-03-14 14:56:59','2015-08-29 14:46:10',1,30002286,0,0,0,0,0,5,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(2955,'2015-03-14 14:56:59','2015-08-29 14:46:10',1,30000246,258,81,1,9,0,262,41,162,0,71,71,0,0,0,0,0,0,0,0,0,0,0,0,0),(2956,'2015-03-14 14:56:59','2015-08-29 14:46:10',1,30000807,271,407,477,96,224,199,584,288,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(2957,'2015-03-14 14:56:59','2015-08-29 14:46:10',1,30001589,0,0,78,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(2958,'2015-03-14 14:56:59','2015-08-29 14:46:10',1,30003177,0,0,0,0,0,0,24,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(2959,'2015-03-14 14:56:59','2015-08-29 14:46:10',1,30003300,77,45,0,0,0,12,39,4,14,25,0,50,22,44,27,10,3,5,5,4,0,15,28,0),(2960,'2015-03-14 14:56:59','2015-08-29 14:46:10',1,30004698,612,0,698,0,0,101,163,410,0,0,0,0,0,0,0,0,0,0,0,0,0,0,83,0),(2961,'2015-03-14 14:56:59','2015-08-29 14:46:10',1,30002042,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(2962,'2015-03-14 14:56:59','2015-08-29 14:46:10',1,30002767,2,0,129,31,53,8,0,1,1,66,64,25,11,9,35,38,0,4,0,2,6,7,26,0),(2963,'2015-03-14 14:56:59','2015-08-29 14:46:10',1,30003501,177,325,308,86,186,101,128,87,239,120,128,111,176,434,489,318,367,168,181,81,122,336,149,0),(2964,'2015-03-14 14:56:59','2015-08-29 14:46:10',1,30000021,0,0,0,0,0,32,0,0,0,0,0,0,0,0,0,0,1,0,3,2,0,4,1,0),(2965,'2015-03-14 14:56:59','2015-08-29 14:46:10',1,30003926,9,38,0,37,38,0,0,23,3,41,16,88,28,22,12,4,19,61,0,0,25,39,13,0),(2966,'2015-03-14 14:56:59','2015-08-29 14:46:10',1,30002771,253,138,106,156,110,86,81,98,217,245,349,186,228,215,123,201,271,63,100,254,365,236,217,0),(2967,'2015-03-14 14:56:59','2015-08-29 14:46:10',1,30005050,64,89,64,87,126,3,575,372,19,33,37,53,91,93,104,106,74,7,69,204,76,96,52,0),(2968,'2015-03-14 14:56:59','2015-08-29 14:46:10',1,30001415,130,219,133,59,26,40,212,107,138,246,236,164,171,235,257,346,31,145,126,216,116,204,154,0),(2969,'2015-03-14 14:56:59','2015-08-29 14:46:10',1,30003066,0,92,47,77,54,0,0,36,7,15,79,61,13,13,10,36,124,27,43,17,126,73,14,0),(2970,'2015-03-14 14:56:59','2015-08-29 14:46:10',1,30003096,0,0,0,138,137,11,11,41,0,0,0,0,0,0,0,0,0,0,3,76,462,1,0,0),(2971,'2015-03-14 14:56:59','2015-08-29 14:46:10',1,30003089,7,6,36,46,166,1,0,0,13,38,51,31,22,53,30,28,75,4,36,27,9,4,60,0),(2972,'2015-03-14 14:56:59','2015-08-29 14:46:10',1,30002802,770,624,530,525,559,426,562,372,396,445,329,433,433,479,450,394,447,501,236,513,386,374,613,0),(2973,'2015-03-14 14:56:59','2015-08-29 14:46:10',1,30004348,521,316,388,101,308,274,605,16,114,191,390,722,486,278,294,354,340,223,338,203,395,507,551,0),(2974,'2015-03-14 14:56:59','2015-08-29 14:46:10',1,30004642,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,50,84,0,0),(2975,'2015-03-14 14:56:59','2015-08-29 14:46:10',1,30003635,48,9,14,33,95,3,57,0,0,0,0,0,0,0,0,0,0,0,0,0,59,0,0,0),(2976,'2015-03-14 14:56:59','2015-08-29 14:46:10',1,30001180,108,130,178,93,85,269,67,48,0,0,0,0,0,18,0,0,53,0,0,0,0,0,0,0),(2977,'2015-03-14 14:56:59','2015-08-29 14:46:10',1,30004833,48,8,9,9,17,77,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(2978,'2015-03-14 14:56:59','2015-08-29 14:46:10',1,30000269,73,2,0,86,64,22,96,30,28,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(2979,'2015-03-14 14:56:59','2015-03-14 14:56:59',1,30000347,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(2980,'2015-03-14 14:56:59','2015-08-29 14:46:10',1,30000124,148,153,102,129,123,299,57,0,130,166,172,52,120,58,54,106,118,33,136,98,177,158,155,0),(2981,'2015-03-14 14:56:59','2015-08-29 14:46:10',1,30000498,0,0,0,0,0,0,0,0,0,0,0,0,221,41,22,189,168,5,58,101,0,747,119,0),(2982,'2015-03-14 14:56:59','2015-08-29 14:46:10',1,30000710,34,0,0,0,0,6,217,108,0,0,0,0,0,0,0,11,0,0,0,0,0,0,0,0),(2983,'2015-03-14 14:56:59','2015-08-29 14:46:10',1,30000874,232,174,36,260,288,352,116,262,43,23,0,6,26,44,42,58,20,77,19,131,4,0,140,0),(2984,'2015-03-14 14:56:59','2015-08-29 14:46:10',1,30004593,0,0,0,0,0,0,51,41,8,0,7,7,0,0,0,0,0,5,26,10,0,68,75,0),(2985,'2015-03-14 14:56:59','2015-08-29 14:46:10',1,30002142,149,55,18,54,117,111,70,17,0,0,0,0,11,0,109,128,0,0,0,0,129,131,0,0),(2986,'2015-03-14 14:56:59','2015-03-14 14:56:59',1,30003951,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(2987,'2015-03-14 14:56:59','2015-08-29 14:46:10',1,30003970,0,0,0,30,37,0,0,0,5,0,0,0,132,36,0,0,0,261,1,0,203,0,0,0),(2988,'2015-03-14 14:56:59','2015-08-29 14:46:10',1,30004625,0,0,0,0,0,0,0,0,0,0,0,0,5,0,0,0,7,0,2,3,0,0,0,0),(2989,'2015-03-14 14:56:59','2015-08-29 14:46:10',1,30001945,0,0,0,0,0,0,0,235,31,63,63,0,18,6,0,0,0,0,0,0,0,0,0,0),(2990,'2015-03-14 14:56:59','2015-08-29 14:46:10',1,30004910,0,536,655,262,187,272,539,567,447,522,370,517,279,391,341,364,365,0,4,376,812,1180,319,0),(2991,'2015-03-14 14:56:59','2015-08-29 14:46:10',1,30001223,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,131,0,0,7,0),(2992,'2015-03-14 14:56:59','2015-08-29 14:46:10',1,30003689,0,0,28,34,73,173,43,3,0,0,0,0,31,3,1,0,203,4,12,0,0,0,7,0),(2993,'2015-03-14 14:56:59','2015-03-14 14:56:59',1,30000357,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(2994,'2015-03-14 14:56:59','2015-08-29 14:46:10',1,30001592,0,0,0,0,0,0,0,0,5,18,13,0,0,0,0,0,0,0,4,4,0,0,0,0),(2995,'2015-03-14 14:56:59','2015-08-29 14:46:10',1,30000540,0,51,121,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,2,3,3,0),(2996,'2015-03-14 14:56:59','2015-08-29 14:46:10',1,30004018,0,0,0,0,0,0,0,0,0,0,0,80,0,0,0,0,0,0,0,0,53,0,0,0),(2997,'2015-03-14 14:56:59','2015-08-29 14:46:10',1,30002847,0,0,0,0,0,117,167,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,31,0),(2998,'2015-03-14 14:56:59','2015-08-29 14:46:10',1,30002434,0,181,0,0,0,0,0,0,0,0,0,0,29,0,0,0,0,0,0,0,1,126,115,0),(2999,'2015-03-14 14:56:59','2015-08-29 14:46:10',1,30001350,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,21,0,0,0,0,0,0),(3000,'2015-03-14 14:56:59','2015-08-29 14:46:10',1,30000528,950,1090,141,108,73,250,136,207,94,262,488,355,108,383,131,64,207,0,0,0,220,111,197,0),(3001,'2015-03-14 14:56:59','2015-08-29 14:46:10',1,30003168,118,0,115,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,119,0,0,0),(3002,'2015-03-14 14:56:59','2015-08-29 14:46:10',1,30003643,0,0,0,30,0,0,0,30,0,0,0,0,0,0,0,0,39,0,0,0,0,0,0,0),(3003,'2015-03-14 14:56:59','2015-08-29 14:46:10',1,30005163,0,0,0,0,0,0,0,68,0,0,0,205,0,116,77,390,473,0,0,0,3,98,20,0),(3004,'2015-03-14 14:56:59','2015-08-29 14:46:10',1,30000467,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,49,37,0,0),(3005,'2015-03-14 14:56:59','2015-08-29 14:46:10',1,30003684,258,163,67,40,44,50,186,206,12,23,19,110,63,93,76,50,73,0,0,17,96,49,117,0),(3006,'2015-03-14 14:56:59','2015-03-14 14:56:59',1,30000430,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(3007,'2015-03-14 14:56:59','2015-08-29 14:46:10',1,30002842,75,17,271,285,197,27,12,136,0,3,6,0,0,0,56,86,46,0,0,0,7,22,14,0),(3008,'2015-03-14 14:56:59','2015-08-29 14:46:10',1,30002470,192,0,0,229,15,216,0,0,15,373,444,494,0,0,0,16,293,0,75,0,199,0,71,0),(3009,'2015-03-14 14:56:59','2015-03-14 14:56:59',1,30001499,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(3010,'2015-03-14 14:56:59','2015-08-29 14:46:10',1,30001989,0,0,0,0,0,0,0,0,0,7,7,0,0,3,30,27,31,0,0,24,24,0,0,0),(3011,'2015-03-14 14:56:59','2015-08-29 14:46:10',1,30000891,437,553,115,156,7,629,245,141,138,198,208,0,329,91,163,153,531,9,374,397,0,105,65,0),(3012,'2015-03-14 14:56:59','2015-08-29 14:46:10',1,30001526,0,0,0,0,0,0,0,0,4,3,0,0,2,3,8,104,0,6,118,3,3,0,0,0),(3013,'2015-03-14 14:56:59','2015-08-29 14:46:10',1,30004927,0,0,0,0,0,0,69,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(3014,'2015-03-14 14:56:59','2015-03-14 14:56:59',1,30000605,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(3015,'2015-03-14 14:56:59','2015-08-29 14:46:10',1,30004203,0,0,58,0,0,0,0,0,0,0,0,0,0,0,24,96,107,0,0,0,0,0,0,0),(3016,'2015-03-14 14:56:59','2015-08-29 14:46:10',1,30002300,3,0,0,0,0,0,13,0,0,0,0,0,0,38,37,0,0,0,0,0,27,0,0,0),(3017,'2015-03-14 14:56:59','2015-08-29 14:46:10',1,30001876,0,4,0,0,0,0,0,0,25,0,57,90,0,36,127,180,117,0,0,0,13,60,13,0),(3018,'2015-03-14 14:56:59','2015-03-14 14:56:59',1,30000968,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(3019,'2015-03-14 14:56:59','2015-08-29 14:46:10',1,30001809,0,0,0,0,0,0,41,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(3020,'2015-03-14 14:56:59','2015-08-29 14:46:10',1,30004827,0,0,0,0,0,0,7,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,101,0),(3021,'2015-03-14 14:56:59','2015-08-29 14:46:10',1,30004003,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,64,0),(3022,'2015-03-14 14:56:59','2015-08-29 14:46:10',1,30004526,0,0,0,0,0,51,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,110,21,0),(3023,'2015-03-14 14:56:59','2015-08-29 14:46:10',1,30002376,77,9,5,3,0,0,0,9,0,40,22,0,0,0,0,0,0,1,7,0,0,0,0,0),(3024,'2015-03-14 14:56:59','2015-08-29 14:46:10',1,30002435,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,18,50,35,0,0,0,0,0,0),(3025,'2015-03-14 14:56:59','2015-08-29 14:46:10',1,30000786,0,0,0,0,0,0,0,0,0,0,0,0,10,0,0,0,0,0,0,0,0,0,0,0),(3026,'2015-03-14 14:56:59','2015-08-29 14:46:10',1,30004944,479,942,21,380,582,600,2125,505,312,0,0,0,180,0,0,0,0,286,340,84,22,136,35,0),(3027,'2015-03-14 14:56:59','2015-03-14 14:56:59',1,30005179,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(3028,'2015-03-14 14:56:59','2015-08-29 14:46:10',1,30001928,0,2,0,0,3,0,0,0,0,1,1,1,3,3,4,5,44,1,68,0,0,0,4,0),(3029,'2015-03-14 14:56:59','2015-08-29 14:46:10',1,30002607,128,0,0,8,129,0,89,23,0,0,0,0,0,0,0,0,0,0,0,0,0,104,0,0),(3030,'2015-03-14 14:56:59','2015-03-14 14:56:59',1,30000354,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(3031,'2015-03-14 14:56:59','2015-08-29 14:46:10',1,30004659,0,0,0,0,0,0,0,0,0,36,2,44,123,1,0,6,120,0,0,4,9,93,87,0),(3032,'2015-03-14 14:56:59','2015-03-14 14:56:59',1,30001560,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(3033,'2015-03-14 14:56:59','2015-08-29 14:46:10',1,30001174,0,0,0,0,0,0,0,0,0,0,0,0,0,133,121,9,0,14,4,1,0,0,0,0),(3034,'2015-03-14 14:56:59','2015-08-29 14:46:10',1,30000462,0,0,0,0,0,0,23,0,55,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(3035,'2015-03-14 14:56:59','2015-08-29 14:46:10',1,30003255,36,118,4,0,0,0,0,0,0,35,76,21,0,0,0,0,0,0,0,0,0,0,23,0),(3036,'2015-03-14 14:56:59','2015-08-29 14:46:10',1,30041392,440,416,396,377,253,267,154,170,219,129,85,395,212,514,341,410,342,185,88,151,91,241,141,0),(3037,'2015-03-14 14:56:59','2015-08-29 14:46:10',1,30002976,9,81,11,29,17,11,11,13,46,25,22,6,8,0,0,1,16,0,1,0,20,11,19,0),(3038,'2015-03-14 14:56:59','2015-08-29 14:46:10',1,30000029,57,67,62,3,120,64,63,27,60,13,19,122,56,75,48,62,108,7,54,196,68,3,0,0),(3039,'2015-03-14 14:56:59','2015-08-29 14:46:10',1,30002989,64,104,45,20,70,63,48,0,93,69,106,59,88,131,160,94,101,8,119,34,92,78,116,0),(3040,'2015-03-14 14:56:59','2015-08-29 14:46:10',1,30004999,148,161,0,19,54,12,30,42,16,28,26,0,14,10,12,10,3,28,104,15,18,65,37,0),(3041,'2015-03-14 14:56:59','2015-08-29 14:46:10',1,30003519,31,25,47,67,105,30,34,43,69,26,53,42,51,125,242,200,3,18,79,149,111,201,13,0),(3042,'2015-03-14 14:56:59','2015-08-29 14:46:10',1,30003049,99,3,34,177,201,87,30,110,36,67,75,12,54,252,236,76,197,22,57,228,170,102,325,0),(3043,'2015-03-14 14:56:59','2015-08-29 14:46:10',1,30003063,10,10,6,78,43,20,17,32,28,36,28,28,33,44,56,54,59,25,22,24,45,65,59,0),(3044,'2015-03-14 14:56:59','2015-08-29 14:46:10',1,30002722,25,36,2,10,8,28,22,59,4,97,101,65,41,1,8,8,0,2,103,48,53,13,7,0),(3045,'2015-03-14 14:56:59','2015-08-29 14:46:10',1,30002074,1699,1260,2219,1779,1460,1358,940,855,1456,2100,2000,1720,2140,2796,2018,2040,2640,1030,1180,1600,2175,2000,1978,0),(3046,'2015-03-14 14:56:59','2015-08-29 14:46:10',1,30003882,3,125,150,14,14,18,199,30,168,0,0,0,61,14,30,30,115,0,22,29,10,32,27,0),(3047,'2015-03-14 14:56:59','2015-08-29 14:46:10',1,30002540,0,0,0,0,0,0,14,2,2,31,34,120,4,16,8,2,46,5,5,6,3,26,2,0),(3048,'2015-03-14 14:56:59','2015-08-29 14:46:10',1,30001712,47,157,73,57,37,46,83,90,53,127,128,140,109,93,116,59,184,48,162,356,109,178,393,0),(3049,'2015-03-14 14:56:59','2015-08-29 14:46:10',1,30032547,27,144,0,0,22,91,97,3,35,12,54,22,39,117,32,22,158,40,3,0,9,0,92,0),(3050,'2015-03-14 14:56:59','2015-08-29 14:46:10',1,30003579,159,0,73,2,54,0,0,28,78,28,66,84,168,0,2,2,29,95,6,56,47,72,3,0),(3051,'2015-03-14 14:56:59','2015-08-29 14:46:10',1,30000002,56,30,16,8,8,43,3,59,93,91,77,29,80,43,66,49,64,25,3,129,75,44,40,0),(3052,'2015-03-14 14:56:59','2015-08-29 14:46:10',1,30003549,0,0,0,0,0,0,114,37,54,0,8,0,0,0,0,0,0,0,75,0,14,29,109,0),(3053,'2015-03-14 14:56:59','2015-08-29 14:46:10',1,30002065,88,14,70,0,0,0,1,2,0,9,34,27,1,12,17,105,19,11,43,19,36,2,15,0),(3054,'2015-03-14 14:56:59','2015-08-29 14:46:10',1,30005075,10,100,14,4,4,37,8,33,163,116,64,10,8,58,32,85,114,40,38,49,57,53,204,0),(3055,'2015-03-14 14:56:59','2015-08-29 14:46:10',1,30005002,27,177,148,45,36,197,55,49,95,76,94,146,265,160,185,168,107,54,144,49,69,102,158,0),(3056,'2015-03-14 14:56:59','2015-08-29 14:46:10',1,30004159,146,42,50,154,37,172,0,22,369,70,76,153,57,143,297,449,160,97,98,111,59,55,53,0),(3057,'2015-03-14 14:56:59','2015-08-29 14:46:10',1,30003592,0,18,93,107,266,134,61,232,0,43,65,45,129,50,29,36,0,58,0,0,215,9,5,0),(3058,'2015-03-14 14:56:59','2015-08-29 14:46:10',1,30001917,0,0,0,0,0,250,292,27,63,59,62,29,50,70,115,120,54,38,141,215,107,158,67,0),(3059,'2015-03-14 14:56:59','2015-08-29 14:46:10',1,30002161,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,41,0,0,0,0),(3060,'2015-03-14 14:56:59','2015-08-29 14:46:10',1,30000683,21,42,9,8,3,126,0,5,0,0,0,0,0,0,0,2,0,15,0,0,0,0,0,0),(3061,'2015-03-14 14:56:59','2015-08-29 14:46:10',1,30004663,0,0,0,0,0,32,0,0,0,4,0,23,1,6,0,0,0,0,0,0,43,55,223,0),(3062,'2015-03-14 14:56:59','2015-08-29 14:46:10',1,30004541,0,0,0,0,0,0,23,0,12,9,1,0,0,0,0,0,0,0,9,1,0,0,0,0),(3063,'2015-03-14 14:56:59','2015-08-29 14:46:10',1,30001923,0,0,0,0,0,0,5,0,13,0,0,0,3,0,3,3,0,0,0,0,0,0,5,0),(3064,'2015-03-14 14:56:59','2015-03-14 14:56:59',1,30001605,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(3065,'2015-03-14 14:56:59','2015-08-29 14:46:10',1,30004700,0,0,0,0,0,125,272,0,0,0,0,116,0,24,0,220,0,0,0,93,224,33,2,0),(3066,'2015-03-14 14:56:59','2015-08-29 14:46:10',1,30002849,0,0,14,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,80,98,21,0),(3067,'2015-03-14 14:56:59','2015-08-29 14:46:10',1,30002932,6,0,0,33,141,0,58,95,0,0,0,0,81,0,57,106,4,0,0,0,50,0,0,0),(3068,'2015-03-14 14:56:59','2015-08-29 14:46:10',1,30005259,0,4,1,3,26,0,14,0,80,0,0,0,0,81,0,0,0,7,101,53,0,0,0,0),(3069,'2015-03-14 14:56:59','2015-08-29 14:46:10',1,30002865,91,3,234,199,80,70,73,139,203,152,142,418,35,242,253,58,153,0,0,14,229,273,377,0),(3070,'2015-03-14 14:56:59','2015-08-29 14:46:10',1,30005233,9,151,34,0,11,0,21,0,0,33,90,1,6,18,27,145,22,0,0,26,1,4,14,0),(3071,'2015-03-14 14:56:59','2015-08-29 14:46:10',1,30003039,75,62,80,190,44,88,10,178,113,125,147,20,108,73,97,199,77,39,213,83,122,52,20,0),(3072,'2015-03-14 14:56:59','2015-08-29 14:46:10',1,30002728,0,52,7,0,0,0,0,0,38,35,26,34,3,4,0,34,3,1,14,26,0,70,26,0),(3073,'2015-03-14 14:56:59','2015-08-29 14:46:10',1,30003409,77,81,109,121,111,61,74,57,110,72,91,90,136,62,82,50,105,108,124,133,91,147,53,0),(3074,'2015-03-14 14:56:59','2015-08-29 14:46:10',1,30005039,192,184,121,268,190,48,64,195,95,275,181,76,147,62,114,100,162,22,37,92,90,160,53,0),(3075,'2015-03-14 14:56:59','2015-08-29 14:46:10',1,30003759,6,48,0,0,0,36,77,44,3,37,65,10,205,37,130,113,160,5,10,35,70,45,64,0),(3076,'2015-03-14 14:56:59','2015-08-29 14:46:10',1,30003172,241,206,169,0,0,0,234,173,0,4,4,0,70,61,0,0,172,1,8,231,847,1265,276,0),(3077,'2015-03-14 14:56:59','2015-08-29 14:46:10',1,30004689,0,0,0,0,0,0,0,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(3078,'2015-03-14 14:56:59','2015-03-14 14:56:59',1,30001460,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(3079,'2015-03-14 14:56:59','2015-08-29 14:46:10',1,30001833,25,0,0,53,65,0,17,47,6,36,36,0,5,0,0,0,0,0,0,0,0,0,0,0),(3080,'2015-03-14 14:56:59','2015-08-29 14:46:10',1,30001953,0,0,0,0,0,0,0,0,0,0,0,0,0,135,133,78,0,23,4,22,0,18,41,0),(3081,'2015-03-14 14:56:59','2015-08-29 14:46:10',1,30004505,0,0,0,0,0,0,0,0,21,0,0,0,0,0,0,0,0,0,0,0,0,38,0,0),(3082,'2015-03-14 14:56:59','2015-03-14 14:56:59',1,30001507,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(3083,'2015-03-14 14:56:59','2015-08-29 14:46:10',1,30001587,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,0),(3084,'2015-03-14 14:56:59','2015-08-29 14:46:10',1,30001069,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,93,0),(3085,'2015-03-14 14:56:59','2015-08-29 14:46:10',1,30002624,0,209,333,256,289,128,430,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(3086,'2015-03-14 14:56:59','2015-08-29 14:46:10',1,30001337,59,0,0,0,0,25,0,0,26,0,0,0,94,19,19,0,0,0,0,0,14,0,29,0),(3087,'2015-03-14 14:56:59','2015-08-29 14:46:10',1,30003421,109,61,25,120,124,0,68,34,29,75,59,36,90,58,120,136,24,43,150,128,208,133,132,0),(3088,'2015-03-14 14:56:59','2015-08-29 14:46:10',1,30000154,356,643,570,834,425,292,512,249,617,663,726,632,494,973,904,1038,541,252,543,361,392,529,318,0),(3089,'2015-03-14 14:56:59','2015-08-29 14:46:10',1,30000020,15,15,0,0,0,0,0,6,11,0,0,0,0,0,0,4,7,4,0,0,0,10,0,0),(3090,'2015-03-14 14:56:59','2015-08-29 14:46:10',1,30005087,0,7,0,0,0,0,0,4,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0),(3091,'2015-03-14 14:56:59','2015-08-29 14:46:10',1,30003459,30,27,31,32,24,79,34,24,83,212,111,7,28,91,60,131,136,27,6,61,111,62,128,0),(3092,'2015-03-14 14:56:59','2015-08-29 14:46:10',1,30003025,121,97,180,94,95,69,41,168,143,106,71,91,114,232,224,276,381,169,188,286,286,166,32,0),(3093,'2015-03-14 14:56:59','2015-08-29 14:46:10',1,30005007,20,44,35,2,22,33,95,67,153,156,53,85,71,17,18,34,121,107,18,18,15,162,39,0),(3094,'2015-03-14 14:56:59','2015-08-29 14:46:10',1,30002973,328,240,386,211,175,153,273,284,311,287,340,349,415,259,339,511,302,134,141,181,445,319,257,0),(3095,'2015-03-14 14:56:59','2015-08-29 14:46:10',1,30001400,109,257,299,105,101,213,114,337,236,215,294,258,316,298,207,357,428,35,243,182,296,321,330,0),(3096,'2015-03-14 14:56:59','2015-08-29 14:46:10',1,30001048,0,0,0,0,0,0,0,0,0,0,0,0,21,0,0,1,0,28,0,0,0,0,2,0),(3097,'2015-03-14 14:56:59','2015-08-29 14:46:10',1,30001416,264,38,50,153,139,134,202,180,51,71,73,303,147,24,125,201,25,58,27,225,34,229,141,0),(3098,'2015-03-14 14:56:59','2015-08-29 14:46:10',1,30004630,42,0,0,0,0,0,106,0,0,0,0,0,60,31,0,0,44,113,59,0,36,46,68,0),(3099,'2015-03-14 14:56:59','2015-08-29 14:46:10',1,30000647,0,0,0,0,0,19,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(3100,'2015-03-14 14:56:59','2015-08-29 14:46:10',1,30004641,0,0,64,0,0,98,155,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(3101,'2015-03-14 14:56:59','2015-08-29 14:46:10',1,30001038,1,3,27,4,8,0,0,46,243,210,97,59,28,126,133,163,298,26,13,25,179,201,67,0),(3102,'2015-03-14 14:56:59','2015-08-29 14:46:10',1,30002604,0,0,0,0,0,0,45,0,0,297,268,54,76,82,48,86,94,0,10,8,0,0,0,0),(3103,'2015-03-14 14:56:59','2015-08-29 14:46:10',1,30002139,0,5,0,0,0,0,103,0,3,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(3104,'2015-03-14 14:56:59','2015-08-29 14:46:10',1,30000599,0,0,0,0,0,0,0,0,0,52,200,31,0,0,0,0,0,0,0,0,0,0,0,0),(3105,'2015-03-14 14:56:59','2015-08-29 14:46:10',1,30000615,0,0,0,0,0,0,89,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(3106,'2015-03-14 14:56:59','2015-08-29 14:46:10',1,30002114,0,0,0,0,0,65,0,0,0,0,0,0,0,0,0,0,4,0,0,0,7,3,0,0),(3107,'2015-03-14 14:56:59','2015-08-29 14:46:10',1,30003973,0,0,0,0,0,9,27,3,196,22,290,327,49,8,8,193,175,176,175,116,220,208,56,0),(3108,'2015-03-14 14:56:59','2015-08-29 14:46:10',1,30001119,0,66,160,207,35,0,0,11,0,0,0,0,0,166,113,0,0,0,0,0,105,93,0,0),(3109,'2015-03-14 14:56:59','2015-08-29 14:46:10',1,30005300,11,2,14,3,5,8,11,17,6,15,12,12,0,0,1,10,4,0,10,7,40,8,114,0),(3110,'2015-03-14 14:56:59','2015-08-29 14:46:10',1,30042547,59,0,82,34,39,60,54,62,42,69,103,59,97,7,20,99,64,33,0,21,32,67,14,0),(3111,'2015-03-14 14:56:59','2015-08-29 14:46:10',1,30004897,0,0,127,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,84,0),(3112,'2015-03-14 14:56:59','2015-08-29 14:46:10',1,30005193,11,89,24,133,133,105,43,104,2,23,11,91,31,23,5,95,47,32,24,50,43,184,7,0),(3113,'2015-03-14 14:56:59','2015-08-29 14:46:10',1,30001687,16,49,40,23,27,72,36,73,30,116,134,26,46,146,76,118,91,15,80,24,26,43,28,0),(3114,'2015-03-14 14:56:59','2015-08-29 14:46:10',1,30003575,361,172,102,61,33,14,106,191,19,95,162,253,144,111,70,16,45,62,34,73,170,24,91,0),(3115,'2015-03-14 14:56:59','2015-08-29 14:46:10',1,30002996,0,147,60,16,101,32,97,68,92,57,142,37,29,129,45,67,39,60,109,182,73,29,81,0),(3116,'2015-03-14 14:56:59','2015-08-29 14:46:10',1,30000533,11,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,11,0,0),(3117,'2015-03-14 14:56:59','2015-03-14 14:56:59',1,30000384,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(3118,'2015-03-14 14:56:59','2015-08-29 14:46:10',1,30002294,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,5,0,0,0,0),(3119,'2015-03-14 14:56:59','2015-03-14 14:56:59',1,30000649,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(3120,'2015-03-14 14:56:59','2015-08-29 14:46:10',1,30004896,34,299,174,709,476,185,79,26,0,0,0,63,0,0,0,0,3,0,0,0,0,0,0,0),(3121,'2015-03-14 14:56:59','2015-08-29 14:46:10',1,30000704,0,0,0,0,0,0,0,0,0,0,1,124,0,3,3,0,0,0,0,0,0,0,0,0),(3122,'2015-03-14 14:56:59','2015-03-14 14:56:59',1,30001601,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(3123,'2015-03-14 14:56:59','2015-03-14 14:56:59',1,30000397,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(3124,'2015-03-14 14:56:59','2015-08-29 14:46:10',1,30003204,0,0,0,0,0,0,0,0,39,71,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(3125,'2015-03-14 14:56:59','2015-08-29 14:46:10',1,30002493,643,781,205,338,504,370,160,52,67,204,483,699,114,419,400,337,255,6,121,235,393,121,43,0),(3126,'2015-03-14 14:56:59','2015-08-29 14:46:10',1,30004353,33,23,28,90,99,80,296,947,0,0,0,19,0,0,0,1,6,14,1,0,0,0,1,0),(3127,'2015-03-14 14:56:59','2015-08-29 14:46:10',1,30000319,31,0,0,0,0,0,194,124,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(3128,'2015-03-14 14:56:59','2015-08-29 14:46:10',1,30004885,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,118,0,0,0,0),(3129,'2015-03-14 14:56:59','2015-08-29 14:46:10',1,30004021,0,0,0,0,0,0,120,173,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(3130,'2015-03-14 14:56:59','2015-08-29 14:46:10',1,30002830,536,0,0,138,126,268,246,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(3131,'2015-03-14 14:56:59','2015-08-29 14:46:10',1,30000300,130,305,579,546,625,447,331,385,64,77,55,49,10,51,137,270,12,182,175,106,28,16,21,0),(3132,'2015-03-14 14:56:59','2015-08-29 14:46:10',1,30003334,0,0,0,0,0,0,4,0,24,17,47,30,8,23,0,27,125,0,6,6,0,0,0,0),(3133,'2015-03-14 14:56:59','2015-08-29 14:46:10',1,30002928,0,0,0,30,0,0,0,60,77,0,0,32,0,1240,1238,1037,1,870,1180,1154,1024,363,2,0),(3134,'2015-03-14 14:56:59','2015-08-29 14:46:10',1,30000466,0,0,0,0,0,0,16,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(3135,'2015-03-14 14:56:59','2015-08-29 14:46:10',1,30001804,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(3136,'2015-03-14 14:56:59','2015-08-29 14:46:10',1,30002462,97,36,93,0,0,88,0,85,0,0,0,0,0,0,0,0,1,0,0,0,0,0,117,0),(3137,'2015-03-14 14:56:59','2015-08-29 14:46:10',1,30004747,0,0,0,0,0,0,0,0,18,39,36,0,0,25,67,63,0,7,86,5,0,0,15,0),(3138,'2015-03-14 14:56:59','2015-08-29 14:46:10',1,30004680,0,226,0,0,0,43,122,11,0,1,122,0,0,250,124,1,0,0,0,0,0,54,92,0),(3139,'2015-03-14 14:56:59','2015-08-29 14:46:10',1,30002516,2,0,0,14,0,55,8,7,4,33,16,12,3,107,126,79,66,4,19,4,70,62,7,0),(3140,'2015-03-14 14:56:59','2015-08-29 14:46:10',1,30003432,43,4,20,28,87,138,14,205,70,93,27,142,142,133,108,114,135,82,138,62,26,131,20,0),(3141,'2015-03-14 14:56:59','2015-08-29 14:46:10',1,30004967,391,287,478,435,256,513,278,334,434,603,658,327,567,844,964,1009,644,148,438,462,862,959,762,0),(3142,'2015-03-14 14:56:59','2015-08-29 14:46:10',1,30002261,50,110,135,21,35,7,139,94,201,256,110,207,81,72,67,43,41,21,31,22,7,16,43,0),(3143,'2015-03-14 14:56:59','2015-08-29 14:46:10',1,30005316,90,147,211,165,188,100,193,42,73,63,95,103,198,176,161,113,159,61,137,146,108,159,84,0),(3144,'2015-03-14 14:56:59','2015-08-29 14:46:10',1,30002545,509,579,434,402,380,396,310,485,935,886,903,598,635,1169,1039,724,621,713,688,1084,957,788,556,0),(3145,'2015-03-14 14:56:59','2015-08-29 14:46:10',1,30000813,213,512,211,127,237,456,127,96,0,0,55,87,0,0,0,0,134,0,0,0,205,130,0,0),(3146,'2015-03-14 14:56:59','2015-08-29 14:46:10',1,30005106,0,6,76,12,12,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(3147,'2015-03-14 14:56:59','2015-08-29 14:46:10',1,30004800,0,0,0,192,115,0,0,0,0,0,0,0,0,13,168,555,26,0,0,0,9,6,5,0),(3148,'2015-03-14 14:56:59','2015-08-29 14:46:10',1,30002458,83,54,38,23,23,240,0,93,10,67,6,28,82,49,95,146,159,0,51,32,21,14,169,0),(3149,'2015-03-14 14:56:59','2015-08-29 14:46:10',1,30004705,1391,1124,484,758,473,546,726,758,487,348,479,1220,123,42,79,61,18,0,20,230,203,0,462,0),(3150,'2015-03-14 14:56:59','2015-08-29 14:46:10',1,30002355,0,4,0,0,0,3,0,0,6,4,0,0,0,0,0,0,5,0,3,0,3,4,3,0),(3151,'2015-03-14 14:56:59','2015-08-29 14:46:10',1,30000971,0,0,0,0,8,0,0,0,0,0,0,0,0,13,13,4,0,29,9,0,0,0,0,0),(3152,'2015-03-14 14:56:59','2015-08-29 14:46:10',1,30004364,83,49,0,0,0,0,93,19,0,0,0,0,0,3,2,2,34,0,67,47,10,70,0,0),(3153,'2015-03-14 14:56:59','2015-08-29 14:46:10',1,30001078,192,88,151,35,67,0,142,2,196,240,15,156,66,243,162,159,12,7,78,133,242,262,185,0),(3154,'2015-03-14 14:56:59','2015-08-29 14:46:10',1,30000208,31,60,50,33,30,84,0,0,131,60,64,0,47,10,9,9,11,27,88,1,0,0,0,0),(3155,'2015-03-14 14:56:59','2015-08-29 14:46:10',1,30004823,118,122,93,7,6,0,15,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(3156,'2015-03-14 14:56:59','2015-08-29 14:46:10',1,30002869,0,0,0,0,0,0,0,0,0,0,70,157,165,24,0,0,0,0,0,0,0,0,0,0),(3157,'2015-03-14 14:56:59','2015-08-29 14:46:10',1,30001995,41,52,31,39,35,1,0,15,32,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(3158,'2015-03-14 14:56:59','2015-08-29 14:46:10',1,30002601,0,0,0,0,0,0,0,0,0,0,0,0,6,0,23,199,195,0,206,549,330,0,32,0),(3159,'2015-03-14 14:56:59','2015-08-29 14:46:10',1,30004449,331,69,57,245,187,22,23,6,47,71,71,8,131,240,238,164,122,0,0,65,0,27,111,0),(3160,'2015-03-14 14:56:59','2015-03-14 14:56:59',1,30000620,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(3161,'2015-03-14 14:56:59','2015-03-14 14:56:59',1,30000922,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(3162,'2015-03-14 14:56:59','2015-03-14 14:56:59',1,30001479,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(3163,'2015-03-14 14:56:59','2015-08-29 14:46:10',1,30004356,119,0,46,183,187,0,71,140,0,0,0,0,0,33,23,23,0,0,0,0,0,0,0,0),(3164,'2015-03-14 14:56:59','2015-08-29 14:46:10',1,30004633,0,0,2,0,0,1,0,4,0,0,0,1,0,0,0,0,0,63,0,3,129,0,0,0),(3165,'2015-03-14 14:56:59','2015-08-29 14:46:10',1,30000591,0,5,69,27,37,8,28,100,0,0,0,0,0,0,0,0,8,7,0,0,0,0,0,0),(3166,'2015-03-14 14:56:59','2015-08-29 14:46:10',1,30000639,0,6,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(3167,'2015-03-14 14:56:59','2015-08-29 14:46:10',1,30002428,0,0,0,0,0,0,17,105,0,124,94,0,0,0,0,0,0,0,0,0,7,27,42,0),(3168,'2015-03-14 14:56:59','2015-08-29 14:46:10',1,30000905,14,0,0,6,10,0,0,0,5,0,0,0,0,1,0,40,20,4,0,21,4,5,37,0),(3169,'2015-03-14 14:56:59','2015-08-29 14:46:10',1,30001032,28,10,0,4,0,0,25,0,0,2,12,0,5,11,38,56,0,50,38,151,12,4,0,0),(3170,'2015-03-14 14:56:59','2015-08-29 14:46:10',1,30004511,0,0,0,0,0,0,0,0,0,0,0,0,2,0,0,0,0,0,0,0,0,39,31,0),(3171,'2015-03-14 14:56:59','2015-08-29 14:46:10',1,30001597,0,0,0,0,0,0,0,0,255,53,165,200,1160,721,695,632,192,69,0,54,0,0,30,0),(3172,'2015-03-14 14:56:59','2015-03-14 14:56:59',1,30003200,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(3173,'2015-03-14 14:56:59','2015-08-29 14:46:10',1,30000848,13,0,0,0,0,85,73,0,32,0,4,6,0,0,0,0,0,1,0,0,0,0,4,0),(3174,'2015-03-14 14:56:59','2015-03-14 14:56:59',1,30004478,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(3175,'2015-03-14 14:56:59','2015-08-29 14:46:10',1,30004881,167,446,525,178,298,0,86,195,241,293,411,404,196,582,717,602,750,57,147,89,342,238,116,0),(3176,'2015-03-14 14:56:59','2015-08-29 14:46:10',1,30005140,0,0,0,0,29,105,0,39,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(3177,'2015-03-14 14:56:59','2015-08-29 14:46:10',1,30004795,0,110,66,156,138,151,206,17,0,0,0,0,5,7,3,0,5,37,19,8,0,0,0,0),(3178,'2015-03-14 14:56:59','2015-08-29 14:46:10',1,30003665,179,109,0,0,0,10,106,0,0,110,110,0,0,0,0,100,0,41,98,0,0,0,0,0),(3179,'2015-03-14 14:56:59','2015-08-29 14:46:10',1,30002377,0,0,0,0,0,36,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(3180,'2015-03-14 14:56:59','2015-08-29 14:46:10',1,30004213,1,328,182,6,0,0,126,457,1628,1980,2035,451,0,139,276,211,2820,0,0,0,0,0,0,0),(3181,'2015-03-14 14:56:59','2015-08-29 14:46:10',1,30002603,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,83,65,0),(3182,'2015-03-14 14:56:59','2015-08-29 14:46:10',1,30000471,0,0,0,0,0,0,0,77,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(3183,'2015-03-14 14:56:59','2015-08-29 14:46:10',1,30002000,0,0,0,0,0,0,0,0,0,0,0,0,16,0,0,5,0,18,32,0,0,0,2,0),(3184,'2015-03-14 14:56:59','2015-08-29 14:46:10',1,30000953,126,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,47,0,0,0,0,0,0,0),(3185,'2015-03-14 14:56:59','2015-08-29 14:46:10',1,30002181,0,0,161,64,125,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,103,0),(3186,'2015-03-14 14:56:59','2015-08-29 14:46:10',1,30004802,0,0,0,0,0,0,0,0,0,0,0,0,50,48,46,1,0,0,0,4,0,0,0,0),(3187,'2015-03-14 14:56:59','2015-08-29 14:46:10',1,30001747,176,0,6,0,0,0,0,22,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(3188,'2015-03-14 14:56:59','2015-03-14 14:56:59',1,30004010,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(3189,'2015-03-14 14:56:59','2015-08-29 14:46:10',1,30001332,0,0,0,0,0,24,84,0,72,46,53,38,77,90,84,78,34,63,76,63,81,82,57,0),(3190,'2015-03-14 14:56:59','2015-08-29 14:46:10',1,30003284,122,0,0,0,0,51,0,0,21,0,0,4,0,0,0,0,5,0,16,53,0,0,0,0),(3191,'2015-03-14 14:56:59','2015-08-29 14:46:10',1,30004773,0,0,0,0,0,0,0,127,15,22,46,28,0,25,4,15,36,0,17,163,57,17,7,0),(3192,'2015-03-14 14:56:59','2015-08-29 14:46:10',1,30004461,0,149,137,10,0,0,337,0,0,0,0,0,0,0,0,0,0,0,4,4,0,0,0,0),(3193,'2015-03-14 14:56:59','2015-08-29 14:46:10',1,30002852,0,0,43,0,0,0,0,25,0,0,0,0,40,0,0,0,13,0,0,0,0,0,0,0),(3194,'2015-03-14 14:56:59','2015-03-14 14:56:59',1,30000556,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(3195,'2015-03-14 14:56:59','2015-08-29 14:46:10',1,30000761,0,0,40,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(3196,'2015-03-14 14:56:59','2015-08-29 14:46:10',1,30005153,0,0,0,0,0,0,0,0,0,0,0,12,0,0,0,0,0,0,0,0,0,0,0,0),(3197,'2015-03-14 14:56:59','2015-08-29 14:46:10',1,30001754,390,67,805,488,488,726,270,517,357,286,353,0,53,0,27,109,0,0,0,0,138,1120,274,0),(3198,'2015-03-14 14:56:59','2015-08-29 14:46:10',1,30004739,39,3,0,0,5,0,0,0,19,0,0,0,0,0,0,0,117,3,6,5,8,0,0,0),(3199,'2015-03-14 14:56:59','2015-03-14 14:56:59',1,30000633,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(3200,'2015-03-14 14:56:59','2015-08-29 14:46:10',1,30005134,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,0,10,0,0,0,0,0,5,0),(3201,'2015-03-14 14:56:59','2015-08-29 14:46:10',1,30004901,46,236,126,57,18,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,122,107,0,0),(3202,'2015-03-14 14:56:59','2015-08-29 14:46:10',1,30002374,0,0,16,0,0,0,17,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(3203,'2015-03-14 14:56:59','2015-03-14 14:56:59',1,30000681,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(3204,'2015-03-14 14:56:59','2015-03-14 14:56:59',1,30001625,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(3205,'2015-03-14 14:56:59','2015-08-29 14:46:10',1,30000998,0,0,0,0,0,0,0,0,0,3,3,0,0,0,0,0,0,0,0,0,0,0,0,0),(3206,'2015-03-14 14:56:59','2015-08-29 14:46:10',1,30004369,0,0,0,36,50,0,126,0,402,316,124,195,295,179,139,136,147,0,132,171,123,89,0,0),(3207,'2015-03-14 14:56:59','2015-08-29 14:46:10',1,30000272,418,553,228,95,197,16,177,114,170,101,28,275,151,333,514,506,134,0,0,110,0,0,7,0),(3208,'2015-03-14 14:56:59','2015-08-29 14:46:10',1,30004234,0,0,8,9,9,0,0,0,0,9,9,0,20,3,0,0,0,0,0,40,13,9,24,0),(3209,'2015-03-14 14:56:59','2015-08-29 14:46:10',1,30002190,57,83,177,84,49,210,23,35,137,116,113,57,58,184,186,180,143,261,69,75,89,134,193,0),(3210,'2015-03-14 14:56:59','2015-08-29 14:46:10',1,30003558,40,4,13,0,0,63,139,53,23,9,10,93,18,58,21,0,61,0,15,67,0,64,78,0),(3211,'2015-03-14 14:56:59','2015-08-29 14:46:10',1,30003503,15,170,122,109,97,143,68,104,105,101,122,96,107,192,250,141,50,72,118,53,202,163,228,0),(3212,'2015-03-14 14:56:59','2015-08-29 14:46:10',1,30005243,1,39,160,174,93,231,329,188,26,82,105,15,8,65,79,38,212,75,58,123,115,299,46,0),(3213,'2015-03-14 14:56:59','2015-08-29 14:46:10',1,30005064,4,0,86,1,0,0,0,35,35,0,0,0,0,0,0,0,75,0,48,11,0,1,0,0),(3214,'2015-03-14 14:56:59','2015-08-29 14:46:10',1,30002570,24,29,80,24,17,29,25,45,45,49,55,102,32,12,30,37,25,8,54,57,82,74,15,0),(3215,'2015-03-14 14:56:59','2015-08-29 14:46:10',1,30000096,0,0,0,0,0,6,0,7,0,0,0,0,18,0,0,7,8,1,0,0,0,9,26,0),(3216,'2015-03-14 14:56:59','2015-08-29 14:46:10',1,30003520,9,5,0,18,18,2,0,0,5,0,0,94,0,21,1,0,35,36,0,0,45,0,20,0),(3217,'2015-03-14 14:56:59','2015-08-29 14:46:10',1,30000104,0,0,0,4,4,26,22,0,0,0,16,6,16,1,26,46,12,32,5,2,2,27,4,0),(3218,'2015-03-14 14:56:59','2015-08-29 14:46:10',1,30000122,70,129,323,300,201,329,235,220,180,241,149,163,162,301,243,172,123,68,153,276,230,322,257,0),(3219,'2015-03-14 14:56:59','2015-08-29 14:46:10',1,30003499,0,0,3,14,43,0,0,41,0,17,17,10,3,0,0,0,0,13,16,16,0,0,0,0),(3220,'2015-03-14 14:56:59','2015-08-29 14:46:10',1,30003546,42,242,6,50,51,52,48,51,24,26,197,6,11,38,6,8,67,0,19,3,18,55,28,0),(3221,'2015-03-14 14:56:59','2015-08-29 14:46:10',1,30000162,5,94,0,35,80,9,4,22,1,1,103,79,120,116,85,52,87,6,0,0,18,55,88,0),(3222,'2015-03-14 14:56:59','2015-08-29 14:46:10',1,30003576,117,123,194,181,171,37,94,118,311,197,276,260,230,278,285,171,14,167,34,41,79,29,206,0),(3223,'2015-03-14 14:56:59','2015-08-29 14:46:10',1,30000047,10,25,22,0,0,0,0,38,0,112,85,2,0,0,0,7,64,95,18,18,84,3,34,0),(3224,'2015-03-14 14:56:59','2015-08-29 14:46:10',1,30005210,4,0,10,0,0,0,2,18,1,2,0,0,142,0,0,55,1,0,6,7,3,16,1,0),(3225,'2015-03-14 14:56:59','2015-08-29 14:46:10',1,30001393,840,545,327,533,558,405,568,181,698,1360,969,607,586,608,654,708,543,294,502,533,943,650,1495,0),(3226,'2015-03-14 14:56:59','2015-08-29 14:46:10',1,30005235,88,114,201,239,238,74,9,79,88,115,118,230,346,122,111,395,264,46,72,49,35,184,161,0),(3227,'2015-03-14 14:56:59','2015-08-29 14:46:10',1,30003084,75,99,43,27,41,22,130,37,35,225,220,2,73,54,54,0,0,0,11,0,1,22,72,0),(3228,'2015-03-14 14:56:59','2015-08-29 14:46:10',1,30012505,254,202,129,209,250,292,202,232,257,245,175,269,255,342,237,236,372,214,207,291,186,248,114,0),(3229,'2015-03-14 14:56:59','2015-08-29 14:46:10',1,30002242,60,73,34,25,7,90,22,17,27,63,84,121,116,73,102,96,109,77,69,66,101,99,83,0),(3230,'2015-03-14 14:56:59','2015-08-29 14:46:10',1,30003559,8,21,12,0,0,5,0,8,1,0,0,0,3,0,14,28,2,0,0,0,0,0,10,0),(3231,'2015-03-14 14:56:59','2015-08-29 14:46:10',1,30005201,152,199,316,248,152,174,150,60,223,151,259,180,186,238,282,351,207,157,142,342,234,279,310,0),(3232,'2015-03-14 14:56:59','2015-08-29 14:46:10',1,30005230,214,107,63,57,117,24,88,16,92,72,111,90,318,101,124,148,137,106,89,197,105,315,89,0),(3233,'2015-03-14 14:56:59','2015-08-29 14:46:10',1,30004112,67,46,0,32,0,97,25,38,135,88,30,20,122,161,74,103,52,52,0,198,67,14,19,0),(3234,'2015-03-14 14:56:59','2015-08-29 14:46:10',1,30001658,460,330,286,346,257,559,173,289,177,404,331,308,692,1122,1187,946,714,237,248,483,234,289,330,0),(3235,'2015-03-14 14:56:59','2015-08-29 14:46:10',1,30002760,0,0,2,105,110,7,4,14,41,46,11,43,8,16,32,19,5,23,1,18,1,0,106,0),(3236,'2015-03-14 14:56:59','2015-08-29 14:46:10',1,30003060,3,6,8,0,0,0,0,0,10,1,0,0,9,6,65,65,6,84,0,27,0,0,6,0),(3237,'2015-03-14 14:56:59','2015-08-29 14:46:10',1,30003855,0,22,33,72,43,28,14,17,12,9,0,6,1,7,7,52,100,0,7,0,15,71,54,0),(3238,'2015-03-14 14:56:59','2015-08-29 14:46:10',1,30001388,53,44,8,0,64,2,6,41,9,31,0,1,0,2,100,147,0,23,5,49,0,0,65,0),(3239,'2015-03-14 14:56:59','2015-08-29 14:46:10',1,30004247,0,0,0,17,154,0,138,0,0,22,28,34,0,67,1,0,11,0,0,0,0,19,8,0),(3240,'2015-03-14 14:56:59','2015-08-29 14:46:10',1,30003024,19,50,54,72,180,57,200,82,218,140,154,31,85,117,108,113,131,143,134,142,103,59,150,0),(3241,'2015-03-14 14:56:59','2015-08-29 14:46:10',1,30002194,73,233,190,263,206,84,75,55,117,94,79,73,172,72,127,130,171,38,52,210,44,224,177,0),(3242,'2015-03-14 14:56:59','2015-08-29 14:46:10',1,30001722,19,15,18,9,67,20,27,48,13,27,27,40,44,129,93,63,79,36,3,21,29,94,17,0),(3243,'2015-03-14 14:56:59','2015-08-29 14:46:10',1,30045318,19,12,9,7,86,4,9,19,51,14,14,47,5,0,13,14,44,4,2,3,3,23,75,0),(3244,'2015-03-14 14:56:59','2015-08-29 14:46:10',1,30005325,95,81,125,147,138,66,55,102,65,53,25,87,160,155,269,242,115,54,53,135,157,233,269,0),(3245,'2015-03-14 14:56:59','2015-08-29 14:46:10',1,30005041,180,108,107,218,124,105,31,117,71,150,76,55,67,40,81,181,52,9,16,79,177,153,173,0),(3246,'2015-03-14 14:56:59','2015-08-29 14:46:10',1,30004235,3,85,0,0,0,0,0,0,14,0,0,45,0,0,0,1,0,0,0,0,36,9,0,0),(3247,'2015-03-14 14:56:59','2015-08-29 14:46:10',1,30003868,96,31,24,2,2,32,23,61,23,7,3,66,138,6,5,51,0,0,0,0,1,0,26,0),(3248,'2015-03-14 14:56:59','2015-08-29 14:46:10',1,30000052,24,6,79,47,100,108,82,85,42,3,1,71,16,17,8,8,25,75,6,0,15,37,21,0),(3249,'2015-03-14 14:56:59','2015-08-29 14:46:10',1,30000202,26,50,103,224,164,171,116,165,116,191,107,45,135,197,82,124,171,130,184,171,301,265,120,0),(3250,'2015-03-14 14:56:59','2015-08-29 14:46:10',1,30003444,0,41,11,0,24,0,79,0,85,11,8,0,0,3,2,0,17,3,209,0,4,106,22,0),(3251,'2015-03-14 14:56:59','2015-08-29 14:46:10',1,30003034,10,129,46,71,60,178,38,70,155,99,93,40,122,172,164,88,137,115,53,59,152,165,76,0),(3252,'2015-03-14 14:56:59','2015-08-29 14:46:10',1,30003396,170,317,102,146,91,358,23,121,103,90,139,156,171,228,254,180,121,123,96,5,125,73,104,0),(3253,'2015-03-14 14:56:59','2015-08-29 14:46:10',1,30001654,57,78,37,44,40,9,113,7,63,68,101,61,112,85,107,95,35,16,14,36,117,114,178,0),(3254,'2015-03-14 14:56:59','2015-08-29 14:46:10',1,30000140,434,718,735,674,542,1016,580,432,506,667,561,576,817,992,854,914,808,450,433,539,751,885,623,0),(3255,'2015-03-14 14:56:59','2015-08-29 14:46:10',1,30003835,21,15,0,0,0,7,1,70,0,0,7,0,1,8,8,0,28,8,65,15,8,54,17,0),(3256,'2015-03-14 14:56:59','2015-08-29 14:46:10',1,30002213,35,69,44,179,189,20,49,20,63,31,24,49,54,61,57,72,0,75,41,54,0,36,32,0),(3257,'2015-03-14 14:56:59','2015-08-29 14:46:10',1,30001182,0,0,0,0,0,31,0,0,156,266,479,155,472,14,253,369,94,4,8,74,634,582,208,0),(3258,'2015-03-14 14:56:59','2015-08-29 14:46:10',1,30001832,0,0,0,0,0,0,3,0,0,1,1,47,0,0,0,0,0,0,0,17,0,0,0,0),(3259,'2015-03-14 14:56:59','2015-08-29 14:46:10',1,30001818,0,0,0,0,0,2,0,0,5,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0),(3260,'2015-03-14 14:56:59','2015-08-29 14:46:10',1,30001316,0,0,0,7,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(3261,'2015-03-14 14:56:59','2015-08-29 14:46:10',1,30000209,0,0,0,66,7,0,0,0,0,0,0,57,0,58,48,0,0,0,0,0,0,0,0,0),(3262,'2015-03-14 14:56:59','2015-08-29 14:46:10',1,30000443,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0),(3263,'2015-03-14 14:56:59','2015-08-29 14:46:10',1,30001027,0,98,0,0,0,1,0,20,0,5,5,70,0,19,19,1,0,0,0,4,0,0,0,0),(3264,'2015-03-14 14:56:59','2015-08-29 14:46:10',1,30004398,0,0,0,9,9,0,208,112,266,42,81,292,62,363,312,180,11,28,83,0,109,180,291,0),(3265,'2015-03-14 14:56:59','2015-08-29 14:46:10',1,30002974,205,158,40,150,142,58,32,83,119,91,89,153,147,164,151,234,147,14,143,148,18,158,187,0),(3266,'2015-03-14 14:56:59','2015-08-29 14:46:10',1,30002401,0,12,0,0,0,2,0,0,0,11,0,0,0,0,6,6,0,17,14,1,0,0,0,0),(3267,'2015-03-14 14:56:59','2015-08-29 14:46:10',1,30003403,98,61,0,133,41,30,27,0,75,21,0,45,0,50,89,78,75,0,0,41,89,68,63,0),(3268,'2015-03-14 14:56:59','2015-08-29 14:46:10',1,30002525,353,539,448,458,421,461,339,321,523,785,656,370,583,457,570,848,648,566,541,375,530,618,581,0),(3269,'2015-03-14 14:56:59','2015-08-29 14:46:10',1,30005296,6,13,62,27,48,14,1,87,0,1,3,5,1,7,3,8,1,0,88,179,16,116,22,0),(3270,'2015-03-14 14:56:59','2015-08-29 14:46:10',1,30005238,0,7,25,0,26,0,0,2,0,0,0,0,0,42,1,0,3,0,0,0,0,0,0,0),(3271,'2015-03-14 14:56:59','2015-08-29 14:46:10',1,30002986,27,54,135,57,9,4,0,57,2,42,33,40,83,33,8,0,15,4,47,0,81,99,59,0),(3272,'2015-03-14 14:56:59','2015-08-29 14:46:10',1,30004121,0,0,14,47,40,19,4,0,9,1,1,0,0,0,6,6,4,0,57,0,24,2,0,0),(3273,'2015-03-14 14:56:59','2015-08-29 14:46:10',1,30003853,78,37,1,14,4,12,30,5,61,12,71,63,17,0,3,6,74,5,4,6,77,83,47,0),(3274,'2015-03-14 14:56:59','2015-08-29 14:46:10',1,30005303,90,79,27,69,81,119,69,52,73,73,108,51,81,134,65,105,124,129,65,37,143,23,63,0),(3275,'2015-03-14 14:56:59','2015-08-29 14:46:10',1,30003538,14,12,9,86,86,33,0,36,33,45,58,14,0,0,1,4,112,0,0,0,21,2,2,0),(3276,'2015-03-14 14:56:59','2015-08-29 14:46:10',1,30044971,51,65,84,97,104,114,38,72,88,138,123,72,55,168,173,73,79,46,106,71,97,145,61,0),(3277,'2015-03-14 14:56:59','2015-08-29 14:46:10',1,30000164,18,4,110,12,12,2,62,0,0,0,0,0,0,34,1,1,0,3,17,4,0,4,1,0),(3278,'2015-03-14 14:56:59','2015-08-29 14:46:10',1,30004975,91,272,48,34,24,122,185,54,41,105,200,120,95,337,233,116,218,2,66,108,149,100,153,0),(3279,'2015-03-14 14:56:59','2015-08-29 14:46:10',1,30002637,101,18,105,9,42,115,44,30,121,110,97,135,52,215,252,118,35,26,63,144,52,58,26,0),(3280,'2015-03-14 14:56:59','2015-08-29 14:46:10',1,30003568,0,0,25,73,33,0,0,1,32,0,0,0,0,0,0,0,0,0,11,0,0,106,0,0),(3281,'2015-03-14 14:56:59','2015-08-29 14:46:10',1,30003032,22,99,34,13,24,146,65,51,140,145,21,8,93,73,132,139,65,48,123,71,201,195,91,0),(3282,'2015-03-14 14:56:59','2015-03-14 14:56:59',1,30002299,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(3283,'2015-03-14 14:56:59','2015-08-29 14:46:10',1,30004934,0,3,0,2,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(3284,'2015-03-14 14:56:59','2015-08-29 14:46:10',1,30000321,89,0,43,17,99,0,0,201,794,249,58,133,228,324,314,147,57,329,633,228,173,424,471,0),(3285,'2015-03-14 14:56:59','2015-08-29 14:46:10',1,30003712,0,0,0,0,0,0,0,37,3,114,170,63,8,36,111,138,22,160,0,0,65,121,0,0),(3286,'2015-03-14 14:56:59','2015-08-29 14:46:10',1,30003268,0,0,0,84,67,0,0,0,0,0,4,4,47,17,17,17,0,0,0,0,0,0,0,0),(3287,'2015-03-14 14:56:59','2015-08-29 14:46:10',1,30001988,0,3,0,0,3,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,2,0,0,0),(3288,'2015-03-14 14:56:59','2015-08-29 14:46:10',1,30004113,222,158,82,84,143,37,93,20,169,148,125,258,51,288,349,153,5,27,4,103,37,75,75,0),(3289,'2015-03-14 14:56:59','2015-08-29 14:46:10',1,30003539,8,52,36,12,3,239,37,1,49,134,49,50,51,4,52,50,39,116,4,24,0,0,49,0),(3290,'2015-03-14 14:56:59','2015-08-29 14:46:10',1,30004968,584,657,526,845,679,598,407,335,342,459,349,266,711,494,384,516,396,309,337,389,666,524,555,0),(3291,'2015-03-14 14:56:59','2015-08-29 14:46:10',1,30000046,56,0,71,30,8,0,22,0,0,0,0,13,0,0,0,0,20,23,0,0,0,0,27,0),(3292,'2015-03-14 14:56:59','2015-08-29 14:46:10',1,30002198,363,267,280,163,291,100,63,117,45,112,111,82,76,37,64,123,230,244,379,277,402,493,468,0),(3293,'2015-03-14 14:56:59','2015-08-29 14:46:10',1,30002236,1,0,0,10,21,0,0,0,26,62,24,0,0,0,0,0,0,0,25,0,2,0,0,0),(3294,'2015-03-14 14:56:59','2015-08-29 14:46:10',1,30003001,0,6,3,46,46,0,70,74,0,0,3,12,2,125,124,218,201,23,149,66,133,29,4,0),(3295,'2015-03-14 14:56:59','2015-08-29 14:46:10',1,30000079,13,43,57,125,175,29,323,165,108,202,376,46,104,137,225,297,40,85,161,117,307,179,80,0),(3296,'2015-03-14 14:56:59','2015-08-29 14:46:10',1,30001676,110,288,160,180,140,55,70,138,97,41,82,159,61,19,18,89,149,108,35,20,121,166,79,0),(3297,'2015-03-14 14:56:59','2015-08-29 14:46:10',1,30001691,168,21,0,45,37,30,62,3,20,99,109,11,119,52,37,56,40,14,45,8,36,81,103,0),(3298,'2015-03-14 14:56:59','2015-08-29 14:46:10',1,30002410,9,0,0,1,0,25,83,0,0,17,27,70,16,11,11,1,0,37,0,0,0,0,6,0),(3299,'2015-03-14 14:56:59','2015-08-29 14:46:10',1,30004153,5,6,180,2,0,162,57,84,45,112,119,46,8,88,50,16,10,103,8,24,70,30,46,0),(3300,'2015-03-14 14:56:59','2015-08-29 14:46:10',1,30002732,229,365,419,300,166,224,240,389,223,282,150,403,545,466,429,366,760,178,266,474,559,420,209,0),(3301,'2015-03-14 14:56:59','2015-08-29 14:46:10',1,30002719,39,36,5,6,31,18,1,32,41,0,0,0,22,21,73,68,0,38,56,1,67,88,26,0),(3302,'2015-03-14 14:56:59','2015-08-29 14:46:10',1,30005084,0,0,1,0,0,0,0,0,0,107,33,0,0,0,0,0,38,0,0,0,54,69,18,0),(3303,'2015-03-14 14:56:59','2015-08-29 14:46:10',1,30003563,83,0,0,1,24,0,0,0,7,0,15,0,3,54,49,3,4,0,2,0,75,26,9,0),(3304,'2015-03-14 14:56:59','2015-08-29 14:46:10',1,30005059,279,514,126,241,254,129,231,88,341,276,471,345,432,532,449,355,205,57,97,386,398,139,280,0),(3305,'2015-03-14 14:56:59','2015-08-29 14:46:10',1,30004251,4,84,72,65,40,127,13,4,1,7,3,5,127,2,0,0,0,4,19,93,10,7,180,0),(3306,'2015-03-14 14:56:59','2015-08-29 14:46:10',1,30002665,293,233,138,139,381,138,210,70,115,197,283,139,240,108,208,210,179,59,90,217,81,284,214,0),(3307,'2015-03-14 14:56:59','2015-08-29 14:46:10',1,30003482,72,97,56,57,32,8,4,36,13,53,51,23,62,43,33,52,34,91,8,28,28,90,42,0),(3308,'2015-03-14 14:56:59','2015-08-29 14:46:10',1,30000120,113,100,113,165,239,123,209,66,206,94,82,92,208,259,243,166,337,119,83,94,117,81,384,0),(3309,'2015-03-14 14:56:59','2015-08-29 14:46:10',1,30002255,2,30,11,33,40,0,129,0,5,50,16,0,0,0,0,0,0,9,88,59,18,0,12,0),(3310,'2015-03-14 14:56:59','2015-03-14 14:56:59',1,30005133,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(3311,'2015-03-14 14:56:59','2015-08-29 14:46:10',1,30000803,0,33,6,0,0,0,13,0,0,0,0,0,0,0,0,14,0,0,0,0,0,20,44,0),(3312,'2015-03-14 14:56:59','2015-08-29 14:46:10',1,30004899,57,0,0,0,0,0,0,0,0,0,0,0,4,317,175,1,0,0,0,0,0,0,0,0),(3313,'2015-03-14 14:56:59','2015-08-29 14:46:10',1,30000851,106,11,0,99,67,0,0,0,17,289,334,195,0,0,0,0,2,47,329,124,10,0,158,0),(3314,'2015-03-14 14:56:59','2015-08-29 14:46:10',1,30004743,191,1560,804,891,625,559,0,0,0,0,56,124,25,61,78,22,34,5,148,221,216,359,76,0),(3315,'2015-03-14 14:56:59','2015-08-29 14:46:10',1,30004064,15,90,292,46,108,6,4,0,0,0,0,0,0,0,0,0,0,0,0,0,211,0,0,0),(3316,'2015-03-14 14:56:59','2015-08-29 14:46:10',1,30004183,8,105,1350,1641,481,750,0,1906,0,0,0,0,0,0,0,0,0,0,0,1,115,92,3,0),(3317,'2015-03-14 14:56:59','2015-03-14 14:56:59',1,30003962,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(3318,'2015-03-14 14:56:59','2015-08-29 14:46:10',1,30000529,0,0,0,0,0,0,92,55,0,62,159,0,0,0,0,0,0,0,0,0,0,0,12,0),(3319,'2015-03-14 14:56:59','2015-08-29 14:46:10',1,30000539,0,0,0,0,0,0,0,5,0,0,0,0,0,0,0,0,0,0,0,18,8,0,0,0),(3320,'2015-03-14 14:56:59','2015-08-29 14:46:10',1,30001913,7,3,3,0,0,0,0,0,0,4,4,0,71,2,1,0,124,0,0,0,1,47,1,0),(3321,'2015-03-14 14:56:59','2015-08-29 14:46:10',1,30004913,101,443,263,0,0,334,15,125,5,7,4,0,0,0,17,24,143,0,0,0,208,29,19,0),(3322,'2015-03-14 14:56:59','2015-08-29 14:46:10',1,30000580,25,20,31,116,49,0,0,0,43,0,0,0,9,255,218,84,233,37,49,138,0,3,47,0),(3323,'2015-03-14 14:56:59','2015-08-29 14:46:10',1,30004618,24,47,31,0,0,41,27,6,75,80,57,17,28,23,145,220,38,35,18,40,57,0,1,0),(3324,'2015-03-14 14:56:59','2015-08-29 14:46:10',1,30002840,0,0,0,0,0,32,0,20,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(3325,'2015-03-14 14:56:59','2015-08-29 14:46:10',1,30000270,174,10,0,0,0,0,415,41,0,0,0,0,0,0,0,0,30,0,0,426,0,0,0,0),(3326,'2015-03-14 14:56:59','2015-08-29 14:46:10',1,30004765,0,0,0,0,0,0,202,0,82,266,103,114,97,0,138,360,234,0,139,0,29,213,0,0),(3327,'2015-03-14 14:56:59','2015-08-29 14:46:10',1,30002359,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,70,13,0,0,0,0,0),(3328,'2015-03-14 14:56:59','2015-08-29 14:46:10',1,30004223,0,0,0,0,0,0,79,288,0,0,0,0,0,0,3,215,266,0,0,0,0,0,0,0),(3329,'2015-03-14 14:56:59','2015-08-29 14:46:10',1,30003828,4,9,17,122,138,72,1,1,3,0,0,0,2,13,32,36,48,2,65,23,0,9,14,0),(3330,'2015-03-14 14:56:59','2015-08-29 14:46:10',1,30000801,164,42,795,716,419,95,220,530,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(3331,'2015-03-14 14:56:59','2015-08-29 14:46:10',1,30004136,0,0,84,15,10,0,0,1,0,3,6,89,0,0,0,0,79,0,16,0,2,25,1,0),(3332,'2015-03-14 14:56:59','2015-08-29 14:46:10',1,30001720,6,0,0,0,0,0,0,1,0,22,3,0,8,2,41,98,0,62,12,17,90,29,6,0),(3333,'2015-03-14 14:56:59','2015-08-29 14:46:10',1,30000042,27,0,0,261,61,0,9,0,0,0,0,6,6,5,10,9,0,41,102,0,0,5,4,0),(3334,'2015-03-14 14:56:59','2015-08-29 14:46:10',1,30000031,48,57,81,23,21,20,27,51,40,46,35,100,16,77,43,51,108,57,47,45,29,44,30,0),(3335,'2015-03-14 14:56:59','2015-08-29 14:46:10',1,30003876,39,46,185,43,11,14,170,0,159,1,1,95,54,73,18,16,215,43,153,85,30,98,7,0),(3336,'2015-03-14 14:56:59','2015-08-29 14:46:10',1,30003814,4,0,42,0,0,1,20,176,66,0,5,6,408,359,316,364,52,0,0,0,0,18,127,0),(3337,'2015-03-14 14:56:59','2015-08-29 14:46:10',1,30003881,8,63,44,82,8,57,46,172,1,10,10,11,24,22,31,28,53,0,21,31,66,40,165,0),(3338,'2015-03-14 14:56:59','2015-08-29 14:46:10',1,30005037,164,2,76,124,44,147,187,100,96,176,181,121,153,91,175,132,20,2,106,106,129,134,102,0),(3339,'2015-03-14 14:56:59','2015-08-29 14:46:10',1,30003061,35,112,5,14,17,72,41,23,255,1,3,4,14,4,8,10,80,129,10,17,58,20,9,0),(3340,'2015-03-14 14:56:59','2015-08-29 14:46:10',1,30003011,152,118,55,160,284,151,228,229,275,437,314,280,274,279,366,354,358,159,320,362,307,218,619,0),(3341,'2015-03-14 14:56:59','2015-08-29 14:46:10',1,30003893,142,68,4,36,32,181,6,0,50,239,160,43,57,46,30,72,26,0,69,8,5,33,49,0),(3342,'2015-03-14 14:56:59','2015-08-29 14:46:10',1,30001554,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,60,59,0,0,0,0),(3343,'2015-03-14 14:56:59','2015-08-29 14:46:10',1,30003443,44,30,48,57,57,14,28,67,34,86,51,251,33,25,19,15,49,122,25,2,63,148,44,0),(3344,'2015-03-14 14:56:59','2015-08-29 14:46:10',1,30003021,65,86,110,91,91,28,92,155,132,145,172,124,138,99,71,67,130,57,113,146,102,85,55,0),(3345,'2015-03-14 14:56:59','2015-08-29 14:46:10',1,30002819,299,225,497,315,211,115,77,163,58,93,112,111,464,372,365,388,243,126,246,415,220,381,644,0),(3346,'2015-03-14 14:56:59','2015-08-29 14:46:10',1,30002257,10,0,34,95,29,3,71,12,3,45,60,8,176,0,14,68,30,26,21,113,195,116,34,0),(3347,'2015-03-14 14:56:59','2015-08-29 14:46:10',1,30001715,12,37,66,81,53,44,39,137,76,65,36,50,43,0,0,15,16,2,48,42,52,44,3,0),(3348,'2015-03-14 14:56:59','2015-08-29 14:46:10',1,30005263,54,4,0,0,6,0,22,4,0,8,9,0,118,196,107,1,33,3,0,0,0,0,0,0),(3349,'2015-03-14 14:56:59','2015-08-29 14:46:10',1,30004702,334,202,35,361,269,431,1210,474,218,427,224,173,45,36,37,20,47,0,0,0,0,47,52,0),(3350,'2015-03-14 14:56:59','2015-08-29 14:46:10',1,30003699,22,269,65,36,0,447,268,145,286,40,143,139,197,91,140,138,388,0,0,0,26,0,3,0),(3351,'2015-03-14 14:56:59','2015-08-29 14:46:10',1,30002035,0,476,92,336,486,5,32,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(3352,'2015-03-14 14:56:59','2015-08-29 14:46:10',1,30000280,4,0,56,0,76,0,0,0,0,37,85,0,0,0,0,0,0,0,0,0,0,0,0,0),(3353,'2015-03-14 14:56:59','2015-08-29 14:46:10',1,30001278,267,54,46,281,294,139,221,345,165,273,106,386,73,237,224,258,633,109,35,109,206,216,694,0),(3354,'2015-03-14 14:56:59','2015-08-29 14:46:10',1,30002421,0,0,0,0,0,0,0,0,0,5,71,105,0,0,0,0,16,0,64,43,25,102,23,0),(3355,'2015-03-14 14:56:59','2015-08-29 14:46:10',1,30005155,0,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(3356,'2015-03-14 14:56:59','2015-03-14 14:56:59',1,30004861,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(3357,'2015-03-14 14:56:59','2015-08-29 14:46:10',1,30003153,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,4,0),(3358,'2015-03-14 14:56:59','2015-08-29 14:46:10',1,30000774,0,0,0,24,0,0,0,0,0,0,0,0,0,0,121,122,0,0,0,0,0,0,0,0),(3359,'2015-03-14 14:56:59','2015-08-29 14:46:10',1,30000864,6,85,0,89,90,282,25,176,0,0,0,0,99,0,0,0,7,0,0,0,0,49,59,0),(3360,'2015-03-14 14:56:59','2015-08-29 14:46:10',1,30004464,152,0,270,260,392,29,704,301,0,0,0,0,0,0,0,0,0,0,0,0,0,91,0,0),(3361,'2015-03-14 14:56:59','2015-08-29 14:46:10',1,30004519,0,21,0,0,0,3,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(3362,'2015-03-14 14:56:59','2015-08-29 14:46:10',1,30002028,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,3,0,0,17,0,0,0,0),(3363,'2015-03-14 14:56:59','2015-08-29 14:46:10',1,30003197,0,0,0,3,3,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(3364,'2015-03-14 14:56:59','2015-08-29 14:46:10',1,30005189,0,0,0,0,0,17,0,0,0,0,0,0,0,0,0,0,0,0,0,2,0,0,0,0),(3365,'2015-03-14 14:56:59','2015-08-29 14:46:10',1,30003056,63,49,192,179,34,22,0,29,185,252,183,71,164,6,17,52,99,28,15,60,36,76,48,0),(3366,'2015-03-14 14:56:59','2015-08-29 14:46:10',1,30005299,11,100,18,35,26,28,11,20,0,11,26,41,24,15,42,33,98,16,0,10,1,21,24,0),(3367,'2015-03-14 14:56:59','2015-08-29 14:46:10',1,30004129,96,191,68,39,49,98,22,129,152,116,51,82,87,119,71,97,205,198,98,92,147,83,110,0),(3368,'2015-03-14 14:56:59','2015-08-29 14:46:10',1,30002206,21,26,6,24,45,17,31,29,46,0,0,4,0,52,0,0,0,46,0,27,87,106,14,0),(3369,'2015-03-14 14:56:59','2015-08-29 14:46:10',1,30005295,28,8,0,35,22,3,3,112,17,12,6,0,136,0,1,4,37,3,5,29,27,24,16,0),(3370,'2015-03-14 14:56:59','2015-08-29 14:46:10',1,30004092,306,143,215,82,26,280,100,78,186,360,329,218,265,97,239,392,150,84,78,96,120,315,250,0),(3371,'2015-03-14 14:56:59','2015-08-29 14:46:10',1,30003526,14,24,47,39,40,72,7,99,39,104,56,98,29,8,10,26,51,35,0,28,37,56,130,0),(3372,'2015-03-14 14:56:59','2015-08-29 14:46:10',1,30045334,4,0,4,3,8,21,11,4,98,16,8,16,15,14,22,14,123,1,43,26,1,2,132,0),(3373,'2015-03-14 14:56:59','2015-08-29 14:46:10',1,30002394,101,21,23,79,25,0,96,2,44,15,0,99,0,16,65,60,0,0,0,4,38,123,6,0),(3374,'2015-03-14 14:56:59','2015-08-29 14:46:10',1,30002780,244,333,345,148,169,201,72,98,195,177,151,262,251,338,249,369,149,129,264,278,326,276,258,0),(3375,'2015-03-14 14:56:59','2015-08-29 14:46:10',1,30001213,0,0,119,24,0,0,0,0,12,0,13,0,15,0,0,0,1,4,2,1,0,0,0,0),(3376,'2015-03-14 14:56:59','2015-08-29 14:46:10',1,30003755,0,0,0,30,0,0,0,0,0,66,66,0,0,0,0,0,0,0,0,0,0,1,11,0),(3377,'2015-03-14 14:56:59','2015-08-29 14:46:10',1,30004966,1115,451,352,1597,1780,292,2417,1542,223,1519,1700,1460,516,418,287,361,1720,229,265,126,355,756,494,0),(3378,'2015-03-14 14:56:59','2015-08-29 14:46:10',1,30000546,0,0,0,0,8,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(3379,'2015-03-14 14:56:59','2015-08-29 14:46:10',1,30002913,1780,338,445,1100,941,616,457,172,391,981,818,924,956,459,439,1033,1010,436,826,1069,133,1020,1140,0),(3380,'2015-03-14 14:56:59','2015-08-29 14:46:10',1,30003318,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,21,0,0),(3381,'2015-03-14 14:56:59','2015-08-29 14:46:10',1,30000232,356,48,506,303,302,181,541,649,0,0,0,0,0,98,261,258,0,0,0,0,0,187,0,0),(3382,'2015-03-14 14:56:59','2015-08-29 14:46:10',1,30001202,0,0,0,0,0,0,0,0,33,102,16,27,3,30,0,42,110,0,0,0,0,0,0,0),(3383,'2015-03-14 14:56:59','2015-08-29 14:46:10',1,30003022,58,158,66,61,84,44,28,0,5,25,21,0,5,0,31,36,28,6,73,10,0,0,117,0),(3384,'2015-03-14 14:56:59','2015-08-29 14:46:10',1,30003075,40,59,233,78,3,54,134,23,123,35,173,76,30,158,117,7,15,26,94,113,159,182,20,0),(3385,'2015-03-14 14:56:59','2015-08-29 14:46:10',1,30002940,73,0,0,0,0,24,113,78,0,12,13,36,0,0,0,23,186,42,49,145,173,10,224,0),(3386,'2015-03-14 14:56:59','2015-08-29 14:46:10',1,30003185,0,97,0,0,0,82,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(3387,'2015-03-14 14:56:59','2015-08-29 14:46:10',1,30003659,22,36,141,46,39,0,0,127,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(3388,'2015-03-14 14:56:59','2015-03-14 14:56:59',1,30000405,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(3389,'2015-03-14 14:56:59','2015-08-29 14:46:10',1,30001309,0,1,0,0,0,0,62,0,41,72,86,0,36,0,0,0,0,25,0,0,0,0,0,0),(3390,'2015-03-14 14:56:59','2015-08-29 14:46:10',1,30000236,1020,779,720,0,102,849,1320,0,0,0,0,0,0,0,5,6,77,299,0,0,1,331,158,0),(3391,'2015-03-14 14:56:59','2015-08-29 14:46:10',1,30000915,4,0,0,0,0,35,0,10,0,0,0,0,0,4,9,5,12,0,3,28,31,81,4,0),(3392,'2015-03-14 14:56:59','2015-08-29 14:46:10',1,30002612,0,0,127,0,0,96,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(3393,'2015-03-14 14:56:59','2015-08-29 14:46:10',1,30001209,138,33,93,67,27,0,40,43,119,8,6,8,60,97,173,193,47,225,122,215,213,125,106,0),(3394,'2015-03-14 14:56:59','2015-08-29 14:46:10',1,30004762,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,30,0,0),(3395,'2015-03-14 14:56:59','2015-03-14 14:56:59',1,30000401,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(3396,'2015-03-14 14:56:59','2015-03-14 14:56:59',1,30002583,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(3397,'2015-03-14 14:56:59','2015-08-29 14:46:10',1,30000904,16,0,0,48,71,0,0,0,7,0,0,0,0,0,0,0,0,0,16,0,0,0,66,0),(3398,'2015-03-14 14:56:59','2015-03-14 14:56:59',1,30000348,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(3399,'2015-03-14 14:56:59','2015-08-29 14:46:10',1,30000862,0,0,0,0,0,66,0,0,0,0,0,0,0,0,0,0,41,0,0,0,87,0,0,0),(3400,'2015-03-14 14:56:59','2015-03-14 14:56:59',1,30001489,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(3401,'2015-03-14 14:56:59','2015-08-29 14:46:10',1,30001974,324,103,435,147,0,318,161,158,0,0,0,0,0,0,4,50,0,0,0,0,0,0,0,0),(3402,'2015-03-14 14:56:59','2015-08-29 14:46:10',1,30001060,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,93,0,0,0,0),(3403,'2015-03-14 14:56:59','2015-08-29 14:46:10',1,30002492,127,233,191,100,3,465,0,45,59,144,36,0,0,0,0,0,0,30,0,0,0,0,0,0),(3404,'2015-03-14 14:56:59','2015-08-29 14:46:10',1,30000215,75,14,0,0,6,154,26,3,0,0,0,0,0,206,141,115,28,0,0,0,0,0,41,0),(3405,'2015-03-14 14:56:59','2015-08-29 14:46:10',1,30001827,660,90,221,302,318,448,227,699,186,45,824,1740,158,885,197,119,400,0,0,0,294,373,183,0),(3406,'2015-03-14 14:56:59','2015-03-14 14:56:59',1,30002820,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(3407,'2015-03-14 14:56:59','2015-08-29 14:46:10',1,30004011,29,0,0,0,0,0,0,0,0,0,0,0,0,0,0,50,0,0,0,0,0,0,0,0),(3408,'2015-03-14 14:56:59','2015-08-29 14:46:10',1,30000824,0,0,0,0,0,0,0,0,0,0,0,0,0,51,16,0,0,0,0,0,0,0,0,0),(3409,'2015-03-14 14:56:59','2015-03-14 14:56:59',1,30001549,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(3410,'2015-03-14 14:56:59','2015-08-29 14:46:10',1,30001267,0,0,0,0,0,2,0,0,4,0,0,0,0,0,0,0,0,85,0,0,0,0,0,0),(3411,'2015-03-14 14:56:59','2015-08-29 14:46:10',1,30000999,0,0,0,0,0,7,0,0,3,4,5,4,0,0,0,0,0,0,0,53,10,0,0,0),(3412,'2015-03-14 14:56:59','2015-08-29 14:46:10',1,30003763,95,208,130,122,157,141,0,62,132,164,273,138,118,101,36,7,91,0,121,183,29,152,175,0),(3413,'2015-03-14 14:56:59','2015-03-14 14:56:59',1,30002341,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(3414,'2015-03-14 14:56:59','2015-08-29 14:46:10',1,30002918,67,200,14,0,68,1,127,0,447,375,216,125,449,426,618,754,454,204,547,307,0,174,263,0),(3415,'2015-03-14 14:56:59','2015-03-14 14:56:59',1,30001062,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(3416,'2015-03-14 14:56:59','2015-03-14 14:56:59',1,30002309,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(3417,'2015-03-14 14:56:59','2015-08-29 14:46:10',1,30001302,0,0,16,0,0,61,0,0,59,0,0,0,3,0,0,0,15,0,0,0,0,0,0,0),(3418,'2015-03-14 14:56:59','2015-08-29 14:46:10',1,30004580,32,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(3419,'2015-03-14 14:56:59','2015-08-29 14:46:10',1,30002945,247,0,97,53,22,95,38,0,0,0,0,52,0,0,0,58,0,0,0,0,0,60,38,0),(3420,'2015-03-14 14:56:59','2015-08-29 14:46:10',1,30000669,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,47,0,0,0),(3421,'2015-03-14 14:56:59','2015-08-29 14:46:10',1,30001277,98,96,24,15,62,78,129,180,32,116,164,95,99,49,88,133,155,12,29,59,73,42,174,0),(3422,'2015-03-14 14:56:59','2015-08-29 14:46:10',1,30001280,0,0,0,0,0,0,0,0,21,28,2,0,0,0,0,0,0,22,0,0,0,0,0,0),(3423,'2015-03-14 14:56:59','2015-08-29 14:46:10',1,30001126,0,0,0,4,1,0,0,21,0,0,0,0,0,47,147,113,125,0,0,0,0,72,100,0),(3424,'2015-03-14 14:56:59','2015-08-29 14:46:10',1,30000811,468,317,606,593,425,236,243,12,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(3425,'2015-03-14 14:56:59','2015-08-29 14:46:10',1,30000841,0,0,0,0,0,0,1,0,74,186,90,122,0,95,73,0,9,0,0,0,0,0,29,0),(3426,'2015-03-14 14:56:59','2015-08-29 14:46:10',1,30004783,0,0,0,0,0,3,0,0,0,0,4,95,0,16,132,459,108,25,0,0,0,92,450,0),(3427,'2015-03-14 14:56:59','2015-08-29 14:46:10',1,30003767,52,9,14,9,0,22,0,0,0,0,0,8,15,0,0,0,126,0,10,4,118,0,5,0),(3428,'2015-03-14 14:56:59','2015-08-29 14:46:10',1,30002258,5,6,0,90,10,13,23,61,42,83,58,72,49,3,0,40,20,16,10,1,21,41,174,0),(3429,'2015-03-14 14:56:59','2015-08-29 14:46:10',1,30002995,36,48,62,178,227,16,26,12,78,179,112,96,11,92,59,21,116,20,114,64,40,70,66,0),(3430,'2015-03-14 14:56:59','2015-08-29 14:46:10',1,30001651,24,25,78,39,1,90,33,117,33,75,88,48,46,89,111,67,27,69,104,45,90,120,88,0),(3431,'2015-03-14 14:56:59','2015-08-29 14:46:10',1,30001702,132,24,63,70,73,19,53,14,70,43,67,96,86,63,57,60,140,27,9,58,217,117,21,0),(3432,'2015-03-14 14:56:59','2015-08-29 14:46:10',1,30004300,56,1,0,15,36,0,2,0,0,2,20,23,22,0,0,0,0,0,42,16,0,0,0,0),(3433,'2015-03-14 14:56:59','2015-08-29 14:46:10',1,30002807,19,7,26,5,6,12,4,57,9,8,8,24,14,8,13,23,11,11,7,8,11,65,48,0),(3434,'2015-03-14 14:56:59','2015-08-29 14:46:10',1,30003475,30,5,6,79,0,22,12,5,24,19,17,6,11,6,8,11,65,0,11,11,3,15,31,0),(3435,'2015-03-14 14:56:59','2015-08-29 14:46:10',1,30005069,7,95,27,45,9,0,0,0,10,13,14,71,39,159,181,49,46,43,119,158,17,29,92,0),(3436,'2015-03-14 14:56:59','2015-08-29 14:46:10',1,30003922,7,57,10,0,6,0,0,0,2,5,0,0,21,21,0,0,0,21,41,36,20,0,0,0),(3437,'2015-03-14 14:56:59','2015-08-29 14:46:10',1,30005045,182,160,19,223,43,158,17,104,182,315,378,127,284,357,323,308,183,258,311,530,233,117,371,0),(3438,'2015-03-14 14:56:59','2015-08-29 14:46:10',1,30005242,0,0,47,4,25,9,0,2,0,0,0,0,0,15,0,27,0,0,0,3,0,0,0,0),(3439,'2015-03-14 14:56:59','2015-08-29 14:46:10',1,30000072,0,15,97,61,62,0,0,0,0,68,21,0,39,1,33,32,0,0,5,40,30,0,5,0),(3440,'2015-03-14 14:56:59','2015-08-29 14:46:10',1,30002988,7,330,88,25,176,110,95,32,191,119,122,73,77,245,197,151,4,389,184,53,205,183,50,0),(3441,'2015-03-14 14:56:59','2015-08-29 14:46:10',1,30003936,0,0,29,0,0,13,1,73,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(3442,'2015-03-14 14:56:59','2015-08-29 14:46:10',1,30005043,58,160,150,266,197,26,71,86,102,96,112,158,26,98,92,84,171,24,228,156,97,68,63,0),(3443,'2015-03-14 14:56:59','2015-08-29 14:46:10',1,30003496,1080,131,178,307,282,288,402,117,114,223,248,268,137,372,487,476,535,25,115,318,550,403,444,0),(3444,'2015-03-14 14:56:59','2015-08-29 14:46:10',1,30002068,646,934,942,723,588,399,387,539,932,1191,1218,759,1205,1700,1479,1378,1740,866,1699,1920,2618,2716,2719,0),(3445,'2015-03-14 14:56:59','2015-08-29 14:46:10',1,30004280,0,8,14,0,0,26,77,13,1,33,83,0,0,0,10,28,64,0,0,8,14,1,75,0),(3446,'2015-03-14 14:56:59','2015-08-29 14:46:10',1,30002262,37,48,145,241,137,157,101,27,254,74,52,55,279,351,382,219,21,220,62,201,104,233,173,0),(3447,'2015-03-14 14:56:59','2015-08-29 14:46:10',1,30001445,0,0,6,48,48,13,0,78,74,61,55,127,0,14,14,1,3,0,0,14,181,5,30,0),(3448,'2015-03-14 14:56:59','2015-08-29 14:46:10',1,30003534,16,5,11,0,0,23,1,8,0,56,30,93,1,0,0,14,0,0,20,0,0,0,56,0),(3449,'2015-03-14 14:56:59','2015-08-29 14:46:10',1,30003923,4,17,0,0,4,0,5,39,0,0,0,0,0,0,0,0,4,0,0,2,0,6,0,0),(3450,'2015-03-14 14:56:59','2015-08-29 14:46:10',1,30001413,104,238,380,242,337,292,99,134,84,191,368,246,268,287,296,414,317,226,268,457,172,472,425,0),(3451,'2015-03-14 14:56:59','2015-08-29 14:46:10',1,30001438,68,38,53,15,11,51,0,92,0,28,51,70,48,11,14,77,0,15,0,0,45,52,96,0),(3452,'2015-03-14 14:56:59','2015-08-29 14:46:10',1,30002202,322,170,248,238,270,21,154,456,335,314,221,376,234,449,390,350,870,171,248,807,370,698,493,0),(3453,'2015-03-14 14:56:59','2015-08-29 14:46:10',1,30005207,2,0,6,0,0,0,6,1,0,9,9,6,21,49,11,10,23,1,41,0,3,3,1,0),(3454,'2015-03-14 14:56:59','2015-08-29 14:46:10',1,30005054,2,22,10,14,67,50,0,0,47,56,77,127,134,41,36,57,88,36,34,122,131,344,43,0),(3455,'2015-03-14 14:56:59','2015-08-29 14:46:10',1,30001683,23,968,464,187,430,0,0,0,53,30,69,54,127,22,22,0,2,61,38,13,37,15,2,0),(3456,'2015-03-14 14:56:59','2015-08-29 14:46:10',1,30005289,116,100,17,19,16,46,143,94,51,77,68,80,82,348,149,110,160,36,89,46,111,160,259,0),(3457,'2015-03-14 14:56:59','2015-08-29 14:46:10',1,30002671,113,66,107,218,135,36,70,109,234,155,144,26,232,135,107,70,216,57,67,57,211,98,71,0),(3458,'2015-03-14 14:56:59','2015-08-29 14:46:10',1,30000016,0,0,0,37,0,0,8,0,0,0,26,0,0,0,0,0,0,42,0,9,9,0,0,0),(3459,'2015-03-14 14:56:59','2015-08-29 14:46:10',1,30000465,313,44,125,120,81,64,106,295,133,1,0,135,234,321,377,170,0,0,0,0,0,0,0,0),(3460,'2015-03-14 14:56:59','2015-08-29 14:46:10',1,30001063,0,0,0,0,0,0,0,0,0,0,0,60,0,0,0,0,0,0,0,0,0,0,0,0),(3461,'2015-03-14 14:56:59','2015-08-29 14:46:10',1,30002433,0,0,4,0,0,0,0,0,0,0,0,0,0,21,0,0,154,0,0,0,0,72,1,0),(3462,'2015-03-14 14:56:59','2015-08-29 14:46:10',1,30001117,22,0,145,63,32,4,102,70,253,242,73,343,111,191,110,148,187,201,361,39,241,108,474,0),(3463,'2015-03-14 14:56:59','2015-08-29 14:46:10',1,30002910,1480,440,429,656,595,560,0,149,320,425,147,143,420,790,1056,834,1220,878,637,330,521,713,1014,0),(3464,'2015-03-14 14:56:59','2015-08-29 14:46:10',1,30003616,0,1,0,0,0,0,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(3465,'2015-03-14 14:56:59','2015-08-29 14:46:10',1,30000212,0,0,0,0,0,66,0,0,0,0,0,0,24,0,0,7,0,0,4,4,0,0,0,0),(3466,'2015-03-14 14:56:59','2015-08-29 14:46:10',1,30002867,0,0,0,0,0,0,0,0,7,7,15,17,2,25,190,195,0,0,0,0,90,168,10,0),(3467,'2015-03-14 14:56:59','2015-08-29 14:46:10',1,30003186,0,0,0,0,0,0,0,0,0,0,0,0,0,85,26,0,0,121,0,0,0,0,0,0),(3468,'2015-03-14 14:56:59','2015-08-29 14:46:10',1,30004609,5,0,0,0,0,1,292,195,0,0,0,0,0,0,0,0,0,0,0,0,13,0,29,0),(3469,'2015-03-14 14:56:59','2015-08-29 14:46:10',1,30003980,0,0,0,0,0,0,0,0,0,16,16,0,0,0,59,59,0,0,0,0,0,0,0,0),(3470,'2015-03-14 14:56:59','2015-08-29 14:46:10',1,30000917,0,112,0,0,0,0,0,0,0,0,0,0,0,0,0,2,0,0,0,0,0,0,0,0),(3471,'2015-03-14 14:56:59','2015-08-29 14:46:10',1,30005031,0,0,0,56,0,0,0,8,40,0,0,0,0,30,60,91,4,0,133,0,43,0,0,0),(3472,'2015-03-14 14:56:59','2015-08-29 14:46:10',1,30004089,13,22,1,15,98,59,63,256,10,49,52,165,23,141,96,6,56,8,11,161,50,105,89,0),(3473,'2015-03-14 14:56:59','2015-08-29 14:46:10',1,30004308,60,30,48,42,34,46,12,111,0,95,139,41,10,0,0,24,0,1,0,0,98,95,79,0),(3474,'2015-03-14 14:56:59','2015-08-29 14:46:10',1,30003929,0,60,0,0,0,0,27,17,0,0,0,0,19,0,0,0,0,1,0,0,0,0,0,0),(3475,'2015-03-14 14:56:59','2015-08-29 14:46:10',1,30003378,14,44,28,1,14,169,21,79,134,53,49,111,112,17,20,105,97,23,108,2,118,92,199,0),(3476,'2015-03-14 14:56:59','2015-08-29 14:46:10',1,30005058,61,262,74,158,138,52,117,75,23,109,86,71,18,110,91,154,113,0,39,131,67,38,91,0),(3477,'2015-03-14 14:56:59','2015-08-29 14:46:10',1,30004383,162,35,16,54,102,155,116,201,0,117,0,83,68,0,0,0,0,0,0,0,0,0,0,0),(3478,'2015-03-14 14:56:59','2015-08-29 14:46:10',1,30001695,114,27,128,94,70,41,45,1,186,354,328,244,215,293,268,458,564,20,150,380,645,471,1133,0),(3479,'2015-03-14 14:56:59','2015-08-29 14:46:10',1,30003423,45,143,119,90,172,159,17,178,65,152,175,160,114,40,40,108,50,89,99,44,122,29,146,0),(3480,'2015-03-14 14:56:59','2015-08-29 14:46:10',1,30004267,0,89,0,34,0,0,0,222,0,0,0,0,0,0,0,0,10,1,0,0,0,0,78,0),(3481,'2015-03-14 14:56:59','2015-08-29 14:46:10',1,30045344,0,0,1,80,54,2,7,15,1,1,1,1,92,8,7,17,95,1,19,0,25,36,6,0),(3482,'2015-03-14 14:56:59','2015-08-29 14:46:10',1,30002228,53,9,26,35,79,7,41,6,26,7,31,86,48,14,41,38,0,5,4,33,132,62,16,0),(3483,'2015-03-14 14:56:59','2015-08-29 14:46:10',1,30003073,94,223,57,137,120,37,66,1,2,128,200,141,164,22,26,105,13,68,12,47,27,197,51,0),(3484,'2015-03-14 14:56:59','2015-08-29 14:46:10',1,30001826,0,1,0,0,0,202,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,1,0),(3485,'2015-03-14 14:56:59','2015-08-29 14:46:10',1,30000145,194,293,456,199,226,144,315,311,338,504,423,395,281,301,405,490,378,278,388,348,273,420,379,0),(3486,'2015-03-14 14:56:59','2015-08-29 14:46:10',1,30005286,8,0,4,0,0,0,9,0,0,0,0,0,0,0,0,9,0,0,0,9,18,29,0,0),(3487,'2015-03-14 14:56:59','2015-08-29 14:46:10',1,30002650,70,37,28,64,94,119,45,59,199,30,30,71,123,128,164,189,149,37,69,112,101,54,80,0),(3488,'2015-03-14 14:56:59','2015-08-29 14:46:10',1,30003859,13,1,0,0,0,62,55,0,64,7,7,9,13,29,8,14,124,3,14,39,12,4,47,0),(3489,'2015-03-14 14:56:59','2015-08-29 14:46:10',1,30002246,0,0,0,0,0,0,0,0,40,0,5,1,0,1,1,0,0,0,0,0,5,0,4,0),(3490,'2015-03-14 14:56:59','2015-08-29 14:46:10',1,30000230,0,1,97,0,0,5,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(3491,'2015-03-14 14:56:59','2015-08-29 14:46:10',1,30003325,57,0,49,0,0,0,0,8,8,1,0,0,19,0,0,0,0,0,6,0,0,1,3,0),(3492,'2015-03-14 14:56:59','2015-08-29 14:46:10',1,30000650,0,48,27,151,213,2,0,10,97,55,91,217,29,2,152,349,298,13,547,342,274,25,198,0),(3493,'2015-03-14 14:56:59','2015-08-29 14:46:10',1,30005170,14,118,0,0,17,28,110,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(3494,'2015-03-14 14:56:59','2015-08-29 14:46:10',1,30001239,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,11,10,0,0,0,0),(3495,'2015-03-14 14:56:59','2015-08-29 14:46:10',1,30003117,73,0,0,0,24,0,0,66,0,0,0,0,0,0,0,0,0,0,4,163,0,0,0,0),(3496,'2015-03-14 14:56:59','2015-08-29 14:46:10',1,30001789,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,58,0,0,0,0,0,0,0,0),(3497,'2015-03-14 14:56:59','2015-08-29 14:46:10',1,30002185,39,0,182,206,172,146,339,435,366,137,118,0,434,4,107,129,300,79,13,7,225,89,27,0),(3498,'2015-03-14 14:56:59','2015-08-29 14:46:10',1,30003504,78,118,138,190,202,36,161,105,82,164,134,73,180,111,153,154,60,113,37,98,130,113,83,0),(3499,'2015-03-14 14:56:59','2015-08-29 14:46:10',1,30005047,47,187,125,5,3,178,84,26,123,274,174,50,131,252,155,105,219,79,70,93,101,296,115,0),(3500,'2015-03-14 14:56:59','2015-08-29 14:46:10',1,30003580,96,1056,687,189,13,147,10,70,51,29,125,74,31,87,214,197,14,159,28,48,57,107,15,0),(3501,'2015-03-14 14:56:59','2015-08-29 14:46:10',1,30003006,0,0,26,124,53,0,177,0,0,0,0,0,105,24,46,22,92,106,3,248,0,42,13,0),(3502,'2015-03-14 14:56:59','2015-08-29 14:46:10',1,30004769,296,0,150,126,111,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,34,52,0),(3503,'2015-03-14 14:56:59','2015-08-29 14:46:10',1,30004126,102,65,78,81,2,35,140,120,32,10,51,298,196,110,64,61,161,12,18,105,146,95,106,0),(3504,'2015-03-14 14:56:59','2015-08-29 14:46:10',1,30004274,84,146,1,0,0,0,0,1,44,0,0,0,2,0,0,0,12,77,0,0,0,0,0,0),(3505,'2015-03-14 14:56:59','2015-08-29 14:46:10',1,30000108,63,0,0,68,109,0,0,45,2,0,0,0,0,31,0,0,71,0,0,0,26,0,6,0),(3506,'2015-03-14 14:56:59','2015-03-14 14:56:59',1,30000642,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(3507,'2015-03-14 14:56:59','2015-08-29 14:46:10',1,30003448,282,208,17,117,90,383,80,95,69,502,653,478,296,366,431,367,210,206,211,124,193,227,29,0),(3508,'2015-03-14 14:56:59','2015-08-29 14:46:10',1,30002234,51,23,27,140,156,14,59,2,66,9,15,123,70,120,78,49,75,40,129,53,5,22,77,0),(3509,'2015-03-14 14:56:59','2015-08-29 14:46:10',1,30000900,5,0,0,8,8,0,0,0,0,0,0,0,0,170,128,193,0,0,0,0,0,87,0,0),(3510,'2015-03-14 14:56:59','2015-08-29 14:46:10',1,30000057,25,77,15,106,84,3,7,1,31,3,11,45,27,8,106,133,51,20,21,50,31,99,64,0),(3511,'2015-03-14 14:56:59','2015-08-29 14:46:10',1,30002757,69,10,2,41,21,11,10,14,2,50,64,23,14,1,2,50,23,1,0,0,5,10,17,0),(3512,'2015-03-14 14:56:59','2015-08-29 14:46:10',1,30001082,0,0,0,0,0,0,0,0,0,0,0,2,0,0,0,0,191,0,0,0,0,74,21,0),(3513,'2015-03-14 14:56:59','2015-08-29 14:46:10',1,30000035,0,49,21,1,0,101,140,5,15,0,62,84,64,56,71,56,73,96,110,5,63,20,79,0),(3514,'2015-03-14 14:56:59','2015-08-29 14:46:10',1,30000008,73,28,19,64,33,1,0,85,63,69,39,19,202,14,51,58,56,68,26,166,110,85,96,0),(3515,'2015-03-14 14:56:59','2015-08-29 14:46:10',1,30005040,211,171,207,241,172,311,233,31,187,179,221,204,338,499,243,129,208,128,228,117,177,172,127,0),(3516,'2015-03-14 14:56:59','2015-08-29 14:46:10',1,30045352,2,8,0,100,152,53,40,0,102,147,142,53,0,65,98,56,5,3,0,10,49,3,35,0),(3517,'2015-03-14 14:56:59','2015-08-29 14:46:10',1,30000143,509,708,729,684,573,401,486,505,467,787,720,665,650,749,860,985,862,834,514,501,701,783,523,0),(3518,'2015-03-14 14:56:59','2015-03-14 14:56:59',1,30003141,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(3519,'2015-03-14 14:56:59','2015-08-29 14:46:10',1,30000896,0,23,0,0,0,0,0,3,0,0,0,0,0,0,0,0,0,0,0,45,0,0,0,0),(3520,'2015-03-14 14:56:59','2015-03-14 14:56:59',1,30000902,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(3521,'2015-03-14 14:56:59','2015-08-29 14:46:10',1,30002303,0,0,0,0,0,0,0,0,0,0,0,0,0,37,0,0,0,0,0,0,0,0,0,0),(3522,'2015-03-14 14:56:59','2015-08-29 14:46:10',1,30000855,9,47,0,250,189,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(3523,'2015-03-14 14:56:59','2015-08-29 14:46:10',1,30004476,185,51,66,240,642,0,123,482,292,273,536,153,644,332,255,407,548,156,152,380,389,479,96,0),(3524,'2015-03-14 14:56:59','2015-08-29 14:46:10',1,30004338,0,130,1539,475,144,844,0,0,0,0,1,0,0,0,0,0,0,0,0,0,46,63,74,0),(3525,'2015-03-14 14:56:59','2015-08-29 14:46:10',1,30004518,1,0,15,17,25,6,18,23,48,26,13,12,79,27,68,59,22,0,17,0,78,218,190,0),(3526,'2015-03-14 14:56:59','2015-08-29 14:46:10',1,30005018,124,117,59,77,152,60,50,22,52,124,77,55,108,132,132,193,132,106,103,58,96,71,188,0),(3527,'2015-03-14 14:56:59','2015-08-29 14:46:10',1,30004712,0,0,0,0,0,0,0,5,3,0,4,0,0,0,1,110,0,0,0,0,0,52,11,0),(3528,'2015-03-14 14:56:59','2015-08-29 14:46:10',1,30002218,69,43,27,37,53,141,121,3,109,0,0,59,14,53,39,40,7,0,0,20,73,5,99,0),(3529,'2015-03-14 14:56:59','2015-08-29 14:46:10',1,30000131,271,160,154,107,131,145,174,211,344,232,320,361,171,296,279,290,214,222,309,221,104,365,290,0),(3530,'2015-03-14 14:56:59','2015-08-29 14:46:10',1,30002219,11,0,0,0,0,0,0,0,0,0,56,41,53,0,0,0,3,0,0,42,30,17,0,0),(3531,'2015-03-14 14:56:59','2015-08-29 14:46:10',1,30001401,421,577,294,178,265,468,244,77,252,499,467,572,410,601,645,625,489,247,292,201,486,602,737,0),(3532,'2015-03-14 14:56:59','2015-08-29 14:46:10',1,30005236,0,12,0,0,5,3,1,0,6,0,60,41,0,142,21,0,132,0,0,62,0,0,19,0),(3533,'2015-03-14 14:56:59','2015-08-29 14:46:10',1,30004094,324,234,241,320,338,70,131,108,78,106,124,51,122,160,116,46,205,59,68,11,185,149,168,0),(3534,'2015-03-14 14:56:59','2015-08-29 14:46:10',1,30001725,1,9,0,0,0,101,0,0,0,8,0,0,126,33,22,1,23,0,0,0,27,0,145,0),(3535,'2015-03-14 14:56:59','2015-08-29 14:46:10',1,30045348,27,7,17,3,27,53,83,69,17,45,45,5,102,16,12,0,34,22,22,3,0,37,59,0),(3536,'2015-03-14 14:56:59','2015-08-29 14:46:10',1,30003884,5,0,0,0,0,0,0,48,49,21,1,0,0,0,31,31,0,0,0,0,39,2,0,0),(3537,'2015-03-14 14:56:59','2015-08-29 14:46:10',1,30001376,483,448,392,211,214,123,388,296,437,477,528,584,702,556,572,622,834,60,94,424,180,478,352,0),(3538,'2015-03-14 14:56:59','2015-08-29 14:46:10',1,30004307,0,19,9,89,133,75,29,11,0,30,30,11,0,0,0,0,0,0,0,0,2,20,24,0),(3539,'2015-03-14 14:56:59','2015-08-29 14:46:10',1,30004533,0,0,0,129,129,0,0,0,0,0,0,0,0,0,0,0,15,0,0,0,0,0,0,0),(3540,'2015-03-14 14:56:59','2015-08-29 14:46:10',1,30004479,0,0,0,0,0,0,0,608,1,90,91,0,0,0,0,0,0,1,160,103,0,0,0,0),(3541,'2015-03-14 14:56:59','2015-08-29 14:46:10',1,30002451,188,232,0,0,211,236,0,0,0,0,0,37,0,0,0,20,0,0,0,0,0,0,0,0),(3542,'2015-03-14 14:56:59','2015-08-29 14:46:10',1,30001822,0,0,0,0,0,48,0,0,0,0,0,0,0,0,0,0,0,0,0,0,9,94,30,0),(3543,'2015-03-14 14:56:59','2015-03-14 14:56:59',1,30000368,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(3544,'2015-03-14 14:56:59','2015-08-29 14:46:10',1,30004919,754,0,395,81,0,2,0,0,203,236,255,336,259,86,224,414,245,22,47,165,405,248,249,0),(3545,'2015-03-14 14:56:59','2015-03-14 14:56:59',1,30004866,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(3546,'2015-03-14 14:56:59','2015-08-29 14:46:10',1,30001094,0,0,0,0,0,0,0,0,32,50,43,0,28,30,30,0,0,0,0,0,0,0,0,0),(3547,'2015-03-14 14:56:59','2015-08-29 14:46:10',1,30001962,0,34,54,0,0,0,1,41,0,0,0,0,0,0,0,0,0,133,0,0,0,0,35,0),(3548,'2015-03-14 14:56:59','2015-03-14 14:56:59',1,30002103,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(3549,'2015-03-14 14:56:59','2015-08-29 14:46:10',1,30000696,0,139,7,8,1,0,1,10,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(3550,'2015-03-14 14:56:59','2015-03-14 14:56:59',1,30001622,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(3551,'2015-03-14 14:56:59','2015-08-29 14:46:10',1,30001061,27,0,214,12,109,415,5,14,255,0,0,40,540,0,0,0,0,0,319,170,80,0,0,0),(3552,'2015-03-14 14:56:59','2015-08-29 14:46:10',1,30004318,123,0,0,87,304,0,131,0,0,0,0,0,0,0,0,0,98,41,27,0,89,0,0,0),(3553,'2015-03-14 14:56:59','2015-08-29 14:46:10',1,30004035,76,0,246,0,0,0,256,358,119,461,441,426,268,488,74,119,1340,0,0,53,950,988,573,0),(3554,'2015-03-14 14:56:59','2015-08-29 14:46:10',1,30002606,0,0,0,0,0,0,0,0,0,0,0,0,0,45,16,8,0,0,1,80,0,0,0,0),(3555,'2015-03-14 14:56:59','2015-08-29 14:46:10',1,30000183,446,673,743,617,542,437,265,451,426,775,1169,510,625,690,690,887,849,610,247,538,544,759,855,0),(3556,'2015-03-14 14:56:59','2015-08-29 14:46:10',1,30001665,25,0,0,10,10,26,0,0,8,128,120,88,172,35,249,256,62,6,53,132,40,105,1,0),(3557,'2015-03-14 14:56:59','2015-08-29 14:46:10',1,30003627,0,0,0,0,0,0,29,0,0,0,0,0,0,0,0,3,0,0,0,0,0,0,0,0),(3558,'2015-03-14 14:56:59','2015-03-14 14:56:59',1,30000350,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(3559,'2015-03-14 14:56:59','2015-08-29 14:46:10',1,30004438,0,22,0,0,24,0,0,0,0,0,0,0,151,0,0,0,0,0,0,81,0,0,0,0),(3560,'2015-03-14 14:56:59','2015-08-29 14:46:10',1,30002340,11,5,0,0,0,0,5,7,11,0,0,3,40,6,0,0,0,13,20,8,8,0,9,0),(3561,'2015-03-14 14:56:59','2015-08-29 14:46:10',1,30004440,0,0,0,3,4,0,0,0,0,0,0,0,0,49,0,0,0,0,0,0,0,126,21,0),(3562,'2015-03-14 14:56:59','2015-08-29 14:46:10',1,30004612,614,208,202,717,413,0,379,107,0,0,0,0,0,0,0,58,76,21,0,0,114,215,256,0),(3563,'2015-03-14 14:56:59','2015-08-29 14:46:10',1,30001874,13,1,0,0,0,2,14,0,35,30,0,81,162,131,321,302,133,0,50,84,3,417,43,0),(3564,'2015-03-14 14:56:59','2015-08-29 14:46:10',1,30004911,0,158,136,220,280,66,0,0,0,0,43,0,0,3,185,359,139,0,0,0,0,11,0,0),(3565,'2015-03-14 14:56:59','2015-08-29 14:46:10',1,30004863,0,0,0,0,0,0,17,12,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(3566,'2015-03-14 14:56:59','2015-08-29 14:46:10',1,30000870,870,468,506,882,513,537,185,415,418,302,98,220,119,189,449,442,87,26,396,390,21,31,334,0),(3567,'2015-03-14 14:56:59','2015-08-29 14:46:10',1,30004050,0,0,0,0,0,0,7,0,0,28,28,0,155,0,0,0,97,0,0,0,0,0,3,0),(3568,'2015-03-14 14:56:59','2015-08-29 14:46:10',1,30002935,150,241,155,65,54,168,59,32,407,242,210,252,161,67,84,155,417,234,244,250,123,243,259,0),(3569,'2015-03-14 14:56:59','2015-08-29 14:46:10',1,30000627,3,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,41,8,0,0),(3570,'2015-03-14 14:56:59','2015-08-29 14:46:10',1,30000744,0,0,0,0,0,0,6,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(3571,'2015-03-14 14:56:59','2015-03-14 14:56:59',1,30000982,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(3572,'2015-03-14 14:56:59','2015-08-29 14:46:10',1,30004692,0,0,0,0,0,61,0,63,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(3573,'2015-03-14 14:56:59','2015-03-14 14:56:59',1,30000831,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(3574,'2015-03-14 14:56:59','2015-08-29 14:46:10',1,30002034,0,10,66,0,0,0,0,0,35,0,0,0,78,0,0,0,1,0,0,0,0,0,0,0),(3575,'2015-03-14 14:56:59','2015-08-29 14:46:10',1,30004060,0,0,0,0,0,0,0,0,28,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(3576,'2015-03-14 14:56:59','2015-08-29 14:46:10',1,30001964,2,1,1,1,0,2,303,1,0,0,0,1,0,0,2,2,0,0,0,0,1,0,84,0),(3577,'2015-03-14 14:56:59','2015-08-29 14:46:10',1,30003683,53,0,0,0,0,0,43,1,0,0,0,0,0,0,0,0,0,43,81,0,0,18,23,0),(3578,'2015-03-14 14:56:59','2015-08-29 14:46:10',1,30001955,59,0,0,0,0,0,0,0,0,0,0,0,0,146,89,29,0,43,0,0,0,0,0,0),(3579,'2015-03-14 14:56:59','2015-03-14 14:56:59',1,30002358,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(3580,'2015-03-14 14:56:59','2015-08-29 14:46:10',1,30004199,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,3,0,0,0,0,0),(3581,'2015-03-14 14:56:59','2015-08-29 14:46:10',1,30001938,0,0,0,0,0,0,0,1,0,0,61,13,0,70,71,20,101,0,0,87,89,57,94,0),(3582,'2015-03-14 14:56:59','2015-08-29 14:46:10',1,30004713,0,0,0,0,0,0,0,0,2,3,3,0,0,0,0,0,0,0,0,0,0,0,0,0),(3583,'2015-03-14 14:56:59','2015-08-29 14:46:10',1,30004049,19,481,80,85,16,183,141,55,0,0,0,30,0,0,0,0,0,0,0,0,0,0,0,0),(3584,'2015-03-14 14:56:59','2015-08-29 14:46:10',1,30004326,311,0,114,289,141,94,865,826,70,88,296,1249,173,364,524,356,435,512,928,1300,998,1060,1700,0),(3585,'2015-03-14 14:56:59','2015-03-14 14:56:59',1,30002351,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(3586,'2015-03-14 14:56:59','2015-08-29 14:46:10',1,30000309,640,239,18,175,152,612,3,130,27,46,0,69,154,200,71,23,0,0,167,137,34,0,71,0),(3587,'2015-03-14 14:56:59','2015-03-14 14:56:59',1,30004671,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(3588,'2015-03-14 14:56:59','2015-08-29 14:46:10',1,30004703,2320,267,763,844,1040,844,326,809,326,197,1062,1250,1753,807,662,198,2373,37,0,1048,1420,457,1121,0),(3589,'2015-03-14 14:56:59','2015-08-29 14:46:10',1,30001986,0,0,0,15,0,0,0,0,0,0,0,0,0,0,0,0,0,12,0,0,0,4,0,0),(3590,'2015-03-14 14:56:59','2015-08-29 14:46:10',1,30001751,3,0,19,89,0,8,2,53,0,0,0,0,0,0,0,0,0,0,0,0,0,0,57,0),(3591,'2015-03-14 14:56:59','2015-03-14 14:56:59',1,30000993,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(3592,'2015-03-14 14:56:59','2015-08-29 14:46:10',1,30004649,0,0,0,0,0,0,12,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,22,0),(3593,'2015-03-14 14:56:59','2015-08-29 14:46:10',1,30005171,97,23,13,113,85,22,145,134,8,13,18,18,46,97,61,87,110,47,1,4,178,44,30,0),(3594,'2015-03-14 14:56:59','2015-08-29 14:46:10',1,30004543,0,23,0,0,0,4,0,77,0,29,0,0,0,2,0,0,0,0,0,0,0,0,0,0),(3595,'2015-03-14 14:56:59','2015-08-29 14:46:10',1,30000975,0,0,0,0,0,3,0,0,0,0,0,0,0,3,0,0,0,0,0,0,0,0,0,0),(3596,'2015-03-14 14:56:59','2015-08-29 14:46:10',1,30001297,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,48,0,0,0,0),(3597,'2015-03-14 14:56:59','2015-08-29 14:46:10',1,30002457,0,204,130,266,172,0,1,0,0,0,0,0,0,0,0,0,114,0,0,0,0,0,0,0),(3598,'2015-03-14 14:56:59','2015-08-29 14:46:10',1,30003761,194,104,33,112,206,87,0,0,76,153,270,592,143,155,152,293,601,105,518,415,420,210,724,0),(3599,'2015-03-14 14:56:59','2015-08-29 14:46:10',1,30004044,0,0,0,0,0,0,0,0,0,0,0,19,3,0,9,23,0,0,0,6,43,29,19,0),(3600,'2015-03-14 14:56:59','2015-08-29 14:46:10',1,30002425,0,0,0,53,0,25,4,0,0,0,0,0,0,0,0,0,6,0,60,86,0,0,69,0),(3601,'2015-03-14 14:56:59','2015-08-29 14:46:10',1,30004699,122,86,444,223,232,318,127,12,0,0,0,0,0,0,0,0,0,0,0,0,108,0,0,0),(3602,'2015-03-14 14:56:59','2015-08-29 14:46:10',1,30003686,223,21,16,173,209,143,204,13,59,173,209,39,137,32,58,52,0,2,26,21,173,14,20,0),(3603,'2015-03-14 14:56:59','2015-03-14 14:56:59',1,30002602,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(3604,'2015-03-14 14:56:59','2015-08-29 14:46:10',1,30002499,131,0,45,0,0,70,0,0,0,0,0,0,110,0,0,1,0,89,1,15,82,0,0,0),(3605,'2015-03-14 14:56:59','2015-08-29 14:46:10',1,30000492,0,0,105,0,0,12,0,0,0,52,106,0,0,0,0,0,0,0,0,0,0,0,0,0),(3606,'2015-03-14 14:56:59','2015-08-29 14:46:10',1,30002851,4,0,40,0,0,0,0,4,0,0,0,4,7,3,13,19,10,0,0,9,10,0,7,0),(3607,'2015-03-14 14:56:59','2015-08-29 14:46:10',1,30003645,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,29,29,0,0),(3608,'2015-03-14 14:56:59','2015-08-29 14:46:10',1,30003946,137,76,174,155,6,60,0,22,267,201,195,508,162,138,134,142,172,43,241,64,212,298,466,0),(3609,'2015-03-14 14:56:59','2015-03-14 14:56:59',1,30002153,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(3610,'2015-03-14 14:56:59','2015-08-29 14:46:10',1,30004691,0,0,55,0,0,0,116,228,0,0,0,0,0,8,104,103,0,0,0,0,0,0,0,0),(3611,'2015-03-14 14:56:59','2015-08-29 14:46:10',1,30002884,273,0,221,137,230,323,95,320,141,333,339,653,113,340,522,248,443,149,159,217,837,1260,1041,0),(3612,'2015-03-14 14:56:59','2015-08-29 14:46:10',1,30000512,270,1093,377,171,273,516,207,177,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(3613,'2015-03-14 14:56:59','2015-08-29 14:46:10',1,30001855,0,0,0,0,0,0,0,0,11,0,0,1,0,0,0,0,0,0,0,0,1,18,24,0),(3614,'2015-03-14 14:56:59','2015-08-29 14:46:10',1,30002116,265,233,101,0,0,314,172,71,0,64,3,0,0,0,0,0,130,0,0,0,0,155,131,0),(3615,'2015-03-14 14:56:59','2015-08-29 14:46:10',1,30001099,55,9,0,0,0,8,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0),(3616,'2015-03-14 14:56:59','2015-08-29 14:46:10',1,30002179,0,0,0,0,0,4,0,0,0,0,0,0,37,0,0,0,0,0,0,13,0,0,0,0),(3617,'2015-03-14 14:56:59','2015-08-29 14:46:10',1,30001068,0,0,0,0,0,47,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,43,0),(3618,'2015-03-14 14:56:59','2015-08-29 14:46:10',1,30004381,1055,21,719,668,547,489,446,820,96,28,60,148,476,14,271,430,0,277,171,147,374,402,562,0),(3619,'2015-03-14 14:56:59','2015-08-29 14:46:10',1,30002879,0,0,0,0,0,0,0,0,0,3,3,0,0,0,0,0,0,0,0,0,0,0,0,0),(3620,'2015-03-14 14:56:59','2015-08-29 14:46:10',1,30004424,0,0,0,0,0,0,31,0,0,0,0,0,0,0,0,0,0,0,0,0,18,0,0,0),(3621,'2015-03-14 14:56:59','2015-08-29 14:46:10',1,30000560,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,211,0,0,0),(3622,'2015-03-14 14:56:59','2015-08-29 14:46:10',1,30000679,0,0,0,0,0,0,0,0,0,6,6,0,0,0,2,32,7,0,3,9,30,28,1,0),(3623,'2015-03-14 14:56:59','2015-08-29 14:46:10',1,30004996,4,0,60,0,14,45,0,63,0,16,0,4,0,0,0,0,0,0,3,0,15,9,124,0),(3624,'2015-03-14 14:56:59','2015-08-29 14:46:10',1,30000155,415,547,452,709,619,234,166,445,285,566,708,670,560,650,803,952,822,258,288,389,589,425,397,0),(3625,'2015-03-14 14:56:59','2015-08-29 14:46:10',1,30000205,4,0,0,11,11,31,26,0,10,32,59,18,6,87,21,73,108,91,0,24,0,0,3,0),(3626,'2015-03-14 14:56:59','2015-08-29 14:46:10',1,30004109,2,0,0,55,75,0,0,0,0,0,0,0,0,0,0,17,31,8,26,0,0,34,3,0),(3627,'2015-03-14 14:56:59','2015-08-29 14:46:10',1,30004487,90,233,82,240,395,103,0,0,0,0,0,0,0,0,0,0,0,125,0,0,0,0,218,0),(3628,'2015-03-14 14:56:59','2015-08-29 14:46:10',1,30002522,54,145,49,26,105,99,9,76,157,67,45,71,106,57,48,123,114,96,208,138,52,108,193,0),(3629,'2015-03-14 14:56:59','2015-03-14 14:56:59',1,30005181,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(3630,'2015-03-14 14:56:59','2015-08-29 14:46:10',1,30003578,134,108,226,188,131,101,65,17,169,54,85,202,133,103,127,136,157,30,37,153,249,358,245,0),(3631,'2015-03-14 14:56:59','2015-08-29 14:46:10',1,30004426,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,76,12,0,0,0,0),(3632,'2015-03-14 14:56:59','2015-08-29 14:46:10',1,30003857,4,67,0,0,23,20,28,15,11,15,5,20,14,9,11,23,8,5,18,13,14,14,1,0),(3633,'2015-03-14 14:56:59','2015-08-29 14:46:10',1,30002509,927,719,666,834,667,663,472,386,1089,1121,1104,973,1199,1242,1325,1260,1213,434,743,1055,1120,721,1140,0),(3634,'2015-03-14 14:56:59','2015-08-29 14:46:10',1,30002388,38,42,19,50,0,0,21,1,1,1,0,0,24,1,1,8,0,0,35,46,9,29,3,0),(3635,'2015-03-14 14:56:59','2015-08-29 14:46:10',1,30003470,1,0,0,78,0,0,0,0,3,0,0,0,3,0,0,0,0,36,0,0,127,0,73,0),(3636,'2015-03-14 14:56:59','2015-08-29 14:46:10',1,30002694,66,0,279,33,0,54,103,61,40,112,57,0,70,128,143,117,18,0,2,68,111,18,10,0),(3637,'2015-03-14 14:56:59','2015-08-29 14:46:10',1,30002963,6,68,39,0,0,0,6,55,0,68,147,13,0,3,22,30,62,9,34,1,1,31,10,0),(3638,'2015-03-14 14:56:59','2015-08-29 14:46:10',1,30003582,22,19,39,51,70,19,22,3,49,39,88,1,98,145,13,34,114,62,6,33,44,39,2,0),(3639,'2015-03-14 14:56:59','2015-08-29 14:46:10',1,30003050,74,46,168,47,23,128,72,84,79,185,165,100,143,265,254,120,123,67,79,253,160,54,99,0),(3640,'2015-03-14 14:56:59','2015-08-29 14:46:10',1,30000077,80,86,63,68,34,63,174,82,39,4,43,96,3,25,60,149,121,101,74,98,25,136,99,0),(3641,'2015-03-14 14:56:59','2015-08-29 14:46:10',1,30012715,233,147,437,299,63,416,78,263,403,536,477,514,622,461,496,597,233,227,217,608,328,291,151,0),(3642,'2015-03-14 14:56:59','2015-08-29 14:46:10',1,30003657,0,0,14,0,86,0,0,36,0,0,0,0,0,80,81,9,0,0,0,0,0,0,0,0),(3643,'2015-03-14 14:56:59','2015-08-29 14:46:10',1,30002008,36,3,2,5,4,45,6,67,81,12,65,29,0,6,32,45,17,6,10,59,9,32,59,0),(3644,'2015-03-14 14:56:59','2015-03-14 14:56:59',1,30000439,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(3645,'2015-03-14 14:56:59','2015-08-29 14:46:10',1,30003577,65,128,131,22,28,74,46,41,128,171,133,133,36,181,162,65,190,82,76,81,93,56,32,0),(3646,'2015-03-14 14:56:59','2015-08-29 14:46:10',1,30002427,0,0,211,12,0,0,0,0,0,0,0,0,0,0,0,27,0,0,0,0,0,0,0,0),(3647,'2015-03-14 14:56:59','2015-08-29 14:46:10',1,30003446,0,32,0,6,0,4,0,24,0,67,63,14,0,2,2,0,76,0,2,7,0,0,84,0),(3648,'2015-03-14 14:56:59','2015-08-29 14:46:10',1,30003460,63,0,0,25,2,6,20,0,0,2,3,7,0,0,18,46,15,0,0,0,4,2,60,0),(3649,'2015-03-14 14:56:59','2015-08-29 14:46:10',1,30002549,5,9,13,10,96,150,6,9,22,40,126,31,228,42,135,110,58,0,19,16,77,17,1,0),(3650,'2015-03-14 14:56:59','2015-08-29 14:46:10',1,30002061,0,10,0,86,103,4,52,13,6,32,33,18,7,29,30,97,3,18,11,17,32,45,20,0),(3651,'2015-03-14 14:56:59','2015-03-14 14:56:59',1,30000472,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(3652,'2015-03-14 14:56:59','2015-08-29 14:46:10',1,30003598,43,0,0,25,1,88,0,0,0,0,73,21,0,0,1,15,28,0,0,0,0,0,50,0),(3653,'2015-03-14 14:56:59','2015-08-29 14:46:10',1,30001191,0,0,0,0,0,0,0,0,0,0,137,0,0,0,0,0,1,25,0,0,0,0,0,0),(3654,'2015-03-14 14:56:59','2015-08-29 14:46:10',1,30003437,142,43,23,55,12,70,72,55,34,33,31,225,53,24,22,125,32,23,6,63,32,67,87,0),(3655,'2015-03-14 14:56:59','2015-08-29 14:46:10',1,30005068,4,0,26,50,50,0,0,8,15,27,35,1,0,0,0,0,0,22,34,41,0,0,0,0),(3656,'2015-03-14 14:56:59','2015-08-29 14:46:10',1,30002045,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,4,0,0),(3657,'2015-03-14 14:56:59','2015-08-29 14:46:10',1,30003984,37,0,0,0,0,4,0,0,15,106,198,364,86,10,79,144,325,123,109,75,144,119,9,0),(3658,'2015-03-14 14:56:59','2015-08-29 14:46:10',1,30001435,0,23,93,0,0,12,0,126,25,24,5,80,1,9,0,47,13,0,0,25,72,0,1,0),(3659,'2015-03-14 14:56:59','2015-08-29 14:46:10',1,30002970,129,399,518,310,345,122,230,246,151,435,667,254,130,136,182,308,202,33,71,43,342,193,240,0),(3660,'2015-03-14 14:56:59','2015-08-29 14:46:10',1,30000204,0,118,37,0,45,12,69,36,11,110,65,0,1,26,50,30,156,35,14,41,27,41,97,0),(3661,'2015-03-14 14:56:59','2015-08-29 14:46:10',1,30000136,198,282,199,61,56,205,131,206,84,277,185,213,316,826,684,193,245,100,122,125,418,72,229,0),(3662,'2015-03-14 14:56:59','2015-08-29 14:46:10',1,30002743,250,576,774,966,976,158,211,58,242,431,540,274,248,317,309,376,32,36,459,108,356,348,79,0),(3663,'2015-03-14 14:56:59','2015-08-29 14:46:10',1,30002818,254,123,254,295,178,275,138,174,154,146,187,370,227,141,124,153,193,338,33,170,176,242,105,0),(3664,'2015-03-14 14:56:59','2015-08-29 14:46:10',1,30003838,9,6,21,2,10,2,100,47,0,9,9,0,12,14,28,17,16,13,6,1,0,4,10,0),(3665,'2015-03-14 14:56:59','2015-08-29 14:46:10',1,30002746,375,1234,1700,1299,1380,91,118,47,246,511,347,292,115,263,242,390,247,79,155,73,140,251,136,0),(3666,'2015-03-14 14:56:59','2015-08-29 14:46:10',1,30000186,8,60,127,163,110,0,34,24,39,0,31,12,13,29,41,32,19,9,4,18,20,44,92,0),(3667,'2015-03-14 14:56:59','2015-08-29 14:46:10',1,30001444,227,128,371,303,168,289,53,213,196,193,296,182,218,269,280,209,194,157,150,253,277,334,195,0),(3668,'2015-03-14 14:56:59','2015-08-29 14:46:10',1,30045347,25,0,15,11,85,9,22,59,6,1,1,7,42,45,50,9,85,3,0,0,11,0,6,0),(3669,'2015-03-14 14:56:59','2015-08-29 14:46:10',1,30002750,66,252,361,113,124,347,89,229,160,339,469,285,167,283,250,198,296,174,208,301,189,141,173,0),(3670,'2015-03-14 14:56:59','2015-08-29 14:46:10',1,30003132,0,0,0,0,0,41,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(3671,'2015-03-14 14:56:59','2015-08-29 14:46:10',1,30001425,682,170,269,339,432,377,237,217,447,616,568,153,291,296,514,613,310,106,214,154,189,268,344,0),(3672,'2015-03-14 14:56:59','2015-08-29 14:46:10',1,30022715,43,17,81,0,88,90,67,0,9,0,16,0,83,88,43,71,0,104,52,152,113,42,69,0),(3673,'2015-03-14 14:56:59','2015-08-29 14:46:10',1,30001433,154,75,291,128,116,74,40,97,136,366,200,299,339,130,100,109,239,73,125,85,202,68,46,0),(3674,'2015-03-14 14:56:59','2015-08-29 14:46:10',1,30002799,196,348,396,265,424,172,24,188,410,595,568,324,392,304,340,506,613,306,277,240,548,644,521,0),(3675,'2015-03-14 14:56:59','2015-08-29 14:46:10',1,30004334,12,26,6,16,14,0,14,452,0,76,68,0,0,113,60,19,0,0,0,0,0,46,6,0),(3676,'2015-03-14 14:56:59','2015-08-29 14:46:10',1,30001341,71,0,0,0,0,36,0,0,3,71,19,0,69,0,0,0,0,0,39,73,0,0,0,0),(3677,'2015-03-14 14:56:59','2015-08-29 14:46:10',1,30000983,0,0,0,0,6,0,0,1,0,68,1,0,0,0,0,0,8,0,0,0,0,0,10,0),(3678,'2015-03-14 14:56:59','2015-03-14 14:56:59',1,30005091,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(3679,'2015-03-14 14:56:59','2015-08-29 14:46:10',1,30000945,0,0,73,3,9,0,5,78,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(3680,'2015-03-14 14:56:59','2015-08-29 14:46:10',1,30045307,34,46,1,6,15,8,1,18,18,30,12,84,58,14,59,60,51,0,55,39,125,141,41,0),(3681,'2015-03-14 14:56:59','2015-08-29 14:46:10',1,30004924,0,0,0,0,0,121,97,30,98,452,602,260,250,91,165,323,438,0,0,4,1138,626,628,0),(3682,'2015-03-14 14:56:59','2015-08-29 14:46:10',1,30045330,0,0,0,1,1,0,95,4,7,0,0,3,37,17,97,92,0,0,0,6,11,59,5,0),(3683,'2015-03-14 14:56:59','2015-08-29 14:46:10',1,30004645,0,0,0,53,22,58,0,1,68,49,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(3684,'2015-03-14 14:56:59','2015-08-29 14:46:10',1,30003388,97,132,62,104,113,79,133,198,123,59,48,46,122,62,100,170,116,111,210,83,88,278,12,0),(3685,'2015-03-14 14:56:59','2015-08-29 14:46:10',1,30005000,18,166,0,15,0,6,6,38,0,8,6,6,0,6,5,4,10,39,1,10,35,12,7,0),(3686,'2015-03-14 14:56:59','2015-08-29 14:46:10',1,30032715,47,204,114,60,37,0,100,48,91,63,132,13,137,105,132,225,48,37,34,159,31,244,27,0),(3687,'2015-03-14 14:56:59','2015-08-29 14:46:10',1,30002686,95,0,17,57,105,25,13,0,22,14,13,35,2,38,31,9,0,0,0,0,0,0,53,0),(3688,'2015-03-14 14:56:59','2015-08-29 14:46:10',1,30002515,0,2,5,25,23,1,0,0,0,0,0,4,1,12,7,4,79,5,47,44,2,0,7,0),(3689,'2015-03-14 14:56:59','2015-08-29 14:46:10',1,30003058,20,27,98,72,67,17,151,1,53,4,2,6,38,128,159,55,44,0,9,111,0,65,75,0),(3690,'2015-03-14 14:56:59','2015-08-29 14:46:10',1,30005272,7,9,25,23,14,59,66,0,15,15,3,0,30,44,9,12,0,0,39,18,0,0,1,0),(3691,'2015-03-14 14:56:59','2015-08-29 14:46:10',1,30000158,383,441,422,259,285,368,479,249,369,764,727,473,822,718,639,788,704,158,451,388,905,568,395,0),(3692,'2015-03-14 14:56:59','2015-08-29 14:46:10',1,30004137,0,2,0,0,0,0,0,0,0,0,0,0,195,0,0,5,0,0,0,0,24,0,22,0),(3693,'2015-03-14 14:56:59','2015-08-29 14:46:10',1,30004302,0,0,6,0,0,27,0,0,0,0,0,0,1,0,0,0,0,0,0,91,9,0,0,0),(3694,'2015-03-14 14:56:59','2015-08-29 14:46:10',1,30003817,0,0,68,203,103,38,0,90,143,5,6,0,624,439,714,764,304,9,203,496,491,431,424,0),(3695,'2015-03-14 14:56:59','2015-08-29 14:46:10',1,30005027,84,291,73,62,194,92,166,85,53,44,29,136,108,154,74,163,163,5,217,332,132,143,131,0),(3696,'2015-03-14 14:56:59','2015-08-29 14:46:10',1,30004244,0,48,0,37,37,0,0,0,0,0,0,0,0,0,0,0,14,0,0,0,0,0,2,0),(3697,'2015-03-14 14:56:59','2015-08-29 14:46:10',1,30002811,5,32,12,6,13,4,22,6,14,3,6,15,34,46,71,32,52,0,22,67,0,42,26,0),(3698,'2015-03-14 14:56:59','2015-08-29 14:46:10',1,30001688,8,82,147,97,71,8,65,118,113,183,276,134,96,60,69,59,75,77,159,201,89,85,53,0),(3699,'2015-03-14 14:56:59','2015-08-29 14:46:10',1,30003603,88,253,104,50,132,29,114,3,42,45,65,68,155,158,2,76,0,0,0,27,195,123,45,0),(3700,'2015-03-14 14:56:59','2015-08-29 14:46:10',1,30002568,168,58,38,218,160,90,42,140,107,146,148,131,187,100,65,118,91,138,86,175,188,59,80,0),(3701,'2015-03-14 14:56:59','2015-08-29 14:46:10',1,30003386,169,90,13,93,147,141,7,14,18,215,188,89,84,71,15,124,357,151,60,78,59,2,103,0),(3702,'2015-03-14 14:56:59','2015-08-29 14:46:10',1,30045324,297,221,226,71,76,242,202,141,137,162,230,129,207,294,273,215,257,197,261,283,325,436,207,0),(3703,'2015-03-14 14:56:59','2015-08-29 14:46:10',1,30004990,29,3,103,8,7,0,1,61,32,0,84,2,0,28,21,0,0,0,80,0,15,3,5,0),(3704,'2015-03-14 14:56:59','2015-08-29 14:46:10',1,30002779,332,352,277,163,176,213,203,92,437,339,361,523,131,197,329,384,319,212,231,52,252,188,132,0),(3705,'2015-03-14 14:56:59','2015-08-29 14:46:10',1,30000013,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,14,4,0,0,0,0),(3706,'2015-03-14 14:56:59','2015-08-29 14:46:10',1,30002091,12,4,18,33,67,6,0,11,21,40,17,3,7,114,66,13,36,1,26,43,13,9,83,0),(3707,'2015-03-14 14:56:59','2015-08-29 14:46:10',1,30000174,118,149,325,345,175,276,68,325,68,241,317,203,412,520,537,552,359,32,203,333,279,361,355,0),(3708,'2015-03-14 14:56:59','2015-08-29 14:46:10',1,30001946,0,7,0,0,0,0,0,0,12,12,12,0,0,0,4,8,5,0,0,0,0,0,3,0),(3709,'2015-03-14 14:56:59','2015-08-29 14:46:10',1,30005109,177,44,0,0,4,0,5,69,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(3710,'2015-03-14 14:56:59','2015-08-29 14:46:10',1,30002173,26,15,151,53,55,297,130,46,391,270,318,4,1260,215,135,70,126,61,298,209,146,26,55,0),(3711,'2015-03-14 14:56:59','2015-08-29 14:46:10',1,30003430,2,9,62,8,7,85,56,65,33,69,133,21,125,76,104,78,151,57,19,73,23,87,42,0),(3712,'2015-03-14 14:56:59','2015-08-29 14:46:10',1,30004858,0,0,0,0,0,227,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(3713,'2015-03-14 14:56:59','2015-03-14 14:56:59',1,30000607,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(3714,'2015-03-14 14:56:59','2015-08-29 14:46:10',1,30003450,263,101,61,217,217,230,322,315,225,457,387,293,323,221,185,190,328,116,191,215,116,371,118,0),(3715,'2015-03-14 14:56:59','2015-03-14 14:56:59',1,30003201,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(3716,'2015-03-14 14:56:59','2015-08-29 14:46:10',1,30001685,1,0,0,0,0,0,0,9,24,8,8,2,43,0,1,1,1,8,26,33,4,9,0,0),(3717,'2015-03-14 14:56:59','2015-08-29 14:46:10',1,30005060,58,132,147,128,198,144,55,110,29,260,335,205,111,182,144,287,126,104,186,246,349,165,178,0),(3718,'2015-03-14 14:56:59','2015-08-29 14:46:10',1,30000026,35,62,68,0,20,8,0,104,5,15,21,8,8,17,34,43,0,0,21,96,52,56,8,0),(3719,'2015-03-14 14:56:59','2015-08-29 14:46:10',1,30003453,92,82,157,56,50,43,133,130,13,3,34,64,95,94,119,76,118,120,22,67,79,97,127,0),(3720,'2015-03-14 14:56:59','2015-08-29 14:46:10',1,30002571,21,66,8,43,23,72,38,26,19,0,0,0,26,48,52,111,99,0,32,74,15,0,53,0),(3721,'2015-03-14 14:56:59','2015-08-29 14:46:10',1,30002098,0,1,21,11,12,25,0,53,10,3,0,0,17,6,9,11,12,30,27,10,17,43,2,0),(3722,'2015-03-14 14:56:59','2015-08-29 14:46:10',1,30022505,28,4,0,14,14,65,17,32,48,56,81,15,60,25,81,109,1,74,77,15,23,0,23,0),(3723,'2015-03-14 14:56:59','2015-08-29 14:46:10',1,30002399,146,36,265,47,0,0,254,0,84,136,166,13,75,28,28,33,38,85,120,0,68,105,12,0),(3724,'2015-03-14 14:56:59','2015-08-29 14:46:10',1,30003492,513,355,415,502,392,452,283,362,521,610,467,915,883,976,825,1005,1010,592,840,582,958,940,671,0),(3725,'2015-03-14 14:56:59','2015-08-29 14:46:10',1,30003596,36,0,13,1,6,97,4,22,19,1,34,11,14,63,17,16,41,0,64,0,18,62,11,0),(3726,'2015-03-14 14:56:59','2015-08-29 14:46:10',1,30000063,204,191,0,140,143,92,71,46,0,42,59,20,25,24,53,53,60,50,100,0,72,17,13,0),(3727,'2015-03-14 14:56:59','2015-08-29 14:46:10',1,30003830,110,168,41,197,175,132,50,20,91,321,206,150,97,141,152,193,72,51,131,108,89,383,101,0),(3728,'2015-03-14 14:56:59','2015-03-14 14:56:59',1,30000374,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(3729,'2015-03-14 14:56:59','2015-08-29 14:46:10',1,30000207,0,4,26,3,0,0,0,0,0,0,3,0,0,87,87,0,0,0,89,0,0,40,68,0),(3730,'2015-03-14 14:56:59','2015-08-29 14:46:10',1,30002569,41,30,59,13,2,35,46,27,33,21,46,56,51,74,98,92,45,80,27,62,81,61,28,0),(3731,'2015-03-14 14:56:59','2015-08-29 14:46:10',1,30002795,347,221,445,193,162,349,162,372,542,418,513,644,493,624,557,631,572,154,380,397,553,427,496,0),(3732,'2015-03-14 14:56:59','2015-08-29 14:46:10',1,30003870,0,17,0,0,24,33,16,32,11,0,0,22,0,97,117,65,18,142,0,0,81,0,28,0),(3733,'2015-03-14 14:56:59','2015-08-29 14:46:10',1,30003812,0,73,40,154,90,0,9,8,21,21,0,0,6,0,5,39,183,55,30,43,184,0,0,0),(3734,'2015-03-14 14:56:59','2015-08-29 14:46:10',1,30003831,17,193,175,161,267,122,42,115,350,177,110,22,90,398,190,42,239,16,68,173,185,140,211,0),(3735,'2015-03-14 14:56:59','2015-08-29 14:46:10',1,30005332,98,36,121,102,64,51,189,87,93,73,68,51,110,125,109,73,22,13,67,137,63,131,14,0),(3736,'2015-03-14 14:56:59','2015-08-29 14:46:10',1,30000180,1379,1466,1733,1597,1558,1037,1780,1109,919,1796,2153,2179,1820,1648,1726,2197,2095,1099,1096,1919,2058,1899,1917,0),(3737,'2015-03-14 14:56:59','2015-08-29 14:46:10',1,30002506,158,272,124,339,459,71,76,150,72,58,35,256,290,124,319,347,280,176,205,160,218,191,285,0),(3738,'2015-03-14 14:56:59','2015-08-29 14:46:10',1,30001358,146,35,349,31,1,44,132,24,71,146,146,326,97,91,245,332,202,2,75,188,81,125,163,0),(3739,'2015-03-14 14:56:59','2015-08-29 14:46:10',1,30003792,3,7,1,5,2,70,0,0,17,7,0,3,5,4,6,4,84,0,31,16,3,4,33,0),(3740,'2015-03-14 14:56:59','2015-08-29 14:46:10',1,30003427,48,14,41,14,58,22,10,33,168,130,132,55,33,8,61,80,163,33,51,51,199,188,104,0),(3741,'2015-03-14 14:56:59','2015-08-29 14:46:10',1,30002409,13,49,4,4,3,22,80,72,20,60,71,1,0,4,4,1,0,0,0,0,0,1,5,0),(3742,'2015-03-14 14:56:59','2015-08-29 14:46:10',1,30001579,302,0,178,340,455,356,65,49,0,261,450,191,0,797,1033,1120,776,0,0,0,2442,2306,1997,0),(3743,'2015-03-14 14:56:59','2015-08-29 14:46:10',1,30001005,200,38,0,202,174,0,0,177,39,0,0,65,267,195,110,109,126,120,169,141,107,162,208,0),(3744,'2015-03-14 14:56:59','2015-08-29 14:46:10',1,30005274,35,0,21,22,0,0,11,0,23,76,41,0,30,26,17,23,0,0,120,1,7,0,10,0),(3745,'2015-03-14 14:56:59','2015-08-29 14:46:10',1,30001421,73,60,47,119,133,165,52,102,67,108,234,150,202,213,234,318,131,108,141,45,189,117,311,0),(3746,'2015-03-14 14:56:59','2015-08-29 14:46:10',1,30000192,5,0,10,74,2,55,7,0,45,31,31,2,106,118,32,30,0,0,0,0,0,19,76,0),(3747,'2015-03-14 14:56:59','2015-08-29 14:46:10',1,30000157,152,181,167,85,83,505,233,302,103,235,210,189,331,282,234,279,326,84,236,207,385,418,512,0),(3748,'2015-03-14 14:56:59','2015-08-29 14:46:10',1,30003065,8,47,253,151,152,35,0,54,35,6,0,109,0,27,27,0,184,18,93,0,0,135,0,0),(3749,'2015-03-14 14:56:59','2015-08-29 14:46:10',1,30000171,285,194,555,410,292,417,115,155,371,218,339,215,232,264,189,198,235,103,268,270,421,307,149,0),(3750,'2015-03-14 14:56:59','2015-08-29 14:46:10',1,30001538,0,1,0,6,6,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(3751,'2015-03-14 14:56:59','2015-08-29 14:46:10',1,30001586,0,0,0,1,2,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(3752,'2015-03-14 14:56:59','2015-08-29 14:46:10',1,30002808,23,7,4,25,42,29,66,75,14,5,0,0,8,13,21,21,30,30,56,59,42,162,48,0),(3753,'2015-03-14 14:56:59','2015-08-29 14:46:10',1,30000172,317,388,320,258,248,145,145,566,279,592,499,363,315,576,434,128,76,565,407,51,150,177,157,0),(3754,'2015-03-14 14:56:59','2015-08-29 14:46:10',1,30000196,0,0,89,0,0,84,54,0,0,0,0,0,0,4,4,19,0,29,27,9,0,1,1,0),(3755,'2015-03-14 14:56:59','2015-08-29 14:46:10',1,30002723,27,113,0,1,1,62,0,4,0,4,1,75,96,18,3,1,20,14,1,3,5,4,8,0),(3756,'2015-03-14 14:56:59','2015-08-29 14:46:10',1,30002578,0,0,38,48,10,0,75,0,6,145,175,334,207,2,2,0,86,74,304,84,122,41,58,0),(3757,'2015-03-14 14:56:59','2015-08-29 14:46:10',1,30001446,21,17,37,69,20,2,29,47,71,6,10,0,56,39,123,105,38,19,22,210,31,20,27,0),(3758,'2015-03-14 14:56:59','2015-08-29 14:46:10',1,30000194,0,1,45,33,8,53,0,32,0,0,0,41,2,2,0,30,124,0,87,0,125,123,0,0),(3759,'2015-03-14 14:56:59','2015-03-14 14:56:59',1,30001476,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(3760,'2015-03-14 14:56:59','2015-08-29 14:46:10',1,30004052,0,0,61,0,0,134,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,42,0),(3761,'2015-03-14 14:56:59','2015-08-29 14:46:10',1,30005297,1,7,1,3,3,1,7,63,0,5,5,8,9,0,2,6,0,6,7,3,32,7,8,0),(3762,'2015-03-14 14:56:59','2015-08-29 14:46:10',1,30003833,2,6,0,4,41,0,1,0,0,0,57,100,34,63,40,3,0,2,5,64,1,12,19,0),(3763,'2015-03-14 14:56:59','2015-08-29 14:46:10',1,30001370,175,348,564,251,412,360,231,151,138,243,446,201,213,348,266,287,341,50,175,229,305,367,462,0),(3764,'2015-03-14 14:56:59','2015-08-29 14:46:10',1,30005203,3,7,12,9,3,0,28,17,11,31,39,0,13,10,10,10,96,0,0,24,149,131,56,0),(3765,'2015-03-14 14:56:59','2015-08-29 14:46:10',1,30004969,571,305,528,415,395,514,102,456,668,663,644,447,1309,619,639,704,1114,504,452,706,810,1012,622,0),(3766,'2015-03-14 14:56:59','2015-08-29 14:46:10',1,30000135,172,188,143,195,123,108,85,120,171,126,153,235,222,213,237,171,62,57,92,51,235,68,148,0),(3767,'2015-03-14 14:56:59','2015-03-14 14:56:59',1,30000335,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(3768,'2015-03-14 14:56:59','2015-08-29 14:46:10',1,30001819,0,79,0,0,0,0,0,80,0,0,0,0,0,0,0,0,0,0,0,0,0,0,15,0),(3769,'2015-03-14 14:56:59','2015-08-29 14:46:10',1,30004581,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,51,0),(3770,'2015-03-14 14:56:59','2015-08-29 14:46:10',1,30002936,22,124,0,0,0,62,1280,708,99,0,87,134,50,0,0,0,0,178,0,166,0,0,0,0),(3771,'2015-03-14 14:56:59','2015-03-14 14:56:59',1,30004521,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(3772,'2015-03-14 14:56:59','2015-08-29 14:46:10',1,30000735,62,542,107,172,199,161,0,0,0,0,0,0,113,0,0,0,74,0,0,0,171,1,70,0),(3773,'2015-03-14 14:56:59','2015-03-14 14:56:59',1,30004413,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(3774,'2015-03-14 14:56:59','2015-08-29 14:46:10',1,30003722,0,7,266,154,200,38,7,86,131,134,143,51,207,82,209,340,225,2,158,88,132,161,81,0),(3775,'2015-03-14 14:56:59','2015-08-29 14:46:10',1,30000885,0,47,0,0,0,48,0,0,0,0,0,0,0,0,0,0,0,85,0,0,0,0,0,0),(3776,'2015-03-14 14:56:59','2015-08-29 14:46:10',1,30004958,331,269,407,474,466,321,154,80,0,9,1,4,5,0,5,10,81,0,0,93,11,47,126,0),(3777,'2015-03-14 14:56:59','2015-08-29 14:46:10',1,30002961,12,11,14,9,40,19,33,3,2,28,39,20,7,23,22,22,0,14,24,34,20,24,0,0),(3778,'2015-03-14 14:56:59','2015-08-29 14:46:10',1,30003088,8,21,15,23,25,27,8,33,28,84,111,102,36,26,41,15,160,32,4,5,54,7,31,0),(3779,'2015-03-14 14:56:59','2015-08-29 14:46:10',1,30003254,0,60,562,0,0,0,303,508,1114,1103,763,855,1241,307,389,306,981,86,472,973,147,898,409,0),(3780,'2015-03-14 14:56:59','2015-08-29 14:46:10',1,30001282,0,0,34,26,3,42,1,0,1,1,0,0,0,0,0,0,0,0,0,0,0,1,0,0),(3781,'2015-03-14 14:56:59','2015-08-29 14:46:10',1,30002030,51,0,15,50,24,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,4,0,0),(3782,'2015-03-14 14:56:59','2015-08-29 14:46:10',1,30003680,336,44,154,113,131,169,256,210,90,165,187,57,66,377,203,171,47,36,12,7,39,50,20,0),(3783,'2015-03-14 14:56:59','2015-08-29 14:46:10',1,30003137,0,74,0,0,0,0,0,0,0,0,0,0,8,0,0,20,0,0,0,0,21,47,33,0),(3784,'2015-03-14 14:56:59','2015-08-29 14:46:10',1,30002482,205,0,6,62,223,222,0,0,50,144,75,0,0,0,0,66,27,0,0,0,0,0,0,0),(3785,'2015-03-14 14:56:59','2015-08-29 14:46:10',1,30001823,577,0,289,230,316,158,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(3786,'2015-03-14 14:56:59','2015-08-29 14:46:10',1,30002467,69,0,0,0,0,181,54,0,0,0,0,0,0,0,0,0,66,0,0,0,0,0,0,0),(3787,'2015-03-14 14:56:59','2015-08-29 14:46:10',1,30001268,83,3,50,32,34,18,4,108,138,214,292,185,101,116,137,173,24,0,1,81,14,128,76,0),(3788,'2015-03-14 14:56:59','2015-08-29 14:46:10',1,30001293,0,0,0,69,142,0,0,0,1,0,0,0,60,1,0,0,0,0,0,0,0,0,0,0),(3789,'2015-03-14 14:56:59','2015-08-29 14:46:10',1,30004187,0,0,199,162,228,0,0,1,0,149,474,1440,0,450,668,783,363,114,0,0,272,236,807,0),(3790,'2015-03-14 14:56:59','2015-03-14 14:56:59',1,30000365,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(3791,'2015-03-14 14:56:59','2015-08-29 14:46:10',1,30000661,0,0,0,0,0,0,0,0,0,0,0,0,0,0,20,27,22,39,86,6,88,15,11,0),(3792,'2015-03-14 14:56:59','2015-08-29 14:46:10',1,30001547,0,0,0,0,0,0,0,0,0,7,0,86,10,0,0,0,0,0,0,0,0,0,4,0),(3793,'2015-03-14 14:56:59','2015-08-29 14:46:10',1,30004170,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,42,0,0,0,0,0,0,0,0),(3794,'2015-03-14 14:56:59','2015-08-29 14:46:10',1,30004497,0,0,106,0,0,0,15,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0),(3795,'2015-03-14 14:56:59','2015-08-29 14:46:10',1,30001795,162,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(3796,'2015-03-14 14:56:59','2015-08-29 14:46:10',1,30003674,72,55,72,0,20,175,55,1,135,493,498,315,57,139,229,221,207,34,563,388,132,581,461,0),(3797,'2015-03-14 14:56:59','2015-08-29 14:46:10',1,30001329,63,0,0,38,61,0,5,32,30,38,18,0,29,27,27,1,19,0,0,0,0,43,1,0),(3798,'2015-03-14 14:56:59','2015-08-29 14:46:10',1,30003978,9,95,3,138,10,57,0,79,0,11,11,0,0,0,0,0,0,16,16,14,0,0,0,0),(3799,'2015-03-14 14:56:59','2015-08-29 14:46:10',1,30003248,1391,58,505,581,0,1013,354,1361,67,137,114,108,53,464,215,138,2060,75,17,109,1861,2000,526,0),(3800,'2015-03-14 14:56:59','2015-03-14 14:56:59',1,30000949,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(3801,'2015-03-14 14:56:59','2015-08-29 14:46:10',1,30000250,5,0,0,29,0,0,5,0,0,0,0,45,0,0,0,0,16,2,6,4,4,3,7,0),(3802,'2015-03-14 14:56:59','2015-03-14 14:56:59',1,30001604,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(3803,'2015-03-14 14:56:59','2015-08-29 14:46:10',1,30001125,822,74,0,0,0,160,85,10,50,445,222,57,1025,620,948,946,695,0,0,10,1980,904,368,0),(3804,'2015-03-14 14:56:59','2015-08-29 14:46:10',1,30003971,121,29,40,67,23,5,13,5,5,10,16,82,19,73,75,27,57,421,220,86,98,150,806,0),(3805,'2015-03-14 14:56:59','2015-08-29 14:46:10',1,30004624,0,0,0,0,0,0,0,0,3,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0),(3806,'2015-03-14 14:56:59','2015-08-29 14:46:10',1,30004076,0,0,105,0,0,0,63,0,0,0,0,0,0,0,0,0,0,170,0,150,0,0,0,0),(3807,'2015-03-14 14:56:59','2015-03-14 14:56:59',1,30000411,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(3808,'2015-03-14 14:56:59','2015-08-29 14:46:10',1,30001568,0,0,0,0,3,0,0,0,82,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(3809,'2015-03-14 14:56:59','2015-03-14 14:56:59',1,30000638,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(3810,'2015-03-14 14:56:59','2015-08-29 14:46:10',1,30000450,40,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(3811,'2015-03-14 14:56:59','2015-03-14 14:56:59',1,30000977,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(3812,'2015-03-14 14:56:59','2015-08-29 14:46:10',1,30004362,589,142,373,238,44,186,42,655,177,0,0,0,0,0,53,53,0,0,0,0,0,0,166,0),(3813,'2015-03-14 14:56:59','2015-08-29 14:46:10',1,30004471,0,0,0,0,0,0,0,0,20,275,21,0,164,0,0,0,148,0,0,0,0,0,0,0),(3814,'2015-03-14 14:56:59','2015-08-29 14:46:10',1,30003163,0,0,0,0,0,0,64,77,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(3815,'2015-03-14 14:56:59','2015-08-29 14:46:10',1,30005185,0,0,0,0,0,0,0,0,0,0,53,81,0,0,0,0,0,0,132,0,0,4,0,0),(3816,'2015-03-14 14:56:59','2015-08-29 14:46:10',1,30004961,162,197,149,95,112,481,173,40,0,262,417,524,39,484,257,331,381,4,5,0,536,246,144,0),(3817,'2015-03-14 14:56:59','2015-08-29 14:46:10',1,30000198,0,3,17,0,1,0,0,0,4,9,9,0,15,0,0,0,103,1,0,0,0,0,52,0),(3818,'2015-03-14 14:56:59','2015-08-29 14:46:10',1,30002775,274,244,215,302,299,282,301,102,373,344,317,361,514,344,399,486,326,87,371,481,463,436,299,0),(3819,'2015-03-14 14:56:59','2015-08-29 14:46:10',1,30004253,16,242,9,71,43,39,18,32,4,2,2,102,149,0,5,50,131,10,5,14,95,0,2,0),(3820,'2015-03-14 14:56:59','2015-08-29 14:46:10',1,30003804,13,20,7,19,21,95,27,34,19,62,1,34,26,43,56,165,0,4,16,1,0,48,0,0),(3821,'2015-03-14 14:56:59','2015-08-29 14:46:10',1,30005198,83,117,67,39,49,112,60,60,213,48,120,42,151,93,59,69,153,55,88,32,71,260,117,0),(3822,'2015-03-14 14:56:59','2015-08-29 14:46:10',1,30001390,142,61,0,16,0,0,52,0,21,124,44,129,37,12,30,54,4,0,0,25,59,155,124,0),(3823,'2015-03-14 14:56:59','2015-08-29 14:46:10',1,30003878,87,214,195,58,201,150,84,6,69,77,105,127,95,215,188,129,44,178,56,76,96,206,112,0),(3824,'2015-03-14 14:56:59','2015-08-29 14:46:10',1,30004992,4,0,0,0,0,0,0,0,0,0,1,4,0,5,4,5,0,0,0,0,0,0,1,0),(3825,'2015-03-14 14:56:59','2015-08-29 14:46:10',1,30003008,0,0,23,102,69,0,83,112,0,74,74,0,0,0,0,0,26,36,0,0,120,49,6,0),(3826,'2015-03-14 14:56:59','2015-08-29 14:46:10',1,30005232,211,218,138,192,261,123,38,184,156,133,244,274,190,85,46,88,145,57,139,119,332,195,193,0),(3827,'2015-03-14 14:56:59','2015-08-29 14:46:10',1,30005073,0,5,0,0,3,5,0,10,24,81,0,18,8,18,25,23,119,0,16,0,0,0,3,0),(3828,'2015-03-14 14:56:59','2015-08-29 14:46:10',1,30002676,19,76,108,107,70,53,124,162,134,97,118,67,104,123,44,140,95,89,24,233,53,109,117,0),(3829,'2015-03-14 14:56:59','2015-08-29 14:46:10',1,30004255,46,0,31,0,0,0,0,0,0,10,10,5,0,8,66,64,0,0,0,0,0,0,0,0),(3830,'2015-03-14 14:56:59','2015-08-29 14:46:10',1,30003909,99,114,109,117,159,197,36,11,14,59,13,147,6,91,19,32,76,5,49,115,54,4,6,0),(3831,'2015-03-14 14:56:59','2015-08-29 14:46:10',1,30005280,0,0,0,0,56,1,0,0,0,42,58,20,0,7,7,65,26,0,18,1,0,67,14,0),(3832,'2015-03-14 14:56:59','2015-08-29 14:46:10',1,30004998,9,0,69,58,29,47,4,108,0,0,0,0,0,0,0,1,0,0,0,0,53,0,17,0),(3833,'2015-03-14 14:56:59','2015-08-29 14:46:10',1,30021672,216,222,191,311,290,300,204,264,326,280,294,243,402,628,478,398,514,497,849,390,486,399,669,0),(3834,'2015-03-14 14:56:59','2015-08-29 14:46:10',1,30005231,111,112,206,212,296,122,51,79,161,217,181,189,207,205,123,99,148,20,97,83,171,179,160,0),(3835,'2015-03-14 14:56:59','2015-08-29 14:46:10',1,30001402,44,7,0,48,212,27,0,88,2,0,0,25,23,9,13,17,42,0,4,43,0,41,91,0),(3836,'2015-03-14 14:56:59','2015-08-29 14:46:10',1,30002544,702,318,339,237,439,537,409,571,889,762,728,789,701,855,894,725,622,482,485,570,1037,663,966,0),(3837,'2015-03-14 14:56:59','2015-08-29 14:46:10',1,30002223,97,0,122,37,18,124,22,96,62,147,123,231,292,227,136,253,394,168,310,68,110,301,121,0),(3838,'2015-03-14 14:56:59','2015-08-29 14:46:10',1,30045320,9,17,16,2,42,39,6,12,12,18,10,16,6,11,19,23,10,9,25,14,16,19,8,0),(3839,'2015-03-14 14:56:59','2015-08-29 14:46:10',1,30001718,41,71,76,6,4,129,17,13,128,43,38,63,36,85,142,192,29,23,63,92,43,177,68,0),(3840,'2015-03-14 14:56:59','2015-08-29 14:46:10',1,30004657,0,101,0,4,23,0,0,0,0,163,117,192,83,21,0,0,0,0,0,55,71,157,47,0),(3841,'2015-03-14 14:56:59','2015-08-29 14:46:10',1,30000873,46,214,179,110,147,205,577,201,9,0,128,331,0,29,32,3,11,0,0,0,5,0,72,0),(3842,'2015-03-14 14:56:59','2015-03-14 14:56:59',1,30001483,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(3843,'2015-03-14 14:56:59','2015-08-29 14:46:10',1,30003286,39,10,14,36,143,20,0,3,9,18,3,1,44,11,8,5,12,4,35,4,47,0,13,0),(3844,'2015-03-14 14:56:59','2015-08-29 14:46:10',1,30004733,0,0,0,98,52,73,0,0,0,40,1,43,0,5,5,1,0,29,9,0,0,0,7,0),(3845,'2015-03-14 14:56:59','2015-08-29 14:46:10',1,30004825,0,0,0,0,0,0,0,71,0,0,0,0,0,0,0,0,0,0,0,0,0,0,20,0),(3846,'2015-03-14 14:56:59','2015-08-29 14:46:10',1,30003159,0,0,0,0,0,47,0,0,135,0,0,0,13,0,0,0,0,0,0,135,0,12,0,0),(3847,'2015-03-14 14:56:59','2015-08-29 14:46:10',1,30005118,1,0,0,0,0,40,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(3848,'2015-03-14 14:56:59','2015-03-14 14:56:59',1,30000379,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(3849,'2015-03-14 14:56:59','2015-08-29 14:46:10',1,30003516,26,37,30,47,16,32,146,31,47,37,48,34,38,68,53,94,24,29,14,73,61,29,35,0),(3850,'2015-03-14 14:56:59','2015-08-29 14:46:10',1,30004829,0,0,38,17,66,32,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(3851,'2015-03-14 14:56:59','2015-08-29 14:46:10',1,30003806,0,114,16,30,10,5,40,0,74,16,25,21,23,21,2,0,17,4,5,0,14,3,17,0),(3852,'2015-03-14 14:56:59','2015-08-29 14:46:10',1,30002211,48,91,8,54,12,60,41,0,35,52,69,28,37,167,4,3,97,0,6,77,6,68,102,0),(3853,'2015-03-14 14:56:59','2015-08-29 14:46:10',1,30004906,0,0,0,0,0,0,0,61,17,0,0,0,0,0,0,0,0,0,0,0,0,135,0,0),(3854,'2015-03-14 14:56:59','2015-08-29 14:46:10',1,30004978,154,310,134,253,98,225,225,47,181,172,63,97,156,324,274,272,127,34,97,298,150,226,281,0),(3855,'2015-03-14 14:56:59','2015-08-29 14:46:10',1,30004262,27,64,0,0,0,0,1,0,0,17,31,23,0,7,0,0,18,0,0,0,1,0,70,0),(3856,'2015-03-14 14:56:59','2015-08-29 14:46:10',1,30003488,626,351,740,497,605,246,372,314,375,553,597,428,830,784,1063,1005,744,397,277,661,795,858,513,0),(3857,'2015-03-14 14:56:59','2015-08-29 14:46:10',1,30001666,51,66,29,16,12,0,105,52,0,31,65,8,88,19,12,45,136,7,42,19,15,25,20,0),(3858,'2015-03-14 14:56:59','2015-08-29 14:46:10',1,30005061,0,0,54,34,67,0,0,0,74,0,1,13,17,0,24,25,16,0,0,0,0,84,0,0),(3859,'2015-03-14 14:56:59','2015-08-29 14:46:10',1,30005013,146,228,29,100,159,23,76,0,0,87,0,0,9,53,8,1,43,57,159,320,98,37,5,0),(3860,'2015-03-14 14:56:59','2015-08-29 14:46:10',1,30001693,62,18,0,14,0,0,0,14,0,0,0,0,50,36,0,22,89,54,46,0,39,19,80,0),(3861,'2015-03-14 14:56:59','2015-08-29 14:46:10',1,30000144,572,615,683,450,371,442,294,336,399,467,511,411,482,623,761,808,458,358,228,559,540,562,355,0),(3862,'2015-03-14 14:56:59','2015-08-29 14:46:10',1,30003573,0,30,0,0,0,0,133,4,0,0,0,0,0,4,5,3,0,0,2,26,0,0,0,0),(3863,'2015-03-14 14:56:59','2015-08-29 14:46:10',1,30005241,46,0,0,49,49,0,0,0,3,3,8,5,0,7,8,1,5,3,3,70,2,30,24,0),(3864,'2015-03-14 14:56:59','2015-08-29 14:46:10',1,30002632,38,67,235,33,80,64,147,46,116,163,158,109,36,114,141,125,7,54,94,89,109,27,14,0),(3865,'2015-03-14 14:56:59','2015-08-29 14:46:10',1,30004114,51,25,90,24,105,110,5,229,63,235,84,12,245,53,150,123,48,3,60,83,54,103,96,0),(3866,'2015-03-14 14:56:59','2015-08-29 14:46:10',1,30003277,37,0,0,3,7,1,3,16,0,8,6,5,0,0,0,0,0,0,11,22,4,0,7,0),(3867,'2015-03-14 14:56:59','2015-08-29 14:46:10',1,30004782,0,0,0,0,0,0,87,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(3868,'2015-03-14 14:56:59','2015-08-29 14:46:10',1,30001324,0,121,0,0,25,0,0,0,0,0,0,0,1,0,0,0,0,0,7,0,0,0,15,0),(3869,'2015-03-14 14:56:59','2015-08-29 14:46:10',1,30003295,0,141,25,23,20,10,0,48,0,0,0,57,0,11,11,33,0,15,1,0,4,0,0,0),(3870,'2015-03-14 14:56:59','2015-08-29 14:46:10',1,30002009,16,2,5,9,5,7,11,16,10,21,63,8,84,75,92,137,38,5,82,42,91,143,8,0),(3871,'2015-03-14 14:56:59','2015-08-29 14:46:10',1,30005178,0,0,0,0,73,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,3,0,0),(3872,'2015-03-14 14:56:59','2015-08-29 14:46:10',1,30002145,0,0,0,0,0,0,0,0,0,0,0,77,0,0,0,0,0,0,0,0,0,0,0,0),(3873,'2015-03-14 14:56:59','2015-08-29 14:46:10',1,30001707,140,82,234,45,37,8,16,47,31,119,94,77,69,18,0,14,71,35,0,9,40,0,176,0),(3874,'2015-03-14 14:56:59','2015-08-29 14:46:10',1,30003735,90,221,116,186,136,417,18,68,32,97,192,227,399,468,93,61,211,31,79,177,152,182,255,0),(3875,'2015-03-14 14:56:59','2015-08-29 14:46:10',1,30001403,248,412,40,266,222,355,107,252,375,537,392,447,380,494,468,680,379,363,257,57,380,344,216,0),(3876,'2015-03-14 14:56:59','2015-08-29 14:46:10',1,30001391,113,264,227,249,121,178,287,276,203,347,360,316,341,441,268,176,336,141,182,125,187,295,207,0),(3877,'2015-03-14 14:56:59','2015-08-29 14:46:10',1,30001669,214,148,154,216,302,176,108,136,276,282,143,215,288,587,698,690,434,397,397,210,344,439,220,0),(3878,'2015-03-14 14:56:59','2015-08-29 14:46:10',1,30001652,11,87,79,57,52,38,55,3,22,54,59,65,39,59,58,46,109,22,26,26,127,36,13,0),(3879,'2015-03-14 14:56:59','2015-08-29 14:46:10',1,30005081,101,269,79,169,370,0,0,21,24,0,14,1,35,45,61,110,1,0,0,8,0,187,1,0),(3880,'2015-03-14 14:56:59','2015-08-29 14:46:10',1,30005277,22,0,18,0,38,0,0,8,99,0,75,67,0,0,0,0,40,0,0,1,0,0,0,0),(3881,'2015-03-14 14:56:59','2015-08-29 14:46:10',1,30000066,26,30,18,26,5,158,5,0,0,0,0,0,29,70,85,15,4,30,4,5,18,2,241,0),(3882,'2015-03-14 14:56:59','2015-08-29 14:46:10',1,30003167,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,116,0,0,0),(3883,'2015-03-14 14:56:59','2015-08-29 14:46:10',1,30004313,0,136,127,0,0,0,0,23,0,0,0,36,0,0,0,0,28,0,0,0,0,0,0,0),(3884,'2015-03-14 14:56:59','2015-03-14 14:56:59',1,30000654,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(3885,'2015-03-14 14:56:59','2015-08-29 14:46:10',1,30000243,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,32,0,0,0,0,0,0),(3886,'2015-03-14 14:56:59','2015-08-29 14:46:10',1,30004411,243,311,327,288,357,268,0,0,43,9,14,0,175,0,41,103,77,63,80,0,43,0,0,0),(3887,'2015-03-14 14:56:59','2015-08-29 14:46:10',1,30003262,0,0,0,0,76,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(3888,'2015-03-14 14:56:59','2015-08-29 14:46:10',1,30000866,0,0,6,39,3,0,0,0,0,0,0,0,0,89,1,0,0,0,0,0,0,0,0,0),(3889,'2015-03-14 14:56:59','2015-08-29 14:46:10',1,30002870,0,0,5,0,0,0,0,68,0,16,111,59,95,192,10,245,129,45,275,77,35,334,875,0),(3890,'2015-03-14 14:56:59','2015-08-29 14:46:10',1,30004559,0,167,58,0,0,0,0,0,5,5,44,131,0,0,0,0,0,0,0,0,0,0,0,0),(3891,'2015-03-14 14:56:59','2015-08-29 14:46:10',1,30003613,0,142,285,259,89,1,1,0,120,20,1,0,0,83,25,0,0,0,0,0,4,31,0,0),(3892,'2015-03-14 14:56:59','2015-08-29 14:46:10',1,30004431,0,0,40,0,0,0,0,0,18,180,54,0,0,0,0,0,0,0,51,159,0,153,96,0),(3893,'2015-03-14 14:56:59','2015-08-29 14:46:10',1,30001012,22,5,7,0,0,137,80,0,6,9,19,34,1,8,5,4,91,0,101,221,43,35,26,0),(3894,'2015-03-14 14:56:59','2015-08-29 14:46:10',1,30003604,11,90,43,59,50,37,176,0,112,92,99,22,90,30,25,76,3,10,31,36,80,20,50,0),(3895,'2015-03-14 14:56:59','2015-08-29 14:46:10',1,30000019,0,0,0,0,0,54,0,0,0,0,3,4,0,0,0,0,0,0,0,0,0,0,0,0),(3896,'2015-03-14 14:56:59','2015-08-29 14:46:10',1,30000153,128,231,366,300,278,173,173,196,325,275,422,300,162,423,469,502,338,174,256,344,278,277,107,0),(3897,'2015-03-14 14:56:59','2015-08-29 14:46:10',1,30003271,0,121,61,44,0,5,172,0,0,0,0,0,0,0,0,0,0,0,53,80,0,13,17,0),(3898,'2015-03-14 14:56:59','2015-03-14 14:56:59',1,30000380,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(3899,'2015-03-14 14:56:59','2015-08-29 14:46:10',1,30005048,67,104,132,81,72,90,98,130,114,310,226,233,457,232,260,220,212,78,299,265,205,114,371,0),(3900,'2015-03-14 14:56:59','2015-08-29 14:46:10',1,30003434,71,56,36,51,0,51,33,43,36,118,136,50,218,171,170,100,134,223,87,121,91,61,173,0),(3901,'2015-03-14 14:56:59','2015-03-14 14:56:59',1,30001147,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(3902,'2015-03-14 14:56:59','2015-08-29 14:46:10',1,30002273,0,0,0,0,0,0,0,4,0,0,0,0,0,0,0,0,0,0,4,74,0,2,20,0),(3903,'2015-03-14 14:56:59','2015-08-29 14:46:10',1,30003581,144,430,0,74,67,123,51,35,0,59,181,8,0,46,0,0,95,78,30,43,0,69,19,0),(3904,'2015-03-14 14:56:59','2015-08-29 14:46:10',1,30003940,0,20,78,0,0,0,0,0,0,0,0,0,0,0,0,0,2,0,0,0,0,0,0,0),(3905,'2015-03-14 14:56:59','2015-08-29 14:46:10',1,30002714,164,40,47,188,130,253,8,18,129,339,177,102,42,154,86,45,287,62,292,189,46,255,115,0),(3906,'2015-03-14 14:56:59','2015-08-29 14:46:10',1,30002106,100,0,0,8,10,50,0,0,0,0,0,0,0,68,39,0,0,0,0,0,0,0,0,0),(3907,'2015-03-14 14:56:59','2015-08-29 14:46:10',1,30004065,0,0,0,0,0,0,0,0,0,0,0,0,0,134,72,0,0,0,0,0,0,0,0,0),(3908,'2015-03-14 14:56:59','2015-03-14 14:56:59',1,30001470,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(3909,'2015-03-14 14:56:59','2015-08-29 14:46:10',1,30000438,163,0,98,104,130,0,73,58,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(3910,'2015-03-14 14:56:59','2015-03-14 14:56:59',1,30001628,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(3911,'2015-03-14 14:56:59','2015-08-29 14:46:10',1,30004711,69,0,0,0,0,0,47,0,0,3,7,4,48,0,0,0,0,0,4,0,5,5,8,0),(3912,'2015-03-14 14:56:59','2015-08-29 14:46:10',1,30045333,1,65,7,0,0,123,0,76,21,21,16,8,2,1,46,80,45,9,0,10,0,1,3,0),(3913,'2015-03-14 14:56:59','2015-08-29 14:46:10',1,30005284,76,0,0,115,102,6,0,0,84,76,93,37,32,0,0,0,0,0,0,1,0,33,1,0),(3914,'2015-03-14 14:56:59','2015-08-29 14:46:10',1,30004770,0,0,0,0,0,0,13,0,0,0,0,0,4,0,0,15,385,0,392,467,129,172,284,0),(3915,'2015-03-14 14:56:59','2015-08-29 14:46:10',1,30000027,7,71,0,0,58,3,0,0,5,8,105,10,0,5,7,8,28,112,193,88,16,23,4,0),(3916,'2015-03-14 14:56:59','2015-08-29 14:46:10',1,30004293,14,10,0,0,0,8,9,0,0,0,8,25,0,0,7,98,0,0,0,0,0,44,1,0),(3917,'2015-03-14 14:56:59','2015-08-29 14:46:10',1,30001863,0,0,0,0,0,0,0,27,0,25,0,0,0,0,0,2,0,0,0,0,3,0,2,0),(3918,'2015-03-14 14:56:59','2015-08-29 14:46:10',1,30000738,0,0,0,0,0,0,0,0,0,0,0,5,0,0,0,8,9,0,0,0,6,7,18,0),(3919,'2015-03-14 14:56:59','2015-08-29 14:46:10',1,30005162,0,0,82,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(3920,'2015-03-14 14:56:59','2015-03-14 14:56:59',1,30000421,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(3921,'2015-03-14 14:56:59','2015-03-14 14:56:59',1,30000727,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(3922,'2015-03-14 14:56:59','2015-03-14 14:56:59',1,30000990,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(3923,'2015-03-14 14:56:59','2015-08-29 14:46:10',1,30002733,156,624,321,418,309,438,325,448,474,681,611,557,1056,360,420,507,576,169,318,224,314,579,164,0),(3924,'2015-03-14 14:56:59','2015-08-29 14:46:10',1,30004754,0,0,0,0,0,0,0,0,354,0,0,30,20,82,227,244,54,624,414,53,14,105,268,0),(3925,'2015-03-14 14:56:59','2015-08-29 14:46:10',1,30002662,55,71,171,261,252,257,206,183,83,82,102,84,288,116,95,80,223,124,167,244,49,90,281,0),(3926,'2015-03-14 14:56:59','2015-08-29 14:46:10',1,30000161,103,218,115,158,3,250,411,141,296,562,470,108,175,485,157,156,175,52,37,244,100,278,203,0),(3927,'2015-03-14 14:56:59','2015-08-29 14:46:10',1,30004395,171,149,345,759,606,202,118,645,156,588,749,128,0,40,201,273,0,16,0,0,43,114,65,0),(3928,'2015-03-14 14:56:59','2015-08-29 14:46:10',1,30000978,0,0,0,0,0,0,0,0,2,11,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(3929,'2015-03-14 14:56:59','2015-08-29 14:46:10',1,30005147,0,0,0,0,0,0,0,0,0,0,0,0,0,0,3,7,36,0,0,0,0,0,0,0),(3930,'2015-03-14 14:56:59','2015-08-29 14:46:10',1,30003283,0,0,28,0,0,0,0,0,0,0,0,0,13,0,0,0,18,0,0,4,8,0,0,0),(3931,'2015-03-14 14:56:59','2015-08-29 14:46:10',1,30001106,84,9,0,5,16,368,1040,4,123,675,866,507,513,17,24,30,313,17,118,178,571,895,633,0),(3932,'2015-03-14 14:56:59','2015-08-29 14:46:10',1,30002370,0,0,0,0,0,0,0,2,3,4,0,0,122,8,4,5,0,0,0,0,0,0,0,0),(3933,'2015-03-14 14:56:59','2015-03-14 14:56:59',1,30000316,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(3934,'2015-03-14 14:56:59','2015-03-14 14:56:59',1,30002290,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(3935,'2015-03-14 14:56:59','2015-08-29 14:46:10',1,30004647,55,299,583,959,1001,153,292,222,0,0,0,0,0,0,0,0,0,358,101,237,109,46,401,0),(3936,'2015-03-14 14:56:59','2015-08-29 14:46:10',1,30045353,10,10,5,12,18,11,30,3,1,119,7,5,22,1,0,37,0,3,4,10,11,6,3,0),(3937,'2015-03-14 14:56:59','2015-08-29 14:46:10',1,30002490,330,68,265,289,355,82,126,23,139,39,25,26,92,146,132,130,215,0,141,27,97,0,162,0),(3938,'2015-03-14 14:56:59','2015-08-29 14:46:10',1,30002615,192,299,385,372,154,0,401,187,0,0,0,0,561,330,500,704,462,754,275,78,0,0,187,0),(3939,'2015-03-14 14:56:59','2015-08-29 14:46:10',1,30001310,69,0,0,0,0,143,0,0,6,163,86,77,64,74,41,83,83,74,95,143,49,91,31,0),(3940,'2015-03-14 14:56:59','2015-03-14 14:56:59',1,30001449,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(3941,'2015-03-14 14:56:59','2015-08-29 14:46:10',1,30004787,0,0,0,0,0,0,0,0,47,0,0,17,0,93,377,588,603,0,0,139,10,44,233,0),(3942,'2015-03-14 14:56:59','2015-08-29 14:46:10',1,30000797,0,0,0,5,0,0,0,0,0,0,0,0,0,0,65,77,0,0,0,0,0,57,109,0),(3943,'2015-03-14 14:56:59','2015-08-29 14:46:10',1,30004389,1212,381,897,636,1415,34,714,593,0,0,0,174,289,80,30,39,0,0,141,55,372,21,0,0),(3944,'2015-03-14 14:56:59','2015-08-29 14:46:10',1,30002001,0,0,32,0,0,0,0,42,0,0,0,0,8,0,0,0,0,0,0,0,0,0,0,0),(3945,'2015-03-14 14:56:59','2015-08-29 14:46:10',1,30001326,19,0,0,0,16,0,4,0,29,66,66,18,62,17,8,0,19,0,0,166,0,0,29,0),(3946,'2015-03-14 14:56:59','2015-08-29 14:46:10',1,30000872,16,0,0,185,63,0,461,223,318,216,169,502,325,81,18,0,188,129,365,69,40,62,130,0),(3947,'2015-03-14 14:56:59','2015-08-29 14:46:10',1,30000274,97,0,0,0,51,0,828,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,137,0),(3948,'2015-03-14 14:56:59','2015-08-29 14:46:10',1,30004321,394,40,0,230,246,69,118,265,34,70,0,0,2,31,79,56,0,0,0,0,24,53,51,0),(3949,'2015-03-14 14:56:59','2015-08-29 14:46:10',1,30002844,0,0,0,0,0,0,0,0,1,24,8,0,0,0,0,0,0,0,0,0,0,0,0,0),(3950,'2015-03-14 14:56:59','2015-08-29 14:46:10',1,30000586,12,0,1,109,129,0,0,90,5,0,0,0,33,3,6,43,7,0,19,93,35,5,0,0),(3951,'2015-03-14 14:56:59','2015-08-29 14:46:10',1,30004737,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,17,0,0,0,0,0,0,0,0),(3952,'2015-03-14 14:56:59','2015-03-14 14:56:59',1,30002132,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(3953,'2015-03-14 14:56:59','2015-08-29 14:46:10',1,30003222,350,315,257,47,61,642,463,336,5,53,186,554,65,0,0,83,101,351,93,190,1118,281,227,0),(3954,'2015-03-14 14:56:59','2015-08-29 14:46:10',1,30004749,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,134,0,0,0,0),(3955,'2015-03-14 14:56:59','2015-03-14 14:56:59',1,30000682,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(3956,'2015-03-14 14:56:59','2015-03-14 14:56:59',1,30000432,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(3957,'2015-03-14 14:56:59','2015-08-29 14:46:10',1,30000256,41,0,0,30,47,0,0,0,0,0,0,0,90,0,0,0,0,0,0,141,0,0,0,0),(3958,'2015-03-14 14:56:59','2015-08-29 14:46:10',1,30000717,33,26,35,12,6,22,0,0,47,0,0,0,0,2,0,0,0,0,0,0,0,0,3,0),(3959,'2015-03-14 14:56:59','2015-08-29 14:46:10',1,30004337,0,0,0,0,0,0,0,0,0,0,0,51,0,0,0,0,0,0,0,0,0,16,57,0),(3960,'2015-03-14 14:56:59','2015-08-29 14:46:10',1,30001838,1,0,0,0,0,54,0,0,1,2,4,1,0,0,0,0,0,0,133,30,0,0,0,0),(3961,'2015-03-14 14:56:59','2015-08-29 14:46:10',1,30000235,43,0,99,0,0,0,38,348,0,0,0,0,0,0,0,0,182,0,0,0,0,0,0,0),(3962,'2015-03-14 14:56:59','2015-03-14 14:56:59',1,30001196,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(3963,'2015-03-14 14:56:59','2015-08-29 14:46:10',1,30002471,370,462,374,488,708,0,0,0,277,82,38,188,189,108,32,32,6,0,0,0,0,13,250,0),(3964,'2015-03-14 14:56:59','2015-08-29 14:46:10',1,30001248,0,0,0,0,0,0,0,0,0,7,7,0,0,0,0,9,111,0,0,0,52,9,0,0),(3965,'2015-03-14 14:56:59','2015-08-29 14:46:10',1,30004054,113,69,0,235,271,0,0,44,339,14,13,0,0,0,0,0,0,0,0,0,0,0,0,0),(3966,'2015-03-14 14:56:59','2015-03-14 14:56:59',1,30000618,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(3967,'2015-03-14 14:56:59','2015-08-29 14:46:10',1,30001562,0,0,0,2,2,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,91,103,0),(3968,'2015-03-14 14:56:59','2015-08-29 14:46:10',1,30004229,2020,1260,557,830,1245,52,416,19,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(3969,'2015-03-14 14:56:59','2015-08-29 14:46:10',1,30004571,0,0,0,1,0,0,0,0,0,0,0,5,86,72,0,0,0,0,0,0,0,0,0,0),(3970,'2015-03-14 14:56:59','2015-08-29 14:46:10',1,30004845,0,0,0,0,0,0,50,3,0,0,0,117,0,36,21,0,148,0,0,0,206,188,97,0),(3971,'2015-03-14 14:56:59','2015-03-14 14:56:59',1,30000507,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(3972,'2015-03-14 14:56:59','2015-08-29 14:46:10',1,30003112,0,0,0,0,26,0,0,0,0,2,77,16,0,0,0,0,0,0,0,0,0,0,0,0),(3973,'2015-03-14 14:56:59','2015-08-29 14:46:10',1,30003146,22,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(3974,'2015-03-14 14:56:59','2015-08-29 14:46:10',1,30003669,1,31,63,33,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(3975,'2015-03-14 14:56:59','2015-08-29 14:46:10',1,30003975,0,0,0,0,0,0,0,0,94,26,43,83,70,45,0,0,0,118,70,156,302,51,51,0),(3976,'2015-03-14 14:56:59','2015-08-29 14:46:10',1,30000946,0,0,0,0,0,0,0,0,0,5,5,0,0,0,0,0,0,16,0,0,0,0,0,0),(3977,'2015-03-14 14:56:59','2015-08-29 14:46:10',1,30000324,487,151,302,739,700,846,0,72,168,278,21,245,361,200,370,522,239,0,1,0,155,363,281,0),(3978,'2015-03-14 14:56:59','2015-08-29 14:46:10',1,30000715,0,0,8,0,0,0,0,0,0,0,0,0,0,39,3,0,56,0,48,93,0,0,102,0),(3979,'2015-03-14 14:56:59','2015-08-29 14:46:10',1,30004846,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,133,0,0,0,12,0),(3980,'2015-03-14 14:56:59','2015-08-29 14:46:10',1,30001323,0,0,0,0,0,23,0,0,106,85,75,39,109,92,130,110,0,0,0,76,115,63,53,0),(3981,'2015-03-14 14:56:59','2015-08-29 14:46:10',1,30000785,190,0,0,236,99,96,106,52,0,67,111,38,0,0,0,55,292,0,0,0,10,0,14,0),(3982,'2015-03-14 14:56:59','2015-08-29 14:46:10',1,30001763,898,296,425,327,287,485,432,211,0,0,0,0,0,0,0,0,0,0,0,0,62,0,0,0),(3983,'2015-03-14 14:56:59','2015-03-14 14:56:59',1,30000413,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(3984,'2015-03-14 14:56:59','2015-08-29 14:46:10',1,30004066,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,45,0,0,0,0,0,0,0),(3985,'2015-03-14 14:56:59','2015-08-29 14:46:10',1,30003183,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,31,0),(3986,'2015-03-14 14:56:59','2015-08-29 14:46:10',1,30004408,106,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(3987,'2015-03-14 14:56:59','2015-08-29 14:46:10',1,30003714,76,53,0,50,58,11,0,72,309,244,420,159,32,40,61,166,433,77,69,21,0,86,37,0),(3988,'2015-03-14 14:56:59','2015-08-29 14:46:10',1,30001165,0,0,0,0,0,0,0,0,0,3,3,0,0,0,0,0,0,0,0,87,127,0,0,0),(3989,'2015-03-14 14:56:59','2015-08-29 14:46:10',1,30002363,0,0,1,1,0,0,0,4,6,5,5,0,0,0,0,0,0,0,0,0,0,0,0,0),(3990,'2015-03-14 14:56:59','2015-08-29 14:46:10',1,30004744,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,23,149,133,0),(3991,'2015-03-14 14:56:59','2015-03-14 14:56:59',1,30004855,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(3992,'2015-03-14 14:56:59','2015-08-29 14:46:10',1,30001080,0,259,54,96,44,6,4,6,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(3993,'2015-03-14 14:56:59','2015-08-29 14:46:10',1,30001935,0,0,0,0,0,43,0,0,0,0,0,0,5,30,0,0,0,0,0,0,0,0,0,0),(3994,'2015-03-14 14:56:59','2015-08-29 14:46:10',1,30004343,538,979,1200,609,1098,500,530,562,302,155,358,408,307,73,72,154,348,0,0,131,192,273,322,0),(3995,'2015-03-14 14:56:59','2015-08-29 14:46:10',1,30002138,0,0,0,94,0,208,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(3996,'2015-03-14 14:56:59','2015-08-29 14:46:10',1,30003221,0,2,2,1,1,0,24,250,75,34,33,0,47,0,0,0,57,1,75,4,99,23,0,0),(3997,'2015-03-14 14:56:59','2015-08-29 14:46:10',1,30001246,0,0,0,0,0,0,0,0,158,29,70,37,96,61,121,105,150,138,1,74,131,87,269,0),(3998,'2015-03-14 14:56:59','2015-08-29 14:46:10',1,30001033,1,0,0,1,1,18,0,31,58,18,13,22,1,0,0,0,26,14,78,21,0,0,66,0),(3999,'2015-03-14 14:56:59','2015-08-29 14:46:10',1,30000899,0,27,14,6,0,12,5,8,11,9,10,12,0,0,0,0,0,0,5,5,5,0,3,0),(4000,'2015-03-14 14:56:59','2015-08-29 14:46:10',1,30003164,0,120,0,0,0,0,0,0,0,12,0,0,89,27,0,0,0,234,47,79,170,12,0,0),(4001,'2015-03-14 14:56:59','2015-03-14 14:56:59',1,30003181,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(4002,'2015-03-14 14:56:59','2015-08-29 14:46:10',1,30001766,0,94,0,0,0,0,0,0,1180,1081,521,270,778,740,720,609,780,280,188,800,820,187,95,0),(4003,'2015-03-14 14:56:59','2015-08-29 14:46:10',1,30001564,0,0,0,0,0,0,0,0,41,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(4004,'2015-03-14 14:56:59','2015-08-29 14:46:10',1,30001772,0,0,0,0,0,0,0,0,0,0,0,0,0,72,0,0,0,0,0,0,0,0,83,0),(4005,'2015-03-14 14:56:59','2015-08-29 14:46:10',1,30001749,6,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,17,0,0,0,0,0,0,0),(4006,'2015-03-14 14:56:59','2015-08-29 14:46:10',1,30001305,0,0,0,0,0,0,0,0,14,85,0,72,0,0,0,0,0,19,2,0,1,95,0,0),(4007,'2015-03-14 14:56:59','2015-08-29 14:46:10',1,30002364,0,0,0,0,0,0,50,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(4008,'2015-03-14 14:56:59','2015-03-14 14:56:59',1,30005144,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(4009,'2015-03-14 14:56:59','2015-03-14 14:56:59',1,30002104,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(4010,'2015-03-14 14:56:59','2015-08-29 14:46:10',1,30004837,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,32,0,0,0,0),(4011,'2015-03-14 14:56:59','2015-08-29 14:46:10',1,30000505,0,0,0,0,0,28,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,279,65,0),(4012,'2015-03-14 14:56:59','2015-03-14 14:56:59',1,30001467,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(4013,'2015-03-14 14:56:59','2015-08-29 14:46:10',1,30004448,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,12,0,0),(4014,'2015-03-14 14:56:59','2015-03-14 14:56:59',1,30002307,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(4015,'2015-03-14 14:56:59','2015-08-29 14:46:10',1,30005172,382,90,100,66,120,0,173,260,99,0,0,0,112,1,0,51,1,0,0,0,0,0,70,0),(4016,'2015-03-14 14:56:59','2015-08-29 14:46:10',1,30002431,126,145,253,352,357,451,43,0,402,502,441,283,0,192,189,228,390,178,11,0,182,88,278,0),(4017,'2015-03-14 14:56:59','2015-08-29 14:46:10',1,30000475,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,44,0,0,0),(4018,'2015-03-14 14:56:59','2015-08-29 14:46:10',1,30004857,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,161,0,0,0,0),(4019,'2015-03-14 14:56:59','2015-03-14 14:56:59',1,30000941,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(4020,'2015-03-14 14:56:59','2015-08-29 14:46:10',1,30001903,0,0,0,0,0,0,0,0,0,0,1,23,0,0,0,0,0,0,18,0,27,0,0,0),(4021,'2015-03-14 14:56:59','2015-08-29 14:46:10',1,30002186,807,1159,802,746,1297,421,17,0,334,574,392,148,105,501,358,384,60,16,168,286,291,428,302,0),(4022,'2015-03-14 14:56:59','2015-08-29 14:46:10',1,30002288,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,0),(4023,'2015-03-14 14:56:59','2015-03-14 14:56:59',1,30001473,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(4024,'2015-03-14 14:56:59','2015-08-29 14:46:10',1,30003739,257,24,0,73,131,294,238,542,536,215,282,268,395,290,270,117,119,261,307,168,223,158,32,0),(4025,'2015-03-14 14:56:59','2015-08-29 14:46:10',1,30001783,0,42,226,62,26,49,52,4,172,51,233,990,9,269,16,198,428,33,0,0,263,299,91,0),(4026,'2015-03-14 14:56:59','2015-08-29 14:46:10',1,30002479,231,13,344,221,225,113,7,0,0,0,0,68,0,0,0,11,16,0,0,0,0,0,0,0),(4027,'2015-03-14 14:56:59','2015-08-29 14:46:10',1,30002893,705,91,21,281,294,0,0,1239,0,0,0,72,4,0,0,0,429,11,1,0,160,89,43,0),(4028,'2015-03-14 14:56:59','2015-08-29 14:46:10',1,30000722,0,0,0,0,0,0,0,116,132,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0),(4029,'2015-03-14 14:56:59','2015-08-29 14:46:10',1,30000938,0,0,0,0,0,5,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(4030,'2015-03-14 14:56:59','2015-08-29 14:46:10',1,30001565,0,7,0,2,3,0,0,0,0,76,134,21,0,0,0,0,0,0,0,0,0,0,0,0),(4031,'2015-03-14 14:56:59','2015-08-29 14:46:10',1,30003719,0,80,0,325,205,109,431,815,81,225,135,144,43,34,148,147,119,154,91,45,223,103,213,0),(4032,'2015-03-14 14:56:59','2015-08-29 14:46:10',1,30004815,0,0,0,0,0,0,0,0,0,0,0,0,32,0,0,0,0,0,0,0,0,0,0,0),(4033,'2015-03-14 14:56:59','2015-08-29 14:46:10',1,30000481,0,0,0,0,0,277,0,0,0,0,0,0,15,128,0,0,0,0,0,0,105,0,57,0),(4034,'2015-03-14 14:56:59','2015-08-29 14:46:10',1,30001596,0,0,0,0,0,21,0,0,237,585,546,490,458,572,585,276,823,290,383,269,219,383,375,0),(4035,'2015-03-14 14:56:59','2015-08-29 14:46:10',1,30003174,604,299,674,143,422,456,196,108,37,0,0,0,21,0,0,0,27,170,237,281,0,25,25,0),(4036,'2015-03-14 14:56:59','2015-08-29 14:46:10',1,30001137,0,3,0,0,0,76,0,0,50,254,123,126,3,8,4,12,6,0,0,4,33,17,121,0),(4037,'2015-03-14 14:56:59','2015-08-29 14:46:10',1,30004909,0,0,857,421,0,170,1221,941,78,108,131,190,4,0,0,25,0,0,15,20,110,56,63,0),(4038,'2015-03-14 14:56:59','2015-08-29 14:46:10',1,30001163,0,0,0,0,0,0,0,0,0,22,4,0,0,0,0,0,0,0,0,90,0,0,0,0),(4039,'2015-03-14 14:56:59','2015-08-29 14:46:10',1,30004198,65,0,0,0,0,0,0,65,18,78,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(4040,'2015-03-14 14:56:59','2015-08-29 14:46:10',1,30000793,151,144,0,0,0,120,0,56,0,159,209,71,36,101,11,26,95,10,38,173,5,235,26,0),(4041,'2015-03-14 14:56:59','2015-03-14 14:56:59',1,30001617,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(4042,'2015-03-14 14:56:59','2015-08-29 14:46:10',1,30003037,275,712,531,237,310,381,183,373,298,688,457,231,501,674,658,553,613,349,813,635,434,347,421,0),(4043,'2015-03-14 14:56:59','2015-08-29 14:46:10',1,30004610,0,0,187,0,0,0,0,0,398,1,0,7,0,171,0,90,36,0,44,342,162,145,437,0),(4044,'2015-03-14 14:56:59','2015-08-29 14:46:10',1,30003292,0,0,0,0,0,8,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(4045,'2015-03-14 14:56:59','2015-03-14 14:56:59',1,30002829,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(4046,'2015-03-14 14:56:59','2015-08-29 14:46:10',1,30004714,169,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,57,0,0,0,0,0,0),(4047,'2015-03-14 14:56:59','2015-08-29 14:46:10',1,30000526,180,0,0,0,0,9,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(4048,'2015-03-14 14:56:59','2015-08-29 14:46:10',1,30004354,52,0,0,0,0,0,192,149,0,52,52,0,0,234,254,68,0,0,0,135,27,0,16,0),(4049,'2015-03-14 14:56:59','2015-08-29 14:46:10',1,30004002,129,231,103,210,197,218,17,0,57,177,12,27,184,475,438,243,189,0,143,299,32,10,167,0),(4050,'2015-03-14 14:56:59','2015-08-29 14:46:10',1,30004041,0,0,11,0,0,0,0,5,0,0,0,53,0,30,30,0,0,0,1,0,0,0,4,0),(4051,'2015-03-14 14:56:59','2015-08-29 14:46:10',1,30004027,0,0,0,0,0,73,0,0,0,0,0,0,0,0,0,0,0,0,0,79,0,0,0,0),(4052,'2015-03-14 14:56:59','2015-08-29 14:46:10',1,30003244,0,82,0,328,41,0,68,0,0,0,0,0,0,0,0,4,10,0,0,3,48,17,0,0),(4053,'2015-03-14 14:56:59','2015-08-29 14:46:10',1,30004752,0,0,0,0,0,0,0,0,0,0,0,0,239,0,0,13,120,0,0,0,11,63,93,0),(4054,'2015-03-14 14:56:59','2015-08-29 14:46:10',1,30000767,10,0,0,0,0,0,1,0,0,0,0,59,0,0,0,0,0,0,0,0,17,0,0,0),(4055,'2015-03-14 14:56:59','2015-08-29 14:46:10',1,30003266,0,0,68,151,132,151,0,3,53,0,0,5,110,89,178,98,159,319,128,0,158,0,0,0),(4056,'2015-03-14 14:56:59','2015-08-29 14:46:10',1,30004402,474,688,288,134,58,16,5,757,671,357,469,601,270,730,1028,589,466,176,694,434,808,797,789,0),(4057,'2015-03-14 14:56:59','2015-03-14 14:56:59',1,30003236,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(4058,'2015-03-14 14:56:59','2015-08-29 14:46:10',1,30001107,0,16,8,35,122,182,0,45,0,271,101,199,112,692,490,671,21,27,20,30,9,94,1140,0),(4059,'2015-03-14 14:56:59','2015-08-29 14:46:10',1,30002330,0,5,0,0,0,0,3,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(4060,'2015-03-14 14:56:59','2015-08-29 14:46:10',1,30002837,0,0,0,0,0,0,0,0,0,0,0,0,0,0,13,26,0,0,0,0,0,0,0,0),(4061,'2015-03-14 14:56:59','2015-08-29 14:46:10',1,30002002,0,0,0,0,0,3,0,0,0,0,0,0,0,0,4,4,0,0,0,0,0,0,0,0),(4062,'2015-03-14 14:56:59','2015-08-29 14:46:10',1,30000658,0,0,5,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,6,0,0),(4063,'2015-03-14 14:56:59','2015-08-29 14:46:10',1,30002324,0,1,20,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,0,0,0,0),(4064,'2015-03-14 14:56:59','2015-08-29 14:46:10',1,30005099,0,0,0,0,0,0,0,0,0,0,0,3,0,0,0,0,0,0,0,0,6,2,11,0),(4065,'2015-03-14 14:56:59','2015-08-29 14:46:10',1,30003151,71,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,17,0,37,0),(4066,'2015-03-14 14:56:59','2015-08-29 14:46:10',1,30005112,0,0,0,0,0,0,6,0,0,0,0,0,0,0,0,0,0,0,5,90,0,0,0,0),(4067,'2015-03-14 14:56:59','2015-08-29 14:46:10',1,30004648,0,0,0,0,0,0,0,0,0,10,10,0,30,0,22,75,110,0,0,4,6,16,30,0),(4068,'2015-03-14 14:56:59','2015-08-29 14:46:10',1,30000950,0,0,0,0,0,0,0,0,134,0,0,0,0,0,135,136,0,0,0,0,0,0,0,0),(4069,'2015-03-14 14:56:59','2015-03-14 14:56:59',1,30003127,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(4070,'2015-03-14 14:56:59','2015-03-14 14:56:59',1,30001491,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(4071,'2015-03-14 14:56:59','2015-08-29 14:46:10',1,30001189,0,0,0,0,0,0,0,0,0,0,0,0,12,29,0,0,0,0,0,0,0,0,0,0),(4072,'2015-03-14 14:56:59','2015-08-29 14:46:10',1,30001265,0,0,0,0,0,36,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0),(4073,'2015-03-14 14:56:59','2015-08-29 14:46:10',1,30002013,0,0,0,0,0,0,0,0,3,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0),(4074,'2015-03-14 14:56:59','2015-08-29 14:46:10',1,30004522,0,0,0,0,0,0,0,0,0,0,0,0,9,0,0,0,0,94,32,0,0,14,0,0),(4075,'2015-03-14 14:56:59','2015-08-29 14:46:10',1,30002182,10,52,18,14,4,4,12,5,16,10,6,4,44,80,122,93,7,0,0,9,7,51,4,0),(4076,'2015-03-14 14:56:59','2015-08-29 14:46:10',1,30000291,0,48,45,131,125,119,34,0,0,130,142,214,13,145,119,129,22,0,60,52,161,197,102,0),(4077,'2015-03-14 14:56:59','2015-08-29 14:46:10',1,30001577,0,0,1,0,0,0,0,0,0,0,0,0,129,0,0,0,0,0,0,0,0,0,0,0),(4078,'2015-03-14 14:56:59','2015-03-14 14:56:59',1,30001102,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(4079,'2015-03-14 14:56:59','2015-08-29 14:46:10',1,30000320,0,29,0,189,0,0,54,0,142,128,116,0,0,0,0,0,10,33,0,0,0,0,10,0),(4080,'2015-03-14 14:56:59','2015-08-29 14:46:10',1,30004853,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,136,0,0,0,0,0,0),(4081,'2015-03-14 14:56:59','2015-08-29 14:46:10',1,30003631,264,664,263,133,151,610,542,302,137,341,386,28,372,263,56,33,272,43,13,97,115,95,393,0),(4082,'2015-03-14 14:56:59','2015-08-29 14:46:10',1,30003218,0,0,74,0,0,151,0,39,51,0,0,0,285,58,4,18,0,0,0,0,186,0,59,0),(4083,'2015-03-14 14:56:59','2015-08-29 14:46:10',1,30002135,15,13,11,11,5,0,0,0,7,0,6,0,4,0,0,0,0,0,0,4,1,0,0,0),(4084,'2015-03-14 14:56:59','2015-08-29 14:46:10',1,30000563,125,0,0,0,0,0,0,0,7,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(4085,'2015-03-14 14:56:59','2015-08-29 14:46:10',1,30004871,0,0,102,0,0,0,0,0,0,0,0,291,0,4,0,0,0,0,0,0,0,0,0,0),(4086,'2015-03-14 14:56:59','2015-03-14 14:56:59',1,30001450,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(4087,'2015-03-14 14:56:59','2015-08-29 14:46:10',1,30002874,183,7,39,12,11,5,0,0,0,0,0,0,0,0,0,0,0,0,0,0,62,0,0,0),(4088,'2015-03-14 14:56:59','2015-08-29 14:46:10',1,30004891,0,0,17,0,0,2,0,0,5,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(4089,'2015-03-14 14:56:59','2015-08-29 14:46:10',1,30003769,0,0,0,0,0,0,0,3,0,0,0,0,0,0,3,10,4,2,25,5,8,0,0,0),(4090,'2015-03-14 14:56:59','2015-08-29 14:46:10',1,30001806,29,0,0,3,100,377,47,66,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(4091,'2015-03-14 14:56:59','2015-08-29 14:46:10',1,30004566,0,0,0,0,0,64,0,0,97,121,43,0,0,0,0,0,0,0,0,0,0,0,0,0),(4092,'2015-03-14 14:56:59','2015-08-29 14:46:10',1,30004473,0,124,21,157,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(4093,'2015-03-14 14:56:59','2015-03-14 14:56:59',1,30000589,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(4094,'2015-03-14 14:56:59','2015-08-29 14:46:10',1,30004339,0,113,0,0,0,0,0,0,31,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(4095,'2015-03-14 14:56:59','2015-08-29 14:46:10',1,30004727,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,5,0,0,0,0,0,0,5,0),(4096,'2015-03-14 14:56:59','2015-08-29 14:46:10',1,30002010,3,1,1,2,2,0,7,125,4,1,1,0,0,5,5,0,0,2,0,1,0,1,1,0),(4097,'2015-03-14 14:56:59','2015-03-14 14:56:59',1,30001619,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(4098,'2015-03-14 14:56:59','2015-08-29 14:46:10',1,30001859,0,0,0,0,0,0,0,127,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(4099,'2015-03-14 14:56:59','2015-08-29 14:46:10',1,30002894,0,193,375,448,420,0,0,0,12,9,0,104,12,59,203,170,166,3,0,4,317,0,423,0),(4100,'2015-03-14 14:56:59','2015-08-29 14:46:10',1,30003209,0,0,0,0,39,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,58,0,0),(4101,'2015-03-14 14:56:59','2015-08-29 14:46:10',1,30000768,129,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,14,0),(4102,'2015-03-14 14:56:59','2015-08-29 14:46:10',1,30004485,0,33,66,199,139,141,0,91,0,0,0,89,10,0,0,0,174,0,0,0,0,0,0,0),(4103,'2015-03-14 14:56:59','2015-08-29 14:46:10',1,30001018,43,34,92,52,120,25,56,4,9,148,83,313,41,77,75,107,217,204,113,1,32,0,128,0),(4104,'2015-03-14 14:56:59','2015-08-29 14:46:10',1,30002958,12,16,21,15,44,11,4,4,14,5,27,24,17,99,8,4,51,96,31,3,7,5,2,0),(4105,'2015-03-14 14:56:59','2015-08-29 14:46:10',1,30000033,6,122,149,61,31,64,59,41,61,91,76,71,137,68,40,86,38,63,72,43,191,54,88,0),(4106,'2015-03-14 14:56:59','2015-08-29 14:46:10',1,30002726,21,120,24,0,0,0,15,4,9,2,2,8,0,15,78,83,0,7,15,0,0,121,2,0),(4107,'2015-03-14 14:56:59','2015-08-29 14:46:10',1,30003941,0,0,60,0,0,9,70,0,0,0,0,1,0,27,62,128,0,0,0,2,9,0,0,0),(4108,'2015-03-14 14:56:59','2015-08-29 14:46:10',1,30002052,100,0,26,41,42,0,0,1,12,17,17,9,16,0,3,9,0,18,0,2,0,0,1,0),(4109,'2015-03-14 14:56:59','2015-08-29 14:46:10',1,30003914,34,23,10,9,5,103,3,5,27,58,9,33,112,28,12,16,15,116,0,0,62,38,48,0),(4110,'2015-03-14 14:56:59','2015-08-29 14:46:10',1,30002982,0,0,0,0,0,0,0,48,7,0,0,0,0,0,0,0,0,0,16,23,0,0,0,0),(4111,'2015-03-14 14:56:59','2015-03-14 14:56:59',1,30002839,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(4112,'2015-03-14 14:56:59','2015-08-29 14:46:10',1,30045315,5,9,0,93,0,12,22,18,78,20,33,29,15,21,14,23,28,34,5,5,9,22,13,0),(4113,'2015-03-14 14:56:59','2015-08-29 14:46:10',1,30002772,76,342,104,2,8,83,82,227,76,193,124,299,108,254,163,266,87,67,318,311,148,131,243,0),(4114,'2015-03-14 14:56:59','2015-08-29 14:46:10',1,30045349,12,6,20,1,0,0,1,1,3,6,3,0,12,4,4,92,0,73,3,3,5,4,52,0),(4115,'2015-03-14 14:56:59','2015-08-29 14:46:10',1,30002239,54,12,13,0,0,0,0,0,0,16,0,0,0,0,0,0,115,0,0,0,0,0,0,0),(4116,'2015-03-14 14:56:59','2015-08-29 14:46:10',1,30002718,0,0,3,0,0,26,4,0,77,0,0,0,0,0,0,0,3,0,0,0,0,0,3,0),(4117,'2015-03-14 14:56:59','2015-08-29 14:46:10',1,30001727,27,0,14,49,46,0,14,0,0,5,20,0,12,58,90,81,5,0,44,26,47,0,0,0),(4118,'2015-03-14 14:56:59','2015-08-29 14:46:10',1,30005319,37,141,63,43,167,248,59,123,135,125,53,46,155,103,177,162,31,163,99,53,70,82,98,0),(4119,'2015-03-14 14:56:59','2015-08-29 14:46:10',1,30005085,28,50,0,58,40,0,0,0,0,0,0,0,0,0,0,0,0,0,80,0,26,15,4,0),(4120,'2015-03-14 14:56:59','2015-08-29 14:46:10',1,30005080,0,0,0,72,72,0,0,9,0,0,0,0,0,30,31,8,0,0,0,0,0,0,0,0),(4121,'2015-03-14 14:56:59','2015-08-29 14:46:10',1,30003530,14,0,10,0,0,19,3,0,7,3,0,33,0,7,7,0,0,52,139,49,3,0,30,0),(4122,'2015-03-14 14:56:59','2015-08-29 14:46:10',1,30003495,1018,11,51,7,5,28,102,9,70,180,141,77,94,103,129,132,103,27,37,148,131,69,11,0),(4123,'2015-03-14 14:56:59','2015-08-29 14:46:10',1,30002212,38,0,70,69,20,98,21,9,90,2,5,0,68,95,56,44,20,0,8,56,25,9,62,0),(4124,'2015-03-14 14:56:59','2015-08-29 14:46:10',1,30004269,0,0,18,2,5,0,0,0,197,14,0,0,0,0,0,0,0,89,4,0,0,0,11,0),(4125,'2015-03-14 14:56:59','2015-08-29 14:46:10',1,30000025,4,82,0,0,0,129,77,8,9,8,5,0,0,76,112,66,83,38,26,27,0,58,0,0),(4126,'2015-03-14 14:56:59','2015-08-29 14:46:10',1,30002227,1,5,20,0,0,29,0,26,23,13,7,6,26,40,79,66,35,0,11,9,70,1,71,0),(4127,'2015-03-14 14:56:59','2015-08-29 14:46:10',1,30003602,0,0,19,0,10,0,0,0,34,0,72,0,5,0,0,0,0,27,9,50,1,6,97,0),(4128,'2015-03-14 14:56:59','2015-08-29 14:46:10',1,30001417,377,150,97,50,25,97,212,134,187,48,87,257,308,20,126,126,129,52,213,168,117,159,210,0),(4129,'2015-03-14 14:56:59','2015-08-29 14:46:10',1,30001373,354,221,323,157,192,361,167,330,183,275,326,204,147,274,214,223,431,181,48,119,298,359,523,0),(4130,'2015-03-14 14:56:59','2015-08-29 14:46:10',1,30002697,57,0,4,0,0,0,89,168,30,15,0,7,107,22,3,0,23,10,3,18,65,6,9,0),(4131,'2015-03-14 14:56:59','2015-08-29 14:46:10',1,30004116,27,43,14,112,97,0,4,28,135,12,12,31,46,0,120,121,88,0,109,158,13,0,36,0),(4132,'2015-03-14 14:56:59','2015-08-29 14:46:10',1,30002271,91,302,162,34,1,27,93,102,22,44,111,48,74,0,15,38,50,7,62,97,161,112,106,0),(4133,'2015-03-14 14:56:59','2015-03-14 14:56:59',1,30000406,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(4134,'2015-03-14 14:56:59','2015-08-29 14:46:10',1,30003104,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,49,5,0,0,0,0,0,0),(4135,'2015-03-14 14:56:59','2015-08-29 14:46:10',1,30004742,0,20,15,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,14,14,0,0,0,0),(4136,'2015-03-14 14:56:59','2015-08-29 14:46:10',1,30000805,9,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,24,0),(4137,'2015-03-14 14:56:59','2015-08-29 14:46:10',1,30002023,0,0,0,0,0,103,0,8,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0),(4138,'2015-03-14 14:56:59','2015-03-14 14:56:59',1,30004577,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(4139,'2015-03-14 14:56:59','2015-08-29 14:46:10',1,30002140,12,9,0,92,142,18,44,273,0,0,0,0,0,23,23,46,0,0,0,0,0,0,0,0),(4140,'2015-03-14 14:56:59','2015-08-29 14:46:10',1,30005328,59,69,1,0,2,99,2,0,11,0,0,0,0,18,40,22,19,6,0,0,0,0,4,0),(4141,'2015-03-14 14:56:59','2015-08-29 14:46:10',1,30000160,185,219,125,181,45,69,70,222,152,347,469,281,59,178,194,430,378,100,281,232,241,402,305,0),(4142,'2015-03-14 14:56:59','2015-08-29 14:46:10',1,30045354,36,57,8,1,2,4,13,2,40,13,4,7,8,18,20,17,9,10,127,21,14,5,15,0),(4143,'2015-03-14 14:56:59','2015-08-29 14:46:10',1,30001700,76,123,266,165,132,74,18,61,30,217,293,62,206,246,198,198,30,68,50,126,78,132,147,0),(4144,'2015-03-14 14:56:59','2015-08-29 14:46:10',1,30003829,102,18,6,3,19,3,0,0,1,1,2,7,6,1,13,13,13,15,2,5,0,2,13,0),(4145,'2015-03-14 14:56:59','2015-08-29 14:46:10',1,30002510,480,600,616,414,405,329,187,99,364,497,786,413,665,499,409,480,612,332,635,651,640,492,256,0),(4146,'2015-03-14 14:56:59','2015-08-29 14:46:10',1,30004970,340,285,238,253,259,206,68,199,275,331,365,288,286,325,429,416,203,281,338,265,316,499,227,0),(4147,'2015-03-14 14:56:59','2015-08-29 14:46:10',1,30003564,0,0,27,32,0,0,6,30,0,0,0,0,0,40,95,60,0,0,0,0,1,49,0,0),(4148,'2015-03-14 14:56:59','2015-08-29 14:46:10',1,30000780,0,0,0,0,0,0,0,0,0,38,0,0,0,0,0,27,0,0,0,0,0,0,0,0),(4149,'2015-03-14 14:56:59','2015-08-29 14:46:10',1,30002056,5,4,0,6,16,3,0,1,7,0,0,63,0,3,2,1,1,37,3,11,3,3,13,0),(4150,'2015-03-14 14:56:59','2015-08-29 14:46:10',1,30003851,110,64,79,74,80,129,36,18,0,14,9,7,10,67,0,13,8,3,3,5,16,17,43,0),(4151,'2015-03-14 14:56:59','2015-08-29 14:46:10',1,30003391,114,311,226,146,81,129,104,133,145,123,173,134,97,121,157,271,124,82,125,142,226,200,94,0),(4152,'2015-03-14 14:56:59','2015-08-29 14:46:10',1,30003880,68,270,172,161,109,99,131,21,141,424,317,206,165,125,116,180,167,68,66,63,118,180,427,0),(4153,'2015-03-14 14:56:59','2015-08-29 14:46:10',1,30001686,0,4,9,0,0,0,8,9,62,20,28,24,4,93,2,6,79,3,4,9,8,123,9,0),(4154,'2015-03-14 14:56:59','2015-08-29 14:46:10',1,30002256,33,0,3,10,21,75,35,0,15,0,26,2,1,43,42,42,0,0,0,0,9,0,46,0),(4155,'2015-03-14 14:56:59','2015-08-29 14:46:10',1,30003803,35,18,0,10,31,16,41,92,0,0,26,28,32,1,0,3,22,9,107,0,58,19,44,0),(4156,'2015-03-14 14:56:59','2015-03-14 14:56:59',1,30001475,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(4157,'2015-03-14 14:56:59','2015-03-14 14:56:59',1,30000385,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(4158,'2015-03-14 14:56:59','2015-08-29 14:46:10',1,30003994,0,99,28,9,13,19,12,172,302,444,439,308,175,733,1034,842,193,0,27,129,1058,198,149,0),(4159,'2015-03-14 14:56:59','2015-08-29 14:46:10',1,30003333,12,15,179,10,6,36,13,8,0,9,3,3,18,12,19,13,10,9,13,13,3,4,67,0),(4160,'2015-03-14 14:56:59','2015-08-29 14:46:10',1,30004724,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,17,0,0,0,0,0,0,0),(4161,'2015-03-14 14:56:59','2015-08-29 14:46:10',1,30003229,266,43,244,0,6,0,0,42,0,0,0,0,0,0,0,0,0,0,0,0,0,0,167,0),(4162,'2015-03-14 14:56:59','2015-08-29 14:46:10',1,30002129,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,66,23,0,0,0,20,41,0,0),(4163,'2015-03-14 14:56:59','2015-08-29 14:46:10',1,30002491,281,0,0,0,0,987,54,0,0,0,0,0,0,0,0,0,0,16,0,0,0,0,0,0),(4164,'2015-03-14 14:56:59','2015-08-29 14:46:10',1,30002954,225,180,488,683,608,987,1680,523,935,1343,1154,1022,499,1044,1267,1349,925,395,774,1050,979,1004,1189,0),(4165,'2015-03-14 14:56:59','2015-08-29 14:46:10',1,30004225,0,0,0,29,159,28,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(4166,'2015-03-14 14:56:59','2015-03-14 14:56:59',1,30004812,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(4167,'2015-03-14 14:56:59','2015-03-14 14:56:59',1,30002151,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(4168,'2015-03-14 14:56:59','2015-08-29 14:46:10',1,30004918,21,10,13,311,205,291,39,458,0,188,284,116,0,0,0,0,0,0,0,0,0,0,0,0),(4169,'2015-03-14 14:56:59','2015-08-29 14:46:10',1,30002993,49,124,237,144,118,62,31,61,92,154,188,103,108,117,113,80,22,88,133,243,82,101,119,0),(4170,'2015-03-14 14:56:59','2015-08-29 14:46:10',1,30003457,4,182,72,1,34,9,64,173,38,179,140,139,50,33,18,94,59,51,92,83,95,185,69,0),(4171,'2015-03-14 14:56:59','2015-08-29 14:46:10',1,30003916,0,0,0,0,2,0,0,0,8,15,27,0,0,0,15,86,34,0,11,2,7,0,6,0),(4172,'2015-03-14 14:56:59','2015-08-29 14:46:10',1,30002241,0,0,0,0,0,0,0,0,49,0,0,0,428,324,186,1,0,0,68,30,0,0,0,0),(4173,'2015-03-14 14:56:59','2015-08-29 14:46:10',1,30001650,110,133,15,93,108,28,14,19,61,11,26,15,89,0,6,49,81,102,0,35,16,100,26,0),(4174,'2015-03-14 14:56:59','2015-08-29 14:46:10',1,30004472,121,66,10,22,87,81,8,93,13,10,9,0,24,14,12,8,0,0,0,23,0,0,6,0),(4175,'2015-03-14 14:56:59','2015-08-29 14:46:10',1,30001090,278,437,107,565,608,63,0,0,0,113,169,273,0,0,0,0,0,0,0,0,0,0,456,0),(4176,'2015-03-14 14:56:59','2015-08-29 14:46:10',1,30004953,130,0,41,0,0,72,0,145,344,21,0,37,14,21,0,0,0,234,144,26,27,268,53,0),(4177,'2015-03-14 14:56:59','2015-08-29 14:46:10',1,30003260,1150,60,525,243,183,494,121,312,344,587,574,377,403,71,454,957,289,108,222,364,192,134,475,0),(4178,'2015-03-14 14:56:59','2015-08-29 14:46:10',1,30002380,0,22,0,27,27,4,0,0,0,0,0,0,0,0,0,0,0,0,0,0,3,0,0,0),(4179,'2015-03-14 14:56:59','2015-08-29 14:46:10',1,30003626,0,67,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(4180,'2015-03-14 14:56:59','2015-08-29 14:46:10',1,30004015,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,29,21,0,0),(4181,'2015-03-14 14:56:59','2015-08-29 14:46:10',1,30004494,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,5,0,0),(4182,'2015-03-14 14:56:59','2015-08-29 14:46:10',1,30001902,0,0,0,0,0,0,60,0,0,0,10,0,7,0,0,0,3,56,33,56,0,0,0,0),(4183,'2015-03-14 14:56:59','2015-08-29 14:46:10',1,30003353,0,30,56,0,0,57,11,0,3,1,0,29,79,109,32,0,64,0,0,11,0,0,0,0),(4184,'2015-03-14 14:56:59','2015-08-29 14:46:10',1,30002443,361,258,205,488,585,636,535,233,246,372,477,553,112,114,124,142,846,472,142,262,276,450,548,0),(4185,'2015-03-14 14:56:59','2015-08-29 14:46:10',1,30003610,0,0,206,0,0,0,0,0,121,0,0,0,0,0,0,0,0,0,27,0,9,0,145,0),(4186,'2015-03-14 14:56:59','2015-08-29 14:46:10',1,30001028,5,1,36,0,0,0,0,1,1,9,6,1,0,1,1,34,4,0,0,13,0,0,0,0),(4187,'2015-03-14 14:56:59','2015-03-14 14:56:59',1,30001520,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(4188,'2015-03-14 14:56:59','2015-08-29 14:46:10',1,30001187,255,928,267,99,110,29,0,292,52,8,32,6,166,167,556,975,424,211,70,0,93,473,329,0),(4189,'2015-03-14 14:56:59','2015-08-29 14:46:10',1,30000673,1,114,1,0,0,0,8,3,0,14,0,0,28,0,0,0,0,27,49,0,0,0,7,0),(4190,'2015-03-14 14:56:59','2015-08-29 14:46:10',1,30002322,747,509,879,532,382,407,16,11,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(4191,'2015-03-14 14:56:59','2015-08-29 14:46:10',1,30003246,2060,0,0,0,0,0,0,0,0,0,17,39,0,0,0,0,3329,0,0,0,3,1672,0,0),(4192,'2015-03-14 14:56:59','2015-08-29 14:46:10',1,30002926,1004,251,536,78,126,253,281,0,31,145,136,392,350,1520,1300,1300,835,760,501,840,0,635,640,0),(4193,'2015-03-14 14:56:59','2015-08-29 14:46:10',1,30004370,86,0,73,182,118,15,188,0,0,0,0,0,0,0,0,0,0,99,0,16,0,27,0,0),(4194,'2015-03-14 14:56:59','2015-08-29 14:46:10',1,30045325,458,490,64,147,247,94,185,395,182,200,154,209,196,453,231,136,156,225,310,144,267,405,261,0),(4195,'2015-03-14 14:56:59','2015-08-29 14:46:10',1,30001983,9,0,0,31,140,0,58,4,7,93,73,41,0,79,110,32,5,0,133,16,0,0,31,0),(4196,'2015-03-14 14:56:59','2015-08-29 14:46:10',1,30000815,0,107,0,0,0,0,0,0,2,0,0,0,0,0,2,2,0,0,0,0,0,0,0,0),(4197,'2015-03-14 14:56:59','2015-08-29 14:46:10',1,30002534,123,233,54,76,43,48,194,22,5,53,23,26,31,66,49,42,194,56,113,47,170,23,58,0),(4198,'2015-03-14 14:56:59','2015-08-29 14:46:10',1,30003395,18,315,83,139,98,90,0,51,69,80,179,81,463,420,284,82,109,206,72,209,161,174,77,0),(4199,'2015-03-14 14:56:59','2015-08-29 14:46:10',1,30004080,187,369,489,499,407,226,160,80,150,127,253,299,553,676,595,651,749,86,122,340,529,346,473,0),(4200,'2015-03-14 14:56:59','2015-08-29 14:46:10',1,30002550,206,42,61,42,83,40,136,107,5,54,60,89,18,83,141,231,51,77,121,125,0,0,149,0),(4201,'2015-03-14 14:56:59','2015-08-29 14:46:10',1,30003081,18,60,25,27,20,49,17,1,18,189,274,25,27,99,8,6,0,0,0,38,21,38,33,0),(4202,'2015-03-14 14:56:59','2015-08-29 14:46:10',1,30002721,53,25,33,92,62,29,33,6,1,0,0,29,208,196,119,33,5,4,74,60,47,69,68,0),(4203,'2015-03-14 14:56:59','2015-08-29 14:46:10',1,30002033,0,52,1,0,4,131,55,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(4204,'2015-03-14 14:56:59','2015-08-29 14:46:10',1,30002426,0,0,0,5,50,0,0,0,7,0,8,68,45,49,70,81,123,0,54,48,19,77,16,0),(4205,'2015-03-14 14:56:59','2015-08-29 14:46:10',1,30002975,9,12,9,24,16,13,10,1,1,1,0,3,1,0,2,5,43,0,4,1,2,1,3,0),(4206,'2015-03-14 14:56:59','2015-03-14 14:56:59',1,30001936,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(4207,'2015-03-14 14:56:59','2015-08-29 14:46:10',1,30004560,0,0,0,0,0,0,0,0,0,0,0,0,6,0,0,0,0,0,0,0,0,0,0,0),(4208,'2015-03-14 14:56:59','2015-08-29 14:46:10',1,30001924,0,3,0,3,9,0,0,0,16,0,0,0,0,0,0,0,95,0,0,3,4,0,6,0),(4209,'2015-03-14 14:56:59','2015-08-29 14:46:10',1,30001320,47,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,162,31,0,0,0,0),(4210,'2015-03-14 14:56:59','2015-03-14 14:56:59',1,30000359,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(4211,'2015-03-14 14:56:59','2015-08-29 14:46:10',1,30002039,0,48,43,30,40,3,8,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(4212,'2015-03-14 14:56:59','2015-03-14 14:56:59',1,30000790,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(4213,'2015-03-14 14:56:59','2015-08-29 14:46:10',1,30001830,1721,11,1107,3,68,558,0,0,0,0,0,218,267,335,138,0,749,169,0,0,311,867,852,0),(4214,'2015-03-14 14:56:59','2015-08-29 14:46:10',1,30002880,0,0,0,0,0,0,26,6,0,50,158,160,0,88,196,278,91,0,0,0,81,90,170,0),(4215,'2015-03-14 14:56:59','2015-08-29 14:46:10',1,30001259,0,0,0,0,0,21,91,0,230,11,42,20,230,289,335,306,213,11,0,0,30,90,65,0),(4216,'2015-03-14 14:56:59','2015-08-29 14:46:10',1,30001931,0,0,69,0,0,28,0,0,0,0,0,0,0,0,0,0,0,28,23,0,0,0,0,0),(4217,'2015-03-14 14:56:59','2015-03-14 14:56:59',1,30001511,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(4218,'2015-03-14 14:56:59','2015-08-29 14:46:10',1,30001139,160,0,0,0,0,164,63,0,0,57,93,0,0,0,0,0,0,0,0,0,0,0,0,0),(4219,'2015-03-14 14:56:59','2015-08-29 14:46:10',1,30003362,7,3,139,40,115,112,0,73,0,0,0,0,0,8,8,12,92,37,0,10,0,0,0,0),(4220,'2015-03-14 14:56:59','2015-08-29 14:46:10',1,30000511,0,0,0,0,71,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0),(4221,'2015-03-14 14:56:59','2015-08-29 14:46:10',1,30001773,34,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(4222,'2015-03-14 14:56:59','2015-08-29 14:46:10',1,30004516,0,0,0,102,78,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(4223,'2015-03-14 14:56:59','2015-03-14 14:56:59',1,30000377,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(4224,'2015-03-14 14:56:59','2015-08-29 14:46:10',1,30002183,174,39,119,52,102,12,83,252,0,0,35,177,39,35,8,26,140,0,0,2,10,76,129,0),(4225,'2015-03-14 14:56:59','2015-08-29 14:46:10',1,30002249,136,0,0,0,0,0,64,0,16,7,10,0,118,76,25,0,8,12,0,22,57,1,51,0),(4226,'2015-03-14 14:56:59','2015-08-29 14:46:10',1,30003845,0,103,10,40,0,83,0,0,0,10,10,0,0,0,0,0,0,3,88,0,0,0,0,0),(4227,'2015-03-14 14:56:59','2015-08-29 14:46:10',1,30001123,399,7,6,25,64,315,157,230,0,0,0,0,0,0,0,0,72,0,0,0,0,0,0,0),(4228,'2015-03-14 14:56:59','2015-08-29 14:46:10',1,30001724,21,154,40,38,9,0,0,24,0,54,60,1,49,1,27,52,13,0,5,10,113,9,55,0),(4229,'2015-03-14 14:56:59','2015-08-29 14:46:10',1,30001408,930,1023,1014,816,639,988,1118,1280,1300,1559,1820,2000,1478,1438,1799,1980,1216,776,856,1097,1180,1220,1058,0),(4230,'2015-03-14 14:56:59','2015-03-14 14:56:59',1,30002326,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(4231,'2015-03-14 14:56:59','2015-08-29 14:46:10',1,30001900,0,0,0,0,0,0,0,14,0,0,33,67,94,43,31,86,0,0,78,11,2,4,94,0),(4232,'2015-03-14 14:56:59','2015-08-29 14:46:10',1,30000651,0,0,24,0,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(4233,'2015-03-14 14:56:59','2015-08-29 14:46:10',1,30000298,39,0,287,0,0,125,309,231,70,206,36,3,137,90,328,554,93,52,42,0,416,334,36,0),(4234,'2015-03-14 14:56:59','2015-08-29 14:46:10',1,30001943,0,0,0,0,0,0,0,26,87,3,0,0,26,10,0,0,0,9,0,0,50,81,0,0),(4235,'2015-03-14 14:56:59','2015-08-29 14:46:10',1,30001142,12,12,24,17,9,30,19,40,131,0,0,0,301,29,0,0,0,0,0,117,0,0,30,0),(4236,'2015-03-14 14:56:59','2015-08-29 14:46:10',1,30001563,0,0,18,0,0,0,0,0,0,4,0,0,0,0,0,0,31,0,0,0,0,0,73,0),(4237,'2015-03-14 14:56:59','2015-03-14 14:56:59',1,30001138,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(4238,'2015-03-14 14:56:59','2015-08-29 14:46:10',1,30005119,0,0,0,0,0,0,61,0,0,0,0,0,0,0,5,30,91,0,0,0,0,0,0,0),(4239,'2015-03-14 14:56:59','2015-08-29 14:46:10',1,30000712,17,44,0,36,68,56,43,91,41,26,0,0,31,54,42,36,0,0,0,23,3,0,0,0),(4240,'2015-03-14 14:56:59','2015-08-29 14:46:10',1,30003410,61,208,185,134,56,159,65,70,59,131,47,16,56,93,115,182,140,39,87,118,61,180,58,0),(4241,'2015-03-14 14:56:59','2015-08-29 14:46:10',1,30004963,241,98,310,356,358,577,610,388,0,0,0,0,0,3,4,31,0,0,0,45,0,50,0,0),(4242,'2015-03-14 14:56:59','2015-03-14 14:56:59',1,30000477,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(4243,'2015-03-14 14:56:59','2015-03-14 14:56:59',1,30000834,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(4244,'2015-03-14 14:56:59','2015-08-29 14:46:10',1,30005105,0,0,0,0,0,0,0,0,0,0,0,0,16,0,0,0,30,13,0,0,0,4,0,0),(4245,'2015-03-14 14:56:59','2015-08-29 14:46:10',1,30005188,0,0,0,0,0,6,0,0,0,0,0,0,0,2,4,4,0,0,3,0,0,0,0,0),(4246,'2015-03-14 14:56:59','2015-08-29 14:46:10',1,30002022,29,0,16,4,0,0,0,1,0,7,7,0,106,0,0,0,22,0,0,0,0,0,0,0),(4247,'2015-03-14 14:56:59','2015-08-29 14:46:10',1,30003628,0,0,0,0,0,0,0,0,0,0,0,131,0,0,0,0,0,0,0,0,0,0,0,0),(4248,'2015-03-14 14:56:59','2015-08-29 14:46:10',1,30001308,0,36,14,27,28,21,0,0,14,0,25,0,0,14,14,0,0,0,128,12,10,0,0,0),(4249,'2015-03-14 14:56:59','2015-03-14 14:56:59',1,30000501,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(4250,'2015-03-14 14:56:59','2015-08-29 14:46:10',1,30004776,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,3,0,0,0,0,0,0,0,0),(4251,'2015-03-14 14:56:59','2015-08-29 14:46:10',1,30004819,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,127,0),(4252,'2015-03-14 14:56:59','2015-08-29 14:46:10',1,30004332,0,37,74,329,286,0,0,11,0,0,0,0,0,44,20,0,97,143,16,4,17,0,0,0),(4253,'2015-03-14 14:56:59','2015-08-29 14:46:10',1,30001918,0,0,0,34,24,0,31,25,20,2,2,0,0,31,0,0,0,0,0,0,11,0,0,0),(4254,'2015-03-14 14:56:59','2015-08-29 14:46:10',1,30001591,250,0,446,626,568,170,630,878,55,397,398,544,0,0,0,13,133,0,49,97,93,351,1,0),(4255,'2015-03-14 14:56:59','2015-08-29 14:46:10',1,30001893,0,0,0,0,0,0,0,0,12,63,60,36,16,0,0,0,0,0,0,131,0,0,0,0),(4256,'2015-03-14 14:56:59','2015-08-29 14:46:10',1,30002912,1340,123,262,0,81,930,694,977,1580,1860,1640,1019,1620,1640,1460,1480,1400,1959,1883,1460,1260,1278,1140,0),(4257,'2015-03-14 14:56:59','2015-08-29 14:46:10',1,30000657,34,339,102,33,0,0,0,0,0,0,0,60,0,0,0,0,0,0,0,0,0,0,1,0),(4258,'2015-03-14 14:56:59','2015-08-29 14:46:10',1,30003611,112,135,28,0,99,24,0,137,0,121,22,0,1,0,0,0,0,0,0,0,189,0,0,0),(4259,'2015-03-14 14:56:59','2015-08-29 14:46:10',1,30003340,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,46,0,0,0,0,0,0,0),(4260,'2015-03-14 14:56:59','2015-08-29 14:46:10',1,30003629,128,78,0,0,0,149,0,2,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(4261,'2015-03-14 14:56:59','2015-08-29 14:46:10',1,30004683,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,81,0,0,0),(4262,'2015-03-14 14:56:59','2015-08-29 14:46:10',1,30002888,100,0,0,26,82,235,58,208,0,1,147,292,0,168,304,338,75,0,0,55,0,59,9,0),(4263,'2015-03-14 14:56:59','2015-08-29 14:46:10',1,30002017,0,0,0,23,23,135,0,0,0,0,0,4,0,0,0,0,0,0,3,0,1,0,0,0),(4264,'2015-03-14 14:56:59','2015-08-29 14:46:10',1,30000260,169,0,7,0,0,12,0,98,61,103,70,0,425,499,357,272,403,87,353,71,296,198,142,0),(4265,'2015-03-14 14:56:59','2015-03-14 14:56:59',1,30000388,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(4266,'2015-03-14 14:56:59','2015-08-29 14:46:10',1,30001088,124,96,58,105,94,100,0,124,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(4267,'2015-03-14 14:56:59','2015-03-14 14:56:59',1,30001176,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(4268,'2015-03-14 14:56:59','2015-08-29 14:46:10',1,30003368,0,0,27,26,38,7,0,1,1,0,0,0,0,1,0,2,0,0,0,7,0,12,17,0),(4269,'2015-03-14 14:56:59','2015-08-29 14:46:10',1,30004172,0,0,0,150,92,0,0,0,0,0,0,0,314,120,27,0,0,410,445,314,323,133,0,0),(4270,'2015-03-14 14:56:59','2015-08-29 14:46:10',1,30004886,0,0,0,0,0,45,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(4271,'2015-03-14 14:56:59','2015-08-29 14:46:10',1,30000753,0,15,0,10,42,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(4272,'2015-03-14 14:56:59','2015-03-14 14:56:59',1,30000667,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(4273,'2015-03-14 14:56:59','2015-08-29 14:46:10',1,30001030,124,16,83,71,15,0,11,74,103,22,37,91,0,0,0,1,0,0,0,0,3,0,28,0),(4274,'2015-03-14 14:56:59','2015-08-29 14:46:10',1,30001237,351,222,169,250,291,155,173,380,72,399,275,286,144,62,116,222,69,36,69,14,9,110,252,0),(4275,'2015-03-14 14:56:59','2015-03-14 14:56:59',1,30004805,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(4276,'2015-03-14 14:56:59','2015-03-14 14:56:59',1,30001471,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(4277,'2015-03-14 14:56:59','2015-08-29 14:46:10',1,30001145,0,35,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,25,6,0),(4278,'2015-03-14 14:56:59','2015-08-29 14:46:10',1,30000284,16,0,183,254,28,239,0,0,0,13,28,0,0,0,0,0,0,30,16,1,0,0,0,0),(4279,'2015-03-14 14:56:59','2015-08-29 14:46:10',1,30003257,442,284,0,1,0,3,29,13,0,61,0,0,0,131,95,5,0,0,34,140,33,17,31,0),(4280,'2015-03-14 14:56:59','2015-08-29 14:46:10',1,30000886,69,104,0,0,0,0,0,0,0,0,0,0,0,5,5,0,0,6,0,0,0,0,0,0),(4281,'2015-03-14 14:56:59','2015-08-29 14:46:10',1,30001891,0,0,0,0,0,0,0,0,80,89,99,83,95,101,87,80,46,58,115,63,88,119,48,0),(4282,'2015-03-14 14:56:59','2015-03-14 14:56:59',1,30000389,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(4283,'2015-03-14 14:56:59','2015-08-29 14:46:10',1,30003741,1,27,0,48,128,234,63,0,27,97,95,95,158,16,111,179,252,29,2,15,52,47,134,0),(4284,'2015-03-14 14:56:59','2015-08-29 14:46:10',1,30003506,240,289,375,237,317,165,232,96,158,187,135,257,222,195,221,281,130,213,127,232,336,464,212,0),(4285,'2015-03-14 14:56:59','2015-08-29 14:46:10',1,30001386,317,333,163,179,115,5,191,90,47,148,114,19,250,127,191,169,190,116,154,188,256,206,154,0),(4286,'2015-03-14 14:56:59','2015-08-29 14:46:10',1,30003894,151,35,2,184,90,101,36,0,968,714,809,812,28,17,73,127,0,63,0,0,0,9,41,0),(4287,'2015-03-14 14:56:59','2015-08-29 14:46:10',1,30001675,196,144,237,236,181,407,264,131,236,313,358,219,184,164,86,101,212,92,74,199,181,155,207,0),(4288,'2015-03-14 14:56:59','2015-08-29 14:46:10',1,30004242,0,0,3,0,4,3,49,0,26,19,19,0,0,0,0,0,21,87,0,0,0,0,104,0),(4289,'2015-03-14 14:56:59','2015-08-29 14:46:10',1,30002251,123,84,169,112,105,160,58,2,105,12,71,108,116,74,20,10,0,53,112,36,238,101,93,0),(4290,'2015-03-14 14:56:59','2015-08-29 14:46:10',1,30031672,0,33,17,0,0,44,21,15,0,151,76,33,0,0,0,0,0,90,1,33,50,131,0,0),(4291,'2015-03-14 14:56:59','2015-08-29 14:46:10',1,30002279,70,115,67,32,91,28,116,161,113,191,230,170,75,206,117,106,141,25,37,110,143,126,89,0),(4292,'2015-03-14 14:56:59','2015-08-29 14:46:10',1,30003879,64,139,168,37,118,77,21,136,163,50,43,97,113,90,53,81,284,106,17,113,81,76,144,0),(4293,'2015-03-14 14:56:59','2015-08-29 14:46:10',1,30001719,8,47,2,0,0,0,0,54,5,17,15,51,35,7,0,24,13,9,7,2,41,78,70,0),(4294,'2015-03-14 14:56:59','2015-08-29 14:46:10',1,30002298,0,7,82,9,31,365,0,28,0,0,0,0,0,9,0,0,0,0,0,0,0,0,0,0),(4295,'2015-03-14 14:56:59','2015-08-29 14:46:10',1,30003474,93,4,10,0,0,0,0,1,108,38,12,0,10,0,0,0,49,1,9,41,0,0,0,0),(4296,'2015-03-14 14:56:59','2015-08-29 14:46:10',1,30002259,42,50,67,47,47,2,18,46,19,49,37,91,17,47,22,79,51,9,5,15,19,33,57,0),(4297,'2015-03-14 14:56:59','2015-08-29 14:46:10',1,30003518,53,89,0,8,8,52,70,0,193,147,53,56,10,104,24,69,21,33,178,122,18,49,106,0),(4298,'2015-03-14 14:56:59','2015-08-29 14:46:10',1,30003086,13,12,23,13,6,1,47,3,19,22,17,12,0,2,0,3,5,30,17,1,1,0,20,0),(4299,'2015-03-14 14:56:59','2015-08-29 14:46:10',1,30000508,0,0,0,0,0,0,0,42,0,0,0,0,0,5,75,135,59,0,0,0,0,0,7,0),(4300,'2015-03-14 14:56:59','2015-08-29 14:46:10',1,30003090,28,20,130,19,14,10,15,10,10,24,43,22,19,13,19,20,23,13,23,3,18,28,21,0),(4301,'2015-03-14 14:56:59','2015-08-29 14:46:10',1,30003079,17,33,25,3,1,7,17,2,54,51,51,51,9,45,51,52,44,3,14,67,47,62,50,0),(4302,'2015-03-14 14:56:59','2015-08-29 14:46:10',1,30002745,253,103,226,344,258,164,43,178,123,464,263,333,76,104,140,207,547,242,241,498,122,227,529,0),(4303,'2015-03-14 14:56:59','2015-08-29 14:46:10',1,30002816,161,444,335,498,392,207,191,283,232,242,184,214,655,485,658,537,473,147,149,203,76,296,107,0),(4304,'2015-03-14 14:56:59','2015-08-29 14:46:10',1,30000146,430,606,512,355,331,583,146,88,87,147,170,235,297,328,419,280,194,136,134,251,244,261,135,0),(4305,'2015-03-14 14:56:59','2015-08-29 14:46:10',1,30010141,111,26,56,65,124,68,104,181,39,99,110,24,131,54,59,84,47,20,0,66,24,60,54,0),(4306,'2015-03-14 14:56:59','2015-08-29 14:46:10',1,30004299,1,0,0,0,0,0,12,7,0,0,0,0,0,0,0,6,4,0,0,0,9,7,0,0),(4307,'2015-03-14 14:56:59','2015-08-29 14:46:10',1,30002215,41,65,60,189,56,29,2,35,17,171,162,50,59,61,16,31,127,0,180,185,10,33,72,0),(4308,'2015-03-14 14:56:59','2015-08-29 14:46:10',1,30000167,184,572,676,270,370,191,115,154,438,169,279,233,261,365,138,338,252,128,157,307,275,776,350,0),(4309,'2015-03-14 14:56:59','2015-08-29 14:46:10',1,30002405,0,0,1,27,77,0,1,1,0,0,0,0,2,42,18,32,29,0,0,0,23,0,128,0),(4310,'2015-03-14 14:56:59','2015-08-29 14:46:10',1,30004146,0,13,22,3,1,99,16,4,138,212,193,74,18,119,69,90,122,10,79,31,87,21,170,0),(4311,'2015-03-14 14:56:59','2015-08-29 14:46:10',1,30000059,98,56,171,8,26,122,94,0,83,106,40,169,24,242,168,78,127,119,115,39,240,77,52,0),(4312,'2015-03-14 14:56:59','2015-08-29 14:46:10',1,30003874,1,36,0,0,0,49,26,3,146,35,84,15,106,11,12,66,9,4,11,6,15,12,23,0),(4313,'2015-03-14 14:56:59','2015-08-29 14:46:10',1,30045322,81,750,490,87,196,773,47,119,72,419,544,538,117,127,153,235,157,461,655,32,429,230,108,0),(4314,'2015-03-14 14:56:59','2015-08-29 14:46:10',1,30001721,0,11,0,0,0,0,0,0,0,0,0,75,0,15,15,12,0,16,0,6,24,1,0,0),(4315,'2015-03-14 14:56:59','2015-08-29 14:46:10',1,30002783,396,559,362,414,279,363,290,447,354,394,346,315,931,531,406,323,833,313,257,367,298,551,345,0),(4316,'2015-03-14 14:56:59','2015-08-29 14:46:10',1,30002785,399,1065,964,791,605,450,647,569,145,316,361,546,1042,918,861,1030,566,497,613,450,630,523,522,0),(4317,'2015-03-14 14:56:59','2015-08-29 14:46:10',1,30005255,3,0,50,0,8,35,0,3,0,0,0,45,0,11,12,14,0,0,14,2,0,0,0,0),(4318,'2015-03-14 14:56:59','2015-08-29 14:46:10',1,30001442,3,8,26,2,47,0,49,40,102,110,126,11,2,0,0,11,4,0,7,0,85,29,51,0),(4319,'2015-03-14 14:56:59','2015-08-29 14:46:10',1,30001377,103,209,146,180,171,134,276,224,238,334,285,332,249,177,96,108,180,155,104,263,226,169,364,0),(4320,'2015-03-14 14:56:59','2015-08-29 14:46:10',1,30045310,8,12,5,3,2,2,3,6,23,7,0,9,9,7,6,0,16,2,8,8,94,43,28,0),(4321,'2015-03-14 14:56:59','2015-08-29 14:46:10',1,30000043,4,0,0,8,26,53,112,4,1,0,0,0,0,0,0,1,0,0,205,0,16,54,18,0),(4322,'2015-03-14 14:56:59','2015-08-29 14:46:10',1,30003584,0,14,0,0,0,0,1,0,0,0,0,0,0,0,0,0,29,0,37,87,0,0,0,0),(4323,'2015-03-14 14:56:59','2015-08-29 14:46:10',1,30003522,29,73,62,50,42,141,47,106,106,72,20,83,58,71,70,58,129,143,100,119,158,129,50,0),(4324,'2015-03-14 14:56:59','2015-08-29 14:46:10',1,30003074,24,122,34,172,154,110,33,11,9,114,29,38,123,70,79,75,59,61,0,22,127,90,67,0),(4325,'2015-03-14 14:56:59','2015-08-29 14:46:10',1,30002971,208,620,250,263,415,261,129,113,167,150,140,169,32,122,180,288,327,95,181,58,228,227,172,0),(4326,'2015-03-14 14:56:59','2015-08-29 14:46:10',1,30003931,1,13,4,134,9,0,2,9,0,0,18,20,0,61,0,0,0,46,58,40,38,79,26,0),(4327,'2015-03-14 14:56:59','2015-08-29 14:46:10',1,30000005,24,8,34,36,34,95,65,96,58,75,52,39,136,49,25,45,21,34,41,77,55,118,67,0),(4328,'2015-03-14 14:56:59','2015-08-29 14:46:10',1,30003097,7,0,105,1,113,2,11,5,19,44,30,3,82,7,73,72,2,0,95,72,203,49,29,0),(4329,'2015-03-14 14:56:59','2015-08-29 14:46:10',1,30003508,8,18,47,66,81,2,57,67,74,126,40,50,94,52,15,46,52,161,57,48,43,49,138,0),(4330,'2015-03-14 14:56:59','2015-08-29 14:46:10',1,30004270,55,0,36,43,48,0,81,0,0,8,8,0,51,0,0,0,5,27,0,0,0,9,107,0),(4331,'2015-03-14 14:56:59','2015-08-29 14:46:10',1,30003865,41,22,35,18,31,36,31,34,11,11,73,10,185,40,48,102,87,26,65,88,67,136,12,0),(4332,'2015-03-14 14:56:59','2015-03-14 14:56:59',1,30000991,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(4333,'2015-03-14 14:56:59','2015-03-14 14:56:59',1,30004218,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(4334,'2015-03-14 14:56:59','2015-08-29 14:46:10',1,30001296,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,0,0,0,0,0,1,0,0),(4335,'2015-03-14 14:56:59','2015-08-29 14:46:10',1,30005310,209,178,281,253,263,218,187,99,371,406,305,193,425,312,332,292,288,157,305,340,438,308,248,0),(4336,'2015-03-14 14:56:59','2015-08-29 14:46:10',1,30005063,8,4,28,0,0,17,0,52,0,11,1,17,0,0,0,0,0,0,0,0,12,0,0,0),(4337,'2015-03-14 14:56:59','2015-08-29 14:46:10',1,30002654,0,1,0,4,4,8,0,0,0,1,0,0,1,0,0,0,3,0,0,0,1,0,0,0),(4338,'2015-03-14 14:56:59','2015-08-29 14:46:10',1,30005322,188,203,194,142,75,118,59,295,269,558,446,191,259,199,89,235,370,132,273,264,563,327,279,0),(4339,'2015-03-14 14:56:59','2015-08-29 14:46:10',1,30003054,54,122,272,126,36,56,61,123,50,107,42,69,163,43,76,84,96,33,45,67,45,62,46,0),(4340,'2015-03-14 14:56:59','2015-08-29 14:46:10',1,30000692,6,0,0,4,12,0,9,51,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(4341,'2015-03-14 14:56:59','2015-08-29 14:46:10',1,30001314,0,0,0,0,14,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(4342,'2015-03-14 14:56:59','2015-08-29 14:46:10',1,30004139,1,26,28,2,0,0,0,19,0,12,9,0,2,0,0,21,61,0,0,0,0,43,9,0),(4343,'2015-03-14 14:56:59','2015-08-29 14:46:10',1,30001659,346,159,48,156,175,165,44,202,231,166,179,220,151,176,139,216,348,47,138,75,190,227,206,0),(4344,'2015-03-14 14:56:59','2015-08-29 14:46:10',1,30005042,241,48,148,263,221,70,105,115,71,295,360,228,140,252,206,234,145,109,107,114,166,126,232,0),(4345,'2015-03-14 14:56:59','2015-08-29 14:46:10',1,30003869,0,95,0,0,34,61,39,83,41,38,31,2,4,2,6,31,37,4,23,0,19,102,88,0),(4346,'2015-03-14 14:56:59','2015-08-29 14:46:10',1,30001657,253,400,500,103,203,169,249,193,245,750,707,606,405,246,358,621,362,471,622,789,741,423,435,0),(4347,'2015-03-14 14:56:59','2015-08-29 14:46:10',1,30002243,148,71,4,78,0,1,44,0,0,45,19,40,26,24,32,40,131,0,71,22,56,29,94,0),(4348,'2015-03-14 14:56:59','2015-08-29 14:46:10',1,30041672,5,0,0,98,171,7,0,0,47,0,0,0,41,2,53,53,19,0,12,140,29,33,8,0),(4349,'2015-03-14 14:56:59','2015-08-29 14:46:10',1,30001359,80,6,204,8,8,94,462,125,23,250,54,62,24,69,123,193,232,192,103,291,60,28,231,0),(4350,'2015-03-14 14:56:59','2015-08-29 14:46:10',1,30020141,105,337,332,119,109,222,118,90,179,171,361,212,139,187,187,241,166,222,183,291,203,315,261,0),(4351,'2015-03-14 14:56:59','2015-08-29 14:46:10',1,30000015,8,0,46,0,0,0,0,7,1,1,0,0,4,0,0,0,4,0,0,3,0,0,0,0),(4352,'2015-03-14 14:56:59','2015-08-29 14:46:10',1,30000103,4,63,106,322,286,73,39,218,38,88,97,81,0,52,47,111,62,112,76,0,4,64,5,0),(4353,'2015-03-14 14:56:59','2015-08-29 14:46:10',1,30004623,466,601,562,345,353,231,302,470,112,231,302,98,160,55,49,297,249,1,15,102,51,2,20,0),(4354,'2015-03-14 14:56:59','2015-08-29 14:46:10',1,30005222,22,52,113,64,86,54,75,9,37,97,39,8,24,124,32,0,49,61,7,56,18,72,75,0),(4355,'2015-03-14 14:56:59','2015-08-29 14:46:10',1,30003898,0,9,0,0,0,0,0,0,3,4,4,32,0,0,0,29,0,0,0,0,0,13,0,0),(4356,'2015-03-14 14:56:59','2015-08-29 14:46:10',1,30005278,0,14,0,0,0,0,3,0,0,0,0,0,2,0,0,3,103,0,0,0,0,0,4,0),(4357,'2015-03-14 14:56:59','2015-08-29 14:46:10',1,30005020,3,3,69,36,15,0,35,11,28,15,14,82,15,1,13,27,1,18,22,70,2,0,31,0),(4358,'2015-03-14 14:56:59','2015-08-29 14:46:10',1,30003654,0,8,0,0,0,0,0,0,0,0,0,0,64,0,0,0,0,0,0,5,0,0,0,0),(4359,'2015-03-14 14:56:59','2015-08-29 14:46:10',1,30002833,77,0,0,0,0,0,0,0,0,5,5,0,0,0,0,0,0,8,0,0,0,0,0,0),(4360,'2015-03-14 14:56:59','2015-03-14 14:56:59',1,30000670,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(4361,'2015-03-14 14:56:59','2015-03-14 14:56:59',1,30001098,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(4362,'2015-03-14 14:56:59','2015-08-29 14:46:10',1,30000868,650,217,357,501,616,210,389,233,455,282,132,399,104,80,114,268,381,3,193,152,82,93,321,0),(4363,'2015-03-14 14:56:59','2015-03-14 14:56:59',1,30002831,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(4364,'2015-03-14 14:56:59','2015-08-29 14:46:10',1,30002267,81,70,58,42,82,25,36,4,121,188,147,17,45,90,59,120,50,30,48,145,65,150,2,0),(4365,'2015-03-14 14:56:59','2015-08-29 14:46:10',1,30000097,24,0,0,0,0,1,0,1,1,0,0,0,5,0,34,55,24,27,1,0,0,132,1,0),(4366,'2015-03-14 14:56:59','2015-08-29 14:46:10',1,30004283,0,52,0,15,37,16,2,0,21,28,2,1,73,0,0,25,8,10,1,0,6,28,27,0),(4367,'2015-03-14 14:56:59','2015-08-29 14:46:10',1,30004150,203,64,7,165,131,154,90,9,2,36,38,41,178,75,175,115,68,1,12,87,12,67,103,0),(4368,'2015-03-14 14:56:59','2015-08-29 14:46:10',1,30005057,29,95,38,133,67,110,60,151,25,80,188,153,39,218,247,249,239,32,90,200,133,111,175,0),(4369,'2015-03-14 14:56:59','2015-08-29 14:46:10',1,30003477,135,3,0,7,8,0,0,0,34,4,23,106,1,8,0,0,0,0,8,0,0,0,4,0),(4370,'2015-03-14 14:56:59','2015-08-29 14:46:10',1,30004231,35,0,0,126,137,0,0,0,0,0,0,0,0,3,23,43,69,0,0,2,0,0,0,0),(4371,'2015-03-14 14:56:59','2015-08-29 14:46:10',1,30000054,65,0,21,67,119,17,226,4,24,69,220,0,55,76,75,4,21,66,12,19,71,66,61,0),(4372,'2015-03-14 14:56:59','2015-08-29 14:46:10',1,30005270,24,1,0,2,13,0,7,0,8,64,27,12,34,95,31,27,0,39,42,51,0,33,66,0),(4373,'2015-03-14 14:56:59','2015-08-29 14:46:10',1,30000014,0,0,0,0,0,0,26,0,0,0,0,0,0,0,0,0,0,5,0,0,0,4,91,0),(4374,'2015-03-14 14:56:59','2015-08-29 14:46:10',1,30005271,0,25,0,0,9,7,0,0,0,37,61,8,8,21,22,31,21,8,4,17,3,6,2,0),(4375,'2015-03-14 14:56:59','2015-08-29 14:46:10',1,30003498,1067,460,354,174,169,73,231,21,234,169,256,236,230,177,197,293,92,110,132,132,232,194,134,0),(4376,'2015-03-14 14:56:59','2015-08-29 14:46:10',1,30001739,82,0,0,0,15,0,5,11,25,6,6,1,0,21,20,20,0,118,26,95,16,47,75,0),(4377,'2015-03-14 14:56:59','2015-08-29 14:46:10',1,30000067,0,28,0,0,0,26,0,22,22,0,0,9,0,0,0,13,57,19,1,29,0,0,5,0),(4378,'2015-03-14 14:56:59','2015-08-29 14:46:10',1,30003500,21,94,50,43,100,29,7,0,41,57,174,40,228,52,20,17,98,9,90,27,180,233,46,0),(4379,'2015-03-14 14:56:59','2015-08-29 14:46:10',1,30002638,0,23,21,15,3,101,23,0,0,88,12,13,0,33,17,7,38,2,0,11,7,70,19,0),(4380,'2015-03-14 14:56:59','2015-08-29 14:46:10',1,30005276,0,0,1,0,0,0,1,0,0,75,75,0,42,32,1,1,0,0,0,0,0,0,0,0),(4381,'2015-03-14 14:56:59','2015-08-29 14:46:10',1,30002999,76,155,0,35,96,38,64,77,24,8,15,43,14,51,49,52,0,0,3,70,59,45,0,0),(4382,'2015-03-14 14:56:59','2015-08-29 14:46:10',1,30000779,46,42,8,5,5,0,15,11,4,0,0,0,0,4,0,0,0,0,0,0,0,0,0,0),(4383,'2015-03-14 14:56:59','2015-08-29 14:46:10',1,30000106,58,91,85,39,64,71,16,24,88,138,198,80,43,15,67,56,32,45,0,54,16,70,139,0),(4384,'2015-03-14 14:56:59','2015-08-29 14:46:10',1,30004155,96,83,106,63,35,106,20,37,164,169,152,136,157,167,183,77,175,103,95,172,180,91,101,0),(4385,'2015-03-14 14:56:59','2015-08-29 14:46:10',1,30004268,116,19,54,102,85,48,40,62,70,104,39,9,32,55,61,13,16,52,0,44,31,13,20,0),(4386,'2015-03-14 14:56:59','2015-08-29 14:46:10',1,30000011,60,0,0,80,2,0,0,0,99,143,31,0,362,0,0,0,0,0,0,14,0,160,0,0),(4387,'2015-03-14 14:56:59','2015-08-29 14:46:10',1,30005192,42,12,1,97,108,32,17,29,13,8,7,52,21,25,77,202,8,26,150,204,66,138,6,0),(4388,'2015-03-14 14:56:59','2015-08-29 14:46:10',1,30004278,0,75,0,0,0,0,0,0,0,0,0,0,2,0,1,1,8,0,0,0,0,0,107,0),(4389,'2015-03-14 14:56:59','2015-08-29 14:46:10',1,30005217,2800,714,1559,1210,1437,1637,2058,2780,3100,5000,4639,3500,4000,4239,3979,4320,5440,2260,1657,3298,4219,5018,4240,0),(4390,'2015-03-14 14:56:59','2015-08-29 14:46:10',1,30001673,68,144,152,201,113,307,131,72,491,371,389,268,409,342,220,268,272,315,258,307,213,447,473,0),(4391,'2015-03-14 14:56:59','2015-08-29 14:46:10',1,30000130,404,418,481,303,257,396,131,95,528,721,553,486,507,502,188,329,615,471,358,375,349,283,302,0),(4392,'2015-03-14 14:56:59','2015-08-29 14:46:10',1,30003725,371,4,177,13,288,145,175,127,151,112,71,89,49,33,7,30,95,0,18,120,66,70,89,0),(4393,'2015-03-14 14:56:59','2015-08-29 14:46:10',1,30004233,22,3,0,10,0,0,0,0,24,0,0,0,0,0,0,0,0,1,0,0,55,0,0,0),(4394,'2015-03-14 14:56:59','2015-08-29 14:46:10',1,30001338,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,8,0,0,0,0,0,0,0),(4395,'2015-03-14 14:56:59','2015-08-29 14:46:10',1,30005076,67,2,98,12,12,69,40,95,39,26,128,61,6,123,116,105,3,0,29,46,7,91,19,0),(4396,'2015-03-14 14:56:59','2015-08-29 14:46:10',1,30001667,30,53,35,28,49,97,0,12,0,3,8,76,77,62,75,21,158,31,23,82,15,28,40,0),(4397,'2015-03-14 14:56:59','2015-08-29 14:46:10',1,30002235,60,83,0,1,53,61,87,0,161,8,12,16,5,65,63,11,26,0,17,13,15,34,36,0),(4398,'2015-03-14 14:56:59','2015-08-29 14:46:10',1,30004135,89,67,4,26,7,99,25,0,46,29,0,98,53,0,0,97,47,23,34,94,0,83,7,0),(4399,'2015-03-14 14:56:59','2015-08-29 14:46:10',1,30002201,162,91,170,214,119,698,313,222,141,235,290,213,120,548,406,336,367,193,320,290,194,240,279,0),(4400,'2015-03-14 14:56:59','2015-08-29 14:46:10',1,30003728,79,111,113,128,274,218,27,103,401,176,164,195,23,61,391,398,94,17,160,103,27,160,344,0),(4401,'2015-03-14 14:56:59','2015-08-29 14:46:10',1,30005209,14,7,76,9,128,57,3,98,20,35,25,15,49,104,100,21,20,32,16,43,50,76,19,0),(4402,'2015-03-14 14:56:59','2015-08-29 14:46:10',1,30003484,9,0,0,0,0,0,0,0,17,0,0,0,0,0,28,30,39,0,6,1,0,0,8,0),(4403,'2015-03-14 14:56:59','2015-08-29 14:46:10',1,30003557,51,15,0,0,0,0,0,0,0,42,42,0,0,0,0,0,7,17,8,0,30,0,45,0),(4404,'2015-03-14 14:56:59','2015-08-29 14:46:10',1,30002959,94,116,35,3,8,40,39,4,6,24,16,13,8,10,11,19,20,5,1,3,16,0,2,0),(4405,'2015-03-14 14:56:59','2015-08-29 14:46:10',1,30005219,256,306,414,431,277,377,346,407,712,441,522,770,789,695,791,914,931,358,217,709,846,921,856,0),(4406,'2015-03-14 14:56:59','2015-08-29 14:46:10',1,30000179,194,104,268,137,94,84,131,78,65,211,221,125,136,273,269,242,481,45,215,99,187,118,532,0),(4407,'2015-03-14 14:56:59','2015-08-29 14:46:10',1,30002689,3,10,73,32,243,100,0,179,108,119,22,44,79,95,74,99,29,75,23,19,161,47,121,0),(4408,'2015-03-14 14:56:59','2015-08-29 14:46:10',1,30002195,87,150,128,85,90,70,24,176,99,104,90,127,263,297,261,271,296,79,11,62,1,156,112,0),(4409,'2015-03-14 14:56:59','2015-08-29 14:46:10',1,30005269,1432,1573,1409,1211,1198,1215,856,950,1958,1660,1760,1359,1618,2074,2489,2590,1996,920,1340,1316,2799,2457,1914,0),(4410,'2015-03-14 14:56:59','2015-08-29 14:46:10',1,30001729,46,165,143,87,68,38,71,168,112,127,142,38,120,132,141,90,72,74,171,91,134,106,138,0),(4411,'2015-03-14 14:56:59','2015-08-29 14:46:10',1,30002092,5,107,39,0,0,2,0,0,0,7,2,1,25,39,23,10,6,6,11,1,29,4,35,0),(4412,'2015-03-14 14:56:59','2015-08-29 14:46:10',1,30003540,15,19,77,71,16,48,41,51,15,26,100,35,0,37,38,5,1,7,0,0,3,0,0,0),(4413,'2015-03-14 14:56:59','2015-08-29 14:46:10',1,30002791,290,211,398,183,217,477,282,236,404,404,307,249,338,233,191,231,220,8,106,151,438,367,203,0),(4414,'2015-03-14 14:56:59','2015-08-29 14:46:10',1,30000127,204,246,146,100,94,91,161,51,99,130,127,212,212,238,177,148,182,276,52,249,203,271,97,0),(4415,'2015-03-14 14:56:59','2015-08-29 14:46:10',1,30002539,0,12,65,16,11,13,43,1,31,5,0,5,0,30,16,8,1,26,39,62,49,50,95,0),(4416,'2015-03-14 14:56:59','2015-08-29 14:46:10',1,30002521,74,20,140,42,18,57,61,108,12,46,90,147,134,40,58,98,135,118,97,86,118,73,48,0),(4417,'2015-03-14 14:56:59','2015-08-29 14:46:10',1,30002229,0,62,82,47,26,0,40,0,20,13,14,0,21,9,11,19,216,0,81,26,21,55,62,0),(4418,'2015-03-14 14:56:59','2015-08-29 14:46:10',1,30003406,35,9,82,96,15,41,0,21,41,47,1,32,0,115,88,54,93,0,84,13,3,121,62,0),(4419,'2015-03-14 14:56:59','2015-08-29 14:46:10',1,30002765,146,118,348,131,95,115,70,115,126,127,253,204,146,234,178,228,211,119,74,230,189,200,234,0),(4420,'2015-03-14 14:56:59','2015-08-29 14:46:10',1,30001699,128,142,246,210,216,206,195,67,150,381,469,141,107,218,205,178,286,68,32,912,988,1097,1259,0),(4421,'2015-03-14 14:56:59','2015-08-29 14:46:10',1,30001728,2,29,55,38,16,44,7,33,39,15,25,120,39,66,76,125,137,17,43,29,53,36,81,0),(4422,'2015-03-14 14:56:59','2015-03-14 14:56:59',1,30000571,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(4423,'2015-03-14 14:56:59','2015-03-14 14:56:59',1,30000436,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(4424,'2015-03-14 14:56:59','2015-08-29 14:46:10',1,30004164,0,91,0,185,6,0,0,0,0,43,21,0,0,0,0,0,0,0,0,0,0,0,87,0),(4425,'2015-03-14 14:56:59','2015-08-29 14:46:10',1,30002411,0,0,18,74,0,0,0,0,0,0,0,0,7,0,0,0,0,1,0,7,6,0,3,0),(4426,'2015-03-14 14:56:59','2015-08-29 14:46:10',1,30003964,0,0,0,0,0,0,0,0,0,53,1,0,0,0,0,0,0,0,0,0,0,0,0,0),(4427,'2015-03-14 14:56:59','2015-08-29 14:46:10',1,30000964,0,0,0,0,0,31,0,0,0,0,0,0,0,0,0,0,0,170,0,0,0,0,0,0),(4428,'2015-03-14 14:56:59','2015-08-29 14:46:10',1,30003798,96,280,226,114,118,151,117,98,25,205,88,157,164,180,187,236,137,181,139,101,216,257,268,0),(4429,'2015-03-14 14:56:59','2015-08-29 14:46:10',1,30000479,0,0,0,0,0,0,134,209,0,0,11,161,0,0,0,0,0,0,0,0,0,322,0,0),(4430,'2015-03-14 14:56:59','2015-08-29 14:46:10',1,30001780,0,0,0,0,0,0,0,0,21,234,630,702,0,45,55,168,529,0,0,0,0,364,781,0),(4431,'2015-03-14 14:56:59','2015-08-29 14:46:10',1,30001808,0,192,62,0,0,0,0,0,0,2,93,0,0,0,0,0,0,0,0,0,0,0,0,0),(4432,'2015-03-14 14:56:59','2015-03-14 14:56:59',1,30000763,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(4433,'2015-03-14 14:56:59','2015-08-29 14:46:10',1,30003152,173,0,120,0,0,0,98,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(4434,'2015-03-14 14:56:59','2015-08-29 14:46:10',1,30001220,0,0,52,0,0,0,0,0,0,0,0,54,0,0,0,0,0,0,0,5,0,0,0,0),(4435,'2015-03-14 14:56:59','2015-08-29 14:46:10',1,30000584,109,208,124,477,240,30,0,0,51,94,61,64,60,0,0,0,0,0,0,0,0,0,0,0),(4436,'2015-03-14 14:56:59','2015-08-29 14:46:10',1,30001363,336,451,320,199,157,258,492,431,432,531,512,556,812,586,868,1068,640,247,170,520,416,479,647,0),(4437,'2015-03-14 14:56:59','2015-08-29 14:46:10',1,30002237,11,0,0,17,17,0,0,0,22,59,85,0,48,0,0,0,0,0,0,0,0,0,0,0),(4438,'2015-03-14 14:56:59','2015-08-29 14:46:10',1,30004273,0,45,17,0,0,0,0,8,76,5,5,0,18,1,33,130,59,0,0,0,0,0,45,0),(4439,'2015-03-14 14:56:59','2015-08-29 14:46:10',1,30003511,35,7,0,125,124,16,48,54,182,103,83,14,175,39,32,26,67,77,71,48,112,127,45,0),(4440,'2015-03-14 14:56:59','2015-08-29 14:46:10',1,30003225,104,58,140,0,141,83,18,0,0,35,88,260,0,0,0,255,41,0,0,34,28,96,65,0),(4441,'2015-03-14 14:56:59','2015-08-29 14:46:10',1,30004099,45,6,40,139,55,51,1,32,204,158,43,159,38,24,34,34,5,6,60,13,19,68,76,0),(4442,'2015-03-14 14:56:59','2015-08-29 14:46:10',1,30000009,31,0,96,70,79,0,0,0,3,0,0,0,19,26,18,7,0,0,32,6,8,6,0,0),(4443,'2015-03-14 14:56:59','2015-08-29 14:46:10',1,30002983,11,0,0,0,0,34,0,0,1,0,0,6,4,27,0,0,0,49,56,52,0,0,0,0),(4444,'2015-03-14 14:56:59','2015-08-29 14:46:10',1,30005323,153,322,373,128,122,127,123,178,298,251,302,427,369,348,309,183,565,117,246,241,179,331,294,0),(4445,'2015-03-14 14:56:59','2015-08-29 14:46:10',1,30003510,18,228,38,62,161,20,36,114,185,80,45,134,96,86,142,294,204,17,47,55,211,132,101,0),(4446,'2015-03-14 14:56:59','2015-08-29 14:46:10',1,30000089,21,0,8,0,105,3,63,0,0,0,0,0,0,0,0,0,4,0,0,0,0,0,0,0),(4447,'2015-03-14 14:56:59','2015-08-29 14:46:10',1,30003070,0,1,5,67,0,35,14,10,15,0,0,0,0,86,178,114,15,16,2,2,0,0,34,0),(4448,'2015-03-14 14:56:59','2015-08-29 14:46:10',1,30002980,9,59,18,8,23,18,19,11,1,2,3,83,3,0,3,7,34,14,1,4,2,1,3,0),(4449,'2015-03-14 14:56:59','2015-08-29 14:46:10',1,30005218,575,450,521,396,341,153,377,383,458,519,341,340,480,720,493,356,661,228,497,529,415,762,577,0),(4450,'2015-03-14 14:56:59','2015-08-29 14:46:10',1,30000175,93,98,177,103,67,93,33,79,186,224,311,294,222,356,410,543,245,97,30,170,165,144,157,0),(4451,'2015-03-14 14:56:59','2015-08-29 14:46:10',1,30004272,8,0,88,0,7,0,0,8,43,2,27,0,0,0,0,0,0,0,0,0,26,0,0,0),(4452,'2015-03-14 14:56:59','2015-08-29 14:46:10',1,30001369,342,103,230,152,103,314,408,225,187,198,214,404,340,334,237,234,423,138,208,101,324,279,221,0),(4453,'2015-03-14 14:56:59','2015-08-29 14:46:10',1,30002575,56,67,0,0,0,0,0,1,0,20,0,35,0,54,3,3,0,15,67,7,3,0,0,0),(4454,'2015-03-14 14:56:59','2015-08-29 14:46:10',1,30005052,77,375,255,90,96,81,542,40,46,153,92,62,86,311,286,348,174,2,107,198,167,99,58,0),(4455,'2015-03-14 14:56:59','2015-08-29 14:46:10',1,30004292,52,0,0,2,2,0,0,0,0,9,0,0,33,0,0,0,0,129,76,0,0,75,9,0),(4456,'2015-03-14 14:56:59','2015-08-29 14:46:10',1,30002111,0,0,244,36,36,5,70,21,0,31,115,122,5,254,100,123,99,0,0,0,62,12,5,0),(4457,'2015-03-14 14:56:59','2015-08-29 14:46:10',1,30004570,0,0,0,0,0,0,0,0,80,14,0,0,0,103,71,24,0,0,0,0,0,0,0,0),(4458,'2015-03-14 14:56:59','2015-03-14 14:56:59',1,30001453,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(4459,'2015-03-14 14:56:59','2015-03-14 14:56:59',1,30001630,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(4460,'2015-03-14 14:56:59','2015-08-29 14:46:10',1,30005141,150,403,486,304,297,211,141,254,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(4461,'2015-03-14 14:56:59','2015-08-29 14:46:10',1,30000565,1,0,0,0,0,0,0,0,0,0,0,71,0,0,0,0,0,0,0,0,0,0,0,0),(4462,'2015-03-14 14:56:59','2015-08-29 14:46:10',1,30002422,0,0,0,0,0,0,9,230,0,0,0,121,0,0,0,0,76,0,0,0,0,0,0,0),(4463,'2015-03-14 14:56:59','2015-08-29 14:46:10',1,30001288,4,0,0,2,0,0,2,0,0,3,0,0,40,0,0,0,0,0,0,0,0,0,0,0),(4464,'2015-03-14 14:56:59','2015-08-29 14:46:10',1,30003794,96,206,150,62,80,134,43,104,82,204,372,241,107,223,201,137,136,96,76,156,123,117,207,0),(4465,'2015-03-14 14:56:59','2015-08-29 14:46:10',1,30002675,23,105,101,58,34,106,46,17,53,60,73,41,37,68,157,220,462,9,13,74,66,57,66,0),(4466,'2015-03-14 14:56:59','2015-08-29 14:46:10',1,30002696,15,62,140,222,236,88,69,91,82,162,107,61,233,264,209,71,33,12,31,88,113,84,131,0),(4467,'2015-03-14 14:56:59','2015-08-29 14:46:10',1,30002711,205,66,128,185,94,142,70,65,110,102,137,139,198,61,68,133,56,48,196,279,79,68,97,0),(4468,'2015-03-14 14:56:59','2015-08-29 14:46:10',1,30003376,64,201,60,39,127,139,35,102,44,108,141,95,143,187,329,240,210,74,36,53,203,94,110,0),(4469,'2015-03-14 14:56:59','2015-08-29 14:46:10',1,30005333,159,303,161,231,334,94,66,254,264,596,852,427,454,433,454,414,405,205,194,469,622,277,230,0),(4470,'2015-03-14 14:56:59','2015-08-29 14:46:10',1,30003593,12,197,148,48,50,192,0,133,5,31,35,67,51,53,53,135,55,171,0,0,105,33,5,0),(4471,'2015-03-14 14:56:59','2015-08-29 14:46:10',1,30003607,6,2,48,50,1,3,0,62,0,16,7,21,41,0,3,7,28,6,13,43,24,23,90,0),(4472,'2015-03-14 14:56:59','2015-08-29 14:46:10',1,30000086,26,53,107,0,0,27,1,43,24,15,16,41,67,36,70,44,0,37,6,41,83,59,5,0),(4473,'2015-03-14 14:56:59','2015-08-29 14:46:10',1,30002809,1,83,4,8,7,5,43,0,17,18,13,12,69,14,4,0,17,6,23,4,9,6,6,0),(4474,'2015-03-14 14:56:59','2015-08-29 14:46:10',1,30002200,359,143,317,137,182,424,69,45,331,432,289,481,630,340,597,593,421,136,162,527,309,318,302,0),(4475,'2015-03-14 14:56:59','2015-08-29 14:46:10',1,30004101,0,8,26,16,12,0,0,46,11,51,66,94,81,65,48,5,0,28,10,41,73,72,105,0),(4476,'2015-03-14 14:56:59','2015-08-29 14:46:10',1,30000944,0,0,0,0,0,0,0,0,0,0,0,28,6,0,0,0,60,31,7,6,0,0,1,0),(4477,'2015-03-14 14:56:59','2015-08-29 14:46:10',1,30002801,465,628,501,229,491,397,539,738,649,772,1101,1151,714,665,596,728,955,402,287,738,1044,1236,746,0),(4478,'2015-03-14 14:56:59','2015-08-29 14:46:10',1,30002445,101,161,113,535,533,248,123,0,0,832,896,657,0,0,0,16,148,0,0,0,0,255,81,0),(4479,'2015-03-14 14:56:59','2015-08-29 14:46:10',1,30001158,0,0,0,0,0,0,0,0,0,0,0,0,4,0,0,1,3,12,1,4,0,4,2,0),(4480,'2015-03-14 14:56:59','2015-08-29 14:46:10',1,30004377,3,0,0,0,77,0,0,0,0,0,7,3,494,0,52,203,665,0,0,0,99,422,1080,0),(4481,'2015-03-14 14:56:59','2015-08-29 14:46:10',1,30004758,0,0,0,0,0,0,0,1,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0),(4482,'2015-03-14 14:56:59','2015-08-29 14:46:10',1,30004484,0,0,364,432,364,332,0,94,37,317,511,616,304,143,415,823,255,34,0,12,867,1103,838,0),(4483,'2015-03-14 14:56:59','2015-08-29 14:46:10',1,30002835,0,0,0,0,0,67,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(4484,'2015-03-14 14:56:59','2015-08-29 14:46:10',1,30005174,0,0,0,0,0,0,0,0,0,0,0,0,0,58,71,20,0,0,0,0,0,0,0,0),(4485,'2015-03-14 14:56:59','2015-08-29 14:46:10',1,30000515,9,20,16,0,0,22,5,4,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(4486,'2015-03-14 14:56:59','2015-08-29 14:46:10',1,30003667,442,49,45,94,145,82,14,160,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(4487,'2015-03-14 14:56:59','2015-08-29 14:46:10',1,30005015,74,107,91,117,162,182,80,82,98,221,188,135,211,202,199,206,221,96,78,89,105,80,135,0),(4488,'2015-03-14 14:56:59','2015-08-29 14:46:10',1,30004143,26,3,36,20,21,20,0,0,77,40,0,12,115,171,47,0,0,9,0,0,0,228,38,0),(4489,'2015-03-14 14:56:59','2015-08-29 14:46:10',1,30003639,0,5,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,3,157,136,59,0,17,0),(4490,'2015-03-14 14:56:59','2015-08-29 14:46:10',1,30000488,0,0,0,0,0,60,0,0,0,0,0,0,0,0,0,0,35,0,0,0,0,0,0,0),(4491,'2015-03-14 14:56:59','2015-08-29 14:46:10',1,30001096,0,343,201,10,13,129,0,0,0,0,4,0,0,30,25,8,3,9,0,0,0,0,0,0),(4492,'2015-03-14 14:56:59','2015-08-29 14:46:10',1,30004211,148,0,0,0,0,3,2200,151,364,283,692,982,162,332,339,270,296,0,93,165,208,75,136,0),(4493,'2015-03-14 14:56:59','2015-08-29 14:46:10',1,30001151,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,14,0,0),(4494,'2015-03-14 14:56:59','2015-08-29 14:46:10',1,30001911,9,0,0,0,3,0,0,16,71,135,164,386,237,12,72,87,298,44,84,50,133,71,52,0),(4495,'2015-03-14 14:56:59','2015-08-29 14:46:10',1,30002890,0,0,0,0,0,0,35,0,0,137,0,197,0,119,246,167,343,0,0,0,445,0,258,0),(4496,'2015-03-14 14:56:59','2015-08-29 14:46:10',1,30004877,115,695,86,761,541,70,211,21,162,85,0,138,0,0,207,207,0,265,168,0,210,22,224,0),(4497,'2015-03-14 14:56:59','2015-03-14 14:56:59',1,30001633,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(4498,'2015-03-14 14:56:59','2015-08-29 14:46:10',1,30000261,21,0,0,0,0,72,260,51,0,0,5,90,0,32,63,93,228,23,46,27,46,0,360,0),(4499,'2015-03-14 14:56:59','2015-08-29 14:46:10',1,30003195,11,2,4,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(4500,'2015-03-14 14:56:59','2015-08-29 14:46:10',1,30002382,0,0,0,0,0,55,9,20,0,0,0,0,0,336,316,288,50,104,195,0,3,163,5,0),(4501,'2015-03-14 14:56:59','2015-08-29 14:46:10',1,30004748,0,0,0,0,0,0,0,0,0,0,58,18,0,0,0,35,0,0,11,50,0,2,65,0),(4502,'2015-03-14 14:56:59','2015-08-29 14:46:10',1,30004729,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,10,0,0,0,0,0,0,0),(4503,'2015-03-14 14:56:59','2015-08-29 14:46:10',1,30003673,0,0,0,50,28,0,0,0,0,0,0,0,0,0,0,0,0,0,46,36,0,0,0,0),(4504,'2015-03-14 14:56:59','2015-08-29 14:46:10',1,30003299,0,12,39,0,0,0,0,0,0,0,19,36,0,0,0,0,0,0,0,0,0,0,0,0),(4505,'2015-03-14 14:56:59','2015-08-29 14:46:10',1,30004745,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,57,0),(4506,'2015-03-14 14:56:59','2015-08-29 14:46:10',1,30001959,0,0,0,0,0,0,0,0,0,0,0,0,0,140,279,140,0,0,0,0,0,0,0,0),(4507,'2015-03-14 14:56:59','2015-03-14 14:56:59',1,30000330,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(4508,'2015-03-14 14:56:59','2015-08-29 14:46:10',1,30004352,404,344,179,237,181,91,376,526,0,0,0,0,0,32,99,88,0,41,62,0,0,0,51,0),(4509,'2015-03-14 14:56:59','2015-08-29 14:46:10',1,30003715,0,0,0,0,0,0,0,0,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0),(4510,'2015-03-14 14:56:59','2015-03-14 14:56:59',1,30001631,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(4511,'2015-03-14 14:56:59','2015-08-29 14:46:10',1,30004529,24,0,0,0,0,0,28,0,0,0,0,5,0,0,0,0,0,0,0,0,0,0,0,0),(4512,'2015-03-14 14:56:59','2015-03-14 14:56:59',1,30004676,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(4513,'2015-03-14 14:56:59','2015-08-29 14:46:10',1,30000303,53,31,0,11,44,56,165,122,5,0,0,51,0,154,239,114,22,246,171,0,60,0,45,0),(4514,'2015-03-14 14:56:59','2015-08-29 14:46:10',1,30001771,0,0,0,14,14,0,0,0,0,163,91,0,0,0,0,0,0,0,0,0,0,0,0,0),(4515,'2015-03-14 14:56:59','2015-08-29 14:46:10',1,30004842,0,0,0,0,0,0,0,0,0,0,4,5,18,7,0,0,0,0,0,0,0,0,0,0),(4516,'2015-03-14 14:56:59','2015-08-29 14:46:10',1,30003287,0,9,0,0,20,0,0,0,4,9,22,21,0,14,14,0,3,7,14,0,48,14,0,0),(4517,'2015-03-14 14:56:59','2015-08-29 14:46:10',1,30004735,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,53,0,0,0,0),(4518,'2015-03-14 14:56:59','2015-08-29 14:46:10',1,30004870,0,0,0,46,47,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(4519,'2015-03-14 14:56:59','2015-08-29 14:46:10',1,30001548,0,0,0,0,0,0,82,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0),(4520,'2015-03-14 14:56:59','2015-08-29 14:46:10',1,30001916,0,0,3,0,0,0,0,0,30,0,0,0,0,0,0,0,0,0,0,0,1,0,1,0),(4521,'2015-03-14 14:56:59','2015-08-29 14:46:10',1,30003943,0,0,0,0,0,0,21,0,0,0,1,0,16,2,0,0,0,0,0,0,0,0,0,0),(4522,'2015-03-14 14:56:59','2015-08-29 14:46:10',1,30003966,0,0,0,0,7,0,0,0,0,2,27,5,0,0,0,0,0,0,2,15,0,0,13,0),(4523,'2015-03-14 14:56:59','2015-08-29 14:46:10',1,30001228,0,0,33,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,6,0,7,28,0,0),(4524,'2015-03-14 14:56:59','2015-08-29 14:46:10',1,30002841,0,0,0,88,89,0,17,0,0,0,0,0,0,0,0,0,0,0,171,94,0,0,0,0),(4525,'2015-03-14 14:56:59','2015-08-29 14:46:10',1,30003465,31,54,3,1,0,28,0,23,1,0,0,0,9,1,2,16,0,0,6,27,0,25,1,0),(4526,'2015-03-14 14:56:59','2015-08-29 14:46:10',1,30005070,64,104,10,115,112,49,27,22,93,158,169,55,165,27,72,138,34,48,61,16,67,249,46,0),(4527,'2015-03-14 14:56:59','2015-08-29 14:46:10',1,30002100,0,0,57,4,34,1,4,89,55,2,3,1,33,2,2,11,19,60,13,41,3,10,11,0),(4528,'2015-03-14 14:56:59','2015-08-29 14:46:10',1,30005245,0,97,117,77,56,76,898,371,51,55,56,3,61,158,22,28,3,40,37,29,316,14,537,0),(4529,'2015-03-14 14:56:59','2015-08-29 14:46:10',1,30001447,158,181,54,30,23,111,87,58,9,0,3,12,44,14,2,0,45,19,31,16,119,0,123,0),(4530,'2015-03-14 14:56:59','2015-08-29 14:46:10',1,30005143,0,0,0,0,0,0,0,129,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(4531,'2015-03-14 14:56:59','2015-08-29 14:46:10',1,30003889,126,102,69,62,99,295,88,73,419,1348,1069,414,31,31,19,8,111,23,190,13,53,13,40,0),(4532,'2015-03-14 14:56:59','2015-08-29 14:46:10',1,30002813,5,9,5,29,23,10,3,9,14,11,12,142,3,34,79,56,3,0,8,29,9,14,81,0),(4533,'2015-03-14 14:56:59','2015-08-29 14:46:10',1,30003407,96,0,12,0,0,18,22,0,16,0,45,1,0,87,86,64,87,0,29,63,94,78,0,0),(4534,'2015-03-14 14:56:59','2015-08-29 14:46:10',1,30001437,0,0,0,50,78,0,0,0,42,118,29,42,100,40,84,71,35,19,0,16,1,3,87,0),(4535,'2015-03-14 14:56:59','2015-08-29 14:46:10',1,30003091,2,15,9,52,35,10,24,41,20,0,57,70,0,2,15,23,3,2,10,8,5,1,17,0),(4536,'2015-03-14 14:56:59','2015-08-29 14:46:10',1,30002812,140,16,0,0,0,38,9,0,12,0,0,2,0,4,3,7,4,37,10,82,32,57,47,0),(4537,'2015-03-14 14:56:59','2015-08-29 14:46:10',1,30000001,83,44,12,44,104,14,7,38,91,120,97,63,78,89,40,109,59,47,58,16,67,81,70,0),(4538,'2015-03-14 14:56:59','2015-08-29 14:46:10',1,30005199,86,198,159,150,108,128,87,89,154,100,179,125,232,187,193,259,254,101,180,173,372,186,151,0),(4539,'2015-03-14 14:56:59','2015-08-29 14:46:10',1,30002979,21,13,12,2,16,14,2,30,5,3,14,2,23,22,6,6,2,1,0,14,1,38,57,0),(4540,'2015-03-14 14:56:59','2015-08-29 14:46:10',1,30005205,67,246,28,132,199,99,18,52,61,16,16,12,100,44,61,73,75,46,273,147,41,53,67,0),(4541,'2015-03-14 14:56:59','2015-08-29 14:46:10',1,30001441,23,34,0,23,5,0,15,111,3,85,87,10,0,21,9,140,26,0,0,46,142,63,23,0),(4542,'2015-03-14 14:56:59','2015-08-29 14:46:10',1,30001703,20,48,3,35,84,230,128,70,79,57,86,98,339,411,321,282,177,201,186,322,160,208,90,0),(4543,'2015-03-14 14:56:59','2015-08-29 14:46:10',1,30002778,235,130,178,196,139,61,124,312,235,183,202,294,66,122,91,326,273,113,53,262,136,169,234,0),(4544,'2015-03-14 14:56:59','2015-08-29 14:46:10',1,30001671,170,192,132,111,100,102,85,143,138,211,149,238,284,511,310,227,228,266,151,282,261,167,192,0),(4545,'2015-03-14 14:56:59','2015-08-29 14:46:10',1,30002274,0,44,0,0,9,0,0,0,0,0,0,0,5,5,10,7,5,0,2,0,37,1,0,0),(4546,'2015-03-14 14:56:59','2015-08-29 14:46:10',1,30000195,13,0,0,9,9,0,37,0,2,132,120,36,0,0,0,0,2,0,0,0,45,1,110,0),(4547,'2015-03-14 14:56:59','2015-08-29 14:46:10',1,30004937,0,0,0,0,49,0,0,0,0,5,5,0,0,0,0,0,0,0,0,0,0,58,0,0),(4548,'2015-03-14 14:56:59','2015-03-14 14:56:59',1,30001051,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(4549,'2015-03-14 14:56:59','2015-08-29 14:46:10',1,30002502,105,205,226,74,48,17,21,144,0,70,67,0,45,0,0,5,596,4,0,0,200,39,476,0),(4550,'2015-03-14 14:56:59','2015-08-29 14:46:10',1,30005089,0,0,0,0,0,0,0,0,0,0,0,53,0,0,0,0,0,74,0,2,0,0,0,0),(4551,'2015-03-14 14:56:59','2015-08-29 14:46:10',1,30004638,0,151,0,0,0,27,0,0,0,0,9,136,0,0,0,4,0,5,4,5,2,6,0,0),(4552,'2015-03-14 14:56:59','2015-08-29 14:46:10',1,30003907,7,33,0,0,0,31,0,0,9,35,38,65,40,21,65,57,50,0,62,29,86,19,68,0),(4553,'2015-03-14 14:56:59','2015-08-29 14:46:10',1,30045350,25,0,0,11,3,19,23,2,47,20,28,36,43,4,2,4,31,3,47,11,29,16,12,0),(4554,'2015-03-14 14:56:59','2015-03-14 14:56:59',1,30003128,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(4555,'2015-03-14 14:56:59','2015-08-29 14:46:10',1,30005200,67,172,79,61,42,110,35,84,66,189,214,86,170,99,79,93,107,0,5,14,77,187,76,0),(4556,'2015-03-14 14:56:59','2015-08-29 14:46:10',1,30004158,67,66,83,2,0,17,57,103,8,0,94,100,137,175,85,31,218,130,197,30,18,15,58,0),(4557,'2015-03-14 14:56:59','2015-08-29 14:46:10',1,30001645,74,88,26,5,0,52,53,32,25,8,11,179,32,12,0,23,69,45,37,27,34,5,80,0),(4558,'2015-03-14 14:56:59','2015-08-29 14:46:10',1,30002763,94,101,44,152,28,41,41,13,186,184,148,56,56,24,78,103,88,97,45,31,56,27,36,0),(4559,'2015-03-14 14:56:59','2015-08-29 14:46:10',1,30002385,239,200,72,154,195,192,182,346,176,295,240,452,121,238,167,184,133,224,170,270,134,124,287,0),(4560,'2015-03-14 14:56:59','2015-08-29 14:46:10',1,30003507,44,292,55,34,86,39,0,60,0,25,0,93,2,122,97,59,80,99,120,165,152,26,35,0),(4561,'2015-03-14 14:56:59','2015-08-29 14:46:10',1,30001681,42,0,53,9,0,0,0,26,31,6,52,13,8,53,76,26,0,26,1,0,6,25,33,0),(4562,'2015-03-14 14:56:59','2015-08-29 14:46:10',1,30045335,0,0,0,3,26,30,1,2,20,0,3,22,6,0,0,0,0,12,10,0,0,7,19,0),(4563,'2015-03-14 14:56:59','2015-08-29 14:46:10',1,30000926,0,0,0,0,0,0,0,0,0,17,17,0,0,0,0,0,0,0,0,0,0,0,0,0),(4564,'2015-03-14 14:56:59','2015-08-29 14:46:10',1,30001733,0,3,81,60,25,15,0,0,0,29,78,0,4,1,4,3,0,36,0,0,0,0,0,0),(4565,'2015-03-14 14:56:59','2015-08-29 14:46:10',1,30002038,0,435,372,216,207,0,0,55,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(4566,'2015-03-14 14:56:59','2015-08-29 14:46:10',1,30001760,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,180,0,0,0,0,0,0),(4567,'2015-03-14 14:56:59','2015-08-29 14:46:10',1,30001842,29,59,11,4,5,59,78,0,92,68,49,54,92,61,45,17,6,5,26,32,64,96,86,0),(4568,'2015-03-14 14:56:59','2015-08-29 14:46:10',1,30003000,0,0,58,0,0,2,0,0,91,0,0,0,0,0,0,0,0,0,7,12,3,4,0,0),(4569,'2015-03-14 14:56:59','2015-08-29 14:46:10',1,30001677,223,26,223,145,229,79,150,395,121,177,151,240,247,404,245,223,55,25,140,112,178,112,102,0),(4570,'2015-03-14 14:56:59','2015-08-29 14:46:10',1,30002966,0,41,61,116,1,3,87,0,9,5,7,121,9,43,82,209,17,44,0,16,6,0,69,0),(4571,'2015-03-14 14:56:59','2015-08-29 14:46:10',1,30002226,12,0,35,0,0,29,0,49,24,74,131,40,4,44,98,65,100,0,21,122,53,127,23,0),(4572,'2015-03-14 14:56:59','2015-08-29 14:46:10',1,30002720,25,50,3,2,1,0,16,6,42,0,1,2,137,84,108,65,11,14,20,1,16,16,107,0),(4573,'2015-03-14 14:56:59','2015-08-29 14:46:10',1,30005314,28,155,149,37,47,94,0,49,80,262,228,75,5,8,15,147,32,53,117,25,74,162,44,0),(4574,'2015-03-14 14:56:59','2015-08-29 14:46:10',1,30000069,17,68,83,65,19,105,190,11,16,38,106,36,71,46,59,46,86,10,54,22,132,51,18,0),(4575,'2015-03-14 14:56:59','2015-03-14 14:56:59',1,30001464,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(4576,'2015-03-14 14:56:59','2015-03-14 14:56:59',1,30000352,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(4577,'2015-03-14 14:56:59','2015-08-29 14:46:10',1,30000076,7,223,78,8,1,16,141,4,259,36,30,132,96,119,141,136,241,27,74,112,98,80,26,0),(4578,'2015-03-14 14:56:59','2015-08-29 14:46:10',1,30005334,128,0,67,166,128,21,20,116,3,105,119,123,154,65,112,140,85,38,12,13,56,177,57,0),(4579,'2015-03-14 14:56:59','2015-08-29 14:46:10',1,30000100,41,0,17,3,43,0,117,0,0,0,27,0,0,0,0,0,2,8,97,0,0,52,0,0),(4580,'2015-03-14 14:56:59','2015-08-29 14:46:10',1,30003932,1,17,0,55,19,0,52,9,0,0,0,1,0,0,0,0,0,0,0,0,3,1,0,0),(4581,'2015-03-14 14:56:59','2015-08-29 14:46:10',1,30002784,882,418,351,603,312,387,370,378,538,641,793,641,463,262,437,499,381,460,678,624,516,345,522,0),(4582,'2015-03-14 14:56:59','2015-08-29 14:46:10',1,30001684,20,0,0,0,0,0,27,45,94,19,19,0,55,2,2,0,0,50,23,9,0,26,0,0),(4583,'2015-03-14 14:56:59','2015-08-29 14:46:10',1,30004298,76,17,7,1,2,0,10,16,1,18,79,24,56,0,0,0,33,0,0,0,0,3,0,0),(4584,'2015-03-14 14:56:59','2015-08-29 14:46:10',1,30001644,153,51,21,54,10,1,9,10,55,103,103,101,26,59,62,3,47,9,25,76,0,12,109,0),(4585,'2015-03-14 14:56:59','2015-08-29 14:46:10',1,30002474,0,0,0,62,14,64,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0),(4586,'2015-03-14 14:56:59','2015-03-14 14:56:59',1,30000742,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(4587,'2015-03-14 14:56:59','2015-08-29 14:46:10',1,30001908,79,62,76,17,18,63,0,0,4,0,0,0,0,73,37,0,0,0,173,12,0,0,0,0),(4588,'2015-03-14 14:56:59','2015-03-14 14:56:59',1,30002584,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(4589,'2015-03-14 14:56:59','2015-08-29 14:46:10',1,30004047,0,45,0,20,0,0,151,55,33,25,64,23,0,0,0,4,0,0,0,0,0,0,0,0),(4590,'2015-03-14 14:56:59','2015-08-29 14:46:10',1,30004960,18,0,17,73,23,0,215,9,0,0,0,0,0,0,0,0,0,0,0,0,0,0,301,0),(4591,'2015-03-14 14:56:59','2015-03-14 14:56:59',1,30001461,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(4592,'2015-03-14 14:56:59','2015-03-14 14:56:59',1,30001519,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(4593,'2015-03-14 14:56:59','2015-08-29 14:46:10',1,30001407,325,709,476,494,365,528,628,700,637,1296,1320,987,1254,1053,1063,1029,1155,317,731,1085,555,619,747,0),(4594,'2015-03-14 14:56:59','2015-08-29 14:46:10',1,30032505,0,78,102,106,27,8,0,22,0,43,71,86,8,2,43,42,72,0,129,150,63,74,89,0),(4595,'2015-03-14 14:56:59','2015-08-29 14:46:10',1,30002062,10,10,7,19,27,14,98,23,28,7,9,29,18,13,8,4,7,0,0,0,5,19,6,0),(4596,'2015-03-14 14:56:59','2015-08-29 14:46:10',1,30003383,0,0,0,8,8,238,25,0,8,69,29,14,109,59,0,0,0,76,0,14,0,14,97,0),(4597,'2015-03-14 14:56:59','2015-08-29 14:46:10',1,30003052,47,34,124,57,35,138,68,245,105,206,190,122,216,151,215,179,286,167,420,200,95,63,150,0),(4598,'2015-03-14 14:56:59','2015-08-29 14:46:10',1,30003436,18,190,67,22,29,53,100,21,31,67,73,78,43,173,206,241,98,117,108,46,78,182,282,0),(4599,'2015-03-14 14:56:59','2015-08-29 14:46:10',1,30002532,32,58,67,219,272,10,2,65,16,8,6,43,138,21,92,93,10,18,0,6,5,0,52,0),(4600,'2015-03-14 14:56:59','2015-08-29 14:46:10',1,30005212,0,0,3,0,34,0,8,5,0,17,9,25,153,0,0,0,83,14,46,7,6,1,1,0),(4601,'2015-03-14 14:56:59','2015-08-29 14:46:10',1,30001429,648,269,268,268,239,253,92,209,256,147,320,352,311,320,321,490,1089,433,347,567,559,582,667,0),(4602,'2015-03-14 14:56:59','2015-08-29 14:46:10',1,30003020,98,127,115,87,102,172,312,116,116,291,166,33,172,101,48,92,230,185,84,265,335,217,266,0),(4603,'2015-03-14 14:56:59','2015-08-29 14:46:10',1,30002191,104,219,105,242,136,196,115,93,24,243,170,204,220,307,227,164,227,143,144,154,167,204,125,0),(4604,'2015-03-14 14:56:59','2015-08-29 14:46:10',1,30003402,11,108,173,174,137,15,10,4,41,60,108,22,0,52,84,43,49,0,57,59,127,24,58,0),(4605,'2015-03-14 14:56:59','2015-08-29 14:46:10',1,30005301,189,76,152,107,123,215,9,124,76,71,142,66,113,150,119,85,142,107,42,140,28,187,121,0),(4606,'2015-03-14 14:56:59','2015-08-29 14:46:10',1,30003606,9,52,33,26,26,13,10,0,0,71,36,0,16,0,0,0,33,0,0,0,166,7,71,0),(4607,'2015-03-14 14:56:59','2015-08-29 14:46:10',1,30001127,0,0,0,0,0,0,0,0,0,5,0,0,0,0,0,0,0,0,0,0,0,0,23,0),(4608,'2015-03-14 14:56:59','2015-03-14 14:56:59',1,30002327,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(4609,'2015-03-14 14:56:59','2015-03-14 14:56:59',1,30000588,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(4610,'2015-03-14 14:56:59','2015-08-29 14:46:10',1,30004935,21,0,290,0,0,172,0,68,96,178,227,0,457,10,5,4,85,0,0,51,9,0,29,0),(4611,'2015-03-14 14:56:59','2015-08-29 14:46:10',1,30000641,0,0,0,0,0,0,0,0,0,0,22,19,0,0,0,0,0,0,0,0,0,0,0,0),(4612,'2015-03-14 14:56:59','2015-08-29 14:46:10',1,30004500,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,0,0,0,0,0,2,5,0),(4613,'2015-03-14 14:56:59','2015-08-29 14:46:10',1,30004452,137,0,0,0,0,0,0,105,0,0,0,0,0,0,0,0,0,0,0,4,0,0,0,0),(4614,'2015-03-14 14:56:59','2015-08-29 14:46:10',1,30005071,0,48,34,0,2,36,0,0,217,55,47,34,68,45,29,21,25,5,84,26,152,98,35,0),(4615,'2015-03-14 14:56:59','2015-08-29 14:46:10',1,30003431,105,51,144,45,105,19,15,97,30,94,126,149,279,118,193,171,76,95,51,27,95,180,50,0),(4616,'2015-03-14 14:56:59','2015-08-29 14:46:10',1,30002069,525,756,274,386,555,526,62,319,346,618,653,717,391,415,511,437,622,263,297,408,552,864,740,0),(4617,'2015-03-14 14:56:59','2015-08-29 14:46:10',1,30002562,136,171,11,116,80,182,35,224,17,91,94,20,34,121,47,75,122,121,16,179,123,115,46,0),(4618,'2015-03-14 14:56:59','2015-08-29 14:46:10',1,30000869,339,216,106,107,200,112,178,566,219,347,134,657,654,401,623,804,251,344,164,274,376,417,356,0),(4619,'2015-03-14 14:56:59','2015-08-29 14:46:10',1,30002668,111,45,75,146,82,73,35,107,92,161,120,95,117,172,184,108,3,166,108,11,29,101,85,0),(4620,'2015-03-14 14:56:59','2015-08-29 14:46:10',1,30042715,301,353,288,361,304,320,328,376,448,498,457,461,625,667,500,460,568,451,266,739,557,634,564,0),(4621,'2015-03-14 14:56:59','2015-08-29 14:46:10',1,30002508,97,176,184,272,156,58,54,273,319,243,264,128,392,307,302,350,227,123,154,134,216,127,512,0),(4622,'2015-03-14 14:56:59','2015-08-29 14:46:10',1,30004423,0,0,0,0,0,0,0,0,0,0,0,0,0,0,80,194,0,0,0,0,0,0,0,0),(4623,'2015-03-14 14:56:59','2015-08-29 14:46:10',1,30001375,145,268,234,441,391,318,275,353,328,246,261,292,520,352,436,477,498,179,419,590,672,715,431,0),(4624,'2015-03-14 14:56:59','2015-08-29 14:46:10',1,30001412,121,120,103,315,287,113,126,118,23,124,218,45,179,81,154,168,122,43,82,98,131,246,119,0),(4625,'2015-03-14 14:56:59','2015-08-29 14:46:10',1,30045327,323,312,175,305,234,224,181,396,220,132,117,269,355,343,428,438,206,171,284,122,438,454,353,0),(4626,'2015-03-14 14:56:59','2015-08-29 14:46:10',1,30000812,236,180,211,538,158,290,4,188,0,6,6,0,0,0,0,0,0,0,88,0,71,117,202,0),(4627,'2015-03-14 14:56:59','2015-08-29 14:46:10',1,30003733,0,16,33,0,0,32,105,0,248,154,72,67,259,196,259,331,411,225,427,231,174,191,106,0),(4628,'2015-03-14 14:56:59','2015-08-29 14:46:10',1,30003742,185,561,241,362,253,220,254,256,29,40,23,135,156,93,44,38,199,0,7,16,10,132,80,0),(4629,'2015-03-14 14:56:59','2015-08-29 14:46:10',1,30004634,453,878,323,85,201,476,67,124,0,0,0,52,202,132,0,0,0,102,0,0,7,74,331,0),(4630,'2015-03-14 14:56:59','2015-08-29 14:46:10',1,30004275,0,82,2,0,0,91,0,4,0,0,0,0,3,0,0,0,0,1,0,0,41,86,9,0),(4631,'2015-03-14 14:56:59','2015-08-29 14:46:10',1,30001379,258,323,157,295,292,266,227,236,388,317,362,318,176,362,378,323,291,157,255,402,516,330,194,0),(4632,'2015-03-14 14:56:59','2015-08-29 14:46:10',1,30002770,130,0,50,0,0,0,87,6,27,38,43,5,76,76,12,14,50,3,88,10,0,1,24,0),(4633,'2015-03-14 14:56:59','2015-08-29 14:46:10',1,30003064,190,102,99,280,280,27,0,47,175,59,103,55,73,55,15,2,0,0,99,176,83,148,6,0),(4634,'2015-03-14 14:56:59','2015-08-29 14:46:10',1,30004098,8,4,34,0,3,13,43,2,134,122,102,30,9,42,49,34,10,10,49,42,55,108,12,0),(4635,'2015-03-14 14:56:59','2015-08-29 14:46:10',1,30002086,41,0,0,0,1,0,0,16,14,55,18,30,53,0,6,28,21,16,12,6,23,26,54,0),(4636,'2015-03-14 14:56:59','2015-08-29 14:46:10',1,30000128,200,371,288,181,216,288,336,197,203,356,388,259,145,374,327,275,253,180,261,381,301,311,236,0),(4637,'2015-03-14 14:56:59','2015-08-29 14:46:10',1,30003958,0,0,0,74,0,134,60,0,0,0,0,0,0,0,0,0,0,0,0,13,0,0,0,0),(4638,'2015-03-14 14:56:59','2015-08-29 14:46:10',1,30002073,2200,2740,2460,2300,2200,1497,793,796,2534,2914,3718,2500,1693,1919,1920,1480,1569,803,972,1131,1398,1259,1108,0),(4639,'2015-03-14 14:56:59','2015-08-29 14:46:10',1,30000263,79,1,144,0,0,85,0,0,0,29,24,19,9,13,38,120,46,0,8,9,41,104,106,0),(4640,'2015-03-14 14:56:59','2015-08-29 14:46:10',1,30002614,245,37,71,45,0,0,0,108,0,0,0,0,0,0,0,0,0,0,0,0,234,67,38,0),(4641,'2015-03-14 14:56:59','2015-08-29 14:46:10',1,30003779,0,21,140,64,18,0,0,242,179,230,343,809,304,166,198,197,171,154,426,356,212,0,76,0),(4642,'2015-03-14 14:56:59','2015-08-29 14:46:10',1,30002901,303,183,77,220,168,0,464,104,3,94,390,484,16,0,0,0,566,46,4,30,44,28,63,0),(4643,'2015-03-14 14:56:59','2015-08-29 14:46:10',1,30003323,0,7,14,5,3,101,0,0,30,0,0,0,0,0,0,0,41,4,0,0,0,0,0,0),(4644,'2015-03-14 14:56:59','2015-08-29 14:46:10',1,30004844,0,68,0,0,0,0,7,20,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(4645,'2015-03-14 14:56:59','2015-08-29 14:46:10',1,30000485,0,0,0,0,0,0,0,0,0,65,14,0,1,40,69,150,99,21,110,358,35,123,69,0),(4646,'2015-03-14 14:56:59','2015-08-29 14:46:10',1,30002353,0,0,0,0,0,0,0,0,0,0,2,0,0,0,0,0,0,0,0,0,0,2,57,0),(4647,'2015-03-14 14:56:59','2015-08-29 14:46:10',1,30003891,257,137,13,124,66,39,40,0,44,10,23,138,133,63,63,45,55,28,12,0,162,0,84,0),(4648,'2015-03-14 14:56:59','2015-08-29 14:46:10',1,30000601,0,0,0,0,0,0,0,0,0,0,0,0,0,4,4,0,0,0,0,0,0,0,0,0),(4649,'2015-03-14 14:56:59','2015-08-29 14:46:10',1,30002494,790,386,643,199,272,459,124,114,233,216,378,549,51,0,0,3,0,0,0,0,159,56,311,0),(4650,'2015-03-14 14:56:59','2015-08-29 14:46:10',1,30000747,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,63,0,0,0),(4651,'2015-03-14 14:56:59','2015-08-29 14:46:10',1,30002957,10,26,2,26,7,38,10,8,7,1,7,46,6,9,9,2,28,5,0,1,10,10,5,0),(4652,'2015-03-14 14:56:59','2015-08-29 14:46:10',1,30005156,0,0,0,4,4,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(4653,'2015-03-14 14:56:59','2015-08-29 14:46:10',1,30004436,0,0,0,0,0,0,0,67,0,0,0,0,0,0,0,0,0,0,0,0,21,0,0,0),(4654,'2015-03-14 14:56:59','2015-08-29 14:46:10',1,30001788,0,0,0,0,0,0,0,0,0,181,212,5,165,54,123,273,347,0,0,0,0,0,0,0),(4655,'2015-03-14 14:56:59','2015-08-29 14:46:10',1,30000575,118,0,48,15,12,62,138,36,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(4656,'2015-03-14 14:56:59','2015-08-29 14:46:10',1,30003717,0,0,0,0,0,0,0,0,0,0,0,0,8,0,0,0,0,8,7,0,10,2,68,0),(4657,'2015-03-14 14:56:59','2015-08-29 14:46:10',1,30004024,62,162,213,1001,1400,401,1460,292,196,296,167,502,5,0,0,0,0,0,0,0,90,90,222,0),(4658,'2015-03-14 14:56:59','2015-08-29 14:46:10',1,30001997,109,201,305,152,143,211,61,0,0,51,0,4,0,55,0,13,0,0,33,0,0,0,34,0),(4659,'2015-03-14 14:56:59','2015-03-14 14:56:59',1,30000404,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(4660,'2015-03-14 14:56:59','2015-08-29 14:46:10',1,30000660,0,9,53,14,64,0,0,6,0,0,0,0,169,0,0,0,0,0,0,0,0,0,0,0),(4661,'2015-03-14 14:56:59','2015-03-14 14:56:59',1,30000394,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(4662,'2015-03-14 14:56:59','2015-08-29 14:46:10',1,30004439,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,17,0,1,69,0,0,0,0),(4663,'2015-03-14 14:56:59','2015-08-29 14:46:10',1,30002463,40,212,123,12,93,6,0,0,0,0,0,43,0,0,0,0,0,0,0,0,0,0,0,0),(4664,'2015-03-14 14:56:59','2015-08-29 14:46:10',1,30000493,0,0,0,0,0,0,0,0,0,0,0,0,0,134,88,0,0,0,0,0,0,0,0,0),(4665,'2015-03-14 14:56:59','2015-08-29 14:46:10',1,30003637,128,0,0,0,0,0,4,0,0,0,0,0,0,0,0,19,0,0,200,136,0,0,0,0),(4666,'2015-03-14 14:56:59','2015-03-14 14:56:59',1,30000459,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(4667,'2015-03-14 14:56:59','2015-08-29 14:46:10',1,30000629,0,0,0,155,28,129,0,0,0,0,0,0,0,0,0,0,0,0,0,0,10,0,0,0),(4668,'2015-03-14 14:56:59','2015-08-29 14:46:10',1,30001155,0,0,0,0,0,0,0,0,58,0,0,0,0,0,0,0,0,0,48,10,0,0,0,0),(4669,'2015-03-14 14:56:59','2015-03-14 14:56:59',1,30003240,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(4670,'2015-03-14 14:56:59','2015-08-29 14:46:10',1,30004594,482,0,0,184,168,0,401,521,0,0,0,0,56,6,0,18,0,41,0,0,0,55,70,0),(4671,'2015-03-14 14:56:59','2015-08-29 14:46:10',1,30002951,164,13,234,473,420,0,216,217,82,0,0,0,136,19,0,17,161,59,124,0,147,102,141,0),(4672,'2015-03-14 14:56:59','2015-08-29 14:46:10',1,30000765,4,96,0,112,0,201,66,95,99,165,17,88,0,0,0,0,0,0,0,74,0,0,0,0),(4673,'2015-03-14 14:56:59','2015-08-29 14:46:10',1,30000878,201,8,0,82,147,0,65,103,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(4674,'2015-03-14 14:56:59','2015-08-29 14:46:10',1,30005131,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,0,0,0,0,0,0,0),(4675,'2015-03-14 14:56:59','2015-08-29 14:46:10',1,30001865,0,0,0,0,0,0,0,0,0,0,0,0,0,2,2,0,0,0,0,0,0,0,0,0),(4676,'2015-03-14 14:56:59','2015-08-29 14:46:10',1,30003347,0,0,0,0,4,0,8,0,0,9,40,0,6,0,0,125,0,12,0,0,0,0,0,0),(4677,'2015-03-14 14:56:59','2015-08-29 14:46:10',1,30000514,0,13,157,0,0,74,19,2,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(4678,'2015-03-14 14:56:59','2015-08-29 14:46:10',1,30004441,0,0,0,0,0,0,0,56,0,3,79,74,0,0,0,0,0,0,0,0,0,0,101,0),(4679,'2015-03-14 14:56:59','2015-08-29 14:46:10',1,30001585,0,0,0,0,0,0,0,0,10,8,4,0,18,44,35,14,0,34,20,9,16,16,24,0),(4680,'2015-03-14 14:56:59','2015-08-29 14:46:10',1,30000555,13,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(4681,'2015-03-14 14:56:59','2015-03-14 14:56:59',1,30000329,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(4682,'2015-03-14 14:56:59','2015-08-29 14:46:10',1,30003623,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,71,0,0,0,0,0,0,0),(4683,'2015-03-14 14:56:59','2015-03-14 14:56:59',1,30000703,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(4684,'2015-03-14 14:56:59','2015-08-29 14:46:10',1,30001898,0,0,0,0,0,0,0,1,4,0,0,0,0,3,0,0,37,0,0,0,0,42,0,0),(4685,'2015-03-14 14:56:59','2015-03-14 14:56:59',1,30004834,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(4686,'2015-03-14 14:56:59','2015-08-29 14:46:10',1,30000948,0,40,56,0,9,17,17,96,13,21,35,43,0,10,10,0,4,0,12,84,0,0,0,0),(4687,'2015-03-14 14:56:59','2015-08-29 14:46:10',1,30002608,50,32,180,241,299,78,150,6,0,0,0,3,0,0,0,0,0,0,0,0,0,104,0,0),(4688,'2015-03-14 14:56:59','2015-08-29 14:46:10',1,30003372,0,0,47,0,0,0,33,107,0,0,0,0,3,59,17,0,0,0,0,0,1,0,7,0),(4689,'2015-03-14 14:56:59','2015-03-14 14:56:59',1,30005126,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(4690,'2015-03-14 14:56:59','2015-08-29 14:46:10',1,30003663,4,59,57,0,0,0,0,63,0,0,0,0,40,55,21,1,0,0,0,0,0,0,0,0),(4691,'2015-03-14 14:56:59','2015-08-29 14:46:10',1,30000210,2,0,0,85,0,0,0,0,142,63,137,182,0,7,30,84,8,0,0,4,0,0,0,0),(4692,'2015-03-14 14:56:59','2015-08-29 14:46:10',1,30001927,50,198,1,1,47,0,91,196,95,33,24,516,192,63,75,82,28,316,194,74,482,142,50,0),(4693,'2015-03-14 14:56:59','2015-08-29 14:46:10',1,30004074,0,0,0,0,0,0,0,30,0,0,0,0,0,0,0,0,0,19,72,0,0,0,0,0),(4694,'2015-03-14 14:56:59','2015-08-29 14:46:10',1,30000527,0,164,131,0,0,38,59,124,0,64,223,424,0,0,0,0,27,0,0,0,145,760,114,0),(4695,'2015-03-14 14:56:59','2015-08-29 14:46:10',1,30002488,59,92,18,153,263,0,0,80,0,0,0,27,0,82,11,0,0,0,0,0,0,33,0,0),(4696,'2015-03-14 14:56:59','2015-08-29 14:46:10',1,30000693,18,3,0,4,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(4697,'2015-03-14 14:56:59','2015-08-29 14:46:10',1,30004202,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,78,0),(4698,'2015-03-14 14:56:59','2015-08-29 14:46:10',1,30002164,0,153,6,81,344,0,277,106,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(4699,'2015-03-14 14:56:59','2015-03-14 14:56:59',1,30000427,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(4700,'2015-03-14 14:56:59','2015-08-29 14:46:10',1,30000644,0,0,26,0,0,96,0,3,0,0,0,0,0,0,0,0,0,0,0,0,83,88,0,0),(4701,'2015-03-14 14:56:59','2015-08-29 14:46:10',1,30003227,70,0,0,0,0,0,0,0,0,0,79,105,0,0,0,0,0,0,0,0,0,0,0,0),(4702,'2015-03-14 14:56:59','2015-08-29 14:46:10',1,30002166,126,0,0,44,26,1,0,0,0,97,0,0,0,0,0,0,0,0,0,0,0,19,54,0),(4703,'2015-03-14 14:56:59','2015-03-14 14:56:59',1,30000419,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(4704,'2015-03-14 14:56:59','2015-08-29 14:46:10',1,30004685,0,0,0,0,0,0,121,164,0,115,123,0,0,125,52,0,0,0,122,168,0,0,0,0),(4705,'2015-03-14 14:56:59','2015-08-29 14:46:10',1,30002991,167,83,80,26,21,35,50,51,67,0,82,137,0,13,0,44,34,72,214,55,48,63,58,0),(4706,'2015-03-14 14:56:59','2015-08-29 14:46:10',1,30001797,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,12,21,4,0),(4707,'2015-03-14 14:56:59','2015-08-29 14:46:10',1,30002101,1,0,17,7,7,15,8,15,45,12,18,25,23,47,52,49,37,97,39,24,10,23,53,0),(4708,'2015-03-14 14:56:59','2015-08-29 14:46:10',1,30004807,0,0,0,0,0,0,0,0,0,0,0,112,0,0,0,0,54,0,0,0,0,0,0,0),(4709,'2015-03-14 14:56:59','2015-08-29 14:46:10',1,30004091,191,150,126,143,152,62,76,98,233,182,115,148,477,155,194,172,343,80,66,218,243,150,15,0),(4710,'2015-03-14 14:56:59','2015-08-29 14:46:10',1,30000118,0,5,15,0,7,56,0,0,57,34,17,2,2,21,32,32,0,0,1,0,14,0,24,0),(4711,'2015-03-14 14:56:59','2015-08-29 14:46:10',1,30002361,3,69,19,58,48,0,0,0,0,0,0,0,3,0,0,0,4,0,1,144,0,0,0,0),(4712,'2015-03-14 14:56:59','2015-08-29 14:46:10',1,30004602,0,0,0,0,0,0,0,0,0,0,0,0,0,0,3,3,0,0,0,0,0,0,0,0),(4713,'2015-03-14 14:56:59','2015-08-29 14:46:10',1,30004349,105,0,236,0,0,0,75,0,0,0,39,345,0,255,253,407,168,0,0,0,0,291,105,0),(4714,'2015-03-14 14:56:59','2015-08-29 14:46:10',1,30004463,165,355,380,622,187,0,0,0,0,0,37,75,81,17,64,119,0,0,0,0,18,75,0,0),(4715,'2015-03-14 14:56:59','2015-03-14 14:56:59',1,30001465,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(4716,'2015-03-14 14:56:59','2015-08-29 14:46:10',1,30000114,5,0,0,0,0,50,9,0,0,0,4,12,1,0,13,20,7,0,0,0,0,6,6,0),(4717,'2015-03-14 14:56:59','2015-08-29 14:46:10',1,30002473,0,0,0,0,0,0,0,0,54,0,0,0,0,91,0,0,0,84,5,0,28,63,0,0),(4718,'2015-03-14 14:56:59','2015-08-29 14:46:10',1,30001813,1509,99,73,0,0,0,226,1073,0,0,0,0,0,0,0,0,0,497,186,0,0,82,0,0),(4719,'2015-03-14 14:56:59','2015-03-14 14:56:59',1,30001618,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(4720,'2015-03-14 14:56:59','2015-08-29 14:46:10',1,30002024,1,0,0,0,0,16,91,0,17,47,0,0,5,0,0,0,0,0,0,0,0,0,0,0),(4721,'2015-03-14 14:56:59','2015-08-29 14:46:10',1,30001244,0,0,0,0,0,0,0,0,80,0,0,37,0,35,54,69,0,10,38,44,1,43,0,0),(4722,'2015-03-14 14:56:59','2015-08-29 14:46:10',1,30002209,64,21,73,10,8,0,152,0,30,27,11,30,97,134,146,72,10,62,62,42,72,30,233,0),(4723,'2015-03-14 14:56:59','2015-08-29 14:46:10',1,30045321,93,155,138,239,286,208,534,145,418,286,417,382,219,437,284,136,211,214,549,698,414,647,474,0),(4724,'2015-03-14 14:56:59','2015-08-29 14:46:10',1,30000201,175,78,115,38,54,83,26,95,126,102,162,116,122,182,198,301,216,147,110,110,298,141,365,0),(4725,'2015-03-14 14:56:59','2015-08-29 14:46:10',1,30000997,70,0,0,0,0,0,0,0,0,0,0,54,0,0,0,0,0,0,0,0,0,0,0,0),(4726,'2015-03-14 14:56:59','2015-08-29 14:46:10',1,30004404,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,0,0,0,0,0,0,0,0),(4727,'2015-03-14 14:56:59','2015-03-14 14:56:59',1,30000819,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(4728,'2015-03-14 14:56:59','2015-08-29 14:46:10',1,30004245,23,0,0,0,0,0,104,33,28,79,111,0,0,4,4,0,10,0,0,0,8,19,125,0),(4729,'2015-03-14 14:56:59','2015-08-29 14:46:10',1,30002825,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,202,4,0,0,0),(4730,'2015-03-14 14:56:59','2015-08-29 14:46:10',1,30002768,147,174,139,261,297,142,294,145,72,190,258,158,99,265,211,105,75,124,41,61,131,204,369,0),(4731,'2015-03-14 14:56:59','2015-08-29 14:46:10',1,30002956,875,310,245,683,658,0,566,1120,865,974,515,382,785,932,807,485,1039,879,565,398,596,1335,501,0),(4732,'2015-03-14 14:56:59','2015-08-29 14:46:10',1,30001368,393,295,335,101,49,233,148,95,61,253,244,307,156,223,226,208,328,133,98,146,55,199,262,0),(4733,'2015-03-14 14:56:59','2015-08-29 14:46:10',1,30000197,0,4,0,2,0,27,0,1,0,20,22,4,0,0,32,32,0,27,1,0,0,0,0,0),(4734,'2015-03-14 14:56:59','2015-08-29 14:46:10',1,30004922,31,27,165,59,60,49,204,80,0,0,4,0,0,0,99,250,28,0,0,0,65,0,50,0),(4735,'2015-03-14 14:56:59','2015-08-29 14:46:10',1,30001821,0,0,0,0,0,0,4,0,0,0,0,27,0,0,0,0,0,0,0,0,0,0,0,0),(4736,'2015-03-14 14:56:59','2015-08-29 14:46:10',1,30002503,158,95,65,193,209,314,705,116,307,640,678,239,0,0,0,0,0,38,0,0,111,0,403,0),(4737,'2015-03-14 14:56:59','2015-08-29 14:46:10',1,30001432,191,49,146,112,34,73,26,45,84,242,185,155,37,143,320,223,119,62,6,179,90,260,400,0),(4738,'2015-03-14 14:56:59','2015-08-29 14:46:10',1,30004779,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,0,0,0,0,0,0,0),(4739,'2015-03-14 14:56:59','2015-08-29 14:46:10',1,30001854,0,140,0,34,35,0,0,5,0,18,68,0,76,87,109,78,30,114,69,100,59,44,0,0),(4740,'2015-03-14 14:56:59','2015-08-29 14:46:10',1,30003352,82,0,10,0,0,9,0,15,44,0,0,0,0,0,0,0,0,0,0,40,0,0,9,0),(4741,'2015-03-14 14:56:59','2015-08-29 14:46:10',1,30002504,568,0,387,210,321,103,85,362,368,107,158,249,286,0,0,0,259,339,177,452,121,8,31,0),(4742,'2015-03-14 14:56:59','2015-08-29 14:46:10',1,30003235,0,0,0,0,0,0,0,0,10,229,416,61,0,0,0,0,0,0,0,0,3,0,0,0),(4743,'2015-03-14 14:56:59','2015-08-29 14:46:10',1,30000229,6,85,0,0,0,1,17,50,0,0,0,0,0,0,1,1,0,0,0,12,0,0,0,0),(4744,'2015-03-14 14:56:59','2015-08-29 14:46:10',1,30004706,0,0,0,51,66,0,0,1,0,0,0,0,28,47,47,0,36,0,0,0,5,16,10,0),(4745,'2015-03-14 14:56:59','2015-08-29 14:46:10',1,30001735,69,105,20,66,140,48,73,69,101,76,31,70,15,38,41,68,15,10,77,16,30,3,13,0),(4746,'2015-03-14 14:56:59','2015-08-29 14:46:10',1,30000101,21,32,99,146,25,83,87,0,30,7,59,57,0,81,146,210,212,11,18,18,5,115,1,0),(4747,'2015-03-14 14:56:59','2015-08-29 14:46:10',1,30002047,0,54,0,0,0,0,0,0,0,0,0,0,0,0,0,0,79,0,0,0,0,36,0,0),(4748,'2015-03-14 14:56:59','2015-08-29 14:46:10',1,30002083,0,0,0,0,0,0,0,1,16,6,19,11,15,10,8,14,41,10,10,10,22,28,45,0),(4749,'2015-03-14 14:56:59','2015-08-29 14:46:10',1,30030141,644,712,860,684,614,656,818,295,664,990,1013,884,1003,1385,1412,1271,996,603,989,997,981,899,693,0),(4750,'2015-03-14 14:56:59','2015-08-29 14:46:10',1,30001875,0,1,0,0,0,0,0,0,79,0,0,1,120,97,139,259,165,0,84,62,156,234,198,0),(4751,'2015-03-14 14:56:59','2015-08-29 14:46:10',1,30002824,0,0,0,0,0,0,0,68,0,0,0,0,0,2,2,0,0,0,0,0,0,0,0,0),(4752,'2015-03-14 14:56:59','2015-08-29 14:46:10',1,30002955,554,177,301,45,0,946,1060,100,573,821,803,1065,197,740,926,943,576,0,465,796,882,781,820,0),(4753,'2015-03-14 14:56:59','2015-08-29 14:46:10',1,30002610,0,0,0,0,0,0,43,42,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(4754,'2015-03-14 14:56:59','2015-08-29 14:46:10',1,30000177,197,14,62,233,238,83,68,35,55,124,174,200,175,138,167,229,227,1,81,124,253,264,165,0),(4755,'2015-03-14 14:56:59','2015-08-29 14:46:10',1,30003005,0,138,72,32,32,0,0,27,0,41,7,0,35,7,7,1,39,78,71,79,2,66,86,0),(4756,'2015-03-14 14:56:59','2015-08-29 14:46:10',1,30001899,0,0,0,0,0,0,58,0,0,0,1,0,1,0,0,0,0,0,6,8,0,0,0,0),(4757,'2015-03-14 14:56:59','2015-08-29 14:46:10',1,30000313,0,43,94,0,0,0,0,0,0,0,0,0,0,0,0,0,0,10,51,42,30,13,0,0),(4758,'2015-03-14 14:56:59','2015-08-29 14:46:10',1,30001234,0,0,0,0,0,45,161,30,0,0,0,0,0,0,2,6,0,0,0,0,0,0,4,0),(4759,'2015-03-14 14:56:59','2015-08-29 14:46:10',1,30003004,15,42,82,66,92,9,7,58,7,21,93,67,28,4,1,7,75,0,18,56,16,2,38,0),(4760,'2015-03-14 14:56:59','2015-08-29 14:46:10',1,30003298,0,1,0,4,0,0,0,0,1,0,15,21,0,0,26,69,0,18,0,0,0,0,0,0),(4761,'2015-03-14 14:56:59','2015-03-14 14:56:59',1,30000558,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(4762,'2015-03-14 14:56:59','2015-08-29 14:46:10',1,30000911,0,5,0,0,0,0,135,0,0,0,0,0,0,7,0,0,0,0,0,0,0,0,0,0),(4763,'2015-03-14 14:56:59','2015-08-29 14:46:10',1,30000858,0,4,16,0,21,0,7,11,0,0,0,0,0,0,6,6,0,3,0,0,120,7,0,0),(4764,'2015-03-14 14:56:59','2015-08-29 14:46:10',1,30000184,344,361,354,421,225,286,393,272,569,593,529,812,629,934,859,551,794,141,358,474,677,734,608,0),(4765,'2015-03-14 14:56:59','2015-08-29 14:46:10',1,30001409,697,632,798,745,631,741,570,467,792,533,530,793,488,747,712,707,800,442,653,635,669,642,771,0),(4766,'2015-03-14 14:56:59','2015-08-29 14:46:10',1,30000282,3,0,54,7,0,0,328,14,0,0,19,0,0,0,0,0,0,9,0,7,98,5,4,0),(4767,'2015-03-14 14:56:59','2015-08-29 14:46:10',1,30003481,0,0,0,8,0,0,0,1,8,5,0,0,0,0,0,55,2,9,0,0,0,0,27,0),(4768,'2015-03-14 14:56:59','2015-08-29 14:46:10',1,30002707,0,11,37,91,25,159,48,35,14,24,24,50,3,39,61,80,10,38,0,87,73,11,51,0),(4769,'2015-03-14 14:56:59','2015-08-29 14:46:10',1,30002413,38,26,3,139,38,0,111,0,0,1,1,0,16,0,0,0,0,0,166,6,0,0,52,0),(4770,'2015-03-14 14:56:59','2015-03-14 14:56:59',1,30000965,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(4771,'2015-03-14 14:56:59','2015-08-29 14:46:10',1,30001679,116,83,38,155,126,27,65,15,161,18,29,60,148,4,45,100,239,9,130,52,176,224,115,0),(4772,'2015-03-14 14:56:59','2015-08-29 14:46:10',1,30000129,173,434,317,207,233,151,468,137,380,318,330,351,533,358,382,315,213,109,163,243,83,479,211,0),(4773,'2015-03-14 14:56:59','2015-08-29 14:46:10',1,30001816,49,0,65,0,0,0,0,0,0,0,0,0,0,66,23,0,124,0,0,0,0,21,0,0),(4774,'2015-03-14 14:56:59','2015-08-29 14:46:10',1,30004495,0,0,0,0,0,0,0,0,0,0,0,0,0,2,4,7,0,0,0,0,0,0,0,0),(4775,'2015-03-14 14:56:59','2015-08-29 14:46:10',1,30001366,831,843,982,730,639,358,587,629,614,601,624,722,578,812,955,924,502,323,270,444,614,359,661,0),(4776,'2015-03-14 14:56:59','2015-08-29 14:46:10',1,30002814,124,196,10,119,42,122,129,301,29,167,128,73,112,325,112,105,390,133,178,221,243,142,336,0),(4777,'2015-03-14 14:56:59','2015-08-29 14:46:10',1,30000151,1260,208,234,506,432,333,419,275,793,663,613,850,604,846,722,681,696,907,724,550,1028,1299,895,0),(4778,'2015-03-14 14:56:59','2015-03-14 14:56:59',1,30001634,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(4779,'2015-03-14 14:56:59','2015-08-29 14:46:10',1,30003799,92,13,116,14,57,41,1,10,30,47,70,76,63,55,61,58,108,28,29,84,40,66,152,0),(4780,'2015-03-14 14:56:59','2015-08-29 14:46:10',1,30003043,54,110,56,158,83,62,4,181,42,12,29,6,69,75,55,39,62,90,18,42,29,119,86,0),(4781,'2015-03-14 14:56:59','2015-08-29 14:46:10',1,30000037,5,0,2,0,0,0,1,4,4,3,8,2,0,2,2,1,3,0,3,3,9,0,1,0),(4782,'2015-03-14 14:56:59','2015-08-29 14:46:10',1,30002998,0,9,18,8,40,27,86,91,32,28,239,101,1,41,67,37,79,6,2,59,9,106,157,0),(4783,'2015-03-14 14:56:59','2015-08-29 14:46:10',1,30003901,0,1,0,25,25,8,0,0,0,0,0,0,0,0,0,0,75,0,0,0,0,0,0,0),(4784,'2015-03-14 14:56:59','2015-08-29 14:46:10',1,30001208,220,73,194,311,223,208,142,104,143,112,0,7,5,176,110,33,0,46,0,4,150,101,19,0),(4785,'2015-03-14 14:56:59','2015-08-29 14:46:10',1,30004310,0,237,439,96,75,171,0,0,16,42,0,73,0,0,0,0,0,37,0,0,0,0,0,0),(4786,'2015-03-14 14:56:59','2015-08-29 14:46:10',1,30003955,67,0,116,25,25,0,93,48,6,0,56,0,0,0,0,0,0,0,0,0,0,0,0,0),(4787,'2015-03-14 14:56:59','2015-08-29 14:46:10',1,30004938,0,103,0,0,0,0,101,38,127,257,186,261,48,0,0,0,560,0,5,27,0,0,0,0),(4788,'2015-03-14 14:56:59','2015-08-29 14:46:10',1,30001966,5,0,0,8,3,0,4,9,3,2,1,6,0,0,0,4,3,0,0,0,7,2,160,0),(4789,'2015-03-14 14:56:59','2015-08-29 14:46:10',1,30040141,494,200,162,534,462,128,98,97,460,233,203,484,224,256,309,333,410,97,183,135,188,303,430,0),(4790,'2015-03-14 14:56:59','2015-08-29 14:46:10',1,30002070,305,380,429,588,383,335,685,386,392,602,704,490,416,581,548,709,325,267,559,424,762,443,553,0),(4791,'2015-03-14 14:56:59','2015-08-29 14:46:10',1,30000139,489,462,129,308,244,300,229,236,284,377,374,221,332,227,360,485,384,36,86,375,265,273,245,0),(4792,'2015-03-14 14:56:59','2015-08-29 14:46:10',1,30003417,41,12,43,0,0,65,1,5,12,99,92,157,197,72,101,108,56,42,149,173,43,7,96,0),(4793,'2015-03-14 14:56:59','2015-08-29 14:46:10',1,30002755,228,14,254,187,88,141,48,281,194,275,301,257,75,139,118,311,92,39,106,87,243,114,198,0),(4794,'2015-03-14 14:56:59','2015-03-14 14:56:59',1,30000382,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(4795,'2015-03-14 14:56:59','2015-08-29 14:46:10',1,30000068,2,0,95,210,179,2,0,28,56,21,20,206,12,3,33,35,185,1,0,4,146,58,7,0),(4796,'2015-03-14 14:56:59','2015-08-29 14:46:10',1,30002987,1,4,0,0,2,0,0,35,4,2,1,0,98,0,2,47,0,17,21,0,0,0,0,0),(4797,'2015-03-14 14:56:59','2015-08-29 14:46:10',1,30042505,372,178,182,159,175,211,84,33,404,383,285,247,467,474,485,298,403,384,135,384,323,248,366,0),(4798,'2015-03-14 14:56:59','2015-08-29 14:46:10',1,30004151,50,58,0,26,56,0,0,15,0,94,0,27,3,39,15,23,4,0,119,0,2,82,1,0),(4799,'2015-03-14 14:56:59','2015-03-14 14:56:59',1,30000921,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(4800,'2015-03-14 14:56:59','2015-08-29 14:46:10',1,30004468,43,336,330,102,156,105,76,94,805,265,315,419,524,677,856,711,1140,151,674,552,692,227,705,0),(4801,'2015-03-14 14:56:59','2015-08-29 14:46:10',1,30003306,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,7,0),(4802,'2015-03-14 14:56:59','2015-08-29 14:46:10',1,30001045,0,0,0,0,0,64,0,0,0,2,2,0,3,0,0,0,1,5,0,2,3,2,7,0),(4803,'2015-03-14 14:56:59','2015-08-29 14:46:10',1,30002049,562,377,448,552,502,404,232,489,406,425,304,183,491,521,319,252,361,272,236,244,365,279,364,0),(4804,'2015-03-14 14:56:59','2015-08-29 14:46:10',1,30045326,270,236,268,327,309,263,154,195,177,246,499,411,367,251,351,609,472,147,245,41,468,527,345,0),(4805,'2015-03-14 14:56:59','2015-08-29 14:46:10',1,30002759,9,10,2,3,2,0,14,11,11,115,16,4,6,1,1,0,33,0,3,54,14,2,27,0),(4806,'2015-03-14 14:56:59','2015-08-29 14:46:10',1,30003077,22,40,34,40,26,39,9,22,2,1,5,0,2,1,6,9,1,12,3,13,0,100,4,0),(4807,'2015-03-14 14:56:59','2015-08-29 14:46:10',1,30003988,202,34,89,181,0,66,1,495,123,24,0,0,92,14,19,48,0,198,120,412,67,178,3,0),(4808,'2015-03-14 14:56:59','2015-08-29 14:46:10',1,30001152,0,0,0,0,0,0,0,0,0,0,189,111,0,0,0,0,0,0,0,47,161,105,0,0),(4809,'2015-03-14 14:56:59','2015-08-29 14:46:10',1,30001003,0,1,0,91,41,0,42,0,3,45,56,44,44,32,0,0,45,7,104,16,50,90,100,0),(4810,'2015-03-14 14:56:59','2015-03-14 14:56:59',1,30000549,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(4811,'2015-03-14 14:56:59','2015-08-29 14:46:10',1,30001121,179,4,16,186,102,396,262,622,7,1,0,0,0,0,0,0,450,0,0,0,37,54,414,0),(4812,'2015-03-14 14:56:59','2015-08-29 14:46:10',1,30005150,0,0,49,0,0,0,0,0,0,0,0,0,0,0,0,0,55,0,0,0,0,0,0,0),(4813,'2015-03-14 14:56:59','2015-08-29 14:46:10',1,30003981,0,0,0,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(4814,'2015-03-14 14:56:59','2015-08-29 14:46:10',1,30000561,0,0,0,0,0,0,0,0,0,0,95,80,0,0,0,0,0,0,0,0,0,0,0,0),(4815,'2015-03-14 14:56:59','2015-08-29 14:46:10',1,30003536,16,8,102,8,9,24,53,32,32,71,55,112,77,174,118,25,68,64,96,96,143,27,97,0),(4816,'2015-03-14 14:56:59','2015-08-29 14:46:10',1,30000040,0,0,9,0,0,55,0,10,0,0,0,8,49,49,27,26,0,0,16,0,0,8,0,0),(4817,'2015-03-14 14:56:59','2015-08-29 14:46:10',1,30000930,3,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(4818,'2015-03-14 14:56:59','2015-03-14 14:56:59',1,30005097,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(4819,'2015-03-14 14:56:59','2015-08-29 14:46:10',1,30003965,0,0,40,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(4820,'2015-03-14 14:56:59','2015-08-29 14:46:10',1,30001162,0,4,1,0,0,17,0,0,0,10,0,0,0,0,0,3,70,0,0,0,0,0,0,0),(4821,'2015-03-14 14:56:59','2015-08-29 14:46:10',1,30000434,0,0,0,0,0,0,0,92,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(4822,'2015-03-14 14:56:59','2015-03-14 14:56:59',1,30000393,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(4823,'2015-03-14 14:56:59','2015-03-14 14:56:59',1,30000732,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(4824,'2015-03-14 14:56:59','2015-08-29 14:46:10',1,30000988,4,0,0,0,0,0,58,11,25,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(4825,'2015-03-14 14:56:59','2015-08-29 14:46:10',1,30001008,0,9,0,113,99,94,46,36,15,72,34,55,0,0,0,4,46,0,0,14,35,146,114,0),(4826,'2015-03-14 14:56:59','2015-08-29 14:46:10',1,30001143,66,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,25,0,0,0,0,0,0,0),(4827,'2015-03-14 14:56:59','2015-08-29 14:46:10',1,30000674,0,0,0,0,0,0,0,0,25,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(4828,'2015-03-14 14:56:59','2015-08-29 14:46:10',1,30003672,125,0,84,13,12,153,48,0,0,66,124,191,205,0,0,0,280,371,174,14,118,373,713,0),(4829,'2015-03-14 14:56:59','2015-08-29 14:46:10',1,30003953,0,0,15,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(4830,'2015-03-14 14:56:59','2015-08-29 14:46:10',1,30002437,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,16,0,0,0),(4831,'2015-03-14 14:56:59','2015-08-29 14:46:10',1,30000264,6,311,4,44,14,4,30,0,5,47,27,0,0,0,0,0,0,156,1,119,0,0,0,0),(4832,'2015-03-14 14:56:59','2015-08-29 14:46:10',1,30000248,0,8,85,0,0,0,0,0,0,0,0,0,0,0,119,119,0,0,41,0,0,0,0,0),(4833,'2015-03-14 14:56:59','2015-08-29 14:46:10',1,30002379,33,9,3,41,3,87,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(4834,'2015-03-14 14:56:59','2015-03-14 14:56:59',1,30000755,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(4835,'2015-03-14 14:56:59','2015-08-29 14:46:10',1,30000694,0,0,0,0,0,5,0,0,0,0,0,63,0,0,0,5,32,0,0,0,109,149,158,0),(4836,'2015-03-14 14:56:59','2015-08-29 14:46:10',1,30001787,0,0,0,0,0,0,0,0,0,215,657,654,24,4,8,56,44,0,0,0,4,0,8,0),(4837,'2015-03-14 14:56:59','2015-08-29 14:46:10',1,30004406,0,0,0,0,0,0,0,0,126,151,0,93,0,0,0,2,226,0,0,0,143,114,4,0),(4838,'2015-03-14 14:56:59','2015-08-29 14:46:10',1,30003226,0,0,0,0,0,0,183,0,0,0,0,0,0,0,24,118,0,0,0,0,0,0,0,0),(4839,'2015-03-14 14:56:59','2015-08-29 14:46:10',1,30003130,127,268,101,101,0,301,18,124,0,0,0,0,0,12,3,0,0,0,0,0,0,99,99,0),(4840,'2015-03-14 14:56:59','2015-08-29 14:46:10',1,30003194,0,199,67,53,0,26,0,0,0,40,65,166,0,169,64,0,0,0,0,0,0,0,0,0),(4841,'2015-03-14 14:56:59','2015-08-29 14:46:10',1,30000849,0,185,0,288,61,4,66,0,0,0,0,4,0,7,10,8,0,15,17,13,0,0,0,0),(4842,'2015-03-14 14:56:59','2015-08-29 14:46:10',1,30001892,1,0,0,0,0,0,0,0,0,0,0,0,94,51,32,0,62,0,0,5,0,3,0,0),(4843,'2015-03-14 14:56:59','2015-08-29 14:46:10',1,30003143,0,0,127,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(4844,'2015-03-14 14:56:59','2015-08-29 14:46:10',1,30002862,0,0,0,0,0,24,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(4845,'2015-03-14 14:56:59','2015-08-29 14:46:10',1,30001222,0,0,0,0,0,0,0,0,148,164,54,10,24,0,0,0,4,48,1,6,30,87,36,0),(4846,'2015-03-14 14:56:59','2015-08-29 14:46:10',1,30001084,2,0,0,88,136,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(4847,'2015-03-14 14:56:59','2015-08-29 14:46:10',1,30001301,40,3,0,0,0,0,0,71,0,6,3,2,12,0,0,0,0,0,0,11,0,0,0,0),(4848,'2015-03-14 14:56:59','2015-03-14 14:56:59',1,30000375,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(4849,'2015-03-14 14:56:59','2015-08-29 14:46:10',1,30003294,0,0,8,0,8,108,11,0,0,3,0,0,0,0,0,0,0,0,0,0,1,0,0,0),(4850,'2015-03-14 14:56:59','2015-08-29 14:46:10',1,30004644,0,23,0,211,141,275,0,0,67,0,0,76,36,15,15,0,73,0,44,1,0,44,118,0),(4851,'2015-03-14 14:56:59','2015-08-29 14:46:10',1,30000888,0,0,0,85,77,0,0,0,68,0,0,0,0,0,0,0,0,0,0,18,0,0,0,0),(4852,'2015-03-14 14:56:59','2015-08-29 14:46:10',1,30003666,406,130,669,1540,1521,147,113,409,57,198,212,99,86,60,17,270,218,0,89,46,38,157,204,0),(4853,'2015-03-14 14:56:59','2015-08-29 14:46:10',1,30001015,0,4,0,0,0,0,3,53,0,0,0,0,0,3,3,0,28,0,0,5,0,0,25,0),(4854,'2015-03-14 14:56:59','2015-08-29 14:46:10',1,30000603,0,0,0,0,0,0,14,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(4855,'2015-03-14 14:56:59','2015-08-29 14:46:10',1,30000984,0,0,0,0,0,0,0,0,0,0,0,0,53,50,19,0,135,0,0,0,6,0,0,0),(4856,'2015-03-14 14:56:59','2015-08-29 14:46:10',1,30004329,36,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,22,0,126,0,0),(4857,'2015-03-14 14:56:59','2015-08-29 14:46:10',1,30001175,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,17,0,0,0,0,0,0,0),(4858,'2015-03-14 14:56:59','2015-08-29 14:46:10',1,30001383,213,389,324,211,411,292,164,254,167,345,280,380,145,282,349,415,607,169,275,168,489,544,139,0),(4859,'2015-03-14 14:56:59','2015-08-29 14:46:10',1,30000123,124,16,315,122,200,68,177,144,92,261,121,148,213,386,204,216,131,72,116,101,112,351,53,0),(4860,'2015-03-14 14:56:59','2015-08-29 14:46:10',1,30045331,83,0,16,29,57,3,23,17,18,3,15,20,84,126,100,21,34,12,7,0,37,25,33,0),(4861,'2015-03-14 14:56:59','2015-08-29 14:46:10',1,30005306,213,305,305,179,295,388,235,221,186,421,401,97,374,386,453,359,190,210,595,455,424,725,625,0),(4862,'2015-03-14 14:56:59','2015-08-29 14:46:10',1,30004196,0,0,0,0,0,0,29,0,73,42,85,0,0,62,62,1,0,0,0,0,37,62,0,0),(4863,'2015-03-14 14:56:59','2015-08-29 14:46:10',1,30000170,175,212,265,63,112,128,178,82,91,140,140,261,99,130,34,121,59,94,53,206,160,130,107,0),(4864,'2015-03-14 14:56:59','2015-08-29 14:46:10',1,30004289,11,44,16,34,11,26,5,51,0,3,3,0,1,42,44,11,12,0,0,0,7,25,10,0),(4865,'2015-03-14 14:56:59','2015-08-29 14:46:10',1,30005029,308,327,508,542,325,216,106,155,571,1115,818,143,503,279,234,335,398,420,141,174,211,161,263,0),(4866,'2015-03-14 14:56:59','2015-08-29 14:46:10',1,30003483,0,6,0,3,0,0,0,0,61,0,0,0,5,1,0,3,22,0,0,0,0,4,9,0),(4867,'2015-03-14 14:56:59','2015-08-29 14:46:10',1,30004230,12,0,0,0,0,0,29,0,93,1,0,6,0,0,0,0,0,0,14,1,0,65,0,0),(4868,'2015-03-14 14:56:59','2015-08-29 14:46:10',1,30002538,27,47,29,2,2,0,4,13,6,49,33,7,3,1,1,8,10,12,0,5,1,10,17,0),(4869,'2015-03-14 14:56:59','2015-08-29 14:46:10',1,30002400,32,196,102,20,43,25,0,151,80,134,238,31,57,249,166,108,32,0,61,68,75,162,15,0),(4870,'2015-03-14 14:56:59','2015-08-29 14:46:10',1,30000190,84,141,185,123,147,205,130,78,206,157,223,233,130,215,248,216,130,41,157,223,66,296,243,0),(4871,'2015-03-14 14:56:59','2015-08-29 14:46:10',1,30002230,19,0,168,38,69,0,22,32,30,102,147,39,49,28,15,2,3,123,27,28,80,1,20,0),(4872,'2015-03-14 14:56:59','2015-08-29 14:46:10',1,30000173,168,197,24,182,123,194,53,115,237,146,75,169,246,295,186,178,281,197,225,169,235,231,261,0),(4873,'2015-03-14 14:56:59','2015-08-29 14:46:10',1,30003027,134,43,139,71,188,43,24,99,15,257,147,120,75,133,137,74,42,93,191,82,115,160,81,0),(4874,'2015-03-14 14:56:59','2015-08-29 14:46:10',1,30005318,158,131,199,239,241,149,59,196,161,215,216,170,155,99,106,209,281,175,268,120,184,160,211,0),(4875,'2015-03-14 14:56:59','2015-08-29 14:46:10',1,30004547,0,0,0,0,0,0,0,0,0,0,0,66,0,0,0,0,0,0,0,0,0,0,5,0),(4876,'2015-03-14 14:56:59','2015-08-29 14:46:10',1,30000806,47,12,57,52,30,37,88,118,0,0,0,3,7,115,293,359,111,11,40,15,11,23,16,0),(4877,'2015-03-14 14:56:59','2015-08-29 14:46:10',1,30000842,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,13,0,0,0,3,0,0,0),(4878,'2015-03-14 14:56:59','2015-08-29 14:46:10',1,30001824,316,136,85,18,190,965,65,288,54,291,663,559,942,870,741,349,216,66,12,175,32,567,465,0),(4879,'2015-03-14 14:56:59','2015-08-29 14:46:10',1,30005195,0,35,7,41,86,0,77,0,0,0,0,0,24,1,0,0,0,10,42,7,0,14,0,0),(4880,'2015-03-14 14:56:59','2015-08-29 14:46:10',1,30003589,6,70,81,76,19,0,0,95,161,281,259,72,28,215,150,31,25,119,15,122,1,150,44,0),(4881,'2015-03-14 14:56:59','2015-08-29 14:46:10',1,30004246,0,0,0,31,88,78,30,0,1,0,0,0,13,0,0,0,0,0,0,76,0,0,0,0),(4882,'2015-03-14 14:56:59','2015-08-29 14:46:10',1,30001362,346,553,533,373,323,769,329,327,217,610,747,579,959,537,551,787,311,288,442,344,600,372,249,0),(4883,'2015-03-14 14:56:59','2015-08-29 14:46:10',1,30001380,613,179,430,580,350,649,286,269,266,407,331,385,296,705,643,637,513,155,299,262,235,285,693,0),(4884,'2015-03-14 14:56:59','2015-08-29 14:46:10',1,30002798,716,757,417,476,340,425,321,271,299,333,284,477,337,370,425,291,350,181,192,223,252,613,410,0),(4885,'2015-03-14 14:56:59','2015-08-29 14:46:10',1,30004220,164,103,140,0,3,438,521,318,0,110,161,71,90,229,192,100,262,53,5,112,385,466,287,0),(4886,'2015-03-14 14:56:59','2015-08-29 14:46:10',1,30003820,0,22,29,32,9,0,21,0,76,32,22,27,0,0,0,9,62,0,0,0,0,0,44,0),(4887,'2015-03-14 14:56:59','2015-08-29 14:46:10',1,30003572,44,1,4,23,74,0,18,34,48,4,0,9,11,4,4,18,33,42,26,12,32,32,26,0),(4888,'2015-03-14 14:56:59','2015-08-29 14:46:10',1,30003790,22,57,12,28,30,0,4,0,0,5,5,51,1,14,12,17,8,3,18,24,7,6,21,0),(4889,'2015-03-14 14:56:59','2015-08-29 14:46:10',1,30003899,0,0,2,36,36,2,0,0,0,0,3,59,0,0,0,0,0,0,0,0,0,0,0,0),(4890,'2015-03-14 14:56:59','2015-08-29 14:46:10',1,30004433,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,25,0,0,0,0,0,0,0),(4891,'2015-03-14 14:56:59','2015-08-29 14:46:10',1,30002904,79,38,135,60,41,0,0,4,0,134,15,0,26,30,0,62,0,0,0,1,0,131,47,0),(4892,'2015-03-14 14:56:59','2015-08-29 14:46:10',1,30001303,3,0,0,0,0,3,0,0,0,0,0,0,6,0,0,0,0,0,48,70,0,0,0,0),(4893,'2015-03-14 14:56:59','2015-08-29 14:46:10',1,30001351,0,0,0,0,0,0,0,56,0,0,0,0,0,0,0,0,0,0,0,0,15,11,0,0),(4894,'2015-03-14 14:56:59','2015-08-29 14:46:10',1,30001794,0,0,0,0,0,0,0,0,0,0,24,10,0,0,0,0,0,0,0,0,0,0,0,0),(4895,'2015-03-14 14:56:59','2015-08-29 14:46:10',1,30000295,30,0,0,88,87,0,0,116,4,7,7,0,7,0,0,7,4,0,12,6,4,13,13,0),(4896,'2015-03-14 14:56:59','2015-08-29 14:46:10',1,30004997,34,48,64,13,4,131,31,18,6,6,6,21,4,19,1,23,10,35,26,33,31,44,27,0),(4897,'2015-03-14 14:56:59','2015-03-14 14:56:59',1,30000346,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(4898,'2015-03-14 14:56:59','2015-08-29 14:46:10',1,30003816,51,218,102,107,87,2,0,172,48,0,0,48,20,3,20,39,6,0,66,6,0,12,0,0),(4899,'2015-03-14 14:56:59','2015-08-29 14:46:10',1,30045309,53,27,15,12,26,21,5,69,37,146,94,26,1,34,42,40,11,12,15,82,54,56,39,0),(4900,'2015-03-14 14:56:59','2015-08-29 14:46:10',1,30004993,167,210,173,175,127,147,229,170,51,59,106,166,240,294,244,235,282,207,296,222,353,256,401,0),(4901,'2015-03-14 14:56:59','2015-08-29 14:46:10',1,30003390,192,224,128,96,12,117,244,185,9,272,310,216,212,230,342,471,156,85,139,145,184,164,26,0),(4902,'2015-03-14 14:56:59','2015-08-29 14:46:10',1,30002088,0,0,0,0,1,0,0,1,57,11,3,18,0,28,55,50,6,4,7,28,29,62,51,0),(4903,'2015-03-14 14:56:59','2015-08-29 14:46:10',1,30004991,1,38,25,0,0,48,8,8,0,6,3,1,0,3,5,5,0,0,0,0,0,0,4,0),(4904,'2015-03-14 14:56:59','2015-08-29 14:46:10',1,30002731,191,379,213,325,305,133,208,248,361,369,357,186,168,450,306,314,594,216,332,312,340,517,155,0),(4905,'2015-03-14 14:56:59','2015-08-29 14:46:10',1,30003810,152,121,329,92,2,84,47,48,106,181,181,99,171,182,125,181,134,144,136,187,217,174,65,0),(4906,'2015-03-14 14:56:59','2015-08-29 14:46:10',1,30002487,0,78,14,0,115,0,0,0,0,0,36,229,0,0,0,0,161,0,0,0,124,74,0,0),(4907,'2015-03-14 14:56:59','2015-08-29 14:46:10',1,30004551,0,2,13,12,0,3,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(4908,'2015-03-14 14:56:59','2015-08-29 14:46:10',1,30000625,0,98,0,0,0,84,0,53,0,0,0,25,0,7,0,0,0,0,0,0,0,0,0,0),(4909,'2015-03-14 14:56:59','2015-08-29 14:46:10',1,30001566,2,0,0,0,0,0,0,0,0,0,0,0,0,0,22,22,0,0,0,0,0,53,183,0),(4910,'2015-03-14 14:56:59','2015-08-29 14:46:10',1,30003749,88,68,88,52,38,1,0,394,54,60,85,186,0,0,4,16,155,0,0,0,9,0,92,0),(4911,'2015-03-14 14:56:59','2015-08-29 14:46:10',1,30000927,12,0,0,0,0,0,0,0,0,0,0,0,33,0,0,0,0,76,15,3,8,9,0,0),(4912,'2015-03-14 14:56:59','2015-08-29 14:46:10',1,30004315,0,515,673,169,0,78,0,0,0,0,0,9,0,0,0,0,0,0,93,0,32,1,0,0),(4913,'2015-03-14 14:56:59','2015-08-29 14:46:10',1,30003116,348,109,227,299,237,13,108,59,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(4914,'2015-03-14 14:56:59','2015-08-29 14:46:10',1,30003339,4,19,0,0,4,3,0,0,0,0,3,0,0,0,0,0,111,0,0,0,0,0,29,0),(4915,'2015-03-14 14:56:59','2015-08-29 14:46:10',1,30003836,1,1,1,0,0,17,6,0,85,0,0,0,12,8,5,2,3,0,11,25,47,0,3,0),(4916,'2015-03-14 14:56:59','2015-03-14 14:56:59',1,30000420,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(4917,'2015-03-14 14:56:59','2015-08-29 14:46:10',1,30004453,0,0,0,0,0,0,0,86,0,0,0,0,0,0,0,0,218,0,0,0,0,0,42,0),(4918,'2015-03-14 14:56:59','2015-08-29 14:46:10',1,30001925,0,0,0,0,0,0,0,12,0,0,0,0,1,3,1,0,0,0,1,0,37,1,0,0),(4919,'2015-03-14 14:56:59','2015-08-29 14:46:10',1,30001019,0,0,0,0,0,0,0,0,4,0,0,0,0,0,111,268,0,0,0,0,0,0,0,0),(4920,'2015-03-14 14:56:59','2015-08-29 14:46:10',1,30000322,0,49,0,158,121,75,44,0,0,0,9,20,0,55,104,59,88,72,204,46,4,0,21,0),(4921,'2015-03-14 14:56:59','2015-08-29 14:46:10',1,30003399,76,176,55,215,246,25,150,26,138,157,210,89,121,153,119,103,164,31,99,130,166,165,103,0),(4922,'2015-03-14 14:56:59','2015-08-29 14:46:10',1,30000193,181,197,180,224,337,219,119,167,189,81,155,148,178,178,101,159,68,63,59,147,230,323,302,0),(4923,'2015-03-14 14:56:59','2015-08-29 14:46:10',1,30002948,56,0,187,281,142,44,0,0,161,245,170,73,194,263,395,366,394,14,53,388,341,119,221,0),(4924,'2015-03-14 14:56:59','2015-08-29 14:46:10',1,30004943,192,41,0,1068,784,49,136,38,36,148,373,263,176,43,44,62,433,40,41,31,0,111,242,0),(4925,'2015-03-14 14:56:59','2015-08-29 14:46:10',1,30004931,130,0,0,0,4,0,0,0,21,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(4926,'2015-03-14 14:56:59','2015-08-29 14:46:10',1,30003175,228,0,401,188,719,0,727,0,51,0,0,0,0,94,81,14,0,0,0,53,0,0,233,0),(4927,'2015-03-14 14:56:59','2015-03-14 14:56:59',1,30001506,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(4928,'2015-03-14 14:56:59','2015-08-29 14:46:10',1,30003685,37,1,0,0,0,32,26,0,0,3,24,0,0,19,19,0,0,0,1,32,0,36,54,0),(4929,'2015-03-14 14:56:59','2015-08-29 14:46:10',1,30003361,0,8,0,0,0,45,26,0,0,0,0,0,24,45,0,58,0,0,0,0,0,3,0,0),(4930,'2015-03-14 14:56:59','2015-08-29 14:46:10',1,30002448,0,0,0,0,0,0,0,0,43,0,33,46,0,70,0,0,0,0,0,0,0,0,0,0),(4931,'2015-03-14 14:56:59','2015-08-29 14:46:10',1,30003959,0,0,0,0,0,0,0,0,0,0,0,0,92,0,0,0,0,0,0,0,0,0,0,0),(4932,'2015-03-14 14:56:59','2015-08-29 14:46:10',1,30001836,2,0,0,0,1,0,2,0,0,0,0,0,6,24,25,5,58,31,0,6,2,0,0,0),(4933,'2015-03-14 14:56:59','2015-08-29 14:46:10',1,30003129,0,0,121,0,0,0,0,0,0,0,0,0,2,0,0,0,0,0,0,0,0,0,0,0),(4934,'2015-03-14 14:56:59','2015-08-29 14:46:10',1,30004890,0,96,0,0,0,0,0,0,136,130,156,0,0,0,0,0,0,0,0,0,6,0,0,0),(4935,'2015-03-14 14:56:59','2015-08-29 14:46:10',1,30002573,89,32,41,41,39,24,0,44,21,74,80,35,70,9,20,46,66,14,17,25,83,41,8,0),(4936,'2015-03-14 14:56:59','2015-08-29 14:46:10',1,30001443,173,261,328,137,136,268,18,147,236,208,183,124,302,201,301,292,255,217,214,219,540,224,502,0),(4937,'2015-03-14 14:56:59','2015-08-29 14:46:10',1,30003309,0,3,0,0,0,0,0,0,0,0,0,0,0,0,0,13,0,10,0,0,0,0,0,0),(4938,'2015-03-14 14:56:59','2015-08-29 14:46:10',1,30001073,0,0,0,0,0,0,20,0,97,189,17,4,155,29,6,76,155,0,0,0,76,56,24,0),(4939,'2015-03-14 14:56:59','2015-08-29 14:46:10',1,30001327,33,0,0,0,33,0,0,0,10,22,22,13,0,3,0,0,0,0,10,13,0,0,12,0),(4940,'2015-03-14 14:56:59','2015-03-14 14:56:59',1,30004457,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(4941,'2015-03-14 14:56:59','2015-08-29 14:46:10',1,30001054,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,63,3,0),(4942,'2015-03-14 14:56:59','2015-08-29 14:46:10',1,30005173,74,64,158,78,41,0,0,32,227,119,127,123,23,0,0,207,980,0,492,711,960,627,354,0),(4943,'2015-03-14 14:56:59','2015-03-14 14:56:59',1,30001541,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(4944,'2015-03-14 14:56:59','2015-03-14 14:56:59',1,30000924,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(4945,'2015-03-14 14:56:59','2015-03-14 14:56:59',1,30004227,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(4946,'2015-03-14 14:56:59','2015-08-29 14:46:10',1,30003098,151,0,39,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,4,9,0,0,0,0),(4947,'2015-03-14 14:56:59','2015-08-29 14:46:10',1,30002655,604,252,191,274,378,160,101,98,546,541,428,493,963,1379,1599,1359,743,423,765,596,741,866,552,0),(4948,'2015-03-14 14:56:59','2015-08-29 14:46:10',1,30004936,0,0,0,23,49,0,0,0,0,0,0,0,0,0,0,0,139,0,59,3,0,0,0,0),(4949,'2015-03-14 14:56:59','2015-03-14 14:56:59',1,30001477,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(4950,'2015-03-14 14:56:59','2015-08-29 14:46:10',1,30003247,0,0,0,0,0,414,0,0,0,711,1432,439,0,0,0,366,1464,0,0,0,684,1520,745,0),(4951,'2015-03-14 14:56:59','2015-08-29 14:46:10',1,30004822,0,0,0,0,0,0,0,0,0,126,136,23,0,0,0,0,0,0,0,0,0,0,0,0),(4952,'2015-03-14 14:56:59','2015-08-29 14:46:10',1,30002497,9,409,0,27,0,81,0,0,0,0,3,15,0,0,0,0,0,0,0,0,15,7,0,0),(4953,'2015-03-14 14:56:59','2015-08-29 14:46:10',1,30004392,165,114,497,108,210,165,20,140,67,181,220,231,356,628,521,454,151,564,615,605,0,0,0,0),(4954,'2015-03-14 14:56:59','2015-08-29 14:46:10',1,30004055,22,5,8,60,71,0,0,30,0,10,23,0,0,0,0,0,99,0,0,0,0,0,62,0),(4955,'2015-03-14 14:56:59','2015-03-14 14:56:59',1,30000751,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(4956,'2015-03-14 14:56:59','2015-03-14 14:56:59',1,30000345,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(4957,'2015-03-14 14:56:59','2015-03-14 14:56:59',1,30005177,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(4958,'2015-03-14 14:56:59','2015-08-29 14:46:10',1,30002147,0,0,0,0,0,0,0,0,0,0,0,48,0,0,0,0,0,0,0,0,0,0,0,0),(4959,'2015-03-14 14:56:59','2015-08-29 14:46:10',1,30004005,61,16,0,28,28,18,63,0,89,10,65,1,253,8,11,11,97,101,291,127,4,118,459,0),(4960,'2015-03-14 14:56:59','2015-08-29 14:46:10',1,30003968,155,0,0,53,75,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(4961,'2015-03-14 14:56:59','2015-03-14 14:56:59',1,30004753,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(4962,'2015-03-14 14:56:59','2015-08-29 14:46:10',1,30005142,50,1,423,451,328,17,46,18,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(4963,'2015-03-14 14:56:59','2015-03-14 14:56:59',1,30000830,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(4964,'2015-03-14 14:56:59','2015-08-29 14:46:10',1,30001250,0,99,0,0,0,0,102,20,255,83,132,129,464,265,322,244,519,350,222,223,360,425,56,0),(4965,'2015-03-14 14:56:59','2015-08-29 14:46:10',1,30001939,0,23,13,3,3,15,0,0,0,21,1,5,4,30,8,0,4,11,52,53,28,10,21,0),(4966,'2015-03-14 14:56:59','2015-08-29 14:46:10',1,30000532,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(4967,'2015-03-14 14:56:59','2015-03-14 14:56:59',1,30000932,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(4968,'2015-03-14 14:56:59','2015-08-29 14:46:10',1,30000893,85,75,29,171,148,270,816,253,438,243,480,294,295,387,228,242,472,27,150,85,328,166,467,0),(4969,'2015-03-14 14:56:59','2015-08-29 14:46:10',1,30001897,0,0,0,0,0,0,49,0,0,0,0,3,0,0,0,1,0,0,0,0,0,88,0,0),(4970,'2015-03-14 14:56:59','2015-03-14 14:56:59',1,30001516,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(4971,'2015-03-14 14:56:59','2015-08-29 14:46:10',1,30001105,151,251,0,399,516,1014,451,0,39,1024,1248,989,0,749,881,784,211,467,262,0,69,363,443,0),(4972,'2015-03-14 14:56:59','2015-08-29 14:46:10',1,30004537,0,0,0,0,16,27,75,0,0,0,0,0,5,0,0,0,0,0,0,0,0,0,0,0),(4973,'2015-03-14 14:56:59','2015-08-29 14:46:10',1,30003660,271,164,340,55,196,105,45,163,0,0,0,39,0,0,0,0,0,0,0,0,0,0,65,0),(4974,'2015-03-14 14:56:59','2015-08-29 14:46:10',1,30004538,0,0,39,0,0,0,76,17,28,149,135,0,0,0,0,0,0,0,0,0,0,0,0,0),(4975,'2015-03-14 14:56:59','2015-08-29 14:46:10',1,30000617,0,0,0,0,0,0,0,0,0,0,0,0,0,3,3,0,0,0,0,0,0,3,0,0),(4976,'2015-03-14 14:56:59','2015-08-29 14:46:10',1,30001311,75,33,54,64,51,166,12,0,4,85,30,70,98,107,44,79,82,79,109,124,89,90,33,0),(4977,'2015-03-14 14:56:59','2015-03-14 14:56:59',1,30000367,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(4978,'2015-03-14 14:56:59','2015-03-14 14:56:59',1,30000635,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(4979,'2015-03-14 14:56:59','2015-08-29 14:46:10',1,30002172,126,383,148,906,956,350,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(4980,'2015-03-14 14:56:59','2015-08-29 14:46:10',1,30001095,0,0,0,0,0,0,0,0,0,0,0,0,69,20,0,0,0,0,0,0,0,0,0,0),(4981,'2015-03-14 14:56:59','2015-03-14 14:56:59',1,30001522,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(4982,'2015-03-14 14:56:59','2015-08-29 14:46:10',1,30003205,0,0,0,0,0,0,17,0,0,0,0,0,0,0,5,53,0,0,0,0,0,0,0,0),(4983,'2015-03-14 14:56:59','2015-03-14 14:56:59',1,30001502,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(4984,'2015-03-14 14:56:59','2015-08-29 14:46:10',1,30000521,0,0,0,0,0,0,0,0,0,0,0,0,90,4,0,0,127,0,1,0,0,0,0,0),(4985,'2015-03-14 14:56:59','2015-08-29 14:46:10',1,30003983,0,24,0,0,0,4,124,0,0,0,18,1,0,12,18,12,0,3,8,29,9,13,9,0),(4986,'2015-03-14 14:56:59','2015-08-29 14:46:10',1,30000894,111,31,26,120,82,281,27,204,64,71,0,141,100,425,513,426,0,304,5,6,81,0,139,0),(4987,'2015-03-14 14:56:59','2015-08-29 14:46:10',1,30003622,0,41,0,16,0,14,91,0,0,0,0,0,9,0,0,0,0,0,0,0,0,0,0,0),(4988,'2015-03-14 14:56:59','2015-08-29 14:46:10',1,30001179,0,0,1,0,0,0,0,0,0,0,0,21,1,0,0,0,92,0,0,0,0,0,0,0),(4989,'2015-03-14 14:56:59','2015-03-14 14:56:59',1,30001748,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(4990,'2015-03-14 14:56:59','2015-08-29 14:46:10',1,30003102,128,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,42,3,0,0,0,0,0,0),(4991,'2015-03-14 14:56:59','2015-08-29 14:46:10',1,30002787,640,469,689,278,205,404,290,164,429,670,710,404,379,579,527,570,578,368,87,402,794,463,493,0),(4992,'2015-03-14 14:56:59','2015-08-29 14:46:10',1,30000191,17,3,51,0,2,6,0,0,37,1,1,2,80,0,1,22,65,0,26,22,0,0,8,0),(4993,'2015-03-14 14:56:59','2015-08-29 14:46:10',1,30003553,44,108,79,15,11,27,26,21,52,266,104,48,46,198,143,65,96,73,14,63,90,36,122,0),(4994,'2015-03-14 14:56:59','2015-08-29 14:46:10',1,30002790,671,584,713,744,566,645,104,286,1160,1180,911,704,872,720,893,913,1198,365,626,592,1028,747,824,0),(4995,'2015-03-14 14:56:59','2015-03-14 14:56:59',1,30004803,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(4996,'2015-03-14 14:56:59','2015-08-29 14:46:10',1,30001872,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,61,0,0,0,0),(4997,'2015-03-14 14:56:59','2015-08-29 14:46:10',1,30000238,15,121,312,0,0,142,78,256,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(4998,'2015-03-14 14:56:59','2015-08-29 14:46:10',1,30001160,0,0,0,0,0,0,3,0,0,2,6,0,0,0,0,0,0,0,0,0,0,0,0,0),(4999,'2015-03-14 14:56:59','2015-03-14 14:56:59',1,30001493,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(5000,'2015-03-14 14:56:59','2015-08-29 14:46:10',1,30004847,0,0,0,0,0,0,0,0,52,84,91,48,39,128,86,62,108,41,91,81,109,228,67,0),(5001,'2015-03-14 14:56:59','2015-08-29 14:46:10',1,30000972,0,0,0,0,0,0,0,0,0,0,0,0,0,6,3,0,0,0,0,0,55,0,0,0),(5002,'2015-03-14 14:56:59','2015-08-29 14:46:10',1,30002415,1,25,1,2,9,0,32,27,0,0,0,0,3,16,30,23,7,53,0,0,67,28,2,0),(5003,'2015-03-14 14:56:59','2015-08-29 14:46:10',1,30001878,62,31,3,8,17,0,5,0,29,113,256,333,67,86,272,385,277,17,212,600,135,71,189,0),(5004,'2015-03-14 14:56:59','2015-08-29 14:46:10',1,30003583,12,0,30,249,236,5,0,13,2,33,24,52,27,8,34,43,8,76,12,148,0,59,37,0),(5005,'2015-03-14 14:56:59','2015-03-14 14:56:59',1,30000326,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(5006,'2015-03-14 14:56:59','2015-08-29 14:46:10',1,30000746,0,135,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(5007,'2015-03-14 14:56:59','2015-03-14 14:56:59',1,30001247,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(5008,'2015-03-14 14:56:59','2015-08-29 14:46:10',1,30000725,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,96,0),(5009,'2015-03-14 14:56:59','2015-08-29 14:46:10',1,30002629,0,20,13,0,0,0,0,0,0,0,0,0,0,152,165,209,147,0,0,0,85,127,62,0),(5010,'2015-03-14 14:56:59','2015-08-29 14:46:10',1,30002429,0,0,0,0,100,0,0,0,0,0,0,51,0,47,0,0,0,0,0,0,25,0,1,0),(5011,'2015-03-14 14:56:59','2015-08-29 14:46:10',1,30000871,85,61,78,29,29,0,0,0,0,0,0,0,15,4,0,0,0,0,0,49,0,0,0,0),(5012,'2015-03-14 14:56:59','2015-08-29 14:46:10',1,30001839,0,0,0,0,0,0,0,0,0,0,0,0,3,0,0,0,1,0,0,0,0,0,0,0),(5013,'2015-03-14 14:56:59','2015-03-14 14:56:59',1,30000687,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(5014,'2015-03-14 14:56:59','2015-08-29 14:46:10',1,30001756,0,27,0,0,0,0,0,0,13,9,8,0,4,0,0,0,0,8,15,7,0,4,0,0),(5015,'2015-03-14 14:56:59','2015-08-29 14:46:10',1,30000206,145,87,168,65,193,134,5,120,82,147,129,149,61,131,157,151,146,42,135,283,161,111,144,0),(5016,'2015-03-14 14:56:59','2015-08-29 14:46:10',1,30003422,54,39,56,16,48,58,26,13,87,48,72,147,86,102,65,63,86,85,110,42,107,86,129,0),(5017,'2015-03-14 14:56:59','2015-08-29 14:46:10',1,30002554,0,1,0,0,0,0,9,0,28,3,0,6,0,0,7,8,0,0,0,0,2,13,9,0),(5018,'2015-03-14 14:56:59','2015-08-29 14:46:10',1,30001595,0,0,0,0,0,0,0,0,287,385,616,890,1540,1440,1004,540,742,185,790,1136,366,399,306,0),(5019,'2015-03-14 14:56:59','2015-08-29 14:46:10',1,30001207,248,48,58,268,161,103,152,15,175,290,197,201,176,414,133,300,279,319,247,107,489,401,365,0),(5020,'2015-03-14 14:56:59','2015-08-29 14:46:10',1,30001890,1,0,0,0,0,29,133,1,112,0,17,4,102,30,34,11,60,29,80,20,37,44,11,0),(5021,'2015-03-14 14:56:59','2015-08-29 14:46:10',1,30001755,0,0,0,3,3,0,0,0,1,102,104,30,0,0,0,0,0,0,0,0,0,0,0,0),(5022,'2015-03-14 14:56:59','2015-08-29 14:46:10',1,30001173,0,0,0,0,0,0,0,0,0,0,0,0,0,73,48,0,0,0,0,0,0,76,76,0),(5023,'2015-03-14 14:56:59','2015-03-14 14:56:59',1,30000372,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(5024,'2015-03-14 14:56:59','2015-08-29 14:46:10',1,30001336,0,0,0,0,0,0,0,0,29,46,10,39,19,45,41,43,107,34,57,83,93,24,14,0),(5025,'2015-03-14 14:56:59','2015-03-14 14:56:59',1,30001468,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(5026,'2015-03-14 14:56:59','2015-08-29 14:46:10',1,30000315,0,0,0,0,39,0,0,0,0,0,0,149,60,35,0,0,0,0,0,0,132,0,85,0),(5027,'2015-03-14 14:56:59','2015-08-29 14:46:10',1,30004662,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,4,0,0,0,32,54,0),(5028,'2015-03-14 14:56:59','2015-08-29 14:46:10',1,30002854,116,0,24,330,301,230,29,141,77,280,339,183,113,205,148,168,209,259,0,0,153,140,177,0),(5029,'2015-03-14 14:56:59','2015-08-29 14:46:10',1,30001849,0,0,0,1,3,0,40,0,7,25,26,39,76,35,36,59,4,0,0,0,37,47,75,0),(5030,'2015-03-14 14:56:59','2015-08-29 14:46:10',1,30004368,0,533,287,81,38,185,0,74,62,469,550,205,0,64,75,23,607,0,0,273,239,254,409,0),(5031,'2015-03-14 14:56:59','2015-08-29 14:46:10',1,30000711,0,0,0,0,0,0,0,41,10,165,175,1,0,0,54,145,33,0,0,0,346,87,140,0),(5032,'2015-03-14 14:56:59','2015-08-29 14:46:10',1,30000928,1,0,0,0,12,0,0,0,0,0,0,0,0,0,0,0,0,60,71,71,0,0,0,0),(5033,'2015-03-14 14:56:59','2015-08-29 14:46:10',1,30002371,0,0,0,0,0,0,0,0,128,0,0,0,1,3,3,0,0,3,0,0,0,0,0,0),(5034,'2015-03-14 14:56:59','2015-08-29 14:46:10',1,30001194,0,0,0,0,0,0,0,0,0,0,0,0,0,4,0,0,0,0,0,0,0,0,0,0),(5035,'2015-03-14 14:56:59','2015-08-29 14:46:10',1,30003696,163,152,210,392,171,243,151,135,224,189,230,170,0,0,0,0,42,0,35,181,51,257,0,0),(5036,'2015-03-14 14:56:59','2015-03-14 14:56:59',1,30000602,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(5037,'2015-03-14 14:56:59','2015-08-29 14:46:10',1,30004864,0,0,0,0,0,0,186,32,56,125,81,14,0,0,6,6,121,103,345,274,6,95,1540,0),(5038,'2015-03-14 14:56:59','2015-08-29 14:46:10',1,30003166,323,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,78,10,0,0),(5039,'2015-03-14 14:56:59','2015-03-14 14:56:59',1,30000957,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(5040,'2015-03-14 14:56:59','2015-08-29 14:46:10',1,30000433,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,68,0),(5041,'2015-03-14 14:56:59','2015-08-29 14:46:10',1,30002348,0,0,1,0,0,0,0,0,0,0,0,0,64,143,0,0,3,91,32,45,0,7,0,0),(5042,'2015-03-14 14:56:59','2015-08-29 14:46:10',1,30000187,851,698,643,501,788,522,662,596,282,798,717,857,828,846,714,590,698,468,311,727,567,568,440,0),(5043,'2015-03-14 14:56:59','2015-08-29 14:46:10',1,30002939,75,117,2,60,14,0,168,86,0,0,95,176,27,0,47,122,0,0,0,0,0,48,9,0),(5044,'2015-03-14 14:56:59','2015-08-29 14:46:10',1,30003638,432,589,100,262,158,188,372,79,21,0,0,21,10,0,0,58,82,100,220,148,101,47,162,0),(5045,'2015-03-14 14:56:59','2015-08-29 14:46:10',1,30000698,0,0,66,0,0,0,0,0,4,0,0,0,0,0,5,5,132,0,0,0,0,0,0,0),(5046,'2015-03-14 14:56:59','2015-08-29 14:46:10',1,30001140,0,0,50,0,0,0,0,0,0,9,224,619,0,110,110,0,183,0,0,0,0,48,56,0),(5047,'2015-03-14 14:56:59','2015-08-29 14:46:10',1,30003216,0,0,0,0,0,0,26,0,0,0,0,0,0,0,0,0,0,0,0,0,108,67,1,0),(5048,'2015-03-14 14:56:59','2015-08-29 14:46:10',1,30001998,110,0,0,0,0,0,0,0,0,0,0,0,0,47,37,0,0,0,0,0,0,0,0,0),(5049,'2015-03-14 14:56:59','2015-08-29 14:46:10',1,30003256,4,5,183,282,98,7,90,8,4,10,5,51,85,151,102,175,3,287,36,4,0,0,0,0),(5050,'2015-03-14 14:56:59','2015-08-29 14:46:10',1,30003120,1301,908,898,520,159,0,0,0,16,27,19,116,0,0,0,156,571,45,755,541,117,572,578,0),(5051,'2015-03-14 14:56:59','2015-03-14 14:56:59',1,30000337,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(5052,'2015-03-14 14:56:59','2015-08-29 14:46:10',1,30004621,578,472,168,340,481,517,617,235,260,307,713,550,341,240,426,493,591,150,174,317,159,452,189,0),(5053,'2015-03-14 14:56:59','2015-08-29 14:46:10',1,30002126,85,233,172,18,0,13,0,0,0,0,0,0,0,0,0,124,207,134,0,0,0,70,116,0),(5054,'2015-03-14 14:56:59','2015-08-29 14:46:10',1,30005016,172,163,25,343,292,1,26,39,39,215,214,40,143,171,261,179,59,82,28,166,152,126,84,0),(5055,'2015-03-14 14:56:59','2015-08-29 14:46:10',1,30002622,146,294,430,25,0,93,97,0,42,394,193,69,44,8,5,2,0,152,250,68,51,26,8,0),(5056,'2015-03-14 14:56:59','2015-08-29 14:46:10',1,30004840,0,0,0,0,0,0,151,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(5057,'2015-03-14 14:56:59','2015-08-29 14:46:10',1,30000517,0,50,0,0,0,50,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(5058,'2015-03-14 14:56:59','2015-08-29 14:46:10',1,30004915,723,0,558,473,565,32,21,289,168,177,1,157,257,117,177,319,94,43,0,275,293,367,0,0),(5059,'2015-03-14 14:56:59','2015-08-29 14:46:10',1,30004173,20,0,0,0,0,0,0,0,0,99,99,0,0,0,0,0,0,0,0,1,0,0,0,0),(5060,'2015-03-14 14:56:59','2015-08-29 14:46:10',1,30003744,211,119,172,477,398,717,11,107,50,447,367,580,311,395,498,864,794,126,25,14,358,826,777,0),(5061,'2015-03-14 14:56:59','2015-08-29 14:46:10',1,30002148,0,0,0,0,0,156,299,0,0,0,0,0,0,40,0,0,0,0,0,0,0,0,0,0),(5062,'2015-03-14 14:56:59','2015-08-29 14:46:10',1,30003110,0,0,0,0,0,0,0,0,0,0,0,0,0,4,0,0,0,0,0,0,0,0,0,0),(5063,'2015-03-14 14:56:59','2015-08-29 14:46:10',1,30001978,8,4,74,90,72,43,64,30,42,0,80,76,79,89,59,29,44,89,0,78,195,0,30,0),(5064,'2015-03-14 14:56:59','2015-08-29 14:46:10',1,30003245,0,0,0,0,0,182,0,0,0,0,0,0,0,0,0,8,9,0,0,0,6,10,0,0),(5065,'2015-03-14 14:56:59','2015-08-29 14:46:10',1,30000541,45,106,66,183,227,1,0,46,6,141,104,34,35,11,4,38,129,37,72,53,0,0,97,0),(5066,'2015-03-14 14:56:59','2015-08-29 14:46:10',1,30003274,0,0,1,1,87,2,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(5067,'2015-03-14 14:56:59','2015-08-29 14:46:10',1,30000882,207,0,60,51,57,97,0,0,0,0,13,12,165,21,0,0,0,0,0,0,0,0,0,0),(5068,'2015-03-14 14:56:59','2015-08-29 14:46:10',1,30003259,112,111,0,415,254,378,430,172,70,1207,1380,826,0,386,341,313,232,0,0,0,573,161,175,0),(5069,'2015-03-14 14:56:59','2015-08-29 14:46:10',1,30004907,0,0,93,37,17,0,395,345,0,4,93,141,0,98,10,0,0,0,0,0,129,218,56,0),(5070,'2015-03-14 14:56:59','2015-08-29 14:46:10',1,30003173,0,0,0,0,0,0,0,0,0,0,0,10,0,0,0,0,0,29,0,0,146,61,0,0),(5071,'2015-03-14 14:56:59','2015-08-29 14:46:10',1,30001594,0,0,0,0,0,1,0,0,2,7,2,0,0,0,0,0,0,0,3,0,4,1,0,0),(5072,'2015-03-14 14:56:59','2015-03-14 14:56:59',1,30000339,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(5073,'2015-03-14 14:56:59','2015-08-29 14:46:10',1,30003278,0,107,0,11,2,44,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(5074,'2015-03-14 14:56:59','2015-08-29 14:46:10',1,30004075,0,180,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(5075,'2015-03-14 14:56:59','2015-08-29 14:46:10',1,30001059,0,0,0,0,0,0,28,0,0,0,0,0,0,0,0,0,0,0,0,0,0,164,1,0),(5076,'2015-03-14 14:56:59','2015-08-29 14:46:10',1,30003288,7,0,0,46,1,0,43,0,33,0,20,0,3,2,4,25,0,0,0,5,123,0,16,0),(5077,'2015-03-14 14:56:59','2015-08-29 14:46:10',1,30003770,134,102,0,0,0,121,0,0,0,0,0,0,0,0,0,0,1,13,0,0,0,0,0,0),(5078,'2015-03-14 14:56:59','2015-08-29 14:46:10',1,30002916,163,238,87,139,130,266,109,199,40,6,0,0,0,0,0,0,0,115,29,0,0,0,0,0),(5079,'2015-03-14 14:56:59','2015-08-29 14:46:10',1,30003208,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,52,0,0,0,0,35,0),(5080,'2015-03-14 14:56:59','2015-08-29 14:46:10',1,30000808,170,23,4,191,149,88,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(5081,'2015-03-14 14:56:59','2015-03-14 14:56:59',1,30000358,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(5082,'2015-03-14 14:56:59','2015-08-29 14:46:10',1,30000833,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(5083,'2015-03-14 14:56:59','2015-08-29 14:46:10',1,30001835,2,0,0,52,52,0,4,0,0,30,31,0,0,0,0,0,0,0,1,1,0,0,0,0),(5084,'2015-03-14 14:56:59','2015-08-29 14:46:10',1,30001086,30,207,7,11,0,6,74,35,0,12,67,3,0,105,208,338,171,0,0,152,267,11,59,0),(5085,'2015-03-14 14:56:59','2015-08-29 14:46:10',1,30000713,0,0,0,0,0,9,49,11,0,0,0,0,2,0,0,0,0,0,0,0,0,0,126,0),(5086,'2015-03-14 14:56:59','2015-08-29 14:46:10',1,30002943,1100,0,0,29,94,95,577,249,47,362,230,136,134,767,748,371,1260,84,167,295,236,501,777,0),(5087,'2015-03-14 14:56:59','2015-08-29 14:46:10',1,30003688,0,0,15,2,6,0,0,0,0,0,0,32,0,44,8,3,0,2,31,0,0,0,4,0),(5088,'2015-03-14 14:56:59','2015-08-29 14:46:10',1,30001211,167,3,14,18,14,0,0,0,69,35,72,0,122,0,0,0,187,136,57,0,0,1,132,0),(5089,'2015-03-14 14:56:59','2015-08-29 14:46:10',1,30001249,0,0,0,0,0,0,0,0,0,0,0,0,0,4,0,0,0,0,0,0,0,0,0,0),(5090,'2015-03-14 14:56:59','2015-03-14 14:56:59',1,30000496,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(5091,'2015-03-14 14:56:59','2015-08-29 14:46:10',1,30000245,0,0,0,0,131,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0),(5092,'2015-03-14 14:56:59','2015-08-29 14:46:10',1,30001967,0,1,34,0,0,0,4,4,7,0,1,2,3,1,1,2,3,0,0,4,3,10,26,0),(5093,'2015-03-14 14:56:59','2015-08-29 14:46:10',1,30004331,900,37,30,0,0,174,0,0,1,117,81,0,0,0,0,0,0,0,0,0,17,0,0,0),(5094,'2015-03-14 14:56:59','2015-08-29 14:46:10',1,30000777,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,42,0),(5095,'2015-03-14 14:56:59','2015-08-29 14:46:10',1,30003700,120,309,140,134,81,137,119,187,0,88,27,41,28,131,47,43,47,498,249,247,84,0,151,0),(5096,'2015-03-14 14:56:59','2015-08-29 14:46:10',1,30001905,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,24,9,0),(5097,'2015-03-14 14:56:59','2015-08-29 14:46:10',1,30004416,0,95,0,0,0,7,12,0,0,0,0,0,5,0,2,2,0,0,0,0,0,0,0,0),(5098,'2015-03-14 14:56:59','2015-08-29 14:46:10',1,30003773,34,213,172,190,162,33,131,66,142,189,202,243,0,129,199,103,1,76,14,0,9,4,10,0),(5099,'2015-03-14 14:56:59','2015-03-14 14:56:59',1,30001490,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(5100,'2015-03-14 14:56:59','2015-08-29 14:46:10',1,30004355,156,0,0,0,0,0,928,193,0,53,24,0,0,0,0,0,0,0,65,0,84,0,0,0),(5101,'2015-03-14 14:56:59','2015-08-29 14:46:10',1,30000221,567,0,0,0,0,0,0,41,0,38,22,0,0,0,0,0,0,0,0,0,0,0,0,0),(5102,'2015-03-14 14:56:59','2015-08-29 14:46:10',1,30000664,94,0,0,0,0,0,0,0,0,0,0,20,0,0,0,0,4,0,0,0,0,0,0,0),(5103,'2015-03-14 14:56:59','2015-08-29 14:46:10',1,30000470,62,0,0,0,0,144,45,0,0,0,0,0,0,0,0,0,0,0,0,0,138,0,0,0),(5104,'2015-03-14 14:56:59','2015-08-29 14:46:10',1,30002319,41,19,25,207,233,57,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(5105,'2015-03-14 14:56:59','2015-03-14 14:56:59',1,30000417,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(5106,'2015-03-14 14:56:59','2015-08-29 14:46:10',1,30002946,0,147,224,274,161,117,1,0,560,227,269,207,444,385,585,718,679,118,50,71,501,399,857,0),(5107,'2015-03-14 14:56:59','2015-08-29 14:46:10',1,30002897,537,142,286,338,451,46,398,832,55,125,190,251,55,206,171,211,177,159,147,17,123,45,364,0),(5108,'2015-03-14 14:56:59','2015-08-29 14:46:10',1,30001093,0,2,0,0,0,0,0,0,79,130,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(5109,'2015-03-14 14:56:59','2015-08-29 14:46:10',1,30002118,0,0,0,0,0,0,0,0,2,4,0,0,0,0,0,0,0,0,0,0,0,4,8,0),(5110,'2015-03-14 14:56:59','2015-08-29 14:46:10',1,30000889,84,80,85,228,378,0,130,176,344,344,136,558,584,174,123,94,326,296,56,427,193,723,381,0),(5111,'2015-03-14 14:56:59','2015-08-29 14:46:10',1,30001778,0,0,0,0,0,6,0,0,0,0,0,0,0,0,0,249,165,0,0,0,11,89,0,0),(5112,'2015-03-14 14:56:59','2015-08-29 14:46:10',1,30003224,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,3,0,0,0,0,0,0),(5113,'2015-03-14 14:56:59','2015-08-29 14:46:10',1,30000604,1,39,0,86,29,0,0,0,4,13,8,9,33,53,6,5,0,78,63,12,29,4,7,0),(5114,'2015-03-14 14:56:59','2015-08-29 14:46:10',1,30000293,20,0,29,0,0,0,130,222,68,167,156,0,0,212,208,82,173,0,0,0,0,36,34,0),(5115,'2015-03-14 14:56:59','2015-08-29 14:46:10',1,30004552,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,17,20,0,0,0,0),(5116,'2015-03-14 14:56:59','2015-03-14 14:56:59',1,30001958,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(5117,'2015-03-14 14:56:59','2015-08-29 14:46:10',1,30004069,0,0,0,0,1,1,0,0,109,0,0,0,0,0,0,0,0,0,0,0,7,5,0,0),(5118,'2015-03-14 14:56:59','2015-08-29 14:46:10',1,30004875,323,482,195,173,330,91,167,341,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(5119,'2015-03-14 14:56:59','2015-08-29 14:46:10',1,30003731,80,206,20,82,66,19,0,41,1,0,10,0,6,1,4,9,23,0,0,0,0,45,0,0),(5120,'2015-03-14 14:56:59','2015-08-29 14:46:10',1,30001973,211,139,34,76,74,0,10,16,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(5121,'2015-03-14 14:56:59','2015-08-29 14:46:10',1,30001798,0,0,0,0,0,0,0,0,48,26,11,53,472,302,61,104,108,20,234,342,149,316,203,0),(5122,'2015-03-14 14:56:59','2015-08-29 14:46:10',1,30004613,0,162,0,0,0,0,0,31,0,0,8,113,0,0,0,0,0,4,52,66,77,126,301,0),(5123,'2015-03-14 14:56:59','2015-08-29 14:46:10',1,30000752,11,37,102,83,14,29,5,8,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(5124,'2015-03-14 14:56:59','2015-08-29 14:46:10',1,30003263,71,531,213,43,47,212,15,53,150,84,135,36,38,105,14,148,92,42,16,15,15,142,295,0),(5125,'2015-03-14 14:56:59','2015-08-29 14:46:10',1,30003119,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,127,0,0,0,0,0,0),(5126,'2015-03-14 14:56:59','2015-08-29 14:46:10',1,30004342,0,0,47,5,0,85,0,180,1180,1071,714,772,67,0,0,23,148,0,0,0,91,1064,1420,0),(5127,'2015-03-14 14:56:59','2015-08-29 14:46:10',1,30003252,0,103,97,0,0,1,77,334,0,0,0,0,0,0,0,0,4,0,0,0,0,0,0,0),(5128,'2015-03-14 14:56:59','2015-08-29 14:46:10',1,30001792,0,0,0,0,0,0,0,0,0,0,78,1901,0,0,0,0,0,0,0,0,0,341,136,0),(5129,'2015-03-14 14:56:59','2015-08-29 14:46:10',1,30004894,113,0,0,0,0,55,0,0,71,234,196,0,0,112,0,81,0,12,0,0,101,74,177,0),(5130,'2015-03-14 14:56:59','2015-03-14 14:56:59',1,30001999,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(5131,'2015-03-14 14:56:59','2015-08-29 14:46:10',1,30000750,90,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,18,0,0,0,0,0,0,0),(5132,'2015-03-14 14:56:59','2015-08-29 14:46:10',1,30000585,0,14,0,0,0,0,0,0,0,0,0,0,0,5,5,0,0,0,0,0,0,0,0,0),(5133,'2015-03-14 14:56:59','2015-03-14 14:56:59',1,30001584,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(5134,'2015-03-14 14:56:59','2015-03-14 14:56:59',1,30002155,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(5135,'2015-03-14 14:56:59','2015-08-29 14:46:10',1,30003313,0,0,13,28,95,0,0,0,0,0,0,0,0,5,0,0,0,0,0,0,0,0,1,0),(5136,'2015-03-14 14:56:59','2015-08-29 14:46:10',1,30000275,31,0,4,26,0,0,0,55,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(5137,'2015-03-14 14:56:59','2015-08-29 14:46:10',1,30000447,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0),(5138,'2015-03-14 14:56:59','2015-08-29 14:46:10',1,30001552,0,0,0,0,0,0,0,0,0,7,6,5,0,10,10,1,3,0,4,0,4,0,3,0),(5139,'2015-03-14 14:56:59','2015-08-29 14:46:10',1,30004038,0,0,0,0,0,0,30,0,0,0,0,0,0,0,0,0,41,0,0,0,4,0,0,0),(5140,'2015-03-14 14:56:59','2015-08-29 14:46:10',1,30002822,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,29,87,0),(5141,'2015-03-14 14:56:59','2015-08-29 14:46:10',1,30001113,224,0,0,0,0,84,8,164,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(5142,'2015-03-14 14:56:59','2015-08-29 14:46:10',1,30001089,0,457,0,0,0,236,0,2,0,0,0,77,0,276,385,521,652,354,360,0,522,538,868,0),(5143,'2015-03-14 14:56:59','2015-03-14 14:56:59',1,30005095,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(5144,'2015-03-14 14:56:59','2015-08-29 14:46:10',1,30004856,0,0,0,0,0,0,0,0,0,0,0,0,0,163,99,0,0,0,0,5,0,0,0,0),(5145,'2015-03-14 14:56:59','2015-08-29 14:46:10',1,30001753,0,0,0,0,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(5146,'2015-03-14 14:56:59','2015-08-29 14:46:10',1,30004655,0,0,0,0,0,0,0,0,6,51,33,0,2,0,0,0,47,5,9,5,0,9,0,0),(5147,'2015-03-14 14:56:59','2015-08-29 14:46:10',1,30000237,120,23,0,0,0,0,180,247,0,0,0,0,0,44,103,104,0,0,0,203,0,0,0,0),(5148,'2015-03-14 14:56:59','2015-08-29 14:46:10',1,30000678,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0),(5149,'2015-03-14 14:56:59','2015-08-29 14:46:10',1,30002122,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,3,0,1,120,0,0),(5150,'2015-03-14 14:56:59','2015-08-29 14:46:10',1,30004320,72,19,150,227,329,331,42,68,0,0,0,0,3,42,91,49,226,87,0,0,127,17,205,0),(5151,'2015-03-14 14:56:59','2015-08-29 14:46:10',1,30001325,0,0,0,0,18,0,0,0,19,0,0,0,43,2,1,0,6,0,0,0,0,0,0,0),(5152,'2015-03-14 14:56:59','2015-08-29 14:46:10',1,30004382,10,0,37,3,11,277,477,85,0,0,0,147,0,103,98,0,0,74,0,0,77,93,6,0),(5153,'2015-03-14 14:56:59','2015-08-29 14:46:10',1,30000499,0,19,31,0,61,0,116,0,789,654,144,3,0,192,124,0,0,0,0,0,6,0,0,0),(5154,'2015-03-14 14:56:59','2015-03-14 14:56:59',1,30002600,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(5155,'2015-03-14 14:56:59','2015-08-29 14:46:10',1,30001021,246,43,243,116,271,32,63,51,0,25,67,46,131,0,12,20,157,89,8,0,19,44,58,0),(5156,'2015-03-14 14:56:59','2015-08-29 14:46:10',1,30003228,0,0,0,0,0,136,0,0,0,0,0,0,0,66,83,21,0,0,0,0,0,0,0,0),(5157,'2015-03-14 14:56:59','2015-08-29 14:46:10',1,30005175,83,0,8,72,98,0,0,0,13,196,290,170,56,160,168,187,2,149,179,76,75,87,61,0),(5158,'2015-03-14 14:56:59','2015-08-29 14:46:10',1,30003326,0,0,0,0,0,4,0,0,13,12,0,0,0,0,7,7,0,0,0,0,0,0,0,0),(5159,'2015-03-14 14:56:59','2015-08-29 14:46:10',1,30004932,0,115,29,48,8,134,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(5160,'2015-03-14 14:56:59','2015-08-29 14:46:10',1,30004062,30,0,0,0,49,0,0,0,357,566,425,263,28,279,244,559,423,73,291,617,335,791,384,0),(5161,'2015-03-14 14:56:59','2015-08-29 14:46:10',1,30003237,0,0,0,0,0,2,0,0,65,125,12,38,0,0,0,0,0,0,0,0,0,0,0,0),(5162,'2015-03-14 14:56:59','2015-08-29 14:46:10',1,30004396,618,427,493,47,68,575,791,231,472,857,969,323,29,0,0,0,0,0,0,0,0,0,0,0),(5163,'2015-03-14 14:56:59','2015-08-29 14:46:10',1,30004568,0,0,0,0,0,0,0,129,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(5164,'2015-03-14 14:56:59','2015-08-29 14:46:10',1,30004665,59,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,99,56,0),(5165,'2015-03-14 14:56:59','2015-08-29 14:46:10',1,30001291,207,85,45,80,51,22,96,35,142,230,428,179,215,265,211,97,169,0,55,103,63,201,107,0),(5166,'2015-03-14 14:56:59','2015-08-29 14:46:10',1,30001932,0,19,0,0,0,92,0,0,0,0,0,0,0,0,0,0,0,0,0,0,126,0,0,0),(5167,'2015-03-14 14:56:59','2015-03-14 14:56:59',1,30001498,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(5168,'2015-03-14 14:56:59','2015-08-29 14:46:10',1,30002597,0,0,0,61,0,0,0,0,0,0,0,0,17,0,0,0,0,0,0,53,0,0,0,0),(5169,'2015-03-14 14:56:59','2015-08-29 14:46:10',1,30003207,9,0,0,0,0,0,4,0,0,0,0,4,0,11,21,14,5,0,0,0,0,41,36,0),(5170,'2015-03-14 14:56:59','2015-08-29 14:46:10',1,30001829,538,0,490,281,450,395,269,237,0,0,0,0,0,62,44,41,0,0,0,0,0,0,0,0),(5171,'2015-03-14 14:56:59','2015-08-29 14:46:10',1,30003265,0,0,0,0,0,0,91,0,0,0,0,4,0,0,0,0,182,0,0,0,0,0,0,0),(5172,'2015-03-14 14:56:59','2015-03-14 14:56:59',1,30002044,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(5173,'2015-03-14 14:56:59','2015-08-29 14:46:10',1,30002169,174,0,0,0,0,0,0,0,77,414,265,59,121,9,70,92,140,24,22,29,113,9,6,0),(5174,'2015-03-14 14:56:59','2015-08-29 14:46:10',1,30004941,141,182,5,28,21,116,70,160,203,308,293,245,29,241,211,53,13,8,24,16,60,49,5,0),(5175,'2015-03-14 14:56:59','2015-08-29 14:46:10',1,30000958,0,0,0,0,0,0,0,0,0,41,25,0,0,0,0,0,83,0,0,0,0,0,49,0),(5176,'2015-03-14 14:56:59','2015-08-29 14:46:10',1,30001031,15,0,118,194,215,0,34,33,1,0,49,93,0,10,92,107,143,0,0,50,32,114,74,0),(5177,'2015-03-14 14:56:59','2015-03-14 14:56:59',1,30004859,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(5178,'2015-03-14 14:56:59','2015-08-29 14:46:10',1,30002162,73,0,12,296,117,294,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,3,0),(5179,'2015-03-14 14:56:59','2015-08-29 14:46:10',1,30002586,0,0,0,0,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(5180,'2015-03-14 14:56:59','2015-08-29 14:46:10',1,30001039,25,0,10,0,0,0,112,0,56,82,62,8,54,249,87,27,17,5,86,42,57,73,6,0),(5181,'2015-03-14 14:56:59','2015-08-29 14:46:10',1,30003726,0,9,7,4,10,0,4,39,5,2,6,2,2,16,1,0,0,1,0,0,4,0,5,0),(5182,'2015-03-14 14:56:59','2015-08-29 14:46:10',1,30004898,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0),(5183,'2015-03-14 14:56:59','2015-08-29 14:46:10',1,30002176,353,0,0,98,151,386,1214,427,226,67,308,424,253,407,579,934,858,0,16,471,24,191,640,0),(5184,'2015-03-14 14:56:59','2015-08-29 14:46:10',1,30004763,286,0,828,85,0,0,0,0,79,33,22,0,0,51,0,110,30,0,212,147,8,275,472,0),(5185,'2015-03-14 14:56:59','2015-03-14 14:56:59',1,30004809,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(5186,'2015-03-14 14:56:59','2015-08-29 14:46:10',1,30001255,0,21,0,206,188,0,193,0,12,11,12,15,0,0,0,4,12,0,83,13,0,0,0,0),(5187,'2015-03-14 14:56:59','2015-08-29 14:46:10',1,30000884,54,28,0,174,263,138,38,42,0,0,0,0,0,0,0,0,0,0,131,58,0,0,0,0),(5188,'2015-03-14 14:56:59','2015-08-29 14:46:10',1,30004171,0,0,10,0,0,0,0,0,42,21,0,0,0,0,0,0,0,0,0,0,0,0,6,0),(5189,'2015-03-14 14:56:59','2015-03-14 14:56:59',1,30000331,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(5190,'2015-03-14 14:56:59','2015-08-29 14:46:10',1,30001791,0,0,0,0,0,0,0,0,85,105,180,827,145,608,819,675,395,50,120,54,183,119,9,0),(5191,'2015-03-14 14:56:59','2015-08-29 14:46:10',1,30001261,0,0,53,0,0,0,169,0,2,3,0,0,85,0,0,0,0,0,36,0,18,0,5,0),(5192,'2015-03-14 14:56:59','2015-08-29 14:46:10',1,30003342,0,0,0,0,0,0,0,0,0,31,15,30,0,9,10,17,7,5,0,0,0,0,0,0),(5193,'2015-03-14 14:56:59','2015-08-29 14:46:10',1,30001108,0,3,27,222,622,2029,328,163,90,953,1094,1000,166,864,544,407,617,13,104,76,629,304,718,0),(5194,'2015-03-14 14:56:59','2015-08-29 14:46:10',1,30004428,0,0,0,40,40,0,0,0,0,0,0,0,0,0,0,0,0,0,94,94,0,0,0,0),(5195,'2015-03-14 14:56:59','2015-08-29 14:46:10',1,30003651,0,89,0,0,0,72,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(5196,'2015-03-14 14:56:59','2015-08-29 14:46:10',1,30000306,1040,1340,153,940,1080,73,665,538,911,679,734,800,161,581,736,672,1040,623,552,472,316,296,589,0),(5197,'2015-03-14 14:56:59','2015-08-29 14:46:10',1,30000220,546,138,169,104,163,6,11,14,9,15,14,10,0,0,0,0,3,22,16,12,38,23,17,0),(5198,'2015-03-14 14:56:59','2015-08-29 14:46:10',1,30001846,4,0,5,0,0,0,0,0,5,45,77,20,7,6,11,6,66,8,57,3,8,6,10,0),(5199,'2015-03-14 14:56:59','2015-08-29 14:46:10',1,30002109,142,0,0,19,71,2,414,1,0,0,0,228,0,0,0,0,194,76,0,0,0,148,230,0),(5200,'2015-03-14 14:56:59','2015-08-29 14:46:10',1,30002037,0,569,592,268,249,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(5201,'2015-03-14 14:56:59','2015-08-29 14:46:10',1,30004456,284,0,0,0,0,0,379,97,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(5202,'2015-03-14 14:56:59','2015-03-14 14:56:59',1,30002115,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(5203,'2015-03-14 14:56:59','2015-03-14 14:56:59',1,30000918,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(5204,'2015-03-14 14:56:59','2015-08-29 14:46:11',1,30001570,0,0,0,0,0,0,0,0,6,0,0,0,0,0,0,0,0,0,5,5,0,0,0,0),(5205,'2015-03-14 14:56:59','2015-08-29 14:46:11',1,30001546,0,0,0,0,0,0,0,0,3,4,4,106,212,87,110,96,346,0,0,387,305,74,524,0),(5206,'2015-03-14 14:56:59','2015-08-29 14:46:11',1,30000729,37,197,13,14,15,77,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(5207,'2015-03-14 14:56:59','2015-08-29 14:46:11',1,30004785,0,0,0,0,0,0,0,0,0,0,0,0,0,23,23,37,136,0,0,24,0,59,26,0),(5208,'2015-03-14 14:56:59','2015-08-29 14:46:11',1,30000308,115,0,0,90,19,63,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,70,0),(5209,'2015-03-14 14:56:59','2015-08-29 14:46:11',1,30001058,0,321,136,335,41,56,151,14,43,66,25,35,77,72,76,68,68,12,6,8,11,16,13,0),(5210,'2015-03-14 14:56:59','2015-08-29 14:46:11',1,30001262,0,0,84,0,0,6,0,0,0,0,0,0,0,0,0,0,0,1,0,22,0,0,0,0),(5211,'2015-03-14 14:56:59','2015-08-29 14:46:11',1,30000947,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,129,5,0,0,0,0,0,0),(5212,'2015-03-14 14:56:59','2015-03-14 14:56:59',1,30001559,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(5213,'2015-03-14 14:56:59','2015-08-29 14:46:11',1,30002466,354,128,219,154,113,578,527,706,129,181,286,204,84,0,0,57,632,97,362,643,89,306,382,0),(5214,'2015-03-14 14:56:59','2015-08-29 14:46:11',1,30003734,0,42,53,132,58,182,207,280,161,406,326,191,208,348,381,411,169,23,101,33,131,210,204,0),(5215,'2015-03-14 14:56:59','2015-08-29 14:46:11',1,30003307,0,2,0,2,11,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(5216,'2015-03-14 14:56:59','2015-08-29 14:46:11',1,30002902,5,0,7,0,0,4,2,166,10,108,147,35,7,1,22,53,13,322,65,97,138,25,10,0),(5217,'2015-03-14 14:56:59','2015-08-29 14:46:11',1,30000080,36,11,8,49,30,21,203,0,0,0,60,0,14,68,40,11,118,22,8,37,104,11,42,0),(5218,'2015-03-14 14:56:59','2015-08-29 14:46:11',1,30004286,0,36,27,77,3,1,0,0,12,0,3,37,0,0,3,31,49,0,0,0,141,4,141,0),(5219,'2015-03-14 14:56:59','2015-03-14 14:56:59',1,30002592,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(5220,'2015-03-14 14:56:59','2015-08-29 14:46:11',1,30001701,79,22,88,92,142,26,44,101,88,113,205,231,134,263,198,152,133,87,127,98,91,29,123,0),(5221,'2015-03-14 14:56:59','2015-08-29 14:46:11',1,30003158,9,239,343,103,85,330,26,274,31,79,96,7,0,59,120,179,117,136,11,0,330,106,6,0),(5222,'2015-03-14 14:56:59','2015-08-29 14:46:11',1,30004111,59,106,236,162,303,65,19,0,99,167,170,126,70,82,106,138,110,33,95,44,178,133,65,0),(5223,'2015-03-14 14:56:59','2015-08-29 14:46:11',1,30002762,12,79,67,105,58,97,59,50,25,60,68,107,72,90,33,61,110,97,85,13,112,1,95,0),(5224,'2015-03-14 14:56:59','2015-08-29 14:46:11',1,30001713,45,74,33,20,21,17,12,32,39,38,170,59,19,32,24,58,84,5,3,65,5,111,137,0),(5225,'2015-03-14 14:56:59','2015-08-29 14:46:11',1,30004797,0,0,0,0,0,0,0,58,72,16,167,21,72,14,26,22,102,298,201,181,4,30,10,0),(5226,'2015-03-14 14:56:59','2015-03-14 14:56:59',1,30001525,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(5227,'2015-03-14 14:56:59','2015-08-29 14:46:11',1,30001803,0,4,0,0,0,0,47,0,0,0,0,66,0,0,0,0,0,123,131,0,0,140,0,0),(5228,'2015-03-14 14:56:59','2015-08-29 14:46:11',1,30000621,0,0,0,0,0,84,0,15,0,0,0,0,0,0,0,0,0,0,0,0,9,0,0,0),(5229,'2015-03-14 14:56:59','2015-08-29 14:46:11',1,30001915,0,0,94,83,77,0,0,0,0,0,0,0,0,41,0,0,106,86,0,0,1,1,0,0),(5230,'2015-03-14 14:56:59','2015-08-29 14:46:11',1,30004144,0,0,10,39,0,50,0,0,76,6,0,0,46,57,0,30,84,0,0,5,35,260,49,0),(5231,'2015-03-14 14:56:59','2015-08-29 14:46:11',1,30001710,71,26,7,167,62,185,102,163,67,14,97,123,137,155,119,111,127,44,25,67,44,87,130,0),(5232,'2015-03-14 14:56:59','2015-08-29 14:46:11',1,30003514,53,121,189,140,86,0,25,169,133,188,75,74,0,103,100,98,92,26,50,69,101,2,47,0),(5233,'2015-03-14 14:56:59','2015-08-29 14:46:11',1,30004236,9,0,17,0,0,368,0,0,0,0,0,0,10,10,15,15,29,76,0,0,0,0,1,0),(5234,'2015-03-14 14:56:59','2015-08-29 14:46:11',1,30004154,142,28,73,28,107,175,3,120,50,207,57,57,4,58,45,14,250,6,191,14,74,104,92,0),(5235,'2015-03-14 14:56:59','2015-08-29 14:46:11',1,30004265,13,70,0,0,0,0,89,0,0,0,0,15,0,0,0,0,11,0,0,0,0,0,9,0),(5236,'2015-03-14 14:56:59','2015-08-29 14:46:11',1,30003872,0,212,0,65,178,21,0,0,9,0,1,128,34,31,33,46,0,0,54,13,326,67,128,0),(5237,'2015-03-14 14:56:59','2015-08-29 14:46:11',1,30003997,29,31,0,0,0,0,0,0,8,9,0,0,3,5,0,0,8,60,78,42,11,3,4,0),(5238,'2015-03-14 14:56:59','2015-03-14 14:56:59',1,30004838,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(5239,'2015-03-14 14:56:59','2015-08-29 14:46:11',1,30004350,491,425,633,576,311,262,94,92,215,540,379,0,33,226,232,267,301,0,42,0,0,72,0,0),(5240,'2015-03-14 14:56:59','2015-03-14 14:56:59',1,30000530,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(5241,'2015-03-14 14:56:59','2015-08-29 14:46:11',1,30001204,205,61,39,192,5,3,19,12,0,4,4,0,19,14,45,34,7,32,114,37,0,0,3,0),(5242,'2015-03-14 14:56:59','2015-08-29 14:46:11',1,30004459,0,0,0,0,0,0,0,59,0,5,5,62,0,0,0,0,0,0,0,0,0,0,0,0),(5243,'2015-03-14 14:56:59','2015-08-29 14:46:11',1,30004051,0,0,0,0,0,0,0,0,0,18,131,0,0,0,0,0,0,0,0,0,0,0,0,0),(5244,'2015-03-14 14:56:59','2015-08-29 14:46:11',1,30000583,122,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0),(5245,'2015-03-14 14:56:59','2015-08-29 14:46:11',1,30004260,7,0,0,0,0,0,1,0,0,3,1,14,45,7,0,6,0,0,5,6,0,10,0,0),(5246,'2015-03-14 14:56:59','2015-08-29 14:46:11',1,30000036,9,37,0,2,2,3,0,25,19,3,3,0,3,0,0,0,0,0,0,0,28,0,0,0),(5247,'2015-03-14 14:56:59','2015-08-29 14:46:11',1,30001353,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,84,0),(5248,'2015-03-14 14:56:59','2015-08-29 14:46:11',1,30001024,0,0,96,7,0,0,0,0,5,0,6,1,15,34,34,39,33,7,1,0,8,5,1,0),(5249,'2015-03-14 14:56:59','2015-08-29 14:46:11',1,30003690,38,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,65,60,0,0),(5250,'2015-03-14 14:56:59','2015-08-29 14:46:11',1,30001395,340,730,471,719,537,326,609,255,328,391,413,574,335,385,451,506,873,354,839,1172,1443,1205,1653,0),(5251,'2015-03-14 14:56:59','2015-08-29 14:46:11',1,30000880,0,0,0,0,0,0,27,0,13,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(5252,'2015-03-14 14:56:59','2015-08-29 14:46:11',1,30001118,0,281,243,0,0,93,0,20,57,0,0,0,671,257,0,3,251,390,268,249,53,151,0,0),(5253,'2015-03-14 14:56:59','2015-08-29 14:46:11',1,30000241,0,0,0,0,0,125,0,0,0,0,0,0,0,63,0,0,0,0,0,0,0,0,0,0),(5254,'2015-03-14 14:56:59','2015-08-29 14:46:11',1,30002432,0,0,0,0,0,0,0,14,0,4,0,0,0,0,0,0,76,0,0,0,0,0,0,0),(5255,'2015-03-14 14:56:59','2015-08-29 14:46:11',1,30001427,217,229,284,229,156,506,33,98,48,78,146,207,297,224,270,397,170,105,196,191,338,371,373,0),(5256,'2015-03-14 14:56:59','2015-08-29 14:46:11',1,30005017,95,163,67,166,184,47,50,80,89,95,96,69,110,221,284,276,113,166,55,150,207,98,81,0),(5257,'2015-03-14 14:56:59','2015-08-29 14:46:11',1,30001668,7,0,85,2,48,0,4,64,0,0,0,0,0,0,0,0,1,0,0,0,37,0,0,0),(5258,'2015-03-14 14:56:59','2015-08-29 14:46:11',1,30004131,8,73,50,8,38,0,42,37,58,24,56,17,18,50,55,82,143,60,179,99,135,14,13,0),(5259,'2015-03-14 14:56:59','2015-08-29 14:46:11',1,30003960,0,59,0,0,0,0,48,0,7,0,0,30,0,0,5,74,0,0,0,0,0,0,0,0),(5260,'2015-03-14 14:56:59','2015-08-29 14:46:11',1,30003493,425,157,411,114,54,205,283,114,259,361,346,342,245,341,367,294,202,222,283,384,366,387,486,0),(5261,'2015-03-14 14:56:59','2015-08-29 14:46:11',1,30001271,16,17,2,4,7,2,0,5,77,53,21,50,1,5,16,53,19,122,122,114,0,17,4,0),(5262,'2015-03-14 14:56:59','2015-08-29 14:46:11',1,30000784,0,2,2,23,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,4,0,0),(5263,'2015-03-14 14:56:59','2015-08-29 14:46:11',1,30003753,4,419,490,228,229,0,776,208,10,107,461,303,0,0,0,20,262,0,0,3,274,411,215,0),(5264,'2015-03-14 14:56:59','2015-08-29 14:46:11',1,30001758,0,0,0,0,0,0,0,274,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(5265,'2015-03-14 14:56:59','2015-08-29 14:46:11',1,30003212,0,0,0,0,0,6,0,0,14,116,182,0,0,21,60,54,0,0,0,0,0,0,0,0),(5266,'2015-03-14 14:56:59','2015-08-29 14:46:11',1,30004026,0,0,0,0,0,0,0,0,0,4,0,0,0,0,0,0,4,0,0,0,0,0,0,0),(5267,'2015-03-14 14:56:59','2015-08-29 14:46:11',1,30002794,457,273,199,345,281,501,153,318,516,329,402,431,669,335,371,470,510,169,170,283,285,213,205,0),(5268,'2015-03-14 14:56:59','2015-08-29 14:46:11',1,30003414,137,88,155,19,84,161,154,113,126,239,244,171,62,282,287,115,66,45,117,175,329,145,121,0),(5269,'2015-03-14 14:56:59','2015-08-29 14:46:11',1,30004627,24,70,18,129,53,0,23,11,0,0,0,0,0,0,0,0,0,0,0,0,427,161,498,0),(5270,'2015-03-14 14:56:59','2015-08-29 14:46:11',1,30003178,0,0,0,0,0,127,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(5271,'2015-03-14 14:56:59','2015-03-14 14:56:59',1,30000408,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(5272,'2015-03-14 14:56:59','2015-08-29 14:46:11',1,30003545,20,63,28,8,90,48,23,7,12,44,69,2,7,81,41,32,70,0,147,96,11,9,13,0),(5273,'2015-03-14 14:56:59','2015-08-29 14:46:11',1,30005204,127,10,60,104,43,134,52,61,93,40,43,38,57,100,175,105,68,27,0,28,0,14,56,0),(5274,'2015-03-14 14:56:59','2015-08-29 14:46:11',1,30000916,37,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(5275,'2015-03-14 14:56:59','2015-08-29 14:46:11',1,30000007,133,49,45,61,37,87,57,1,52,29,51,0,221,65,74,97,0,42,71,162,156,21,11,0),(5276,'2015-03-14 14:56:59','2015-08-29 14:46:11',1,30004679,0,0,0,0,0,0,0,6,182,60,7,0,0,109,0,0,122,0,0,124,0,67,76,0),(5277,'2015-03-14 14:56:59','2015-08-29 14:46:11',1,30004548,0,0,112,0,0,0,48,11,23,0,0,0,12,0,0,0,0,0,0,0,0,0,0,0),(5278,'2015-03-14 14:56:59','2015-08-29 14:46:11',1,30003588,56,9,61,24,12,47,37,24,42,17,15,146,123,148,62,8,3,8,39,171,189,28,21,0),(5279,'2015-03-14 14:56:59','2015-08-29 14:46:11',1,30004977,0,0,34,0,0,7,70,57,36,21,0,19,14,6,6,44,0,0,0,5,0,2,25,0),(5280,'2015-03-14 14:56:59','2015-08-29 14:46:11',1,30004561,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,5,0,6,0,0,0,0),(5281,'2015-03-14 14:56:59','2015-08-29 14:46:11',1,30003591,45,30,48,6,0,0,148,169,261,4,31,0,107,26,26,0,0,42,153,150,0,53,10,0),(5282,'2015-03-14 14:56:59','2015-08-29 14:46:11',1,30003567,0,35,50,0,0,0,20,73,17,0,0,0,0,0,4,25,0,0,53,129,0,9,72,0),(5283,'2015-03-14 14:56:59','2015-08-29 14:46:11',1,30004174,0,0,0,0,0,0,0,0,0,0,0,82,0,0,0,0,0,0,0,59,0,83,55,0),(5284,'2015-03-14 14:56:59','2015-08-29 14:46:11',1,30003990,0,0,0,0,0,0,0,0,0,26,8,0,0,0,0,13,21,0,0,0,0,0,2,0),(5285,'2015-03-14 14:56:59','2015-08-29 14:46:11',1,30003705,0,9,64,0,0,72,4,4,0,0,0,0,0,0,0,0,0,0,37,13,0,0,28,0),(5286,'2015-03-14 14:56:59','2015-03-14 14:56:59',1,30002310,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(5287,'2015-03-14 14:56:59','2015-08-29 14:46:11',1,30000231,360,45,375,544,288,607,334,204,85,20,1,78,172,8,34,100,402,54,12,56,26,512,31,0),(5288,'2015-03-14 14:56:59','2015-08-29 14:46:11',1,30004617,135,628,345,185,240,145,0,7,0,0,0,41,0,20,77,77,37,0,14,0,55,40,121,0),(5289,'2015-03-14 14:56:59','2015-08-29 14:46:11',1,30002925,1220,529,729,1255,1194,479,554,296,909,695,382,791,1058,493,460,748,550,155,775,344,442,540,759,0),(5290,'2015-03-14 14:56:59','2015-08-29 14:46:11',1,30004719,40,0,34,0,4,0,0,0,0,0,0,0,3,0,6,6,5,0,0,0,6,0,28,0),(5291,'2015-03-14 14:56:59','2015-08-29 14:46:11',1,30004554,5,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(5292,'2015-03-14 14:56:59','2015-03-14 14:56:59',1,30000506,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(5293,'2015-03-14 14:56:59','2015-08-29 14:46:11',1,30004542,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,134,0,0,0,0,0,0,0),(5294,'2015-03-14 14:56:59','2015-08-29 14:46:11',1,30001956,0,0,0,0,0,0,0,0,13,0,0,0,0,0,0,0,0,0,14,9,0,0,0,0),(5295,'2015-03-14 14:56:59','2015-08-29 14:46:11',1,30004921,1347,30,177,0,39,221,695,852,129,199,179,55,220,138,108,43,195,0,0,88,3,154,0,0),(5296,'2015-03-14 14:56:59','2015-08-29 14:46:11',1,30000266,46,0,231,0,0,13,8,0,24,87,0,0,0,0,0,0,0,0,0,0,0,0,1,0),(5297,'2015-03-14 14:56:59','2015-03-14 14:56:59',1,30000597,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(5298,'2015-03-14 14:56:59','2015-03-14 14:56:59',1,30001486,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(5299,'2015-03-14 14:56:59','2015-08-29 14:46:11',1,30001074,0,0,0,0,0,0,0,0,3,0,0,0,3,84,85,19,0,0,0,0,0,0,0,0),(5300,'2015-03-14 14:56:59','2015-08-29 14:46:11',1,30002292,82,0,0,3,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(5301,'2015-03-14 14:56:59','2015-03-14 14:56:59',1,30001097,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(5302,'2015-03-14 14:56:59','2015-08-29 14:46:11',1,30005132,0,0,0,0,0,20,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(5303,'2015-03-14 14:56:59','2015-08-29 14:46:11',1,30002368,0,0,0,0,0,31,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(5304,'2015-03-14 14:56:59','2015-03-14 14:56:59',1,30001454,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(5305,'2015-03-14 14:56:59','2015-08-29 14:46:11',1,30001263,0,22,99,0,0,16,0,1,86,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0),(5306,'2015-03-14 14:56:59','2015-08-29 14:46:11',1,30002141,9,24,91,77,39,17,0,0,0,0,0,0,0,0,0,0,0,159,66,37,0,0,1,0),(5307,'2015-03-14 14:56:59','2015-03-14 14:56:59',1,30000387,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(5308,'2015-03-14 14:56:59','2015-08-29 14:46:11',1,30004341,352,104,3,254,275,5,80,159,18,29,29,0,0,0,49,119,50,0,24,16,0,0,0,0),(5309,'2015-03-14 14:56:59','2015-03-14 14:56:59',1,30001613,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(5310,'2015-03-14 14:56:59','2015-03-14 14:56:59',1,30003646,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(5311,'2015-03-14 14:56:59','2015-08-29 14:46:11',1,30004965,1410,900,1400,104,192,1183,2200,1463,0,306,817,1600,425,769,848,1226,2199,63,397,401,1680,2220,2087,0),(5312,'2015-03-14 14:56:59','2015-08-29 14:46:11',1,30003154,121,101,133,128,0,75,283,317,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(5313,'2015-03-14 14:56:59','2015-08-29 14:46:11',1,30002617,0,292,303,0,0,0,668,43,0,0,54,516,0,1,53,53,0,0,0,0,397,609,0,0),(5314,'2015-03-14 14:56:59','2015-08-29 14:46:11',1,30004425,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,30,0,0,0,0,4,0),(5315,'2015-03-14 14:56:59','2015-08-29 14:46:11',1,30003357,0,77,0,0,0,0,0,0,0,0,0,0,2,0,0,0,0,0,0,0,0,0,0,0),(5316,'2015-03-14 14:56:59','2015-08-29 14:46:11',1,30001919,0,3,0,0,0,1,0,0,0,0,0,0,0,19,0,0,32,0,25,0,0,44,100,0),(5317,'2015-03-14 14:56:59','2015-08-29 14:46:11',1,30003783,9,162,237,316,173,100,0,58,82,237,226,83,148,99,174,211,122,130,85,65,107,69,141,0),(5318,'2015-03-14 14:56:59','2015-08-29 14:46:11',1,30003652,517,412,80,283,224,126,459,297,0,0,0,0,7,0,0,31,0,0,0,0,0,0,0,0),(5319,'2015-03-14 14:56:59','2015-08-29 14:46:11',1,30003991,0,51,129,1,42,128,254,286,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(5320,'2015-03-14 14:56:59','2015-08-29 14:46:11',1,30001929,0,0,0,0,0,0,0,0,5,123,162,0,199,125,1,0,0,0,0,0,0,0,0,0),(5321,'2015-03-14 14:56:59','2015-08-29 14:46:11',1,30003989,8,0,0,0,0,0,21,0,29,108,1,0,0,0,0,0,0,49,0,115,0,0,0,0),(5322,'2015-03-14 14:56:59','2015-08-29 14:46:11',1,30004063,0,0,0,0,0,0,117,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(5323,'2015-03-14 14:56:59','2015-08-29 14:46:11',1,30003124,62,0,0,0,0,135,0,0,80,0,0,0,0,24,64,99,746,671,453,0,0,660,734,0),(5324,'2015-03-14 14:56:59','2015-08-29 14:46:11',1,30004666,0,0,0,161,68,0,0,0,0,0,0,17,28,0,0,0,0,0,54,68,0,0,0,0),(5325,'2015-03-14 14:56:59','2015-03-14 14:56:59',1,30000414,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(5326,'2015-03-14 14:56:59','2015-08-29 14:46:11',1,30001304,0,0,0,70,0,0,0,0,0,70,20,0,0,126,61,0,0,0,6,0,0,1,0,0),(5327,'2015-03-14 14:56:59','2015-03-14 14:56:59',1,30002337,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(5328,'2015-03-14 14:56:59','2015-08-29 14:46:11',1,30001091,0,0,0,0,0,0,0,0,3,0,0,0,0,0,0,0,0,0,4,0,0,0,0,0),(5329,'2015-03-14 14:56:59','2015-03-14 14:56:59',1,30000739,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(5330,'2015-03-14 14:56:59','2015-08-29 14:46:11',1,30001582,0,0,0,0,0,0,0,0,4,23,165,444,12,13,20,18,17,0,0,0,12,8,53,0),(5331,'2015-03-14 14:56:59','2015-08-29 14:46:11',1,30001861,136,0,0,0,0,0,127,0,0,0,0,0,0,3,3,0,0,0,0,0,0,0,0,0),(5332,'2015-03-14 14:56:59','2015-08-29 14:46:11',1,30004607,0,0,0,3,0,0,0,0,1,0,0,0,0,0,0,0,58,0,0,0,0,1,0,0),(5333,'2015-03-14 14:56:59','2015-08-29 14:46:11',1,30001345,0,0,29,0,0,0,70,0,42,0,0,0,0,0,0,0,0,0,0,0,0,1,71,0),(5334,'2015-03-14 14:56:59','2015-08-29 14:46:11',1,30004707,0,0,0,84,43,0,0,0,0,0,0,30,0,25,11,7,15,0,0,48,12,7,0,0),(5335,'2015-03-14 14:56:59','2015-03-14 14:56:59',1,30002137,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(5336,'2015-03-14 14:56:59','2015-08-29 14:46:11',1,30002117,3,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(5337,'2015-03-14 14:56:59','2015-08-29 14:46:11',1,30004584,0,0,0,5,128,0,0,0,0,3,3,0,0,0,0,5,0,0,0,0,0,0,0,0),(5338,'2015-03-14 14:56:59','2015-08-29 14:46:11',1,30000304,79,0,67,40,96,75,6,3,451,175,21,0,9,0,0,0,31,137,304,124,312,281,13,0),(5339,'2015-03-14 14:56:59','2015-03-14 14:56:59',1,30001455,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(5340,'2015-03-14 14:56:59','2015-08-29 14:46:11',1,30004741,100,117,0,105,328,134,0,142,0,0,0,88,0,35,17,0,0,0,0,0,62,1138,469,0),(5341,'2015-03-14 14:56:59','2015-08-29 14:46:11',1,30003927,0,0,47,0,0,0,4,16,0,0,0,1,11,0,0,0,0,1,0,0,0,0,3,0),(5342,'2015-03-14 14:56:59','2015-08-29 14:46:11',1,30000006,46,16,16,31,18,10,84,13,78,51,78,30,38,86,99,117,66,5,35,0,35,92,37,0),(5343,'2015-03-14 14:56:59','2015-08-29 14:46:11',1,30003497,12,228,140,259,87,53,240,152,304,51,57,392,82,308,316,287,379,269,112,296,165,198,113,0),(5344,'2015-03-14 14:56:59','2015-08-29 14:46:11',1,30003543,0,0,0,0,0,22,0,0,0,16,17,0,20,9,9,4,3,0,0,0,2,9,9,0),(5345,'2015-03-14 14:56:59','2015-08-29 14:46:11',1,30005211,7,12,0,11,8,5,0,0,0,1,26,0,4,0,0,0,13,4,0,0,10,94,3,0),(5346,'2015-03-14 14:56:59','2015-08-29 14:46:11',1,30005079,9,0,0,0,36,0,0,0,0,0,0,0,0,0,9,152,0,3,0,3,0,1,1,0),(5347,'2015-03-14 14:56:59','2015-08-29 14:46:11',1,30002280,129,144,126,209,125,143,124,131,100,120,216,132,119,367,350,243,86,40,223,92,276,247,292,0),(5348,'2015-03-14 14:56:59','2015-08-29 14:46:11',1,30003996,0,0,0,0,0,0,0,0,0,0,0,0,59,0,0,0,0,0,0,0,0,0,0,0),(5349,'2015-03-14 14:56:59','2015-08-29 14:46:11',1,30004290,123,4,146,122,32,14,0,0,72,2,0,0,8,21,0,0,24,4,39,10,57,74,252,0),(5350,'2015-03-14 14:56:59','2015-08-29 14:46:11',1,30004232,9,3,0,66,151,0,25,0,27,1,0,0,15,0,0,0,56,0,0,0,0,12,0,0),(5351,'2015-03-14 14:56:59','2015-08-29 14:46:11',1,30004285,18,4,27,51,59,56,0,0,19,4,13,36,8,0,0,13,39,35,62,45,289,128,112,0),(5352,'2015-03-14 14:56:59','2015-08-29 14:46:11',1,30002121,0,0,0,0,0,0,0,0,12,0,0,0,49,38,0,0,0,0,0,0,0,0,0,0),(5353,'2015-03-14 14:56:59','2015-08-29 14:46:11',1,30004701,68,101,100,0,0,92,177,205,0,127,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(5354,'2015-03-14 14:56:59','2015-08-29 14:46:11',1,30004817,0,0,0,0,0,0,30,33,0,0,0,0,0,0,0,0,0,0,0,0,13,0,7,0),(5355,'2015-03-14 14:56:59','2015-08-29 14:46:11',1,30001354,63,0,0,0,0,0,0,0,0,5,11,11,9,0,5,14,5,10,74,0,0,0,165,0),(5356,'2015-03-14 14:56:59','2015-08-29 14:46:11',1,30000719,204,0,12,58,172,12,15,17,55,22,43,113,38,38,32,83,200,14,313,151,0,14,45,0),(5357,'2015-03-14 14:56:59','2015-08-29 14:46:11',1,30004704,1787,264,44,497,319,83,1691,1980,103,778,1336,1178,1240,284,450,202,789,0,0,0,10,89,784,0),(5358,'2015-03-14 14:56:59','2015-08-29 14:46:11',1,30001734,50,39,23,29,27,62,0,25,20,64,72,40,66,47,140,134,71,41,171,64,35,176,116,0),(5359,'2015-03-14 14:56:59','2015-08-29 14:46:11',1,30000055,73,5,74,22,1,2,7,66,0,15,92,61,16,21,48,78,75,0,0,24,1,72,107,0),(5360,'2015-03-14 14:56:59','2015-08-29 14:46:11',1,30003928,1,0,0,55,14,14,26,25,0,0,0,0,52,0,0,0,7,9,0,0,0,0,0,0),(5361,'2015-03-14 14:56:59','2015-08-29 14:46:11',1,30000064,35,20,61,12,67,46,134,33,0,47,99,98,26,21,52,174,11,68,0,0,181,80,45,0),(5362,'2015-03-14 14:56:59','2015-08-29 14:46:11',1,30001765,0,0,5,0,0,0,0,46,0,0,4,0,0,0,0,0,0,0,0,0,0,0,167,0),(5363,'2015-03-14 14:56:59','2015-08-29 14:46:11',1,30000688,0,9,13,8,9,108,0,0,0,30,0,1,0,42,18,55,42,1,1,1,0,0,0,0),(5364,'2015-03-14 14:56:59','2015-08-29 14:46:11',1,30001866,0,0,57,0,0,0,17,174,0,0,0,0,36,0,0,0,11,0,0,0,7,4,0,0),(5365,'2015-03-14 14:56:59','2015-03-14 14:56:59',1,30000551,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(5366,'2015-03-14 14:56:59','2015-08-29 14:46:11',1,30001922,160,0,93,110,55,19,0,21,60,41,0,0,35,0,0,57,0,57,13,88,99,51,23,0),(5367,'2015-03-14 14:56:59','2015-08-29 14:46:11',1,30003618,103,0,0,0,0,1,0,0,31,0,0,0,33,0,41,167,0,0,0,0,0,0,0,0),(5368,'2015-03-14 14:56:59','2015-08-29 14:46:11',1,30003550,0,0,0,0,0,0,0,20,1,0,0,0,0,0,0,0,1,0,0,118,0,158,1,0),(5369,'2015-03-14 14:56:59','2015-08-29 14:46:11',1,30005208,0,3,7,1,1,3,0,0,0,22,22,40,108,115,0,15,14,13,0,0,3,92,17,0),(5370,'2015-03-14 14:56:59','2015-08-29 14:46:11',1,30004489,4,35,91,45,2,11,114,89,104,755,328,109,238,306,21,14,214,28,93,0,170,96,709,0),(5371,'2015-03-14 14:56:59','2015-08-29 14:46:11',1,30004107,70,140,24,23,13,76,27,59,138,6,17,3,5,5,30,27,1,0,17,101,77,97,39,0),(5372,'2015-03-14 14:56:59','2015-08-29 14:46:11',1,30004127,65,73,35,191,176,100,85,126,41,182,61,40,119,175,144,180,108,1,79,147,117,53,185,0),(5373,'2015-03-14 14:56:59','2015-08-29 14:46:11',1,30005055,0,62,17,73,7,31,7,161,1,38,59,93,43,97,163,114,191,45,3,92,28,66,155,0),(5374,'2015-03-14 14:56:59','2015-08-29 14:46:11',1,30004140,1,0,0,19,18,0,0,0,0,0,2,0,0,58,28,21,0,76,21,0,0,149,86,0),(5375,'2015-03-14 14:56:59','2015-08-29 14:46:11',1,30002203,89,253,121,62,56,264,176,85,162,401,355,468,450,296,476,452,182,7,93,287,298,140,126,0),(5376,'2015-03-14 14:56:59','2015-08-29 14:46:11',1,30003562,1,3,0,0,0,75,0,0,0,0,0,0,0,0,0,0,38,0,2,0,0,0,1,0),(5377,'2015-03-14 14:56:59','2015-08-29 14:46:11',1,30003939,0,0,0,7,114,0,0,0,0,0,0,0,70,14,0,0,47,202,0,0,0,0,0,0),(5378,'2015-03-14 14:56:59','2015-08-29 14:46:11',1,30001732,12,82,59,152,154,36,54,44,47,58,34,33,0,6,16,45,51,54,15,107,25,9,100,0),(5379,'2015-03-14 14:56:59','2015-08-29 14:46:11',1,30004363,0,96,151,72,174,18,200,47,18,0,0,0,0,0,43,79,0,0,0,0,0,0,0,0),(5380,'2015-03-14 14:56:59','2015-08-29 14:46:11',1,30001810,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,0,0,0),(5381,'2015-03-14 14:56:59','2015-08-29 14:46:11',1,30000937,0,11,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,75,0,0,0,0),(5382,'2015-03-14 14:56:59','2015-08-29 14:46:11',1,30003619,62,89,0,22,0,0,0,0,24,17,18,0,3,0,0,0,14,0,17,96,0,0,0,0),(5383,'2015-03-14 14:56:59','2015-08-29 14:46:11',1,30002130,215,0,0,0,0,0,66,53,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(5384,'2015-03-14 14:56:59','2015-08-29 14:46:11',1,30001996,62,36,70,9,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,0,79,0,68,0),(5385,'2015-03-14 14:56:59','2015-08-29 14:46:11',1,30004888,0,0,0,0,0,0,0,0,0,0,0,0,0,1,45,44,0,5,114,18,0,0,0,0),(5386,'2015-03-14 14:56:59','2015-03-14 14:56:59',1,30004498,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(5387,'2015-03-14 14:56:59','2015-08-29 14:46:11',1,30003658,0,0,0,0,0,0,22,0,0,0,0,0,0,0,32,32,0,0,0,0,0,0,0,0),(5388,'2015-03-14 14:56:59','2015-03-14 14:56:59',1,30000407,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(5389,'2015-03-14 14:56:59','2015-08-29 14:46:11',1,30002018,0,152,322,0,0,20,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(5390,'2015-03-14 14:56:59','2015-08-29 14:46:11',1,30000449,59,0,0,0,0,43,63,0,178,594,666,813,0,169,487,680,459,113,0,168,646,258,418,0),(5391,'2015-03-14 14:56:59','2015-08-29 14:46:11',1,30000296,4,233,0,0,128,0,0,1,100,113,80,180,0,0,0,0,0,48,0,0,0,0,0,0),(5392,'2015-03-14 14:56:59','2015-03-14 14:56:59',1,30000935,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(5393,'2015-03-14 14:56:59','2015-08-29 14:46:11',1,30004820,27,0,0,0,26,0,0,5,0,0,0,0,0,0,0,0,10,0,0,0,0,0,0,0),(5394,'2015-03-14 14:56:59','2015-08-29 14:46:11',1,30003289,4,0,0,0,0,0,0,0,7,0,4,8,21,0,0,0,3,0,0,0,8,0,12,0),(5395,'2015-03-14 14:56:59','2015-08-29 14:46:11',1,30000699,0,0,0,0,0,0,0,0,0,0,0,0,3,0,0,0,0,0,0,0,0,0,0,0),(5396,'2015-03-14 14:56:59','2015-08-29 14:46:11',1,30000802,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,89,80,0),(5397,'2015-03-14 14:56:59','2015-08-29 14:46:11',1,30004882,426,274,741,771,378,50,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(5398,'2015-03-14 14:56:59','2015-08-29 14:46:11',1,30001133,0,0,0,27,27,0,0,0,52,134,133,53,144,12,0,19,0,112,108,101,17,0,0,0),(5399,'2015-03-14 14:56:59','2015-08-29 14:46:11',1,30005221,131,75,59,31,4,181,80,59,38,157,90,34,187,117,127,83,40,63,64,182,110,129,117,0),(5400,'2015-03-14 14:56:59','2015-08-29 14:46:11',1,30001131,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,27,60,0),(5401,'2015-03-14 14:56:59','2015-08-29 14:46:11',1,30005067,3,12,9,0,0,0,0,46,0,0,0,14,119,0,0,0,126,0,0,0,0,68,13,0),(5402,'2015-03-14 14:56:59','2015-08-29 14:46:11',1,30004081,312,404,370,248,263,108,139,212,449,416,409,293,233,401,307,166,138,517,291,530,451,424,365,0),(5403,'2015-03-14 14:56:59','2015-08-29 14:46:11',1,30004160,45,145,80,93,51,219,112,37,165,379,159,152,125,9,47,248,265,209,145,103,41,181,131,0),(5404,'2015-03-14 14:56:59','2015-08-29 14:46:11',1,30002923,1320,227,470,321,686,100,222,113,0,64,74,605,95,1000,691,521,549,88,193,487,215,751,663,0),(5405,'2015-03-14 14:56:59','2015-08-29 14:46:11',1,30001226,1,0,0,0,0,16,82,37,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0),(5406,'2015-03-14 14:56:59','2015-08-29 14:46:11',1,30004496,0,0,11,0,0,0,0,0,0,0,0,0,0,182,145,94,217,0,0,0,0,5,0,0),(5407,'2015-03-14 14:56:59','2015-08-29 14:46:11',1,30004469,141,0,32,223,326,285,0,0,434,565,1121,1016,75,795,695,528,231,58,228,338,474,663,960,0),(5408,'2015-03-14 14:56:59','2015-08-29 14:46:11',1,30002352,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,39,41,0,0),(5409,'2015-03-14 14:56:59','2015-03-14 14:56:59',1,30000328,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(5410,'2015-03-14 14:56:59','2015-03-14 14:56:59',1,30001072,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(5411,'2015-03-14 14:56:59','2015-08-29 14:46:11',1,30003747,0,0,0,26,0,0,0,209,0,0,18,19,13,506,508,591,182,0,0,0,83,43,82,0),(5412,'2015-03-14 14:56:59','2015-08-29 14:46:11',1,30004660,0,0,0,0,0,0,0,0,132,303,122,6,50,93,66,0,106,0,51,0,65,290,377,0),(5413,'2015-03-14 14:56:59','2015-08-29 14:46:11',1,30004955,0,0,0,0,0,0,0,0,6,13,0,0,24,0,33,66,0,0,0,0,4,0,0,0),(5414,'2015-03-14 14:56:59','2015-08-29 14:46:11',1,30004658,0,345,47,363,517,323,0,0,23,141,98,121,0,0,0,0,0,60,0,0,129,172,186,0),(5415,'2015-03-14 14:56:59','2015-08-29 14:46:11',1,30003369,0,0,0,21,34,0,0,14,16,46,30,17,16,16,26,11,4,0,0,20,2,12,21,0),(5416,'2015-03-14 14:56:59','2015-03-14 14:56:59',1,30001621,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(5417,'2015-03-14 14:56:59','2015-08-29 14:46:11',1,30003272,0,5,4,7,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,108,0),(5418,'2015-03-14 14:56:59','2015-08-29 14:46:11',1,30001590,0,0,0,0,0,0,0,0,0,90,87,9,72,9,0,0,0,0,0,0,0,0,0,0),(5419,'2015-03-14 14:56:59','2015-08-29 14:46:11',1,30004687,0,0,0,0,0,0,0,0,15,121,25,0,0,0,0,0,0,0,0,0,0,0,4,0),(5420,'2015-03-14 14:56:59','2015-08-29 14:46:11',1,30003620,1,51,0,0,0,18,0,0,0,33,0,0,25,0,35,53,0,0,0,0,0,79,0,0),(5421,'2015-03-14 14:56:59','2015-08-29 14:46:11',1,30004777,0,0,0,0,0,0,0,0,10,0,0,4,0,0,0,0,0,3,10,5,0,29,11,0),(5422,'2015-03-14 14:56:59','2015-08-29 14:46:11',1,30004540,0,0,0,0,0,0,0,20,0,9,10,25,0,0,0,3,14,77,58,0,9,19,27,0),(5423,'2015-03-14 14:56:59','2015-03-14 14:56:59',1,30004528,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(5424,'2015-03-14 14:56:59','2015-08-29 14:46:11',1,30001168,0,0,1,0,0,0,0,0,0,0,0,13,0,5,0,0,0,0,0,0,20,0,0,0),(5425,'2015-03-14 14:56:59','2015-08-29 14:46:11',1,30004031,632,0,54,984,694,0,0,0,0,0,0,3,0,388,1088,1560,521,0,0,0,0,46,0,0),(5426,'2015-03-14 14:56:59','2015-08-29 14:46:11',1,30004437,0,94,0,0,0,0,0,0,0,0,0,0,0,0,0,0,99,0,0,0,0,0,194,0),(5427,'2015-03-14 14:56:59','2015-08-29 14:46:11',1,30001004,0,0,0,0,33,1,0,47,79,8,19,0,26,7,3,3,0,0,5,3,4,5,1,0),(5428,'2015-03-14 14:56:59','2015-08-29 14:46:11',1,30002360,0,0,0,0,0,2,8,0,0,0,0,0,4,3,3,1,4,0,0,0,0,0,0,0),(5429,'2015-03-14 14:56:59','2015-03-14 14:56:59',1,30000356,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(5430,'2015-03-14 14:56:59','2015-08-29 14:46:11',1,30001807,52,0,159,0,0,86,111,59,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(5431,'2015-03-14 14:56:59','2015-08-29 14:46:11',1,30002914,1160,536,1540,1580,1359,1340,860,320,226,281,583,762,471,778,565,254,328,705,777,675,560,1240,1660,0),(8078,'2015-08-19 19:10:04','2015-08-19 19:10:04',1,31000001,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(8081,'2015-08-19 19:10:04','2015-08-19 19:10:04',1,31000002,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(8082,'2015-08-19 19:10:04','2015-08-19 19:10:04',1,31000003,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(8083,'2015-08-19 19:10:04','2015-08-19 19:10:04',1,31000006,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(8087,'2015-08-19 19:10:04','2015-08-19 19:10:04',1,31000004,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0); +INSERT INTO `system_kills_factions` VALUES (1,'2015-03-14 14:56:58','2015-10-11 16:46:38',1,30000995,0,0,0,0,0,0,0,0,8,0,8,0,0,0,0,0,0,0,0,0,0,0,0,0),(2,'2015-03-14 14:56:58','2015-03-14 14:56:58',1,30001779,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(3,'2015-03-14 14:56:58','2015-10-11 16:46:38',1,30000838,190,312,201,639,108,22,350,64,127,54,151,300,313,219,101,48,61,155,198,0,150,190,32,234),(4,'2015-03-14 14:56:58','2015-10-11 16:46:38',1,30001904,0,0,0,0,0,0,0,1,0,0,1,1,10,0,0,0,0,0,26,15,6,0,0,0),(5,'2015-03-14 14:56:58','2015-10-11 16:46:38',1,30004510,0,0,0,0,0,0,0,0,2,0,0,1,66,161,76,0,0,0,0,0,0,0,0,0),(6,'2015-03-14 14:56:58','2015-10-11 16:46:38',1,30003693,18,174,31,215,438,415,349,266,283,188,254,284,407,198,284,109,58,239,403,280,274,609,129,146),(7,'2015-03-14 14:56:58','2015-10-11 16:46:38',1,30001287,0,3,0,0,0,0,85,0,0,0,3,0,0,5,0,0,0,0,0,43,8,0,0,0),(8,'2015-03-14 14:56:58','2015-10-11 16:46:38',1,30000480,0,0,0,0,0,0,0,0,81,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(9,'2015-03-14 14:56:58','2015-10-11 16:46:38',1,30002454,0,33,0,38,42,23,240,247,501,378,223,89,186,48,129,89,62,410,0,0,162,201,234,231),(10,'2015-03-14 14:56:58','2015-10-11 16:46:38',1,30004756,0,0,0,0,0,0,0,84,0,240,750,275,17,248,193,104,172,89,5,142,412,48,695,441),(11,'2015-03-14 14:56:58','2015-10-11 16:46:38',1,30004674,0,0,0,0,0,0,0,0,0,0,0,0,0,2,34,51,30,0,0,0,0,0,0,0),(12,'2015-03-14 14:56:58','2015-10-11 16:46:38',1,30001150,0,3,0,0,0,0,13,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(13,'2015-03-14 14:56:58','2015-10-11 16:46:38',1,30004930,0,0,0,0,27,46,0,0,0,0,0,0,0,0,0,0,0,115,0,49,0,0,0,0),(14,'2015-03-14 14:56:58','2015-10-11 16:46:38',1,30001322,23,0,97,0,0,0,0,0,0,8,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(15,'2015-03-14 14:56:58','2015-10-11 16:46:38',1,30003114,313,289,223,231,265,168,21,183,246,0,16,0,0,0,0,0,0,0,0,0,0,0,0,0),(16,'2015-03-14 14:56:58','2015-03-14 14:56:58',1,30003198,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(17,'2015-03-14 14:56:58','2015-10-11 16:46:38',1,30000222,0,0,0,122,105,132,0,0,63,11,68,53,29,4,8,16,23,41,0,30,30,15,66,0),(18,'2015-03-14 14:56:58','2015-10-11 16:46:38',1,30001065,9,44,0,0,0,0,0,0,0,0,0,0,0,17,0,0,0,4,0,0,0,0,0,0),(19,'2015-03-14 14:56:58','2015-10-11 16:46:38',1,30005191,114,0,0,0,0,0,0,0,4,0,0,0,1,0,0,0,0,0,3,0,0,0,3,0),(20,'2015-03-14 14:56:58','2015-10-11 16:46:38',1,30003615,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,0,0,0,0,80),(21,'2015-03-14 14:56:58','2015-10-11 16:46:38',1,30000799,307,0,0,0,0,0,137,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(22,'2015-03-14 14:56:58','2015-10-11 16:46:38',1,30000440,0,0,0,0,0,0,0,0,0,0,0,46,33,0,0,0,0,0,0,0,0,3,0,0),(23,'2015-03-14 14:56:58','2015-10-11 16:46:38',1,30003947,0,0,0,0,60,60,160,0,0,22,44,0,0,0,0,0,0,0,0,0,0,0,0,0),(24,'2015-03-14 14:56:58','2015-10-11 16:46:38',1,30004509,0,2,0,0,0,0,0,0,126,0,0,0,0,0,0,0,0,0,0,0,0,0,17,0),(25,'2015-03-14 14:56:58','2015-10-11 16:46:38',1,30001295,0,0,0,0,0,0,0,1,0,0,0,0,0,0,39,0,0,0,0,0,0,0,0,0),(26,'2015-03-14 14:56:58','2015-10-11 16:46:38',1,30000857,0,87,0,4,0,0,0,87,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(27,'2015-03-14 14:56:58','2015-03-14 14:56:58',1,30004656,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(28,'2015-03-14 14:56:58','2015-10-11 16:46:38',1,30004596,0,0,0,0,0,0,0,0,15,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(29,'2015-03-14 14:56:58','2015-10-11 16:46:38',1,30004068,10,58,0,66,30,30,0,0,13,95,36,0,0,0,0,0,0,168,0,0,0,0,0,0),(30,'2015-03-14 14:56:58','2015-10-11 16:46:38',1,30005186,0,0,0,0,0,0,6,0,0,0,0,0,0,0,0,0,0,63,0,0,0,0,0,0),(31,'2015-03-14 14:56:58','2015-10-11 16:46:38',1,30002609,310,158,298,132,134,68,247,60,6,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(32,'2015-03-14 14:56:58','2015-10-11 16:46:38',1,30003149,0,9,0,0,0,0,43,0,0,7,0,0,0,0,0,0,0,0,0,0,0,0,101,21),(33,'2015-03-14 14:56:58','2015-10-11 16:46:38',1,30000707,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,48,0,0,0,0,0,0),(34,'2015-03-14 14:56:58','2015-03-14 14:56:58',1,30000822,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(35,'2015-03-14 14:56:58','2015-10-11 16:46:38',1,30002460,58,120,193,146,97,211,527,355,314,493,326,269,264,5,349,331,131,338,0,83,214,175,306,276),(36,'2015-03-14 14:56:58','2015-03-14 14:56:58',1,30000623,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(37,'2015-03-14 14:56:58','2015-10-11 16:46:38',1,30000216,143,321,418,129,31,124,79,0,0,45,38,41,185,312,208,44,82,58,359,64,0,414,435,155),(38,'2015-03-14 14:56:58','2015-10-11 16:46:38',1,30001120,47,897,0,724,559,559,1,1034,1617,74,128,237,341,0,325,283,132,514,67,0,0,106,182,203),(39,'2015-03-14 14:56:58','2015-10-11 16:46:38',1,30000596,0,0,0,16,0,0,59,0,0,0,0,0,0,17,0,0,0,0,0,0,0,0,0,0),(40,'2015-03-14 14:56:58','2015-10-11 16:46:38',1,30002168,0,0,0,0,0,2,0,11,694,28,23,30,23,92,125,196,94,28,14,42,41,9,26,178),(41,'2015-03-14 14:56:58','2015-10-11 16:46:38',1,30004954,97,0,0,100,16,54,144,1581,321,0,0,0,0,0,23,0,452,960,0,0,0,407,262,16),(42,'2015-03-14 14:56:58','2015-10-11 16:46:38',1,30003743,11,40,14,50,195,187,12,117,43,112,137,147,132,56,46,81,131,125,438,242,79,90,210,225),(43,'2015-03-14 14:56:58','2015-03-14 14:56:58',1,30000351,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(44,'2015-03-14 14:56:58','2015-10-11 16:46:38',1,30004947,0,200,51,0,204,71,31,87,0,0,0,0,8,53,0,0,0,0,50,0,0,0,16,271),(45,'2015-03-14 14:56:58','2015-10-11 16:46:38',1,30003782,1,10,6,48,0,0,0,0,92,0,0,0,0,0,0,0,0,0,0,0,0,0,51,32),(46,'2015-03-14 14:56:58','2015-10-11 16:46:38',1,30004214,48,0,466,214,638,202,328,205,628,483,361,315,580,423,0,53,53,551,8,27,447,202,229,161),(47,'2015-03-14 14:56:58','2015-10-11 16:46:38',1,30004549,0,22,0,0,136,104,0,0,0,0,0,0,0,6,0,0,0,14,0,0,0,4,0,67),(48,'2015-03-14 14:56:58','2015-10-11 16:46:38',1,30004917,152,726,0,39,240,185,160,527,190,50,325,646,109,289,210,286,630,307,0,92,78,152,257,164),(49,'2015-03-14 14:56:58','2015-10-11 16:46:38',1,30003296,8,0,1,11,2,0,0,0,0,47,78,41,0,69,8,8,0,0,0,0,0,0,0,78),(50,'2015-03-14 14:56:58','2015-10-11 16:46:38',1,30005102,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,5),(51,'2015-03-14 14:56:58','2015-10-11 16:46:38',1,30001889,0,5,0,0,12,16,99,4,197,92,60,69,62,151,140,34,130,59,2,29,40,224,89,14),(52,'2015-03-14 14:56:58','2015-10-11 16:46:38',1,30001856,0,0,0,0,0,0,0,0,0,55,0,0,0,183,0,0,0,68,0,0,0,0,0,0),(53,'2015-03-14 14:56:58','2015-10-11 16:46:38',1,30000522,7,168,262,44,36,5,0,100,271,193,171,235,189,34,94,93,202,90,0,70,0,51,243,162),(54,'2015-03-14 14:56:58','2015-03-14 14:56:58',1,30001643,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(55,'2015-03-14 14:56:58','2015-10-11 16:46:38',1,30001551,0,0,0,0,0,0,0,0,0,371,213,216,95,189,371,219,145,3,33,53,0,151,115,18),(56,'2015-03-14 14:56:58','2015-10-11 16:46:38',1,30000267,0,0,132,72,43,27,0,0,0,0,14,31,0,0,0,0,0,0,0,0,0,61,0,0),(57,'2015-03-14 14:56:58','2015-10-11 16:46:38',1,30003330,11,27,0,0,98,0,0,0,1,0,0,0,2,21,0,0,0,4,0,0,0,0,0,0),(58,'2015-03-14 14:56:58','2015-10-11 16:46:38',1,30000645,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,149,0,0,0,0,4,55),(59,'2015-03-14 14:56:58','2015-10-11 16:46:38',1,30003647,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,14,0,0,0,0,0),(60,'2015-03-14 14:56:58','2015-03-14 14:56:58',1,30002308,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(61,'2015-03-14 14:56:58','2015-03-14 14:56:58',1,30001521,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(62,'2015-03-14 14:56:58','2015-10-11 16:46:38',1,30000262,445,82,130,99,198,187,78,43,216,243,122,1,67,97,415,888,1473,305,556,295,278,329,509,237),(63,'2015-03-14 14:56:58','2015-10-11 16:46:38',1,30004720,70,58,101,127,16,0,0,107,208,0,8,16,0,85,1,1,72,44,5,30,93,84,56,73),(64,'2015-03-14 14:56:58','2015-03-14 14:56:58',1,30000929,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(65,'2015-03-14 14:56:58','2015-10-11 16:46:38',1,30004950,67,2,0,0,50,50,72,0,0,133,0,0,69,19,21,0,0,59,0,0,0,157,0,2),(66,'2015-03-14 14:56:58','2015-10-11 16:46:38',1,30004483,0,0,6,0,0,0,0,0,230,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(67,'2015-03-14 14:56:58','2015-10-11 16:46:38',1,30002899,124,782,187,100,319,199,51,514,138,124,254,197,386,45,103,68,182,303,373,608,185,332,467,521),(68,'2015-03-14 14:56:58','2015-10-11 16:46:38',1,30004874,0,199,13,367,98,11,12,153,91,0,0,0,0,0,0,0,0,0,0,0,45,0,0,0),(69,'2015-03-14 14:56:58','2015-10-11 16:46:38',1,30004322,0,72,0,117,122,192,75,179,0,0,0,0,0,0,79,52,0,0,0,19,78,0,0,65),(70,'2015-03-14 14:56:58','2015-10-11 16:46:38',1,30000966,0,3,0,4,0,0,0,0,0,136,29,29,0,0,1,0,0,0,0,0,0,0,0,0),(71,'2015-03-14 14:56:58','2015-10-11 16:46:38',1,30003251,41,0,3,104,0,0,0,0,122,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(72,'2015-03-14 14:56:58','2015-10-11 16:46:38',1,30000290,0,0,0,85,0,64,0,0,0,0,0,0,0,0,22,8,0,56,0,0,0,1,0,0),(73,'2015-03-14 14:56:58','2015-10-11 16:46:38',1,30000940,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,17,0,0,172),(74,'2015-03-14 14:56:58','2015-10-11 16:46:38',1,30000566,0,0,7,0,0,0,0,0,0,0,0,0,7,0,0,0,0,0,0,0,0,0,0,0),(75,'2015-03-14 14:56:58','2015-03-14 14:56:58',1,30001458,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(76,'2015-03-14 14:56:58','2015-10-11 16:46:38',1,30002846,0,0,0,0,0,0,0,0,86,0,0,0,38,0,0,0,62,0,0,0,0,0,0,0),(77,'2015-03-14 14:56:58','2015-10-11 16:46:38',1,30001009,8,0,0,0,0,0,0,0,0,0,5,5,0,0,0,0,0,0,0,5,0,0,4,0),(78,'2015-03-14 14:56:58','2015-10-11 16:46:38',1,30004695,0,0,12,0,0,0,0,0,22,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0),(79,'2015-03-14 14:56:58','2015-10-11 16:46:38',1,30003349,61,0,0,0,0,0,0,54,0,36,16,15,47,1,1,2,14,80,0,0,7,0,0,13),(80,'2015-03-14 14:56:58','2015-10-11 16:46:38',1,30001961,0,0,12,21,26,18,0,0,0,0,0,0,0,0,65,22,0,0,0,0,0,112,0,0),(81,'2015-03-14 14:56:58','2015-10-11 16:46:38',1,30003957,0,0,5,0,1,2,0,0,3,0,0,0,2,0,0,0,0,0,0,0,0,0,0,0),(82,'2015-03-14 14:56:58','2015-10-11 16:46:38',1,30000543,0,0,0,0,0,0,71,0,0,0,0,0,0,0,2,38,38,0,0,0,0,0,0,0),(83,'2015-03-14 14:56:58','2015-10-11 16:46:38',1,30000781,47,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(84,'2015-03-14 14:56:58','2015-10-11 16:46:38',1,30002934,171,161,134,36,30,0,0,69,0,0,171,250,0,149,107,5,100,605,459,77,206,148,28,457),(85,'2015-03-14 14:56:58','2015-10-11 16:46:38',1,30004843,0,0,0,0,0,0,0,61,198,0,0,0,0,0,0,0,0,0,256,1,44,0,0,0),(86,'2015-03-14 14:56:58','2015-10-11 16:46:38',1,30005157,0,0,0,0,0,0,0,0,0,0,19,344,167,0,0,3,8,94,214,0,0,17,0,0),(87,'2015-03-14 14:56:58','2015-10-11 16:46:38',1,30001837,0,4,2,0,91,3,0,5,0,0,8,5,0,0,6,3,3,8,0,0,1,1,0,3),(88,'2015-03-14 14:56:58','2015-03-14 14:56:58',1,30001599,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(89,'2015-03-14 14:56:58','2015-03-14 14:56:58',1,30004677,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(90,'2015-03-14 14:56:58','2015-03-14 14:56:58',1,30001757,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(91,'2015-03-14 14:56:58','2015-10-11 16:46:38',1,30003766,43,100,46,8,2,5,20,169,0,56,116,67,127,28,33,69,121,244,290,51,64,98,1,70),(92,'2015-03-14 14:56:58','2015-10-11 16:46:38',1,30004801,0,0,0,0,0,1,0,0,0,0,132,31,0,0,0,0,0,0,0,0,0,0,0,0),(93,'2015-03-14 14:56:58','2015-10-11 16:46:38',1,30004037,17,20,6,79,59,92,33,79,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(94,'2015-03-14 14:56:58','2015-10-11 16:46:38',1,30004650,19,0,0,0,0,0,1240,0,0,85,116,22,15,72,164,158,58,103,3,130,203,159,507,242),(95,'2015-03-14 14:56:58','2015-10-11 16:46:38',1,30000573,32,165,212,152,179,79,51,24,142,60,32,109,25,27,0,0,0,60,11,4,39,0,43,0),(96,'2015-03-14 14:56:58','2015-10-11 16:46:38',1,30000734,29,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(97,'2015-03-14 14:56:58','2015-10-11 16:46:38',1,30002581,0,0,0,0,0,0,0,0,0,0,0,0,50,0,0,0,0,78,0,0,0,0,0,124),(98,'2015-03-14 14:56:58','2015-10-11 16:46:38',1,30003258,503,292,550,510,205,110,0,200,98,0,0,0,0,168,78,2,0,44,0,12,164,0,21,192),(99,'2015-03-14 14:56:58','2015-10-11 16:46:38',1,30001109,0,0,28,0,0,5,83,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0),(100,'2015-03-14 14:56:58','2015-10-11 16:46:38',1,30000301,0,0,164,172,53,53,42,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,28,0),(101,'2015-03-14 14:56:58','2015-03-14 14:56:58',1,30000463,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(102,'2015-03-14 14:56:58','2015-10-11 16:46:38',1,30003215,178,36,5,0,146,1,0,10,0,0,0,1,1,0,0,0,0,82,0,0,0,0,0,0),(103,'2015-03-14 14:56:58','2015-10-11 16:46:38',1,30002823,0,0,0,0,0,0,72,0,0,0,0,0,0,0,0,0,0,0,0,0,0,22,0,0),(104,'2015-03-14 14:56:58','2015-10-11 16:46:38',1,30004940,31,336,12,71,53,1,23,71,62,99,104,33,81,45,349,101,117,7,14,181,164,67,20,219),(105,'2015-03-14 14:56:58','2015-10-11 16:46:38',1,30003297,14,0,0,0,0,0,0,0,0,0,0,0,0,0,12,6,0,16,0,136,58,0,0,0),(106,'2015-03-14 14:56:58','2015-10-11 16:46:38',1,30004048,0,0,5,0,0,0,1,0,0,0,0,0,0,0,5,0,0,0,0,0,0,4,0,0),(107,'2015-03-14 14:56:58','2015-10-11 16:46:38',1,30000474,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,41,49),(108,'2015-03-14 14:56:58','2015-10-11 16:46:38',1,30004738,0,0,116,94,163,92,173,0,4,4,3,0,2,0,0,0,0,0,0,0,0,9,0,0),(109,'2015-03-14 14:56:58','2015-10-11 16:46:38',1,30001270,79,32,23,33,24,26,15,2,5,128,89,118,126,69,124,192,221,183,0,0,23,115,76,106),(110,'2015-03-14 14:56:58','2015-10-11 16:46:38',1,30003336,0,19,0,0,0,0,0,0,0,0,0,0,0,4,0,0,0,0,0,0,0,0,0,0),(111,'2015-03-14 14:56:58','2015-03-14 14:56:58',1,30003147,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(112,'2015-03-14 14:56:58','2015-10-11 16:46:38',1,30001975,223,0,7,13,0,5,175,336,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(113,'2015-03-14 14:56:58','2015-03-14 14:56:58',1,30001066,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(114,'2015-03-14 14:56:58','2015-10-11 16:46:38',1,30004639,117,70,65,8,1,0,18,125,27,0,0,0,0,0,0,0,0,22,0,0,0,68,54,33),(115,'2015-03-14 14:56:58','2015-10-11 16:46:38',1,30004611,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,66),(116,'2015-03-14 14:56:58','2015-10-11 16:46:38',1,30000861,0,5,13,0,0,0,96,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,97),(117,'2015-03-14 14:56:58','2015-03-14 14:56:58',1,30000425,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(118,'2015-03-14 14:56:58','2015-10-11 16:46:38',1,30000931,30,0,0,0,0,0,3,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(119,'2015-03-14 14:56:58','2015-03-14 14:56:58',1,30004849,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(120,'2015-03-14 14:56:58','2015-10-11 16:46:38',1,30003122,475,601,280,75,22,30,58,0,13,5,44,31,120,56,42,0,23,20,517,81,12,0,96,209),(121,'2015-03-14 14:56:58','2015-10-11 16:46:38',1,30003768,0,8,6,116,68,0,268,205,25,35,0,42,102,22,33,86,53,45,0,8,0,0,154,144),(122,'2015-03-14 14:56:58','2015-03-14 14:56:58',1,30000342,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(123,'2015-03-14 14:56:58','2015-10-11 16:46:38',1,30003785,0,8,31,143,270,279,188,171,165,6,144,89,246,134,27,50,150,113,3,0,0,252,93,354),(124,'2015-03-14 14:56:58','2015-10-11 16:46:38',1,30005117,0,2,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(125,'2015-03-14 14:56:58','2015-10-11 16:46:38',1,30002317,76,1260,395,654,604,550,459,318,294,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(126,'2015-03-14 14:56:58','2015-10-11 16:46:38',1,30004728,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,53,63),(127,'2015-03-14 14:56:58','2015-10-11 16:46:38',1,30003624,0,0,79,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(128,'2015-03-14 14:56:58','2015-10-11 16:46:38',1,30000963,193,0,0,0,0,0,0,0,0,4,0,0,21,0,0,0,0,0,0,2,0,0,0,0),(129,'2015-03-14 14:56:58','2015-03-14 14:56:58',1,30001524,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(130,'2015-03-14 14:56:58','2015-10-11 16:46:38',1,30004688,0,0,0,0,0,0,0,0,29,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(131,'2015-03-14 14:56:58','2015-10-11 16:46:38',1,30004710,0,0,0,4,0,0,0,5,39,0,0,0,0,0,0,14,107,37,0,0,0,0,0,0),(132,'2015-03-14 14:56:58','2015-03-14 14:56:58',1,30004759,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(133,'2015-03-14 14:56:58','2015-10-11 16:46:38',1,30004964,671,200,140,54,74,1,112,68,476,0,72,143,50,0,237,154,217,225,0,130,0,107,324,590),(134,'2015-03-14 14:56:58','2015-10-11 16:46:38',1,30003211,0,52,4,0,87,0,381,30,56,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(135,'2015-03-14 14:56:58','2015-10-11 16:46:38',1,30004367,0,135,115,181,167,75,529,250,128,0,134,94,43,0,0,11,146,294,0,47,0,0,85,84),(136,'2015-03-14 14:56:58','2015-10-11 16:46:38',1,30002332,0,0,0,0,0,0,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(137,'2015-03-14 14:56:58','2015-10-11 16:46:38',1,30004226,0,48,2,0,0,0,521,0,0,0,0,0,0,4,677,337,0,0,0,0,0,0,149,0),(138,'2015-03-14 14:56:58','2015-10-11 16:46:38',1,30001880,6,0,0,0,0,0,0,0,0,0,14,14,0,2,40,2,30,6,1,50,6,9,0,10),(139,'2015-03-14 14:56:58','2015-10-11 16:46:38',1,30001952,0,0,0,0,0,0,0,0,0,3,4,1,3,28,6,6,0,0,0,0,0,0,0,0),(140,'2015-03-14 14:56:58','2015-03-14 14:56:58',1,30002329,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(141,'2015-03-14 14:56:58','2015-03-14 14:56:58',1,30000395,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(142,'2015-03-14 14:56:58','2015-10-11 16:46:38',1,30001540,0,3,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(143,'2015-03-14 14:56:58','2015-10-11 16:46:38',1,30004920,0,56,0,47,48,49,1,0,0,74,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(144,'2015-03-14 14:56:58','2015-10-11 16:46:38',1,30004393,643,737,488,483,91,57,780,1760,1426,61,136,111,379,0,0,0,1,0,0,0,0,0,0,0),(145,'2015-03-14 14:56:58','2015-10-11 16:46:38',1,30000445,0,0,0,0,0,0,0,0,0,70,196,382,312,108,234,220,204,66,137,84,56,51,27,55),(146,'2015-03-14 14:56:58','2015-03-14 14:56:58',1,30000962,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(147,'2015-03-14 14:56:58','2015-10-11 16:46:38',1,30004501,8,0,0,0,0,0,0,4,0,0,0,0,0,0,0,0,31,0,0,0,0,0,0,83),(148,'2015-03-14 14:56:58','2015-10-11 16:46:38',1,30000579,2,0,0,1,51,74,93,200,36,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(149,'2015-03-14 14:56:58','2015-10-11 16:46:38',1,30003952,160,33,0,0,0,0,74,41,0,65,31,27,3,31,7,4,8,52,11,33,11,0,0,0),(150,'2015-03-14 14:56:58','2015-10-11 16:46:38',1,30004189,0,2079,60,357,1581,851,557,0,201,637,603,616,582,1340,1120,960,695,1100,260,333,334,786,599,606),(151,'2015-03-14 14:56:58','2015-10-11 16:46:38',1,30000294,111,61,9,167,143,222,160,0,0,91,209,259,192,110,9,3,163,218,1099,140,28,522,237,610),(152,'2015-03-14 14:56:58','2015-10-11 16:46:38',1,30001081,0,52,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(153,'2015-03-14 14:56:58','2015-10-11 16:46:38',1,30003233,0,231,266,0,222,69,0,146,264,0,0,0,0,0,1,58,57,0,0,0,0,0,0,0),(154,'2015-03-14 14:56:58','2015-10-11 16:46:38',1,30001170,0,0,3,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(155,'2015-03-14 14:56:58','2015-10-11 16:46:38',1,30002365,0,81,5,0,0,0,0,219,68,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(156,'2015-03-14 14:56:58','2015-03-14 14:56:58',1,30000336,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(157,'2015-03-14 14:56:58','2015-10-11 16:46:38',1,30003617,0,0,45,0,30,23,0,0,29,0,0,0,0,4,0,0,0,0,27,6,54,0,75,1),(158,'2015-03-14 14:56:58','2015-10-11 16:46:38',1,30000720,0,0,0,127,0,0,0,10,7,0,0,0,10,167,0,0,0,0,0,133,0,0,0,0),(159,'2015-03-14 14:56:58','2015-03-14 14:56:58',1,30000378,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(160,'2015-03-14 14:56:58','2015-10-11 16:46:38',1,30002866,0,0,0,0,0,0,0,0,0,0,0,0,0,5,0,0,0,5,0,0,0,4,0,0),(161,'2015-03-14 14:56:58','2015-03-14 14:56:58',1,30001452,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(162,'2015-03-14 14:56:58','2015-03-14 14:56:58',1,30000766,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(163,'2015-03-14 14:56:58','2015-03-14 14:56:58',1,30000424,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(164,'2015-03-14 14:56:58','2015-03-14 14:56:58',1,30000680,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(165,'2015-03-14 14:56:58','2015-10-11 16:46:38',1,30000286,89,208,7,0,0,0,0,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(166,'2015-03-14 14:56:58','2015-10-11 16:46:38',1,30000288,0,0,0,0,0,34,0,0,36,0,0,0,0,0,0,0,0,0,0,0,0,0,0,97),(167,'2015-03-14 14:56:58','2015-10-11 16:46:38',1,30000836,0,0,0,0,0,0,0,0,0,0,13,13,0,0,0,0,0,0,0,0,0,131,0,0),(168,'2015-03-14 14:56:58','2015-10-11 16:46:38',1,30000611,3,0,0,0,0,0,0,0,0,0,0,0,0,39,0,0,0,0,0,0,0,0,0,0),(169,'2015-03-14 14:56:58','2015-10-11 16:46:38',1,30003668,0,1480,23,36,294,138,0,90,384,17,0,0,0,0,0,0,0,114,0,0,0,0,15,95),(170,'2015-03-14 14:56:58','2015-03-14 14:56:58',1,30000349,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(171,'2015-03-14 14:56:58','2015-10-11 16:46:38',1,30002007,21,72,33,172,135,124,11,18,58,0,1,1,51,11,0,0,0,64,1,77,0,166,46,107),(172,'2015-03-14 14:56:58','2015-10-11 16:46:38',1,30001786,0,0,0,9,9,4,0,0,0,88,370,944,500,195,434,206,294,743,0,518,116,1009,750,1024),(173,'2015-03-14 14:56:58','2015-10-11 16:46:38',1,30004184,745,564,326,388,631,677,111,262,0,0,598,1096,1064,717,655,778,1155,1442,0,172,563,1116,954,23),(174,'2015-03-14 14:56:58','2015-10-11 16:46:38',1,30004454,40,0,0,14,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,83,0,0),(175,'2015-03-14 14:56:58','2015-10-11 16:46:38',1,30002903,176,715,47,63,244,197,88,464,149,115,470,446,494,148,600,379,337,831,140,178,164,511,254,551),(176,'2015-03-14 14:56:58','2015-10-11 16:46:38',1,30000684,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0),(177,'2015-03-14 14:56:58','2015-03-14 14:56:58',1,30001598,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(178,'2015-03-14 14:56:58','2015-10-11 16:46:38',1,30000756,0,0,0,0,0,28,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(179,'2015-03-14 14:56:58','2015-10-11 16:46:38',1,30004492,799,398,307,664,649,754,683,170,193,198,56,0,0,69,0,0,0,0,0,0,66,0,0,0),(180,'2015-03-14 14:56:58','2015-10-11 16:46:38',1,30003754,0,0,0,53,92,83,0,0,0,0,0,0,0,0,0,0,0,1,0,0,81,0,4,5),(181,'2015-03-14 14:56:58','2015-10-11 16:46:38',1,30001864,0,0,8,12,0,0,0,2,17,4,1,5,9,5,47,40,1,37,0,0,0,1,18,35),(182,'2015-03-14 14:56:58','2015-10-11 16:46:38',1,30003188,0,0,5,0,0,0,0,0,0,0,0,0,0,0,12,16,10,0,0,0,0,0,4,5),(183,'2015-03-14 14:56:58','2015-10-11 16:46:38',1,30000473,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,35,0,0),(184,'2015-03-14 14:56:58','2015-10-11 16:46:38',1,30005139,0,0,3,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(185,'2015-03-14 14:56:58','2015-10-11 16:46:38',1,30003238,0,46,0,0,0,0,0,0,0,64,57,50,266,0,0,0,0,0,0,0,0,0,0,0),(186,'2015-03-14 14:56:58','2015-10-11 16:46:38',1,30004734,0,0,0,0,0,0,0,0,0,31,80,60,7,0,107,154,78,47,113,16,0,41,46,0),(187,'2015-03-14 14:56:58','2015-10-11 16:46:38',1,30004467,0,0,0,0,0,0,174,15,0,0,94,103,0,0,1,0,0,0,0,0,45,0,0,20),(188,'2015-03-14 14:56:58','2015-10-11 16:46:38',1,30001784,1140,0,0,0,0,0,0,0,0,381,14,109,354,45,293,255,361,832,645,350,5,364,360,208),(189,'2015-03-14 14:56:58','2015-10-11 16:46:38',1,30001258,57,0,0,53,22,4,59,0,0,68,175,59,128,507,11,5,9,72,0,0,16,55,209,4),(190,'2015-03-14 14:56:58','2015-10-11 16:46:38',1,30000832,0,0,0,44,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(191,'2015-03-14 14:56:58','2015-10-11 16:46:38',1,30000996,0,0,0,0,0,0,0,0,0,0,0,0,5,0,1,72,94,27,0,0,0,10,0,22),(192,'2015-03-14 14:56:58','2015-10-11 16:46:38',1,30004071,26,0,0,0,0,0,0,0,0,0,87,73,0,0,0,0,0,0,0,0,109,0,0,37),(193,'2015-03-14 14:56:58','2015-10-11 16:46:38',1,30000714,0,0,44,38,0,0,0,0,117,0,0,0,0,0,0,0,0,21,0,0,0,0,0,0),(194,'2015-03-14 14:56:58','2015-10-11 16:46:38',1,30003171,0,186,0,0,51,199,37,211,42,14,1,0,0,0,9,8,13,0,0,0,5,0,0,0),(195,'2015-03-14 14:56:58','2015-03-14 14:56:58',1,30005182,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(196,'2015-03-14 14:56:58','2015-10-11 16:46:38',1,30001949,13,0,13,13,13,8,0,0,0,53,0,0,4,1,0,0,0,0,54,55,22,74,0,0),(197,'2015-03-14 14:56:58','2015-10-11 16:46:38',1,30002342,0,0,4,0,0,0,0,5,0,0,0,0,0,0,0,0,0,0,0,3,1,0,0,0),(198,'2015-03-14 14:56:58','2015-10-11 16:46:38',1,30004394,159,0,0,82,117,94,0,18,0,0,274,229,0,0,79,30,0,0,0,0,0,26,0,63),(199,'2015-03-14 14:56:58','2015-10-11 16:46:38',1,30000898,0,96,123,35,149,126,148,0,37,0,0,0,0,0,0,0,0,4,0,56,89,0,0,0),(200,'2015-03-14 14:56:58','2015-10-11 16:46:38',1,30001965,391,5,0,1,4,0,2,1,1,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0),(201,'2015-03-14 14:56:58','2015-10-11 16:46:38',1,30000292,5,71,44,106,93,32,70,0,0,17,9,88,91,21,30,58,65,20,0,0,0,71,9,4),(202,'2015-03-14 14:56:58','2015-10-11 16:46:38',1,30002424,0,7,0,0,0,0,0,129,0,0,56,101,0,0,0,0,0,0,0,0,0,0,121,6),(203,'2015-03-14 14:56:58','2015-03-14 14:56:58',1,30000403,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(204,'2015-03-14 14:56:58','2015-03-14 14:56:58',1,30001746,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(205,'2015-03-14 14:56:58','2015-10-11 16:46:38',1,30001136,0,0,0,0,0,0,0,0,0,6,4,0,0,0,1,7,16,12,0,0,86,0,0,7),(206,'2015-03-14 14:56:58','2015-03-14 14:56:58',1,30002283,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(207,'2015-03-14 14:56:58','2015-10-11 16:46:38',1,30003370,0,26,0,4,26,41,0,0,35,0,15,0,0,0,14,7,9,76,6,0,0,23,0,0),(208,'2015-03-14 14:56:58','2015-10-11 16:46:38',1,30002455,680,530,75,502,822,947,783,412,388,0,226,345,198,394,216,59,92,656,120,53,99,117,262,109),(209,'2015-03-14 14:56:58','2015-10-11 16:46:38',1,30004693,0,0,0,160,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,0,0),(210,'2015-03-14 14:56:58','2015-10-11 16:46:38',1,30001352,0,0,36,0,0,0,0,27,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,7),(211,'2015-03-14 14:56:58','2015-10-11 16:46:38',1,30001774,0,0,0,0,69,90,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(212,'2015-03-14 14:56:58','2015-10-11 16:46:38',1,30001860,3,0,0,0,0,0,0,0,0,0,0,0,4,4,0,0,0,4,0,0,0,0,0,0),(213,'2015-03-14 14:56:58','2015-10-11 16:46:38',1,30000881,0,21,0,0,0,0,29,85,0,0,0,0,0,0,227,0,92,0,0,0,0,0,0,0),(214,'2015-03-14 14:56:58','2015-10-11 16:46:38',1,30001169,0,0,0,0,0,0,0,0,0,0,68,63,0,0,0,0,0,0,0,0,0,0,0,0),(215,'2015-03-14 14:56:58','2015-10-11 16:46:38',1,30004531,0,0,4,0,15,15,0,0,0,0,34,68,0,0,0,0,0,0,0,0,0,0,0,0),(216,'2015-03-14 14:56:58','2015-10-11 16:46:38',1,30000757,0,0,133,0,0,0,0,0,0,0,0,0,0,0,67,43,0,0,0,0,0,0,0,0),(217,'2015-03-14 14:56:58','2015-03-14 14:56:58',1,30001510,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(218,'2015-03-14 14:56:58','2015-10-11 16:46:38',1,30002175,4,181,50,8,29,14,219,275,153,46,288,123,478,331,234,339,390,46,0,0,0,65,476,371),(219,'2015-03-14 14:56:58','2015-10-11 16:46:38',1,30002909,6,0,511,108,36,23,410,930,38,50,333,390,740,71,338,549,624,594,61,211,179,297,697,273),(220,'2015-03-14 14:56:58','2015-10-11 16:46:38',1,30003332,0,0,0,0,0,0,3,2,14,0,0,0,0,0,0,0,0,0,41,24,0,0,0,0),(221,'2015-03-14 14:56:58','2015-10-11 16:46:38',1,30004830,117,414,0,72,70,117,0,0,82,77,321,267,1,64,0,98,423,584,395,37,58,714,380,401),(222,'2015-03-14 14:56:58','2015-10-11 16:46:38',1,30001319,0,0,0,62,92,89,0,0,0,0,0,0,0,0,0,0,0,0,0,0,20,66,0,0),(223,'2015-03-14 14:56:58','2015-10-11 16:46:38',1,30003304,0,3,0,9,0,0,0,0,0,0,0,0,6,8,5,3,0,0,0,0,0,0,0,0),(224,'2015-03-14 14:56:58','2015-10-11 16:46:38',1,30002905,107,18,83,37,111,8,0,15,0,81,361,176,0,81,588,385,341,250,300,261,159,193,496,603),(225,'2015-03-14 14:56:58','2015-10-11 16:46:38',1,30003182,0,0,154,353,435,394,290,0,42,0,101,467,280,22,187,184,104,761,0,0,122,957,907,865),(226,'2015-03-14 14:56:58','2015-03-14 14:56:58',1,30001615,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(227,'2015-03-14 14:56:58','2015-10-11 16:46:38',1,30001333,0,0,102,93,84,82,0,149,232,0,0,0,0,0,78,173,115,233,137,0,0,0,0,0),(228,'2015-03-14 14:56:58','2015-10-11 16:46:38',1,30004447,0,0,0,0,1,1,0,0,0,0,0,0,0,8,0,0,0,0,0,0,0,5,8,0),(229,'2015-03-14 14:56:58','2015-10-11 16:46:38',1,30001770,468,26,251,0,85,101,191,85,6,449,207,183,224,463,420,230,70,0,365,158,0,0,6,115),(230,'2015-03-14 14:56:58','2015-10-11 16:46:38',1,30003774,0,40,0,92,53,47,132,47,0,329,261,137,140,293,185,91,139,102,48,90,4,34,0,19),(231,'2015-03-14 14:56:58','2015-10-11 16:46:38',1,30005096,0,8,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,3,0,0,0,0,0,0),(232,'2015-03-14 14:56:58','2015-10-11 16:46:38',1,30001799,102,0,0,9,17,3,8,0,0,295,366,360,391,8,351,340,286,484,313,245,174,420,270,308),(233,'2015-03-14 14:56:58','2015-10-11 16:46:38',1,30003275,0,55,28,16,0,0,18,59,2,0,12,14,0,80,74,44,16,61,0,0,0,0,4,0),(234,'2015-03-14 14:56:58','2015-10-11 16:46:38',1,30000909,5,0,0,0,0,0,0,0,0,0,0,0,0,60,1,0,0,0,65,81,90,24,134,154),(235,'2015-03-14 14:56:58','2015-10-11 16:46:38',1,30001103,537,0,1,0,0,0,124,0,0,109,0,0,0,0,0,0,56,315,0,0,0,0,0,288),(236,'2015-03-14 14:56:58','2015-10-11 16:46:38',1,30001116,172,190,205,230,1254,1220,325,0,0,374,0,153,688,0,0,0,0,0,0,0,0,61,0,0),(237,'2015-03-14 14:56:58','2015-10-11 16:46:38',1,30000823,96,0,3,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(238,'2015-03-14 14:56:58','2015-03-14 14:56:58',1,30000452,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(239,'2015-03-14 14:56:58','2015-10-11 16:46:38',1,30004466,0,4,0,0,238,0,35,0,20,106,13,0,0,1,96,108,253,138,29,0,134,45,0,25),(240,'2015-03-14 14:56:58','2015-03-14 14:56:58',1,30001642,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(241,'2015-03-14 14:56:58','2015-10-11 16:46:38',1,30004764,0,0,0,0,0,0,0,0,0,24,15,0,0,0,0,0,0,0,0,0,0,0,0,38),(242,'2015-03-14 14:56:58','2015-10-11 16:46:38',1,30004019,0,0,0,0,0,0,0,0,2,0,0,19,94,0,0,0,0,0,0,0,0,0,0,0),(243,'2015-03-14 14:56:58','2015-03-14 14:56:58',1,30000341,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(244,'2015-03-14 14:56:58','2015-10-11 16:46:38',1,30003356,0,0,0,0,0,0,0,0,0,0,0,0,0,3,0,0,86,0,0,0,0,0,0,0),(245,'2015-03-14 14:56:58','2015-03-14 14:56:58',1,30000343,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(246,'2015-03-14 14:56:58','2015-10-11 16:46:38',1,30004004,0,0,22,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(247,'2015-03-14 14:56:58','2015-10-11 16:46:38',1,30003231,0,205,0,82,343,287,258,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,59),(248,'2015-03-14 14:56:58','2015-10-11 16:46:38',1,30000448,0,0,0,0,0,0,0,0,0,15,450,553,536,40,463,491,418,248,0,0,74,11,298,295),(249,'2015-03-14 14:56:58','2015-10-11 16:46:38',1,30004358,0,28,88,45,0,0,0,100,218,0,0,0,15,0,79,166,150,0,0,0,0,0,0,32),(250,'2015-03-14 14:56:58','2015-10-11 16:46:38',1,30001199,0,0,10,0,0,0,0,0,0,0,0,0,0,134,0,0,9,0,0,3,0,0,0,0),(251,'2015-03-14 14:56:58','2015-10-11 16:46:38',1,30001820,0,372,0,296,359,372,174,0,0,0,0,0,43,0,0,0,0,0,0,0,0,0,0,87),(252,'2015-03-14 14:56:58','2015-10-11 16:46:38',1,30003675,110,81,143,147,187,9,340,180,233,293,244,274,393,0,217,478,488,429,0,0,0,131,0,0),(253,'2015-03-14 14:56:58','2015-10-11 16:46:38',1,30001212,288,143,15,170,103,87,17,220,231,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(254,'2015-03-14 14:56:58','2015-10-11 16:46:38',1,30004336,0,0,0,52,85,54,0,31,21,0,18,0,0,134,177,55,0,0,21,0,0,0,0,0),(255,'2015-03-14 14:56:58','2015-10-11 16:46:38',1,30002582,0,0,0,0,0,0,0,0,0,0,0,38,109,0,0,0,0,0,0,0,0,0,0,0),(256,'2015-03-14 14:56:58','2015-03-14 14:56:58',1,30001500,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(257,'2015-03-14 14:56:58','2015-03-14 14:56:58',1,30004405,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(258,'2015-03-14 14:56:58','2015-10-11 16:46:38',1,30003632,1393,520,1317,1076,418,723,317,2498,1880,88,267,173,274,59,25,0,57,205,203,515,119,516,125,507),(259,'2015-03-14 14:56:58','2015-10-11 16:46:38',1,30000534,0,0,8,0,0,0,0,0,0,43,122,90,80,0,122,144,150,141,0,0,0,277,155,1),(260,'2015-03-14 14:56:58','2015-10-11 16:46:38',1,30003329,0,0,1,20,11,11,4,31,74,0,6,3,0,0,0,0,0,7,0,10,0,0,0,52),(261,'2015-03-14 14:56:58','2015-10-11 16:46:38',1,30004387,609,397,296,282,959,879,878,228,183,35,292,280,380,450,302,477,579,314,0,140,102,199,136,257),(262,'2015-03-14 14:56:58','2015-10-11 16:46:38',1,30004722,8,11,0,15,0,3,0,0,0,0,0,0,0,0,5,0,0,17,0,0,5,0,0,0),(263,'2015-03-14 14:56:58','2015-10-11 16:46:38',1,30004786,0,0,0,0,0,0,0,0,0,0,0,2,51,0,0,0,0,1,0,0,0,0,0,0),(264,'2015-03-14 14:56:58','2015-10-11 16:46:38',1,30001841,0,0,0,0,1,16,0,0,5,0,0,0,0,0,0,0,0,0,20,0,0,0,0,0),(265,'2015-03-14 14:56:58','2015-10-11 16:46:38',1,30004668,0,0,0,0,0,0,0,43,0,0,0,0,0,0,0,0,0,43,0,0,0,0,0,0),(266,'2015-03-14 14:56:58','2015-10-11 16:46:38',1,30003642,30,55,100,78,195,434,0,70,72,6,3,7,4,0,0,0,0,0,0,5,9,9,2,9),(267,'2015-03-14 14:56:58','2015-10-11 16:46:38',1,30004517,11,0,49,0,0,4,0,0,7,0,0,0,0,43,70,32,80,0,0,0,0,47,2,75),(268,'2015-03-14 14:56:58','2015-10-11 16:46:38',1,30002919,392,0,404,608,357,57,177,302,182,215,28,0,479,2,437,383,373,396,334,0,142,327,427,249),(269,'2015-03-14 14:56:58','2015-10-11 16:46:38',1,30004928,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(270,'2015-03-14 14:56:58','2015-10-11 16:46:38',1,30003312,24,0,21,0,0,0,0,0,7,0,0,0,34,5,0,0,0,0,3,8,4,0,0,3),(271,'2015-03-14 14:56:58','2015-10-11 16:46:38',1,30001157,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,28,0,0,0),(272,'2015-03-14 14:56:58','2015-10-11 16:46:38',1,30001947,10,0,0,0,0,0,0,0,0,21,92,0,0,0,0,0,0,0,0,0,0,0,1,1),(273,'2015-03-14 14:56:58','2015-10-11 16:46:38',1,30001868,0,48,4,44,0,0,1,0,0,0,0,0,0,79,0,0,0,0,34,0,0,0,1,0),(274,'2015-03-14 14:56:58','2015-10-11 16:46:38',1,30000535,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(275,'2015-03-14 14:56:58','2015-10-11 16:46:38',1,30004632,92,397,182,70,222,119,289,0,0,0,0,0,0,5,4,0,0,0,20,0,3,0,0,0),(276,'2015-03-14 14:56:58','2015-10-11 16:46:38',1,30000829,0,0,0,0,0,0,0,0,3,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(277,'2015-03-14 14:56:58','2015-10-11 16:46:38',1,30002444,0,3,0,0,0,0,0,0,0,0,1,85,0,0,0,0,0,0,0,0,0,0,0,0),(278,'2015-03-14 14:56:58','2015-10-11 16:46:38',1,30004766,69,0,17,0,0,0,47,0,7,122,34,18,0,21,0,0,70,95,0,11,25,0,6,78),(279,'2015-03-14 14:56:58','2015-10-11 16:46:38',1,30001281,0,0,0,0,0,0,0,2,0,0,0,0,45,0,0,0,0,0,0,0,0,0,0,0),(280,'2015-03-14 14:56:58','2015-10-11 16:46:38',1,30000798,14,851,17,668,41,148,426,10,40,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(281,'2015-03-14 14:56:58','2015-10-11 16:46:38',1,30004000,0,0,12,5,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(282,'2015-03-14 14:56:58','2015-03-14 14:56:58',1,30000428,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(283,'2015-03-14 14:56:58','2015-10-11 16:46:38',1,30003786,54,18,86,0,51,44,0,0,0,1,1,3,0,0,0,0,0,94,0,0,0,0,0,17),(284,'2015-03-14 14:56:58','2015-10-11 16:46:38',1,30004036,0,151,0,0,0,0,0,0,0,81,21,0,16,0,348,1168,1760,661,0,0,0,0,0,0),(285,'2015-03-14 14:56:58','2015-10-11 16:46:38',1,30003609,0,0,92,0,0,0,0,38,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(286,'2015-03-14 14:56:58','2015-03-14 14:56:58',1,30001474,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(287,'2015-03-14 14:56:58','2015-10-11 16:46:38',1,30001553,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,18,0,0,0),(288,'2015-03-14 14:56:58','2015-10-11 16:46:38',1,30004390,0,26,0,0,0,0,0,155,38,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(289,'2015-03-14 14:56:58','2015-10-11 16:46:38',1,30004900,0,0,0,0,0,0,0,46,45,0,408,358,87,0,0,0,0,0,0,0,367,161,13,21),(290,'2015-03-14 14:56:58','2015-03-14 14:56:58',1,30002302,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(291,'2015-03-14 14:56:58','2015-10-11 16:46:38',1,30000876,0,0,127,13,14,40,0,0,26,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(292,'2015-03-14 14:56:58','2015-10-11 16:46:38',1,30001200,15,0,0,0,0,0,0,0,0,0,0,0,0,1,0,1,1,133,0,4,0,0,283,46),(293,'2015-03-14 14:56:58','2015-10-11 16:46:38',1,30003748,0,3,41,0,93,0,95,0,0,48,0,0,0,133,253,467,451,0,70,163,29,37,29,36),(294,'2015-03-14 14:56:58','2015-10-11 16:46:38',1,30002325,365,0,0,0,0,0,0,0,0,0,0,0,8,8,8,17,9,16,0,0,7,8,4,9),(295,'2015-03-14 14:56:58','2015-10-11 16:46:38',1,30004520,0,0,0,0,0,0,3,0,0,0,0,0,0,14,0,0,0,11,0,0,0,0,0,0),(296,'2015-03-14 14:56:58','2015-10-11 16:46:38',1,30000228,43,418,12,223,576,301,785,421,353,105,13,0,0,0,74,109,169,217,0,19,189,0,0,37),(297,'2015-03-14 14:56:58','2015-10-11 16:46:38',1,30002357,69,16,159,69,13,17,74,0,0,0,0,0,0,0,0,0,0,0,0,149,85,0,0,0),(298,'2015-03-14 14:56:58','2015-10-11 16:46:38',1,30002937,475,407,226,31,253,354,781,591,176,64,358,372,125,15,158,177,264,257,747,680,561,720,341,356),(299,'2015-03-14 14:56:58','2015-10-11 16:46:38',1,30003781,0,0,57,104,147,21,55,0,0,56,0,10,0,0,0,0,0,132,93,58,8,0,0,0),(300,'2015-03-14 14:56:58','2015-10-11 16:46:38',1,30004403,304,0,268,279,20,243,64,314,115,0,0,0,269,371,411,384,410,163,10,111,0,0,229,63),(301,'2015-03-14 14:56:58','2015-10-11 16:46:38',1,30003322,0,0,0,69,0,0,40,0,0,0,0,0,0,0,3,3,0,0,0,0,0,0,0,0),(302,'2015-03-14 14:56:58','2015-10-11 16:46:38',1,30004419,0,0,0,0,0,0,0,0,0,0,0,0,108,0,0,0,0,0,0,0,0,0,0,0),(303,'2015-03-14 14:56:58','2015-03-14 14:56:58',1,30004808,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(304,'2015-03-14 14:56:58','2015-10-11 16:46:38',1,30005166,16,5,0,0,0,0,0,4,0,0,83,346,476,696,586,307,348,434,31,188,316,765,692,317),(305,'2015-03-14 14:56:58','2015-10-11 16:46:38',1,30003324,26,0,0,0,0,0,9,0,8,97,0,0,0,26,0,0,0,0,0,8,0,0,0,0),(306,'2015-03-14 14:56:58','2015-10-11 16:46:38',1,30002917,38,0,0,0,4,0,0,49,160,202,223,256,461,0,9,0,0,0,17,0,29,44,0,1),(307,'2015-03-14 14:56:58','2015-10-11 16:46:38',1,30004951,231,162,89,319,406,261,316,285,270,46,67,74,15,3,115,0,70,189,202,91,96,280,133,32),(308,'2015-03-14 14:56:58','2015-10-11 16:46:38',1,30004682,0,0,1,0,229,244,0,47,120,0,0,0,0,0,0,0,0,0,0,0,127,0,0,0),(309,'2015-03-14 14:56:58','2015-10-11 16:46:38',1,30000590,0,0,0,0,0,0,0,0,0,234,69,0,120,0,0,0,0,0,0,0,0,0,0,0),(310,'2015-03-14 14:56:58','2015-10-11 16:46:38',1,30004868,0,0,0,0,0,1,0,109,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(311,'2015-03-14 14:56:58','2015-10-11 16:46:38',1,30002921,524,1640,351,736,758,522,678,113,7,708,897,844,1060,592,955,224,409,1364,143,595,775,0,426,715),(312,'2015-03-14 14:56:58','2015-03-14 14:56:58',1,30000733,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(313,'2015-03-14 14:56:58','2015-10-11 16:46:38',1,30002486,115,136,96,196,0,0,39,168,0,0,146,207,306,245,299,386,305,245,0,13,142,201,199,134),(314,'2015-03-14 14:56:58','2015-10-11 16:46:38',1,30002938,178,604,0,142,190,158,57,66,189,7,12,53,139,0,68,0,79,29,7,0,0,0,0,48),(315,'2015-03-14 14:56:58','2015-10-11 16:46:38',1,30000782,0,0,0,5,0,0,0,0,64,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(316,'2015-03-14 14:56:58','2015-10-11 16:46:38',1,30002449,0,0,137,3,190,89,0,3,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(317,'2015-03-14 14:56:58','2015-10-11 16:46:38',1,30002011,0,186,97,57,141,181,0,0,0,0,0,0,7,0,1,2,2,5,1,0,3,6,6,4),(318,'2015-03-14 14:56:58','2015-10-11 16:46:38',1,30003191,304,0,3,0,0,4,0,156,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(319,'2015-03-14 14:56:58','2015-10-11 16:46:38',1,30004555,113,251,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,6,0,0,3,0),(320,'2015-03-14 14:56:58','2015-10-11 16:46:38',1,30004628,0,0,0,0,180,0,0,0,0,0,0,0,5,0,0,0,0,0,0,0,12,0,47,28),(321,'2015-03-14 14:56:58','2015-10-11 16:46:38',1,30001260,0,45,26,0,0,0,0,0,0,333,190,220,247,519,764,726,654,400,462,315,285,471,524,591),(322,'2015-03-14 14:56:58','2015-10-11 16:46:38',1,30005149,0,0,43,16,76,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(323,'2015-03-14 14:56:58','2015-03-14 14:56:58',1,30004014,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(324,'2015-03-14 14:56:58','2015-03-14 14:56:58',1,30000730,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(325,'2015-03-14 14:56:58','2015-10-11 16:46:38',1,30004317,0,0,0,0,44,0,0,6,11,0,0,0,0,0,0,0,0,0,0,0,0,4,0,0),(326,'2015-03-14 14:56:58','2015-10-11 16:46:38',1,30001318,0,0,0,15,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,32,0,0,0),(327,'2015-03-14 14:56:58','2015-10-11 16:46:38',1,30002015,0,0,1,0,1,0,0,0,0,0,0,0,0,58,0,0,0,71,0,0,3,0,1,0),(328,'2015-03-14 14:56:58','2015-10-11 16:46:38',1,30004360,246,207,467,337,1134,1297,168,113,243,10,16,16,0,42,0,2,4,0,32,6,4,3,8,3),(329,'2015-03-14 14:56:58','2015-10-11 16:46:38',1,30000718,120,265,0,8,15,9,52,7,216,41,181,296,183,29,8,54,55,16,30,106,33,101,479,3),(330,'2015-03-14 14:56:58','2015-10-11 16:46:38',1,30002441,331,639,99,124,394,678,286,939,431,71,474,241,425,124,0,0,192,308,336,113,0,22,432,43),(331,'2015-03-14 14:56:58','2015-10-11 16:46:38',1,30000576,8,167,41,65,0,0,6,44,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(332,'2015-03-14 14:56:58','2015-10-11 16:46:38',1,30004553,0,0,0,0,0,0,0,0,0,5,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(333,'2015-03-14 14:56:58','2015-10-11 16:46:38',1,30002144,0,0,140,0,107,53,107,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1),(334,'2015-03-14 14:56:58','2015-10-11 16:46:38',1,30004007,0,83,145,30,12,6,1,0,49,0,0,67,141,0,0,0,0,0,0,0,133,0,0,0),(335,'2015-03-14 14:56:58','2015-10-11 16:46:38',1,30000240,76,0,0,0,0,0,131,0,87,0,0,0,0,3,41,0,0,0,0,0,0,0,0,0),(336,'2015-03-14 14:56:58','2015-03-14 14:56:58',1,30000431,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(337,'2015-03-14 14:56:58','2015-10-11 16:46:38',1,30004828,0,0,651,109,0,0,53,122,6,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(338,'2015-03-14 14:56:58','2015-10-11 16:46:38',1,30003366,0,1,0,0,0,6,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(339,'2015-03-14 14:56:58','2015-10-11 16:46:38',1,30005121,0,120,101,106,28,0,485,0,0,0,0,0,9,0,0,0,0,0,0,0,0,9,141,8),(340,'2015-03-14 14:56:58','2015-10-11 16:46:38',1,30002613,19,0,5,10,0,0,0,0,3,216,96,102,49,0,89,259,364,206,846,161,4,0,0,163),(341,'2015-03-14 14:56:58','2015-10-11 16:46:38',1,30000582,30,0,29,0,0,0,0,0,0,0,0,0,0,0,0,0,139,89,0,0,0,0,13,150),(342,'2015-03-14 14:56:58','2015-10-11 16:46:38',1,30003105,0,72,0,131,0,0,96,0,0,0,0,0,123,0,0,0,0,0,0,0,0,0,0,0),(343,'2015-03-14 14:56:58','2015-03-14 14:56:58',1,30004811,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(344,'2015-03-14 14:56:58','2015-10-11 16:46:38',1,30004165,0,11,0,0,0,0,5,0,0,0,0,0,0,0,0,0,0,31,0,0,0,0,0,0),(345,'2015-03-14 14:56:58','2015-10-11 16:46:38',1,30002344,0,0,0,0,0,109,1560,341,0,0,0,0,0,0,0,0,0,193,0,0,1007,1292,100,1760),(346,'2015-03-14 14:56:58','2015-10-11 16:46:38',1,30001867,18,0,30,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2),(347,'2015-03-14 14:56:58','2015-10-11 16:46:38',1,30001894,0,0,3,0,0,0,0,23,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(348,'2015-03-14 14:56:58','2015-10-11 16:46:38',1,30002864,0,59,390,420,99,176,536,79,199,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0),(349,'2015-03-14 14:56:58','2015-10-11 16:46:38',1,30004224,0,0,0,0,0,0,0,0,0,0,351,654,508,0,56,20,0,0,0,0,0,0,0,0),(350,'2015-03-14 14:56:58','2015-10-11 16:46:38',1,30001349,146,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(351,'2015-03-14 14:56:58','2015-10-11 16:46:38',1,30002350,0,0,0,0,0,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,0,77,0,0),(352,'2015-03-14 14:56:58','2015-10-11 16:46:38',1,30001340,55,55,92,0,0,0,52,0,0,101,50,199,65,106,79,76,0,0,0,26,105,0,0,0),(353,'2015-03-14 14:56:58','2015-10-11 16:46:38',1,30002941,828,362,82,41,85,91,483,93,284,418,539,399,137,0,45,31,194,0,353,0,0,719,333,55),(354,'2015-03-14 14:56:58','2015-10-11 16:46:38',1,30002616,453,0,0,0,0,0,96,841,0,0,0,34,87,0,181,173,228,207,0,0,0,151,146,95),(355,'2015-03-14 14:56:58','2015-10-11 16:46:38',1,30003131,0,0,0,2,3,3,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,3,0,0),(356,'2015-03-14 14:56:58','2015-10-11 16:46:38',1,30004878,36,0,51,3,5,106,0,0,24,0,0,0,0,0,82,34,1,0,0,0,0,0,0,62),(357,'2015-03-14 14:56:58','2015-10-11 16:46:38',1,30000255,0,0,30,152,0,0,2,0,0,0,0,0,117,0,0,0,0,0,0,0,0,0,0,0),(358,'2015-03-14 14:56:58','2015-10-11 16:46:38',1,30004949,486,20,825,56,221,85,105,70,126,128,370,437,429,475,52,6,39,186,0,0,48,113,193,57),(359,'2015-03-14 14:56:58','2015-10-11 16:46:38',1,30000251,0,0,0,0,1,1,0,6,0,0,0,0,0,0,0,0,0,64,0,29,122,0,0,0),(360,'2015-03-14 14:56:58','2015-10-11 16:46:38',1,30004009,11,7,0,0,7,0,0,0,0,0,0,0,0,1,0,0,0,4,10,0,0,0,0,0),(361,'2015-03-14 14:56:58','2015-10-11 16:46:38',1,30003708,0,861,0,0,361,441,21,0,0,76,131,137,97,10,5,4,5,0,104,42,2,5,4,4),(362,'2015-03-14 14:56:58','2015-10-11 16:46:38',1,30005165,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,175,0,0,0,0,0,0),(363,'2015-03-14 14:56:58','2015-10-11 16:46:38',1,30004188,246,326,0,0,0,0,180,190,58,0,1406,2063,2740,442,1107,1420,1247,78,0,0,83,563,1107,1174),(364,'2015-03-14 14:56:58','2015-10-11 16:46:38',1,30001882,0,0,19,24,0,0,0,0,0,0,0,0,71,0,0,0,0,87,0,45,0,0,18,20),(365,'2015-03-14 14:56:58','2015-10-11 16:46:38',1,30004415,488,0,43,0,0,0,0,0,0,0,0,0,0,0,134,66,0,0,0,0,0,0,0,22),(366,'2015-03-14 14:56:58','2015-10-11 16:46:38',1,30001815,61,388,23,138,23,81,221,72,453,188,86,155,1101,1,1110,1826,2247,1120,130,404,335,1820,1560,1640),(367,'2015-03-14 14:56:58','2015-10-11 16:46:38',1,30003706,8,0,41,0,0,0,246,165,3,106,65,39,104,45,21,78,67,54,31,53,42,29,132,269),(368,'2015-03-14 14:56:58','2015-10-11 16:46:38',1,30004504,6,0,79,0,0,45,0,0,31,0,0,0,0,0,0,0,0,0,13,3,1,0,0,5),(369,'2015-03-14 14:56:58','2015-03-14 14:56:58',1,30000376,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(370,'2015-03-14 14:56:58','2015-10-11 16:46:38',1,30000795,0,0,0,0,0,0,132,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(371,'2015-03-14 14:56:58','2015-10-11 16:46:38',1,30002469,27,88,0,148,114,23,55,110,127,0,0,0,0,0,0,0,0,0,0,0,0,174,0,0),(372,'2015-03-14 14:56:58','2015-10-11 16:46:38',1,30001578,172,12,332,401,582,157,0,0,0,0,0,0,0,0,0,0,0,2,0,0,0,0,0,0),(373,'2015-03-14 14:56:58','2015-10-11 16:46:38',1,30000749,0,0,0,0,0,0,112,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(374,'2015-03-14 14:56:58','2015-10-11 16:46:38',1,30004384,220,0,120,40,0,0,32,19,110,0,37,0,0,0,0,120,164,0,0,0,0,0,0,146),(375,'2015-03-14 14:56:58','2015-10-11 16:46:38',1,30002154,0,0,0,0,0,0,0,0,0,0,0,0,0,0,79,145,70,0,0,0,0,0,0,0),(376,'2015-03-14 14:56:58','2015-10-11 16:46:38',1,30000701,0,0,0,0,0,0,0,0,0,0,0,58,0,0,4,2,2,0,0,0,0,0,4,3),(377,'2015-03-14 14:56:58','2015-10-11 16:46:38',1,30005159,26,0,0,0,0,0,0,20,0,0,2,40,137,223,0,0,0,0,0,0,0,75,25,0),(378,'2015-03-14 14:56:58','2015-10-11 16:46:38',1,30000536,16,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(379,'2015-03-14 14:56:58','2015-03-14 14:56:58',1,30005154,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(380,'2015-03-14 14:56:58','2015-03-14 14:56:58',1,30000361,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(381,'2015-03-14 14:56:58','2015-10-11 16:46:38',1,30001858,1,0,0,0,0,28,4,0,0,0,5,10,77,31,137,134,177,41,6,46,31,32,74,19),(382,'2015-03-14 14:56:58','2015-03-14 14:56:58',1,30004216,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(383,'2015-03-14 14:56:58','2015-10-11 16:46:38',1,30000239,196,44,442,347,93,0,0,0,0,0,30,8,0,22,14,0,0,0,0,0,0,0,0,0),(384,'2015-03-14 14:56:58','2015-10-11 16:46:38',1,30001785,0,481,15,281,158,183,0,79,0,0,0,0,0,0,0,0,0,0,0,0,0,0,36,53),(385,'2015-03-14 14:56:58','2015-10-11 16:46:38',1,30001558,0,0,0,0,0,0,0,0,0,0,0,0,0,2,0,0,0,0,0,0,0,0,0,7),(386,'2015-03-14 14:56:58','2015-10-11 16:46:38',1,30004661,0,0,0,0,0,0,0,0,0,0,85,1,0,0,0,0,0,0,2,0,0,0,0,17),(387,'2015-03-14 14:56:58','2015-10-11 16:46:38',1,30001844,46,90,91,5,114,56,2,91,103,4,1,0,0,9,90,81,9,0,54,0,90,10,4,4),(388,'2015-03-14 14:56:58','2015-10-11 16:46:38',1,30001869,15,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(389,'2015-03-14 14:56:58','2015-10-11 16:46:38',1,30004716,0,0,0,0,0,0,0,77,0,4,0,3,0,0,0,0,0,0,0,0,0,0,0,0),(390,'2015-03-14 14:56:58','2015-10-11 16:46:38',1,30002495,384,386,176,319,175,175,0,0,0,257,292,361,296,0,160,274,342,137,571,315,135,341,584,340),(391,'2015-03-14 14:56:58','2015-10-11 16:46:38',1,30003351,152,79,1,92,79,32,4,24,31,4,14,3,4,50,0,0,0,0,0,0,10,0,0,73),(392,'2015-03-14 14:56:58','2015-03-14 14:56:58',1,30000818,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(393,'2015-03-14 14:56:58','2015-03-14 14:56:58',1,30002297,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(394,'2015-03-14 14:56:58','2015-10-11 16:46:38',1,30004206,0,0,0,57,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,92,34,0,0),(395,'2015-03-14 14:56:58','2015-10-11 16:46:38',1,30001201,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,27,0,0,16,16),(396,'2015-03-14 14:56:58','2015-10-11 16:46:38',1,30000976,0,0,0,0,0,0,0,0,0,0,0,0,0,0,8,0,0,0,0,0,0,0,64,110),(397,'2015-03-14 14:56:58','2015-10-11 16:46:38',1,30000776,61,0,0,132,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(398,'2015-03-14 14:56:58','2015-10-11 16:46:38',1,30002944,453,189,157,325,28,0,349,53,0,212,336,273,8,545,397,254,68,0,0,57,182,227,184,421),(399,'2015-03-14 14:56:58','2015-10-11 16:46:38',1,30001251,0,12,163,0,21,21,0,0,0,0,0,0,6,78,23,0,0,0,0,0,5,102,1,0),(400,'2015-03-14 14:56:58','2015-10-11 16:46:38',1,30000455,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,0,0,0,0,0,0,0),(401,'2015-03-14 14:56:58','2015-10-11 16:46:38',1,30002456,228,127,2,65,649,542,897,313,62,110,157,217,64,0,0,0,0,178,27,22,0,393,119,0),(402,'2015-03-14 14:56:58','2015-10-11 16:46:38',1,30004746,0,0,0,0,0,0,0,0,0,0,0,0,0,0,307,173,71,0,0,0,0,30,65,85),(403,'2015-03-14 14:56:58','2015-10-11 16:46:38',1,30001828,0,11,174,151,0,8,19,0,0,0,0,0,0,0,0,0,4,871,450,161,0,0,25,906),(404,'2015-03-14 14:56:58','2015-10-11 16:46:38',1,30002585,0,94,0,0,0,0,0,104,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(405,'2015-03-14 14:56:58','2015-10-11 16:46:38',1,30001149,0,18,19,26,24,13,24,8,28,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(406,'2015-03-14 14:56:58','2015-10-11 16:46:38',1,30002625,106,0,0,271,0,0,284,2,0,601,649,658,94,0,0,0,0,0,0,0,0,0,0,0),(407,'2015-03-14 14:56:58','2015-10-11 16:46:38',1,30001300,0,0,14,0,0,0,0,0,0,0,52,80,3,0,0,12,12,0,0,0,89,0,0,0),(408,'2015-03-14 14:56:58','2015-10-11 16:46:38',1,30001335,94,0,86,169,0,0,0,11,0,184,68,70,112,75,92,85,90,104,96,106,121,87,104,76),(409,'2015-03-14 14:56:58','2015-10-11 16:46:38',1,30000630,0,0,0,0,0,0,0,0,0,0,0,0,0,0,306,350,237,0,0,0,0,0,0,0),(410,'2015-03-14 14:56:58','2015-10-11 16:46:38',1,30004221,0,0,0,0,76,16,83,0,62,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(411,'2015-03-14 14:56:58','2015-03-14 14:56:58',1,30000415,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(412,'2015-03-14 14:56:58','2015-03-14 14:56:58',1,30001512,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(413,'2015-03-14 14:56:58','2015-10-11 16:46:38',1,30002889,0,0,0,0,0,0,41,85,0,0,90,98,0,0,0,0,0,0,0,0,0,0,3,0),(414,'2015-03-14 14:56:58','2015-10-11 16:46:38',1,30002461,502,178,0,38,49,182,216,362,375,136,181,124,99,0,237,174,58,1020,0,228,69,295,310,531),(415,'2015-03-14 14:56:58','2015-03-14 14:56:58',1,30004736,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(416,'2015-03-14 14:56:58','2015-10-11 16:46:38',1,30001940,0,0,0,0,0,0,0,0,0,0,0,0,0,79,8,6,0,7,0,0,0,0,0,21),(417,'2015-03-14 14:56:58','2015-10-11 16:46:38',1,30004673,0,0,0,0,1,0,0,0,0,0,0,0,0,22,28,0,0,0,51,37,3,0,0,0),(418,'2015-03-14 14:56:58','2015-10-11 16:46:38',1,30000646,0,0,0,0,0,0,22,0,0,0,0,0,78,0,0,0,0,0,0,0,0,0,0,0),(419,'2015-03-14 14:56:58','2015-10-11 16:46:38',1,30004391,250,115,379,369,276,309,8,474,232,148,213,140,368,0,0,0,0,35,0,0,0,0,0,24),(420,'2015-03-14 14:56:58','2015-03-14 14:56:58',1,30000762,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(421,'2015-03-14 14:56:58','2015-10-11 16:46:38',1,30004166,0,448,295,242,371,277,232,0,88,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(422,'2015-03-14 14:56:58','2015-10-11 16:46:38',1,30004789,0,0,0,0,0,0,0,0,0,0,0,0,14,643,512,580,609,161,0,110,116,358,391,552),(423,'2015-03-14 14:56:58','2015-10-11 16:46:38',1,30003310,0,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(424,'2015-03-14 14:56:58','2015-10-11 16:46:38',1,30003214,0,96,0,241,440,808,530,178,148,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(425,'2015-03-14 14:56:58','2015-10-11 16:46:38',1,30003111,0,0,0,0,0,0,0,0,20,0,0,0,0,0,0,0,0,0,0,0,0,0,31,0),(426,'2015-03-14 14:56:58','2015-10-11 16:46:38',1,30001972,0,0,0,85,0,0,0,0,0,0,0,0,0,0,0,0,0,0,38,0,0,0,0,0),(427,'2015-03-14 14:56:58','2015-10-11 16:46:38',1,30001101,0,0,0,0,0,0,0,0,0,0,0,0,0,226,232,234,201,0,177,135,260,323,390,151),(428,'2015-03-14 14:56:58','2015-03-14 14:56:58',1,30004774,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(429,'2015-03-14 14:56:58','2015-10-11 16:46:38',1,30004670,229,8,82,7,21,20,11,0,47,0,0,0,14,0,69,52,98,213,0,16,137,16,66,82),(430,'2015-03-14 14:56:58','2015-10-11 16:46:38',1,30004573,0,0,0,0,0,0,0,0,0,0,0,0,0,3,0,0,0,0,0,0,0,4,59,62),(431,'2015-03-14 14:56:58','2015-10-11 16:46:38',1,30003290,361,1,0,17,76,0,0,0,0,5,17,0,0,0,37,33,0,0,0,0,0,9,0,6),(432,'2015-03-14 14:56:58','2015-10-11 16:46:38',1,30003321,0,0,34,0,19,19,18,0,0,3,0,0,0,0,0,0,0,0,0,17,8,0,0,0),(433,'2015-03-14 14:56:58','2015-10-11 16:46:38',1,30003267,0,66,0,174,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,10,6,8,17,0),(434,'2015-03-14 14:56:58','2015-10-11 16:46:38',1,30004412,340,0,42,0,0,0,5,0,0,0,0,0,0,1,37,0,0,0,0,0,0,0,0,0),(435,'2015-03-14 14:56:58','2015-10-11 16:46:38',1,30004455,0,0,0,0,19,0,0,0,0,0,0,0,0,0,0,0,0,0,35,0,0,0,215,428),(436,'2015-03-14 14:56:58','2015-10-11 16:46:38',1,30004039,0,0,23,0,0,0,4,0,0,1,0,0,0,0,0,0,0,0,0,0,0,34,0,0),(437,'2015-03-14 14:56:58','2015-10-11 16:46:38',1,30000705,45,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,14,0),(438,'2015-03-14 14:56:58','2015-10-11 16:46:38',1,30001241,35,0,0,0,0,0,0,0,0,596,555,586,382,116,291,162,221,24,43,155,223,33,144,190),(439,'2015-03-14 14:56:58','2015-03-14 14:56:58',1,30004865,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(440,'2015-03-14 14:56:58','2015-10-11 16:46:38',1,30003630,0,21,0,0,59,106,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(441,'2015-03-14 14:56:58','2015-10-11 16:46:38',1,30004374,36,0,160,373,107,339,0,0,13,0,0,0,0,236,282,225,176,0,0,0,96,94,215,20),(442,'2015-03-14 14:56:58','2015-03-14 14:56:58',1,30001478,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(443,'2015-03-14 14:56:58','2015-10-11 16:46:38',1,30003302,26,0,0,0,0,0,0,3,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,14),(444,'2015-03-14 14:56:58','2015-10-11 16:46:38',1,30005151,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,3,49,0,0,3,0,2,82,0),(445,'2015-03-14 14:56:58','2015-10-11 16:46:38',1,30002883,211,60,108,2,106,35,148,0,0,0,0,0,0,613,647,672,522,180,513,0,0,0,0,0),(446,'2015-03-14 14:56:58','2015-10-11 16:46:38',1,30003346,78,0,0,6,0,0,0,0,12,21,0,0,0,0,25,25,0,0,28,47,19,0,0,0),(447,'2015-03-14 14:56:58','2015-03-14 14:56:58',1,30001641,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(448,'2015-03-14 14:56:58','2015-10-11 16:46:38',1,30000912,0,69,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(449,'2015-03-14 14:56:58','2015-10-11 16:46:38',1,30003354,0,0,0,41,17,0,46,68,0,31,21,0,0,0,0,0,0,0,0,0,0,0,0,0),(450,'2015-03-14 14:56:58','2015-03-14 14:56:58',1,30000453,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(451,'2015-03-14 14:56:58','2015-10-11 16:46:38',1,30004344,111,218,285,200,458,511,143,230,701,305,209,154,40,420,257,367,574,138,639,395,160,231,768,493),(452,'2015-03-14 14:56:58','2015-10-11 16:46:38',1,30000989,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,39,59,0,0,0,0,0),(453,'2015-03-14 14:56:58','2015-10-11 16:46:38',1,30002480,0,16,18,88,0,0,0,0,0,32,17,0,0,0,0,0,0,0,0,0,0,33,32,97),(454,'2015-03-14 14:56:58','2015-03-14 14:56:58',1,30001480,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(455,'2015-03-14 14:56:58','2015-10-11 16:46:38',1,30000908,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,77,61,0),(456,'2015-03-14 14:56:58','2015-10-11 16:46:38',1,30004643,0,0,0,0,0,0,0,69,0,0,0,0,0,0,0,0,0,0,0,0,0,17,6,0),(457,'2015-03-14 14:56:58','2015-10-11 16:46:38',1,30003350,57,0,4,0,0,0,5,0,12,3,3,68,235,39,14,11,12,20,0,0,8,2,0,10),(458,'2015-03-14 14:56:58','2015-10-11 16:46:38',1,30001850,0,0,0,1,0,0,0,0,2,3,0,1,48,60,48,39,115,81,19,113,83,65,21,33),(459,'2015-03-14 14:56:58','2015-10-11 16:46:38',1,30004212,223,91,8,0,0,2,43,504,368,273,138,101,233,287,76,12,0,185,158,143,87,174,84,25),(460,'2015-03-14 14:56:58','2015-10-11 16:46:38',1,30004675,7,0,712,24,0,0,33,0,0,16,23,12,0,40,23,5,5,14,9,12,13,9,4,3),(461,'2015-03-14 14:56:58','2015-10-11 16:46:38',1,30001104,0,181,0,22,18,745,26,753,312,12,0,0,208,0,0,37,37,341,0,0,0,123,68,454),(462,'2015-03-14 14:56:58','2015-10-11 16:46:38',1,30004761,0,0,0,0,0,0,0,0,0,12,47,21,0,66,0,67,67,0,192,0,0,21,79,227),(463,'2015-03-14 14:56:58','2015-10-11 16:46:38',1,30000844,1,0,0,0,0,92,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(464,'2015-03-14 14:56:58','2015-03-14 14:56:58',1,30000562,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(465,'2015-03-14 14:56:58','2015-10-11 16:46:38',1,30000554,81,66,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(466,'2015-03-14 14:56:58','2015-10-11 16:46:38',1,30004168,0,65,0,0,0,0,0,0,27,0,21,21,0,0,0,0,0,20,0,0,0,0,0,0),(467,'2015-03-14 14:56:58','2015-10-11 16:46:38',1,30001014,4,0,51,21,21,9,0,0,0,0,0,0,0,0,0,0,24,60,0,0,100,128,0,41),(468,'2015-03-14 14:56:58','2015-10-11 16:46:38',1,30004175,0,0,0,0,24,72,0,0,0,0,0,0,0,143,59,0,0,0,0,0,0,0,0,0),(469,'2015-03-14 14:56:58','2015-10-11 16:46:38',1,30004193,0,196,767,277,248,742,156,249,25,339,534,564,553,30,139,163,529,620,31,121,244,613,502,403),(470,'2015-03-14 14:56:58','2015-10-11 16:46:38',1,30004445,0,0,62,13,101,49,0,0,0,0,0,0,0,0,3,0,0,0,0,0,0,39,11,0),(471,'2015-03-14 14:56:58','2015-10-11 16:46:38',1,30000637,0,0,0,0,0,0,0,14,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(472,'2015-03-14 14:56:58','2015-10-11 16:46:38',1,30002501,525,1,0,47,55,0,0,72,0,321,0,0,0,0,0,0,0,47,0,0,0,0,9,0),(473,'2015-03-14 14:56:58','2015-10-11 16:46:38',1,30000992,0,0,0,0,0,0,0,0,0,0,0,0,0,3,26,0,0,0,0,0,0,0,0,0),(474,'2015-03-14 14:56:58','2015-10-11 16:46:38',1,30002591,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,34,0,0),(475,'2015-03-14 14:56:58','2015-10-11 16:46:38',1,30000581,11,45,48,0,17,0,94,47,36,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(476,'2015-03-14 14:56:58','2015-10-11 16:46:38',1,30004185,732,407,242,100,485,483,468,0,294,0,123,423,1510,47,400,1066,1794,1299,0,0,114,948,615,536),(477,'2015-03-14 14:56:58','2015-10-11 16:46:38',1,30000820,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(478,'2015-03-14 14:56:58','2015-10-11 16:46:38',1,30003720,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,15),(479,'2015-03-14 14:56:58','2015-03-14 14:56:58',1,30002291,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(480,'2015-03-14 14:56:58','2015-03-14 14:56:58',1,30001951,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(481,'2015-03-14 14:56:58','2015-03-14 14:56:58',1,30000442,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(482,'2015-03-14 14:56:58','2015-03-14 14:56:58',1,30003223,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(483,'2015-03-14 14:56:58','2015-10-11 16:46:38',1,30003738,68,137,1057,356,400,347,826,199,302,257,518,574,105,39,89,122,101,1,0,24,298,135,92,371),(484,'2015-03-14 14:56:58','2015-10-11 16:46:38',1,30003348,0,0,0,0,0,0,0,0,12,0,2,0,40,45,0,11,62,0,163,36,0,0,0,0),(485,'2015-03-14 14:56:58','2015-10-11 16:46:38',1,30001532,0,0,0,0,136,162,0,0,0,24,0,31,111,0,0,0,0,121,0,0,0,0,110,0),(486,'2015-03-14 14:56:58','2015-10-11 16:46:38',1,30004345,219,690,494,411,326,477,517,451,923,44,49,250,287,216,322,325,217,246,114,153,48,510,294,338),(487,'2015-03-14 14:56:58','2015-10-11 16:46:38',1,30000741,0,0,216,98,42,35,151,0,0,0,0,0,0,0,32,1,0,287,0,0,0,0,0,0),(488,'2015-03-14 14:56:58','2015-03-14 14:56:58',1,30000609,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(489,'2015-03-14 14:56:58','2015-03-14 14:56:58',1,30000468,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(490,'2015-03-14 14:56:58','2015-10-11 16:46:38',1,30004477,406,0,84,909,0,0,55,0,0,0,75,214,18,205,165,181,158,96,0,108,195,37,333,214),(491,'2015-03-14 14:56:58','2015-10-11 16:46:38',1,30000564,6,24,79,90,0,0,33,0,0,342,49,11,0,144,102,100,64,23,0,0,0,100,139,8),(492,'2015-03-14 14:56:58','2015-10-11 16:46:38',1,30004067,0,0,18,16,0,0,19,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(493,'2015-03-14 14:56:58','2015-10-11 16:46:38',1,30002950,940,411,131,303,136,127,361,272,577,236,763,814,114,141,289,242,255,256,279,269,0,143,60,206),(494,'2015-03-14 14:56:58','2015-03-14 14:56:58',1,30005115,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(495,'2015-03-14 14:56:58','2015-10-11 16:46:38',1,30000299,26,93,8,55,152,361,45,45,5,0,0,8,18,247,151,89,80,9,0,8,58,120,155,214),(496,'2015-03-14 14:56:58','2015-03-14 14:56:58',1,30002313,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(497,'2015-03-14 14:56:58','2015-10-11 16:46:38',1,30004008,0,0,0,0,0,0,0,0,55,0,0,0,0,0,0,0,0,0,3,0,0,0,0,0),(498,'2015-03-14 14:56:58','2015-03-14 14:56:58',1,30005152,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(499,'2015-03-14 14:56:58','2015-03-14 14:56:58',1,30001626,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(500,'2015-03-14 14:56:58','2015-10-11 16:46:38',1,30002927,218,23,310,150,27,27,0,74,6,0,136,94,127,112,1520,1560,1660,70,878,789,856,781,294,357),(501,'2015-03-14 14:56:58','2015-10-11 16:46:38',1,30004508,0,3,0,0,0,0,0,0,0,0,0,0,0,0,67,0,53,0,0,0,0,0,2,46),(502,'2015-03-14 14:56:58','2015-10-11 16:46:38',1,30004432,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,29,0,0,0),(503,'2015-03-14 14:56:58','2015-10-11 16:46:38',1,30000218,14,16,11,130,9,1,42,17,7,0,21,49,0,0,0,0,0,0,0,0,0,0,0,0),(504,'2015-03-14 14:56:58','2015-10-11 16:46:38',1,30005110,0,0,0,4,0,0,0,0,0,21,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(505,'2015-03-14 14:56:58','2015-10-11 16:46:38',1,30002005,12,15,121,52,43,62,42,89,4,10,0,29,28,44,0,0,6,0,24,0,6,17,25,54),(506,'2015-03-14 14:56:58','2015-10-11 16:46:38',1,30005111,0,0,263,34,0,0,0,0,0,0,0,0,0,0,0,2,2,0,1,0,0,0,0,0),(507,'2015-03-14 14:56:58','2015-03-14 14:56:58',1,30001503,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(508,'2015-03-14 14:56:58','2015-10-11 16:46:38',1,30004053,0,0,0,30,0,3,5,31,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0),(509,'2015-03-14 14:56:58','2015-10-11 16:46:38',1,30005114,515,70,52,42,64,57,4,82,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(510,'2015-03-14 14:56:58','2015-10-11 16:46:38',1,30003640,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,35,0,0,0,0,0),(511,'2015-03-14 14:56:58','2015-10-11 16:46:38',1,30003280,0,0,0,0,6,6,0,0,0,4,0,0,19,6,0,3,3,0,19,3,2,0,0,0),(512,'2015-03-14 14:56:58','2015-03-14 14:56:58',1,30004486,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(513,'2015-03-14 14:56:58','2015-03-14 14:56:58',1,30000706,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(514,'2015-03-14 14:56:58','2015-10-11 16:46:38',1,30001759,120,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,13,5,0,0,0,0),(515,'2015-03-14 14:56:58','2015-03-14 14:56:58',1,30001603,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(516,'2015-03-14 14:56:58','2015-10-11 16:46:38',1,30002167,0,0,0,0,0,0,0,0,0,100,113,252,56,468,221,145,44,10,79,155,29,17,0,69),(517,'2015-03-14 14:56:58','2015-10-11 16:46:38',1,30004810,0,0,0,0,0,0,0,0,0,0,0,0,0,0,3,4,4,0,0,0,0,0,0,0),(518,'2015-03-14 14:56:58','2015-03-14 14:56:58',1,30001167,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(519,'2015-03-14 14:56:58','2015-10-11 16:46:38',1,30000728,0,4,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(520,'2015-03-14 14:56:58','2015-10-11 16:46:38',1,30000557,0,0,0,0,0,0,0,122,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0),(521,'2015-03-14 14:56:58','2015-10-11 16:46:38',1,30001184,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,22,168,215,16,0,0,0),(522,'2015-03-14 14:56:58','2015-03-14 14:56:58',1,30001492,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(523,'2015-03-14 14:56:58','2015-10-11 16:46:38',1,30004347,708,619,564,1179,860,1000,684,632,566,593,315,132,190,51,282,280,178,310,497,140,229,228,372,48),(524,'2015-03-14 14:56:58','2015-10-11 16:46:38',1,30003745,3,266,77,179,106,18,131,0,222,105,448,321,396,377,122,198,312,599,95,88,54,177,12,46),(525,'2015-03-14 14:56:58','2015-03-14 14:56:58',1,30001488,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(526,'2015-03-14 14:56:58','2015-10-11 16:46:38',1,30003145,11,14,0,103,52,33,33,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(527,'2015-03-14 14:56:58','2015-10-11 16:46:38',1,30003316,0,0,0,28,16,12,0,0,0,89,0,0,0,0,2,0,8,0,73,0,0,0,0,0),(528,'2015-03-14 14:56:58','2015-10-11 16:46:38',1,30001111,16,389,368,502,269,233,110,6,147,0,480,400,404,432,171,135,31,1120,820,600,315,387,1077,1156),(529,'2015-03-14 14:56:58','2015-10-11 16:46:38',1,30003956,330,0,8,0,0,0,0,359,241,0,0,0,0,0,0,0,0,0,0,0,0,133,0,0),(530,'2015-03-14 14:56:58','2015-10-11 16:46:38',1,30003315,0,10,0,0,0,0,0,0,0,17,31,32,21,0,0,0,0,0,0,0,0,0,70,0),(531,'2015-03-14 14:56:58','2015-10-11 16:46:38',1,30000513,0,0,0,145,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(532,'2015-03-14 14:56:58','2015-10-11 16:46:38',1,30001092,0,0,0,0,0,0,0,0,0,0,8,10,0,4,8,14,10,0,10,9,14,57,0,0),(533,'2015-03-14 14:56:58','2015-10-11 16:46:38',1,30001317,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,32,0,0,0,0,0),(534,'2015-03-14 14:56:58','2015-10-11 16:46:38',1,30004923,569,255,511,382,1,24,155,0,0,285,1334,1242,823,15,883,905,1315,1502,0,0,0,863,766,1821),(535,'2015-03-14 14:56:58','2015-10-11 16:46:38',1,30000289,0,0,0,0,0,0,0,20,33,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(536,'2015-03-14 14:56:58','2015-03-14 14:56:58',1,30000985,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(537,'2015-03-14 14:56:58','2015-10-11 16:46:38',1,30004604,0,0,0,81,8,5,0,0,0,0,0,0,44,0,0,0,0,73,0,0,0,0,0,29),(538,'2015-03-14 14:56:58','2015-10-11 16:46:38',1,30000791,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,3,0,0,0,0,0,0),(539,'2015-03-14 14:56:58','2015-10-11 16:46:38',1,30002593,0,0,19,0,0,8,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(540,'2015-03-14 14:56:58','2015-03-14 14:56:58',1,30001624,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(541,'2015-03-14 14:56:58','2015-10-11 16:46:38',1,30001134,0,230,25,158,198,238,11,250,141,0,0,0,0,0,0,0,0,0,0,0,83,0,0,0),(542,'2015-03-14 14:56:58','2015-10-11 16:46:38',1,30002623,0,50,0,31,244,152,0,271,140,0,0,0,0,0,0,0,0,0,0,0,0,0,0,103),(543,'2015-03-14 14:56:58','2015-10-11 16:46:38',1,30000764,0,0,0,0,0,0,0,126,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(544,'2015-03-14 14:56:58','2015-03-14 14:56:58',1,30000371,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(545,'2015-03-14 14:56:58','2015-10-11 16:46:38',1,30001257,122,516,91,129,102,51,0,119,70,732,650,382,19,311,200,162,90,40,181,286,22,229,244,234),(546,'2015-03-14 14:56:58','2015-10-11 16:46:38',1,30003270,0,0,8,0,0,0,0,15,0,4,0,0,0,0,0,0,0,0,0,36,0,0,11,0),(547,'2015-03-14 14:56:58','2015-10-11 16:46:38',1,30002619,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,5,21),(548,'2015-03-14 14:56:58','2015-10-11 16:46:38',1,30000907,0,0,7,81,56,64,0,0,0,0,0,0,0,64,56,69,34,0,79,83,86,67,37,0),(549,'2015-03-14 14:56:58','2015-10-11 16:46:38',1,30003139,424,53,0,30,326,143,55,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(550,'2015-03-14 14:56:58','2015-10-11 16:46:38',1,30004591,0,0,17,127,14,11,223,98,11,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(551,'2015-03-14 14:56:58','2015-03-14 14:56:58',1,30000402,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(552,'2015-03-14 14:56:58','2015-10-11 16:46:38',1,30002855,0,0,0,0,119,167,0,0,0,0,0,0,0,53,1,0,0,0,0,0,6,0,0,0),(553,'2015-03-14 14:56:58','2015-10-11 16:46:38',1,30002025,0,556,174,619,607,198,1,10,592,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(554,'2015-03-14 14:56:58','2015-10-11 16:46:38',1,30002459,0,92,0,0,21,42,0,21,94,34,8,0,0,0,0,0,0,0,0,0,0,0,3,91),(555,'2015-03-14 14:56:58','2015-10-11 16:46:38',1,30001290,25,276,226,237,47,103,64,4,47,108,320,345,61,0,0,28,35,51,0,43,77,383,6,31),(556,'2015-03-14 14:56:58','2015-10-11 16:46:38',1,30004442,7,419,111,209,89,114,41,1,6,199,23,4,21,10,35,9,23,58,14,14,0,13,10,14),(557,'2015-03-14 14:56:58','2015-10-11 16:46:38',1,30004073,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,80,0,0,0,0,0),(558,'2015-03-14 14:56:58','2015-10-11 16:46:38',1,30000457,0,0,44,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(559,'2015-03-14 14:56:58','2015-10-11 16:46:38',1,30003648,208,233,103,136,141,87,41,101,55,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(560,'2015-03-14 14:56:58','2015-10-11 16:46:38',1,30004740,0,0,0,0,1,5,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,5,0),(561,'2015-03-14 14:56:58','2015-10-11 16:46:38',1,30005128,0,0,0,126,52,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(562,'2015-03-14 14:56:58','2015-03-14 14:56:58',1,30000364,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(563,'2015-03-14 14:56:58','2015-10-11 16:46:38',1,30001930,73,199,85,170,66,244,206,27,29,113,111,57,51,115,257,177,150,247,189,0,128,172,226,688),(564,'2015-03-14 14:56:58','2015-10-11 16:46:38',1,30003303,0,1,0,0,36,59,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(565,'2015-03-14 14:56:58','2015-10-11 16:46:38',1,30004070,0,64,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,5,0,0,0),(566,'2015-03-14 14:56:58','2015-10-11 16:46:38',1,30002446,8,0,96,7,0,76,0,0,8,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(567,'2015-03-14 14:56:58','2015-03-14 14:56:58',1,30003179,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(568,'2015-03-14 14:56:58','2015-10-11 16:46:38',1,30004908,162,0,0,146,516,1056,230,0,0,0,0,0,132,0,67,367,526,392,69,0,0,0,67,51),(569,'2015-03-14 14:56:58','2015-10-11 16:46:38',1,30001545,0,0,0,0,0,0,0,0,0,0,6,4,0,0,0,0,0,0,0,0,11,0,0,1),(570,'2015-03-14 14:56:58','2015-10-11 16:46:38',1,30003210,5,32,0,5,0,0,0,0,0,0,0,0,0,0,0,0,0,15,0,0,0,0,1,0),(571,'2015-03-14 14:56:58','2015-10-11 16:46:38',1,30001339,75,64,9,0,0,0,46,9,4,48,80,29,0,106,88,93,89,60,0,21,111,0,0,0),(572,'2015-03-14 14:56:58','2015-10-11 16:46:38',1,30001067,374,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,30,0,0,0),(573,'2015-03-14 14:56:58','2015-10-11 16:46:38',1,30002832,0,0,0,0,0,0,0,305,135,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(574,'2015-03-14 14:56:58','2015-10-11 16:46:38',1,30004608,0,3,0,0,0,0,0,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,5,0),(575,'2015-03-14 14:56:58','2015-10-11 16:46:38',1,30001574,0,4,78,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,69,0,0,0,0,0),(576,'2015-03-14 14:56:58','2015-10-11 16:46:38',1,30001276,383,316,145,213,151,145,168,42,120,56,70,48,101,68,85,94,148,374,72,53,11,18,168,283),(577,'2015-03-14 14:56:58','2015-03-14 14:56:58',1,30000967,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(578,'2015-03-14 14:56:58','2015-10-11 16:46:38',1,30000258,0,4,47,68,16,9,177,0,0,131,40,41,12,128,173,151,103,117,0,124,63,174,26,0),(579,'2015-03-14 14:56:58','2015-10-11 16:46:38',1,30001197,0,0,0,0,0,0,0,0,0,0,0,30,36,0,74,74,0,0,0,3,0,0,0,4),(580,'2015-03-14 14:56:58','2015-10-11 16:46:38',1,30001907,27,0,0,0,0,12,1,0,0,17,0,7,24,0,0,0,0,0,0,0,5,97,36,13),(581,'2015-03-14 14:56:58','2015-10-11 16:46:38',1,30000297,0,28,0,0,0,0,0,0,0,15,198,406,148,0,412,130,1,0,0,0,0,7,0,0),(582,'2015-03-14 14:56:58','2015-10-11 16:46:38',1,30002465,0,0,0,28,69,170,4,304,0,0,0,0,0,0,0,0,0,0,0,0,138,0,0,0),(583,'2015-03-14 14:56:58','2015-10-11 16:46:38',1,30004792,0,0,0,0,0,0,0,0,0,0,8,1,147,32,55,86,321,115,0,0,290,370,497,895),(584,'2015-03-14 14:56:58','2015-10-11 16:46:38',1,30004057,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,31),(585,'2015-03-14 14:56:58','2015-10-11 16:46:38',1,30001328,0,61,17,1,0,0,2,13,0,29,0,0,29,0,60,0,0,21,0,0,26,0,0,11),(586,'2015-03-14 14:56:58','2015-10-11 16:46:38',1,30001075,0,0,0,0,0,0,0,35,68,289,351,132,408,3,89,0,18,135,0,0,0,17,0,159),(587,'2015-03-14 14:56:58','2015-10-11 16:46:38',1,30004525,0,0,0,0,0,0,0,18,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(588,'2015-03-14 14:56:58','2015-10-11 16:46:38',1,30004925,98,0,99,0,0,0,1,0,142,0,0,0,0,0,0,0,0,0,1,0,0,0,1,1),(589,'2015-03-14 14:56:58','2015-10-11 16:46:38',1,30004585,0,0,0,0,0,0,0,0,0,0,0,0,0,129,0,0,0,0,34,5,10,0,0,0),(590,'2015-03-14 14:56:58','2015-03-14 14:56:58',1,30001608,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(591,'2015-03-14 14:56:58','2015-10-11 16:46:38',1,30000525,135,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,36),(592,'2015-03-14 14:56:58','2015-03-14 14:56:58',1,30000919,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(593,'2015-03-14 14:56:58','2015-10-11 16:46:38',1,30000759,6,0,136,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(594,'2015-03-14 14:56:58','2015-10-11 16:46:38',1,30000224,0,8,0,0,33,0,0,17,0,0,99,134,33,45,30,0,0,0,0,0,0,0,0,0),(595,'2015-03-14 14:56:58','2015-10-11 16:46:38',1,30004790,0,0,0,0,0,0,0,0,0,0,0,81,41,0,0,0,23,28,25,157,108,111,5,142),(596,'2015-03-14 14:56:58','2015-10-11 16:46:38',1,30000487,0,0,0,48,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,9,84),(597,'2015-03-14 14:56:58','2015-10-11 16:46:38',1,30000287,203,466,3,230,547,541,127,349,43,56,0,0,0,99,130,25,0,0,74,142,125,140,64,100),(598,'2015-03-14 14:56:58','2015-03-14 14:56:58',1,30001588,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(599,'2015-03-14 14:56:58','2015-10-11 16:46:38',1,30000217,288,783,22,316,33,44,99,61,295,0,106,1,0,45,26,237,227,76,173,53,551,213,1,199),(600,'2015-03-14 14:56:58','2015-10-11 16:46:38',1,30003217,0,142,521,371,280,313,234,84,70,0,0,0,0,0,98,32,0,0,0,0,0,5,0,0),(601,'2015-03-14 14:56:58','2015-10-11 16:46:38',1,30001884,0,0,2,0,18,0,0,0,1,0,24,0,0,0,0,0,1,0,0,0,15,0,20,16),(602,'2015-03-14 14:56:58','2015-10-11 16:46:38',1,30001057,0,0,0,1,0,0,0,78,0,0,60,154,201,0,0,0,0,0,0,0,0,0,0,0),(603,'2015-03-14 14:56:58','2015-10-11 16:46:38',1,30002158,0,0,0,0,0,0,0,0,0,300,50,71,0,0,40,58,26,0,164,30,0,32,17,1),(604,'2015-03-14 14:56:58','2015-10-11 16:46:38',1,30000726,0,0,36,0,0,0,0,150,81,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1),(605,'2015-03-14 14:56:58','2015-10-11 16:46:38',1,30004893,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,17,0,0,0,0,0,0,0),(606,'2015-03-14 14:56:58','2015-10-11 16:46:38',1,30002848,0,0,0,0,0,0,0,0,83,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(607,'2015-03-14 14:56:58','2015-10-11 16:46:38',1,30000787,21,0,0,0,0,0,0,0,0,0,0,0,0,0,6,6,0,0,0,0,0,0,0,0),(608,'2015-03-14 14:56:58','2015-03-14 14:56:58',1,30000333,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(609,'2015-03-14 14:56:58','2015-10-11 16:46:38',1,30000827,0,0,0,0,0,0,0,0,0,203,75,0,54,118,0,0,0,0,69,130,114,0,0,0),(610,'2015-03-14 14:56:58','2015-10-11 16:46:38',1,30004429,0,0,0,28,0,0,0,0,0,37,0,0,0,1,0,0,0,0,0,0,75,0,0,0),(611,'2015-03-14 14:56:58','2015-10-11 16:46:38',1,30004620,183,354,348,317,169,146,73,200,241,0,72,160,51,28,44,59,75,72,8,9,38,14,55,43),(612,'2015-03-14 14:56:58','2015-10-11 16:46:38',1,30004045,0,0,0,0,6,0,0,0,0,0,0,0,11,0,131,131,1,0,0,0,0,0,0,7),(613,'2015-03-14 14:56:58','2015-10-11 16:46:38',1,30000483,0,0,0,0,47,29,98,0,0,152,0,9,0,0,0,118,119,0,0,0,3,0,0,1),(614,'2015-03-14 14:56:58','2015-10-11 16:46:38',1,30000773,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,6,0,32),(615,'2015-03-14 14:56:58','2015-03-14 14:56:58',1,30004816,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(616,'2015-03-14 14:56:58','2015-10-11 16:46:38',1,30002125,0,0,0,95,0,0,0,0,0,0,0,0,0,0,7,7,0,0,22,15,17,81,21,33),(617,'2015-03-14 14:56:58','2015-10-11 16:46:38',1,30005145,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,82,0,0,0,30,62,0),(618,'2015-03-14 14:56:58','2015-03-14 14:56:58',1,30001639,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(619,'2015-03-14 14:56:58','2015-10-11 16:46:38',1,30004635,198,0,15,147,0,0,1,0,572,33,216,243,157,0,0,0,0,23,0,174,0,51,451,277),(620,'2015-03-14 14:56:58','2015-10-11 16:46:38',1,30004616,26,110,349,369,265,66,0,1,167,0,0,0,0,0,0,30,161,114,0,0,0,0,0,8),(621,'2015-03-14 14:56:58','2015-03-14 14:56:58',1,30000360,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(622,'2015-03-14 14:56:58','2015-10-11 16:46:38',1,30002046,0,0,0,14,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(623,'2015-03-14 14:56:58','2015-10-11 16:46:38',1,30003671,0,0,118,1,0,0,0,0,0,0,0,0,0,0,0,0,0,99,121,0,0,0,0,0),(624,'2015-03-14 14:56:58','2015-10-11 16:46:38',1,30000840,1,0,0,0,0,0,0,0,0,122,31,1,0,68,0,0,0,1,0,0,0,4,0,4),(625,'2015-03-14 14:56:58','2015-10-11 16:46:38',1,30001817,0,9,270,643,91,292,722,5,11,1659,78,125,447,461,1160,1675,1635,1998,335,759,1042,1151,130,871),(626,'2015-03-14 14:56:58','2015-10-11 16:46:38',1,30000323,0,30,0,0,0,0,50,0,0,0,0,0,5,20,0,0,0,0,0,0,0,0,0,0),(627,'2015-03-14 14:56:58','2015-10-11 16:46:38',1,30004768,0,0,0,0,0,0,0,0,121,0,43,43,3,0,78,119,233,253,16,0,2,134,317,337),(628,'2015-03-14 14:56:58','2015-10-11 16:46:38',1,30003948,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,60,0,0,0,0,0,1),(629,'2015-03-14 14:56:58','2015-03-14 14:56:58',1,30001457,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(630,'2015-03-14 14:56:58','2015-10-11 16:46:38',1,30000955,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,77,0,0,0),(631,'2015-03-14 14:56:58','2015-03-14 14:56:58',1,30005176,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(632,'2015-03-14 14:56:58','2015-10-11 16:46:38',1,30000606,0,0,0,47,78,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(633,'2015-03-14 14:56:58','2015-10-11 16:46:38',1,30004872,0,21,110,182,2,0,0,25,13,0,0,0,0,0,0,0,0,0,0,0,0,0,23,118),(634,'2015-03-14 14:56:58','2015-10-11 16:46:38',1,30000745,0,0,0,0,0,0,0,127,0,25,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(635,'2015-03-14 14:56:58','2015-10-11 16:46:38',1,30004926,0,0,0,0,0,0,0,7,0,0,441,321,23,87,94,57,154,600,0,0,0,47,560,362),(636,'2015-03-14 14:56:58','2015-10-11 16:46:38',1,30001218,252,0,0,0,0,0,0,0,0,179,305,409,273,683,34,135,208,38,12,130,74,100,38,20),(637,'2015-03-14 14:56:58','2015-03-14 14:56:58',1,30000383,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(638,'2015-03-14 14:56:58','2015-10-11 16:46:38',1,30005138,0,0,0,0,0,0,0,4,46,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(639,'2015-03-14 14:56:58','2015-10-11 16:46:38',1,30004860,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,0,0,0),(640,'2015-03-14 14:56:58','2015-10-11 16:46:38',1,30001232,218,103,42,147,6,192,69,10,165,0,17,111,53,0,0,0,0,0,0,0,0,0,0,0),(641,'2015-03-14 14:56:58','2015-03-14 14:56:58',1,30005146,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(642,'2015-03-14 14:56:58','2015-03-14 14:56:58',1,30000353,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(643,'2015-03-14 14:56:58','2015-10-11 16:46:38',1,30003165,451,379,0,40,39,4,0,0,0,109,0,0,0,75,0,0,69,76,46,90,215,113,55,192),(644,'2015-03-14 14:56:58','2015-10-11 16:46:38',1,30000943,0,0,0,0,0,0,5,0,9,0,17,16,10,6,0,0,6,0,5,0,1,5,1,61),(645,'2015-03-14 14:56:58','2015-10-11 16:46:38',1,30001845,0,3,1,1,0,0,0,14,0,99,10,13,4,5,91,95,10,3,0,24,4,0,3,4),(646,'2015-03-14 14:56:58','2015-10-11 16:46:38',1,30002016,0,0,0,16,24,0,0,132,0,0,0,0,0,0,0,0,0,0,0,0,8,0,3,3),(647,'2015-03-14 14:56:58','2015-10-11 16:46:38',1,30001141,0,0,0,0,0,0,0,0,0,0,0,91,93,0,0,0,0,0,0,0,0,0,0,0),(648,'2015-03-14 14:56:58','2015-10-11 16:46:38',1,30002929,262,74,97,22,21,0,0,416,40,47,63,86,458,180,619,485,228,113,143,130,0,174,401,505),(649,'2015-03-14 14:56:58','2015-10-11 16:46:38',1,30004788,52,0,0,0,0,0,0,0,0,0,0,0,0,36,56,261,504,475,1,54,267,423,108,955),(650,'2015-03-14 14:56:58','2015-10-11 16:46:38',1,30003945,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(651,'2015-03-14 14:56:58','2015-10-11 16:46:38',1,30004587,169,0,0,64,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,134,105),(652,'2015-03-14 14:56:58','2015-10-11 16:46:38',1,30002031,0,0,78,89,134,107,0,0,0,0,0,0,0,78,0,0,0,0,27,0,0,0,0,0),(653,'2015-03-14 14:56:58','2015-10-11 16:46:38',1,30002177,92,0,168,0,0,0,170,0,30,0,9,4,24,30,39,28,15,16,0,0,1,6,9,13),(654,'2015-03-14 14:56:58','2015-10-11 16:46:38',1,30003778,0,0,97,40,0,44,90,105,216,553,428,465,542,500,591,515,413,329,0,141,195,279,177,78),(655,'2015-03-14 14:56:58','2015-10-11 16:46:38',1,30001071,0,0,0,0,0,0,0,0,0,3,7,4,32,49,146,96,41,12,210,69,45,46,0,78),(656,'2015-03-14 14:56:58','2015-10-11 16:46:38',1,30004351,0,196,15,13,111,60,61,0,237,19,50,50,34,64,22,38,123,324,0,0,0,0,0,0),(657,'2015-03-14 14:56:58','2015-10-11 16:46:38',1,30004869,0,101,1,75,0,0,0,104,98,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(658,'2015-03-14 14:56:58','2015-10-11 16:46:38',1,30001768,0,57,0,0,0,0,0,0,0,0,39,53,0,0,0,0,0,0,0,0,0,0,0,0),(659,'2015-03-14 14:56:58','2015-10-11 16:46:38',1,30004862,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,3,0,0,0),(660,'2015-03-14 14:56:58','2015-10-11 16:46:38',1,30000614,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,81,1,0,0,0,0),(661,'2015-03-14 14:56:58','2015-10-11 16:46:38',1,30004001,0,15,0,10,11,8,16,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(662,'2015-03-14 14:56:58','2015-10-11 16:46:38',1,30003282,0,48,0,2,0,0,29,0,27,0,0,0,60,0,27,14,0,0,0,0,0,0,0,0),(663,'2015-03-14 14:56:58','2015-10-11 16:46:38',1,30002484,0,490,174,235,491,530,67,270,109,0,0,0,0,0,0,0,56,352,0,0,0,0,0,0),(664,'2015-03-14 14:56:58','2015-03-14 14:56:58',1,30002293,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(665,'2015-03-14 14:56:58','2015-03-14 14:56:58',1,30000542,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(666,'2015-03-14 14:56:58','2015-03-14 14:56:58',1,30000334,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(667,'2015-03-14 14:56:58','2015-10-11 16:46:38',1,30003985,0,0,0,0,84,84,3,0,6,47,16,39,124,0,28,21,25,20,0,0,0,43,52,12),(668,'2015-03-14 14:56:58','2015-10-11 16:46:38',1,30000628,0,0,0,0,35,91,46,18,818,40,49,36,72,3,0,0,45,280,0,20,20,0,0,0),(669,'2015-03-14 14:56:58','2015-10-11 16:46:38',1,30000312,0,788,305,306,145,108,159,0,0,0,0,0,0,0,0,0,0,0,0,11,0,0,84,0),(670,'2015-03-14 14:56:58','2015-03-14 14:56:58',1,30001514,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(671,'2015-03-14 14:56:58','2015-03-14 14:56:58',1,30001627,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(672,'2015-03-14 14:56:58','2015-10-11 16:46:38',1,30000648,40,0,0,0,0,0,149,0,0,5,152,233,121,135,160,155,143,96,0,0,137,83,77,9),(673,'2015-03-14 14:56:58','2015-10-11 16:46:38',1,30000775,0,0,0,0,96,108,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(674,'2015-03-14 14:56:58','2015-03-14 14:56:58',1,30004025,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(675,'2015-03-14 14:56:58','2015-10-11 16:46:38',1,30001745,0,0,0,0,0,0,0,0,0,0,0,0,0,0,109,63,0,156,0,0,0,0,0,0),(676,'2015-03-14 14:56:58','2015-03-14 14:56:58',1,30003189,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(677,'2015-03-14 14:56:58','2015-10-11 16:46:38',1,30002924,407,869,674,820,848,632,746,1132,350,772,775,855,1156,1018,718,438,527,1195,330,934,512,355,1028,1560),(678,'2015-03-14 14:56:58','2015-10-11 16:46:38',1,30001132,0,0,0,0,0,0,0,0,0,0,0,32,75,0,0,0,0,0,0,0,0,0,0,0),(679,'2015-03-14 14:56:58','2015-10-11 16:46:38',1,30002885,807,41,839,857,580,838,5,296,437,306,637,164,648,22,150,150,1,154,0,0,0,307,523,416),(680,'2015-03-14 14:56:58','2015-10-11 16:46:38',1,30004190,0,169,545,0,0,0,73,149,306,93,242,217,71,309,646,180,133,129,415,369,314,881,92,158),(681,'2015-03-14 14:56:58','2015-10-11 16:46:38',1,30004640,0,0,151,0,0,0,136,0,0,5,2,2,0,0,0,0,0,0,0,0,0,0,0,0),(682,'2015-03-14 14:56:58','2015-10-11 16:46:38',1,30000770,1,0,0,0,0,0,0,0,0,0,0,44,18,0,81,38,0,0,0,0,0,0,0,0),(683,'2015-03-14 14:56:58','2015-10-11 16:46:38',1,30002346,513,189,151,322,275,145,117,0,195,0,0,0,0,0,0,0,0,0,0,0,0,44,48,0),(684,'2015-03-14 14:56:58','2015-10-11 16:46:38',1,30002314,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,73,95),(685,'2015-03-14 14:56:58','2015-03-14 14:56:58',1,30001053,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(686,'2015-03-14 14:56:58','2015-10-11 16:46:38',1,30001219,2,172,0,0,209,23,23,0,0,0,0,0,0,0,0,3,3,0,0,0,0,0,26,0),(687,'2015-03-14 14:56:58','2015-10-11 16:46:38',1,30005164,860,860,134,461,101,0,460,493,513,105,464,439,522,0,0,0,0,423,0,0,0,382,50,0),(688,'2015-03-14 14:56:58','2015-10-11 16:46:38',1,30003974,0,0,0,0,0,0,0,0,0,74,0,42,14,0,191,53,52,34,0,0,0,19,244,1),(689,'2015-03-14 14:56:58','2015-10-11 16:46:38',1,30003771,0,940,38,8,388,360,176,859,437,0,0,0,7,4,6,18,70,782,43,57,82,0,15,241),(690,'2015-03-14 14:56:58','2015-10-11 16:46:38',1,30001144,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,146),(691,'2015-03-14 14:56:58','2015-10-11 16:46:38',1,30001298,0,0,0,0,31,68,0,0,0,0,0,0,0,6,0,0,0,0,0,0,0,0,0,0),(692,'2015-03-14 14:56:58','2015-10-11 16:46:38',1,30000731,0,0,0,0,0,0,0,0,0,51,14,60,9,0,0,8,12,0,0,0,0,0,0,0),(693,'2015-03-14 14:56:58','2015-10-11 16:46:38',1,30000910,4,0,0,0,0,0,113,0,0,0,0,0,0,20,0,0,0,0,50,49,46,16,0,0),(694,'2015-03-14 14:56:58','2015-10-11 16:46:38',1,30000748,0,6,12,0,5,9,28,157,28,5,6,34,8,3,8,18,14,10,0,5,0,135,61,22),(695,'2015-03-14 14:56:58','2015-10-11 16:46:38',1,30004574,0,0,0,0,0,0,0,60,0,0,0,0,55,0,0,0,0,133,0,0,0,0,0,132),(696,'2015-03-14 14:56:58','2015-10-11 16:46:38',1,30004781,0,0,0,0,0,0,0,0,0,0,4,5,10,60,0,12,21,106,31,13,0,20,5,262),(697,'2015-03-14 14:56:58','2015-10-11 16:46:38',1,30000494,0,0,0,0,0,0,0,0,0,0,0,0,0,0,16,155,184,0,0,0,0,0,0,0),(698,'2015-03-14 14:56:58','2015-10-11 16:46:38',1,30000771,134,0,0,0,0,0,3,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(699,'2015-03-14 14:56:58','2015-10-11 16:46:38',1,30001017,6,5,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,3,5,3,0,0,0),(700,'2015-03-14 14:56:58','2015-10-11 16:46:38',1,30001776,66,0,0,0,0,0,7,0,0,0,0,0,0,0,0,0,0,0,0,0,5,0,0,0),(701,'2015-03-14 14:56:58','2015-10-11 16:46:38',1,30002354,0,0,0,0,0,0,0,0,0,10,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(702,'2015-03-14 14:56:58','2015-10-11 16:46:38',1,30001887,0,0,0,0,0,0,75,39,0,1,17,25,71,91,18,22,18,40,0,44,42,54,44,92),(703,'2015-03-14 14:56:58','2015-10-11 16:46:38',1,30004942,0,0,0,0,0,0,0,0,0,0,0,0,387,93,0,15,290,357,0,0,0,814,73,481),(704,'2015-03-14 14:56:58','2015-10-11 16:46:38',1,30002442,122,40,145,88,209,349,147,326,228,89,0,118,191,1,0,21,64,52,42,193,251,216,149,101),(705,'2015-03-14 14:56:58','2015-03-14 14:56:58',1,30000391,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(706,'2015-03-14 14:56:58','2015-10-11 16:46:38',1,30001879,20,0,1,0,86,80,0,1,0,28,0,0,8,33,57,12,0,18,0,25,13,141,85,149),(707,'2015-03-14 14:56:58','2015-10-11 16:46:38',1,30000652,3,0,2,0,0,0,0,0,0,0,0,0,0,37,41,39,151,0,417,286,0,198,159,105),(708,'2015-03-14 14:56:58','2015-03-14 14:56:58',1,30001561,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(709,'2015-03-14 14:56:58','2015-10-11 16:46:38',1,30003750,0,21,5,0,0,3,0,0,3,1,42,102,117,53,84,81,122,21,0,32,9,226,106,17),(710,'2015-03-14 14:56:58','2015-10-11 16:46:38',1,30000697,0,0,0,0,0,0,0,0,0,325,180,104,17,35,75,37,71,156,91,0,141,134,160,197),(711,'2015-03-14 14:56:58','2015-10-11 16:46:38',1,30004681,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,120,0,0,127,0),(712,'2015-03-14 14:56:58','2015-10-11 16:46:38',1,30003702,371,442,538,147,160,113,610,670,457,315,260,422,85,544,213,217,281,672,329,386,425,359,301,665),(713,'2015-03-14 14:56:58','2015-10-11 16:46:38',1,30004012,5,0,0,0,0,0,0,0,0,0,0,9,25,0,0,0,0,0,0,0,0,0,0,0),(714,'2015-03-14 14:56:58','2015-10-11 16:46:38',1,30004056,0,0,0,0,139,43,0,0,0,0,0,0,0,0,0,70,70,133,0,0,0,0,0,0),(715,'2015-03-14 14:56:58','2015-10-11 16:46:38',1,30001805,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,295,0,0,0,0,0,0),(716,'2015-03-14 14:56:58','2015-10-11 16:46:38',1,30004771,44,129,243,122,82,250,0,22,11,11,56,43,6,87,163,147,151,0,7,23,5,14,0,11),(717,'2015-03-14 14:56:58','2015-03-14 14:56:58',1,30001523,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(718,'2015-03-14 14:56:58','2015-10-11 16:46:38',1,30002004,1,59,173,75,185,212,42,0,38,37,52,58,57,3,86,125,139,38,52,51,31,197,10,47),(719,'2015-03-14 14:56:58','2015-10-11 16:46:38',1,30002930,29,0,0,28,0,0,0,24,0,0,0,0,0,90,161,1,14,0,35,58,50,0,0,0),(720,'2015-03-14 14:56:58','2015-10-11 16:46:38',1,30000242,0,0,1,5,0,0,0,0,158,0,0,0,0,0,0,0,0,0,0,0,24,0,0,0),(721,'2015-03-14 14:56:58','2015-03-14 14:56:58',1,30001614,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(722,'2015-03-14 14:56:58','2015-10-11 16:46:38',1,30003320,0,0,8,2,0,0,0,0,0,2,12,8,4,0,0,0,0,0,0,0,0,0,0,0),(723,'2015-03-14 14:56:58','2015-10-11 16:46:38',1,30003695,56,191,45,429,47,206,82,89,22,288,112,66,67,248,372,194,90,423,0,121,253,248,474,444),(724,'2015-03-14 14:56:58','2015-10-11 16:46:38',1,30004760,0,0,0,0,0,0,0,0,14,0,0,0,0,0,44,1,0,0,0,0,57,0,216,0),(725,'2015-03-14 14:56:58','2015-10-11 16:46:38',1,30002171,209,682,522,822,0,82,715,425,430,116,300,189,132,953,129,115,106,204,84,124,328,362,63,243),(726,'2015-03-14 14:56:58','2015-10-11 16:46:38',1,30000942,0,0,0,0,0,0,0,0,0,0,4,5,3,0,0,0,0,0,0,0,0,0,0,0),(727,'2015-03-14 14:56:58','2015-10-11 16:46:38',1,30001877,64,58,104,64,0,0,0,0,13,12,124,64,0,196,0,34,43,166,3,0,75,30,74,25),(728,'2015-03-14 14:56:58','2015-10-11 16:46:38',1,30000469,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,207,270,0,0,0,607,61,0),(729,'2015-03-14 14:56:58','2015-10-11 16:46:38',1,30002868,0,0,0,0,0,0,0,0,0,83,114,144,168,113,1,138,698,110,0,310,93,213,177,231),(730,'2015-03-14 14:56:58','2015-10-11 16:46:38',1,30001273,8,0,71,47,57,49,0,2,20,22,101,101,70,13,74,74,37,97,128,0,4,24,28,17),(731,'2015-03-14 14:56:58','2015-10-11 16:46:38',1,30000939,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0),(732,'2015-03-14 14:56:58','2015-10-11 16:46:38',1,30004059,20,0,0,9,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,33,0,0,56),(733,'2015-03-14 14:56:58','2015-10-11 16:46:38',1,30004219,0,10,0,15,20,24,89,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(734,'2015-03-14 14:56:58','2015-10-11 16:46:38',1,30001279,56,77,16,54,34,14,10,33,21,2,14,13,46,71,41,33,3,151,22,0,41,0,7,16),(735,'2015-03-14 14:56:58','2015-10-11 16:46:38',1,30001166,0,0,0,0,0,0,0,0,0,0,0,0,0,0,137,47,0,0,0,0,0,0,0,0),(736,'2015-03-14 14:56:58','2015-10-11 16:46:38',1,30004879,109,48,6,22,7,126,0,55,13,0,0,0,0,0,0,0,0,0,24,0,0,99,5,0),(737,'2015-03-14 14:56:58','2015-10-11 16:46:38',1,30004397,0,0,0,0,43,26,0,0,201,250,79,36,25,401,350,495,628,71,17,184,466,363,415,466),(738,'2015-03-14 14:56:58','2015-03-14 14:56:58',1,30001600,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(739,'2015-03-14 14:56:58','2015-03-14 14:56:58',1,30001484,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(740,'2015-03-14 14:56:58','2015-10-11 16:46:38',1,30005148,0,1,0,21,0,0,0,76,0,0,0,4,0,0,0,0,0,0,0,0,69,0,0,0),(741,'2015-03-14 14:56:58','2015-10-11 16:46:38',1,30003704,171,0,162,112,1,2,4,185,0,0,0,0,0,0,0,0,23,12,40,0,0,10,8,0),(742,'2015-03-14 14:56:58','2015-10-11 16:46:38',1,30000318,0,0,0,0,89,17,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,4,0,0),(743,'2015-03-14 14:56:58','2015-10-11 16:46:38',1,30003961,0,0,0,0,0,0,0,0,105,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(744,'2015-03-14 14:56:58','2015-10-11 16:46:38',1,30002590,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,4,0,0,0),(745,'2015-03-14 14:56:58','2015-10-11 16:46:38',1,30002450,30,0,0,0,0,0,0,67,3,0,0,0,0,0,90,0,0,0,0,0,0,0,0,0),(746,'2015-03-14 14:56:58','2015-10-11 16:46:38',1,30004826,0,0,0,0,0,0,0,0,24,0,0,0,0,84,0,0,0,0,0,0,0,0,0,0),(747,'2015-03-14 14:56:58','2015-10-11 16:46:38',1,30000454,0,0,0,62,0,0,176,0,0,0,0,0,0,0,0,0,1,50,0,0,0,0,0,0),(748,'2015-03-14 14:56:58','2015-10-11 16:46:38',1,30001266,0,0,0,0,0,0,36,17,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(749,'2015-03-14 14:56:58','2015-10-11 16:46:38',1,30004557,0,0,0,31,0,0,0,0,12,0,0,0,0,0,16,0,6,0,0,0,0,0,0,0),(750,'2015-03-14 14:56:58','2015-10-11 16:46:38',1,30004201,17,3,44,0,0,0,9,0,29,0,0,0,92,4,0,0,0,0,0,0,3,25,0,0),(751,'2015-03-14 14:56:58','2015-03-14 14:56:58',1,30002159,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(752,'2015-03-14 14:56:58','2015-10-11 16:46:38',1,30005168,0,0,0,0,0,0,0,22,0,0,0,0,0,0,0,0,0,0,0,0,0,12,0,0),(753,'2015-03-14 14:56:58','2015-10-11 16:46:38',1,30004409,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,11,0,0,0,0,0,0,0),(754,'2015-03-14 14:56:58','2015-10-11 16:46:38',1,30001814,107,689,126,878,409,379,565,199,307,0,38,196,489,147,256,158,127,194,0,0,0,46,20,63),(755,'2015-03-14 14:56:58','2015-03-14 14:56:58',1,30001609,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(756,'2015-03-14 14:56:58','2015-10-11 16:46:38',1,30003253,468,0,0,102,38,0,0,0,0,0,0,0,0,105,0,0,0,0,0,0,0,16,0,0),(757,'2015-03-14 14:56:58','2015-10-11 16:46:38',1,30000994,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,3,3,0,0,130,38,0,0,0),(758,'2015-03-14 14:56:58','2015-10-11 16:46:38',1,30001312,0,0,0,0,0,80,0,89,94,0,0,0,0,0,46,9,0,0,33,0,0,0,85,0),(759,'2015-03-14 14:56:58','2015-10-11 16:46:38',1,30001284,77,0,0,0,0,0,0,0,0,3,1,1,0,0,0,0,0,0,0,28,0,2,0,3),(760,'2015-03-14 14:56:58','2015-10-11 16:46:38',1,30001990,26,82,0,0,1,1,3,0,5,0,0,0,0,6,11,0,0,0,3,0,0,0,0,0),(761,'2015-03-14 14:56:58','2015-10-11 16:46:38',1,30002895,0,333,154,21,67,280,105,382,0,65,69,0,328,0,0,0,36,408,0,0,0,179,142,251),(762,'2015-03-14 14:56:58','2015-03-14 14:56:58',1,30002131,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(763,'2015-03-14 14:56:58','2015-10-11 16:46:38',1,30000271,249,41,1,5,0,15,58,369,132,0,0,44,262,0,339,180,43,0,0,0,0,38,84,0),(764,'2015-03-14 14:56:58','2015-10-11 16:46:38',1,30005130,138,2,0,0,0,0,192,0,88,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(765,'2015-03-14 14:56:58','2015-10-11 16:46:38',1,30003301,0,121,9,0,0,0,0,0,0,0,0,0,1,0,3,3,0,0,7,0,0,0,0,0),(766,'2015-03-14 14:56:58','2015-03-14 14:56:58',1,30000392,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(767,'2015-03-14 14:56:58','2015-10-11 16:46:38',1,30003373,88,56,0,0,1,0,0,32,0,0,2,28,8,0,27,3,4,0,4,0,0,0,27,0),(768,'2015-03-14 14:56:58','2015-10-11 16:46:38',1,30004914,50,92,13,45,85,53,15,51,39,236,95,22,155,398,35,0,0,35,8,81,405,74,121,41),(769,'2015-03-14 14:56:58','2015-10-11 16:46:38',1,30000616,204,0,0,0,0,0,0,1,0,11,26,30,1,0,45,23,28,19,31,41,16,0,0,0),(770,'2015-03-14 14:56:58','2015-10-11 16:46:38',1,30000724,0,0,0,0,0,0,0,0,0,2,0,0,15,0,22,20,31,37,0,0,0,0,5,14),(771,'2015-03-14 14:56:58','2015-10-11 16:46:38',1,30003979,0,0,0,0,0,0,0,0,0,0,0,0,0,0,58,59,14,0,0,0,0,0,0,0),(772,'2015-03-14 14:56:58','2015-10-11 16:46:38',1,30002949,311,68,75,538,236,160,357,0,251,209,226,479,743,141,203,354,505,257,0,73,202,159,209,485),(773,'2015-03-14 14:56:58','2015-10-11 16:46:38',1,30004629,87,0,0,32,168,196,9,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(774,'2015-03-14 14:56:58','2015-10-11 16:46:38',1,30004646,16,0,0,0,0,0,0,0,0,143,283,165,162,382,100,87,104,284,30,104,87,18,57,606),(775,'2015-03-14 14:56:58','2015-03-14 14:56:58',1,30003954,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(776,'2015-03-14 14:56:58','2015-10-11 16:46:38',1,30002284,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,4,0,0),(777,'2015-03-14 14:56:58','2015-10-11 16:46:38',1,30004366,271,0,317,309,683,358,0,199,500,423,778,484,383,344,725,1020,1017,205,270,542,681,0,407,381),(778,'2015-03-14 14:56:58','2015-10-11 16:46:38',1,30001079,215,207,0,1,3,3,0,0,0,0,0,0,0,0,56,56,0,136,0,0,52,2,250,37),(779,'2015-03-14 14:56:58','2015-10-11 16:46:38',1,30003249,0,0,0,64,0,0,0,73,0,0,0,0,0,0,0,0,0,0,0,0,53,0,0,0),(780,'2015-03-14 14:56:58','2015-10-11 16:46:38',1,30000875,96,193,122,354,133,181,110,102,451,74,0,45,177,44,33,0,0,0,0,0,0,0,81,0),(781,'2015-03-14 14:56:58','2015-10-11 16:46:38',1,30004796,0,0,0,0,0,0,0,0,0,0,0,0,0,29,37,0,0,0,0,0,0,0,0,0),(782,'2015-03-14 14:56:58','2015-03-14 14:56:58',1,30003338,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(783,'2015-03-14 14:56:58','2015-10-11 16:46:38',1,30002589,0,0,0,105,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,22,0,27),(784,'2015-03-14 14:56:58','2015-10-11 16:46:38',1,30001306,0,61,0,0,9,21,0,23,40,0,12,15,23,0,17,31,28,0,26,0,0,85,30,18),(785,'2015-03-14 14:56:58','2015-03-14 14:56:58',1,30005180,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(786,'2015-03-14 14:56:58','2015-03-14 14:56:58',1,30000429,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(787,'2015-03-14 14:56:58','2015-10-11 16:46:38',1,30004169,64,43,0,0,0,0,0,0,0,0,0,0,0,91,0,0,1,21,0,0,0,56,0,0),(788,'2015-03-14 14:56:58','2015-03-14 14:56:58',1,30001154,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(789,'2015-03-14 14:56:58','2015-10-11 16:46:38',1,30000723,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,9,0,0),(790,'2015-03-14 14:56:58','2015-10-11 16:46:38',1,30004884,0,0,0,0,0,0,0,0,0,0,161,161,0,0,0,0,0,0,4,0,0,21,0,130),(791,'2015-03-14 14:56:58','2015-03-14 14:56:58',1,30000399,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(792,'2015-03-14 14:56:58','2015-03-14 14:56:58',1,30000458,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(793,'2015-03-14 14:56:58','2015-10-11 16:46:38',1,30001128,8,0,0,151,0,0,0,0,122,0,480,365,513,499,251,116,41,1473,0,347,713,191,629,420),(794,'2015-03-14 14:56:58','2015-10-11 16:46:38',1,30004780,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,59,29,0,0,0,0,0),(795,'2015-03-14 14:56:58','2015-10-11 16:46:38',1,30004582,0,0,0,0,0,0,0,29,0,0,0,0,0,0,6,6,0,0,0,0,0,0,0,0),(796,'2015-03-14 14:56:58','2015-10-11 16:46:38',1,30001886,0,0,0,0,0,8,0,0,0,3,49,72,56,46,9,1,0,0,0,0,23,43,1,0),(797,'2015-03-14 14:56:58','2015-10-11 16:46:38',1,30000800,233,1500,308,1043,948,876,510,395,333,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(798,'2015-03-14 14:56:58','2015-10-11 16:46:38',1,30000247,0,0,0,0,0,0,53,0,0,0,0,0,0,0,0,0,0,0,35,0,0,0,0,0),(799,'2015-03-14 14:56:58','2015-10-11 16:46:38',1,30002287,91,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(800,'2015-03-14 14:56:58','2015-10-11 16:46:38',1,30002472,192,608,19,0,81,348,66,504,312,506,722,654,815,638,50,0,0,683,0,24,173,123,517,980),(801,'2015-03-14 14:56:58','2015-10-11 16:46:38',1,30000668,0,0,0,0,0,0,0,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(802,'2015-03-14 14:56:58','2015-03-14 14:56:58',1,30002339,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(803,'2015-03-14 14:56:58','2015-10-11 16:46:38',1,30004569,0,0,0,0,63,54,0,0,0,0,0,0,0,28,31,31,24,43,0,0,0,26,0,416),(804,'2015-03-14 14:56:58','2015-10-11 16:46:38',1,30001840,15,0,55,0,120,225,29,11,0,0,6,30,0,17,24,41,25,4,103,0,2,90,4,0),(805,'2015-03-14 14:56:58','2015-10-11 16:46:38',1,30001796,4,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(806,'2015-03-14 14:56:58','2015-10-11 16:46:38',1,30004022,0,0,0,0,79,46,0,0,0,2,0,0,0,0,0,0,0,42,0,37,107,0,0,0),(807,'2015-03-14 14:56:58','2015-10-11 16:46:38',1,30000883,782,0,0,4,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(808,'2015-03-14 14:56:58','2015-10-11 16:46:38',1,30000969,0,0,2,0,1,1,0,0,0,8,0,0,0,0,0,0,0,0,0,0,3,5,5,3),(809,'2015-03-14 14:56:58','2015-10-11 16:46:38',1,30004672,74,0,0,0,0,0,0,0,0,0,0,0,0,0,127,1,0,0,0,0,0,0,0,0),(810,'2015-03-14 14:56:58','2015-10-11 16:46:38',1,30003341,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,79,0,0,0,1,0,0),(811,'2015-03-14 14:56:58','2015-10-11 16:46:38',1,30001857,0,0,0,0,0,0,0,0,0,0,0,0,10,0,0,6,9,16,0,0,0,0,0,0),(812,'2015-03-14 14:56:58','2015-10-11 16:46:38',1,30003707,4,0,263,132,253,112,119,64,409,0,0,0,0,12,5,5,3,7,0,0,0,26,0,8),(813,'2015-03-14 14:56:58','2015-10-11 16:46:38',1,30005137,83,461,24,98,287,136,144,88,73,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(814,'2015-03-14 14:56:58','2015-03-14 14:56:58',1,30000412,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(815,'2015-03-14 14:56:58','2015-10-11 16:46:38',1,30001764,0,10,0,0,0,0,44,8,0,0,0,0,0,0,0,0,0,0,0,0,0,91,16,0),(816,'2015-03-14 14:56:58','2015-10-11 16:46:38',1,30002618,260,0,50,513,0,64,0,156,0,0,469,1069,598,0,0,0,0,0,0,0,0,0,625,401),(817,'2015-03-14 14:56:58','2015-10-11 16:46:38',1,30004179,0,0,0,0,67,0,0,0,5,15,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(818,'2015-03-14 14:56:58','2015-10-11 16:46:38',1,30004619,30,0,6,2,57,103,56,5,0,0,0,0,0,0,0,0,0,0,0,0,0,4,0,3),(819,'2015-03-14 14:56:58','2015-10-11 16:46:38',1,30003650,0,0,0,0,0,0,31,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(820,'2015-03-14 14:56:58','2015-10-11 16:46:38',1,30003319,0,0,34,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(821,'2015-03-14 14:56:58','2015-03-14 14:56:58',1,30000587,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(822,'2015-03-14 14:56:58','2015-10-11 16:46:38',1,30003977,687,101,22,281,55,0,168,0,57,171,290,293,219,19,146,340,313,634,171,519,112,266,585,231),(823,'2015-03-14 14:56:58','2015-10-11 16:46:38',1,30004544,0,0,0,0,38,1,0,0,42,0,18,7,0,0,0,0,0,0,0,0,0,0,0,0),(824,'2015-03-14 14:56:58','2015-03-14 14:56:58',1,30000491,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(825,'2015-03-14 14:56:58','2015-10-11 16:46:38',1,30001193,0,0,0,0,0,0,0,0,0,0,0,0,0,0,135,180,94,0,0,0,0,0,0,0),(826,'2015-03-14 14:56:58','2015-10-11 16:46:38',1,30000702,0,0,0,0,2,0,0,47,0,0,0,0,0,0,3,0,0,0,0,0,0,0,0,0),(827,'2015-03-14 14:56:58','2015-10-11 16:46:38',1,30001283,71,0,0,0,0,0,0,0,32,1,0,0,0,0,0,0,0,35,0,0,0,0,0,0),(828,'2015-03-14 14:56:58','2015-10-11 16:46:38',1,30003967,0,0,0,0,0,0,0,0,4,0,0,0,0,0,0,0,0,0,0,95,14,0,0,0),(829,'2015-03-14 14:56:58','2015-10-11 16:46:38',1,30000476,0,0,0,0,0,0,0,0,0,0,0,0,98,0,0,0,0,0,0,0,0,0,0,0),(830,'2015-03-14 14:56:58','2015-10-11 16:46:38',1,30003100,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,19,0,0,0,0,13,44),(831,'2015-03-14 14:56:58','2015-10-11 16:46:38',1,30000852,0,0,0,0,0,0,1,59,137,0,4,0,0,53,0,0,0,0,0,0,0,0,0,0),(832,'2015-03-14 14:56:58','2015-10-11 16:46:38',1,30001954,0,0,0,0,0,0,0,9,0,0,0,0,0,19,0,29,66,18,56,22,55,6,114,0),(833,'2015-03-14 14:56:58','2015-10-11 16:46:38',1,30004708,0,0,19,22,1,1,22,0,0,0,0,0,0,0,19,25,29,18,25,56,22,43,0,0),(834,'2015-03-14 14:56:58','2015-10-11 16:46:38',1,30004359,107,0,72,116,0,0,248,56,0,3,35,0,0,0,40,0,0,0,0,0,0,0,12,0),(835,'2015-03-14 14:56:58','2015-10-11 16:46:38',1,30001870,0,0,0,31,0,0,66,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(836,'2015-03-14 14:56:58','2015-10-11 16:46:38',1,30004605,1,8,0,0,0,0,0,0,0,16,1,1,0,59,0,2,3,0,30,16,61,0,0,0),(837,'2015-03-14 14:56:58','2015-10-11 16:46:38',1,30001537,768,1280,762,565,227,209,611,369,401,297,182,40,218,158,64,65,191,216,32,0,110,153,212,141),(838,'2015-03-14 14:56:58','2015-10-11 16:46:38',1,30000314,0,1,0,0,0,0,0,0,4,26,43,43,0,0,0,0,0,0,0,0,0,44,3,0),(839,'2015-03-14 14:56:58','2015-10-11 16:46:38',1,30004850,0,0,0,0,0,0,0,194,560,497,418,210,343,100,253,255,85,164,138,147,83,598,613,232),(840,'2015-03-14 14:56:58','2015-10-11 16:46:38',1,30003335,4,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,71,6,0),(841,'2015-03-14 14:56:58','2015-10-11 16:46:38',1,30000769,0,0,0,0,0,0,0,0,0,0,0,0,0,75,0,0,0,0,0,0,70,0,0,0),(842,'2015-03-14 14:56:58','2015-10-11 16:46:38',1,30001210,437,385,627,301,470,324,250,443,275,91,224,84,103,449,322,275,405,162,352,130,214,136,179,123),(843,'2015-03-14 14:56:58','2015-03-14 14:56:58',1,30000362,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(844,'2015-03-14 14:56:58','2015-10-11 16:46:38',1,30001950,0,0,0,0,0,0,0,91,2,2,1,0,0,1,1,1,0,0,0,1,0,0,31,1),(845,'2015-03-14 14:56:58','2015-10-11 16:46:38',1,30002836,0,0,0,0,0,79,6,0,23,0,14,10,0,0,0,0,0,0,0,0,0,0,0,0),(846,'2015-03-14 14:56:58','2015-10-11 16:46:38',1,30003305,0,0,0,0,0,10,0,0,0,64,11,0,0,0,0,0,0,0,0,20,63,0,0,14),(847,'2015-03-14 14:56:58','2015-10-11 16:46:38',1,30001077,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,2,0,0,0,0,0,0),(848,'2015-03-14 14:56:58','2015-10-11 16:46:38',1,30003125,0,0,0,21,75,5,4,0,0,0,0,0,0,0,33,153,122,0,0,0,0,0,0,0),(849,'2015-03-14 14:56:58','2015-10-11 16:46:38',1,30002611,79,45,0,162,302,244,0,99,78,36,0,121,41,35,106,269,373,90,282,125,438,0,0,100),(850,'2015-03-14 14:56:58','2015-10-11 16:46:38',1,30005167,0,0,0,0,0,0,261,564,63,0,0,0,0,0,0,0,30,22,0,88,95,0,0,0),(851,'2015-03-14 14:56:58','2015-10-11 16:46:38',1,30003655,48,15,0,0,59,152,0,201,0,0,0,0,0,0,0,0,0,49,0,0,0,0,0,169),(852,'2015-03-14 14:56:58','2015-10-11 16:46:38',1,30003942,132,0,101,127,0,0,0,0,9,45,159,118,92,182,47,92,74,2,9,8,29,30,66,10),(853,'2015-03-14 14:56:58','2015-10-11 16:46:38',1,30000794,26,32,0,124,49,0,4,1,0,14,0,0,18,0,11,104,267,438,0,141,602,116,53,89),(854,'2015-03-14 14:56:58','2015-10-11 16:46:38',1,30004550,0,10,81,157,39,0,0,0,47,24,49,35,24,64,35,21,56,24,0,61,95,19,168,73),(855,'2015-03-14 14:56:58','2015-10-11 16:46:38',1,30003944,0,0,18,0,0,0,0,0,0,188,80,235,368,170,105,159,227,99,104,126,121,112,296,247),(856,'2015-03-14 14:56:58','2015-03-14 14:56:58',1,30000409,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(857,'2015-03-14 14:56:58','2015-10-11 16:46:38',1,30000317,0,0,0,0,0,0,0,0,0,18,30,0,0,104,50,7,9,0,29,21,0,14,99,56),(858,'2015-03-14 14:56:58','2015-10-11 16:46:38',1,30002113,0,0,0,0,0,0,59,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(859,'2015-03-14 14:56:58','2015-10-11 16:46:38',1,30002952,402,169,131,333,104,168,174,158,432,116,106,32,237,0,190,114,59,1,0,94,0,406,544,184),(860,'2015-03-14 14:56:58','2015-10-11 16:46:38',1,30001896,0,0,0,0,0,0,0,0,0,5,6,11,16,0,55,41,43,74,0,76,25,9,52,89),(861,'2015-03-14 14:56:58','2015-10-11 16:46:38',1,30003150,0,0,70,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(862,'2015-03-14 14:56:58','2015-03-14 14:56:58',1,30004558,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(863,'2015-03-14 14:56:58','2015-10-11 16:46:38',1,30000259,960,0,29,149,0,0,231,23,8,24,0,0,45,0,419,607,759,803,0,29,97,190,193,281),(864,'2015-03-14 14:56:58','2015-10-11 16:46:38',1,30001993,39,1,0,3,4,4,25,111,0,0,0,0,0,32,27,0,0,0,0,48,22,0,0,0),(865,'2015-03-14 14:56:58','2015-10-11 16:46:38',1,30005092,97,0,360,599,427,190,0,0,28,0,0,0,0,0,0,0,0,0,196,194,203,234,315,391),(866,'2015-03-14 14:56:58','2015-03-14 14:56:58',1,30001459,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(867,'2015-03-14 14:56:58','2015-10-11 16:46:38',1,30003331,0,0,0,0,0,0,0,40,0,13,0,0,0,0,29,63,52,0,0,52,108,105,0,53),(868,'2015-03-14 14:56:58','2015-10-11 16:46:38',1,30004690,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,7),(869,'2015-03-14 14:56:58','2015-10-11 16:46:38',1,30001285,0,0,0,0,3,3,0,0,0,0,0,0,0,0,44,44,0,0,0,0,0,0,1,0),(870,'2015-03-14 14:56:58','2015-10-11 16:46:38',1,30001396,361,345,311,104,307,387,419,592,886,270,224,264,400,1580,563,581,999,1178,399,259,840,762,657,500),(871,'2015-03-14 14:56:58','2015-10-11 16:46:38',1,30001022,0,0,56,0,0,0,0,0,16,28,49,36,0,0,24,9,0,12,0,0,0,0,72,2),(872,'2015-03-14 14:56:58','2015-10-11 16:46:38',1,30003293,0,0,0,0,0,0,0,15,0,0,136,137,0,0,0,0,0,0,0,1,2,0,0,0),(873,'2015-03-14 14:56:58','2015-10-11 16:46:38',1,30000914,0,23,0,0,52,24,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(874,'2015-03-14 14:56:58','2015-10-11 16:46:38',1,30000147,377,492,672,644,331,350,280,252,148,345,813,589,541,375,681,662,661,599,223,332,280,472,427,188),(875,'2015-03-14 14:56:58','2015-10-11 16:46:38',1,30001694,13,111,159,4,119,80,11,52,77,122,120,149,121,127,101,117,104,113,235,90,1222,1247,1269,1233),(876,'2015-03-14 14:56:58','2015-10-11 16:46:38',1,30003512,149,68,22,38,77,116,11,34,21,53,78,13,10,218,19,19,74,7,42,58,117,11,139,97),(877,'2015-03-14 14:56:58','2015-10-11 16:46:38',1,30004090,205,313,380,40,296,416,89,78,92,252,438,483,230,424,176,241,259,225,93,168,372,66,178,167),(878,'2015-03-14 14:56:58','2015-10-11 16:46:38',1,30005062,43,14,32,14,24,24,0,0,0,5,64,0,0,142,31,0,0,0,0,0,0,0,0,0),(879,'2015-03-14 14:56:58','2015-10-11 16:46:38',1,30004831,0,0,0,0,0,0,0,0,0,11,20,17,0,0,0,0,0,1,0,0,0,0,0,0),(880,'2015-03-14 14:56:58','2015-10-11 16:46:38',1,30002713,78,268,88,70,102,100,31,102,2,137,104,86,183,126,174,153,131,228,124,65,77,34,147,173),(881,'2015-03-14 14:56:58','2015-10-11 16:46:38',1,30000105,0,0,2,48,0,0,0,65,4,0,4,0,0,0,1,0,0,0,0,0,9,2,7,0),(882,'2015-03-14 14:56:58','2015-10-11 16:46:38',1,30005254,32,114,5,3,1,10,6,89,56,29,2,42,4,62,37,16,16,8,28,22,15,144,44,69),(883,'2015-03-14 14:56:58','2015-10-11 16:46:38',1,30013410,102,0,0,0,0,38,19,0,15,0,58,44,8,28,0,0,0,0,33,1,46,52,110,135),(884,'2015-03-14 14:56:58','2015-10-11 16:46:38',1,30002507,249,274,399,515,558,421,397,271,258,522,621,513,393,665,317,454,567,515,403,572,614,366,486,425),(885,'2015-03-14 14:56:58','2015-10-11 16:46:38',1,30004984,8,19,1,8,19,21,19,4,19,0,2,0,10,2,20,23,15,91,0,0,3,7,4,5),(886,'2015-03-14 14:56:58','2015-10-11 16:46:38',1,30002160,0,46,3,0,3,3,46,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(887,'2015-03-14 14:56:58','2015-10-11 16:46:38',1,30004563,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,6,0,0,18,105,37),(888,'2015-03-14 14:56:58','2015-10-11 16:46:38',1,30005266,1,0,11,0,84,125,3,0,0,0,1,1,5,0,0,0,0,18,0,6,0,72,0,33),(889,'2015-03-14 14:56:58','2015-10-11 16:46:38',1,30003028,186,108,286,396,62,150,390,172,257,253,221,261,203,336,282,429,447,245,25,267,282,359,622,281),(890,'2015-03-14 14:56:58','2015-10-11 16:46:38',1,30004981,12,125,247,142,272,194,30,143,6,101,4,70,9,234,35,35,31,160,54,22,73,191,208,35),(891,'2015-03-14 14:56:58','2015-10-11 16:46:38',1,30002478,0,18,121,0,60,0,0,0,0,0,0,0,0,0,0,0,0,0,0,121,46,0,0,0),(892,'2015-03-14 14:56:58','2015-10-11 16:46:38',1,30002892,135,0,0,0,449,952,142,431,355,0,0,0,0,165,0,0,0,0,46,10,0,0,0,0),(893,'2015-03-14 14:56:58','2015-10-11 16:46:38',1,30003832,209,135,251,83,23,67,346,42,75,174,48,86,161,345,204,195,190,265,46,181,182,272,251,132),(894,'2015-03-14 14:56:58','2015-10-11 16:46:38',1,30001648,10,173,90,127,62,34,182,17,42,46,82,81,27,45,70,73,70,56,8,65,40,52,24,76),(895,'2015-03-14 14:56:58','2015-10-11 16:46:38',1,30015305,421,118,198,230,173,139,223,141,171,90,103,148,146,203,426,365,160,225,203,132,432,136,169,327),(896,'2015-03-14 14:56:58','2015-10-11 16:46:38',1,30001717,1,25,35,0,0,0,26,17,0,125,18,11,17,21,98,162,123,102,40,66,52,8,41,100),(897,'2015-03-14 14:56:58','2015-10-11 16:46:38',1,30003059,0,0,0,0,0,0,0,16,0,2,0,0,0,0,0,15,15,62,0,5,1,11,1,10),(898,'2015-03-14 14:56:58','2015-10-11 16:46:38',1,30003439,4,7,129,126,2,4,48,64,4,193,108,92,44,65,76,69,59,132,106,83,120,61,55,228),(899,'2015-03-14 14:56:58','2015-10-11 16:46:38',1,30002268,62,2,37,11,202,174,18,66,18,72,141,17,71,146,102,44,16,149,2,31,54,23,106,121),(900,'2015-03-14 14:56:58','2015-10-11 16:46:38',1,30002710,17,149,47,26,84,55,44,18,135,121,63,28,20,45,146,174,185,60,52,131,117,60,135,33),(901,'2015-03-14 14:56:58','2015-10-11 16:46:38',1,30005003,95,155,250,162,41,73,64,56,71,13,53,15,49,27,32,23,35,13,1,2,41,37,5,12),(902,'2015-03-14 14:56:58','2015-10-11 16:46:38',1,30002704,246,268,132,60,215,164,170,92,70,76,173,212,169,244,251,309,273,274,100,337,190,268,266,117),(903,'2015-03-14 14:56:58','2015-10-11 16:46:38',1,30005021,113,49,116,50,237,164,37,106,125,244,138,237,214,225,223,293,370,230,78,30,210,348,331,186),(904,'2015-03-14 14:56:58','2015-10-11 16:46:38',1,30002639,9,149,64,75,51,21,104,23,29,90,62,18,40,147,125,302,317,111,36,71,66,51,110,42),(905,'2015-03-14 14:56:58','2015-10-11 16:46:38',1,30002393,0,0,0,2,41,0,10,0,0,0,83,18,11,6,13,0,14,0,0,0,35,27,0,1),(906,'2015-03-14 14:56:58','2015-10-11 16:46:38',1,30002383,567,230,418,75,351,269,339,163,331,627,329,303,332,877,509,508,583,734,419,348,318,569,787,401),(907,'2015-03-14 14:56:58','2015-10-11 16:46:38',1,30002419,0,0,5,26,3,0,43,7,32,3,0,0,0,0,0,0,0,0,0,0,0,34,1,1),(908,'2015-03-14 14:56:58','2015-10-11 16:46:38',1,30005006,40,123,68,234,128,17,175,54,73,45,98,204,30,192,93,114,120,79,114,59,101,43,191,204),(909,'2015-03-14 14:56:58','2015-10-11 16:46:38',1,30005008,2,73,84,119,69,145,103,19,83,81,75,93,131,93,76,72,14,55,55,0,0,62,49,140),(910,'2015-03-14 14:56:58','2015-10-11 16:46:38',1,30003585,9,0,0,0,0,0,5,0,0,0,0,31,30,31,70,62,0,5,0,0,0,0,9,0),(911,'2015-03-14 14:56:58','2015-10-11 16:46:38',1,30002729,72,0,37,22,1,24,1,6,0,0,4,50,52,0,0,0,25,0,0,0,28,15,3,95),(912,'2015-03-14 14:56:58','2015-10-11 16:46:38',1,30002107,3,0,9,0,138,65,0,37,0,0,4,4,3,0,12,19,13,10,7,43,36,33,32,29),(913,'2015-03-14 14:56:58','2015-10-11 16:46:38',1,30003535,66,31,30,159,114,91,67,149,3,59,67,60,63,54,23,35,94,48,43,26,195,164,90,59),(914,'2015-03-14 14:56:58','2015-03-14 14:56:58',1,30002587,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(915,'2015-03-14 14:56:58','2015-10-11 16:46:38',1,30003903,29,91,43,7,103,66,52,3,3,113,40,52,9,24,7,0,20,29,0,21,62,18,0,3),(916,'2015-03-14 14:56:58','2015-10-11 16:46:38',1,30004271,0,0,3,52,0,1,0,0,71,1,0,0,0,0,0,0,31,234,3,68,95,8,0,0),(917,'2015-03-14 14:56:58','2015-10-11 16:46:38',1,30001539,0,19,0,0,0,0,26,0,0,0,0,0,0,0,160,157,47,9,0,9,11,0,25,62),(918,'2015-03-14 14:56:58','2015-10-11 16:46:38',1,30005292,0,861,100,58,74,285,25,72,228,27,45,28,25,107,61,111,51,72,0,78,61,63,66,123),(919,'2015-03-14 14:56:58','2015-10-11 16:46:38',1,30003600,0,49,0,165,0,0,135,51,14,2,0,0,14,0,0,0,0,0,1,0,0,19,4,74),(920,'2015-03-14 14:56:58','2015-10-11 16:46:38',1,30000760,0,0,0,0,0,0,0,16,0,0,0,0,0,0,0,0,0,100,0,0,0,0,0,0),(921,'2015-03-14 14:56:58','2015-10-11 16:46:38',1,30002933,396,0,181,1,27,43,0,106,0,264,339,362,385,57,0,17,44,39,314,330,309,23,0,19),(922,'2015-03-14 14:56:58','2015-10-11 16:46:38',1,30000061,6,170,8,50,6,9,7,6,14,63,56,75,25,23,17,32,143,11,27,9,80,159,191,9),(923,'2015-03-14 14:56:58','2015-10-11 16:46:38',1,30002220,64,97,106,58,68,107,538,50,55,59,109,64,96,94,127,14,57,70,28,85,164,110,25,142),(924,'2015-03-14 14:56:58','2015-10-11 16:46:38',1,30003862,3,0,18,51,26,26,12,35,0,0,8,0,0,0,59,65,68,0,11,21,72,0,56,15),(925,'2015-03-14 14:56:58','2015-10-11 16:46:38',1,30003787,4,89,26,1,4,4,5,2,121,0,6,6,0,3,6,24,133,1,13,23,5,2,94,2),(926,'2015-03-14 14:56:58','2015-10-11 16:46:38',1,30002658,606,730,996,1154,969,989,648,746,337,1065,1419,1640,1338,1263,1072,1355,1132,1253,1054,1291,1379,1880,1460,1094),(927,'2015-03-14 14:56:58','2015-10-11 16:46:38',1,30003404,19,88,81,129,0,56,17,8,0,45,33,4,0,43,111,99,49,83,0,92,80,111,131,112),(928,'2015-03-14 14:56:58','2015-10-11 16:46:38',1,30004323,140,290,43,262,616,667,79,67,1,0,0,0,0,0,0,0,0,0,0,6,0,41,0,0),(929,'2015-03-14 14:56:58','2015-10-11 16:46:38',1,30000691,0,0,0,2,0,0,0,0,0,38,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(930,'2015-03-14 14:56:58','2015-10-11 16:46:38',1,30002247,78,34,205,123,10,92,1,36,29,23,88,68,31,100,62,55,96,84,30,32,17,48,171,135),(931,'2015-03-14 14:56:58','2015-10-11 16:46:38',1,30004082,539,394,289,224,112,72,192,266,185,307,299,322,305,593,338,278,337,311,550,645,805,588,388,189),(932,'2015-03-14 14:56:58','2015-10-11 16:46:38',1,30005196,5,76,0,163,15,15,0,1,0,8,0,0,0,0,2,36,39,28,6,26,8,77,0,35),(933,'2015-03-14 14:56:58','2015-10-11 16:46:38',1,30001697,26,67,85,7,56,53,50,103,38,27,80,77,105,155,36,35,11,30,0,0,0,18,31,28),(934,'2015-03-14 14:56:58','2015-10-11 16:46:38',1,30002266,124,126,72,30,213,171,137,138,181,378,84,74,67,74,100,133,108,0,21,85,74,157,170,32),(935,'2015-03-14 14:56:58','2015-10-11 16:46:38',1,30004279,0,0,171,4,1,0,0,0,0,0,0,0,0,1,0,1,1,0,1,0,0,29,27,0),(936,'2015-03-14 14:56:58','2015-10-11 16:46:38',1,30001649,0,6,66,46,27,27,48,87,40,90,109,55,19,11,28,30,38,114,97,23,38,23,10,107),(937,'2015-03-14 14:56:58','2015-10-11 16:46:38',1,30001741,76,81,8,13,3,1,64,2,9,27,80,21,23,74,69,56,48,46,23,135,38,33,45,43),(938,'2015-03-14 14:56:58','2015-10-11 16:46:38',1,30045328,370,313,451,352,304,276,190,526,224,449,424,422,629,403,517,738,790,615,176,284,237,264,284,340),(939,'2015-03-14 14:56:58','2015-10-11 16:46:38',1,30000125,123,96,131,112,185,185,12,61,6,419,98,115,89,214,32,188,260,221,70,78,168,252,248,128),(940,'2015-03-14 14:56:58','2015-10-11 16:46:38',1,30002752,88,103,179,301,221,185,287,206,113,169,215,203,111,78,193,227,251,206,219,91,133,167,122,127),(941,'2015-03-14 14:56:58','2015-10-11 16:46:38',1,30000933,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,24,24,0,0,0,0,0,0,0),(942,'2015-03-14 14:56:58','2015-10-11 16:46:38',1,30003015,3,132,104,203,305,396,73,19,105,203,439,248,237,196,155,188,286,310,33,73,145,243,233,232),(943,'2015-03-14 14:56:58','2015-10-11 16:46:38',1,30002289,0,59,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,174,0),(944,'2015-03-14 14:56:58','2015-10-11 16:46:38',1,30005307,132,61,122,293,47,79,127,169,62,57,36,66,56,67,221,176,88,61,31,70,73,21,195,164),(945,'2015-03-14 14:56:58','2015-10-11 16:46:38',1,30001418,168,136,137,127,127,89,238,210,476,10,78,89,194,50,58,61,119,151,168,29,150,209,208,36),(946,'2015-03-14 14:56:58','2015-10-11 16:46:38',1,30002753,219,34,447,521,457,311,626,83,266,256,127,136,283,124,131,146,89,42,97,125,118,62,409,176),(947,'2015-03-14 14:56:58','2015-10-11 16:46:38',1,30003566,0,0,0,0,66,0,0,0,0,179,0,0,0,0,0,0,73,0,0,30,0,0,27,0),(948,'2015-03-14 14:56:58','2015-10-11 16:46:38',1,30002736,142,328,168,240,142,188,31,61,114,255,353,402,58,158,178,193,374,336,136,185,488,231,174,395),(949,'2015-03-14 14:56:58','2015-10-11 16:46:38',1,30003895,89,85,6,168,24,24,8,52,59,342,1136,492,259,13,42,14,15,6,7,27,21,22,50,25),(950,'2015-03-14 14:56:58','2015-10-11 16:46:38',1,30000185,1459,1496,1395,1380,1253,1171,1159,1339,826,1098,1812,1972,1880,2399,2012,2013,2298,2179,1198,1258,1318,1599,1737,1429),(951,'2015-03-14 14:56:58','2015-10-11 16:46:38',1,30001404,584,468,654,561,417,533,391,383,679,787,746,675,453,488,881,795,598,597,468,463,506,1075,926,474),(952,'2015-03-14 14:56:58','2015-10-11 16:46:38',1,30000166,450,232,341,237,255,274,239,490,44,232,142,280,313,239,193,291,507,455,280,162,198,490,432,374),(953,'2015-03-14 14:56:58','2015-10-11 16:46:38',1,30002222,56,19,13,5,20,25,18,17,44,64,5,41,118,173,14,65,98,207,47,44,71,51,85,27),(954,'2015-03-14 14:56:58','2015-10-11 16:46:38',1,30001431,227,96,80,110,129,37,12,13,76,62,135,184,216,265,26,98,133,205,140,30,6,29,149,143),(955,'2015-03-14 14:56:58','2015-10-11 16:46:38',1,30045340,10,7,1,5,3,0,14,10,78,17,8,26,12,5,26,32,24,12,10,7,7,7,33,6),(956,'2015-03-14 14:56:58','2015-10-11 16:46:38',1,30001414,220,160,77,76,21,105,79,58,152,85,127,249,227,102,196,169,166,198,140,108,114,62,178,75),(957,'2015-03-14 14:56:58','2015-10-11 16:46:38',1,30001289,29,0,0,7,50,54,0,0,0,0,4,3,0,42,0,0,1,4,63,79,27,0,0,47),(958,'2015-03-14 14:56:58','2015-10-11 16:46:38',1,30004717,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,48,0,0,0,0,0,0),(959,'2015-03-14 14:56:58','2015-10-11 16:46:38',1,30004277,0,0,24,0,122,45,0,0,0,0,0,9,0,0,3,0,0,2,0,0,0,0,0,9),(960,'2015-03-14 14:56:58','2015-10-11 16:46:38',1,30005098,0,0,0,0,2,2,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(961,'2015-03-14 14:56:58','2015-10-11 16:46:38',1,30003291,0,43,10,0,0,0,0,43,9,0,0,0,4,11,8,15,8,0,4,0,0,20,30,46),(962,'2015-03-14 14:56:58','2015-10-11 16:46:38',1,30002992,16,123,207,34,26,47,122,6,166,28,53,1,64,322,1,4,35,67,69,68,87,84,146,249),(963,'2015-03-14 14:56:58','2015-10-11 16:46:38',1,30000088,3,46,124,9,0,1,46,0,31,54,17,0,57,0,47,10,37,38,102,52,22,11,19,21),(964,'2015-03-14 14:56:58','2015-10-11 16:46:38',1,30004147,0,137,36,22,3,3,41,10,18,223,60,107,17,144,117,78,50,201,77,79,107,30,211,146),(965,'2015-03-14 14:56:58','2015-10-11 16:46:38',1,30000065,0,0,0,5,12,13,55,0,0,50,26,0,9,1,67,32,0,26,0,0,0,1,56,46),(966,'2015-03-14 14:56:58','2015-10-11 16:46:38',1,30002197,105,386,235,176,108,220,939,235,251,213,396,332,184,587,548,533,589,406,109,185,201,330,196,208),(967,'2015-03-14 14:56:58','2015-10-11 16:46:38',1,30015042,0,95,162,10,0,0,0,11,9,80,100,63,24,0,0,0,0,0,17,80,51,53,36,192),(968,'2015-03-14 14:56:58','2015-10-11 16:46:38',1,30011407,872,430,707,569,674,737,511,272,201,757,982,945,756,656,1050,821,958,713,736,825,701,832,780,562),(969,'2015-03-14 14:56:58','2015-10-11 16:46:38',1,30045342,6,6,0,35,0,0,16,0,4,12,15,15,141,3,13,15,23,23,8,1,7,6,9,16),(970,'2015-03-14 14:56:58','2015-10-11 16:46:38',1,30003479,30,18,0,3,0,0,8,0,19,4,4,2,6,0,8,11,7,36,0,0,44,0,0,4),(971,'2015-03-14 14:56:58','2015-10-11 16:46:38',1,30000178,127,126,112,290,256,327,193,217,250,99,88,242,69,73,341,424,344,346,54,136,88,238,188,143),(972,'2015-03-14 14:56:58','2015-10-11 16:46:38',1,30000200,0,2,0,53,78,89,4,0,0,0,31,0,84,38,4,4,0,2,0,0,0,39,29,0),(973,'2015-03-14 14:56:58','2015-10-11 16:46:38',1,30001382,351,347,334,242,180,164,317,154,403,272,529,426,231,284,392,490,442,218,139,89,175,342,423,450),(974,'2015-03-14 14:56:58','2015-10-11 16:46:38',1,30000163,0,0,19,116,0,0,0,5,0,10,16,21,40,5,17,16,0,97,29,0,0,17,57,10),(975,'2015-03-14 14:56:58','2015-10-11 16:46:38',1,30000003,41,73,24,77,152,56,0,22,59,154,129,120,81,102,283,95,75,55,140,61,174,144,99,118),(976,'2015-03-14 14:56:58','2015-10-11 16:46:38',1,30001534,0,0,0,0,0,0,0,40,0,0,0,2,0,0,0,0,0,0,0,0,132,0,0,0),(977,'2015-03-14 14:56:58','2015-10-11 16:46:38',1,30004578,0,8,0,0,89,80,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(978,'2015-03-14 14:56:58','2015-10-11 16:46:38',1,30002652,58,64,56,39,78,78,136,1,8,44,321,125,4,259,50,18,23,65,20,64,89,81,64,31),(979,'2015-03-14 14:56:58','2015-10-11 16:46:38',1,30003042,2,4,1,39,9,9,80,27,41,99,66,37,6,29,17,10,8,10,29,21,30,14,26,5),(980,'2015-03-14 14:56:58','2015-10-11 16:46:38',1,30002512,229,18,185,79,60,55,104,174,227,139,197,150,71,136,80,149,282,183,95,61,174,161,123,241),(981,'2015-03-14 14:56:58','2015-10-11 16:46:38',1,30005225,0,0,54,0,0,0,9,0,0,0,0,0,0,10,7,1,0,0,0,1,0,0,0,64),(982,'2015-03-14 14:56:58','2015-10-11 16:46:38',1,30003854,61,0,31,22,1,0,12,48,29,20,10,0,7,3,2,42,95,70,1,9,7,29,93,8),(983,'2015-03-14 14:56:58','2015-03-14 14:56:58',1,30002338,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(984,'2015-03-14 14:56:58','2015-10-11 16:46:38',1,30003415,260,113,241,127,239,139,134,301,129,198,78,146,17,69,179,286,274,93,179,70,148,310,431,195),(985,'2015-03-14 14:56:58','2015-10-11 16:46:38',1,30002216,0,9,2,8,28,93,101,43,0,0,22,3,0,4,5,2,7,6,0,0,11,6,0,4),(986,'2015-03-14 14:56:58','2015-10-11 16:46:38',1,30003464,0,18,138,137,373,390,78,61,85,46,63,328,147,29,81,30,35,62,64,144,39,55,9,139),(987,'2015-03-14 14:56:58','2015-10-11 16:46:38',1,30003379,46,79,3,47,34,8,61,13,19,21,27,41,26,32,115,47,91,10,10,20,52,332,209,15),(988,'2015-03-14 14:56:58','2015-10-11 16:46:38',1,30003837,5,7,15,10,12,29,5,14,3,0,7,3,1,50,7,14,12,4,4,2,0,6,20,16),(989,'2015-03-14 14:56:58','2015-10-11 16:46:38',1,30003416,52,81,72,83,204,175,18,48,75,40,121,80,63,208,14,10,68,122,63,77,66,58,75,125),(990,'2015-03-14 14:56:58','2015-10-11 16:46:38',1,30005302,276,78,350,263,332,222,131,224,266,406,234,284,259,485,448,388,255,368,254,190,270,356,404,513),(991,'2015-03-14 14:56:58','2015-10-11 16:46:38',1,30005304,157,136,380,203,127,126,217,96,197,93,202,128,95,230,308,352,301,160,208,154,144,225,156,317),(992,'2015-03-14 14:56:58','2015-10-11 16:46:38',1,30003380,23,24,27,88,16,48,69,54,0,37,81,75,5,34,108,161,148,28,29,131,32,66,55,89),(993,'2015-03-14 14:56:58','2015-10-11 16:46:38',1,30003811,17,39,25,83,200,188,15,84,140,41,34,6,34,139,32,32,1,57,7,10,14,2,158,95),(994,'2015-03-14 14:56:58','2015-10-11 16:46:38',1,30004972,126,272,244,189,320,270,260,92,132,303,336,356,176,274,292,418,376,179,181,137,202,236,374,370),(995,'2015-03-14 14:56:58','2015-10-11 16:46:38',1,30002698,6,79,27,14,0,14,54,143,49,108,0,0,0,0,0,0,0,23,8,0,57,80,41,8),(996,'2015-03-14 14:56:58','2015-10-11 16:46:38',1,30002754,180,134,158,64,107,123,209,252,181,65,131,230,72,78,303,273,295,288,30,145,125,156,132,223),(997,'2015-03-14 14:56:58','2015-10-11 16:46:38',1,30002712,171,121,95,332,70,208,108,42,72,141,373,297,243,228,334,252,214,238,127,52,140,227,210,82),(998,'2015-03-14 14:56:58','2015-10-11 16:46:38',1,30003521,35,53,34,49,53,30,9,40,118,82,82,64,58,143,136,81,81,85,87,21,24,185,70,37),(999,'2015-03-14 14:56:58','2015-10-11 16:46:38',1,30000034,119,47,76,181,94,109,134,33,117,113,5,5,28,105,147,167,57,132,55,51,40,127,53,64),(1000,'2015-03-14 14:56:58','2015-10-11 16:46:38',1,30004995,247,88,185,151,286,282,186,238,242,147,257,229,165,174,377,376,313,299,119,104,276,484,273,248),(1001,'2015-03-14 14:56:58','2015-10-11 16:46:38',1,30005009,26,43,57,227,169,125,49,53,291,0,4,7,0,283,126,2,1,4,113,117,143,154,43,85),(1002,'2015-03-14 14:56:58','2015-10-11 16:46:38',1,30002664,85,139,239,130,57,42,36,144,168,3,45,41,25,164,241,547,533,161,235,193,227,314,101,280),(1003,'2015-03-14 14:56:58','2015-10-11 16:46:38',1,30002727,2,0,0,1,0,0,14,19,17,8,3,3,0,0,0,0,0,74,0,0,7,13,126,2),(1004,'2015-03-14 14:56:58','2015-10-11 16:46:38',1,30003850,16,32,10,37,30,15,18,11,29,0,7,20,0,44,0,3,5,7,14,0,0,13,29,0),(1005,'2015-03-14 14:56:58','2015-10-11 16:46:38',1,30003800,37,0,22,8,149,134,3,30,1,9,0,0,11,3,23,0,0,71,0,24,54,0,0,27),(1006,'2015-03-14 14:56:58','2015-10-11 16:46:38',1,30001730,20,87,125,48,206,68,3,7,61,1,2,7,24,19,69,82,135,17,110,41,13,40,24,71),(1007,'2015-03-14 14:56:58','2015-10-11 16:46:38',1,30003841,0,2,24,31,8,21,9,59,11,14,20,13,24,8,17,19,21,2,0,0,2,6,8,2),(1008,'2015-03-14 14:56:58','2015-10-11 16:46:38',1,30002678,164,27,145,138,84,100,98,310,39,100,112,74,85,110,161,103,209,148,38,191,131,118,181,7),(1009,'2015-03-14 14:56:58','2015-10-11 16:46:38',1,30002407,2,1,76,5,17,0,0,0,13,0,2,0,7,22,3,4,5,9,8,96,0,5,13,3),(1010,'2015-03-14 14:56:58','2015-10-11 16:46:38',1,30003389,162,243,167,175,126,161,128,84,158,247,283,303,241,371,142,257,276,94,57,78,101,167,116,152),(1011,'2015-03-14 14:56:58','2015-10-11 16:46:38',1,30003917,0,0,4,4,12,7,20,0,0,3,0,0,0,0,0,0,0,0,0,0,0,27,0,0),(1012,'2015-03-14 14:56:58','2015-10-11 16:46:38',1,30002537,112,5,3,28,0,1,82,0,0,5,1,2,4,4,0,0,0,6,1,1,12,0,1,4),(1013,'2015-03-14 14:56:58','2015-10-11 16:46:38',1,30004983,7,0,26,165,98,208,52,144,8,45,72,83,9,83,89,39,8,54,124,24,43,98,16,6),(1014,'2015-03-14 14:56:58','2015-10-11 16:46:38',1,30002187,207,163,185,138,88,137,288,136,114,333,332,401,262,624,489,532,362,304,136,238,247,193,520,184),(1015,'2015-03-14 14:56:58','2015-10-11 16:46:38',1,30003848,0,1,0,0,0,6,0,80,16,3,31,9,12,0,37,29,7,74,35,8,0,97,100,0),(1016,'2015-03-14 14:56:58','2015-10-11 16:46:38',1,30003012,287,249,147,382,124,76,292,203,261,164,163,56,76,72,110,78,70,88,131,108,113,184,238,70),(1017,'2015-03-14 14:56:58','2015-10-11 16:46:38',1,30002644,19,113,7,122,54,26,146,56,328,163,82,144,302,20,101,249,281,139,44,50,117,144,14,123),(1018,'2015-03-14 14:56:58','2015-10-11 16:46:38',1,30005036,91,190,162,76,181,118,61,41,159,178,180,146,206,78,82,185,198,139,100,107,238,268,220,235),(1019,'2015-03-14 14:56:58','2015-10-11 16:46:38',1,30002511,109,35,39,100,211,96,47,104,51,84,96,149,161,110,27,113,207,184,73,26,99,107,44,38),(1020,'2015-03-14 14:56:58','2015-10-11 16:46:38',1,30005035,74,3,6,0,0,0,3,41,21,8,2,4,0,3,30,24,191,73,99,54,0,20,0,15),(1021,'2015-03-14 14:56:58','2015-10-11 16:46:38',1,30002547,770,686,605,539,433,417,598,513,341,923,977,752,633,787,1126,939,806,915,237,668,911,892,872,841),(1022,'2015-03-14 14:56:58','2015-10-11 16:46:38',1,30002055,167,33,116,15,77,210,29,25,61,388,91,186,98,119,223,177,209,68,61,177,222,165,216,228),(1023,'2015-03-14 14:56:58','2015-10-11 16:46:38',1,30003480,72,31,33,0,31,27,7,0,69,0,39,81,42,14,189,149,41,17,10,0,0,0,0,49),(1024,'2015-03-14 14:56:58','2015-10-11 16:46:38',1,30005329,101,0,12,8,10,8,112,1,0,0,18,0,1,12,11,23,18,0,18,6,0,0,0,0),(1025,'2015-03-14 14:56:58','2015-10-11 16:46:38',1,30003847,0,16,180,0,4,0,46,0,7,31,1,54,0,40,4,0,11,16,19,16,13,3,97,0),(1026,'2015-03-14 14:56:58','2015-10-11 16:46:38',1,30000058,11,75,16,136,26,103,43,72,17,80,230,137,56,89,179,137,100,133,159,56,141,291,135,167),(1027,'2015-03-14 14:56:58','2015-10-11 16:46:38',1,30001392,201,355,180,377,239,355,229,206,227,165,356,348,325,399,315,471,387,714,398,493,495,462,436,341),(1028,'2015-03-14 14:56:58','2015-10-11 16:46:38',1,30005311,341,149,276,395,415,218,202,328,370,144,251,250,176,600,278,266,274,213,147,321,330,371,555,388),(1029,'2015-03-14 14:56:58','2015-10-11 16:46:38',1,30004527,73,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,121),(1030,'2015-03-14 14:56:58','2015-10-11 16:46:38',1,30003552,50,0,0,0,0,0,0,23,10,0,0,0,0,0,41,0,0,0,0,19,44,35,68,8),(1031,'2015-03-14 14:56:58','2015-10-11 16:46:38',1,30005279,0,0,0,68,0,43,0,0,0,0,55,84,0,0,0,15,15,0,0,0,8,25,0,35),(1032,'2015-03-14 14:56:58','2015-10-11 16:46:38',1,30004301,0,0,0,52,40,13,36,0,0,0,24,24,0,0,0,0,0,48,0,0,2,16,49,39),(1033,'2015-03-14 14:56:58','2015-10-11 16:46:38',1,30003398,64,154,171,110,28,84,92,23,13,68,83,81,85,27,56,56,62,105,55,40,46,21,182,213),(1034,'2015-03-14 14:56:58','2015-10-11 16:46:38',1,30003840,40,77,23,20,5,13,74,3,12,0,4,7,0,15,16,49,51,16,34,22,5,21,12,5),(1035,'2015-03-14 14:56:58','2015-10-11 16:46:38',1,30003571,0,0,0,13,2,1,19,9,1,0,0,0,10,0,10,10,0,11,14,0,0,56,21,12),(1036,'2015-03-14 14:56:58','2015-10-11 16:46:38',1,30003485,90,42,52,45,50,22,11,34,10,64,0,55,37,9,61,53,39,5,26,13,118,6,31,27),(1037,'2015-03-14 14:56:58','2015-10-11 16:46:38',1,30005028,46,163,48,102,179,220,82,312,58,81,100,71,102,148,353,283,130,135,94,53,188,116,212,40),(1038,'2015-03-14 14:56:58','2015-10-11 16:46:38',1,30005049,204,195,295,165,236,162,58,86,119,193,196,108,212,342,99,167,264,156,147,400,399,162,227,148),(1039,'2015-03-14 14:56:58','2015-10-11 16:46:38',1,30005022,18,18,0,18,4,5,0,0,6,41,106,106,6,0,3,25,22,28,24,1,11,0,0,1),(1040,'2015-03-14 14:56:58','2015-10-11 16:46:38',1,30003062,0,0,3,0,63,1,4,0,1,4,5,4,0,8,0,27,28,70,12,29,13,8,1,12),(1041,'2015-03-14 14:56:58','2015-10-11 16:46:38',1,30005264,2,13,8,0,20,13,0,10,5,1,0,0,59,16,8,0,0,1,0,13,0,0,35,29),(1042,'2015-03-14 14:56:58','2015-10-11 16:46:38',1,30003046,73,103,96,100,35,21,44,33,167,111,23,18,35,43,75,56,34,181,33,55,34,82,75,13),(1043,'2015-03-14 14:56:58','2015-10-11 16:46:38',1,30002051,140,145,66,61,172,87,43,102,92,86,106,125,88,137,96,29,38,47,190,18,10,51,85,110),(1044,'2015-03-14 14:56:58','2015-10-11 16:46:38',1,30003515,66,0,46,134,134,25,0,129,9,172,119,163,66,14,24,60,103,61,13,22,68,171,95,40),(1045,'2015-03-14 14:56:58','2015-10-11 16:46:38',1,30001439,0,69,15,35,198,102,2,57,32,137,3,50,38,0,92,81,90,77,83,3,30,105,94,85),(1046,'2015-03-14 14:56:58','2015-10-11 16:46:38',1,30001647,143,21,61,117,71,30,61,58,25,136,68,57,52,78,73,72,123,72,81,73,89,126,117,35),(1047,'2015-03-14 14:56:58','2015-10-11 16:46:38',1,30003071,14,3,21,37,15,18,23,6,31,17,29,46,0,0,3,7,4,17,2,18,13,4,24,11),(1048,'2015-03-14 14:56:58','2015-10-11 16:46:38',1,30025042,132,120,231,176,0,0,300,0,138,90,238,256,133,70,217,225,105,232,98,14,330,267,91,7),(1049,'2015-03-14 14:56:58','2015-10-11 16:46:38',1,30004989,10,22,76,36,42,20,67,3,96,97,46,31,42,23,63,46,39,47,24,33,85,92,28,190),(1050,'2015-03-14 14:56:58','2015-10-11 16:46:38',1,30003791,24,28,7,10,0,6,1,14,23,0,9,12,8,0,2,0,5,14,13,16,33,30,108,1),(1051,'2015-03-14 14:56:58','2015-10-11 16:46:38',1,30002776,283,378,408,261,199,208,213,205,130,354,445,482,406,321,334,574,782,861,245,302,388,362,474,448),(1052,'2015-03-14 14:56:58','2015-10-11 16:46:38',1,30005326,183,80,148,65,146,154,134,29,171,242,122,99,125,101,293,361,270,17,33,98,118,129,199,247),(1053,'2015-03-14 14:56:58','2015-10-11 16:46:38',1,30004291,0,0,0,57,0,0,0,9,28,0,9,18,0,0,35,117,124,0,18,25,39,86,20,0),(1054,'2015-03-14 14:56:58','2015-10-11 16:46:38',1,30005309,218,202,243,174,214,210,162,188,231,233,102,113,58,417,319,355,285,145,189,291,550,242,199,135),(1055,'2015-03-14 14:56:58','2015-10-11 16:46:38',1,30004104,12,2,0,10,0,0,0,0,75,0,19,79,22,3,0,65,66,0,97,84,0,0,0,0),(1056,'2015-03-14 14:56:58','2015-10-11 16:46:38',1,30002081,56,7,0,33,0,0,9,7,0,19,15,7,9,9,4,2,108,0,0,18,0,9,58,39),(1057,'2015-03-14 14:56:58','2015-10-11 16:46:38',1,30003440,147,51,58,0,0,48,26,0,21,11,32,8,55,111,0,31,31,0,100,47,47,0,40,28),(1058,'2015-03-14 14:56:58','2015-10-11 16:46:38',1,30000132,56,231,448,218,334,197,144,113,115,50,255,318,59,169,221,154,211,73,25,64,114,229,163,400),(1059,'2015-03-14 14:56:58','2015-10-11 16:46:38',1,30002669,59,220,67,65,83,17,270,58,32,17,55,54,80,106,184,118,71,91,1,17,13,60,86,43),(1060,'2015-03-14 14:56:58','2015-10-11 16:46:38',1,30003426,147,57,361,137,13,74,123,167,32,75,330,44,40,33,32,99,220,108,8,25,64,111,60,53),(1061,'2015-03-14 14:56:58','2015-10-11 16:46:38',1,30005261,0,50,0,24,53,0,0,53,92,1,22,0,29,24,41,0,0,15,3,2,4,8,49,198),(1062,'2015-03-14 14:56:58','2015-10-11 16:46:38',1,30001357,189,234,6,100,161,305,4,99,0,130,335,251,93,41,152,238,209,219,181,54,94,36,0,374),(1063,'2015-03-14 14:56:58','2015-10-11 16:46:38',1,30003051,28,72,233,22,82,162,124,42,66,89,136,65,36,155,243,348,246,68,14,47,39,103,101,12),(1064,'2015-03-14 14:56:58','2015-10-11 16:46:38',1,30002805,220,393,524,233,321,282,431,359,397,303,275,353,441,468,604,610,785,425,409,538,617,549,782,534),(1065,'2015-03-14 14:56:58','2015-10-11 16:46:38',1,30005249,29,1,23,27,77,4,87,3,68,1,0,19,120,41,37,43,150,28,0,4,5,102,64,5),(1066,'2015-03-14 14:56:58','2015-10-11 16:46:38',1,30005252,0,0,142,35,21,0,156,72,7,61,314,275,42,8,133,124,16,0,57,67,75,116,64,14),(1067,'2015-03-14 14:56:58','2015-10-11 16:46:38',1,30004006,0,0,0,0,0,0,0,0,0,0,0,0,0,0,519,221,0,790,0,0,958,0,0,0),(1068,'2015-03-14 14:56:58','2015-10-11 16:46:38',1,30001216,188,307,0,101,129,64,54,205,115,122,238,263,280,84,76,21,0,106,169,53,26,20,9,87),(1069,'2015-03-14 14:56:58','2015-10-11 16:46:38',1,30021407,158,72,67,85,143,99,105,7,53,0,53,58,1,22,36,0,37,52,49,14,70,32,7,115),(1070,'2015-03-14 14:56:58','2015-10-11 16:46:38',1,30002453,273,44,18,145,474,674,415,998,948,0,28,1,56,0,5,28,28,0,0,12,29,15,0,0),(1071,'2015-03-14 14:56:58','2015-10-11 16:46:38',1,30005216,1639,1699,805,1959,1799,1599,2000,893,1740,1600,2119,2779,1757,2257,3179,3537,3337,2359,1010,875,2214,2599,2857,2668),(1072,'2015-03-14 14:56:58','2015-10-11 16:46:38',1,30001114,73,0,95,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(1073,'2015-03-14 14:56:58','2015-10-11 16:46:38',1,30004079,507,328,473,634,282,399,471,322,218,853,939,713,620,453,456,397,369,565,232,295,261,294,411,244),(1074,'2015-03-14 14:56:58','2015-10-11 16:46:38',1,30004124,163,116,68,161,13,6,113,95,339,129,208,199,57,158,116,98,91,29,40,100,70,133,113,173),(1075,'2015-03-14 14:56:58','2015-10-11 16:46:38',1,30004576,0,0,0,0,0,0,0,0,98,0,0,0,0,0,0,0,0,0,0,0,0,4,0,1),(1076,'2015-03-14 14:56:58','2015-10-11 16:46:38',1,30005019,117,191,134,323,393,334,127,104,21,110,137,118,88,138,101,130,355,251,170,166,157,115,236,26),(1077,'2015-03-14 14:56:58','2015-10-11 16:46:38',1,30002565,133,109,121,120,197,37,42,78,69,40,202,176,181,81,116,92,79,165,120,0,66,63,0,125),(1078,'2015-03-14 14:56:58','2015-10-11 16:46:38',1,30003656,59,20,9,11,53,0,5,45,47,87,80,0,0,74,423,120,115,10,0,762,1000,0,574,959),(1079,'2015-03-14 14:56:58','2015-10-11 16:46:38',1,30001740,41,77,4,13,14,43,14,194,44,4,4,0,10,22,65,12,17,97,7,74,70,25,10,8),(1080,'2015-03-14 14:56:58','2015-10-11 16:46:38',1,30002551,21,32,0,0,0,82,0,0,0,1,0,0,0,39,0,0,0,3,19,8,20,14,0,0),(1081,'2015-03-14 14:56:58','2015-10-11 16:46:38',1,30002817,98,346,328,278,419,452,265,223,371,322,228,565,116,219,207,221,264,66,261,158,219,277,422,276),(1082,'2015-03-14 14:56:58','2015-10-11 16:46:38',1,30000092,0,108,54,1,8,38,66,3,47,7,0,41,9,0,51,88,51,32,0,0,0,51,78,52),(1083,'2015-03-14 14:56:58','2015-10-11 16:46:38',1,30004994,167,179,516,319,168,205,364,129,193,169,143,34,52,132,100,180,190,270,83,261,222,296,160,239),(1084,'2015-03-14 14:56:58','2015-10-11 16:46:38',1,30003590,113,72,15,63,53,71,27,138,105,23,31,82,129,68,209,153,9,24,43,124,51,118,114,0),(1085,'2015-03-14 14:56:58','2015-10-11 16:46:38',1,30002977,12,17,20,33,60,88,24,10,3,2,22,4,4,2,0,15,15,37,39,0,0,27,8,8),(1086,'2015-03-14 14:56:58','2015-10-11 16:46:38',1,30003487,276,388,220,207,372,328,124,278,27,163,397,287,132,202,381,257,171,314,80,126,504,275,297,233),(1087,'2015-03-14 14:56:58','2015-10-11 16:46:38',1,30004669,0,0,0,0,116,0,0,116,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(1088,'2015-03-14 14:56:58','2015-10-11 16:46:38',1,30003824,84,0,193,27,165,97,7,26,63,5,7,2,0,40,29,32,14,24,6,58,224,88,241,2),(1089,'2015-03-14 14:56:58','2015-10-11 16:46:38',1,30002702,18,6,123,0,0,0,192,62,105,2,69,68,0,1,18,18,0,0,0,0,78,16,0,8),(1090,'2015-03-14 14:56:58','2015-10-11 16:46:38',1,30003030,55,132,62,302,48,59,55,63,5,1,151,177,44,64,76,132,125,295,28,56,26,69,126,84),(1091,'2015-03-14 14:56:58','2015-10-11 16:46:38',1,30002058,0,1,3,0,0,8,1,0,2,9,13,7,0,1,63,65,27,45,12,20,16,41,5,81),(1092,'2015-03-14 14:56:58','2015-10-11 16:46:38',1,30002648,58,29,119,83,135,169,58,129,35,10,52,141,109,55,231,160,156,75,174,212,46,117,36,73),(1093,'2015-03-14 14:56:58','2015-10-11 16:46:38',1,30003852,16,11,56,36,63,20,6,55,39,5,0,2,48,7,90,63,7,23,4,2,4,4,10,7),(1094,'2015-03-14 14:56:58','2015-10-11 16:46:38',1,30004118,4,42,0,0,47,0,0,0,0,79,0,0,64,0,0,0,0,0,0,0,60,80,0,0),(1095,'2015-03-14 14:56:58','2015-10-11 16:46:38',1,30002231,5,4,17,12,14,0,0,68,8,47,0,0,47,88,4,0,70,1,0,8,4,35,100,95),(1096,'2015-03-14 14:56:58','2015-10-11 16:46:38',1,30000099,0,11,23,1,27,54,35,0,26,0,0,0,0,16,0,13,64,0,114,0,2,52,5,1),(1097,'2015-03-14 14:56:58','2015-10-11 16:46:38',1,30002244,47,14,116,93,59,12,13,30,46,126,66,19,16,46,36,63,79,117,24,60,83,71,41,39),(1098,'2015-03-14 14:56:58','2015-03-14 14:56:58',1,30000656,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(1099,'2015-03-14 14:56:58','2015-10-11 16:46:38',1,30002080,13,0,6,12,22,0,0,63,0,20,90,19,7,19,32,61,100,8,34,21,3,4,44,17),(1100,'2015-03-14 14:56:58','2015-10-11 16:46:38',1,30005239,87,0,0,0,0,0,15,0,0,8,0,4,0,1,11,10,27,43,19,48,15,2,35,0),(1101,'2015-03-14 14:56:58','2015-10-11 16:46:38',1,30003595,0,0,0,75,23,35,139,0,16,0,0,0,0,0,16,27,26,15,1,3,0,3,0,73),(1102,'2015-03-14 14:56:58','2015-10-11 16:46:38',1,30001704,76,149,42,124,209,110,86,66,34,17,3,95,14,88,36,43,19,71,146,145,130,179,127,19),(1103,'2015-03-14 14:56:58','2015-10-11 16:46:38',1,30003411,180,206,1,45,136,73,64,65,50,40,89,70,103,48,210,117,96,80,42,53,44,134,27,74),(1104,'2015-03-14 14:56:58','2015-10-11 16:46:38',1,30003374,45,5,269,109,161,61,104,35,46,90,111,146,162,117,131,63,46,197,31,78,164,17,25,144),(1105,'2015-03-14 14:56:58','2015-10-11 16:46:38',1,30002205,0,13,55,101,108,0,14,0,5,142,138,4,115,44,11,39,81,6,91,31,46,169,60,13),(1106,'2015-03-14 14:56:58','2015-10-11 16:46:38',1,30003009,562,103,322,504,226,237,224,316,591,344,606,773,223,353,182,401,475,280,49,82,180,190,223,177),(1107,'2015-03-14 14:56:58','2015-10-11 16:46:38',1,30002066,12,3,5,8,14,20,56,18,7,24,10,13,124,5,0,13,22,30,4,0,16,11,1,3),(1108,'2015-03-14 14:56:58','2015-10-11 16:46:38',1,30000112,127,97,0,167,9,5,84,69,49,78,52,101,17,13,10,9,54,79,11,29,90,6,0,20),(1109,'2015-03-14 14:56:58','2015-10-11 16:46:38',1,30005001,1151,1152,1855,1474,1355,1337,1346,1009,1019,1316,1926,1829,1452,1771,1973,1885,2108,1442,1106,1061,1629,1736,1909,1790),(1110,'2015-03-14 14:56:58','2015-10-11 16:46:38',1,30002064,5,0,60,51,12,6,48,65,55,8,2,2,5,120,15,6,5,74,1,13,2,10,25,7),(1111,'2015-03-14 14:56:58','2015-10-11 16:46:38',1,30002240,0,0,0,72,104,29,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(1112,'2015-03-14 14:56:58','2015-10-11 16:46:38',1,30005330,233,133,268,162,217,290,79,121,179,222,236,182,173,254,252,377,466,244,250,343,185,198,386,270),(1113,'2015-03-14 14:56:58','2015-10-11 16:46:38',1,30002253,9,150,246,29,116,42,0,332,0,55,84,79,6,123,63,97,101,1,7,105,15,136,179,38),(1114,'2015-03-14 14:56:58','2015-10-11 16:46:38',1,30002687,121,34,30,241,0,0,11,9,24,55,62,65,14,2,52,52,6,54,8,0,84,61,202,20),(1115,'2015-03-14 14:56:58','2015-10-11 16:46:38',1,30003556,0,25,0,0,0,0,0,44,9,0,1,0,0,9,0,0,0,13,38,0,0,1,5,13),(1116,'2015-03-14 14:56:58','2015-10-11 16:46:38',1,30002278,240,236,71,56,107,116,53,126,123,88,147,150,109,64,156,225,205,213,105,125,233,308,214,56),(1117,'2015-03-14 14:56:58','2015-10-11 16:46:38',1,30001381,390,340,836,732,704,639,588,198,335,169,379,329,268,367,386,392,401,264,318,188,101,266,491,312),(1118,'2015-03-14 14:56:58','2015-10-11 16:46:38',1,30003007,0,0,158,47,163,26,0,0,93,6,9,8,3,0,0,0,3,54,29,100,50,22,0,100),(1119,'2015-03-14 14:56:58','2015-10-11 16:46:38',1,30002078,0,65,9,18,61,30,35,0,0,3,12,22,29,27,46,23,4,2,6,21,1,94,0,49),(1120,'2015-03-14 14:56:58','2015-10-11 16:46:38',1,30005086,39,0,0,0,0,0,96,21,0,0,0,0,0,2,25,25,0,0,0,0,0,0,0,4),(1121,'2015-03-14 14:56:58','2015-10-11 16:46:38',1,30002960,3,32,0,32,12,15,3,0,30,7,14,13,4,10,12,12,9,10,4,1,4,11,68,12),(1122,'2015-03-14 14:56:58','2015-10-11 16:46:38',1,30003885,112,0,114,73,62,14,151,54,0,0,0,0,26,22,0,0,19,42,7,19,75,117,0,0),(1123,'2015-03-14 14:56:58','2015-10-11 16:46:38',1,30005065,4,5,10,22,4,0,12,1,20,29,18,18,0,0,0,0,0,0,5,0,0,11,2,0),(1124,'2015-03-14 14:56:58','2015-10-11 16:46:38',1,30003921,0,0,0,0,8,16,2,0,0,0,9,0,0,0,0,0,0,0,0,0,0,4,0,0),(1125,'2015-03-14 14:56:58','2015-10-11 16:46:38',1,30000012,0,56,0,2,0,32,0,0,0,1,0,70,1,0,0,51,72,6,0,0,0,9,0,0),(1126,'2015-03-14 14:56:58','2015-10-11 16:46:38',1,30045332,81,78,1,3,10,11,0,3,3,1,1,4,10,9,0,2,36,0,0,0,7,1,1,2),(1127,'2015-03-14 14:56:58','2015-10-11 16:46:38',1,30005251,35,21,278,11,1,3,46,35,95,351,455,507,616,42,130,57,27,239,53,37,61,88,47,67),(1128,'2015-03-14 14:56:58','2015-10-11 16:46:38',1,30001689,27,77,6,55,40,43,74,53,36,73,43,105,49,116,90,78,97,50,55,139,108,104,152,124),(1129,'2015-03-14 14:56:58','2015-10-11 16:46:38',1,30002084,3,0,7,5,7,4,0,37,0,22,58,55,42,21,15,3,15,13,34,14,67,2,1,19),(1130,'2015-03-14 14:56:58','2015-10-11 16:46:38',1,30001708,164,73,200,97,64,68,48,37,57,68,112,142,47,154,113,80,82,115,85,191,90,73,168,270),(1131,'2015-03-14 14:56:58','2015-10-11 16:46:38',1,30003384,13,30,149,49,94,23,66,78,55,40,18,79,115,57,67,50,30,19,14,5,19,91,64,120),(1132,'2015-03-14 14:56:58','2015-10-11 16:46:38',1,30000084,35,53,31,25,13,0,3,0,5,51,8,0,49,42,154,117,31,1,1,44,60,66,21,87),(1133,'2015-03-14 14:56:58','2015-10-11 16:46:38',1,30002978,10,18,36,10,14,14,12,9,16,12,14,23,13,14,2,20,32,41,5,6,11,13,15,31),(1134,'2015-03-14 14:56:58','2015-10-11 16:46:38',1,30003491,123,20,135,169,148,23,47,94,105,68,87,25,93,138,133,131,71,183,95,174,131,233,109,105),(1135,'2015-03-14 14:56:58','2015-10-11 16:46:38',1,30003890,248,38,56,147,74,135,63,42,80,262,216,1,27,39,27,32,60,30,33,37,119,26,16,76),(1136,'2015-03-14 14:56:58','2015-10-11 16:46:38',1,30045311,18,18,0,22,6,6,0,1,15,12,30,25,109,14,34,21,33,42,0,16,123,15,18,9),(1137,'2015-03-14 14:56:58','2015-10-11 16:46:38',1,30003919,3,10,0,0,9,9,0,0,0,0,0,0,0,0,22,0,0,0,0,0,0,11,37,308),(1138,'2015-03-14 14:56:58','2015-10-11 16:46:38',1,30003886,0,0,0,3,0,0,0,0,0,99,0,3,1,35,0,0,0,0,0,104,99,7,0,0),(1139,'2015-03-14 14:56:58','2015-10-11 16:46:38',1,30005214,399,205,99,253,305,456,323,154,434,228,206,288,490,318,679,555,466,655,257,224,776,698,644,494),(1140,'2015-03-14 14:56:58','2015-10-11 16:46:38',1,30000095,0,9,0,0,0,0,96,0,4,0,0,0,26,16,5,6,6,1,0,0,0,8,0,1),(1141,'2015-03-14 14:56:58','2015-10-11 16:46:38',1,30004093,131,321,248,206,90,129,428,232,221,173,180,233,361,215,142,260,445,202,120,347,325,267,361,114),(1142,'2015-03-14 14:56:58','2015-10-11 16:46:38',1,30002272,0,21,58,0,0,18,28,9,0,0,0,0,0,15,0,0,0,81,0,8,8,14,0,133),(1143,'2015-03-14 14:56:58','2015-10-11 16:46:38',1,30004156,54,164,170,158,35,207,246,26,55,172,95,45,250,396,309,201,127,309,172,270,380,290,81,75),(1144,'2015-03-14 14:56:58','2015-10-11 16:46:38',1,30000075,0,1,12,6,0,0,0,0,0,0,170,163,37,3,53,3,18,0,0,10,0,11,0,40),(1145,'2015-03-14 14:56:58','2015-10-11 16:46:38',1,30005224,42,0,0,14,32,47,0,42,1,0,19,16,3,0,3,0,0,8,49,8,0,5,0,104),(1146,'2015-03-14 14:56:58','2015-10-11 16:46:38',1,30001723,0,70,84,25,23,25,54,34,0,0,25,18,0,45,13,32,33,50,20,0,0,0,14,83),(1147,'2015-03-14 14:56:58','2015-10-11 16:46:38',1,30002724,65,127,82,44,142,60,64,0,42,18,56,56,95,82,31,21,0,56,0,0,18,17,16,110),(1148,'2015-03-14 14:56:58','2015-10-11 16:46:38',1,30000113,0,0,0,9,1,0,0,35,30,3,0,0,45,0,83,2,2,10,0,0,0,16,4,37),(1149,'2015-03-14 14:56:58','2015-10-11 16:46:38',1,30045323,296,263,343,124,214,281,164,189,179,129,215,328,336,265,178,372,615,236,358,236,371,393,412,878),(1150,'2015-03-14 14:56:58','2015-10-11 16:46:38',1,30001419,198,160,184,101,114,85,244,23,100,136,152,191,209,109,255,169,250,133,25,205,198,231,183,190),(1151,'2015-03-14 14:56:58','2015-10-11 16:46:38',1,30005077,32,0,0,0,2,10,0,0,0,0,0,0,28,0,3,0,0,0,0,0,4,87,46,21),(1152,'2015-03-14 14:56:58','2015-10-11 16:46:38',1,30002557,45,0,182,2,53,36,146,0,18,73,121,119,296,47,149,41,24,2,23,3,0,262,318,48),(1153,'2015-03-14 14:56:58','2015-10-11 16:46:38',1,30003031,108,72,95,59,99,83,100,143,104,112,45,46,52,150,194,102,70,150,110,55,150,157,178,70),(1154,'2015-03-14 14:56:58','2015-10-11 16:46:38',1,30003856,12,71,59,30,12,15,14,13,9,0,12,12,2,25,3,11,26,23,7,72,21,0,0,20),(1155,'2015-03-14 14:56:58','2015-10-11 16:46:38',1,30002701,100,137,97,237,116,162,262,39,96,155,127,85,29,195,316,207,226,223,65,85,184,109,95,198),(1156,'2015-03-14 14:56:58','2015-10-11 16:46:38',1,30002695,456,190,164,380,277,263,244,173,181,378,321,387,129,304,628,518,547,408,449,317,289,338,505,378),(1157,'2015-03-14 14:56:58','2015-10-11 16:46:38',1,30002489,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,3,0,0),(1158,'2015-03-14 14:56:58','2015-10-11 16:46:38',1,30005024,10,0,34,101,108,106,72,112,110,86,71,0,0,270,56,59,55,58,73,51,188,28,26,102),(1159,'2015-03-14 14:56:58','2015-10-11 16:46:38',1,30003038,78,183,108,243,81,31,33,11,44,80,122,33,15,92,181,108,43,3,40,22,65,53,4,97),(1160,'2015-03-14 14:56:58','2015-10-11 16:46:38',1,30002389,33,0,40,23,4,0,31,33,1,0,0,0,0,0,4,19,16,0,3,6,0,3,2,33),(1161,'2015-03-14 14:56:58','2015-10-11 16:46:38',1,30005010,3,12,1,11,54,137,1,0,24,0,0,0,30,0,0,0,3,51,14,38,6,12,0,2),(1162,'2015-03-14 14:56:58','2015-10-11 16:46:38',1,30003455,46,34,87,38,20,29,144,14,154,6,57,256,163,30,237,141,77,85,13,71,1,44,9,32),(1163,'2015-03-14 14:56:58','2015-10-11 16:46:38',1,30001678,145,179,189,213,82,12,132,258,159,270,123,197,197,162,159,181,260,523,48,236,233,312,110,118),(1164,'2015-03-14 14:56:58','2015-10-11 16:46:38',1,30004654,0,0,0,0,0,0,0,0,80,0,0,0,0,0,0,0,0,0,0,0,0,127,0,0),(1165,'2015-03-14 14:56:58','2015-10-11 16:46:38',1,30005197,47,107,34,75,90,14,104,78,26,123,7,35,23,47,57,115,106,3,46,63,26,30,4,35),(1166,'2015-03-14 14:56:58','2015-10-11 16:46:38',1,30005004,80,177,130,176,194,198,136,27,166,429,340,198,224,179,342,314,179,188,190,251,315,229,193,188),(1167,'2015-03-14 14:56:58','2015-10-11 16:46:38',1,30003273,34,0,0,0,4,4,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,15,0),(1168,'2015-03-14 14:56:58','2015-10-11 16:46:38',1,30002834,0,50,0,0,0,0,187,19,115,0,0,0,0,63,0,0,0,0,0,0,0,0,0,0),(1169,'2015-03-14 14:56:58','2015-10-11 16:46:38',1,30003827,11,6,6,16,45,28,0,5,8,0,17,25,18,8,21,16,23,33,12,42,21,9,17,6),(1170,'2015-03-14 14:56:58','2015-10-11 16:46:38',1,30002709,107,2,68,140,92,90,24,39,84,127,56,77,52,93,59,76,87,31,58,60,32,177,154,64),(1171,'2015-03-14 14:56:58','2015-10-11 16:46:38',1,30003849,24,2,23,9,0,0,9,0,10,0,28,87,0,0,3,0,0,0,4,4,0,65,3,2),(1172,'2015-03-14 14:56:58','2015-10-11 16:46:38',1,30002684,89,167,145,106,142,161,17,127,26,150,55,95,145,39,290,35,72,142,129,86,62,198,64,6),(1173,'2015-03-14 14:56:58','2015-10-11 16:46:38',1,30002395,0,54,77,163,5,0,0,0,125,10,5,0,29,69,120,95,49,40,1,0,0,1,5,6),(1174,'2015-03-14 14:56:58','2015-10-11 16:46:38',1,30002641,125,100,138,287,343,396,236,164,170,231,113,127,285,264,140,121,192,109,222,183,289,311,254,316),(1175,'2015-03-14 14:56:58','2015-10-11 16:46:38',1,30002542,0,6,26,31,8,0,11,138,0,2,0,8,2,40,1,1,0,4,0,6,6,1,23,3),(1176,'2015-03-14 14:56:58','2015-10-11 16:46:38',1,30002680,276,148,75,75,114,77,94,184,48,169,150,170,90,232,122,136,162,210,104,58,46,107,200,137),(1177,'2015-03-14 14:56:58','2015-10-11 16:46:38',1,30003818,0,47,16,8,21,9,152,51,11,10,59,13,11,11,0,0,0,0,0,3,0,1,57,1),(1178,'2015-03-14 14:56:58','2015-10-11 16:46:38',1,30001398,4,15,0,0,0,0,90,0,1,6,24,14,28,0,0,0,17,117,0,0,32,11,51,7),(1179,'2015-03-14 14:56:58','2015-10-11 16:46:38',1,30002059,81,27,9,0,18,20,2,26,48,14,23,57,22,19,15,3,13,45,143,86,58,1,10,35),(1180,'2015-03-14 14:56:58','2015-10-11 16:46:38',1,30002657,782,703,521,818,1089,763,604,720,805,853,1029,1132,1119,689,1940,1673,1653,1220,858,1040,1438,1798,1340,822),(1181,'2015-03-14 14:56:58','2015-10-11 16:46:38',1,30003801,0,7,25,21,57,16,7,5,76,26,140,65,1,18,14,10,10,0,41,45,0,2,16,52),(1182,'2015-03-14 14:56:58','2015-10-11 16:46:38',1,30002716,220,219,36,251,169,258,15,188,40,92,287,261,181,126,96,86,105,300,23,203,116,103,125,176),(1183,'2015-03-14 14:56:58','2015-10-11 16:46:38',1,30003915,27,69,161,11,32,30,1,0,33,0,119,126,44,71,89,1,54,40,45,8,0,10,34,53),(1184,'2015-03-14 14:56:58','2015-10-11 16:46:38',1,30002561,0,0,9,0,0,0,0,0,0,0,26,26,56,44,0,30,40,25,0,0,0,0,0,0),(1185,'2015-03-14 14:56:58','2015-10-11 16:46:38',1,30001361,0,15,0,31,0,0,58,100,0,0,3,82,40,0,39,21,0,26,37,0,2,92,24,1),(1186,'2015-03-14 14:56:58','2015-10-11 16:46:38',1,30003821,33,15,68,18,1,29,56,0,0,44,78,91,7,133,3,14,12,1,41,40,26,0,1,2),(1187,'2015-03-14 14:56:58','2015-10-11 16:46:38',1,30002523,21,62,6,99,22,0,58,7,54,153,150,43,35,20,316,235,4,48,29,43,71,28,59,161),(1188,'2015-03-14 14:56:58','2015-10-11 16:46:38',1,30001411,374,201,135,69,140,186,265,52,116,101,76,156,137,107,152,173,249,140,202,188,287,356,206,372),(1189,'2015-03-14 14:56:58','2015-10-11 16:46:38',1,30001384,421,429,166,316,282,256,248,279,144,242,233,251,354,362,198,165,293,328,81,114,173,307,288,214),(1190,'2015-03-14 14:56:58','2015-10-11 16:46:38',1,30002656,1014,330,273,519,425,409,437,158,321,498,728,977,397,857,1015,761,677,634,416,435,593,645,722,599),(1191,'2015-03-14 14:56:58','2015-10-11 16:46:38',1,30002744,111,139,527,481,460,167,269,190,156,253,431,158,194,150,441,357,261,69,252,154,331,251,429,239),(1192,'2015-03-14 14:56:58','2015-10-11 16:46:38',1,30004614,0,0,0,0,46,0,0,128,241,0,0,0,0,3,7,7,1,0,0,10,0,8,663,562),(1193,'2015-03-14 14:56:58','2015-10-11 16:46:38',1,30004249,29,7,250,37,30,14,43,28,8,8,2,7,11,27,0,0,30,7,9,4,93,17,36,180),(1194,'2015-03-14 14:56:58','2015-10-11 16:46:38',1,30002270,1,54,4,1,99,90,19,0,19,0,0,0,0,0,0,0,0,3,0,1,1,0,35,19),(1195,'2015-03-14 14:56:58','2015-10-11 16:46:38',1,30003843,16,4,10,0,69,82,37,9,0,0,0,1,28,44,3,3,0,0,35,43,0,38,23,39),(1196,'2015-03-14 14:56:58','2015-10-11 16:46:38',1,30003053,189,185,101,239,158,166,84,29,183,111,117,124,0,136,119,163,232,152,10,40,426,180,216,57),(1197,'2015-03-14 14:56:58','2015-10-11 16:46:38',1,30002089,0,0,10,80,3,18,1,0,0,120,13,12,29,53,18,31,26,23,5,1,48,2,8,32),(1198,'2015-03-14 14:56:58','2015-10-11 16:46:38',1,30003047,84,60,108,274,84,0,181,51,45,142,110,194,3,31,109,103,128,95,163,84,35,41,336,188),(1199,'2015-03-14 14:56:58','2015-10-11 16:46:38',1,30002530,175,510,566,647,810,556,326,238,91,175,162,271,319,232,282,252,243,263,59,75,284,138,228,125),(1200,'2015-03-14 14:56:58','2015-10-11 16:46:38',1,30005215,2678,1580,1048,1979,2339,2160,1840,954,756,1580,2160,2040,2017,1699,2535,2595,2458,2419,799,1238,1380,2300,2419,2538),(1201,'2015-03-14 14:56:58','2015-10-11 16:46:38',1,30000860,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(1202,'2015-03-14 14:56:58','2015-10-11 16:46:38',1,30001203,0,0,0,0,0,0,0,0,0,4,10,4,0,5,0,0,0,0,0,0,0,0,0,9),(1203,'2015-03-14 14:56:58','2015-10-11 16:46:38',1,30004904,0,0,0,0,93,1,6,0,25,0,0,0,161,0,3,0,0,0,0,0,0,0,0,0),(1204,'2015-03-14 14:56:58','2015-10-11 16:46:38',1,30003756,41,62,16,12,51,16,11,31,0,119,39,130,110,4,38,101,97,2,77,7,5,65,93,14),(1205,'2015-03-14 14:56:58','2015-10-11 16:46:38',1,30003746,96,0,19,12,4,8,0,0,0,151,132,62,90,211,186,359,321,72,14,291,51,92,387,206),(1206,'2015-03-14 14:56:58','2015-03-14 14:56:58',1,30005094,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(1207,'2015-03-14 14:56:58','2015-10-11 16:46:38',1,30003055,33,103,24,49,13,14,118,5,88,55,160,79,24,99,59,77,116,51,13,117,97,47,91,48),(1208,'2015-03-14 14:56:58','2015-10-11 16:46:38',1,30003093,0,0,66,31,0,0,0,0,0,9,0,0,2,0,69,9,9,0,0,18,28,23,1,4),(1209,'2015-03-14 14:56:58','2015-10-11 16:46:38',1,30002717,148,54,219,127,274,191,84,32,23,99,107,160,55,277,319,262,274,58,94,135,141,134,92,130),(1210,'2015-03-14 14:56:58','2015-10-11 16:46:38',1,30001342,0,50,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,14,0,0),(1211,'2015-03-14 14:56:58','2015-10-11 16:46:38',1,30000672,0,0,0,0,0,48,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(1212,'2015-03-14 14:56:58','2015-10-11 16:46:38',1,30001070,0,0,0,65,0,0,109,236,85,0,0,0,0,0,0,0,0,46,0,0,0,0,0,0),(1213,'2015-03-14 14:56:58','2015-10-11 16:46:38',1,30000265,193,138,0,0,123,229,57,0,0,138,127,0,144,5,337,210,87,0,0,0,11,353,275,100),(1214,'2015-03-14 14:56:58','2015-10-11 16:46:38',1,30005275,0,0,0,0,13,13,64,30,0,0,0,0,0,84,0,0,119,0,96,41,0,0,0,21),(1215,'2015-03-14 14:56:58','2015-10-11 16:46:38',1,30003018,50,164,70,347,87,45,152,62,194,104,64,101,131,212,88,75,50,148,118,145,87,238,111,67),(1216,'2015-03-14 14:56:58','2015-10-11 16:46:38',1,30001711,202,191,67,151,29,32,141,140,75,167,65,154,106,211,210,91,75,183,77,50,137,126,175,122),(1217,'2015-03-14 14:56:58','2015-10-11 16:46:38',1,30000920,0,0,0,0,0,0,22,0,0,82,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(1218,'2015-03-14 14:56:58','2015-10-11 16:46:38',1,30001705,15,115,123,0,90,29,179,0,0,0,139,124,152,56,257,195,34,39,0,79,72,94,69,1),(1219,'2015-03-14 14:56:58','2015-10-11 16:46:38',1,30002265,4,80,39,146,32,36,119,28,111,256,45,46,68,8,63,6,2,6,23,14,98,34,53,85),(1220,'2015-03-14 14:56:58','2015-10-11 16:46:38',1,30004450,0,12,0,68,29,0,0,0,0,0,0,55,0,0,0,0,1,74,0,0,0,0,0,0),(1221,'2015-03-14 14:56:58','2015-10-11 16:46:38',1,30000716,0,4,0,0,0,0,0,0,0,0,0,0,2,0,0,0,0,0,0,0,0,0,0,0),(1222,'2015-03-14 14:56:58','2015-10-11 16:46:38',1,30001944,0,0,0,0,0,0,0,0,5,86,19,0,0,0,0,0,0,0,0,0,12,0,0,19),(1223,'2015-03-14 14:56:58','2015-10-11 16:46:38',1,30002334,0,0,0,0,0,0,0,0,0,147,11,136,91,72,0,0,0,0,0,25,207,0,0,0),(1224,'2015-03-14 14:56:58','2015-03-14 14:56:58',1,30001156,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(1225,'2015-03-14 14:56:58','2015-10-11 16:46:38',1,30000211,94,210,207,93,464,305,693,177,74,7,46,117,164,167,84,153,228,186,39,25,0,10,130,91),(1226,'2015-03-14 14:56:58','2015-03-14 14:56:58',1,30000435,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(1227,'2015-03-14 14:56:58','2015-10-11 16:46:38',1,30004873,120,334,37,75,12,20,0,7,47,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(1228,'2015-03-14 14:56:58','2015-10-11 16:46:38',1,30004030,0,135,0,0,98,98,0,0,20,0,500,1680,382,37,0,0,0,180,0,0,32,254,44,150),(1229,'2015-03-14 14:56:58','2015-10-11 16:46:38',1,30005160,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,96,93,0,0,0),(1230,'2015-03-14 14:56:58','2015-10-11 16:46:38',1,30002029,0,29,7,0,0,11,0,0,0,0,0,0,0,0,0,0,17,0,0,0,0,0,0,0),(1231,'2015-03-14 14:56:58','2015-10-11 16:46:38',1,30002108,0,0,0,30,18,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(1232,'2015-03-14 14:56:58','2015-10-11 16:46:38',1,30005088,0,0,0,0,0,0,59,0,0,110,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(1233,'2015-03-14 14:56:58','2015-03-14 14:56:58',1,30001321,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(1234,'2015-03-14 14:56:58','2015-10-11 16:46:38',1,30004040,0,0,1,2,5,5,0,0,0,0,1,29,0,0,0,0,0,0,0,0,0,90,0,0),(1235,'2015-03-14 14:56:58','2015-03-14 14:56:58',1,30000423,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(1236,'2015-03-14 14:56:58','2015-10-11 16:46:38',1,30000307,0,125,0,0,26,67,88,14,0,0,142,137,86,18,53,13,85,62,0,5,0,112,68,206),(1237,'2015-03-14 14:56:58','2015-03-14 14:56:58',1,30003250,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(1238,'2015-03-14 14:56:58','2015-10-11 16:46:38',1,30002496,148,88,12,253,532,339,0,87,33,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(1239,'2015-03-14 14:56:58','2015-10-11 16:46:38',1,30001910,33,26,0,0,0,0,44,0,0,0,0,44,6,166,0,0,0,1,1,0,7,93,55,8),(1240,'2015-03-14 14:56:58','2015-10-11 16:46:38',1,30004328,210,11,0,0,0,29,0,1280,419,42,136,257,259,0,9,249,561,105,0,49,111,348,419,186),(1241,'2015-03-14 14:56:58','2015-10-11 16:46:38',1,30000817,190,0,200,0,365,230,81,42,0,31,3,0,403,1,1,43,118,279,0,8,43,87,78,20),(1242,'2015-03-14 14:56:58','2015-10-11 16:46:38',1,30002143,33,69,109,56,31,40,8,0,0,0,0,0,0,0,0,0,0,2,0,0,0,0,0,0),(1243,'2015-03-14 14:56:58','2015-10-11 16:46:38',1,30002157,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,17,0,0),(1244,'2015-03-14 14:56:58','2015-10-11 16:46:38',1,30000961,0,0,0,0,0,0,0,0,0,0,0,0,1,0,41,25,7,0,17,0,0,19,0,0),(1245,'2015-03-14 14:56:58','2015-10-11 16:46:38',1,30002105,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,10),(1246,'2015-03-14 14:56:58','2015-10-11 16:46:38',1,30000854,73,0,0,0,3,40,0,85,0,0,0,0,0,183,0,0,20,0,5,53,1,0,60,86),(1247,'2015-03-14 14:56:58','2015-10-11 16:46:38',1,30000624,0,0,0,0,0,0,0,0,0,0,0,0,74,0,0,0,0,258,0,0,0,0,0,179),(1248,'2015-03-14 14:56:58','2015-10-11 16:46:38',1,30004194,0,334,856,414,357,544,587,189,202,0,66,10,0,0,194,108,70,3,0,0,0,0,0,0),(1249,'2015-03-14 14:56:58','2015-10-11 16:46:38',1,30001076,54,66,0,5,3,0,25,509,235,0,2,6,0,0,85,191,126,0,0,0,0,3,0,172),(1250,'2015-03-14 14:56:58','2015-10-11 16:46:38',1,30000970,0,0,0,0,0,0,0,0,0,4,0,0,0,0,14,14,0,0,0,8,137,3,14,3),(1251,'2015-03-14 14:56:58','2015-10-11 16:46:38',1,30003730,55,32,145,271,52,3,68,47,0,2,231,194,148,27,133,48,69,87,149,0,104,98,1,4),(1252,'2015-03-14 14:56:58','2015-10-11 16:46:38',1,30000610,0,73,0,0,64,23,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(1253,'2015-03-14 14:56:58','2015-10-11 16:46:38',1,30001215,55,7,73,391,0,72,274,1,0,10,48,50,101,563,199,259,153,202,265,331,155,260,129,9),(1254,'2015-03-14 14:56:58','2015-03-14 14:56:58',1,30001611,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(1255,'2015-03-14 14:56:58','2015-10-11 16:46:38',1,30004532,0,0,0,78,50,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(1256,'2015-03-14 14:56:58','2015-10-11 16:46:38',1,30004590,0,43,0,82,0,0,0,0,0,0,0,0,0,0,0,0,0,40,0,0,0,0,0,0),(1257,'2015-03-14 14:56:58','2015-10-11 16:46:38',1,30003180,0,0,0,0,0,0,0,0,0,0,78,96,134,58,72,78,121,62,0,0,0,57,199,121),(1258,'2015-03-14 14:56:58','2015-10-11 16:46:38',1,30002850,0,102,54,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(1259,'2015-03-14 14:56:58','2015-10-11 16:46:38',1,30002165,0,0,0,0,0,0,0,41,0,0,0,0,0,0,0,0,0,0,0,0,54,0,0,0),(1260,'2015-03-14 14:56:58','2015-10-11 16:46:38',1,30001115,125,488,664,724,693,692,642,377,488,250,365,472,418,564,422,520,492,649,0,161,338,161,612,786),(1261,'2015-03-14 14:56:58','2015-10-11 16:46:38',1,30004599,0,0,0,264,0,0,0,31,0,0,0,0,0,0,46,55,122,56,168,98,7,0,0,0),(1262,'2015-03-14 14:56:58','2015-10-11 16:46:38',1,30001346,0,0,0,0,0,0,0,0,0,72,0,43,38,12,0,0,0,0,0,92,102,61,0,0),(1263,'2015-03-14 14:56:58','2015-10-11 16:46:38',1,30002860,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(1264,'2015-03-14 14:56:58','2015-10-11 16:46:38',1,30002436,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,11,0,0,0,0,0,0,0),(1265,'2015-03-14 14:56:58','2015-10-11 16:46:38',1,30001555,18,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(1266,'2015-03-14 14:56:58','2015-10-11 16:46:38',1,30002012,0,3,1,0,13,11,2,9,0,0,2,1,3,6,0,22,80,9,0,11,0,9,27,20),(1267,'2015-03-14 14:56:58','2015-10-11 16:46:38',1,30004848,0,0,0,0,0,0,0,0,11,0,0,0,0,0,0,0,0,0,0,0,0,53,0,0),(1268,'2015-03-14 14:56:58','2015-10-11 16:46:38',1,30004346,0,0,268,179,177,350,0,211,623,280,415,335,127,0,0,0,0,0,0,0,0,0,208,310),(1269,'2015-03-14 14:56:58','2015-10-11 16:46:38',1,30002110,0,0,0,0,0,0,0,149,13,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(1270,'2015-03-14 14:56:58','2015-10-11 16:46:38',1,30001529,0,0,0,0,143,69,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(1271,'2015-03-14 14:56:58','2015-10-11 16:46:38',1,30005127,33,0,4,6,0,0,0,2,15,12,14,15,11,12,14,13,8,0,4,3,4,19,1,0),(1272,'2015-03-14 14:56:58','2015-10-11 16:46:38',1,30003601,0,22,3,6,0,0,88,32,4,1,17,15,18,49,0,0,0,4,47,5,30,0,0,17),(1273,'2015-03-14 14:56:58','2015-10-11 16:46:38',1,30003888,21,11,55,53,11,4,81,6,68,1340,1312,1500,469,108,19,24,27,70,28,40,71,32,0,69),(1274,'2015-03-14 14:56:58','2015-10-11 16:46:38',1,30003525,79,25,34,60,44,94,101,15,17,80,26,27,127,54,123,68,65,67,19,48,27,86,23,39),(1275,'2015-03-14 14:56:58','2015-10-11 16:46:38',1,30003502,575,456,237,248,273,169,78,281,118,432,360,326,309,214,269,477,681,576,210,516,307,349,416,266),(1276,'2015-03-14 14:56:58','2015-10-11 16:46:38',1,30000041,5,0,0,0,10,68,0,0,0,0,0,0,60,0,0,0,0,0,0,0,2,0,0,2),(1277,'2015-03-14 14:56:58','2015-10-11 16:46:38',1,30003910,187,40,50,139,96,88,61,95,45,6,4,19,139,4,71,136,83,64,2,29,343,26,43,109),(1278,'2015-03-14 14:56:58','2015-10-11 16:46:38',1,30004261,0,0,7,0,0,0,0,0,1,145,30,0,4,0,0,0,0,32,0,0,0,3,6,0),(1279,'2015-03-14 14:56:58','2015-10-11 16:46:38',1,30002528,595,551,392,690,727,547,371,238,413,932,731,878,456,490,921,921,743,871,292,528,927,959,911,749),(1280,'2015-03-14 14:56:58','2015-10-11 16:46:38',1,30002634,183,201,282,233,115,101,105,330,115,41,76,147,111,117,236,226,184,204,108,225,134,96,204,147),(1281,'2015-03-14 14:56:58','2015-10-11 16:46:38',1,30002690,40,0,121,67,1,3,9,52,105,205,42,6,0,0,24,267,264,8,0,0,0,153,0,0),(1282,'2015-03-14 14:56:58','2015-10-11 16:46:38',1,30005294,103,32,8,153,7,52,54,49,36,130,34,23,37,32,154,31,32,85,13,66,207,122,35,32),(1283,'2015-03-14 14:56:58','2015-10-11 16:46:38',1,30005257,0,8,11,0,0,73,37,98,0,0,18,22,19,0,0,0,0,0,0,0,38,2,0,0),(1284,'2015-03-14 14:56:58','2015-10-11 16:46:38',1,30004296,41,6,0,12,48,110,0,21,10,5,37,0,0,0,0,0,0,0,0,0,0,11,0,12),(1285,'2015-03-14 14:56:58','2015-10-11 16:46:38',1,30000085,97,69,121,7,18,20,80,9,31,31,55,55,61,76,0,1,3,7,59,36,55,2,104,38),(1286,'2015-03-14 14:56:58','2015-10-11 16:46:38',1,30003920,10,8,0,0,0,32,0,97,0,0,4,0,0,0,2,2,0,1,0,0,0,22,0,53),(1287,'2015-03-14 14:56:58','2015-10-11 16:46:38',1,30003548,1,34,18,70,65,59,29,18,9,60,54,53,26,42,45,69,79,64,40,63,114,105,38,97),(1288,'2015-03-14 14:56:58','2015-10-11 16:46:38',1,30002071,885,1044,1390,1715,1260,956,1302,1083,1560,2059,1699,1639,1740,2220,3439,3318,3057,2700,970,1497,1333,2339,2439,2079),(1289,'2015-03-14 14:56:58','2015-10-11 16:46:38',1,30003819,72,30,7,79,5,0,104,40,3,0,57,32,66,9,0,0,0,18,0,0,0,0,26,42),(1290,'2015-03-14 14:56:58','2015-10-11 16:46:38',1,30002683,127,141,142,261,81,67,123,403,18,102,82,83,85,31,145,164,74,195,94,166,25,173,128,241),(1291,'2015-03-14 14:56:58','2015-10-11 16:46:38',1,30003478,0,0,0,1,0,20,0,0,59,0,23,23,17,8,0,0,0,0,0,6,0,0,18,0),(1292,'2015-03-14 14:56:58','2015-10-11 16:46:38',1,30002666,25,73,44,142,9,6,173,104,7,13,24,29,4,30,0,0,12,4,1,3,42,126,19,4),(1293,'2015-03-14 14:56:58','2015-10-11 16:46:38',1,30002199,159,136,389,311,165,129,885,237,13,233,150,184,193,291,254,178,110,766,121,311,256,293,53,319),(1294,'2015-03-14 14:56:58','2015-10-11 16:46:38',1,30003908,114,52,1,12,85,59,60,28,207,55,11,132,10,0,289,69,0,39,0,224,12,33,70,2),(1295,'2015-03-14 14:56:58','2015-10-11 16:46:38',1,30001670,353,351,292,207,385,529,409,239,286,458,407,420,284,463,475,414,667,419,449,427,507,571,469,239),(1296,'2015-03-14 14:56:58','2015-10-11 16:46:38',1,30002700,139,140,325,379,232,81,186,150,46,63,305,158,24,287,181,259,351,108,134,90,248,156,263,95),(1297,'2015-03-14 14:56:58','2015-10-11 16:46:38',1,30000039,26,24,0,0,0,0,0,0,0,0,0,4,1,0,0,0,0,5,0,5,0,0,0,0),(1298,'2015-03-14 14:56:58','2015-10-11 16:46:38',1,30004252,17,85,308,149,195,334,161,179,155,7,18,24,62,93,19,12,11,70,7,35,174,152,36,333),(1299,'2015-03-14 14:56:58','2015-10-11 16:46:38',1,30004851,0,0,0,0,0,0,0,601,304,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(1300,'2015-03-14 14:56:58','2015-10-11 16:46:38',1,30001976,789,26,0,0,0,4,0,16,2,0,0,0,0,0,0,0,0,0,0,0,0,0,0,32),(1301,'2015-03-14 14:56:58','2015-10-11 16:46:38',1,30002498,70,0,0,0,96,40,0,10,78,11,8,7,9,0,0,0,0,24,0,0,0,15,4,102),(1302,'2015-03-14 14:56:58','2015-10-11 16:46:38',1,30005129,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,44,72,0,0,0,0,0,0,0),(1303,'2015-03-14 14:56:58','2015-10-11 16:46:38',1,30002048,313,64,211,174,308,329,91,363,102,83,94,248,200,79,158,170,124,363,88,103,97,195,102,256),(1304,'2015-03-14 14:56:58','2015-10-11 16:46:38',1,30005234,20,19,9,0,24,11,20,8,32,17,30,63,3,26,0,0,0,0,20,13,0,2,0,33),(1305,'2015-03-14 14:56:58','2015-10-11 16:46:38',1,30000110,0,1,90,0,15,30,0,0,9,2,1,0,10,0,0,0,24,9,0,2,0,1,0,10),(1306,'2015-03-14 14:56:58','2015-10-11 16:46:38',1,30003014,181,150,93,181,157,142,150,109,230,248,267,365,125,220,132,210,356,146,114,127,77,311,218,72),(1307,'2015-03-14 14:56:58','2015-10-11 16:46:38',1,30004138,32,54,16,39,34,47,16,0,10,0,0,0,3,17,0,21,107,3,32,0,0,0,0,51),(1308,'2015-03-14 14:56:58','2015-10-11 16:46:38',1,30000109,5,41,26,57,138,51,112,1,28,31,148,77,25,80,41,124,92,30,19,80,99,115,66,25),(1309,'2015-03-14 14:56:58','2015-10-11 16:46:38',1,30001885,0,0,29,49,0,0,44,0,22,0,5,0,29,31,0,0,15,34,176,123,99,87,52,4),(1310,'2015-03-14 14:56:58','2015-10-11 16:46:38',1,30004506,23,3,0,0,0,0,100,0,0,0,0,0,4,0,0,0,17,27,0,0,0,0,102,0),(1311,'2015-03-14 14:56:58','2015-03-14 14:56:58',1,30000355,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(1312,'2015-03-14 14:56:58','2015-10-11 16:46:38',1,30004427,0,0,0,0,0,0,0,0,0,0,0,0,0,124,0,0,0,53,0,0,0,0,117,40),(1313,'2015-03-14 14:56:58','2015-10-11 16:46:38',1,30002876,0,0,0,0,0,0,0,0,0,49,96,10,0,0,0,0,0,0,0,0,0,0,0,0),(1314,'2015-03-14 14:56:58','2015-10-11 16:46:38',1,30004417,353,0,95,0,0,0,0,0,0,0,0,0,0,0,103,135,34,0,0,0,0,0,0,0),(1315,'2015-03-14 14:56:58','2015-10-11 16:46:38',1,30005267,1859,1718,2158,2120,1620,1560,1659,1619,1458,2460,2659,2717,2400,2538,3356,3415,3438,3459,1319,1819,1877,2739,3579,3299),(1316,'2015-03-14 14:56:58','2015-10-11 16:46:38',1,30002282,76,103,114,131,143,88,195,85,46,308,297,216,245,76,273,185,169,174,199,336,342,439,167,332),(1317,'2015-03-14 14:56:58','2015-10-11 16:46:38',1,30004163,201,0,171,187,30,0,0,46,225,0,0,0,0,0,0,0,0,0,0,0,0,0,0,57),(1318,'2015-03-14 14:56:58','2015-10-11 16:46:38',1,30002252,81,63,125,79,95,94,137,185,0,5,69,66,15,90,93,98,9,3,71,14,74,140,73,48),(1319,'2015-03-14 14:56:58','2015-10-11 16:46:38',1,30003040,146,174,194,93,81,115,36,136,69,69,77,61,89,12,28,57,73,112,32,9,117,117,46,31),(1320,'2015-03-14 14:56:58','2015-10-11 16:46:38',1,30000115,0,11,0,0,2,2,1,9,0,3,0,0,0,34,0,0,0,13,0,0,27,0,0,6),(1321,'2015-03-14 14:56:58','2015-10-11 16:46:38',1,30003561,0,0,0,0,0,0,0,0,0,2,0,0,0,0,0,0,1,0,0,23,0,0,0,17),(1322,'2015-03-14 14:56:58','2015-10-11 16:46:38',1,30003555,9,62,24,10,46,108,7,0,33,160,35,35,88,132,88,72,44,46,0,12,10,1,52,81),(1323,'2015-03-14 14:56:58','2015-10-11 16:46:38',1,30004444,136,0,70,0,4,6,0,0,0,0,0,0,0,0,0,0,0,0,0,0,37,114,98,0),(1324,'2015-03-14 14:56:58','2015-03-14 14:56:58',1,30001469,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(1325,'2015-03-14 14:56:58','2015-10-11 16:46:38',1,30004422,12,0,0,0,0,0,0,0,6,0,0,0,0,131,0,0,0,151,0,0,0,0,0,200),(1326,'2015-03-14 14:56:58','2015-10-11 16:46:38',1,30003757,0,247,13,1,31,31,41,8,3,188,159,150,164,31,94,192,118,318,168,200,85,114,388,263),(1327,'2015-03-14 14:56:58','2015-10-11 16:46:38',1,30004333,214,4,357,340,252,148,13,297,370,58,0,0,0,51,53,53,0,29,0,0,0,0,105,84),(1328,'2015-03-14 14:56:58','2015-03-14 14:56:58',1,30001497,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(1329,'2015-03-14 14:56:58','2015-10-11 16:46:38',1,30003026,83,92,71,83,88,26,233,113,102,95,118,225,92,126,139,152,156,147,96,84,141,191,228,54),(1330,'2015-03-14 14:56:58','2015-10-11 16:46:38',1,30004420,0,0,126,0,0,0,0,0,0,144,1,0,0,0,0,0,0,0,0,0,0,0,11,33),(1331,'2015-03-14 14:56:58','2015-10-11 16:46:38',1,30000619,0,0,0,0,0,0,0,0,0,0,0,0,0,0,47,1,0,0,0,0,0,0,0,0),(1332,'2015-03-14 14:56:58','2015-03-14 14:56:58',1,30002843,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(1333,'2015-03-14 14:56:58','2015-10-11 16:46:38',1,30003327,0,17,0,41,36,105,0,7,40,63,110,57,35,104,90,100,113,0,0,44,90,67,97,35),(1334,'2015-03-14 14:56:58','2015-10-11 16:46:38',1,30004539,0,0,0,0,0,0,0,1,20,19,9,0,0,0,9,0,0,1,0,0,0,0,0,23),(1335,'2015-03-14 14:56:58','2015-10-11 16:46:38',1,30002438,0,6,0,4,0,0,0,0,0,39,0,0,0,0,0,0,0,0,0,28,0,0,52,138),(1336,'2015-03-14 14:56:58','2015-10-11 16:46:38',1,30002318,0,0,0,13,0,0,0,0,0,0,0,0,0,0,0,0,0,2,0,0,0,0,0,0),(1337,'2015-03-14 14:56:58','2015-10-11 16:46:38',1,30004545,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,81,126,64),(1338,'2015-03-14 14:56:58','2015-10-11 16:46:38',1,30002553,0,0,0,0,0,0,17,0,0,0,0,1,0,0,0,2,2,103,0,0,0,2,32,30),(1339,'2015-03-14 14:56:58','2015-10-11 16:46:38',1,30002649,251,86,5,57,13,10,187,140,1,171,77,27,42,122,84,105,59,130,120,93,86,75,83,159),(1340,'2015-03-14 14:56:58','2015-10-11 16:46:38',1,30003913,158,124,209,66,36,0,69,87,108,75,61,58,158,109,123,65,37,211,0,21,17,56,25,97),(1341,'2015-03-14 14:56:58','2015-10-11 16:46:38',1,30003397,260,190,166,60,117,120,144,52,65,322,165,116,46,323,178,126,114,85,165,110,294,256,313,213),(1342,'2015-03-14 14:56:58','2015-10-11 16:46:38',1,30002188,85,160,122,63,179,164,105,78,91,59,147,170,137,308,295,359,284,307,96,195,286,312,180,160),(1343,'2015-03-14 14:56:58','2015-10-11 16:46:38',1,30004106,1,4,9,0,50,1,38,75,0,0,0,0,2,0,6,13,27,0,0,12,32,0,3,1),(1344,'2015-03-14 14:56:58','2015-10-11 16:46:38',1,30002514,56,1,0,0,32,18,0,1,64,78,30,3,19,0,54,13,29,70,1,27,3,21,19,60),(1345,'2015-03-14 14:56:58','2015-10-11 16:46:38',1,30002387,0,0,1,68,0,0,28,0,21,26,0,0,0,0,2,10,11,0,0,1,0,0,0,12),(1346,'2015-03-14 14:56:58','2015-10-11 16:46:38',1,30002661,96,218,672,652,626,478,552,474,353,93,233,307,82,171,219,152,228,147,182,303,190,297,411,108),(1347,'2015-03-14 14:56:58','2015-10-11 16:46:38',1,30002238,0,0,0,0,0,24,0,0,0,0,0,2,731,607,624,853,945,548,0,84,345,613,406,348),(1348,'2015-03-14 14:56:58','2015-10-11 16:46:38',1,30002715,153,157,182,140,111,151,194,90,111,100,184,169,202,236,306,311,247,207,98,194,261,220,237,125),(1349,'2015-03-14 14:56:58','2015-10-11 16:46:38',1,30003574,90,136,69,164,150,81,260,108,203,53,64,40,220,115,139,23,10,152,110,26,142,108,128,1),(1350,'2015-03-14 14:56:58','2015-03-14 14:56:58',1,30000504,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(1351,'2015-03-14 14:56:58','2015-10-11 16:46:38',1,30001037,0,0,0,5,13,19,2,0,0,12,13,5,30,114,87,106,77,55,45,0,25,6,8,6),(1352,'2015-03-14 14:56:58','2015-10-11 16:46:38',1,30003230,0,48,0,138,0,0,89,0,84,0,0,0,0,1,0,0,0,0,0,0,60,0,0,0),(1353,'2015-03-14 14:56:58','2015-10-11 16:46:38',1,30000311,0,0,161,0,140,279,15,387,0,19,53,28,52,0,19,19,0,7,58,0,0,0,0,0),(1354,'2015-03-14 14:56:58','2015-10-11 16:46:38',1,30001235,0,67,18,0,0,0,44,159,154,19,22,17,26,0,72,25,0,86,0,49,10,27,43,133),(1355,'2015-03-14 14:56:58','2015-10-11 16:46:38',1,30002699,100,175,254,91,59,81,27,48,15,107,264,349,281,119,127,175,268,140,49,130,85,162,296,153),(1356,'2015-03-14 14:56:58','2015-10-11 16:46:38',1,30003789,19,5,2,10,15,11,57,20,30,14,0,1,20,33,47,44,41,9,12,56,83,14,64,1),(1357,'2015-03-14 14:56:58','2015-10-11 16:46:38',1,30003809,36,18,8,117,0,140,7,55,0,50,54,71,166,37,109,88,35,102,82,14,39,119,116,64),(1358,'2015-03-14 14:56:58','2015-10-11 16:46:38',1,30005034,0,2,8,48,0,3,13,0,0,0,0,0,0,36,22,0,1,122,0,21,51,71,89,0),(1359,'2015-03-14 14:56:58','2015-10-11 16:46:38',1,30002067,0,42,40,18,103,134,82,51,16,31,5,8,24,30,10,3,3,26,4,10,39,2,3,65),(1360,'2015-03-14 14:56:58','2015-03-14 14:56:58',1,30000986,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(1361,'2015-03-14 14:56:58','2015-10-11 16:46:38',1,30003375,39,45,130,9,0,25,121,88,50,100,186,57,50,1,130,141,173,52,15,18,0,131,69,0),(1362,'2015-03-14 14:56:58','2015-10-11 16:46:38',1,30002703,119,296,268,264,204,148,231,30,52,11,81,110,43,182,127,72,104,144,84,39,160,152,161,72),(1363,'2015-03-14 14:56:58','2015-10-11 16:46:38',1,30000643,0,0,0,0,0,0,0,0,0,0,0,3,28,0,0,0,0,0,0,0,0,0,0,0),(1364,'2015-03-14 14:56:58','2015-10-11 16:46:38',1,30004399,0,0,184,171,156,90,5,601,282,1700,1212,1470,1000,754,162,0,0,17,222,185,263,0,0,7),(1365,'2015-03-14 14:56:58','2015-10-11 16:46:38',1,30000081,18,41,27,5,83,52,16,0,20,10,13,21,36,32,18,17,15,60,13,5,111,31,50,67),(1366,'2015-03-14 14:56:58','2015-10-11 16:46:38',1,30003866,96,0,14,164,52,45,52,5,4,40,70,21,36,0,21,55,55,0,0,28,19,21,79,23),(1367,'2015-03-14 14:56:58','2015-10-11 16:46:38',1,30002577,0,0,9,119,0,0,11,0,27,0,3,39,41,0,0,0,0,31,0,0,0,27,0,75),(1368,'2015-03-14 14:56:58','2015-10-11 16:46:38',1,30004117,5,0,0,2,0,0,48,0,0,0,0,0,1,1,0,0,0,0,0,112,35,0,0,0),(1369,'2015-03-14 14:56:58','2015-10-11 16:46:38',1,30001245,0,0,0,0,0,0,0,28,45,269,150,100,109,784,536,577,706,472,533,307,528,664,480,323),(1370,'2015-03-14 14:56:58','2015-10-11 16:46:38',1,30001286,5,15,1,5,0,0,0,0,1,0,0,0,3,0,0,0,0,0,0,0,0,0,64,4),(1371,'2015-03-14 14:56:58','2015-10-11 16:46:38',1,30002828,0,0,0,0,0,0,0,0,115,0,0,0,0,0,0,0,0,73,0,0,0,0,0,0),(1372,'2015-03-14 14:56:58','2015-03-14 14:56:58',1,30004804,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(1373,'2015-03-14 14:56:58','2015-10-11 16:46:38',1,30002440,163,41,80,63,201,259,405,198,428,0,0,0,10,1,0,0,8,3,0,0,0,2,0,0),(1374,'2015-03-14 14:56:58','2015-10-11 16:46:38',1,30004371,130,0,0,6,0,0,0,40,0,180,262,411,15,131,144,201,379,272,183,303,91,170,497,668),(1375,'2015-03-14 14:56:58','2015-03-14 14:56:58',1,30001629,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(1376,'2015-03-14 14:56:58','2015-10-11 16:46:38',1,30004029,918,0,0,0,2,2,0,0,0,0,0,0,0,0,12,72,154,0,0,0,0,0,792,1798),(1377,'2015-03-14 14:56:58','2015-10-11 16:46:38',1,30003993,0,56,184,9,0,0,102,163,334,0,0,273,306,0,252,248,154,730,0,0,3,364,174,235),(1378,'2015-03-14 14:56:58','2015-10-11 16:46:38',1,30002305,0,1,0,0,0,0,0,11,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(1379,'2015-03-14 14:56:58','2015-10-11 16:46:38',1,30003138,599,273,525,222,405,415,619,177,200,0,0,0,0,5,75,0,0,0,0,0,0,0,0,140),(1380,'2015-03-14 14:56:58','2015-10-11 16:46:38',1,30003328,1,83,8,0,77,12,30,111,0,16,32,36,0,64,150,108,40,109,0,30,27,36,97,128),(1381,'2015-03-14 14:56:58','2015-03-14 14:56:58',1,30000925,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(1382,'2015-03-14 14:56:58','2015-10-11 16:46:38',1,30004562,0,0,55,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(1383,'2015-03-14 14:56:58','2015-10-11 16:46:38',1,30003121,370,450,354,69,236,126,29,305,285,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(1384,'2015-03-14 14:56:58','2015-10-11 16:46:38',1,30002882,0,0,68,0,0,0,0,5,0,0,0,0,0,0,5,1,0,3,0,0,0,1,0,5),(1385,'2015-03-14 14:56:58','2015-10-11 16:46:38',1,30004434,0,0,0,0,0,0,0,0,0,214,442,426,349,357,153,77,52,143,207,15,0,41,431,76),(1386,'2015-03-14 14:56:58','2015-10-11 16:46:38',1,30002375,66,0,0,0,0,0,0,0,0,0,0,0,0,3,5,5,0,0,0,0,0,0,0,0),(1387,'2015-03-14 14:56:58','2015-10-11 16:46:38',1,30004378,62,29,16,1,29,79,0,113,23,0,6,26,0,11,31,180,207,0,17,35,8,0,51,0),(1388,'2015-03-14 14:56:58','2015-10-11 16:46:38',1,30000550,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,32,103),(1389,'2015-03-14 14:56:58','2015-10-11 16:46:38',1,30000632,0,0,0,0,0,122,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(1390,'2015-03-14 14:56:58','2015-10-11 16:46:38',1,30003995,0,0,0,0,0,0,0,6,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(1391,'2015-03-14 14:56:58','2015-10-11 16:46:38',1,30003976,49,0,418,176,65,3,23,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(1392,'2015-03-14 14:56:58','2015-10-11 16:46:38',1,30001576,0,10,153,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(1393,'2015-03-14 14:56:58','2015-10-11 16:46:38',1,30004564,25,0,10,59,60,49,0,0,0,61,28,0,75,0,0,0,0,7,5,16,4,152,325,96),(1394,'2015-03-14 14:56:58','2015-10-11 16:46:38',1,30000278,250,80,412,242,304,572,329,250,139,0,0,0,0,0,0,0,0,0,0,83,50,0,0,0),(1395,'2015-03-14 14:56:58','2015-10-11 16:46:38',1,30004818,3,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(1396,'2015-03-14 14:56:58','2015-10-11 16:46:38',1,30004651,32,65,0,0,0,0,0,25,0,0,0,0,0,0,0,0,0,0,0,0,28,49,0,1),(1397,'2015-03-14 14:56:58','2015-10-11 16:46:38',1,30000302,997,90,432,956,583,368,0,117,341,158,124,27,257,37,250,213,183,1,305,108,266,367,320,54),(1398,'2015-03-14 14:56:58','2015-10-11 16:46:38',1,30001992,56,242,136,492,209,60,266,76,55,0,33,9,32,18,1,0,0,0,0,0,0,0,0,0),(1399,'2015-03-14 14:56:58','2015-10-11 16:46:38',1,30004319,156,37,100,42,174,189,18,0,229,0,0,0,0,0,0,0,0,0,24,70,0,89,0,0),(1400,'2015-03-14 14:56:58','2015-10-11 16:46:38',1,30000772,12,79,0,0,41,0,18,24,0,0,0,0,0,0,3,0,0,0,0,0,0,0,0,2),(1401,'2015-03-14 14:56:58','2015-10-11 16:46:38',1,30000273,126,77,1,0,99,93,305,0,0,3,5,38,77,82,0,0,0,0,0,0,0,16,0,0),(1402,'2015-03-14 14:56:58','2015-10-11 16:46:38',1,30001085,248,0,132,236,82,0,33,6,12,0,0,31,127,0,111,21,0,0,0,0,0,0,0,0),(1403,'2015-03-14 14:56:58','2015-10-11 16:46:38',1,30004372,0,65,42,8,0,0,19,0,211,43,199,163,20,560,755,591,205,170,331,1232,1172,793,351,935),(1404,'2015-03-14 14:56:58','2015-10-11 16:46:38',1,30004365,151,164,331,576,1220,946,267,546,638,455,727,855,674,627,369,490,755,759,444,344,255,250,682,867),(1405,'2015-03-14 14:56:58','2015-10-11 16:46:38',1,30000567,227,75,0,73,0,0,120,14,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(1406,'2015-03-14 14:56:58','2015-10-11 16:46:38',1,30004600,0,100,0,0,0,0,0,0,19,0,0,0,0,0,0,0,0,0,0,0,0,0,0,30),(1407,'2015-03-14 14:56:58','2015-10-11 16:46:38',1,30001124,66,60,77,61,95,160,23,138,69,212,0,4,0,0,0,0,0,0,377,700,569,0,0,55),(1408,'2015-03-14 14:56:58','2015-10-11 16:46:38',1,30003692,4,0,11,34,16,97,137,37,147,201,130,41,0,138,4,0,0,20,0,70,1,0,0,0),(1409,'2015-03-14 14:56:58','2015-10-11 16:46:38',1,30003169,250,0,50,81,1136,935,140,146,845,103,153,167,105,3,0,170,328,181,248,36,119,36,208,343),(1410,'2015-03-14 14:56:58','2015-10-11 16:46:38',1,30002367,201,174,357,191,254,120,284,221,307,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(1411,'2015-03-14 14:56:58','2015-10-11 16:46:38',1,30004380,939,1,0,0,28,45,187,6,21,38,133,0,0,0,0,0,34,21,28,0,259,29,0,23),(1412,'2015-03-14 14:56:58','2015-10-11 16:46:38',1,30003113,0,0,0,0,0,0,0,5,0,0,0,0,0,0,0,0,0,46,2,0,0,0,0,0),(1413,'2015-03-14 14:56:58','2015-10-11 16:46:38',1,30004889,14,37,112,3,54,54,22,0,8,32,11,0,0,0,0,0,0,0,0,0,34,0,0,0),(1414,'2015-03-14 14:56:58','2015-10-11 16:46:38',1,30003670,155,35,24,43,30,0,0,0,69,0,0,0,0,0,0,0,0,0,0,0,0,127,0,0),(1415,'2015-03-14 14:56:58','2015-03-14 14:56:58',1,30000568,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(1416,'2015-03-14 14:56:58','2015-10-11 16:46:38',1,30004493,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0),(1417,'2015-03-14 14:56:58','2015-10-11 16:46:38',1,30003780,321,10,156,159,60,110,251,74,98,106,376,496,646,270,143,169,145,220,0,0,0,181,504,53),(1418,'2015-03-14 14:56:58','2015-10-11 16:46:38',1,30000821,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,13,59),(1419,'2015-03-14 14:56:58','2015-10-11 16:46:38',1,30004597,0,9,129,98,101,146,73,0,0,0,0,0,0,0,135,80,0,0,0,0,0,65,51,156),(1420,'2015-03-14 14:56:58','2015-10-11 16:46:38',1,30004191,0,275,954,677,344,319,314,0,0,0,0,0,0,0,0,0,0,0,0,0,0,80,0,0),(1421,'2015-03-14 14:56:58','2015-10-11 16:46:38',1,30001355,0,0,0,0,0,0,0,0,0,0,0,0,0,0,55,39,0,0,104,16,0,0,0,0),(1422,'2015-03-14 14:56:58','2015-10-11 16:46:38',1,30000863,0,4,85,0,0,0,3,0,30,0,0,0,0,6,0,5,5,0,0,0,0,0,0,92),(1423,'2015-03-14 14:56:58','2015-10-11 16:46:38',1,30004824,0,0,0,5,5,5,6,0,32,112,73,81,63,58,14,152,274,297,13,107,18,0,105,216),(1424,'2015-03-14 14:56:58','2015-10-11 16:46:38',1,30005190,12,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(1425,'2015-03-14 14:56:58','2015-10-11 16:46:38',1,30002858,0,0,70,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(1426,'2015-03-14 14:56:58','2015-10-11 16:46:38',1,30004798,0,121,52,0,0,0,0,111,41,0,0,210,432,128,423,405,640,282,0,0,25,52,9,117),(1427,'2015-03-14 14:56:58','2015-10-11 16:46:38',1,30003697,497,0,34,0,0,0,137,227,195,39,0,7,48,53,47,78,76,67,310,0,0,94,104,164),(1428,'2015-03-14 14:56:58','2015-10-11 16:46:38',1,30000446,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,16),(1429,'2015-03-14 14:56:58','2015-03-14 14:56:58',1,30001533,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(1430,'2015-03-14 14:56:58','2015-03-14 14:56:58',1,30005122,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(1431,'2015-03-14 14:56:58','2015-10-11 16:46:38',1,30004791,9,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(1432,'2015-03-14 14:56:58','2015-10-11 16:46:38',1,30002915,0,60,124,167,166,184,0,0,0,187,677,619,254,172,173,173,251,126,0,0,63,135,137,1),(1433,'2015-03-14 14:56:58','2015-10-11 16:46:38',1,30000700,0,0,0,30,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(1434,'2015-03-14 14:56:58','2015-10-11 16:46:38',1,30003676,0,0,128,3,0,0,0,0,4,1,0,0,2,0,5,0,0,0,1,5,61,0,0,2),(1435,'2015-03-14 14:56:58','2015-10-11 16:46:38',1,30000743,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,72,0,0,0),(1436,'2015-03-14 14:56:58','2015-10-11 16:46:38',1,30000892,167,0,0,0,0,0,323,41,170,265,518,333,397,370,0,0,0,10,0,146,202,469,559,206),(1437,'2015-03-14 14:56:58','2015-10-11 16:46:38',1,30003109,0,5,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,44,0),(1438,'2015-03-14 14:56:58','2015-03-14 14:56:58',1,30002315,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(1439,'2015-03-14 14:56:58','2015-10-11 16:46:38',1,30003934,0,0,46,28,12,9,0,14,0,26,0,0,0,0,0,0,0,0,0,0,0,0,7,0),(1440,'2015-03-14 14:56:58','2015-10-11 16:46:38',1,30003569,1,12,0,42,10,25,17,0,0,22,0,17,0,17,26,105,130,8,13,66,21,38,8,107),(1441,'2015-03-14 14:56:58','2015-10-11 16:46:38',1,30002207,2,59,65,2,85,83,17,98,6,20,17,143,56,29,16,21,13,28,24,2,45,68,23,36),(1442,'2015-03-14 14:56:58','2015-10-11 16:46:38',1,30000049,61,32,3,0,2,19,47,39,25,150,66,16,6,0,2,1,0,79,0,0,8,9,0,31),(1443,'2015-03-14 14:56:58','2015-10-11 16:46:38',1,30005287,67,0,0,0,0,0,0,9,0,0,0,0,0,0,0,0,0,80,36,12,0,0,0,0),(1444,'2015-03-14 14:56:58','2015-10-11 16:46:38',1,30002735,232,313,412,247,335,217,158,244,341,255,491,646,419,871,747,817,688,437,362,617,613,872,508,240),(1445,'2015-03-14 14:56:58','2015-10-11 16:46:38',1,30003048,230,175,41,225,207,59,155,30,296,65,177,92,126,169,163,93,83,267,71,148,79,73,389,186),(1446,'2015-03-14 14:56:58','2015-10-11 16:46:38',1,30002645,2,12,39,19,0,5,0,2,2,57,121,1,0,0,23,0,0,0,1,1,2,0,0,38),(1447,'2015-03-14 14:56:58','2015-10-11 16:46:38',1,30004973,176,76,96,79,198,187,115,165,149,40,129,191,148,33,203,245,370,139,115,104,100,45,138,149),(1448,'2015-03-14 14:56:58','2015-10-11 16:46:38',1,30005026,98,218,146,212,330,435,333,109,306,164,519,368,242,461,146,132,73,76,168,127,178,197,244,247),(1449,'2015-03-14 14:56:58','2015-10-11 16:46:38',1,30001205,0,1,0,0,0,0,0,0,163,0,0,0,0,0,0,0,4,0,0,0,0,0,0,0),(1450,'2015-03-14 14:56:58','2015-10-11 16:46:38',1,30001895,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,24,0),(1451,'2015-03-14 14:56:58','2015-10-11 16:46:38',1,30001206,29,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(1452,'2015-03-14 14:56:58','2015-10-11 16:46:38',1,30004180,0,0,0,0,2,84,0,0,0,103,6,3,191,7,51,22,21,162,0,44,320,101,9,4),(1453,'2015-03-14 14:56:58','2015-10-11 16:46:38',1,30004841,0,0,0,0,0,0,0,0,0,0,0,0,0,0,88,106,45,0,0,0,0,0,0,0),(1454,'2015-03-14 14:56:58','2015-10-11 16:46:38',1,30002906,187,0,278,73,83,100,16,0,41,0,5,52,83,96,6,145,605,536,214,76,2,177,124,217),(1455,'2015-03-14 14:56:58','2015-10-11 16:46:38',1,30005283,0,0,0,0,0,8,10,14,0,0,9,10,0,78,0,0,9,0,46,62,9,0,0,1),(1456,'2015-03-14 14:56:58','2015-03-14 14:56:58',1,30004407,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(1457,'2015-03-14 14:56:58','2015-10-11 16:46:38',1,30002483,400,0,0,33,153,114,0,0,12,0,0,0,0,0,0,0,0,0,0,0,0,13,0,0),(1458,'2015-03-14 14:56:58','2015-10-11 16:46:38',1,30004401,32,76,45,25,170,100,26,0,282,226,213,269,62,7,0,30,83,9,133,339,127,0,0,5),(1459,'2015-03-14 14:56:58','2015-10-11 16:46:38',1,30004601,201,293,393,743,392,1252,863,8,394,0,0,0,0,0,0,0,78,313,0,13,124,413,366,153),(1460,'2015-03-14 14:56:58','2015-10-11 16:46:38',1,30002688,27,0,1,0,208,205,0,34,44,32,22,97,61,0,20,0,38,35,0,16,60,41,8,33),(1461,'2015-03-14 14:56:58','2015-10-11 16:46:38',1,30035042,176,41,189,13,84,69,109,128,34,338,173,110,89,138,282,274,151,75,195,292,24,6,16,202),(1462,'2015-03-14 14:56:58','2015-10-11 16:46:38',1,30003905,0,0,3,0,1,0,0,0,30,17,67,1,0,0,0,0,0,0,0,0,0,0,0,0),(1463,'2015-03-14 14:56:58','2015-10-11 16:46:38',1,30005228,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,50,0,1,0,0),(1464,'2015-03-14 14:56:58','2015-10-11 16:46:38',1,30001664,0,0,0,67,0,9,9,13,24,0,0,0,0,34,42,42,0,9,126,9,0,0,22,12),(1465,'2015-03-14 14:56:58','2015-10-11 16:46:38',1,30004108,0,1,1,0,0,0,9,0,77,0,0,18,44,2,8,8,13,9,0,0,0,20,22,42),(1466,'2015-03-14 14:56:58','2015-10-11 16:46:38',1,30025305,38,12,53,3,42,31,127,82,78,110,73,86,8,36,159,224,233,75,57,73,93,64,72,79),(1467,'2015-03-14 14:56:58','2015-10-11 16:46:38',1,30004122,80,142,260,39,67,26,25,70,292,129,316,350,332,266,295,408,581,303,55,266,280,333,297,191),(1468,'2015-03-14 14:56:58','2015-10-11 16:46:38',1,30005331,85,256,512,260,164,150,27,53,82,112,90,116,51,31,102,248,330,154,14,31,66,169,0,62),(1469,'2015-03-14 14:56:58','2015-10-11 16:46:38',1,30003834,0,18,20,144,14,52,0,0,4,0,0,0,0,0,26,0,0,3,20,8,23,78,0,1),(1470,'2015-03-14 14:56:58','2015-10-11 16:46:38',1,30004976,135,217,212,214,59,177,89,284,200,104,149,147,169,187,332,268,289,117,146,57,63,104,210,237),(1471,'2015-03-14 14:56:58','2015-10-11 16:46:38',1,30002224,180,128,13,177,50,66,639,20,47,179,219,115,87,166,183,190,142,165,140,154,152,211,142,45),(1472,'2015-03-14 14:56:58','2015-10-11 16:46:38',1,30003489,763,679,1195,644,874,776,379,355,441,521,695,836,494,583,624,530,560,1038,677,528,764,866,769,827),(1473,'2015-03-14 14:56:58','2015-10-11 16:46:38',1,30005237,0,66,0,12,0,0,0,9,0,0,0,0,0,0,26,0,0,0,0,0,0,0,0,0),(1474,'2015-03-14 14:56:58','2015-10-11 16:46:38',1,30002667,36,49,49,68,218,103,23,147,104,64,147,80,60,127,106,118,206,81,95,79,147,62,91,74),(1475,'2015-03-14 14:56:58','2015-10-11 16:46:38',1,30003529,80,28,39,78,46,53,8,53,28,15,86,89,110,13,25,25,49,84,27,29,61,61,101,88),(1476,'2015-03-14 14:56:58','2015-10-11 16:46:38',1,30003019,14,112,59,18,20,25,63,51,53,127,32,87,38,161,57,55,35,110,62,33,48,99,69,48),(1477,'2015-03-14 14:56:58','2015-10-11 16:46:38',1,30005327,32,121,174,163,65,41,135,2,62,58,21,21,105,56,62,178,143,138,96,77,151,101,199,122),(1478,'2015-03-14 14:56:58','2015-10-11 16:46:38',1,30003527,7,0,0,62,40,0,64,0,7,38,0,0,26,10,0,31,32,47,15,0,6,95,60,28),(1479,'2015-03-14 14:56:58','2015-10-11 16:46:38',1,30004250,19,107,58,34,159,219,79,108,97,0,0,223,97,308,105,20,9,56,91,73,81,61,236,266),(1480,'2015-03-14 14:56:58','2015-10-11 16:46:38',1,30000010,5,84,5,78,41,5,42,3,0,3,2,1,168,6,26,37,32,0,7,5,0,0,0,26),(1481,'2015-03-14 14:56:58','2015-10-11 16:46:38',1,30005253,2,78,39,40,21,22,28,106,1,174,683,475,50,86,81,33,30,35,35,53,70,44,41,157),(1482,'2015-03-14 14:56:58','2015-10-11 16:46:38',1,30003925,0,39,0,34,27,28,0,10,23,0,8,0,25,0,72,58,7,0,5,0,0,10,27,15),(1483,'2015-03-14 14:56:58','2015-10-11 16:46:38',1,30005051,162,85,370,299,106,9,152,121,175,104,185,138,84,266,61,155,157,174,114,204,381,239,214,143),(1484,'2015-03-14 14:56:58','2015-10-11 16:46:38',1,30002965,0,1,13,3,35,31,24,42,5,19,28,39,21,38,6,27,24,8,0,6,6,34,5,8),(1485,'2015-03-14 14:56:58','2015-10-11 16:46:38',1,30004210,0,27,251,527,154,1,1080,0,197,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(1486,'2015-03-14 14:56:58','2015-10-11 16:46:38',1,30000951,0,0,0,0,0,0,0,0,0,0,0,0,0,0,4,83,83,0,0,0,0,0,0,0),(1487,'2015-03-14 14:56:58','2015-10-11 16:46:38',1,30003363,0,2,0,92,84,11,0,0,7,0,97,131,0,0,0,0,0,0,0,0,0,0,0,0),(1488,'2015-03-14 14:56:58','2015-10-11 16:46:38',1,30005305,204,174,242,71,113,159,199,166,150,171,108,182,77,275,143,135,292,140,68,123,103,145,164,154),(1489,'2015-03-14 14:56:58','2015-10-11 16:46:38',1,30001926,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,12,45),(1490,'2015-03-14 14:56:58','2015-10-11 16:46:38',1,30002127,0,0,0,0,0,0,0,0,118,166,165,5,0,236,760,511,112,79,113,99,112,46,16,76),(1491,'2015-03-14 14:56:58','2015-10-11 16:46:38',1,30002170,0,0,202,17,0,0,40,154,0,219,86,49,55,105,55,36,41,52,0,0,0,104,35,0),(1492,'2015-03-14 14:56:58','2015-10-11 16:46:38',1,30001042,27,0,3,3,22,18,0,0,0,3,5,2,6,5,11,7,4,22,81,31,52,5,23,3),(1493,'2015-03-14 14:56:58','2015-10-11 16:46:38',1,30001025,0,0,54,11,0,0,1,0,0,9,8,13,8,15,9,9,4,0,9,5,0,0,27,6),(1494,'2015-03-14 14:56:58','2015-10-11 16:46:38',1,30004565,0,0,78,93,53,0,0,0,0,0,0,0,0,8,115,111,119,0,0,0,0,0,0,32),(1495,'2015-03-14 14:56:58','2015-10-11 16:46:38',1,30002362,0,5,0,3,7,6,0,0,4,4,6,3,70,7,0,0,0,5,4,70,0,0,0,0),(1496,'2015-03-14 14:56:58','2015-10-11 16:46:38',1,30004458,605,684,0,643,0,0,656,0,81,0,0,0,0,0,0,0,0,0,5,119,51,0,0,0),(1497,'2015-03-14 14:56:58','2015-10-11 16:46:38',1,30001981,1,1,1,0,0,8,0,145,42,0,0,0,0,0,1,1,11,13,0,6,2,8,0,36),(1498,'2015-03-14 14:56:58','2015-10-11 16:46:38',1,30035305,60,93,122,139,85,63,166,66,107,171,200,298,112,248,165,97,100,170,99,118,140,203,55,191),(1499,'2015-03-14 14:56:58','2015-10-11 16:46:38',1,30003896,0,0,0,3,94,41,0,0,0,0,9,9,29,5,0,4,4,0,0,0,0,17,0,0),(1500,'2015-03-14 14:56:58','2015-10-11 16:46:38',1,30002275,91,246,101,28,0,0,14,2,12,89,90,0,58,118,16,18,14,42,0,47,79,20,17,166),(1501,'2015-03-14 14:56:58','2015-10-11 16:46:38',1,30005324,153,370,453,281,338,232,290,51,82,166,252,198,158,462,632,595,548,209,165,383,397,277,337,314),(1502,'2015-03-14 14:56:58','2015-10-11 16:46:38',1,30002708,0,32,63,158,66,67,8,102,123,143,56,141,100,181,21,18,66,116,52,59,162,21,30,70),(1503,'2015-03-14 14:56:58','2015-03-14 14:56:58',1,30001616,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(1504,'2015-03-14 14:56:58','2015-10-11 16:46:38',1,30045305,691,536,513,648,691,408,659,390,345,730,1008,963,853,936,791,749,808,854,579,510,542,621,986,488),(1505,'2015-03-14 14:56:58','2015-10-11 16:46:38',1,30005194,80,192,223,179,144,93,68,28,17,50,95,212,133,72,162,186,180,160,21,2,167,36,73,80),(1506,'2015-03-14 14:56:58','2015-10-11 16:46:38',1,30005023,30,59,74,94,208,88,40,70,1,72,14,33,7,6,7,59,325,295,19,163,3,1,128,4),(1507,'2015-03-14 14:56:58','2015-03-14 14:56:58',1,30001100,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(1508,'2015-03-14 14:56:58','2015-10-11 16:46:38',1,30001254,0,0,0,6,0,0,101,0,0,55,146,156,55,230,177,133,23,0,261,317,171,66,130,0),(1509,'2015-03-14 14:56:58','2015-10-11 16:46:38',1,30001825,0,65,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(1510,'2015-03-14 14:56:58','2015-10-11 16:46:38',1,30004887,0,0,0,0,59,106,0,0,0,50,0,0,0,0,46,17,0,0,81,0,44,0,0,0),(1511,'2015-03-14 14:56:58','2015-10-11 16:46:38',1,30003904,146,230,413,5,177,154,174,0,0,29,0,0,14,18,0,0,0,50,0,82,241,4,18,99),(1512,'2015-03-14 14:56:58','2015-10-11 16:46:38',1,30003041,3,31,77,39,114,52,38,114,73,81,19,65,7,93,95,49,7,4,17,68,87,200,7,8),(1513,'2015-03-14 14:56:58','2015-10-11 16:46:38',1,30002682,166,242,154,150,114,91,122,150,41,148,136,155,95,197,234,233,282,207,105,164,117,304,207,167),(1514,'2015-03-14 14:56:58','2015-10-11 16:46:38',1,30045042,232,152,277,292,171,235,185,156,345,114,167,145,230,310,319,329,263,329,205,209,265,305,259,191),(1515,'2015-03-14 14:56:58','2015-10-11 16:46:38',1,30003565,0,0,0,0,108,107,0,122,0,0,31,43,0,0,0,22,23,0,52,2,0,0,39,46),(1516,'2015-03-14 14:56:58','2015-10-11 16:46:38',1,30005298,16,60,8,1,7,12,1,29,52,3,16,22,23,5,18,6,6,11,0,80,3,0,44,9),(1517,'2015-03-14 14:56:58','2015-10-11 16:46:38',1,30014971,644,717,1037,832,711,652,686,385,610,1123,1091,1289,955,1046,954,1075,1107,1121,535,802,885,1053,1189,830),(1518,'2015-03-14 14:56:58','2015-10-11 16:46:38',1,30003795,21,38,86,36,0,0,3,7,4,0,21,3,6,4,0,0,0,69,1,6,4,12,0,30),(1519,'2015-03-14 14:56:58','2015-10-11 16:46:38',1,30003123,0,17,27,0,0,0,0,0,0,0,0,0,14,0,0,0,26,491,369,431,0,0,100,401),(1520,'2015-03-14 14:56:58','2015-10-11 16:46:38',1,30002003,0,46,78,72,71,39,204,7,50,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(1521,'2015-03-14 14:56:58','2015-10-11 16:46:38',1,30003678,0,32,0,9,69,0,44,0,0,55,137,0,0,1,0,0,0,174,0,104,0,64,62,3),(1522,'2015-03-14 14:56:58','2015-10-11 16:46:38',1,30000845,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,21,0),(1523,'2015-03-14 14:56:58','2015-10-11 16:46:38',1,30002691,3,26,0,1,2,2,0,1,0,49,0,2,3,15,6,6,4,2,0,3,0,7,0,5),(1524,'2015-03-14 14:56:58','2015-10-11 16:46:38',1,30002705,75,97,141,22,198,209,100,190,47,46,20,57,37,104,57,19,79,82,90,51,135,60,25,143),(1525,'2015-03-14 14:56:58','2015-10-11 16:46:38',1,30000923,0,0,0,0,0,0,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(1526,'2015-03-14 14:56:58','2015-10-11 16:46:38',1,30004357,136,119,1,0,137,0,46,1,0,194,420,457,180,74,1,155,218,0,292,0,35,0,27,39),(1527,'2015-03-14 14:56:58','2015-10-11 16:46:38',1,30001275,112,117,213,9,10,12,67,20,82,1,27,46,5,13,68,12,46,32,20,29,13,14,83,174),(1528,'2015-03-14 14:56:58','2015-10-11 16:46:38',1,30004530,128,0,3,0,0,0,0,0,0,53,87,5,20,8,14,5,7,3,3,22,32,0,0,0),(1529,'2015-03-14 14:56:58','2015-10-11 16:46:38',1,30002373,4,40,0,0,4,0,0,0,0,0,0,0,0,5,4,8,8,0,0,0,0,0,0,0),(1530,'2015-03-14 14:56:58','2015-10-11 16:46:38',1,30002896,0,43,0,0,77,178,0,426,289,69,71,28,0,0,0,0,0,731,344,0,33,169,75,325),(1531,'2015-03-14 14:56:58','2015-10-11 16:46:38',1,30003802,46,19,43,20,20,5,22,48,69,0,0,0,150,0,10,10,0,0,0,0,15,16,7,24),(1532,'2015-03-14 14:56:58','2015-10-11 16:46:38',1,30004200,92,6,0,2,0,0,0,0,0,0,67,132,28,93,82,0,0,0,0,0,1,0,0,0),(1533,'2015-03-14 14:56:58','2015-10-11 16:46:38',1,30001034,0,1,0,3,0,1,27,0,0,26,0,0,0,24,0,0,8,0,0,83,41,1,0,41),(1534,'2015-03-14 14:56:58','2015-03-14 14:56:58',1,30001472,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(1535,'2015-03-14 14:56:58','2015-10-11 16:46:38',1,30004939,0,0,0,20,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,132,132,0,0,0),(1536,'2015-03-14 14:56:58','2015-10-11 16:46:38',1,30004335,0,24,90,111,0,0,41,0,0,0,111,64,0,0,0,0,0,0,0,0,66,0,0,0),(1537,'2015-03-14 14:56:58','2015-03-14 14:56:58',1,30001224,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(1538,'2015-03-14 14:56:58','2015-10-11 16:46:38',1,30004072,106,109,17,4,110,110,0,135,169,130,107,84,122,13,62,164,224,4,229,7,104,227,227,4),(1539,'2015-03-14 14:56:58','2015-10-11 16:46:38',1,30004799,0,0,8,49,0,0,0,0,0,0,0,34,375,41,0,119,185,0,0,0,0,0,0,0),(1540,'2015-03-14 14:56:58','2015-10-11 16:46:38',1,30001979,80,0,72,184,164,95,0,181,115,12,62,89,16,15,73,17,36,63,16,35,7,65,33,63),(1541,'2015-03-14 14:56:58','2015-10-11 16:46:38',1,30003371,199,0,0,0,0,126,21,34,0,20,99,75,0,1,0,0,0,0,5,0,0,0,0,0),(1542,'2015-03-14 14:56:58','2015-03-14 14:56:58',1,30002312,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(1543,'2015-03-14 14:56:58','2015-03-14 14:56:58',1,30001496,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(1544,'2015-03-14 14:56:58','2015-10-11 16:46:38',1,30003134,0,0,24,0,0,0,0,0,0,0,0,0,0,0,0,0,58,0,0,0,0,0,0,0),(1545,'2015-03-14 14:56:58','2015-10-11 16:46:38',1,30002953,1021,319,92,315,43,159,1014,1560,108,708,956,995,968,414,1284,1574,1605,696,357,571,866,1266,1007,1064),(1546,'2015-03-14 14:56:58','2015-10-11 16:46:38',1,30001253,0,51,0,0,0,0,0,59,42,0,0,0,0,0,110,73,24,0,0,0,0,6,5,74),(1547,'2015-03-14 14:56:58','2015-10-11 16:46:38',1,30000461,0,0,0,0,0,0,0,0,0,0,0,0,0,172,1,0,0,0,0,0,0,0,0,0),(1548,'2015-03-14 14:56:58','2015-10-11 16:46:38',1,30004750,0,0,0,0,0,0,0,0,0,0,0,0,0,27,0,0,0,0,0,0,0,3,6,0),(1549,'2015-03-14 14:56:58','2015-10-11 16:46:38',1,30000613,23,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(1550,'2015-03-14 14:56:58','2015-10-11 16:46:38',1,30002838,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,68),(1551,'2015-03-14 14:56:58','2015-10-11 16:46:38',1,30003727,153,516,27,195,122,57,191,413,8,240,90,209,106,237,282,250,208,157,0,19,138,66,126,280),(1552,'2015-03-14 14:56:58','2015-10-11 16:46:38',1,30001272,54,50,14,2,9,10,17,16,17,1,26,26,3,8,5,4,1,3,0,0,24,0,6,2),(1553,'2015-03-14 14:56:58','2015-10-11 16:46:38',1,30004813,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,94,0,0,0,0,0,0),(1554,'2015-03-14 14:56:58','2015-10-11 16:46:38',1,30003358,0,0,0,0,0,0,0,0,0,0,0,0,0,21,0,23,60,0,0,0,0,0,0,0),(1555,'2015-03-14 14:56:58','2015-10-11 16:46:38',1,30002149,0,0,0,0,0,0,0,0,222,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(1556,'2015-03-14 14:56:58','2015-03-14 14:56:58',1,30002304,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(1557,'2015-03-14 14:56:58','2015-10-11 16:46:38',1,30003115,153,452,763,1162,235,227,220,991,48,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(1558,'2015-03-14 14:56:58','2015-10-11 16:46:38',1,30003709,0,0,9,6,0,0,0,0,0,0,0,0,0,24,1,1,0,2,0,1,96,0,0,0),(1559,'2015-03-14 14:56:58','2015-10-11 16:46:38',1,30002481,185,229,1,0,154,285,39,378,190,294,465,495,326,455,124,33,105,451,682,596,93,0,170,361),(1560,'2015-03-14 14:56:58','2015-10-11 16:46:38',1,30002347,617,18,365,288,460,367,588,33,312,541,544,196,0,426,16,17,76,114,282,256,213,69,6,175),(1561,'2015-03-14 14:56:58','2015-10-11 16:46:38',1,30001761,16,35,0,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(1562,'2015-03-14 14:56:58','2015-10-11 16:46:38',1,30002626,152,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(1563,'2015-03-14 14:56:58','2015-03-14 14:56:58',1,30002366,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(1564,'2015-03-14 14:56:58','2015-10-11 16:46:38',1,30000826,292,353,106,362,115,111,403,57,0,17,0,0,0,41,204,388,320,117,0,0,0,0,123,427),(1565,'2015-03-14 14:56:58','2015-03-14 14:56:58',1,30000340,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(1566,'2015-03-14 14:56:58','2015-10-11 16:46:38',1,30003135,1008,151,34,0,58,9,16,74,74,0,0,0,0,0,0,65,137,0,0,0,0,0,0,0),(1567,'2015-03-14 14:56:58','2015-10-11 16:46:38',1,30004622,28,3,5,5,0,0,34,0,0,0,11,35,0,0,34,67,40,31,0,36,104,32,0,33),(1568,'2015-03-14 14:56:58','2015-03-14 14:56:58',1,30005125,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(1569,'2015-03-14 14:56:58','2015-10-11 16:46:38',1,30001299,0,25,1,12,3,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(1570,'2015-03-14 14:56:58','2015-10-11 16:46:38',1,30004730,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,31,3),(1571,'2015-03-14 14:56:58','2015-10-11 16:46:38',1,30002430,32,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,85,25,82,0,0,1),(1572,'2015-03-14 14:56:58','2015-10-11 16:46:38',1,30002036,5,0,119,42,11,0,0,0,0,0,0,0,85,0,0,0,0,0,0,0,0,0,0,0),(1573,'2015-03-14 14:56:58','2015-10-11 16:46:38',1,30004588,177,0,47,380,206,74,139,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(1574,'2015-03-14 14:56:58','2015-10-11 16:46:38',1,30004902,114,14,103,0,100,108,370,377,583,267,562,337,131,5,95,210,482,1000,365,227,0,0,192,138),(1575,'2015-03-14 14:56:58','2015-03-14 14:56:58',1,30002295,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(1576,'2015-03-14 14:56:58','2015-10-11 16:46:38',1,30004491,57,133,133,0,153,144,100,469,0,37,0,59,241,5,187,75,211,230,341,142,103,649,553,325),(1577,'2015-03-14 14:56:58','2015-10-11 16:46:38',1,30004626,0,0,0,0,0,0,0,83,0,0,0,0,0,0,0,0,0,0,35,81,0,0,0,0),(1578,'2015-03-14 14:56:58','2015-10-11 16:46:38',1,30004386,295,131,10,966,37,0,253,1400,130,97,285,345,331,513,553,202,12,262,632,1260,530,393,556,1217),(1579,'2015-03-14 14:56:58','2015-10-11 16:46:38',1,30004502,0,9,9,8,0,0,6,1,0,0,7,16,1,0,3,0,0,0,0,5,5,0,5,26),(1580,'2015-03-14 14:56:58','2015-10-11 16:46:38',1,30003724,0,26,0,0,0,0,0,59,0,0,0,0,0,258,0,12,12,0,0,0,0,8,0,12),(1581,'2015-03-14 14:56:58','2015-10-11 16:46:38',1,30004480,0,112,3,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(1582,'2015-03-14 14:56:58','2015-10-11 16:46:38',1,30000867,8,0,2,8,0,0,0,0,53,0,8,101,0,91,0,0,4,0,3,0,0,4,47,0),(1583,'2015-03-14 14:56:58','2015-10-11 16:46:38',1,30001968,2,0,0,0,0,0,0,14,5,1,2,2,1,0,4,5,2,1,1,0,6,4,2,6),(1584,'2015-03-14 14:56:58','2015-10-11 16:46:38',1,30003345,0,0,0,0,10,0,0,20,0,43,28,86,36,0,18,0,6,38,3,0,4,0,16,72),(1585,'2015-03-14 14:56:58','2015-10-11 16:46:38',1,30001010,0,0,2,0,45,43,0,0,0,0,0,0,0,0,0,0,0,21,0,1,0,0,0,48),(1586,'2015-03-14 14:56:58','2015-03-14 14:56:58',1,30000327,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(1587,'2015-03-14 14:56:58','2015-10-11 16:46:38',1,30001881,0,5,4,0,0,0,0,0,0,3,30,0,32,224,24,14,0,3,19,32,4,7,0,0),(1588,'2015-03-14 14:56:58','2015-03-14 14:56:58',1,30004222,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(1589,'2015-03-14 14:56:58','2015-10-11 16:46:38',1,30001660,121,76,239,169,118,87,85,67,24,320,437,416,270,307,419,737,457,681,171,396,330,478,515,631),(1590,'2015-03-14 14:56:58','2015-10-11 16:46:38',1,30001921,0,21,45,19,0,0,71,31,0,5,48,6,0,10,1,6,6,41,0,0,23,250,120,125),(1591,'2015-03-14 14:56:58','2015-03-14 14:56:58',1,30001083,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(1592,'2015-03-14 14:56:58','2015-10-11 16:46:38',1,30002233,43,27,0,10,83,33,87,2,0,10,19,15,90,12,61,58,30,3,75,97,26,33,38,69),(1593,'2015-03-14 14:56:58','2015-10-11 16:46:38',1,30002541,22,0,63,8,3,0,0,0,0,49,19,14,8,22,42,32,12,25,12,32,7,10,21,13),(1594,'2015-03-14 14:56:58','2015-10-11 16:46:38',1,30002513,132,310,215,127,141,159,47,217,78,80,171,136,132,60,186,187,187,154,37,249,76,77,226,217),(1595,'2015-03-14 14:56:58','2015-10-11 16:46:38',1,30003912,252,115,13,49,21,14,294,13,31,109,196,75,46,78,139,130,83,134,23,94,115,50,85,50),(1596,'2015-03-14 14:56:58','2015-10-11 16:46:38',1,30004097,11,17,138,26,23,156,19,4,10,21,97,100,54,29,76,106,62,80,18,12,140,70,45,126),(1597,'2015-03-14 14:56:58','2015-10-11 16:46:38',1,30003451,171,204,80,24,31,9,8,21,134,106,81,68,187,106,136,57,75,133,9,49,123,133,296,231),(1598,'2015-03-14 14:56:58','2015-10-11 16:46:38',1,30001356,4,1,0,0,0,0,30,0,13,14,17,0,0,0,26,30,4,6,0,0,6,2,32,1),(1599,'2015-03-14 14:56:58','2015-10-11 16:46:38',1,30005044,178,157,44,66,94,86,142,8,32,107,333,302,121,264,141,302,505,57,246,345,289,242,258,216),(1600,'2015-03-14 14:56:58','2015-10-11 16:46:38',1,30005074,15,1,11,7,0,9,7,9,49,86,4,3,1,0,9,7,94,9,17,18,10,0,8,89),(1601,'2015-03-14 14:56:58','2015-10-11 16:46:38',1,30001420,12,0,0,0,0,0,0,71,0,0,0,21,76,93,0,23,24,0,0,0,22,0,0,14),(1602,'2015-03-14 14:56:58','2015-10-11 16:46:38',1,30003797,14,45,8,25,7,24,25,27,75,62,55,72,123,40,31,22,24,52,36,19,37,64,47,55),(1603,'2015-03-14 14:56:58','2015-10-11 16:46:38',1,30003405,8,67,43,60,166,1,62,0,0,13,54,0,20,0,42,57,18,23,0,85,58,60,25,44),(1604,'2015-03-14 14:56:58','2015-10-11 16:46:38',1,30000253,157,0,0,0,84,52,0,0,0,131,0,0,0,0,0,0,0,0,0,0,0,2,0,0),(1605,'2015-03-14 14:56:58','2015-10-11 16:46:38',1,30004524,0,99,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(1606,'2015-03-14 14:56:58','2015-10-11 16:46:38',1,30004470,168,2040,1620,1036,240,493,15,1004,157,291,18,177,408,552,622,720,1007,904,110,203,147,0,695,452),(1607,'2015-03-14 14:56:58','2015-10-11 16:46:38',1,30004595,270,0,221,243,186,150,61,0,191,0,0,0,0,0,0,0,5,58,0,0,0,0,5,286),(1608,'2015-03-14 14:56:58','2015-10-11 16:46:38',1,30000877,85,187,139,50,420,567,461,235,365,0,0,0,0,0,0,0,0,0,6,0,0,0,0,42),(1609,'2015-03-14 14:56:58','2015-10-11 16:46:38',1,30003364,0,4,0,0,11,11,0,0,0,0,0,0,0,0,0,0,0,31,0,0,0,0,0,0),(1610,'2015-03-14 14:56:58','2015-10-11 16:46:38',1,30004311,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,36),(1611,'2015-03-14 14:56:58','2015-10-11 16:46:38',1,30003644,41,0,0,0,0,0,0,0,31,0,0,0,0,9,0,0,0,0,0,0,0,0,2,32),(1612,'2015-03-14 14:56:58','2015-10-11 16:46:38',1,30002631,0,0,0,0,0,61,0,0,76,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(1613,'2015-03-14 14:56:58','2015-10-11 16:46:38',1,30000663,0,30,0,0,0,0,0,0,0,0,0,0,4,0,0,0,0,0,0,0,0,0,5,0),(1614,'2015-03-14 14:56:58','2015-10-11 16:46:38',1,30005093,0,0,0,0,0,0,0,0,0,0,0,0,54,0,0,0,0,0,0,0,0,0,0,0),(1615,'2015-03-14 14:56:58','2015-10-11 16:46:38',1,30000954,0,0,0,0,0,0,0,0,0,0,0,0,0,159,0,0,0,0,0,0,0,0,0,0),(1616,'2015-03-14 14:56:58','2015-10-11 16:46:38',1,30005285,0,0,0,0,0,0,0,0,37,0,48,4,107,14,0,0,0,0,0,90,1,11,0,1),(1617,'2015-03-14 14:56:58','2015-10-11 16:46:38',1,30002635,15,0,20,2,32,10,19,13,125,8,38,44,48,50,23,16,37,52,3,12,1,11,11,10),(1618,'2015-03-14 14:56:58','2015-10-11 16:46:38',1,30013489,588,351,389,693,381,416,411,374,298,647,490,577,597,760,1018,1161,1012,744,241,376,901,720,615,666),(1619,'2015-03-14 14:56:58','2015-10-11 16:46:38',1,30004284,33,24,13,3,11,6,21,6,42,27,12,13,4,0,0,0,0,0,0,0,0,0,59,26),(1620,'2015-03-14 14:56:58','2015-10-11 16:46:38',1,30004105,0,0,0,0,21,21,0,0,0,0,0,0,12,0,39,90,71,0,0,0,0,0,0,42),(1621,'2015-03-14 14:56:58','2015-10-11 16:46:38',1,30002681,958,1136,564,344,547,647,190,683,772,1317,1178,1018,780,780,1200,1100,980,1353,531,547,610,918,954,913),(1622,'2015-03-14 14:56:58','2015-10-11 16:46:38',1,30004987,40,4,93,32,77,30,84,54,66,208,35,91,55,37,237,52,97,132,76,22,14,62,74,45),(1623,'2015-03-14 14:56:58','2015-10-11 16:46:38',1,30005025,85,191,199,329,152,246,45,181,25,194,188,119,436,332,269,247,261,348,196,91,222,246,261,233),(1624,'2015-03-14 14:56:58','2015-10-11 16:46:38',1,30004985,27,16,25,23,8,11,117,26,1,35,13,9,1,35,19,16,9,5,103,83,3,9,20,38),(1625,'2015-03-14 14:56:58','2015-03-14 14:56:58',1,30000816,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(1626,'2015-03-14 14:56:58','2015-10-11 16:46:38',1,30001557,0,0,0,0,0,0,0,0,0,0,110,258,91,0,52,31,22,527,0,5,11,14,17,237),(1627,'2015-03-14 14:56:58','2015-10-11 16:46:38',1,30000441,0,0,0,19,11,0,0,0,0,10,18,35,25,0,6,56,84,28,0,13,0,17,9,25),(1628,'2015-03-14 14:56:58','2015-10-11 16:46:38',1,30004016,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,51,0,0),(1629,'2015-03-14 14:56:58','2015-10-11 16:46:38',1,30003187,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,1,0,0,0,0,0,0,0,0),(1630,'2015-03-14 14:56:58','2015-10-11 16:46:38',1,30005229,98,62,97,71,162,221,214,54,29,215,442,339,139,171,245,225,195,293,124,155,199,342,328,199),(1631,'2015-03-14 14:56:58','2015-10-11 16:46:38',1,30003156,119,240,0,114,56,187,0,39,133,0,0,0,0,0,0,0,0,0,0,0,0,0,0,61),(1632,'2015-03-14 14:56:58','2015-10-11 16:46:38',1,30002967,37,87,22,65,114,135,53,92,105,30,107,111,100,32,123,147,92,25,10,36,49,160,52,6),(1633,'2015-03-14 14:56:58','2015-10-11 16:46:38',1,30003924,0,0,0,0,0,0,0,72,0,15,16,10,1,10,0,0,10,34,0,0,0,45,10,0),(1634,'2015-03-14 14:56:58','2015-10-11 16:46:38',1,30002646,213,77,97,271,95,41,245,76,151,150,275,232,70,100,361,61,244,276,29,198,164,192,371,131),(1635,'2015-03-14 14:56:58','2015-10-11 16:46:38',1,30003461,78,51,65,81,86,44,214,1,76,158,43,52,73,28,51,33,78,8,80,25,117,81,113,65),(1636,'2015-03-14 14:56:58','2015-10-11 16:46:38',1,30002968,1,0,91,154,4,83,125,13,0,9,4,4,54,15,30,160,146,89,73,4,37,1,8,13),(1637,'2015-03-14 14:56:58','2015-10-11 16:46:38',1,30001781,196,96,0,200,318,86,89,0,979,0,0,0,0,0,0,5,5,4,0,0,0,0,93,261),(1638,'2015-03-14 14:56:58','2015-10-11 16:46:38',1,30005262,5,0,0,0,0,0,0,12,79,0,118,151,0,13,16,0,0,36,0,0,0,0,19,54),(1639,'2015-03-14 14:56:58','2015-10-11 16:46:38',1,30004903,980,0,554,546,0,0,990,600,576,840,980,930,806,1000,601,980,1000,101,0,0,10,352,384,936),(1640,'2015-03-14 14:56:58','2015-10-11 16:46:38',1,30001994,221,68,460,354,183,125,136,26,0,0,3,29,10,0,0,0,0,108,43,0,0,0,84,15),(1641,'2015-03-14 14:56:58','2015-03-14 14:56:58',1,30004207,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(1642,'2015-03-14 14:56:58','2015-03-14 14:56:58',1,30001960,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(1643,'2015-03-14 14:56:58','2015-10-11 16:46:38',1,30002920,36,0,0,0,35,46,18,0,0,0,278,90,0,0,40,84,354,21,579,562,466,0,0,5),(1644,'2015-03-14 14:56:58','2015-10-11 16:46:38',1,30003170,419,0,11,6,9,10,199,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,128),(1645,'2015-03-14 14:56:58','2015-10-11 16:46:38',1,30000879,0,0,32,0,95,62,0,0,0,0,0,0,0,0,0,0,0,0,0,0,15,89,0,11),(1646,'2015-03-14 14:56:58','2015-03-14 14:56:58',1,30001632,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(1647,'2015-03-14 14:56:58','2015-10-11 16:46:38',1,30004195,0,891,94,676,388,332,518,212,200,0,0,0,0,0,0,0,46,0,95,19,0,2,0,0),(1648,'2015-03-14 14:56:58','2015-10-11 16:46:38',1,30003157,93,313,0,108,143,165,0,0,211,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(1649,'2015-03-14 14:56:58','2015-10-11 16:46:38',1,30003762,307,57,84,99,105,51,129,35,0,96,180,321,294,291,370,402,732,197,17,13,65,368,311,421),(1650,'2015-03-14 14:56:58','2015-10-11 16:46:38',1,30003681,0,0,0,8,65,68,0,85,0,0,4,5,1,4,44,85,84,156,0,0,0,0,2,1),(1651,'2015-03-14 14:56:58','2015-03-14 14:56:58',1,30001130,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(1652,'2015-03-14 14:56:58','2015-10-11 16:46:38',1,30002685,32,66,10,73,9,100,93,0,31,154,173,23,17,164,9,11,4,164,0,30,68,216,97,128),(1653,'2015-03-14 14:56:58','2015-10-11 16:46:38',1,30002659,547,444,387,274,351,341,456,110,196,118,347,434,451,528,538,607,593,406,236,247,475,285,402,394),(1654,'2015-03-14 14:56:58','2015-10-11 16:46:38',1,30005226,49,69,0,28,0,0,51,9,4,74,0,0,0,21,4,1,189,33,0,5,0,27,0,39),(1655,'2015-03-14 14:56:58','2015-10-11 16:46:38',1,30000038,19,0,0,0,0,0,0,0,0,0,86,1,0,0,0,0,0,0,0,9,0,26,0,9),(1656,'2015-03-14 14:56:58','2015-10-11 16:46:38',1,30001047,0,0,0,0,25,22,0,0,0,15,1,0,0,10,0,3,3,8,10,27,19,0,0,44),(1657,'2015-03-14 14:56:58','2015-10-11 16:46:38',1,30003807,3,0,29,81,27,8,32,36,36,12,19,19,2,20,37,13,47,10,0,17,2,0,156,45),(1658,'2015-03-14 14:56:58','2015-10-11 16:46:38',1,30002706,79,118,108,62,104,67,128,201,75,42,49,23,63,110,163,105,190,82,60,107,245,129,45,130),(1659,'2015-03-14 14:56:58','2015-10-11 16:46:38',1,30005293,36,734,81,76,42,27,19,129,15,77,57,74,171,137,146,180,139,59,17,36,36,224,63,60),(1660,'2015-03-14 14:56:58','2015-10-11 16:46:38',1,30002014,27,147,38,76,4,1,1,0,181,1,2,2,5,0,0,16,78,4,4,0,0,4,1,3),(1661,'2015-03-14 14:56:58','2015-10-11 16:46:38',1,30001912,0,56,128,0,0,0,0,49,0,100,97,16,47,74,78,104,98,93,25,239,11,0,0,0),(1662,'2015-03-14 14:56:58','2015-10-11 16:46:38',1,30003721,11,9,97,58,5,11,8,21,7,50,46,15,98,0,0,27,132,45,62,52,35,55,92,73),(1663,'2015-03-14 14:56:58','2015-10-11 16:46:38',1,30003314,0,18,0,0,0,0,0,70,0,14,16,4,10,4,0,8,20,0,35,29,0,54,6,0),(1664,'2015-03-14 14:56:58','2015-10-11 16:46:38',1,30002184,46,363,238,86,75,158,262,231,242,28,86,135,328,283,139,185,89,5,49,2,25,84,197,56),(1665,'2015-03-14 14:56:58','2015-10-11 16:46:38',1,30004078,222,626,529,451,408,291,149,298,453,515,575,615,330,470,347,412,295,302,341,584,399,642,577,342),(1666,'2015-03-14 14:56:58','2015-10-11 16:46:38',1,30005011,0,121,27,6,30,4,3,0,193,47,0,5,21,24,18,27,13,16,23,53,109,158,32,9),(1667,'2015-03-14 14:56:58','2015-10-11 16:46:38',1,30003992,73,0,0,0,0,0,16,0,0,0,61,62,0,0,0,0,0,0,0,0,0,0,0,0),(1668,'2015-03-14 14:56:58','2015-10-11 16:46:38',1,30003193,1,33,0,84,31,0,8,0,199,0,0,0,0,0,0,0,0,0,0,71,2,0,0,95),(1669,'2015-03-14 14:56:58','2015-10-11 16:46:38',1,30001831,0,0,0,0,9,72,3,0,0,5,20,7,0,0,0,0,0,0,0,0,3,0,0,48),(1670,'2015-03-14 14:56:58','2015-03-14 14:56:58',1,30001610,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(1671,'2015-03-14 14:56:58','2015-10-11 16:46:38',1,30004806,0,0,0,0,0,0,0,0,0,0,0,0,72,0,0,0,0,0,0,0,0,0,0,0),(1672,'2015-03-14 14:56:58','2015-10-11 16:46:38',1,30002041,0,0,76,159,41,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(1673,'2015-03-14 14:56:58','2015-10-11 16:46:38',1,30003108,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,0,0,0),(1674,'2015-03-14 14:56:58','2015-10-11 16:46:38',1,30002633,49,37,137,189,134,99,27,69,63,77,28,44,26,378,169,201,149,86,63,101,127,111,69,47),(1675,'2015-03-14 14:56:58','2015-10-11 16:46:38',1,30002076,8,0,0,0,0,0,0,0,0,29,5,0,58,14,69,120,66,0,0,1,50,0,0,1),(1676,'2015-03-14 14:56:58','2015-03-14 14:56:58',1,30000396,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(1677,'2015-03-14 14:56:58','2015-10-11 16:46:38',1,30002520,86,66,48,41,5,3,55,8,87,31,127,40,11,132,45,10,13,60,65,92,173,37,119,125),(1678,'2015-03-14 14:56:58','2015-10-11 16:46:38',1,30002670,102,26,34,90,32,45,47,18,86,82,76,112,142,131,112,51,86,162,4,1,118,70,29,109),(1679,'2015-03-14 14:56:58','2015-03-14 14:56:58',1,30000595,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(1680,'2015-03-14 14:56:58','2015-10-11 16:46:38',1,30004971,500,370,596,321,250,226,399,218,301,299,567,560,273,495,409,371,466,473,169,321,267,511,527,264),(1681,'2015-03-14 14:56:58','2015-10-11 16:46:38',1,30004418,35,0,0,28,0,0,109,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,12,0),(1682,'2015-03-14 14:56:58','2015-10-11 16:46:38',1,30003359,0,0,0,0,0,0,30,0,0,0,0,0,0,18,0,0,0,0,0,0,0,0,0,0),(1683,'2015-03-14 14:56:58','2015-03-14 14:56:58',1,30001504,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(1684,'2015-03-14 14:56:58','2015-10-11 16:46:38',1,30001581,0,0,0,0,0,0,0,0,0,1,0,0,4,27,47,22,10,15,49,54,22,8,56,15),(1685,'2015-03-14 14:56:58','2015-03-14 14:56:58',1,30000518,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(1686,'2015-03-14 14:56:58','2015-10-11 16:46:38',1,30002146,0,0,0,0,0,0,0,0,0,3,12,4,5,0,0,0,0,41,0,0,0,214,42,0),(1687,'2015-03-14 14:56:58','2015-10-11 16:46:38',1,30003682,11,25,47,32,0,0,61,0,97,0,0,91,0,0,0,42,42,0,0,0,4,0,0,23),(1688,'2015-03-14 14:56:58','2015-03-14 14:56:58',1,30000516,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(1689,'2015-03-14 14:56:58','2015-10-11 16:46:38',1,30000490,0,0,125,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(1690,'2015-03-14 14:56:58','2015-10-11 16:46:38',1,30002599,0,0,0,1,59,0,0,0,0,0,0,0,0,0,27,28,17,0,0,0,0,0,0,0),(1691,'2015-03-14 14:56:58','2015-10-11 16:46:38',1,30004042,0,0,0,0,0,0,0,0,0,0,0,0,0,50,35,0,0,0,0,0,0,0,0,1),(1692,'2015-03-14 14:56:58','2015-10-11 16:46:38',1,30002119,0,0,0,0,0,0,0,0,0,2,1,0,0,98,35,25,0,0,0,0,0,0,0,0),(1693,'2015-03-14 14:56:58','2015-10-11 16:46:38',1,30002378,0,0,0,0,0,0,0,0,0,14,126,35,5,19,10,8,0,0,11,17,7,99,1,0),(1694,'2015-03-14 14:56:58','2015-10-11 16:46:38',1,30003196,6,0,0,0,11,6,0,34,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,60),(1695,'2015-03-14 14:56:58','2015-10-11 16:46:38',1,30000102,16,27,21,9,0,0,11,1,0,0,0,9,1,60,12,23,12,2,0,0,6,9,33,2),(1696,'2015-03-14 14:56:58','2015-10-11 16:46:38',1,30004852,0,0,0,0,0,0,0,0,0,0,0,0,136,0,0,0,0,0,0,0,0,0,0,0),(1697,'2015-03-14 14:56:58','2015-10-11 16:46:38',1,30000502,40,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(1698,'2015-03-14 14:56:58','2015-10-11 16:46:38',1,30001294,3,0,6,24,0,0,82,5,0,0,0,0,0,0,11,4,0,0,0,0,0,0,0,0),(1699,'2015-03-14 14:56:58','2015-10-11 16:46:38',1,30002477,0,0,0,91,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,31,0,10),(1700,'2015-03-14 14:56:58','2015-10-11 16:46:38',1,30003677,0,27,0,0,0,0,74,10,105,0,27,27,46,5,5,5,5,0,0,0,0,105,26,0),(1701,'2015-03-14 14:56:58','2015-10-11 16:46:38',1,30000503,0,0,0,52,0,0,0,0,109,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(1702,'2015-03-14 14:56:58','2015-10-11 16:46:38',1,30004186,1660,578,96,385,838,860,865,925,364,152,456,921,1716,1393,2540,2420,1483,491,0,144,403,1340,1406,527),(1703,'2015-03-14 14:56:58','2015-10-11 16:46:38',1,30001530,0,2,0,0,0,0,0,0,0,201,113,20,365,356,85,76,113,568,148,418,367,214,193,749),(1704,'2015-03-14 14:56:58','2015-10-11 16:46:38',1,30004567,0,0,0,0,0,0,0,0,0,0,0,0,0,45,0,0,0,19,0,0,0,6,85,0),(1705,'2015-03-14 14:56:58','2015-10-11 16:46:38',1,30004181,18,0,0,0,0,0,0,19,0,0,0,0,0,0,0,0,0,0,0,85,85,0,0,0),(1706,'2015-03-14 14:56:58','2015-10-11 16:46:38',1,30001834,0,5,0,0,0,0,0,3,0,0,18,23,0,2,0,0,3,0,1,0,69,0,1,0),(1707,'2015-03-14 14:56:58','2015-10-11 16:46:38',1,30000257,10,0,0,0,0,0,200,0,140,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(1708,'2015-03-14 14:56:58','2015-10-11 16:46:38',1,30004948,252,1,0,186,767,739,79,442,284,10,112,67,0,0,0,0,80,218,0,70,47,55,156,79),(1709,'2015-03-14 14:56:58','2015-03-14 14:56:58',1,30004217,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(1710,'2015-03-14 14:56:58','2015-10-11 16:46:38',1,30002922,165,858,240,433,905,424,276,457,167,69,175,342,938,300,221,127,593,1020,133,207,128,356,229,232),(1711,'2015-03-14 14:56:58','2015-10-11 16:46:38',1,30004546,0,0,0,0,61,77,0,0,0,0,0,0,0,65,1,0,0,0,0,0,0,0,0,0),(1712,'2015-03-14 14:56:58','2015-10-11 16:46:38',1,30000531,0,0,0,0,0,0,0,0,97,0,0,3,0,0,0,0,0,0,0,0,0,0,0,0),(1713,'2015-03-14 14:56:58','2015-10-11 16:46:38',1,30000846,0,67,0,0,0,0,0,35,0,0,1,0,0,6,0,0,0,0,0,7,33,0,0,0),(1714,'2015-03-14 14:56:58','2015-10-11 16:46:38',1,30004451,98,50,17,17,0,0,116,8,0,163,234,107,52,0,0,0,0,375,217,91,56,0,127,261),(1715,'2015-03-14 14:56:58','2015-03-14 14:56:58',1,30001620,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(1716,'2015-03-14 14:56:58','2015-10-11 16:46:38',1,30000283,78,0,0,0,79,0,0,0,45,0,0,0,0,0,0,0,0,0,0,0,0,0,104,1),(1717,'2015-03-14 14:56:58','2015-03-14 14:56:58',1,30004028,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(1718,'2015-03-14 14:56:58','2015-03-14 14:56:58',1,30005100,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(1719,'2015-03-14 14:56:58','2015-10-11 16:46:38',1,30003732,84,55,272,85,37,21,55,0,84,206,139,369,346,18,69,140,132,57,36,15,18,212,23,15),(1720,'2015-03-14 14:56:58','2015-10-11 16:46:38',1,30001229,676,110,339,372,93,11,335,200,97,24,7,4,3,21,0,55,56,0,138,1,0,98,59,27),(1721,'2015-03-14 14:56:58','2015-10-11 16:46:38',1,30002032,0,85,0,0,0,0,108,0,0,0,0,0,0,99,0,0,0,0,0,0,0,0,0,3),(1722,'2015-03-14 14:56:58','2015-10-11 16:46:38',1,30000903,0,0,8,3,0,0,0,0,0,3,33,20,37,0,0,0,0,3,4,10,5,0,0,0),(1723,'2015-03-14 14:56:58','2015-10-11 16:46:38',1,30004208,683,123,129,0,0,50,5,176,267,0,0,0,0,57,0,0,0,139,0,124,1,53,4,0),(1724,'2015-03-14 14:56:58','2015-10-11 16:46:38',1,30001214,0,0,0,0,0,0,0,0,0,0,10,20,0,9,12,18,7,14,37,3,0,0,15,27),(1725,'2015-03-14 14:56:58','2015-10-11 16:46:38',1,30001334,0,0,0,0,0,0,0,128,0,0,0,85,40,0,0,0,0,0,0,0,0,0,0,0),(1726,'2015-03-14 14:56:58','2015-10-11 16:46:38',1,30002136,0,0,0,0,29,29,0,0,9,0,44,133,0,6,0,0,0,0,0,0,0,0,0,0),(1727,'2015-03-14 14:56:58','2015-10-11 16:46:38',1,30003136,181,28,403,793,33,973,744,218,845,0,0,17,43,0,0,0,0,0,0,28,1,0,0,0),(1728,'2015-03-14 14:56:58','2015-10-11 16:46:38',1,30000612,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,6,0,0,0,0,0,0),(1729,'2015-03-14 14:56:58','2015-10-11 16:46:38',1,30004959,69,2060,0,42,1399,853,90,1990,1526,688,1099,657,283,501,161,245,452,549,1080,213,535,313,892,241),(1730,'2015-03-14 14:56:58','2015-03-14 14:56:58',1,30001462,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(1731,'2015-03-14 14:56:58','2015-10-11 16:46:38',1,30001217,0,0,0,0,0,0,0,0,0,0,10,115,30,0,0,0,0,0,0,0,0,0,0,0),(1732,'2015-03-14 14:56:58','2015-10-11 16:46:38',1,30004725,0,0,0,0,0,0,0,0,0,0,0,0,0,0,4,3,0,6,0,0,0,0,0,0),(1733,'2015-03-14 14:56:58','2015-10-11 16:46:38',1,30002931,55,0,0,0,27,0,26,43,0,23,0,0,0,0,6,0,0,0,30,0,0,40,4,5),(1734,'2015-03-14 14:56:58','2015-10-11 16:46:38',1,30001527,0,0,0,139,71,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,86,0,1,0),(1735,'2015-03-14 14:56:58','2015-10-11 16:46:38',1,30000524,90,255,32,34,40,124,172,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(1736,'2015-03-14 14:56:58','2015-10-11 16:46:38',1,30000634,0,0,0,0,0,0,0,0,0,0,0,4,1,0,0,0,0,0,0,0,0,0,0,0),(1737,'2015-03-14 14:56:58','2015-10-11 16:46:38',1,30003242,0,0,0,0,0,0,9,0,0,0,60,60,0,0,0,0,0,0,0,0,0,3,146,41),(1738,'2015-03-14 14:56:58','2015-10-11 16:46:38',1,30001909,0,39,0,41,0,0,12,0,0,0,6,8,0,24,0,11,156,0,0,0,0,1,0,0),(1739,'2015-03-14 14:56:58','2015-10-11 16:46:38',1,30002605,15,12,69,12,20,6,88,67,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(1740,'2015-03-14 14:56:58','2015-10-11 16:46:38',1,30002349,174,237,250,176,175,322,25,20,110,0,0,1,0,1,0,87,87,0,0,0,0,0,0,0),(1741,'2015-03-14 14:56:58','2015-10-11 16:46:38',1,30002163,56,245,18,0,2,3,10,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(1742,'2015-03-14 14:56:58','2015-10-11 16:46:38',1,30004499,0,0,0,104,0,0,0,0,9,0,0,0,0,0,1,1,2,0,0,77,1,17,45,0),(1743,'2015-03-14 14:56:58','2015-10-11 16:46:38',1,30003694,0,0,0,120,0,0,69,14,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(1744,'2015-03-14 14:56:58','2015-10-11 16:46:38',1,30002124,0,155,0,0,8,12,10,0,0,0,0,0,0,0,0,0,0,0,0,18,0,0,0,20),(1745,'2015-03-14 14:56:58','2015-10-11 16:46:38',1,30003476,41,31,6,67,117,133,142,15,14,57,4,60,99,70,49,7,6,3,27,120,89,3,177,72),(1746,'2015-03-14 14:56:58','2015-10-11 16:46:38',1,30003438,1,73,8,80,100,59,179,28,49,0,115,0,28,116,124,158,99,109,40,87,68,81,85,73),(1747,'2015-03-14 14:56:58','2015-10-11 16:46:38',1,30003441,30,90,99,51,4,25,36,45,39,69,61,86,40,16,217,211,162,82,23,36,50,55,34,177),(1748,'2015-03-14 14:56:58','2015-10-11 16:46:38',1,30001933,0,0,0,0,0,0,0,0,0,0,0,0,0,6,0,0,0,0,0,0,0,0,0,0),(1749,'2015-03-14 14:56:58','2015-10-11 16:46:38',1,30002281,99,78,141,108,42,32,157,14,70,152,111,81,63,75,109,185,251,16,82,147,110,180,118,59),(1750,'2015-03-14 14:56:58','2015-10-11 16:46:38',1,30005291,121,333,4,101,79,186,176,9,58,12,137,147,135,417,152,73,90,79,21,67,61,151,78,87),(1751,'2015-03-14 14:56:58','2015-10-11 16:46:38',1,30002535,34,34,104,65,59,0,12,49,43,38,7,145,5,48,54,22,27,19,13,55,196,112,48,16),(1752,'2015-03-14 14:56:58','2015-10-11 16:46:38',1,30002196,145,199,191,50,128,238,103,40,257,198,203,72,122,246,195,233,263,283,149,90,78,92,168,212),(1753,'2015-03-14 14:56:58','2015-10-11 16:46:38',1,30002269,9,6,60,139,85,30,29,35,24,0,33,112,145,76,110,85,66,75,31,94,54,67,89,50),(1754,'2015-03-14 14:56:58','2015-10-11 16:46:38',1,30002536,20,0,0,0,58,56,9,0,0,0,119,96,0,3,2,12,72,3,57,0,0,89,0,54),(1755,'2015-03-14 14:56:58','2015-10-11 16:46:38',1,30002094,40,8,0,0,0,0,0,0,0,0,23,15,59,0,2,1,59,34,79,14,8,4,17,84),(1756,'2015-03-14 14:56:58','2015-10-11 16:46:38',1,30002277,100,141,185,50,219,131,173,141,60,115,98,155,204,354,255,166,251,298,67,101,202,211,154,158),(1757,'2015-03-14 14:56:58','2015-10-11 16:46:38',1,30001984,90,11,4,0,0,0,0,0,0,0,0,0,0,8,0,0,0,0,0,0,0,0,0,0),(1758,'2015-03-14 14:56:58','2015-10-11 16:46:38',1,30004020,0,20,102,34,37,39,0,4,0,136,238,214,75,0,0,0,0,0,0,0,0,0,0,0),(1759,'2015-03-14 14:56:58','2015-10-11 16:46:38',1,30003911,147,5,131,42,17,32,0,121,35,32,89,60,65,143,35,23,39,94,21,48,62,36,19,153),(1760,'2015-03-14 14:56:58','2015-10-11 16:46:38',1,30002552,112,63,100,34,72,92,28,44,102,20,73,54,2,125,55,106,124,105,46,101,53,37,1,69),(1761,'2015-03-14 14:56:58','2015-10-11 16:46:38',1,30004256,0,0,0,0,0,0,0,26,1,52,0,0,0,0,0,0,2,0,0,0,0,79,28,19),(1762,'2015-03-14 14:56:58','2015-10-11 16:46:38',1,30002518,63,0,7,22,47,31,22,0,29,0,1,1,0,21,70,53,4,0,76,0,0,35,31,24),(1763,'2015-03-14 14:56:58','2015-10-11 16:46:38',1,30000486,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,5,15,0,0),(1764,'2015-03-14 14:56:58','2015-10-11 16:46:38',1,30003355,8,0,0,0,0,0,0,19,0,0,0,0,0,0,5,5,0,0,0,0,0,0,0,0),(1765,'2015-03-14 14:56:58','2015-10-11 16:46:38',1,30005104,0,0,812,8,0,0,0,0,13,9,17,22,0,3,3,8,6,5,0,0,32,6,0,0),(1766,'2015-03-14 14:56:58','2015-10-11 16:46:38',1,30003892,0,0,0,12,0,70,80,101,0,0,0,0,0,0,5,7,7,54,0,0,0,0,0,0),(1767,'2015-03-14 14:56:58','2015-10-11 16:46:38',1,30000783,0,0,8,1,0,0,0,0,0,0,0,0,9,0,0,0,0,0,0,0,0,0,0,0),(1768,'2015-03-14 14:56:58','2015-10-11 16:46:38',1,30004297,19,0,49,63,3,3,8,8,27,0,0,0,0,7,0,0,0,0,0,0,1,0,13,55),(1769,'2015-03-14 14:56:58','2015-10-11 16:46:38',1,30002420,0,0,106,0,103,146,0,0,0,1,0,0,14,1,97,94,14,32,0,0,13,12,0,0),(1770,'2015-03-14 14:56:58','2015-10-11 16:46:38',1,30003401,0,30,0,57,0,0,148,47,0,38,2,32,0,0,13,63,83,0,0,0,48,77,0,0),(1771,'2015-03-14 14:56:58','2015-10-11 16:46:38',1,30002693,17,2,13,26,6,25,4,1,15,11,8,0,14,0,18,19,1,26,15,7,0,31,32,33),(1772,'2015-03-14 14:56:58','2015-10-11 16:46:38',1,30003605,127,235,54,148,103,100,44,208,0,5,173,28,0,117,44,37,53,74,5,37,130,119,111,181),(1773,'2015-03-14 14:56:58','2015-10-11 16:46:38',1,30002660,502,585,1082,764,983,634,844,582,547,462,856,902,510,1376,1016,1059,1279,894,931,717,1100,790,730,1079),(1774,'2015-03-14 14:56:58','2015-10-11 16:46:38',1,30002099,0,0,3,31,5,5,104,18,8,9,5,67,41,1,2,3,7,4,10,7,14,8,0,39),(1775,'2015-03-14 14:56:58','2015-10-11 16:46:38',1,30002563,24,147,16,31,54,123,68,6,144,11,222,104,11,71,199,158,24,86,9,77,133,63,223,123),(1776,'2015-03-14 14:56:58','2015-03-14 14:56:58',1,30000373,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(1777,'2015-03-14 14:56:58','2015-10-11 16:46:38',1,30005108,0,0,0,0,0,0,0,62,0,0,0,0,0,0,0,0,0,0,0,0,0,81,0,0),(1778,'2015-03-14 14:56:58','2015-10-11 16:46:38',1,30045319,6,9,104,3,35,59,99,1,120,0,15,11,9,4,5,7,7,5,0,0,55,8,2,15),(1779,'2015-03-14 14:56:58','2015-10-11 16:46:38',1,30002997,20,8,10,37,10,20,41,0,43,93,27,27,138,42,48,43,42,9,115,14,29,57,63,66),(1780,'2015-03-14 14:56:58','2015-10-11 16:46:38',1,30004586,0,0,0,0,0,0,0,0,0,0,0,0,0,0,79,0,0,0,0,0,0,0,0,0),(1781,'2015-03-14 14:56:58','2015-10-11 16:46:38',1,30000249,0,0,0,0,0,3,25,0,0,0,0,85,1,0,0,0,0,0,0,0,0,0,0,0),(1782,'2015-03-14 14:56:58','2015-10-11 16:46:38',1,30002555,1,3,0,0,0,0,3,3,2,69,0,0,23,72,12,28,19,0,1,51,0,26,14,16),(1783,'2015-03-14 14:56:58','2015-10-11 16:46:38',1,30000577,108,0,113,129,138,138,152,79,0,0,0,0,37,0,0,0,0,0,0,0,0,0,0,0),(1784,'2015-03-14 14:56:58','2015-10-11 16:46:38',1,30003393,131,101,70,127,131,138,133,30,43,46,156,104,26,117,128,87,65,137,37,58,30,47,67,103),(1785,'2015-03-14 14:56:58','2015-10-11 16:46:38',1,30004946,437,32,74,3,71,60,218,0,84,0,0,0,0,0,0,0,0,0,0,0,7,0,0,45),(1786,'2015-03-14 14:56:58','2015-03-14 14:56:58',1,30000655,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(1787,'2015-03-14 14:56:58','2015-10-11 16:46:38',1,30002740,252,159,286,195,204,172,237,74,355,176,184,301,358,340,442,270,306,231,305,94,275,354,220,365),(1788,'2015-03-14 14:56:58','2015-10-11 16:46:38',1,30001307,45,28,0,1,68,1,0,0,0,0,0,17,0,0,0,0,0,0,0,0,0,0,0,15),(1789,'2015-03-14 14:56:58','2015-03-14 14:56:58',1,30004204,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(1790,'2015-03-14 14:56:58','2015-10-11 16:46:38',1,30000814,116,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(1791,'2015-03-14 14:56:58','2015-10-11 16:46:38',1,30000083,54,138,57,151,17,0,105,10,11,64,50,32,72,67,35,43,20,29,57,0,25,139,233,31),(1792,'2015-03-14 14:56:58','2015-10-11 16:46:38',1,30001313,0,91,0,0,43,64,120,6,0,6,106,36,85,114,19,46,88,82,84,149,232,67,87,11),(1793,'2015-03-14 14:56:58','2015-10-11 16:46:38',1,30003494,257,406,102,305,199,255,152,165,124,235,278,327,268,329,347,334,374,318,175,165,221,408,425,542),(1794,'2015-03-14 14:56:58','2015-03-14 14:56:58',1,30000740,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(1795,'2015-03-14 14:56:58','2015-10-11 16:46:38',1,30005317,118,176,94,140,244,145,222,190,29,145,142,181,112,205,405,354,255,246,155,166,112,264,158,299),(1796,'2015-03-14 14:56:58','2015-10-11 16:46:38',1,30001378,246,181,177,143,173,191,228,39,102,214,191,277,175,305,453,424,385,329,84,180,185,283,290,193),(1797,'2015-03-14 14:56:58','2015-10-11 16:46:38',1,30001970,0,0,0,0,0,0,0,104,0,0,0,0,0,0,0,0,0,0,0,6,6,0,0,0),(1798,'2015-03-14 14:56:58','2015-10-11 16:46:38',1,30001434,186,168,20,165,184,28,201,66,83,154,302,439,84,175,70,139,322,185,122,104,196,300,55,266),(1799,'2015-03-14 14:56:58','2015-10-11 16:46:38',1,30003044,0,17,7,42,0,0,0,4,3,8,0,0,1,0,21,9,16,13,61,2,26,0,8,49),(1800,'2015-03-14 14:56:58','2015-10-11 16:46:38',1,30003462,0,35,144,42,85,118,9,91,178,60,61,67,123,33,32,19,125,230,15,28,99,38,178,90),(1801,'2015-03-14 14:56:58','2015-10-11 16:46:38',1,30002398,310,4,232,67,56,33,141,11,0,78,64,326,61,120,145,49,189,267,19,16,119,108,307,148),(1802,'2015-03-14 14:56:58','2015-10-11 16:46:38',1,30005315,59,51,78,95,54,61,71,98,64,27,77,75,170,105,166,139,159,74,59,48,41,66,91,12),(1803,'2015-03-14 14:56:58','2015-10-11 16:46:38',1,30003412,38,150,29,100,40,28,21,53,18,181,188,179,2,72,45,65,58,88,78,10,10,194,176,78),(1804,'2015-03-14 14:56:58','2015-10-11 16:46:38',1,30005313,98,260,77,39,134,72,30,0,22,36,167,83,49,153,201,147,123,59,82,167,80,180,103,55),(1805,'2015-03-14 14:56:58','2015-10-11 16:46:38',1,30004149,1,59,66,48,140,6,79,115,0,99,59,59,24,8,4,5,3,139,14,95,0,7,10,88),(1806,'2015-03-14 14:56:58','2015-10-11 16:46:38',1,30001399,251,239,374,271,298,243,357,303,342,137,237,516,206,302,348,430,525,278,81,207,237,231,440,222),(1807,'2015-03-14 14:56:58','2015-10-11 16:46:38',1,30003570,0,0,0,3,5,11,10,0,0,0,0,0,0,0,0,0,0,0,2,9,24,0,0,168),(1808,'2015-03-14 14:56:58','2015-10-11 16:46:38',1,30045336,8,382,13,46,1,7,1,56,7,7,8,15,26,1,7,17,31,6,0,0,11,6,91,13),(1809,'2015-03-14 14:56:58','2015-10-11 16:46:38',1,30023410,141,205,311,322,340,308,238,305,259,323,270,220,320,415,355,393,444,335,289,350,474,357,246,257),(1810,'2015-03-14 14:56:58','2015-10-11 16:46:38',1,30004880,0,329,132,1,10,81,5,0,493,0,0,0,0,0,84,0,0,162,0,0,78,0,0,0),(1811,'2015-03-14 14:56:58','2015-10-11 16:46:38',1,30002548,381,417,306,241,408,467,366,266,69,554,436,594,337,275,602,479,438,268,216,521,630,329,320,344),(1812,'2015-03-14 14:56:58','2015-10-11 16:46:38',1,30001672,104,150,82,122,222,182,88,114,161,279,226,170,148,158,239,245,308,411,299,132,182,310,245,228),(1813,'2015-03-14 14:56:58','2015-10-11 16:46:38',1,30005202,52,50,56,53,61,41,37,18,19,13,15,171,18,70,34,96,96,57,50,81,52,94,54,82),(1814,'2015-03-14 14:56:58','2015-10-11 16:46:38',1,30003662,109,0,0,0,0,0,0,96,122,0,0,0,0,0,0,0,0,11,0,0,0,0,0,0),(1815,'2015-03-14 14:56:58','2015-10-11 16:46:38',1,30003337,0,0,0,0,0,0,0,0,0,0,0,0,0,0,177,78,0,0,0,0,0,5,211,11),(1816,'2015-03-14 14:56:58','2015-10-11 16:46:38',1,30005082,4,0,0,0,0,0,0,27,27,164,0,7,34,3,2,2,6,6,37,0,0,68,28,26),(1817,'2015-03-14 14:56:58','2015-10-11 16:46:38',1,30045339,1,5,63,3,0,1,3,94,66,6,9,9,10,3,3,2,0,23,0,0,5,6,1,18),(1818,'2015-03-14 14:56:58','2015-10-11 16:46:38',1,30001430,159,60,264,213,399,388,98,137,62,62,154,172,98,137,54,55,148,118,17,50,48,169,183,23),(1819,'2015-03-14 14:56:58','2015-10-11 16:46:38',1,30003424,5,2,6,14,6,15,3,6,5,3,47,100,0,30,18,33,28,6,10,10,8,8,57,5),(1820,'2015-03-14 14:56:58','2015-10-11 16:46:38',1,30002769,10,7,0,33,2,2,20,45,0,32,3,2,3,81,46,5,0,7,103,12,78,24,21,53),(1821,'2015-03-14 14:56:58','2015-10-11 16:46:38',1,30002558,2,23,26,112,33,96,32,11,125,99,172,229,119,1,25,88,66,151,2,3,39,58,71,141),(1822,'2015-03-14 14:56:58','2015-10-11 16:46:38',1,30003045,60,43,70,50,145,114,76,22,102,38,146,102,0,52,149,133,114,37,14,154,160,147,152,130),(1823,'2015-03-14 14:56:58','2015-10-11 16:46:38',1,30003454,31,164,132,296,91,196,262,68,99,6,247,245,80,217,181,181,315,28,83,0,133,65,143,210),(1824,'2015-03-14 14:56:58','2015-10-11 16:46:38',1,30002412,24,75,3,106,1,0,8,17,0,0,0,7,59,1,0,0,0,0,5,0,98,43,22,0),(1825,'2015-03-14 14:56:58','2015-10-11 16:46:38',1,30002475,86,0,2,0,0,0,0,86,0,0,5,0,0,8,44,93,103,0,58,0,0,0,0,0),(1826,'2015-03-14 14:56:58','2015-03-14 14:56:58',1,30000980,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(1827,'2015-03-14 14:56:58','2015-10-11 16:46:38',1,30001942,0,0,139,69,8,0,0,0,0,0,0,0,0,0,0,0,0,0,0,88,9,0,0,0),(1828,'2015-03-14 14:56:58','2015-10-11 16:46:38',1,30003612,250,0,33,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,82),(1829,'2015-03-14 14:56:58','2015-03-14 14:56:58',1,30002845,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(1830,'2015-03-14 14:56:58','2015-10-11 16:46:38',1,30004388,940,339,304,820,484,581,68,46,320,393,455,808,819,409,45,218,591,91,0,41,213,219,725,660),(1831,'2015-03-14 14:56:58','2015-03-14 14:56:58',1,30004835,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(1832,'2015-03-14 14:56:58','2015-10-11 16:46:38',1,30001035,2,3,3,0,1,0,15,1,64,48,4,0,3,23,62,55,0,115,0,0,25,0,12,24),(1833,'2015-03-14 14:56:58','2015-10-11 16:46:38',1,30000676,215,0,0,0,0,0,0,0,0,10,47,0,0,0,0,0,0,46,0,3,7,8,17,0),(1834,'2015-03-14 14:56:58','2015-10-11 16:46:38',1,30003413,211,116,201,37,200,174,124,244,123,89,97,130,158,69,141,151,148,175,58,193,201,300,241,316),(1835,'2015-03-14 14:56:58','2015-10-11 16:46:38',1,30002810,5,8,5,80,18,19,5,4,5,0,7,22,53,5,7,33,43,44,0,6,4,5,0,45),(1836,'2015-03-14 14:56:58','2015-10-11 16:46:38',1,30002969,326,117,88,270,247,178,18,57,128,121,174,39,61,119,209,221,119,290,16,188,315,93,542,431),(1837,'2015-03-14 14:56:58','2015-10-11 16:46:38',1,30033410,10,1,7,0,6,11,21,93,0,15,11,0,12,0,36,36,0,11,8,44,33,0,38,0),(1838,'2015-03-14 14:56:58','2015-10-11 16:46:38',1,30001371,209,257,367,499,281,176,101,391,324,77,323,270,265,263,239,305,247,432,28,63,116,335,195,321),(1839,'2015-03-14 14:56:58','2015-10-11 16:46:38',1,30002742,4,0,0,0,24,52,0,0,76,0,81,81,0,9,8,26,36,14,45,105,63,5,0,35),(1840,'2015-03-14 14:56:58','2015-10-11 16:46:38',1,30003472,182,167,112,84,106,130,158,24,86,115,292,92,170,250,377,287,280,260,154,114,76,111,221,284),(1841,'2015-03-14 14:56:58','2015-10-11 16:46:38',1,30003078,0,0,1,61,60,31,4,3,15,1,6,11,14,5,0,3,3,3,3,99,152,6,35,179),(1842,'2015-03-14 14:56:58','2015-10-11 16:46:38',1,30003463,0,100,82,97,59,45,24,44,111,70,0,14,107,117,108,91,148,26,21,33,121,1,16,122),(1843,'2015-03-14 14:56:58','2015-10-11 16:46:38',1,30002640,26,146,113,129,110,143,95,194,224,56,45,41,111,99,98,135,89,101,18,15,126,44,42,152),(1844,'2015-03-14 14:56:58','2015-10-11 16:46:38',1,30003425,0,122,0,0,2,2,0,0,0,0,0,0,0,0,2,3,1,0,0,0,1,0,4,4),(1845,'2015-03-14 14:56:58','2015-10-11 16:46:38',1,30003419,79,121,193,41,21,3,180,54,71,99,131,125,25,117,150,163,113,48,0,46,124,100,83,54),(1846,'2015-03-14 14:56:58','2015-10-11 16:46:38',1,30004259,18,8,146,2,0,0,0,0,0,0,0,1,61,117,0,0,0,41,0,0,0,0,2,0),(1847,'2015-03-14 14:56:58','2015-10-11 16:46:38',1,30000203,0,219,0,29,9,1,72,98,55,71,9,11,46,2,0,0,0,0,0,0,0,1,0,0),(1848,'2015-03-14 14:56:58','2015-10-11 16:46:38',1,30003867,0,147,79,37,87,79,129,0,0,1,7,3,2,24,29,88,107,20,24,118,37,144,34,30),(1849,'2015-03-14 14:56:58','2015-10-11 16:46:38',1,30001233,129,182,26,89,22,32,15,0,51,0,209,299,0,0,57,78,65,0,0,0,0,0,0,2),(1850,'2015-03-14 14:56:58','2015-10-11 16:46:38',1,30003537,0,39,23,17,0,0,42,0,7,20,4,2,3,3,152,93,146,102,1,4,79,60,58,46),(1851,'2015-03-14 14:56:58','2015-10-11 16:46:38',1,30004033,0,0,0,0,0,0,0,0,0,0,450,649,0,0,0,0,0,0,0,0,0,0,0,0),(1852,'2015-03-14 14:56:58','2015-10-11 16:46:38',1,30001029,250,455,72,184,125,129,81,0,465,89,0,54,41,99,25,103,85,164,16,0,43,187,111,283),(1853,'2015-03-14 14:56:58','2015-10-11 16:46:38',1,30001736,11,20,2,70,15,10,15,111,79,102,75,45,32,13,64,63,63,14,1,12,63,57,113,4),(1854,'2015-03-14 14:56:58','2015-10-11 16:46:38',1,30004305,0,24,24,9,0,0,0,103,0,24,8,15,0,173,46,36,0,0,42,10,0,28,47,8),(1855,'2015-03-14 14:56:58','2015-10-11 16:46:38',1,30004603,0,0,3,0,0,0,0,3,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,3),(1856,'2015-03-14 14:56:58','2015-10-11 16:46:38',1,30002964,57,29,71,107,97,46,38,26,42,62,29,73,18,77,40,57,37,18,30,71,36,62,33,15),(1857,'2015-03-14 14:56:58','2015-10-11 16:46:38',1,30003842,5,107,32,21,115,106,4,0,0,0,78,73,0,13,13,31,52,0,34,38,5,20,33,6),(1858,'2015-03-14 14:56:58','2015-10-11 16:46:38',1,30000028,77,6,55,16,9,67,44,95,60,21,88,108,1,0,0,0,66,0,14,23,52,124,74,0),(1859,'2015-03-14 14:56:58','2015-10-11 16:46:38',1,30000091,0,15,7,1,25,25,72,1,0,6,1,1,5,13,0,0,0,34,0,54,0,6,0,26),(1860,'2015-03-14 14:56:58','2015-10-11 16:46:38',1,30000137,233,522,172,291,159,85,212,106,109,173,106,349,129,171,256,263,228,305,106,90,234,228,272,196),(1861,'2015-03-14 14:56:58','2015-10-11 16:46:38',1,30002730,82,22,0,0,111,77,0,0,0,2,0,81,2,28,0,0,26,0,0,6,6,0,0,0),(1862,'2015-03-14 14:56:58','2015-10-11 16:46:38',1,30003822,9,38,0,48,2,0,12,3,0,0,2,0,2,14,33,43,87,206,0,1,0,11,0,1),(1863,'2015-03-14 14:56:58','2015-10-11 16:46:38',1,30004986,0,0,18,158,0,25,5,9,67,0,157,243,24,2,5,0,0,16,9,62,57,14,0,87),(1864,'2015-03-14 14:56:58','2015-10-11 16:46:38',1,30002260,14,146,44,115,135,172,40,41,42,25,117,46,15,27,49,82,82,101,0,52,73,38,56,51),(1865,'2015-03-14 14:56:58','2015-10-11 16:46:38',1,30002673,106,297,227,205,82,167,49,47,44,43,61,77,143,328,57,104,182,118,18,4,197,79,314,157),(1866,'2015-03-14 14:56:58','2015-10-11 16:46:38',1,30004287,0,153,0,12,1,1,22,11,0,0,0,0,0,0,0,0,0,0,0,0,0,57,3,24),(1867,'2015-03-14 14:56:58','2015-10-11 16:46:38',1,30002095,1,3,71,7,0,0,6,2,17,8,0,1,6,19,4,5,10,68,5,16,5,12,24,9),(1868,'2015-03-14 14:56:58','2015-10-11 16:46:38',1,30003517,41,33,54,171,35,11,41,143,155,76,136,101,27,41,68,106,79,0,51,60,60,213,150,45),(1869,'2015-03-14 14:56:58','2015-10-11 16:46:38',1,30003033,93,64,83,39,20,23,106,9,13,81,43,43,51,60,53,74,111,63,24,35,21,52,54,26),(1870,'2015-03-14 14:56:58','2015-10-11 16:46:38',1,30001535,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,58,60,0,0,0,0,0,1),(1871,'2015-03-14 14:56:58','2015-10-11 16:46:38',1,30004182,2,212,181,157,0,86,279,79,61,101,0,0,0,0,0,0,0,0,0,48,52,0,0,57),(1872,'2015-03-14 14:56:58','2015-10-11 16:46:38',1,30001571,0,0,0,0,0,0,0,0,0,0,1,0,0,75,0,90,90,0,0,0,0,0,0,0),(1873,'2015-03-14 14:56:58','2015-10-11 16:46:38',1,30003365,25,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0),(1874,'2015-03-14 14:56:58','2015-03-14 14:56:58',1,30000437,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(1875,'2015-03-14 14:56:58','2015-10-11 16:46:38',1,30003825,6,28,11,75,33,27,45,6,8,6,5,1,3,21,5,36,41,27,0,12,5,22,24,5),(1876,'2015-03-14 14:56:58','2015-10-11 16:46:38',1,30003466,35,0,0,17,38,80,11,0,0,1,0,9,1,28,0,79,80,142,0,18,74,9,23,36),(1877,'2015-03-14 14:56:58','2015-10-11 16:46:38',1,30003381,4,77,4,16,100,6,36,165,88,16,43,40,9,79,39,69,126,12,45,151,17,41,31,141),(1878,'2015-03-14 14:56:58','2015-10-11 16:46:38',1,30000796,116,902,0,366,901,921,0,0,0,0,0,0,0,0,0,0,0,0,0,4,78,57,27,3),(1879,'2015-03-14 14:56:58','2015-10-11 16:46:38',1,30002060,0,41,123,0,5,86,1,3,17,1,11,29,32,36,6,1,2,15,7,2,0,15,20,14),(1880,'2015-03-14 14:56:58','2015-10-11 16:46:38',1,30003839,18,17,11,30,22,13,34,7,15,3,6,10,10,6,23,9,16,7,7,14,0,5,4,13),(1881,'2015-03-14 14:56:58','2015-10-11 16:46:38',1,30003408,21,131,77,116,0,37,66,51,62,215,61,145,152,22,363,247,143,16,7,12,68,82,22,123),(1882,'2015-03-14 14:56:58','2015-10-11 16:46:38',1,30003385,51,63,146,32,17,4,120,3,44,9,56,173,48,58,32,77,157,159,35,55,46,20,41,100),(1883,'2015-03-14 14:56:58','2015-10-11 16:46:38',1,30001023,0,3,135,0,0,0,5,0,21,0,0,0,1,15,86,87,24,0,2,15,1,0,5,17),(1884,'2015-03-14 14:56:58','2015-10-11 16:46:38',1,30004314,179,0,0,0,0,47,0,0,1,97,0,46,3,0,0,0,0,0,0,0,0,0,0,18),(1885,'2015-03-14 14:56:58','2015-10-11 16:46:38',1,30001985,0,0,0,0,3,0,0,0,0,0,0,21,53,0,0,0,0,0,5,2,0,5,53,0),(1886,'2015-03-14 14:56:58','2015-10-11 16:46:38',1,30001181,0,0,0,0,0,0,0,0,5,0,0,0,0,1,0,2,2,0,0,0,0,0,0,0),(1887,'2015-03-14 14:56:58','2015-10-11 16:46:38',1,30002369,2,84,10,0,11,11,0,19,645,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(1888,'2015-03-14 14:56:58','2015-10-11 16:46:38',1,30001252,0,0,11,0,0,0,0,0,0,0,7,16,18,9,0,6,6,0,0,0,0,0,9,0),(1889,'2015-03-14 14:56:58','2015-10-11 16:46:38',1,30005281,99,68,6,0,0,0,0,0,67,0,0,0,29,0,0,0,9,0,0,7,22,0,0,0),(1890,'2015-03-14 14:56:58','2015-10-11 16:46:38',1,30003392,217,117,77,86,27,31,118,96,142,15,289,220,107,87,49,154,208,211,138,65,94,203,160,63),(1891,'2015-03-14 14:56:58','2015-10-11 16:46:38',1,30002543,64,150,334,176,178,48,112,104,64,181,380,396,251,230,523,251,278,398,272,589,365,334,183,214),(1892,'2015-03-14 14:56:58','2015-10-11 16:46:38',1,30002085,0,0,2,0,7,19,125,0,20,38,47,33,19,11,56,112,75,17,16,33,91,6,6,47),(1893,'2015-03-14 14:56:58','2015-10-11 16:46:38',1,30003281,0,0,0,2,0,0,28,0,17,0,0,0,0,0,69,69,0,0,2,121,0,0,0,0),(1894,'2015-03-14 14:56:58','2015-10-11 16:46:38',1,30001769,0,0,29,10,3,0,0,68,0,6,70,107,240,7,226,362,309,443,6,6,42,145,347,379),(1895,'2015-03-14 14:56:58','2015-10-11 16:46:38',1,30002962,15,58,43,29,92,93,12,34,5,11,6,7,12,11,17,4,4,9,6,0,2,5,4,14),(1896,'2015-03-14 14:56:58','2015-10-11 16:46:38',1,30000559,0,7,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(1897,'2015-03-14 14:56:58','2015-03-14 14:56:58',1,30002598,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(1898,'2015-03-14 14:56:58','2015-03-14 14:56:58',1,30000666,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(1899,'2015-03-14 14:56:58','2015-10-11 16:46:38',1,30005103,0,0,0,0,63,0,0,0,48,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(1900,'2015-03-14 14:56:58','2015-10-11 16:46:38',1,30000856,0,111,326,151,0,0,0,20,143,79,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(1901,'2015-03-14 14:56:58','2015-10-11 16:46:38',1,30003192,142,0,89,100,0,0,0,0,3,77,147,71,0,8,4,4,0,0,0,0,48,0,0,0),(1902,'2015-03-14 14:56:58','2015-10-11 16:46:38',1,30004653,64,510,1240,1258,1900,1519,1057,810,284,47,284,302,34,140,42,75,78,299,43,34,129,145,463,583),(1903,'2015-03-14 14:56:58','2015-03-14 14:56:58',1,30004414,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(1904,'2015-03-14 14:56:58','2015-10-11 16:46:38',1,30004327,97,426,110,880,1235,1045,603,1239,900,378,89,68,120,112,166,246,400,392,203,220,212,358,133,525),(1905,'2015-03-14 14:56:58','2015-10-11 16:46:38',1,30004784,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,9,0,0,0,0,0,0,0),(1906,'2015-03-14 14:56:58','2015-10-11 16:46:38',1,30005184,81,0,0,0,0,0,0,307,112,0,0,26,354,0,516,635,373,41,0,0,0,0,103,0),(1907,'2015-03-14 14:56:58','2015-10-11 16:46:38',1,30000279,252,1047,59,307,552,763,547,276,296,248,214,94,0,0,8,2,0,0,242,72,239,26,20,9),(1908,'2015-03-14 14:56:58','2015-10-11 16:46:38',1,30003737,0,352,340,590,355,391,46,0,52,96,22,4,464,504,522,346,354,411,299,104,0,265,334,132),(1909,'2015-03-14 14:56:58','2015-10-11 16:46:38',1,30000578,71,161,108,34,174,113,78,95,84,83,173,92,520,10,11,3,10,0,141,2,3,149,317,257),(1910,'2015-03-14 14:56:58','2015-10-11 16:46:38',1,30000897,0,0,0,76,65,45,0,0,0,0,0,0,0,0,0,0,0,0,17,0,0,0,0,0),(1911,'2015-03-14 14:56:58','2015-03-14 14:56:58',1,30005183,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(1912,'2015-03-14 14:56:58','2015-03-14 14:56:58',1,30000416,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(1913,'2015-03-14 14:56:58','2015-03-14 14:56:58',1,30001635,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(1914,'2015-03-14 14:56:58','2015-10-11 16:46:38',1,30004929,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,20,35,0,0,0),(1915,'2015-03-14 14:56:58','2015-10-11 16:46:38',1,30000934,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(1916,'2015-03-14 14:56:58','2015-10-11 16:46:38',1,30002019,0,0,104,73,0,0,195,0,0,0,0,0,0,0,0,0,0,0,0,3,124,0,0,0),(1917,'2015-03-14 14:56:58','2015-10-11 16:46:38',1,30004032,9,0,108,42,40,45,0,0,0,441,689,625,542,131,335,552,749,553,0,0,102,229,9,713),(1918,'2015-03-14 14:56:58','2015-10-11 16:46:38',1,30000572,0,10,24,72,0,0,3,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(1919,'2015-03-14 14:56:58','2015-10-11 16:46:38',1,30000853,0,0,0,0,0,0,12,0,0,0,0,0,0,0,0,0,1,0,4,0,0,0,0,0),(1920,'2015-03-14 14:56:58','2015-10-11 16:46:38',1,30004757,0,0,0,0,0,0,0,0,0,23,17,13,18,0,1,4,4,5,0,0,20,0,0,537),(1921,'2015-03-14 14:56:58','2015-10-11 16:46:38',1,30001064,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,20,80,0,0,0,0,0,0,0),(1922,'2015-03-14 14:56:58','2015-10-11 16:46:38',1,30001906,13,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,3,0,0),(1923,'2015-03-14 14:56:58','2015-10-11 16:46:38',1,30003126,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,4,4,0,0),(1924,'2015-03-14 14:56:58','2015-03-14 14:56:58',1,30001801,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(1925,'2015-03-14 14:56:58','2015-10-11 16:46:38',1,30001087,0,0,0,0,0,0,0,0,0,0,9,11,7,2,12,9,13,92,0,0,0,0,0,0),(1926,'2015-03-14 14:56:58','2015-10-11 16:46:38',1,30004503,52,0,0,0,0,0,0,0,0,1,4,8,3,0,0,0,4,0,0,0,0,0,5,15),(1927,'2015-03-14 14:56:58','2015-10-11 16:46:38',1,30003751,9,0,0,14,69,49,63,53,73,9,8,36,29,6,24,43,29,18,0,26,8,169,180,30),(1928,'2015-03-14 14:56:58','2015-10-11 16:46:38',1,30004867,0,0,0,0,0,0,0,0,0,0,0,0,51,0,0,0,0,0,0,156,35,0,0,0),(1929,'2015-03-14 14:56:58','2015-10-11 16:46:38',1,30005187,0,7,0,0,0,11,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(1930,'2015-03-14 14:56:58','2015-10-11 16:46:38',1,30004652,0,0,3,107,0,0,0,0,0,0,0,0,17,0,0,0,0,0,0,0,0,0,0,9),(1931,'2015-03-14 14:56:58','2015-10-11 16:46:38',1,30000695,0,0,88,283,30,29,0,198,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(1932,'2015-03-14 14:56:58','2015-10-11 16:46:38',1,30000804,0,0,0,0,0,0,0,0,0,0,7,19,23,14,16,9,0,0,0,0,0,0,0,0),(1933,'2015-03-14 14:56:58','2015-10-11 16:46:38',1,30004013,0,0,0,0,0,0,3,0,0,0,0,0,0,21,0,0,0,10,0,0,0,0,0,0),(1934,'2015-03-14 14:56:58','2015-10-11 16:46:38',1,30000497,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,4,0,116,0),(1935,'2015-03-14 14:56:58','2015-10-11 16:46:38',1,30000810,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(1936,'2015-03-14 14:56:58','2015-10-11 16:46:38',1,30000754,0,0,9,0,20,23,17,6,43,0,71,47,138,0,11,52,209,52,0,90,182,64,60,1),(1937,'2015-03-14 14:56:58','2015-03-14 14:56:58',1,30000332,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(1938,'2015-03-14 14:56:58','2015-10-11 16:46:38',1,30002826,0,0,0,0,0,0,0,0,143,0,0,3,0,0,0,0,0,179,0,0,0,0,0,0),(1939,'2015-03-14 14:56:58','2015-10-11 16:46:38',1,30001171,0,0,0,8,12,0,0,0,0,0,0,0,0,27,0,0,0,0,0,0,0,0,0,0),(1940,'2015-03-14 14:56:58','2015-10-11 16:46:38',1,30000959,0,0,0,0,0,0,72,0,0,1,0,0,0,0,0,0,0,0,0,0,0,133,0,0),(1941,'2015-03-14 14:56:58','2015-10-11 16:46:38',1,30004507,0,0,0,0,0,0,0,44,0,0,0,0,0,0,0,0,0,2,0,0,0,183,20,0),(1942,'2015-03-14 14:56:58','2015-10-11 16:46:38',1,30000600,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,5,0,0),(1943,'2015-03-14 14:56:58','2015-10-11 16:46:38',1,30003269,0,0,0,20,105,92,0,0,4,23,30,63,55,17,27,64,46,60,0,0,0,0,0,0),(1944,'2015-03-14 14:56:58','2015-10-11 16:46:38',1,30002381,0,105,273,298,75,57,53,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(1945,'2015-03-14 14:56:58','2015-10-11 16:46:38',1,30001957,0,0,0,72,11,11,0,0,0,0,0,0,0,0,0,0,0,0,209,0,0,0,0,0),(1946,'2015-03-14 14:56:58','2015-10-11 16:46:38',1,30002152,0,0,0,0,0,0,0,0,0,0,0,0,0,98,72,20,0,0,41,0,0,0,0,135),(1947,'2015-03-14 14:56:58','2015-03-14 14:56:58',1,30000981,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(1948,'2015-03-14 14:56:58','2015-10-11 16:46:38',1,30004046,0,0,0,9,0,0,0,0,0,0,0,0,0,0,29,0,0,0,0,0,0,0,0,5),(1949,'2015-03-14 14:56:58','2015-10-11 16:46:38',1,30000913,0,0,0,2,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(1950,'2015-03-14 14:56:58','2015-10-11 16:46:38',1,30002320,0,733,325,480,173,227,344,874,320,0,0,0,0,41,1,0,0,0,0,0,0,0,0,0),(1951,'2015-03-14 14:56:58','2015-10-11 16:46:38',1,30001153,0,0,0,0,23,128,0,0,0,0,0,0,0,26,2,2,0,1,2,7,4,0,0,0),(1952,'2015-03-14 14:56:58','2015-03-14 14:56:58',1,30000500,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(1953,'2015-03-14 14:56:58','2015-10-11 16:46:38',1,30001888,0,54,0,0,49,67,54,0,5,54,6,42,86,136,0,0,8,124,39,102,37,52,45,22),(1954,'2015-03-14 14:56:58','2015-10-11 16:46:38',1,30000233,15,721,629,446,655,804,390,174,308,0,0,0,0,0,313,234,109,264,0,0,0,36,37,0),(1955,'2015-03-14 14:56:58','2015-10-11 16:46:38',1,30002221,26,41,14,7,21,24,564,102,29,124,9,13,0,0,191,79,154,0,29,91,70,42,0,168),(1956,'2015-03-14 14:56:58','2015-10-11 16:46:38',1,30003505,29,119,56,83,75,20,89,55,14,6,22,64,9,56,100,19,84,61,57,30,42,187,189,95),(1957,'2015-03-14 14:56:58','2015-10-11 16:46:38',1,30004276,360,115,587,558,0,0,9,60,112,119,502,958,105,16,140,229,252,102,0,355,422,6,85,37),(1958,'2015-03-14 14:56:58','2015-10-11 16:46:38',1,30003473,23,47,76,93,109,101,7,36,26,153,135,132,77,67,78,188,158,56,30,90,97,114,144,28),(1959,'2015-03-14 14:56:58','2015-10-11 16:46:38',1,30003002,0,15,92,20,45,26,12,15,34,0,0,0,0,0,6,3,27,0,21,13,14,29,3,45),(1960,'2015-03-14 14:56:58','2015-10-11 16:46:38',1,30003938,0,0,0,1,0,0,0,0,0,0,0,0,0,48,0,0,0,0,0,0,0,0,0,142),(1961,'2015-03-14 14:56:58','2015-10-11 16:46:38',1,30001049,0,0,0,0,0,1,0,0,5,0,0,0,0,0,0,0,0,0,0,0,0,16,67,0),(1962,'2015-03-14 14:56:58','2015-10-11 16:46:38',1,30000044,16,155,7,8,0,0,1,8,0,9,51,44,0,81,58,42,9,6,107,73,2,57,80,9),(1963,'2015-03-14 14:56:58','2015-10-11 16:46:38',1,30002651,1,1,6,0,0,0,26,0,0,4,3,2,146,29,0,0,38,0,0,0,0,10,0,0),(1964,'2015-03-14 14:56:58','2015-10-11 16:46:38',1,30003541,4,12,0,54,2,7,26,0,0,1,0,0,30,0,0,0,58,19,0,27,69,0,11,17),(1965,'2015-03-14 14:56:58','2015-10-11 16:46:38',1,30001256,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,9,0,0),(1966,'2015-03-14 14:56:58','2015-10-11 16:46:38',1,30002643,308,217,133,217,149,157,37,39,130,261,283,154,102,181,197,175,184,175,104,107,69,86,110,120),(1967,'2015-03-14 14:56:58','2015-10-11 16:46:38',1,30003599,11,0,0,0,60,5,6,55,14,0,0,0,37,0,15,40,43,20,0,0,0,0,0,0),(1968,'2015-03-14 14:56:58','2015-10-11 16:46:38',1,30002321,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,83,41),(1969,'2015-03-14 14:56:58','2015-10-11 16:46:38',1,30002881,0,0,67,0,0,0,85,0,15,0,0,0,0,0,4,0,0,12,0,0,0,0,0,0),(1970,'2015-03-14 14:56:58','2015-10-11 16:46:38',1,30002827,0,0,0,0,0,0,0,0,0,0,0,0,0,0,39,39,0,0,0,0,0,0,0,0),(1971,'2015-03-14 14:56:58','2015-10-11 16:46:38',1,30003718,286,28,28,3,11,8,7,111,116,164,108,87,10,23,19,78,95,270,8,106,122,151,328,131),(1972,'2015-03-14 14:56:58','2015-10-11 16:46:38',1,30003276,0,0,32,0,0,0,25,11,3,0,0,0,0,0,2,2,1,0,0,0,121,0,0,0),(1973,'2015-03-14 14:56:58','2015-10-11 16:46:38',1,30004043,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,7),(1974,'2015-03-14 14:56:58','2015-10-11 16:46:38',1,30002423,0,0,0,0,121,0,0,0,0,1,0,6,16,0,0,0,0,0,0,0,0,0,2,6),(1975,'2015-03-14 14:56:58','2015-10-11 16:46:38',1,30004821,0,0,0,0,0,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,58,19,0),(1976,'2015-03-14 14:56:58','2015-10-11 16:46:38',1,30002408,47,207,38,27,123,121,6,148,63,43,385,85,9,24,58,48,31,0,107,66,103,0,38,6),(1977,'2015-03-14 14:56:58','2015-10-11 16:46:38',1,30005030,1,0,1,14,0,0,29,0,26,2,6,0,0,1,11,49,40,5,1,44,7,0,0,169),(1978,'2015-03-14 14:56:58','2015-10-11 16:46:38',1,30000050,0,9,60,230,4,4,0,0,470,31,0,0,0,0,0,0,0,0,0,231,167,0,0,0),(1979,'2015-03-14 14:56:58','2015-10-11 16:46:38',1,30001709,45,7,197,59,33,23,53,73,152,67,44,100,14,146,33,36,105,60,0,26,32,0,165,4),(1980,'2015-03-14 14:56:58','2015-10-11 16:46:38',1,30004263,0,76,0,32,0,0,0,2,0,0,0,15,48,0,0,0,0,0,0,0,0,0,0,0),(1981,'2015-03-14 14:56:58','2015-10-11 16:46:38',1,30002628,327,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(1982,'2015-03-14 14:56:58','2015-10-11 16:46:38',1,30002345,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,5,0,0,0,0,0,0,0),(1983,'2015-03-14 14:56:58','2015-10-11 16:46:38',1,30000226,0,3,0,9,18,34,43,104,32,0,0,0,0,9,0,0,0,10,0,0,0,0,0,80),(1984,'2015-03-14 14:56:58','2015-10-11 16:46:38',1,30001344,0,0,0,0,0,0,17,0,0,0,0,0,0,0,0,0,0,0,76,0,0,0,0,0),(1985,'2015-03-14 14:56:58','2015-03-14 14:56:58',1,30000418,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(1986,'2015-03-14 14:56:58','2015-10-11 16:46:38',1,30000495,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,24,0,0,0,0,0,0),(1987,'2015-03-14 14:56:58','2015-10-11 16:46:38',1,30004254,0,61,114,116,0,1,26,18,0,84,91,64,0,0,67,43,26,13,1,41,0,67,33,7),(1988,'2015-03-14 14:56:58','2015-10-11 16:46:38',1,30043410,76,16,111,0,0,11,3,123,42,44,27,14,37,26,137,94,51,99,110,44,83,96,322,1),(1989,'2015-03-14 14:56:58','2015-10-11 16:46:38',1,30003442,82,54,139,85,65,81,72,128,64,217,62,59,99,120,60,49,245,132,40,163,86,81,168,17),(1990,'2015-03-14 14:56:58','2015-10-11 16:46:38',1,30004110,70,59,119,60,7,76,15,108,35,20,37,67,35,216,92,98,201,43,40,12,100,136,98,58),(1991,'2015-03-14 14:56:58','2015-10-11 16:46:38',1,30003691,251,72,158,31,3,46,189,231,8,0,90,81,19,8,157,25,8,110,221,45,103,171,45,18),(1992,'2015-03-14 14:56:58','2015-10-11 16:46:38',1,30003906,0,0,5,37,94,16,119,33,0,0,0,0,0,93,0,0,0,138,0,52,63,7,41,4),(1993,'2015-03-14 14:56:58','2015-10-11 16:46:39',1,30002335,0,0,0,0,0,0,15,0,0,899,241,0,173,597,561,431,160,0,274,270,313,152,0,0),(1994,'2015-03-14 14:56:58','2015-10-11 16:46:39',1,30003234,0,84,140,262,2,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(1995,'2015-03-14 14:56:58','2015-10-11 16:46:39',1,30002316,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,50,0,0),(1996,'2015-03-14 14:56:58','2015-10-11 16:46:39',1,30004980,3,10,14,19,17,24,15,61,5,4,6,11,37,79,0,0,0,21,27,31,9,1,19,7),(1997,'2015-03-14 14:56:58','2015-03-14 14:56:58',1,30005101,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(1998,'2015-03-14 14:56:58','2015-10-11 16:46:39',1,30002082,20,11,0,0,76,77,0,0,46,20,27,7,13,17,15,6,2,27,104,42,31,15,12,30),(1999,'2015-03-14 14:56:58','2015-10-11 16:46:39',1,30003382,11,102,5,251,46,0,37,0,26,43,57,87,49,5,99,49,13,24,59,53,25,28,73,207),(2000,'2015-03-14 14:56:58','2015-10-11 16:46:39',1,30002677,111,58,27,72,5,36,65,61,122,55,44,46,151,95,62,93,216,116,4,76,82,69,103,48),(2001,'2015-03-14 14:56:58','2015-10-11 16:46:39',1,30004732,83,0,0,11,0,0,0,0,0,0,15,1,0,0,239,35,0,82,21,0,58,76,56,75),(2002,'2015-03-14 14:56:58','2015-10-11 16:46:39',1,30002898,24,39,69,0,94,215,5,0,0,0,0,0,0,14,1,58,100,21,0,0,0,0,86,204),(2003,'2015-03-14 14:56:58','2015-10-11 16:46:39',1,30000227,0,0,59,0,0,0,37,0,0,55,25,24,0,22,79,172,144,0,22,0,27,8,36,3),(2004,'2015-03-14 14:56:58','2015-10-11 16:46:39',1,30000484,97,252,0,0,32,0,0,2,0,83,109,60,197,79,62,208,289,143,0,45,57,0,258,881),(2005,'2015-03-14 14:56:58','2015-10-11 16:46:39',1,30002156,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,4,0,0,0),(2006,'2015-03-14 14:56:58','2015-10-11 16:46:39',1,30003118,305,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,23,0,0,0,0,0,0),(2007,'2015-03-14 14:56:58','2015-10-11 16:46:39',1,30000809,0,0,0,0,0,0,49,11,7,3,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(2008,'2015-03-14 14:56:58','2015-03-14 14:56:58',1,30001638,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(2009,'2015-03-14 14:56:58','2015-03-14 14:56:58',1,30001487,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(2010,'2015-03-14 14:56:58','2015-10-11 16:46:39',1,30001544,0,0,0,38,0,0,0,0,0,2,0,2,2,104,95,86,0,3,0,44,0,265,0,0),(2011,'2015-03-14 14:56:58','2015-10-11 16:46:39',1,30002891,0,113,220,249,222,234,0,211,242,32,0,0,0,0,43,19,0,306,0,0,0,135,1,31),(2012,'2015-03-14 14:56:58','2015-10-11 16:46:39',1,30001148,34,0,4,0,0,0,0,11,17,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(2013,'2015-03-14 14:56:58','2015-10-11 16:46:39',1,30004303,13,21,1,1,23,14,58,128,8,21,1,1,0,8,0,0,0,0,0,0,0,0,13,19),(2014,'2015-03-14 14:56:58','2015-10-11 16:46:39',1,30023489,36,44,57,28,63,15,48,0,64,36,32,28,57,45,239,71,54,104,1,30,0,50,20,110),(2015,'2015-03-14 14:56:58','2015-10-11 16:46:39',1,30002663,12,105,165,187,48,68,140,120,163,151,199,303,103,208,357,197,181,398,139,136,221,226,126,130),(2016,'2015-03-14 14:56:58','2015-10-11 16:46:39',1,30000023,0,26,0,28,10,28,21,19,33,30,20,148,0,12,0,18,30,87,19,157,73,127,34,0),(2017,'2015-03-14 14:56:58','2015-10-11 16:46:39',1,30004058,0,0,0,0,0,0,87,0,0,11,30,30,0,105,0,68,81,0,0,0,0,0,0,0),(2018,'2015-03-14 14:56:58','2015-10-11 16:46:39',1,30002630,46,16,8,22,10,5,36,19,14,3,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(2019,'2015-03-14 14:56:58','2015-03-14 14:56:58',1,30001637,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(2020,'2015-03-14 14:56:58','2015-10-11 16:46:39',1,30000478,0,9,0,83,0,0,193,0,0,125,0,0,0,0,0,0,0,119,0,0,92,0,0,0),(2021,'2015-03-14 14:56:58','2015-10-11 16:46:39',1,30003826,23,32,5,22,7,12,0,8,8,0,13,8,3,4,4,6,3,7,0,1,0,9,16,20),(2022,'2015-03-14 14:56:58','2015-10-11 16:46:39',1,30002526,497,400,414,164,434,228,487,180,284,411,419,331,380,532,560,409,638,632,337,577,632,710,641,576),(2023,'2015-03-14 14:56:58','2015-10-11 16:46:39',1,30003036,241,418,758,505,365,309,395,199,466,413,502,538,499,787,1099,1197,1044,735,785,672,868,911,670,859),(2024,'2015-03-14 14:56:58','2015-10-11 16:46:39',1,30003394,136,106,91,140,148,245,116,23,149,355,62,80,200,128,190,202,183,118,123,51,128,46,52,89),(2025,'2015-03-14 14:56:58','2015-10-11 16:46:39',1,30003420,127,226,218,80,20,72,164,33,55,227,199,169,256,33,154,164,151,161,40,79,121,75,40,103),(2026,'2015-03-14 14:56:58','2015-10-11 16:46:39',1,30002090,23,4,0,0,7,10,3,0,1,12,12,32,33,8,13,3,10,14,5,4,11,7,22,24),(2027,'2015-03-14 14:56:58','2015-10-11 16:46:39',1,30002734,254,511,382,455,254,241,293,232,440,290,318,585,412,558,600,595,1170,615,372,470,412,521,658,484),(2028,'2015-03-14 14:56:58','2015-10-11 16:46:39',1,30000168,309,111,504,340,198,90,299,115,197,221,151,396,283,294,508,321,339,412,162,192,247,344,405,242),(2029,'2015-03-14 14:56:58','2015-10-11 16:46:39',1,30002180,0,12,6,0,20,24,16,9,0,0,0,0,0,0,0,0,4,0,0,0,0,0,0,0),(2030,'2015-03-14 14:56:58','2015-10-11 16:46:39',1,30003467,0,26,2,0,0,0,0,0,0,0,0,0,0,0,0,3,3,0,0,0,0,3,0,0),(2031,'2015-03-14 14:56:58','2015-03-14 14:56:58',1,30000398,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(2032,'2015-03-14 14:56:58','2015-10-11 16:46:39',1,30000219,10,335,59,58,253,133,15,191,0,0,0,0,168,204,0,35,43,0,42,76,333,0,0,0),(2033,'2015-03-14 14:56:58','2015-10-11 16:46:39',1,30003710,34,38,0,0,0,0,0,0,0,0,0,31,0,17,0,4,10,11,6,17,129,6,0,18),(2034,'2015-03-14 14:56:58','2015-10-11 16:46:39',1,30001364,496,702,547,408,507,455,561,326,368,423,308,443,397,689,736,608,471,335,316,575,372,592,679,546),(2035,'2015-03-14 14:56:58','2015-10-11 16:46:39',1,30003095,104,5,5,19,0,24,16,0,3,29,0,0,9,64,1,5,9,120,43,78,38,6,13,0),(2036,'2015-03-14 14:56:58','2015-10-11 16:46:39',1,30000199,0,0,0,0,2,3,0,47,2,108,95,18,13,6,16,8,8,0,49,7,90,0,0,0),(2037,'2015-03-14 14:56:58','2015-10-11 16:46:39',1,30000017,4,0,0,0,9,0,69,0,32,48,0,0,0,0,0,0,0,0,0,5,2,0,0,2),(2038,'2015-03-14 14:56:58','2015-10-11 16:46:39',1,30001852,0,0,0,0,0,0,0,0,0,3,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(2039,'2015-03-14 14:56:58','2015-10-11 16:46:39',1,30004161,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,145,0),(2040,'2015-03-14 14:56:58','2015-10-11 16:46:39',1,30004197,0,3,11,6,0,0,5,12,39,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(2041,'2015-03-14 14:56:58','2015-10-11 16:46:39',1,30001775,72,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(2042,'2015-03-14 14:56:58','2015-03-14 14:56:58',1,30000906,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(2043,'2015-03-14 14:56:58','2015-10-11 16:46:39',1,30002021,0,0,113,215,121,106,0,1,0,2,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(2044,'2015-03-14 14:56:58','2015-10-11 16:46:39',1,30004718,6,0,0,0,0,0,0,0,4,4,0,0,0,5,56,64,57,25,27,0,0,0,0,0),(2045,'2015-03-14 14:56:58','2015-10-11 16:46:39',1,30003711,241,42,0,70,0,0,137,3,364,47,313,310,21,181,77,260,336,182,3,1,13,282,227,21),(2046,'2015-03-14 14:56:58','2015-03-14 14:56:58',1,30001606,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(2047,'2015-03-14 14:56:58','2015-10-11 16:46:39',1,30000835,0,0,0,0,0,0,0,0,0,0,13,14,0,0,0,0,0,0,0,0,0,0,0,0),(2048,'2015-03-14 14:56:58','2015-10-11 16:46:39',1,30000850,0,7,26,12,21,19,254,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(2049,'2015-03-14 14:56:58','2015-10-11 16:46:39',1,30000675,158,127,911,520,916,726,80,0,0,0,0,4,21,0,3,5,2,0,0,0,0,8,10,7),(2050,'2015-03-14 14:56:58','2015-10-11 16:46:39',1,30002128,296,0,101,18,40,45,11,0,211,0,0,0,0,11,0,0,0,17,0,0,0,0,0,118),(2051,'2015-03-14 14:56:58','2015-10-11 16:46:39',1,30001186,0,0,0,0,170,171,0,0,0,0,0,0,0,173,19,14,176,221,121,229,196,21,49,26),(2052,'2015-03-14 14:56:58','2015-10-11 16:46:39',1,30003213,186,16,2,372,18,72,18,0,15,26,0,0,12,0,9,46,96,122,0,0,0,0,0,116),(2053,'2015-03-14 14:56:58','2015-10-11 16:46:39',1,30001853,0,0,0,0,0,0,0,0,0,15,92,92,0,0,0,0,1,0,0,0,0,55,0,0),(2054,'2015-03-14 14:56:58','2015-10-11 16:46:39',1,30002878,1,0,0,0,0,50,23,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(2055,'2015-03-14 14:56:58','2015-10-11 16:46:39',1,30001041,16,0,56,37,118,340,7,0,0,70,68,112,209,66,34,108,132,339,2,4,38,303,72,41),(2056,'2015-03-14 14:56:58','2015-10-11 16:46:39',1,30003949,0,0,3,0,4,4,0,0,0,12,130,131,0,0,32,254,402,93,0,0,0,21,7,30),(2057,'2015-03-14 14:56:58','2015-10-11 16:46:39',1,30003161,510,26,42,316,158,195,727,91,241,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(2058,'2015-03-14 14:56:58','2015-10-11 16:46:39',1,30003703,231,0,30,69,4,4,7,60,0,0,0,0,0,0,0,0,0,133,0,0,0,0,0,0),(2059,'2015-03-14 14:56:58','2015-10-11 16:46:39',1,30003367,0,2,0,0,0,0,0,132,22,0,0,0,0,0,0,0,0,0,0,0,1,71,0,160),(2060,'2015-03-14 14:56:58','2015-10-11 16:46:39',1,30002476,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,27,59,20,0,0,0),(2061,'2015-03-14 14:56:58','2015-10-11 16:46:39',1,30001183,435,0,37,35,158,299,0,87,9,60,136,209,278,667,160,138,218,11,133,350,407,124,135,135),(2062,'2015-03-14 14:56:58','2015-10-11 16:46:39',1,30001227,0,0,0,0,0,0,6,0,0,7,3,3,4,0,0,0,0,0,5,1,0,5,9,4),(2063,'2015-03-14 14:56:58','2015-10-11 16:46:39',1,30003772,161,68,24,95,213,97,58,90,9,0,12,114,96,58,326,411,388,62,174,270,272,166,38,88),(2064,'2015-03-14 14:56:58','2015-10-11 16:46:39',1,30004892,14,10,2,16,0,3,0,163,0,145,181,237,201,255,246,105,403,290,100,63,69,203,271,397),(2065,'2015-03-14 14:56:58','2015-10-11 16:46:39',1,30004945,0,0,0,0,0,0,0,0,81,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(2066,'2015-03-14 14:56:58','2015-10-11 16:46:39',1,30004876,14,169,542,91,137,166,41,141,165,0,31,155,19,0,64,45,59,47,0,0,0,5,3,8),(2067,'2015-03-14 14:56:58','2015-03-14 14:56:58',1,30000338,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(2068,'2015-03-14 14:56:58','2015-10-11 16:46:39',1,30000778,0,0,0,0,0,0,0,34,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(2069,'2015-03-14 14:56:58','2015-10-11 16:46:39',1,30001002,9,62,23,10,46,35,9,75,62,163,99,86,145,80,88,80,98,83,52,28,52,141,74,31),(2070,'2015-03-14 14:56:58','2015-10-11 16:46:39',1,30005113,121,322,0,60,0,12,5,173,391,44,72,24,23,39,17,14,9,15,0,7,22,15,10,0),(2071,'2015-03-14 14:56:58','2015-10-11 16:46:39',1,30001802,0,0,0,0,0,0,88,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(2072,'2015-03-14 14:56:58','2015-10-11 16:46:39',1,30003155,38,0,0,0,0,0,234,57,127,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(2073,'2015-03-14 14:56:58','2015-03-14 14:56:58',1,30002853,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(2074,'2015-03-14 14:56:58','2015-10-11 16:46:39',1,30000213,258,172,3,0,29,30,22,0,41,103,18,0,0,0,0,0,0,0,0,0,0,0,0,0),(2075,'2015-03-14 14:56:58','2015-10-11 16:46:39',1,30004696,66,96,108,92,85,155,89,0,129,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(2076,'2015-03-14 14:56:58','2015-10-11 16:46:39',1,30001987,0,0,0,0,0,0,0,9,4,0,0,0,0,3,1,0,0,0,0,92,1,0,0,18),(2077,'2015-03-14 14:56:58','2015-10-11 16:46:39',1,30004793,0,40,0,0,967,708,644,70,822,0,0,0,0,0,165,127,0,279,0,0,0,16,189,201),(2078,'2015-03-14 14:56:58','2015-10-11 16:46:39',1,30001848,4,54,43,181,72,60,47,37,76,405,769,710,200,350,571,601,552,313,78,384,366,456,85,443),(2079,'2015-03-14 14:56:58','2015-03-14 14:56:58',1,30001607,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(2080,'2015-03-14 14:56:58','2015-10-11 16:46:39',1,30004962,1131,514,66,290,377,591,158,1458,512,30,88,345,310,241,6,0,0,51,616,301,114,133,346,81),(2081,'2015-03-14 14:56:58','2015-10-11 16:46:39',1,30002301,2,0,84,0,0,0,5,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,2),(2082,'2015-03-14 14:56:58','2015-10-11 16:46:39',1,30001036,27,10,0,31,15,11,87,61,64,223,113,140,169,242,117,91,193,340,31,148,68,71,81,96),(2083,'2015-03-14 14:56:58','2015-10-11 16:46:39',1,30004721,0,0,0,7,19,0,9,0,1,0,0,0,21,13,114,72,29,48,27,26,79,0,46,21),(2084,'2015-03-14 14:56:58','2015-10-11 16:46:39',1,30004631,91,78,48,109,38,13,79,0,0,0,5,5,53,0,0,0,0,0,3,22,0,8,0,0),(2085,'2015-03-14 14:56:58','2015-10-11 16:46:39',1,30001569,0,0,0,0,0,42,0,0,0,0,1,0,55,4,0,0,0,138,0,0,0,0,0,0),(2086,'2015-03-14 14:56:58','2015-10-11 16:46:39',1,30003184,0,0,0,0,0,3,0,0,0,0,54,105,0,0,56,96,103,0,0,4,0,0,0,258),(2087,'2015-03-14 14:56:58','2015-10-11 16:46:39',1,30004534,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,93,47),(2088,'2015-03-14 14:56:58','2015-10-11 16:46:39',1,30003133,4,0,0,0,2,66,0,0,0,116,0,0,0,61,59,20,64,1,0,68,152,0,0,0),(2089,'2015-03-14 14:56:58','2015-10-11 16:46:39',1,30003636,0,0,0,0,0,0,0,0,0,136,48,0,0,0,0,0,0,0,0,0,0,105,0,3),(2090,'2015-03-14 14:56:58','2015-03-14 14:56:58',1,30000537,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(2091,'2015-03-14 14:56:58','2015-10-11 16:46:39',1,30004854,74,0,0,0,0,0,0,64,4,193,294,237,100,41,146,167,185,189,0,66,182,54,81,9),(2092,'2015-03-14 14:56:58','2015-10-11 16:46:39',1,30000690,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,11,0,0,0,0,0,0),(2093,'2015-03-14 14:56:58','2015-10-11 16:46:39',1,30004664,0,0,0,100,0,0,0,0,0,0,0,0,0,0,31,1,0,0,0,0,0,0,0,0),(2094,'2015-03-14 14:56:58','2015-10-11 16:46:39',1,30004697,0,0,0,0,0,0,0,0,0,0,12,8,0,0,0,0,0,0,0,0,0,0,0,0),(2095,'2015-03-14 14:56:58','2015-03-14 14:56:58',1,30001501,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(2096,'2015-03-14 14:56:58','2015-03-14 14:56:58',1,30003101,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(2097,'2015-03-14 14:56:58','2015-10-11 16:46:39',1,30000460,10,0,6,12,1,0,0,49,0,143,103,136,194,151,83,84,52,16,1,410,125,52,128,387),(2098,'2015-03-14 14:56:58','2015-10-11 16:46:39',1,30002861,0,0,32,0,0,0,0,0,0,5,0,0,0,0,0,0,0,0,0,0,0,0,31,0),(2099,'2015-03-14 14:56:58','2015-10-11 16:46:39',1,30004536,0,0,0,95,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,79,0,0),(2100,'2015-03-14 14:56:58','2015-10-11 16:46:39',1,30000310,1,110,80,303,132,21,306,47,141,218,39,59,109,169,262,189,130,29,0,42,0,361,135,0),(2101,'2015-03-14 14:56:58','2015-03-14 14:56:58',1,30001517,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(2102,'2015-03-14 14:56:58','2015-10-11 16:46:39',1,30003713,44,15,0,0,5,5,7,0,0,0,46,47,0,83,0,0,0,42,48,36,14,73,0,148),(2103,'2015-03-14 14:56:58','2015-10-11 16:46:39',1,30004061,152,0,0,0,0,0,13,0,7,0,0,0,0,0,0,0,0,0,0,0,0,4,103,0),(2104,'2015-03-14 14:56:58','2015-10-11 16:46:39',1,30001982,1,11,0,0,17,10,1,0,1,143,4,3,52,44,69,10,13,0,4,0,5,13,0,98),(2105,'2015-03-14 14:56:58','2015-10-11 16:46:39',1,30004598,111,46,331,288,82,73,797,49,119,10,62,128,381,8,11,0,0,84,35,107,27,17,129,0),(2106,'2015-03-14 14:56:58','2015-10-11 16:46:39',1,30000305,1,13,249,0,0,78,15,317,288,160,172,217,1180,0,164,222,97,180,672,598,540,697,768,139),(2107,'2015-03-14 14:56:58','2015-10-11 16:46:39',1,30001348,85,0,89,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(2108,'2015-03-14 14:56:58','2015-10-11 16:46:39',1,30000545,3,4,7,13,9,3,5,0,17,0,0,0,0,0,0,0,0,0,64,0,0,286,39,0),(2109,'2015-03-14 14:56:58','2015-03-14 14:56:58',1,30000570,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(2110,'2015-03-14 14:56:58','2015-10-11 16:46:39',1,30004523,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0),(2111,'2015-03-14 14:56:58','2015-10-11 16:46:39',1,30002020,0,0,24,14,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(2112,'2015-03-14 14:56:58','2015-10-11 16:46:39',1,30001811,0,92,40,106,25,78,117,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,2,21),(2113,'2015-03-14 14:56:58','2015-10-11 16:46:39',1,30003777,50,224,0,103,3,58,2,0,0,146,390,491,304,240,194,264,504,259,132,129,98,110,118,38),(2114,'2015-03-14 14:56:58','2015-10-11 16:46:39',1,30005072,143,0,0,0,49,0,0,34,0,0,0,0,5,5,0,0,1,0,0,0,0,0,0,9),(2115,'2015-03-14 14:56:58','2015-10-11 16:46:39',1,30002204,12,73,61,145,47,3,5,28,6,21,20,3,5,78,47,115,115,6,19,54,24,146,197,223),(2116,'2015-03-14 14:56:58','2015-10-11 16:46:39',1,30001698,80,0,88,11,89,43,106,1,3,11,256,268,242,32,197,167,96,56,8,48,495,1220,1083,1480),(2117,'2015-03-14 14:56:58','2015-10-11 16:46:39',1,30003544,0,0,0,0,2,2,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,19,0),(2118,'2015-03-14 14:56:58','2015-10-11 16:46:39',1,30002674,48,13,57,167,24,46,42,14,57,118,301,209,79,85,279,322,277,218,53,54,185,130,174,38),(2119,'2015-03-14 14:56:58','2015-10-11 16:46:39',1,30003844,0,2,62,18,42,45,11,0,49,1,0,0,0,0,0,0,0,3,0,36,2,3,9,60),(2120,'2015-03-14 14:56:58','2015-10-11 16:46:39',1,30005273,0,4,23,21,0,23,0,17,6,43,22,12,1,17,15,0,0,0,0,1,8,14,0,8),(2121,'2015-03-14 14:56:58','2015-10-11 16:46:39',1,30004085,82,22,80,136,200,139,104,49,105,1,146,235,110,75,36,23,32,158,151,110,164,240,180,34),(2122,'2015-03-14 14:56:58','2015-10-11 16:46:39',1,30000107,144,73,127,21,33,34,21,22,13,42,83,107,3,70,115,196,139,67,0,55,17,56,127,159),(2123,'2015-03-14 14:56:58','2015-10-11 16:46:39',1,30003076,58,1,189,51,8,1,11,13,0,127,175,1,98,26,197,62,2,12,10,27,19,143,26,7),(2124,'2015-03-14 14:56:58','2015-10-11 16:46:39',1,30003805,0,14,9,147,163,57,34,14,0,62,0,2,68,0,9,16,20,80,0,0,7,43,10,16),(2125,'2015-03-14 14:56:58','2015-10-11 16:46:39',1,30004123,130,113,98,160,66,15,196,2,201,32,242,258,195,62,36,42,112,11,1,82,24,298,299,112),(2126,'2015-03-14 14:56:58','2015-10-11 16:46:39',1,30004119,0,0,0,0,59,48,59,119,2,3,0,0,0,20,64,167,153,0,0,0,0,1,64,65),(2127,'2015-03-14 14:56:58','2015-10-11 16:46:39',1,30005282,38,20,51,1,35,28,7,0,79,5,31,34,22,32,82,90,73,127,0,12,0,0,0,1),(2128,'2015-03-14 14:56:58','2015-10-11 16:46:39',1,30005240,42,0,0,0,7,7,3,0,0,9,0,0,102,15,1,3,3,0,0,0,1,0,0,9),(2129,'2015-03-14 14:56:58','2015-10-11 16:46:39',1,30000839,527,116,0,0,0,0,0,0,0,0,0,1,0,248,0,23,58,2,31,20,132,102,710,69),(2130,'2015-03-14 14:56:58','2015-10-11 16:46:39',1,30002620,312,0,0,0,0,0,0,0,16,0,0,0,0,73,93,283,361,16,113,13,46,47,73,74),(2131,'2015-03-14 14:56:58','2015-10-11 16:46:39',1,30000464,85,267,47,273,219,312,166,40,71,0,28,0,0,9,0,0,0,6,0,0,0,0,117,70),(2132,'2015-03-14 14:56:58','2015-10-11 16:46:39',1,30001862,3,0,0,0,0,0,0,1,0,0,0,0,0,3,0,0,0,0,0,0,0,0,0,0),(2133,'2015-03-14 14:56:58','2015-10-11 16:46:39',1,30000792,0,0,0,0,45,137,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,11),(2134,'2015-03-14 14:56:58','2015-10-11 16:46:39',1,30001873,10,53,34,38,0,0,42,0,0,1,0,0,150,46,36,31,0,9,0,66,0,53,192,76),(2135,'2015-03-14 14:56:58','2015-10-11 16:46:39',1,30001198,0,0,0,0,0,54,0,0,0,11,46,63,39,52,16,11,29,8,49,52,72,36,35,34),(2136,'2015-03-14 14:56:58','2015-10-11 16:46:39',1,30001177,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,57,0,0,0,0,0,0),(2137,'2015-03-14 14:56:58','2015-10-11 16:46:39',1,30002093,5,14,11,15,42,14,5,0,1,7,33,26,11,75,4,18,43,28,0,1,8,11,12,10),(2138,'2015-03-14 14:56:58','2015-10-11 16:46:39',1,30003433,17,31,78,14,103,8,48,22,26,69,82,87,85,20,75,112,121,111,65,33,70,181,64,30),(2139,'2015-03-14 14:56:58','2015-10-11 16:46:39',1,30003429,42,22,44,4,33,37,44,106,56,79,42,69,111,75,119,99,47,44,41,40,97,169,145,45),(2140,'2015-03-14 14:56:58','2015-10-11 16:46:39',1,30003897,0,8,0,70,59,56,0,0,0,27,18,9,34,0,3,4,4,14,0,106,0,2,44,14),(2141,'2015-03-14 14:56:58','2015-10-11 16:46:39',1,30000234,494,383,195,503,193,227,919,437,919,146,196,189,187,169,84,42,42,209,0,0,243,143,122,0),(2142,'2015-03-14 14:56:58','2015-10-11 16:46:39',1,30000149,341,537,753,895,890,1038,499,197,316,295,596,500,488,609,597,555,1011,744,573,493,492,361,576,486),(2143,'2015-03-14 14:56:58','2015-10-11 16:46:39',1,30002386,274,518,176,83,163,141,236,449,172,421,465,446,606,278,323,300,274,551,174,223,355,769,480,398),(2144,'2015-03-14 14:56:58','2015-10-11 16:46:39',1,30000087,27,100,24,29,7,83,29,66,36,141,126,40,71,46,102,80,69,56,5,46,43,12,86,62),(2145,'2015-03-14 14:56:58','2015-10-11 16:46:39',1,30001663,0,22,0,18,0,0,0,0,0,10,60,0,0,0,50,0,0,82,0,0,0,19,23,1),(2146,'2015-03-14 14:56:58','2015-10-11 16:46:39',1,30004238,0,0,0,0,111,86,55,54,21,0,0,0,5,0,0,0,0,100,0,0,0,0,0,9),(2147,'2015-03-14 14:56:58','2015-10-11 16:46:39',1,30004083,72,84,394,391,439,295,215,305,162,642,623,743,641,474,738,711,496,289,104,188,467,248,463,130),(2148,'2015-03-14 14:56:58','2015-10-11 16:46:39',1,30000126,263,207,308,319,172,137,201,249,156,206,184,214,200,115,233,271,213,180,62,92,223,502,204,77),(2149,'2015-03-14 14:56:58','2015-10-11 16:46:39',1,30002533,7,48,63,66,20,56,14,84,47,78,50,66,6,57,1,0,7,57,99,10,43,151,3,83),(2150,'2015-03-14 14:56:58','2015-10-11 16:46:39',1,30002531,152,175,17,51,20,142,65,67,48,61,49,18,62,23,21,49,97,76,17,24,78,32,27,70),(2151,'2015-03-14 14:56:58','2015-10-11 16:46:39',1,30003586,28,5,15,108,41,123,143,144,34,142,190,72,100,11,127,42,0,124,88,0,20,26,81,42),(2152,'2015-03-14 14:56:58','2015-10-11 16:46:39',1,30005244,59,67,28,93,49,27,58,409,419,67,54,132,132,96,65,46,25,70,8,35,19,97,67,385),(2153,'2015-03-14 14:56:58','2015-10-11 16:46:39',1,30003023,124,65,18,87,68,39,0,50,53,0,1,4,0,5,54,11,60,0,4,0,12,0,31,23),(2154,'2015-03-14 14:56:58','2015-10-11 16:46:39',1,30004266,7,47,0,1,66,59,0,52,24,18,107,45,21,6,90,0,0,0,0,45,121,0,31,1),(2155,'2015-03-14 14:56:58','2015-10-11 16:46:39',1,30004282,0,0,46,1,73,48,68,27,27,17,79,112,20,0,57,17,18,30,3,0,0,132,24,33),(2156,'2015-03-14 14:56:58','2015-10-11 16:46:39',1,30003871,91,0,70,0,0,0,106,0,2,36,76,124,16,14,0,106,214,0,145,0,28,1,21,0),(2157,'2015-03-14 14:56:58','2015-10-11 16:46:39',1,30000936,0,0,0,0,0,0,0,0,0,3,0,0,0,5,0,0,0,0,2,0,0,0,0,0),(2158,'2015-03-14 14:56:58','2015-10-11 16:46:39',1,30001580,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0),(2159,'2015-03-14 14:56:58','2015-03-14 14:56:58',1,30000553,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(2160,'2015-03-14 14:56:58','2015-03-14 14:56:58',1,30003202,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(2161,'2015-03-14 14:56:58','2015-10-11 16:46:39',1,30004288,0,4,0,76,0,0,52,0,20,0,0,0,0,40,5,42,42,0,0,0,0,0,0,76),(2162,'2015-03-14 14:56:58','2015-10-11 16:46:39',1,30004084,130,81,119,87,106,111,54,65,23,54,88,78,112,269,174,134,449,144,261,502,519,541,238,375),(2163,'2015-03-14 14:56:58','2015-10-11 16:46:39',1,30002972,112,118,98,155,93,88,89,12,36,363,130,346,131,144,252,146,90,438,98,60,420,235,418,370),(2164,'2015-03-14 14:56:58','2015-10-11 16:46:39',1,30001714,167,103,16,113,82,14,0,14,7,4,141,91,10,158,81,70,59,28,32,70,142,158,339,39),(2165,'2015-03-14 14:56:58','2015-10-11 16:46:39',1,30004474,0,0,0,0,0,0,0,0,0,6,102,11,0,115,260,383,163,46,312,119,0,86,299,41),(2166,'2015-03-14 14:56:58','2015-10-11 16:46:39',1,30003035,71,128,15,77,86,90,123,66,9,143,91,31,78,52,52,82,75,245,92,75,136,98,50,114),(2167,'2015-03-14 14:56:58','2015-10-11 16:46:39',1,30002232,18,5,36,12,26,43,84,170,21,28,0,0,4,7,26,25,65,11,7,13,18,10,123,24),(2168,'2015-03-14 14:56:58','2015-10-11 16:46:39',1,30003877,51,51,168,221,17,32,84,0,75,108,70,35,99,185,168,170,137,143,193,167,71,107,176,82),(2169,'2015-03-14 14:56:58','2015-10-11 16:46:39',1,30000887,0,743,1,71,1,30,94,747,0,61,25,16,9,82,71,257,463,204,304,240,445,190,296,310),(2170,'2015-03-14 14:56:58','2015-10-11 16:46:39',1,30005288,176,19,17,104,109,163,112,8,143,121,121,79,27,67,61,79,95,67,39,153,49,36,36,108),(2171,'2015-03-14 14:56:58','2015-10-11 16:46:39',1,30005312,46,166,52,286,111,59,57,118,67,95,76,52,86,154,366,309,163,241,30,82,106,208,231,120),(2172,'2015-03-14 14:56:58','2015-10-11 16:46:39',1,30001192,0,0,0,0,0,0,0,0,0,188,31,0,8,148,72,135,170,0,150,168,33,8,3,12),(2173,'2015-03-14 14:56:58','2015-10-11 16:46:39',1,30003232,417,44,0,0,10,61,0,3,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(2174,'2015-03-14 14:56:58','2015-10-11 16:46:39',1,30000789,0,0,0,0,0,0,0,0,48,0,0,0,0,0,0,0,0,23,0,0,0,0,0,0),(2175,'2015-03-14 14:56:58','2015-10-11 16:46:39',1,30000859,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,72,0,0,0,0,0,0),(2176,'2015-03-14 14:56:58','2015-10-11 16:46:39',1,30001122,1,7,187,3,0,12,176,0,5,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(2177,'2015-03-14 14:56:58','2015-10-11 16:46:39',1,30002133,0,0,8,0,0,0,0,0,0,77,19,0,0,0,0,0,0,0,0,76,62,0,0,0),(2178,'2015-03-14 14:56:58','2015-10-11 16:46:39',1,30000544,124,0,0,0,0,0,0,0,0,0,1,1,0,0,5,5,0,3,0,0,12,4,0,21),(2179,'2015-03-14 14:56:58','2015-10-11 16:46:39',1,30003698,1,340,4,0,0,12,0,136,0,0,0,0,4,0,0,0,0,0,0,0,0,0,0,32),(2180,'2015-03-14 14:56:58','2015-10-11 16:46:39',1,30001178,0,88,0,0,0,0,0,0,0,0,0,0,20,1,1,33,130,0,0,0,0,0,0,0),(2181,'2015-03-14 14:56:58','2015-10-11 16:46:39',1,30000671,0,0,140,0,0,0,0,0,0,0,0,0,0,27,29,29,0,44,0,0,0,0,0,101),(2182,'2015-03-14 14:56:58','2015-10-11 16:46:39',1,30002306,0,0,0,0,0,0,0,0,0,159,224,184,46,7,45,102,114,57,207,184,257,78,228,62),(2183,'2015-03-14 14:56:58','2015-10-11 16:46:39',1,30003736,10,185,39,50,186,161,0,111,89,50,507,297,62,453,201,542,712,238,284,44,85,81,168,112),(2184,'2015-03-14 14:56:58','2015-10-11 16:46:39',1,30002725,6,0,2,39,25,3,7,1,0,0,0,0,0,0,0,0,0,0,0,26,0,2,82,31),(2185,'2015-03-14 14:56:58','2015-10-11 16:46:39',1,30000070,3,24,0,15,14,14,13,0,0,0,0,0,0,0,0,0,0,0,1,0,25,0,0,0),(2186,'2015-03-14 14:56:58','2015-10-11 16:46:39',1,30004087,80,6,135,182,95,30,50,3,0,104,53,124,6,44,269,211,53,48,32,308,184,134,24,61),(2187,'2015-03-14 14:56:58','2015-10-11 16:46:39',1,30005268,48,18,36,87,23,26,19,0,0,0,0,0,16,1,8,9,5,0,0,0,4,1,137,4),(2188,'2015-03-14 14:56:58','2015-10-11 16:46:39',1,30002403,27,0,0,15,121,60,11,4,59,0,0,0,0,0,34,18,18,0,3,136,34,21,0,0),(2189,'2015-03-14 14:56:58','2015-10-11 16:46:39',1,30001716,24,14,3,1,44,28,78,53,20,53,45,32,5,32,78,40,109,46,102,18,119,71,27,75),(2190,'2015-03-14 14:56:58','2015-10-11 16:46:39',1,30003963,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,75,0,0,0,0,0,0,0),(2191,'2015-03-14 14:56:58','2015-10-11 16:46:39',1,30001646,32,44,73,37,61,53,57,87,44,34,42,34,23,38,110,109,75,50,12,6,76,64,167,76),(2192,'2015-03-14 14:56:58','2015-10-11 16:46:39',1,30003509,35,23,39,116,25,30,79,33,43,40,98,57,73,252,34,88,85,94,29,148,138,70,222,121),(2193,'2015-03-14 14:56:58','2015-10-11 16:46:39',1,30003930,7,3,23,0,0,1,0,156,86,0,0,0,1,0,0,0,0,7,0,3,0,0,0,0),(2194,'2015-03-14 14:56:58','2015-10-11 16:46:39',1,30003858,110,0,36,73,41,42,18,34,0,3,7,13,9,14,130,196,113,34,26,26,35,41,130,123),(2195,'2015-03-14 14:56:58','2015-10-11 16:46:39',1,30000598,0,16,15,15,8,21,63,0,0,0,0,0,0,2,0,0,0,0,0,0,0,0,0,0),(2196,'2015-03-14 14:56:58','2015-10-11 16:46:39',1,30000552,0,141,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,6,65,1,0,0,0,0),(2197,'2015-03-14 14:56:58','2015-10-11 16:46:39',1,30004465,0,0,0,74,0,0,0,0,0,7,3,6,0,0,127,128,21,0,0,0,0,0,0,0),(2198,'2015-03-14 14:56:58','2015-03-14 14:56:58',1,30002875,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(2199,'2015-03-14 14:56:58','2015-10-11 16:46:39',1,30004694,124,0,91,1,127,64,0,0,5,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(2200,'2015-03-14 14:56:58','2015-10-11 16:46:39',1,30004167,0,0,0,0,0,0,0,0,0,0,0,0,0,92,0,0,0,2,0,0,0,0,0,0),(2201,'2015-03-14 14:56:58','2015-10-11 16:46:39',1,30004957,166,223,152,1,164,164,0,106,0,35,82,81,52,240,196,23,10,0,0,0,0,50,35,8),(2202,'2015-03-14 14:56:58','2015-10-11 16:46:39',1,30000456,0,0,0,0,0,0,0,23,0,0,0,0,0,0,0,0,0,0,0,0,45,30,0,0),(2203,'2015-03-14 14:56:58','2015-10-11 16:46:39',1,30002653,36,61,3,10,9,9,0,0,0,10,0,15,5,47,0,0,0,40,0,0,0,27,0,1),(2204,'2015-03-14 14:56:58','2015-10-11 16:46:39',1,30000593,144,36,372,284,116,71,51,0,5,0,0,9,179,1,0,0,0,166,0,0,0,0,0,0),(2205,'2015-03-14 14:56:58','2015-10-11 16:46:39',1,30002636,167,149,86,125,86,47,113,141,73,121,179,206,159,104,232,154,187,69,72,99,180,96,145,157),(2206,'2015-03-14 14:56:58','2015-10-11 16:46:39',1,30003808,39,0,19,43,31,10,0,3,0,2,3,5,18,5,58,40,39,41,0,0,0,125,0,27),(2207,'2015-03-14 14:56:58','2015-10-11 16:46:39',1,30003360,0,0,0,0,42,50,88,7,0,0,0,0,0,16,0,0,0,0,74,67,0,0,0,0),(2208,'2015-03-14 14:56:58','2015-10-11 16:46:39',1,30003057,21,59,7,8,51,1,79,17,3,2,0,0,1,0,13,13,2,40,33,43,32,3,18,27),(2209,'2015-03-14 14:56:58','2015-03-14 14:56:58',1,30002859,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(2210,'2015-03-14 14:56:58','2015-10-11 16:46:39',1,30001573,155,8,0,19,156,14,201,0,106,0,0,0,0,0,3,0,0,0,2,0,0,0,0,0),(2211,'2015-03-14 14:56:58','2015-03-14 14:56:58',1,30003199,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(2212,'2015-03-14 14:56:58','2015-10-11 16:46:39',1,30002328,12,0,115,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,0,0,0),(2213,'2015-03-14 14:56:58','2015-10-11 16:46:39',1,30001883,11,0,0,0,0,0,0,0,32,24,0,0,17,7,63,110,144,80,0,0,0,0,14,57),(2214,'2015-03-14 14:56:58','2015-10-11 16:46:39',1,30002627,275,256,0,0,178,332,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,57),(2215,'2015-03-14 14:56:58','2015-10-11 16:46:39',1,30002102,28,9,62,92,39,9,43,101,40,16,49,28,98,26,12,16,9,33,0,2,11,52,20,86),(2216,'2015-03-14 14:56:58','2015-10-11 16:46:39',1,30002384,648,469,262,404,539,548,560,219,499,754,403,301,418,944,767,1071,1005,665,457,554,744,524,857,552),(2217,'2015-03-14 14:56:58','2015-10-11 16:46:39',1,30002517,7,1,0,60,0,0,0,8,36,0,79,58,8,92,125,110,184,7,30,5,2,14,0,4),(2218,'2015-03-14 14:56:58','2015-10-11 16:46:39',1,30002560,28,41,0,0,75,0,0,0,82,17,0,0,128,149,3,13,24,12,71,1,3,0,2,75),(2219,'2015-03-14 14:56:58','2015-10-11 16:46:39',1,30002556,7,0,1,13,0,0,0,99,0,36,3,27,0,13,0,108,416,0,7,6,21,229,244,66),(2220,'2015-03-14 14:56:58','2015-10-11 16:46:39',1,30001347,56,0,0,62,79,36,138,0,4,35,19,29,53,53,0,0,4,126,0,44,147,146,161,73),(2221,'2015-03-14 14:56:58','2015-10-11 16:46:39',1,30003653,0,28,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(2222,'2015-03-14 14:56:58','2015-10-11 16:46:39',1,30002123,0,0,8,4,68,19,2,8,124,5,9,9,0,0,9,18,9,7,30,16,26,0,23,19),(2223,'2015-03-14 14:56:58','2015-10-11 16:46:39',1,30002947,278,568,510,295,170,22,331,35,67,152,224,286,52,487,56,59,69,60,0,28,108,1,22,163),(2224,'2015-03-14 14:56:58','2015-10-11 16:46:39',1,30004778,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,46,0,13,63,0,1,0),(2225,'2015-03-14 14:56:58','2015-10-11 16:46:39',1,30001661,100,73,2,5,0,0,0,0,15,0,0,0,0,3,29,20,3,0,10,0,10,0,0,0),(2226,'2015-03-14 14:56:58','2015-03-14 14:56:58',1,30000344,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(2227,'2015-03-14 14:56:58','2015-10-11 16:46:39',1,30002529,149,134,287,269,221,161,679,121,143,192,308,262,248,368,620,688,829,641,108,47,247,302,538,504),(2228,'2015-03-14 14:56:58','2015-10-11 16:46:39',1,30002621,30,406,0,0,4,0,6,198,61,0,5,5,277,0,0,0,0,202,0,0,0,0,76,534),(2229,'2015-03-14 14:56:58','2015-10-11 16:46:39',1,30001531,0,0,0,0,0,0,0,0,0,109,66,36,36,71,358,505,230,120,72,151,308,74,119,79),(2230,'2015-03-14 14:56:58','2015-10-11 16:46:39',1,30000276,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,71,72,0,0,0,0,0,0,0),(2231,'2015-03-14 14:56:58','2015-10-11 16:46:39',1,30005123,142,73,9,31,0,6,1,3,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(2232,'2015-03-14 14:56:58','2015-10-11 16:46:39',1,30003986,14,40,17,4,217,331,280,5,0,62,26,101,164,0,337,457,177,163,0,0,0,10,88,147),(2233,'2015-03-14 14:56:58','2015-10-11 16:46:39',1,30000225,7,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,30,0),(2234,'2015-03-14 14:56:58','2015-10-11 16:46:39',1,30002588,0,0,0,0,0,0,0,0,0,0,0,106,0,0,0,0,0,0,0,0,0,0,0,0),(2235,'2015-03-14 14:56:58','2015-10-11 16:46:39',1,30000974,0,0,0,0,0,0,0,0,0,0,0,0,0,20,0,0,0,0,0,0,0,0,3,0),(2236,'2015-03-14 14:56:58','2015-10-11 16:46:39',1,30000523,0,0,0,0,0,0,0,68,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(2237,'2015-03-14 14:56:58','2015-10-11 16:46:39',1,30001001,310,15,59,131,132,114,0,15,182,73,79,24,96,2,3,0,17,0,0,0,2,15,35,96),(2238,'2015-03-14 14:56:58','2015-10-11 16:46:39',1,30001331,25,0,98,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(2239,'2015-03-14 14:56:58','2015-10-11 16:46:39',1,30001129,0,0,0,0,0,0,0,779,0,82,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(2240,'2015-03-14 14:56:58','2015-03-14 14:56:58',1,30001513,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(2241,'2015-03-14 14:56:58','2015-10-11 16:46:39',1,30000281,0,32,0,0,0,0,0,313,0,0,0,0,0,0,0,10,15,0,0,0,0,0,0,0),(2242,'2015-03-14 14:56:58','2015-03-14 14:56:58',1,30000444,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(2243,'2015-03-14 14:56:58','2015-03-14 14:56:58',1,30005116,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(2244,'2015-03-14 14:56:58','2015-10-11 16:46:39',1,30003752,153,53,0,0,0,0,159,1,34,0,104,62,544,19,5,42,171,279,0,0,0,42,250,364),(2245,'2015-03-14 14:56:58','2015-10-11 16:46:39',1,30005090,0,0,0,0,0,0,0,0,63,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(2246,'2015-03-14 14:56:58','2015-03-14 14:56:58',1,30000547,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(2247,'2015-03-14 14:56:58','2015-03-14 14:56:58',1,30004814,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(2248,'2015-03-14 14:56:58','2015-10-11 16:46:39',1,30004512,0,28,0,0,0,0,0,0,0,0,0,0,0,0,121,121,0,0,0,0,0,0,0,0),(2249,'2015-03-14 14:56:58','2015-03-14 14:56:58',1,30003261,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(2250,'2015-03-14 14:56:58','2015-10-11 16:46:39',1,30000268,0,0,0,0,94,56,0,89,0,7,82,0,127,0,336,479,363,275,24,7,0,103,162,463),(2251,'2015-03-14 14:56:58','2015-10-11 16:46:39',1,30004592,0,1,122,91,45,0,0,152,168,31,45,40,97,5,19,16,18,8,0,7,50,140,13,83),(2252,'2015-03-14 14:56:58','2015-10-11 16:46:39',1,30004446,0,11,0,11,30,14,0,81,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(2253,'2015-03-14 14:56:58','2015-10-11 16:46:39',1,30001269,51,0,0,80,73,8,0,3,23,68,207,107,79,255,362,56,50,138,9,24,181,177,163,55),(2254,'2015-03-14 14:56:58','2015-03-14 14:56:58',1,30002120,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(2255,'2015-03-14 14:56:58','2015-10-11 16:46:39',1,30001343,0,49,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,9,0,0,0,0,0,0),(2256,'2015-03-14 14:56:58','2015-10-11 16:46:39',1,30004606,0,0,91,0,0,0,0,0,9,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(2257,'2015-03-14 14:56:58','2015-10-11 16:46:39',1,30003144,16,127,7,4,13,11,58,0,0,0,0,0,0,29,133,0,0,10,0,247,91,0,0,0),(2258,'2015-03-14 14:56:58','2015-10-11 16:46:39',1,30000223,6,0,38,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(2259,'2015-03-14 14:56:58','2015-10-11 16:46:39',1,30000865,1,109,15,83,130,95,32,47,188,0,14,14,9,0,20,53,34,0,0,0,0,31,0,10),(2260,'2015-03-14 14:56:58','2015-10-11 16:46:39',1,30003160,519,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(2261,'2015-03-14 14:56:58','2015-10-11 16:46:39',1,30003608,0,80,53,2,0,0,0,0,23,140,288,149,228,0,0,0,0,0,0,1,96,0,23,0),(2262,'2015-03-14 14:56:58','2015-10-11 16:46:39',1,30002043,0,0,0,0,0,0,0,0,17,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(2263,'2015-03-14 14:56:58','2015-10-11 16:46:39',1,30004178,0,0,0,1,0,76,65,0,0,0,0,0,0,0,0,0,0,0,0,82,0,63,19,64),(2264,'2015-03-14 14:56:58','2015-03-14 14:56:58',1,30000426,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(2265,'2015-03-14 14:56:58','2015-10-11 16:46:39',1,30001575,0,5,0,0,3,3,0,0,0,0,0,0,0,0,0,0,0,0,2,0,0,0,0,0),(2266,'2015-03-14 14:56:58','2015-03-14 14:56:58',1,30000410,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(2267,'2015-03-14 14:56:58','2015-10-11 16:46:39',1,30000685,432,0,0,39,33,125,417,1,367,0,0,0,0,0,39,55,25,147,0,0,48,181,166,276),(2268,'2015-03-14 14:56:58','2015-10-11 16:46:39',1,30003723,0,5,4,0,0,0,0,16,0,0,3,53,4,0,4,0,5,70,0,0,0,21,8,0),(2269,'2015-03-14 14:56:58','2015-10-11 16:46:39',1,30000574,0,186,707,235,451,185,51,99,7,0,0,0,0,13,4,0,0,0,0,0,0,0,0,0),(2270,'2015-03-14 14:56:58','2015-10-11 16:46:39',1,30004443,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,51,0),(2271,'2015-03-14 14:56:58','2015-10-11 16:46:39',1,30004034,69,237,52,29,140,0,0,29,0,45,468,481,211,78,67,24,31,907,0,8,5,701,1085,212),(2272,'2015-03-14 14:56:58','2015-10-11 16:46:39',1,30000973,0,0,0,0,0,0,0,0,0,0,0,0,0,0,3,0,0,0,0,0,0,0,0,0),(2273,'2015-03-14 14:56:58','2015-03-14 14:56:58',1,30001518,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(2274,'2015-03-14 14:56:58','2015-10-11 16:46:39',1,30002857,0,0,0,0,0,0,0,0,0,0,0,0,0,0,188,60,0,99,0,0,3,0,0,0),(2275,'2015-03-14 14:56:58','2015-10-11 16:46:39',1,30004678,2,81,0,2,195,248,140,0,44,0,0,0,0,0,0,0,0,0,0,0,0,0,0,38),(2276,'2015-03-14 14:56:58','2015-10-11 16:46:39',1,30003775,16,0,3,1,78,9,0,5,0,220,708,659,157,271,215,314,475,367,59,221,245,115,79,43),(2277,'2015-03-14 14:56:58','2015-10-11 16:46:39',1,30004916,0,0,226,395,381,150,9,0,0,142,83,50,47,0,0,390,870,0,7,64,233,0,0,353),(2278,'2015-03-14 14:56:58','2015-10-11 16:46:39',1,30000960,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,34,0,0,0,135,0,0),(2279,'2015-03-14 14:56:58','2015-10-11 16:46:39',1,30001424,636,337,704,650,882,601,574,211,308,391,298,343,206,909,518,535,558,479,459,201,411,393,717,430),(2280,'2015-03-14 14:56:58','2015-10-11 16:46:39',1,30002800,576,684,374,356,317,326,837,531,451,390,509,731,917,496,595,469,573,556,319,284,381,610,864,664),(2281,'2015-03-14 14:56:58','2015-10-11 16:46:39',1,30005250,84,57,2,51,64,19,21,28,53,28,0,111,600,67,113,24,86,49,1,2,56,127,13,53),(2282,'2015-03-14 14:56:58','2015-10-11 16:46:39',1,30012547,611,526,339,328,269,314,438,327,281,576,561,608,827,759,953,843,809,661,370,537,560,440,574,659),(2283,'2015-03-14 14:56:58','2015-10-11 16:46:39',1,30005223,90,50,282,131,18,45,92,50,51,161,15,79,52,165,59,34,10,40,39,10,170,81,170,3),(2284,'2015-03-14 14:56:58','2015-10-11 16:46:39',1,30002264,93,216,178,134,117,63,178,41,119,77,318,220,149,222,153,209,215,116,3,90,4,115,170,20),(2285,'2015-03-14 14:56:58','2015-10-11 16:46:39',1,30002057,76,0,2,0,1,1,0,3,1,25,0,0,79,16,2,11,15,3,0,7,25,2,12,9),(2286,'2015-03-14 14:56:58','2015-10-11 16:46:39',1,30001367,117,154,529,338,305,214,266,392,234,202,340,428,319,334,413,628,644,171,230,252,333,462,465,412),(2287,'2015-03-14 14:56:58','2015-10-11 16:46:39',1,30002050,19,49,99,0,88,63,14,0,1,80,65,12,1,46,212,32,44,8,0,0,5,9,6,4),(2288,'2015-03-14 14:56:58','2015-10-11 16:46:39',1,30003533,103,45,100,108,59,25,25,50,92,105,52,61,145,113,107,96,87,73,43,26,59,27,51,77),(2289,'2015-03-14 14:56:58','2015-10-11 16:46:39',1,30000094,0,11,0,0,1,1,0,0,29,8,57,57,0,0,24,0,0,48,3,0,9,0,13,37),(2290,'2015-03-14 14:56:58','2015-10-11 16:46:39',1,30002250,69,0,79,3,0,0,7,47,1,32,55,75,49,48,16,58,45,64,1,0,28,43,39,89),(2291,'2015-03-14 14:56:58','2015-10-11 16:46:39',1,30004248,0,119,290,296,152,126,211,238,155,27,22,14,164,27,219,120,54,40,223,13,82,3,6,4),(2292,'2015-03-14 14:56:58','2015-10-11 16:46:39',1,30005012,0,4,23,12,4,22,0,0,0,16,55,34,96,0,0,0,0,33,4,57,5,0,18,7),(2293,'2015-03-14 14:56:58','2015-03-14 14:56:58',1,30003106,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(2294,'2015-03-14 14:56:58','2015-10-11 16:46:39',1,30003918,0,0,9,0,7,10,0,0,0,79,0,0,0,85,0,0,0,0,0,0,0,0,0,0),(2295,'2015-03-14 14:56:58','2015-10-11 16:46:39',1,30004257,0,126,0,5,0,0,24,0,21,0,59,120,99,0,0,0,0,1,0,0,0,0,0,9),(2296,'2015-03-14 14:56:58','2015-10-11 16:46:39',1,30003449,151,142,208,222,143,120,133,84,126,292,169,205,313,102,475,377,322,57,253,148,27,141,282,99),(2297,'2015-03-14 14:56:58','2015-10-11 16:46:39',1,30002077,66,0,0,3,31,34,4,0,0,7,140,73,18,68,3,5,3,27,8,9,0,9,0,78),(2298,'2015-03-14 14:56:58','2015-10-11 16:46:39',1,30003085,210,100,0,0,0,82,11,3,6,0,0,0,0,0,98,3,26,28,0,0,45,75,7,9),(2299,'2015-03-14 14:56:58','2015-10-11 16:46:39',1,30001448,11,32,10,1,131,13,90,11,37,36,0,3,8,0,113,76,2,79,7,24,43,54,29,8),(2300,'2015-03-14 14:56:58','2015-10-11 16:46:39',1,30002990,111,105,274,205,112,110,91,28,95,157,124,317,145,196,243,142,166,276,183,194,214,150,203,61),(2301,'2015-03-14 14:56:58','2015-10-11 16:46:39',1,30002781,150,162,272,299,240,124,77,194,344,149,105,225,154,250,284,327,270,150,161,143,209,250,75,214),(2302,'2015-03-14 14:56:58','2015-10-11 16:46:39',1,30003003,0,38,12,13,36,36,0,25,19,0,0,0,8,33,48,67,52,44,89,18,33,90,87,38),(2303,'2015-03-14 14:56:58','2015-10-11 16:46:39',1,30002404,18,9,92,30,0,0,121,42,0,24,3,2,4,2,0,0,0,65,0,5,11,130,95,25),(2304,'2015-03-14 14:56:58','2015-10-11 16:46:39',1,30004100,43,29,12,106,52,69,91,8,96,131,193,180,44,79,50,73,40,22,69,27,28,42,20,34),(2305,'2015-03-14 14:56:58','2015-10-11 16:46:39',1,30045341,1,4,1,23,1,2,95,6,25,61,12,18,31,90,4,11,62,10,5,3,0,0,1,2),(2306,'2015-03-14 14:56:58','2015-10-11 16:46:39',1,30003010,167,113,205,244,36,22,158,101,60,458,138,116,190,285,392,260,143,129,151,68,163,327,469,59),(2307,'2015-03-14 14:56:58','2015-10-11 16:46:39',1,30002981,20,25,15,19,78,37,15,5,3,1,0,3,2,6,0,7,17,52,0,0,1,7,31,22),(2308,'2015-03-14 14:56:58','2015-10-11 16:46:39',1,30003900,0,0,76,1,0,0,26,0,0,0,0,0,0,1,0,0,0,37,0,1,5,0,0,0),(2309,'2015-03-14 14:56:58','2015-10-11 16:46:39',1,30003523,30,0,48,10,29,53,10,26,13,63,70,0,67,7,32,58,42,82,0,59,28,13,60,30),(2310,'2015-03-14 14:56:58','2015-10-11 16:46:39',1,30000152,338,124,487,233,221,130,343,374,764,283,451,339,268,456,610,641,398,541,798,759,875,715,761,927),(2311,'2015-03-14 14:56:58','2015-10-11 16:46:39',1,30003547,75,0,0,3,0,0,0,15,20,20,0,96,47,0,0,0,0,0,0,20,168,43,37,98),(2312,'2015-03-14 14:56:58','2015-10-11 16:46:39',1,30033489,49,0,9,0,0,0,2,0,0,10,7,1,14,51,0,11,22,85,0,0,0,26,0,24),(2313,'2015-03-14 14:56:58','2015-10-11 16:46:39',1,30005265,0,0,0,0,28,69,52,0,0,0,0,0,0,14,0,0,3,9,0,0,0,0,0,4),(2314,'2015-03-14 14:56:58','2015-10-11 16:46:39',1,30004145,0,0,0,11,21,0,135,14,0,36,16,64,0,0,21,59,59,52,12,0,0,53,1,5),(2315,'2015-03-14 14:56:58','2015-10-11 16:46:39',1,30003087,62,41,16,28,43,34,4,93,13,78,1,2,30,2,75,4,4,48,50,3,10,60,27,55),(2316,'2015-03-14 14:56:58','2015-10-11 16:46:39',1,30003418,146,156,166,153,94,71,4,85,181,147,252,190,59,276,103,99,65,197,47,123,122,138,80,166),(2317,'2015-03-14 14:56:58','2015-10-11 16:46:39',1,30003597,51,0,0,2,0,7,7,18,51,19,11,32,43,0,3,32,43,39,7,58,27,79,21,0),(2318,'2015-03-14 14:56:58','2015-10-11 16:46:39',1,30003017,788,403,565,751,509,500,421,558,500,373,497,536,637,804,963,1084,783,721,423,509,417,703,509,750),(2319,'2015-03-14 14:56:58','2015-10-11 16:46:39',1,30003587,3,85,0,104,0,2,0,0,0,0,0,0,0,60,5,71,141,0,0,0,0,0,2,0),(2320,'2015-03-14 14:56:58','2015-10-11 16:46:39',1,30003793,10,83,0,53,0,0,10,31,1,3,31,11,3,5,4,0,15,0,2,59,49,25,0,3),(2321,'2015-03-14 14:56:58','2015-10-11 16:46:39',1,30002225,134,92,79,139,107,123,62,43,123,110,234,173,58,101,71,57,72,48,113,118,104,250,156,49),(2322,'2015-03-14 14:56:58','2015-10-11 16:46:39',1,30002758,26,29,7,4,16,14,21,33,24,17,3,8,5,0,20,123,113,19,1,79,41,1,10,7),(2323,'2015-03-14 14:56:58','2015-10-11 16:46:39',1,30000074,0,0,0,21,9,9,0,0,0,78,0,0,9,7,0,6,6,0,2,16,24,1,25,17),(2324,'2015-03-14 14:56:58','2015-10-11 16:46:39',1,30000032,101,110,116,31,44,24,44,6,128,119,118,116,176,166,366,372,205,164,7,103,103,238,140,336),(2325,'2015-03-14 14:56:58','2015-10-11 16:46:39',1,30002806,15,82,2,6,29,10,49,8,68,2,7,21,65,3,16,9,36,50,29,44,208,0,6,18),(2326,'2015-03-14 14:56:58','2015-10-11 16:46:39',1,30002764,330,106,655,482,427,375,383,291,201,359,461,619,471,509,620,546,620,664,343,430,202,348,624,334),(2327,'2015-03-14 14:56:58','2015-10-11 16:46:39',1,30001737,31,54,12,7,8,5,54,0,4,79,143,44,22,42,57,57,117,0,41,11,48,4,2,109),(2328,'2015-03-14 14:56:58','2015-10-11 16:46:39',1,30002994,21,30,40,78,3,0,2,0,16,0,4,26,8,113,22,22,5,3,33,106,30,0,22,97),(2329,'2015-03-14 14:56:58','2015-10-11 16:46:39',1,30003082,1,35,11,4,9,7,38,44,0,0,38,7,0,94,165,41,0,2,3,0,0,151,5,7),(2330,'2015-03-14 14:56:58','2015-10-11 16:46:39',1,30003542,12,0,21,0,128,68,0,213,37,0,1,1,72,49,0,0,0,46,3,13,25,10,11,0),(2331,'2015-03-14 14:56:58','2015-10-11 16:46:39',1,30000979,0,0,0,0,0,0,0,0,0,0,3,0,0,0,0,0,0,0,0,0,0,0,0,0),(2332,'2015-03-14 14:56:58','2015-10-11 16:46:39',1,30004228,0,0,94,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(2333,'2015-03-14 14:56:58','2015-10-11 16:46:39',1,30003633,378,259,133,675,247,183,481,198,255,0,0,0,0,0,0,0,88,107,0,86,93,0,96,246),(2334,'2015-03-14 14:56:58','2015-10-11 16:46:39',1,30005107,0,0,1,0,0,0,0,0,0,0,0,0,30,0,0,0,0,0,0,0,0,0,0,0),(2335,'2015-03-14 14:56:58','2015-10-11 16:46:39',1,30004325,0,85,0,77,313,574,915,692,416,182,30,0,5,25,0,31,111,75,115,335,272,298,524,159),(2336,'2015-03-14 14:56:58','2015-10-11 16:46:39',1,30001292,0,71,0,0,0,0,0,0,0,0,0,0,98,0,0,0,0,0,0,0,0,0,0,0),(2337,'2015-03-14 14:56:58','2015-10-11 16:46:39',1,30000569,9,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(2338,'2015-03-14 14:56:58','2015-03-14 14:56:58',1,30002863,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(2339,'2015-03-14 14:56:58','2015-10-11 16:46:39',1,30001330,0,1,0,0,0,0,0,0,0,0,0,0,0,0,2,2,0,0,0,0,0,2,0,0),(2340,'2015-03-14 14:56:58','2015-03-14 14:56:58',1,30001482,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(2341,'2015-03-14 14:56:58','2015-10-11 16:46:39',1,30000214,0,0,3,43,2,0,4,0,0,0,4,1,0,4,333,167,28,63,12,0,4,10,14,9),(2342,'2015-03-14 14:56:58','2015-10-11 16:46:39',1,30003649,0,0,0,3,174,168,71,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(2343,'2015-03-14 14:56:58','2015-10-11 16:46:39',1,30003435,26,54,19,24,11,0,78,0,0,12,0,11,25,91,0,11,35,60,54,25,26,20,29,14),(2344,'2015-03-14 14:56:58','2015-10-11 16:46:39',1,30024971,79,0,51,130,50,57,155,74,73,126,215,111,29,144,122,270,203,174,79,91,158,106,35,88),(2345,'2015-03-14 14:56:58','2015-10-11 16:46:39',1,30001161,0,0,4,3,1,1,1,0,8,0,0,0,0,1,8,4,4,10,5,0,4,6,9,4),(2346,'2015-03-14 14:56:58','2015-10-11 16:46:39',1,30002406,0,0,133,1,9,2,86,0,0,0,26,26,26,0,0,0,0,17,3,6,60,110,0,0),(2347,'2015-03-14 14:56:58','2015-10-11 16:46:39',1,30002579,3,0,0,0,0,76,7,0,18,0,40,148,0,0,142,126,33,22,0,0,0,4,0,81),(2348,'2015-03-14 14:56:58','2015-10-11 16:46:39',1,30002189,276,467,360,511,274,252,293,90,183,494,856,591,404,687,470,406,359,411,326,413,548,597,431,518),(2349,'2015-03-14 14:56:58','2015-10-11 16:46:39',1,30003846,4,41,24,0,0,9,0,0,0,0,0,83,0,0,77,52,0,0,0,9,1,25,3,0),(2350,'2015-03-14 14:56:58','2015-10-11 16:46:39',1,30002418,14,2,0,1,18,0,20,2,0,35,0,0,54,0,0,0,0,63,3,0,42,9,23,0),(2351,'2015-03-14 14:56:58','2015-10-11 16:46:39',1,30002390,0,4,2,40,26,28,1,19,8,11,126,93,104,5,8,2,4,35,0,0,0,1,7,0),(2352,'2015-03-14 14:56:58','2015-10-11 16:46:39',1,30002053,422,689,465,524,581,489,367,235,374,763,619,615,445,632,628,565,622,397,341,372,589,644,664,303),(2353,'2015-03-14 14:56:58','2015-10-11 16:46:39',1,30002063,31,65,16,125,56,15,109,25,2,119,0,0,15,248,6,4,21,51,8,8,1,7,15,79),(2354,'2015-03-14 14:56:58','2015-10-11 16:46:39',1,30003594,0,0,0,18,0,1,33,70,0,11,10,13,21,17,60,48,0,57,11,49,8,78,15,1),(2355,'2015-03-14 14:56:58','2015-10-11 16:46:39',1,30001044,0,0,0,54,0,0,25,0,0,0,11,0,0,5,4,1,33,64,0,0,0,0,0,7),(2356,'2015-03-14 14:56:58','2015-10-11 16:46:39',1,30003902,0,0,15,0,0,27,49,0,0,49,14,13,61,0,0,0,0,14,2,0,0,0,0,1),(2357,'2015-03-14 14:56:58','2015-10-11 16:46:39',1,30034971,38,93,216,65,134,84,43,8,13,11,156,166,65,51,121,249,179,126,132,25,39,82,78,63),(2358,'2015-03-14 14:56:58','2015-10-11 16:46:39',1,30000188,197,177,98,307,37,44,195,40,12,91,186,127,125,60,222,220,204,337,94,39,106,155,167,285),(2359,'2015-03-14 14:56:59','2015-10-11 16:46:39',1,30005290,216,65,14,118,305,250,65,108,63,304,46,58,67,63,130,66,32,217,41,86,91,164,127,164),(2360,'2015-03-14 14:56:59','2015-10-11 16:46:39',1,30003528,5,1,57,95,7,11,41,1,26,4,25,21,78,14,11,29,46,96,19,15,21,38,123,17),(2361,'2015-03-14 14:56:59','2015-10-11 16:46:39',1,30005213,62,0,101,0,0,0,13,0,0,0,0,0,12,0,0,0,0,0,7,52,0,0,0,4),(2362,'2015-03-14 14:56:59','2015-10-11 16:46:39',1,30005320,32,9,19,10,19,24,6,2,9,4,8,1,0,35,9,72,127,59,2,8,34,6,4,25),(2363,'2015-03-14 14:56:59','2015-10-11 16:46:39',1,30004979,10,22,1,14,0,1,26,18,8,51,56,20,21,96,0,9,16,4,3,76,45,5,3,3),(2364,'2015-03-14 14:56:59','2015-10-11 16:46:39',1,30003937,0,7,0,0,0,0,0,4,23,0,0,0,0,0,0,0,0,0,0,0,0,0,0,70),(2365,'2015-03-14 14:56:59','2015-10-11 16:46:39',1,30003220,138,0,0,39,66,267,321,0,37,23,16,0,31,116,240,143,133,0,139,0,124,136,19,28),(2366,'2015-03-14 14:56:59','2015-10-11 16:46:39',1,30000837,23,37,0,0,0,0,0,0,0,0,0,0,0,0,0,54,141,0,0,0,20,0,0,145),(2367,'2015-03-14 14:56:59','2015-10-11 16:46:39',1,30001135,0,0,0,0,0,0,0,3,0,2,83,0,0,0,0,0,0,0,0,0,0,0,0,0),(2368,'2015-03-14 14:56:59','2015-03-14 14:56:59',1,30001509,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(2369,'2015-03-14 14:56:59','2015-10-11 16:46:39',1,30003162,446,135,0,33,0,0,352,21,234,131,129,123,35,16,100,122,67,56,0,37,90,74,44,155),(2370,'2015-03-14 14:56:59','2015-10-11 16:46:39',1,30004686,0,66,0,0,0,0,0,75,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(2371,'2015-03-14 14:56:59','2015-10-11 16:46:39',1,30003679,0,0,0,0,0,0,79,0,0,4,0,0,0,0,0,0,0,65,0,0,16,0,0,53),(2372,'2015-03-14 14:56:59','2015-03-14 14:56:59',1,30001612,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(2373,'2015-03-14 14:56:59','2015-10-11 16:46:39',1,30003099,123,0,0,0,0,0,0,33,0,0,0,0,0,0,108,129,38,14,8,0,0,0,1,5),(2374,'2015-03-14 14:56:59','2015-10-11 16:46:39',1,30001662,24,44,100,82,36,44,13,77,1,83,24,52,15,98,27,53,38,146,176,39,116,75,18,33),(2375,'2015-03-14 14:56:59','2015-10-11 16:46:39',1,30004240,35,0,23,49,0,0,0,0,7,0,0,0,0,0,0,0,0,0,0,0,75,1,0,0),(2376,'2015-03-14 14:56:59','2015-10-11 16:46:39',1,30001528,110,0,0,0,0,0,0,0,0,68,75,117,51,311,82,133,328,810,72,0,81,95,130,41),(2377,'2015-03-14 14:56:59','2015-10-11 16:46:39',1,30004142,878,0,65,35,10,0,45,67,96,103,68,131,238,16,96,104,57,21,33,0,0,23,10,129),(2378,'2015-03-14 14:56:59','2015-10-11 16:46:39',1,30045338,31,18,16,9,12,1,13,6,3,5,0,2,2,6,8,9,14,9,0,0,2,6,10,2),(2379,'2015-03-14 14:56:59','2015-10-11 16:46:39',1,30001674,301,179,330,156,108,122,252,161,52,445,341,308,165,217,255,164,214,250,309,214,264,193,478,217),(2380,'2015-03-14 14:56:59','2015-10-11 16:46:39',1,30003428,38,67,21,50,108,113,82,53,18,97,109,135,55,29,55,73,19,0,103,23,9,76,35,218),(2381,'2015-03-14 14:56:59','2015-10-11 16:46:39',1,30004133,65,9,53,28,29,28,0,77,0,108,28,81,112,2,27,28,26,14,26,110,10,0,106,36),(2382,'2015-03-14 14:56:59','2015-10-11 16:46:39',1,30002214,77,94,76,50,90,108,0,14,7,11,39,9,132,32,148,147,40,6,13,43,14,92,20,48),(2383,'2015-03-14 14:56:59','2015-10-11 16:46:39',1,30004141,76,0,26,0,3,7,0,0,3,66,0,5,87,9,38,13,20,18,0,52,36,0,35,177),(2384,'2015-03-14 14:56:59','2015-10-11 16:46:39',1,30005248,2,12,97,46,132,113,17,559,589,163,86,92,9,11,3,155,292,58,43,336,497,684,454,0),(2385,'2015-03-14 14:56:59','2015-10-11 16:46:39',1,30004077,470,85,266,261,235,522,212,85,21,95,100,199,133,308,73,144,250,234,151,396,165,361,237,36),(2386,'2015-03-14 14:56:59','2015-10-11 16:46:39',1,30045345,101,17,14,26,69,17,20,24,63,4,90,1,4,2,10,2,0,4,6,0,4,6,50,11),(2387,'2015-03-14 14:56:59','2015-10-11 16:46:39',1,30000133,30,161,227,168,103,71,36,130,140,133,184,304,76,46,98,69,60,45,70,31,162,219,159,63),(2388,'2015-03-14 14:56:59','2015-10-11 16:46:39',1,30003875,9,43,141,162,0,23,123,11,0,23,0,4,25,97,1,24,23,19,26,28,5,5,27,12),(2389,'2015-03-14 14:56:59','2015-10-11 16:46:39',1,30003531,103,25,40,153,20,65,36,143,52,88,230,220,164,106,20,73,66,99,115,75,51,100,136,216),(2390,'2015-03-14 14:56:59','2015-10-11 16:46:39',1,30031407,332,159,94,92,136,96,96,95,91,134,191,262,40,239,236,273,457,102,112,49,278,212,126,230),(2391,'2015-03-14 14:56:59','2015-10-11 16:46:39',1,30004956,0,0,0,0,0,0,0,0,13,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(2392,'2015-03-14 14:56:59','2015-10-11 16:46:39',1,30002245,25,85,94,207,53,89,53,28,57,93,103,25,144,32,49,65,58,158,8,83,175,188,111,116),(2393,'2015-03-14 14:56:59','2015-10-11 16:46:39',1,30000721,0,382,0,0,0,0,0,0,0,0,0,0,2,7,4,4,52,2,0,28,16,13,17,8),(2394,'2015-03-14 14:56:59','2015-10-11 16:46:39',1,30002468,361,165,0,3,605,451,91,55,45,26,37,150,149,83,0,0,5,259,0,5,19,331,143,118),(2395,'2015-03-14 14:56:59','2015-10-11 16:46:39',1,30002075,344,424,467,400,533,508,329,169,336,262,596,597,466,583,540,399,507,888,195,275,469,420,457,481),(2396,'2015-03-14 14:56:59','2015-10-11 16:46:39',1,30003400,53,46,0,0,12,15,18,22,0,76,12,0,112,0,70,111,55,7,0,0,81,41,30,11),(2397,'2015-03-14 14:56:59','2015-10-11 16:46:39',1,30002485,50,0,0,0,149,268,0,0,0,29,0,0,0,0,0,0,0,51,0,0,0,0,82,14),(2398,'2015-03-14 14:56:59','2015-10-11 16:46:39',1,30000828,0,0,0,0,0,0,0,61,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(2399,'2015-03-14 14:56:59','2015-10-11 16:46:39',1,30001744,177,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,4,0,0),(2400,'2015-03-14 14:56:59','2015-10-11 16:46:39',1,30001016,25,3,0,33,0,10,0,0,11,0,25,49,0,0,1,2,1,0,0,43,2,1,0,31),(2401,'2015-03-14 14:56:59','2015-10-11 16:46:39',1,30001847,0,9,33,141,85,285,58,38,42,136,187,162,89,89,107,145,191,319,0,77,124,71,130,149),(2402,'2015-03-14 14:56:59','2015-03-14 14:56:59',1,30004715,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(2403,'2015-03-14 14:56:59','2015-10-11 16:46:39',1,30004615,0,0,0,0,0,0,41,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(2404,'2015-03-14 14:56:59','2015-10-11 16:46:39',1,30003243,298,194,0,198,0,0,97,176,164,0,0,0,59,0,0,0,0,1,0,0,0,1,0,0),(2405,'2015-03-14 14:56:59','2015-10-11 16:46:39',1,30003469,157,234,209,376,130,171,22,96,68,65,297,339,293,285,210,247,168,205,35,51,24,192,116,481),(2406,'2015-03-14 14:56:59','2015-10-11 16:46:39',1,30002096,31,0,0,20,0,1,0,0,10,46,15,6,3,9,29,20,22,26,109,49,38,20,10,7),(2407,'2015-03-14 14:56:59','2015-10-11 16:46:39',1,30002773,285,287,327,151,202,209,297,133,306,154,283,293,141,178,376,383,334,347,70,228,125,220,97,310),(2408,'2015-03-14 14:56:59','2015-10-11 16:46:39',1,30002596,0,0,0,0,0,0,0,219,0,0,88,106,0,0,0,0,0,0,0,0,0,0,0,0),(2409,'2015-03-14 14:56:59','2015-10-11 16:46:39',1,30001680,91,165,137,154,218,212,0,108,172,249,138,216,202,146,173,188,120,170,59,94,40,182,226,76),(2410,'2015-03-14 14:56:59','2015-10-11 16:46:39',1,30004309,11,2,0,15,0,9,16,6,23,0,6,4,1,12,0,0,3,0,35,1,0,1,0,0),(2411,'2015-03-14 14:56:59','2015-10-11 16:46:39',1,30002397,196,71,45,131,92,130,1,141,24,96,126,109,161,125,77,42,43,107,14,171,89,136,185,115),(2412,'2015-03-14 14:56:59','2015-10-11 16:46:39',1,30043489,54,75,81,0,19,44,0,48,8,52,34,22,0,49,15,57,91,8,0,0,0,181,1,75),(2413,'2015-03-14 14:56:59','2015-10-11 16:46:39',1,30002741,0,42,0,58,57,82,6,1,0,93,61,34,0,23,0,6,6,0,48,21,185,20,42,17),(2414,'2015-03-14 14:56:59','2015-10-11 16:46:39',1,30004264,23,9,0,24,0,0,0,0,0,0,0,1,1,0,14,10,33,25,86,74,237,22,98,61),(2415,'2015-03-14 14:56:59','2015-10-11 16:46:39',1,30003560,11,20,0,48,0,3,7,0,6,0,0,0,0,45,1,3,46,12,1,59,0,0,0,2),(2416,'2015-03-14 14:56:59','2015-10-11 16:46:39',1,30004130,78,79,85,105,27,45,50,66,38,89,163,148,81,113,104,107,152,82,12,69,154,139,152,44),(2417,'2015-03-14 14:56:59','2015-10-11 16:46:39',1,30001690,39,104,108,1,58,35,29,26,15,64,18,14,35,49,101,122,104,90,11,33,29,185,152,66),(2418,'2015-03-14 14:56:59','2015-10-11 16:46:39',1,30000111,0,0,0,0,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(2419,'2015-03-14 14:56:59','2015-10-11 16:46:39',1,30003456,68,42,66,15,123,61,70,20,40,10,99,145,174,289,291,189,187,17,27,20,54,71,215,159),(2420,'2015-03-14 14:56:59','2015-10-11 16:46:39',1,30001221,0,0,0,0,0,0,0,0,0,3,0,7,7,83,14,14,7,4,9,17,7,17,1,11),(2421,'2015-03-14 14:56:59','2015-10-11 16:46:39',1,30003776,169,139,155,27,30,93,479,249,180,212,181,210,136,638,412,334,309,307,55,203,120,0,274,22),(2422,'2015-03-14 14:56:59','2015-03-14 14:56:59',1,30000370,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(2423,'2015-03-14 14:56:59','2015-03-14 14:56:59',1,30000592,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(2424,'2015-03-14 14:56:59','2015-03-14 14:56:59',1,30001463,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(2425,'2015-03-14 14:56:59','2015-10-11 16:46:39',1,30001583,0,2,0,0,0,0,0,0,0,0,0,0,0,0,0,0,11,0,0,0,0,0,0,0),(2426,'2015-03-14 14:56:59','2015-10-11 16:46:39',1,30002040,44,0,502,311,893,814,7,0,0,0,0,0,0,0,0,0,0,0,0,187,187,0,0,0),(2427,'2015-03-14 14:56:59','2015-10-11 16:46:39',1,30002856,379,447,124,211,57,41,141,36,143,186,327,535,618,82,270,458,864,248,5,60,281,316,352,190),(2428,'2015-03-14 14:56:59','2015-10-11 16:46:39',1,30000686,0,0,0,0,0,0,0,3,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(2429,'2015-03-14 14:56:59','2015-10-11 16:46:39',1,30001871,0,13,67,64,53,24,132,80,67,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(2430,'2015-03-14 14:56:59','2015-10-11 16:46:39',1,30002392,0,15,3,0,0,0,38,39,8,6,95,0,79,0,30,19,50,0,7,0,0,0,0,0),(2431,'2015-03-14 14:56:59','2015-10-11 16:46:39',1,30003468,401,21,68,59,13,39,220,84,54,53,49,51,118,362,354,350,285,100,78,243,168,203,149,194),(2432,'2015-03-14 14:56:59','2015-10-11 16:46:39',1,30002391,17,36,28,3,46,46,11,83,75,39,54,17,25,0,26,23,20,15,0,123,4,14,63,1),(2433,'2015-03-14 14:56:59','2015-10-11 16:46:39',1,30002574,14,0,68,9,0,0,0,75,0,23,6,5,95,31,13,1,0,0,159,34,0,4,6,0),(2434,'2015-03-14 14:56:59','2015-10-11 16:46:39',1,30002576,71,0,0,0,1,1,0,0,9,0,25,25,25,7,113,70,70,0,0,0,2,57,88,0),(2435,'2015-03-14 14:56:59','2015-10-11 16:46:39',1,30002054,163,103,125,243,210,283,145,77,74,100,367,409,174,209,183,334,438,236,247,196,189,300,359,290),(2436,'2015-03-14 14:56:59','2015-10-11 16:46:39',1,30003103,369,119,0,0,27,27,0,0,0,0,0,0,0,0,0,13,50,0,0,0,0,68,8,0),(2437,'2015-03-14 14:56:59','2015-10-11 16:46:39',1,30002505,167,28,65,70,194,154,49,27,92,93,74,70,104,124,105,115,145,96,54,34,71,126,106,85),(2438,'2015-03-14 14:56:59','2015-10-11 16:46:39',1,30004988,0,5,13,0,17,0,0,1,7,1,1,30,59,27,3,0,0,1,18,0,0,0,22,2),(2439,'2015-03-14 14:56:59','2015-10-11 16:46:39',1,30004304,0,0,0,1,87,96,1,1,5,9,89,25,0,102,73,43,7,75,0,0,0,0,36,0),(2440,'2015-03-14 14:56:59','2015-10-11 16:46:39',1,30003067,4,4,2,16,33,62,69,3,1,8,8,17,101,9,1,2,2,1,9,4,4,15,0,1),(2441,'2015-03-14 14:56:59','2015-10-11 16:46:39',1,30002572,174,49,89,190,143,52,116,73,16,149,66,108,119,57,196,186,111,67,87,46,98,66,143,109),(2442,'2015-03-14 14:56:59','2015-10-11 16:46:39',1,30000150,249,721,795,540,355,220,428,40,244,291,613,732,486,346,455,223,408,773,509,169,193,538,521,445),(2443,'2015-03-14 14:56:59','2015-10-11 16:46:39',1,30002217,19,27,51,1,165,55,51,57,2,59,0,0,20,16,7,15,39,0,27,4,90,12,0,0),(2444,'2015-03-14 14:56:59','2015-10-11 16:46:39',1,30002774,235,190,191,228,178,151,129,157,54,125,145,174,283,17,189,153,95,95,94,48,141,149,366,137),(2445,'2015-03-14 14:56:59','2015-10-11 16:46:39',1,30002356,228,319,219,94,150,100,275,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(2446,'2015-03-14 14:56:59','2015-10-11 16:46:39',1,30002871,1,104,82,270,9,0,214,134,0,112,62,93,175,164,107,178,187,82,140,64,82,110,138,54),(2447,'2015-03-14 14:56:59','2015-10-11 16:46:39',1,30004205,0,55,0,0,0,58,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,39),(2448,'2015-03-14 14:56:59','2015-10-11 16:46:39',1,30001159,2,0,0,0,0,0,1,150,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,3),(2449,'2015-03-14 14:56:59','2015-10-11 16:46:39',1,30045306,61,35,17,2,0,0,1,0,67,15,18,24,21,51,85,7,47,1,1,1,21,22,8,21),(2450,'2015-03-14 14:56:59','2015-10-11 16:46:39',1,30000134,572,231,396,453,108,234,235,186,79,197,240,209,186,387,182,273,343,95,146,125,345,374,110,232),(2451,'2015-03-14 14:56:59','2015-10-11 16:46:39',1,30004481,0,181,0,0,0,0,0,0,0,0,125,3,0,230,0,0,0,0,0,0,195,0,0,166),(2452,'2015-03-14 14:56:59','2015-10-11 16:46:39',1,30002796,60,540,61,226,121,46,318,253,47,255,1478,1497,1599,255,1150,1140,1177,1178,77,183,266,1337,934,780),(2453,'2015-03-14 14:56:59','2015-03-14 14:56:59',1,30000825,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(2454,'2015-03-14 14:56:59','2015-10-11 16:46:39',1,30004767,0,0,0,0,0,0,0,0,0,122,21,6,0,0,0,14,18,13,0,0,0,37,81,178),(2455,'2015-03-14 14:56:59','2015-10-11 16:46:39',1,30000482,0,0,103,0,77,37,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(2456,'2015-03-14 14:56:59','2015-10-11 16:46:39',1,30001767,0,0,0,0,0,0,0,0,0,0,1,143,31,0,16,16,0,0,0,0,0,0,0,0),(2457,'2015-03-14 14:56:59','2015-10-11 16:46:39',1,30000689,304,693,459,402,0,139,293,100,231,0,0,0,0,0,0,0,0,142,30,0,32,0,0,74),(2458,'2015-03-14 14:56:59','2015-10-11 16:46:39',1,30000788,0,0,0,0,0,0,0,3,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(2459,'2015-03-14 14:56:59','2015-10-11 16:46:39',1,30000636,8,12,8,3,0,0,0,0,0,10,9,4,4,12,8,0,0,0,0,0,0,0,0,0),(2460,'2015-03-14 14:56:59','2015-10-11 16:46:39',1,30001934,0,0,0,0,0,0,5,0,0,35,0,35,54,0,10,0,0,0,2,0,32,56,0,0),(2461,'2015-03-14 14:56:59','2015-10-11 16:46:39',1,30004400,87,232,107,14,0,0,0,2,0,145,70,135,397,18,393,532,323,181,14,184,279,237,207,64),(2462,'2015-03-14 14:56:59','2015-10-11 16:46:39',1,30004361,0,0,1,88,471,523,351,64,0,0,128,36,365,151,384,310,185,0,164,70,89,80,59,448),(2463,'2015-03-14 14:56:59','2015-10-11 16:46:39',1,30001188,0,171,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(2464,'2015-03-14 14:56:59','2015-10-11 16:46:39',1,30000520,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,50,46,0,0,0),(2465,'2015-03-14 14:56:59','2015-10-11 16:46:39',1,30004177,0,0,0,0,0,0,64,0,0,0,0,19,83,0,0,0,0,75,0,0,0,0,0,88),(2466,'2015-03-14 14:56:59','2015-10-11 16:46:39',1,30004636,121,150,38,0,1,105,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,7,8,19),(2467,'2015-03-14 14:56:59','2015-10-11 16:46:39',1,30004775,0,0,0,0,0,0,0,0,0,0,42,42,39,118,37,38,9,33,0,24,0,26,54,0),(2468,'2015-03-14 14:56:59','2015-10-11 16:46:39',1,30001752,7,11,0,8,7,3,12,14,11,249,71,65,15,54,51,83,44,5,15,55,90,99,212,134),(2469,'2015-03-14 14:56:59','2015-10-11 16:46:39',1,30001914,182,111,0,17,129,114,33,0,0,89,262,385,167,233,196,253,240,149,27,88,226,191,181,193),(2470,'2015-03-14 14:56:59','2015-10-11 16:46:39',1,30003784,221,16,5,183,78,75,0,58,90,25,24,82,32,5,45,346,708,294,30,33,0,219,0,81),(2471,'2015-03-14 14:56:59','2015-10-11 16:46:39',1,30002134,18,79,514,538,12,120,0,268,238,4,0,0,0,4,4,0,0,0,0,0,0,18,12,0),(2472,'2015-03-14 14:56:59','2015-03-14 14:56:59',1,30000952,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(2473,'2015-03-14 14:56:59','2015-03-14 14:56:59',1,30001466,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(2474,'2015-03-14 14:56:59','2015-10-11 16:46:39',1,30003701,339,547,290,55,138,243,627,887,724,229,561,576,442,388,189,208,173,277,452,293,364,482,265,93),(2475,'2015-03-14 14:56:59','2015-10-11 16:46:39',1,30003308,0,0,0,0,0,0,0,36,133,0,0,0,0,0,0,0,0,2,0,0,0,0,0,0),(2476,'2015-03-14 14:56:59','2015-10-11 16:46:39',1,30003317,0,3,10,0,0,7,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(2477,'2015-03-14 14:56:59','2015-10-11 16:46:39',1,30001782,0,0,25,0,25,55,0,0,0,1384,1234,1798,1272,335,493,456,943,820,52,0,248,1440,1226,959),(2478,'2015-03-14 14:56:59','2015-10-11 16:46:39',1,30003621,0,0,0,0,33,68,0,0,89,0,0,25,0,15,0,0,0,0,0,23,0,0,34,0),(2479,'2015-03-14 14:56:59','2015-10-11 16:46:39',1,30004023,0,0,143,137,0,0,0,326,580,0,0,0,0,0,0,0,0,0,0,0,0,75,0,0),(2480,'2015-03-14 14:56:59','2015-10-11 16:46:39',1,30002877,0,0,0,0,0,0,0,0,0,22,178,187,8,0,0,0,0,9,0,0,0,0,4,4),(2481,'2015-03-14 14:56:59','2015-10-11 16:46:39',1,30002908,39,500,1001,287,207,79,313,297,182,209,61,119,124,3,179,209,155,498,631,16,0,94,228,185),(2482,'2015-03-14 14:56:59','2015-10-11 16:46:39',1,30000758,13,0,0,0,0,0,0,0,66,0,0,0,0,0,99,135,82,0,0,0,0,0,0,0),(2483,'2015-03-14 14:56:59','2015-10-11 16:46:39',1,30004723,180,66,0,31,26,121,50,249,188,161,92,152,1,45,93,151,283,252,1,0,0,33,71,267),(2484,'2015-03-14 14:56:59','2015-03-14 14:56:59',1,30004430,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(2485,'2015-03-14 14:56:59','2015-10-11 16:46:39',1,30000626,0,0,0,0,0,0,0,0,50,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(2486,'2015-03-14 14:56:59','2015-03-14 14:56:59',1,30002343,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(2487,'2015-03-14 14:56:59','2015-10-11 16:46:39',1,30004933,0,0,0,0,46,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(2488,'2015-03-14 14:56:59','2015-10-11 16:46:39',1,30003716,73,0,124,157,0,0,378,80,66,197,88,118,42,0,53,56,137,91,0,42,187,42,76,119),(2489,'2015-03-14 14:56:59','2015-10-11 16:46:39',1,30001110,171,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,90),(2490,'2015-03-14 14:56:59','2015-10-11 16:46:39',1,30004482,102,196,80,151,151,109,163,0,0,155,258,168,97,74,6,0,0,0,95,0,0,0,0,0),(2491,'2015-03-14 14:56:59','2015-03-14 14:56:59',1,30001508,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(2492,'2015-03-14 14:56:59','2015-10-11 16:46:39',1,30000709,176,0,46,0,0,0,12,0,0,0,0,0,0,49,83,29,0,0,0,0,0,0,0,0),(2493,'2015-03-14 14:56:59','2015-10-11 16:46:39',1,30003241,0,0,0,0,0,0,0,0,0,90,0,0,0,0,188,107,15,0,0,0,0,0,0,0),(2494,'2015-03-14 14:56:59','2015-03-14 14:56:59',1,30001481,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(2495,'2015-03-14 14:56:59','2015-10-11 16:46:39',1,30004120,0,29,1,58,1,12,52,33,0,0,1,1,0,0,0,43,43,0,0,52,37,0,0,0),(2496,'2015-03-14 14:56:59','2015-10-11 16:46:39',1,30000509,0,0,11,0,0,0,0,0,0,0,0,0,0,0,20,20,1,0,0,0,0,0,0,6),(2497,'2015-03-14 14:56:59','2015-03-14 14:56:59',1,30001640,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(2498,'2015-03-14 14:56:59','2015-10-11 16:46:39',1,30003933,15,9,0,0,12,2,22,50,0,0,0,4,5,0,0,0,2,33,0,0,0,0,43,26),(2499,'2015-03-14 14:56:59','2015-10-11 16:46:39',1,30000053,0,127,7,86,58,126,2,21,26,138,85,1,48,145,109,22,9,0,0,26,55,0,0,0),(2500,'2015-03-14 14:56:59','2015-10-11 16:46:39',1,30002984,0,5,0,66,0,0,26,0,0,18,150,115,3,68,0,0,0,12,2,0,9,0,0,1),(2501,'2015-03-14 14:56:59','2015-10-11 16:46:39',1,30001052,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,32,0,0,0,0,0,0),(2502,'2015-03-14 14:56:59','2015-10-11 16:46:39',1,30001428,332,158,400,530,313,288,324,160,339,426,409,419,488,455,490,589,615,194,312,237,251,52,370,457),(2503,'2015-03-14 14:56:59','2015-10-11 16:46:39',1,30041407,194,74,80,200,169,225,516,71,46,327,332,248,246,110,326,133,298,321,82,39,348,300,339,300),(2504,'2015-03-14 14:56:59','2015-10-11 16:46:39',1,30045329,233,374,376,221,336,297,233,132,145,122,123,308,148,361,184,264,384,644,168,224,103,284,213,298),(2505,'2015-03-14 14:56:59','2015-10-11 16:46:39',1,30005227,46,27,31,18,266,57,174,46,54,36,35,41,47,24,63,45,49,29,8,24,109,87,110,28),(2506,'2015-03-14 14:56:59','2015-10-11 16:46:39',1,30003513,74,48,334,183,208,171,132,5,149,0,112,83,74,121,71,11,104,52,117,93,18,54,138,49),(2507,'2015-03-14 14:56:59','2015-03-14 14:56:59',1,30000400,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(2508,'2015-03-14 14:56:59','2015-10-11 16:46:39',1,30045313,65,34,1,19,26,37,5,9,17,0,76,95,27,23,25,21,27,39,0,10,28,23,54,21),(2509,'2015-03-14 14:56:59','2015-10-11 16:46:39',1,30003072,26,4,37,41,38,77,15,18,14,6,8,6,1,0,3,17,22,20,25,8,47,6,51,110),(2510,'2015-03-14 14:56:59','2015-03-14 14:56:59',1,30000422,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(2511,'2015-03-14 14:56:59','2015-10-11 16:46:39',1,30001056,1,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,3,0,4,0,86,0,0),(2512,'2015-03-14 14:56:59','2015-10-11 16:46:39',1,30003815,96,0,26,11,97,0,0,1,128,0,0,0,0,0,34,1,28,81,37,61,0,0,46,1),(2513,'2015-03-14 14:56:59','2015-10-11 16:46:39',1,30000254,0,0,0,140,0,0,0,12,10,0,0,0,0,0,0,0,0,0,0,2,3,0,0,0),(2514,'2015-03-14 14:56:59','2015-03-14 14:56:59',1,30003203,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(2515,'2015-03-14 14:56:59','2015-10-11 16:46:39',1,30003614,5,0,4,11,0,0,0,0,25,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(2516,'2015-03-14 14:56:59','2015-10-11 16:46:39',1,30003987,0,0,0,5,0,0,9,0,0,0,0,0,36,0,368,376,216,0,0,0,0,337,277,0),(2517,'2015-03-14 14:56:59','2015-10-11 16:46:39',1,30004583,0,70,0,0,0,0,0,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,0,30),(2518,'2015-03-14 14:56:59','2015-10-11 16:46:39',1,30003796,187,68,11,65,66,19,32,8,45,64,260,184,40,79,70,91,152,25,27,30,112,113,234,303),(2519,'2015-03-14 14:56:59','2015-10-11 16:46:39',1,30005005,224,77,110,549,229,65,194,185,83,234,535,317,160,289,281,101,87,96,131,430,149,295,357,284),(2520,'2015-03-14 14:56:59','2015-10-11 16:46:39',1,30002647,0,1,28,32,0,1,13,17,49,22,0,4,13,5,2,0,0,46,72,18,68,2,12,3),(2521,'2015-03-14 14:56:59','2015-10-11 16:46:39',1,30000169,93,2,3,7,0,0,38,0,10,38,39,5,0,0,1,0,1,32,1,61,1,74,9,66),(2522,'2015-03-14 14:56:59','2015-10-11 16:46:39',1,30000048,35,0,22,106,42,127,26,0,18,0,0,3,103,0,5,35,44,0,10,65,9,8,23,97),(2523,'2015-03-14 14:56:59','2015-03-14 14:56:59',1,30001602,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(2524,'2015-03-14 14:56:59','2015-10-11 16:46:39',1,30002907,0,1138,881,156,0,31,1,605,220,135,156,171,381,0,144,142,267,154,0,137,8,164,284,231),(2525,'2015-03-14 14:56:59','2015-10-11 16:46:39',1,30001374,447,602,374,405,371,465,417,263,379,469,657,648,737,767,886,870,810,854,78,213,561,823,611,496),(2526,'2015-03-14 14:56:59','2015-10-11 16:46:39',1,30003311,1,58,36,0,40,66,0,0,0,0,0,0,0,0,0,0,0,0,0,13,3,0,0,0),(2527,'2015-03-14 14:56:59','2015-10-11 16:46:39',1,30001422,0,0,19,7,0,0,0,0,19,0,0,0,0,9,0,0,35,53,0,0,7,31,1,0),(2528,'2015-03-14 14:56:59','2015-10-11 16:46:39',1,30002766,76,110,138,24,251,201,166,15,202,142,51,170,123,223,107,155,472,92,261,287,103,555,364,113),(2529,'2015-03-14 14:56:59','2015-10-11 16:46:39',1,30000159,268,213,607,94,180,180,98,145,174,209,115,297,384,298,186,289,327,224,298,156,238,365,271,410),(2530,'2015-03-14 14:56:59','2015-10-11 16:46:39',1,30002786,108,302,260,298,606,515,120,176,87,297,429,519,367,387,539,445,510,442,410,128,97,296,296,264),(2531,'2015-03-14 14:56:59','2015-10-11 16:46:39',1,30045337,1,0,1,92,4,4,15,8,13,12,2,7,18,5,7,1,2,31,2,34,3,5,2,77),(2532,'2015-03-14 14:56:59','2015-10-11 16:46:39',1,30003641,0,0,17,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,34,0,0),(2533,'2015-03-14 14:56:59','2015-10-11 16:46:39',1,30000138,97,60,92,15,176,121,8,138,111,0,78,61,119,53,128,138,207,22,80,53,92,95,188,114),(2534,'2015-03-14 14:56:59','2015-10-11 16:46:39',1,30002372,0,0,0,0,86,105,0,13,0,0,10,0,0,0,0,0,0,0,0,0,0,5,0,0),(2535,'2015-03-14 14:56:59','2015-10-11 16:46:39',1,30001146,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,76,0),(2536,'2015-03-14 14:56:59','2015-03-14 14:56:59',1,30004832,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(2537,'2015-03-14 14:56:59','2015-10-11 16:46:39',1,30000090,0,0,0,26,7,7,0,0,0,0,0,0,9,23,0,0,0,0,4,0,33,0,0,11),(2538,'2015-03-14 14:56:59','2015-10-11 16:46:39',1,30001731,9,100,45,24,57,100,5,25,18,4,7,5,39,6,8,85,84,7,33,2,51,4,41,63),(2539,'2015-03-14 14:56:59','2015-10-11 16:46:39',1,30002396,104,0,42,0,18,20,2,38,3,35,13,16,0,0,7,7,0,53,7,1,0,3,9,0),(2540,'2015-03-14 14:56:59','2015-10-11 16:46:39',1,30004294,0,0,0,0,1,1,0,0,0,43,58,1,19,57,0,0,0,2,0,16,52,17,0,0),(2541,'2015-03-14 14:56:59','2015-10-11 16:46:39',1,30002527,486,300,912,574,458,369,547,452,290,640,409,414,620,524,643,583,831,1052,327,173,686,386,390,501),(2542,'2015-03-14 14:56:59','2015-10-11 16:46:39',1,30003377,29,336,17,109,44,13,43,55,69,43,60,100,24,29,124,176,141,79,67,32,40,183,52,83),(2543,'2015-03-14 14:56:59','2015-10-11 16:46:39',1,30002208,27,17,19,20,41,0,32,17,55,45,23,41,4,1,1,0,0,7,65,13,21,79,4,50),(2544,'2015-03-14 14:56:59','2015-10-11 16:46:39',1,30003445,78,21,106,0,8,94,0,0,18,12,30,108,96,110,142,57,78,24,9,10,12,40,121,9),(2545,'2015-03-14 14:56:59','2015-10-11 16:46:39',1,30003094,42,0,0,0,71,71,0,0,2,31,12,1,0,77,43,133,111,0,16,0,0,0,0,0),(2546,'2015-03-14 14:56:59','2015-10-11 16:46:39',1,30001655,13,50,30,1,84,46,0,31,75,0,91,41,24,101,0,9,27,66,20,31,35,0,64,131),(2547,'2015-03-14 14:56:59','2015-10-11 16:46:39',1,30005053,0,138,0,150,101,126,173,0,0,112,93,112,142,55,138,157,369,141,99,32,38,189,231,47),(2548,'2015-03-14 14:56:59','2015-10-11 16:46:39',1,30000895,0,37,0,21,0,33,52,0,0,1,0,0,0,24,6,0,0,0,0,0,0,0,0,0),(2549,'2015-03-14 14:56:59','2015-10-11 16:46:39',1,30045343,21,3,19,25,30,34,22,8,19,6,1,12,39,9,24,30,29,41,12,0,31,16,13,8),(2550,'2015-03-14 14:56:59','2015-10-11 16:46:39',1,30005246,23,35,25,108,28,9,124,32,53,91,79,94,103,30,110,50,132,129,0,23,74,88,76,3),(2551,'2015-03-14 14:56:59','2015-10-11 16:46:39',1,30002793,338,636,1098,939,718,696,610,367,366,337,664,495,449,851,697,536,493,700,457,231,510,813,590,514),(2552,'2015-03-14 14:56:59','2015-10-11 16:46:39',1,30002788,334,327,401,203,368,350,427,197,428,260,452,649,285,341,438,242,440,366,289,173,159,379,644,475),(2553,'2015-03-14 14:56:59','2015-10-11 16:46:39',1,30000182,988,2900,3460,3418,2897,2538,1199,1900,1878,2559,3965,4180,4159,4040,3899,3980,3499,3858,920,1073,1230,2119,2239,2440),(2554,'2015-03-14 14:56:59','2015-10-11 16:46:39',1,30002072,190,233,429,569,607,496,513,275,351,225,256,429,194,370,496,378,688,276,473,224,244,651,673,450),(2555,'2015-03-14 14:56:59','2015-10-11 16:46:39',1,30004982,9,27,22,10,19,23,17,90,43,4,22,45,136,5,8,16,21,121,2,26,1,64,92,128),(2556,'2015-03-14 14:56:59','2015-10-11 16:46:39',1,30002672,85,53,8,20,40,8,74,106,53,104,123,190,93,218,70,67,33,130,30,27,89,45,125,20),(2557,'2015-03-14 14:56:59','2015-10-11 16:46:39',1,30002559,1,9,0,157,5,11,0,5,0,12,0,17,42,1,66,0,0,0,0,0,0,0,131,0),(2558,'2015-03-14 14:56:59','2015-10-11 16:46:39',1,30004102,25,47,104,34,0,0,0,0,33,42,85,103,90,22,73,31,86,0,0,67,227,34,51,20),(2559,'2015-03-14 14:56:59','2015-10-11 16:46:39',1,30045316,9,4,12,15,110,22,3,85,62,2,7,16,2,4,40,6,5,20,15,6,7,21,17,5),(2560,'2015-03-14 14:56:59','2015-10-11 16:46:39',1,30002738,378,558,418,222,327,352,322,183,223,331,393,345,208,331,302,378,532,658,69,291,415,379,186,280),(2561,'2015-03-14 14:56:59','2015-10-11 16:46:39',1,30003740,3,18,76,22,98,26,26,120,94,10,125,266,407,175,404,339,599,45,158,323,108,379,40,197),(2562,'2015-03-14 14:56:59','2015-10-11 16:46:39',1,30003788,8,40,18,10,16,18,0,8,2,0,11,5,5,37,23,10,9,0,11,30,10,13,3,13),(2563,'2015-03-14 14:56:59','2015-10-11 16:46:39',1,30003219,449,0,0,10,218,0,114,426,149,43,290,417,474,118,1,54,203,214,63,131,169,132,0,0),(2564,'2015-03-14 14:56:59','2015-10-11 16:46:39',1,30001991,0,0,0,0,0,0,0,0,35,0,0,0,0,0,0,0,0,0,0,0,0,0,85,62),(2565,'2015-03-14 14:56:59','2015-10-11 16:46:39',1,30002439,0,118,65,76,98,109,343,61,204,425,202,185,144,15,0,0,0,256,0,52,48,29,0,189),(2566,'2015-03-14 14:56:59','2015-10-11 16:46:39',1,30000062,16,150,75,2,94,133,77,20,25,27,73,89,241,11,59,59,53,138,7,54,12,89,114,21),(2567,'2015-03-14 14:56:59','2015-10-11 16:46:39',1,30001843,1,18,31,23,10,11,1,48,0,0,85,66,16,46,37,60,118,148,9,0,54,73,44,0),(2568,'2015-03-14 14:56:59','2015-10-11 16:46:39',1,30004726,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,38,0,0),(2569,'2015-03-14 14:56:59','2015-10-11 16:46:39',1,30000252,0,0,0,0,65,86,116,0,0,0,0,0,0,0,0,0,0,14,0,0,0,0,0,0),(2570,'2015-03-14 14:56:59','2015-10-11 16:46:39',1,30003861,49,0,111,24,17,17,80,0,0,10,8,8,0,13,28,25,50,31,19,0,36,122,47,0),(2571,'2015-03-14 14:56:59','2015-10-11 16:46:39',1,30003176,491,242,538,848,173,100,123,284,176,0,0,78,19,36,133,152,42,0,6,69,109,30,454,68),(2572,'2015-03-14 14:56:59','2015-10-11 16:46:39',1,30000277,0,66,78,1,8,29,0,15,0,192,121,166,11,189,103,268,282,89,96,130,5,152,74,46),(2573,'2015-03-14 14:56:59','2015-10-11 16:46:39',1,30003140,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,16,0,0,0),(2574,'2015-03-14 14:56:59','2015-10-11 16:46:39',1,30004556,0,0,0,0,0,0,0,0,67,0,0,0,0,0,0,0,0,0,0,4,0,0,4,0),(2575,'2015-03-14 14:56:59','2015-10-11 16:46:39',1,30045317,1,4,5,3,44,20,9,1,23,8,12,18,91,23,24,13,24,29,13,12,14,12,17,11),(2576,'2015-03-14 14:56:59','2015-10-11 16:46:39',1,30002333,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,61,0,0,0,0,74,0),(2577,'2015-03-14 14:56:59','2015-10-11 16:46:39',1,30002595,0,0,0,0,0,0,164,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(2578,'2015-03-14 14:56:59','2015-10-11 16:46:39',1,30003452,105,104,27,175,54,128,20,196,54,49,81,139,152,36,112,172,147,62,10,49,141,130,158,80),(2579,'2015-03-14 14:56:59','2015-10-11 16:46:39',1,30002792,569,581,505,867,683,620,444,401,289,616,820,1120,765,747,869,754,701,712,593,164,644,942,928,1040),(2580,'2015-03-14 14:56:59','2015-10-11 16:46:39',1,30003935,67,0,9,8,9,9,0,0,26,0,0,0,33,0,0,24,27,0,0,0,0,0,0,0),(2581,'2015-03-14 14:56:59','2015-10-11 16:46:39',1,30003524,84,11,1,43,37,33,42,3,1,77,15,15,28,0,0,15,23,68,2,1,71,138,42,85),(2582,'2015-03-14 14:56:59','2015-10-11 16:46:39',1,30002192,276,263,242,238,317,240,412,144,143,355,252,160,126,461,282,319,367,275,319,229,281,162,324,345),(2583,'2015-03-14 14:56:59','2015-10-11 16:46:39',1,30001696,1,6,79,4,76,25,45,78,149,128,118,142,96,153,79,150,156,120,25,23,175,238,57,86),(2584,'2015-03-14 14:56:59','2015-10-11 16:46:39',1,30000073,25,0,0,10,2,20,0,0,0,3,4,4,0,13,3,3,0,0,10,0,5,0,0,13),(2585,'2015-03-14 14:56:59','2015-10-11 16:46:39',1,30002331,0,0,0,0,0,0,0,0,0,0,0,0,3,0,1,0,0,0,0,0,0,0,0,0),(2586,'2015-03-14 14:56:59','2015-10-11 16:46:39',1,30001236,7,0,35,162,1,3,0,10,4,0,0,0,0,56,0,0,0,0,0,0,0,0,0,69),(2587,'2015-03-14 14:56:59','2015-10-11 16:46:39',1,30002276,215,172,159,26,89,52,120,210,111,174,125,85,51,220,376,304,233,105,65,130,159,206,272,84),(2588,'2015-03-14 14:56:59','2015-10-11 16:46:39',1,30001389,107,187,116,137,153,142,164,124,97,118,152,122,243,157,228,146,205,273,173,170,122,314,431,221),(2589,'2015-03-14 14:56:59','2015-10-11 16:46:39',1,30002739,211,262,369,195,246,124,389,215,212,131,380,159,202,445,450,351,434,535,450,457,459,490,345,310),(2590,'2015-03-14 14:56:59','2015-10-11 16:46:39',1,30002087,11,1,5,10,13,5,12,124,1,30,24,33,25,6,6,7,8,21,14,0,3,10,4,25),(2591,'2015-03-14 14:56:59','2015-10-11 16:46:39',1,30002815,155,376,215,94,302,214,188,132,169,301,479,328,129,355,265,149,172,468,193,249,137,63,336,137),(2592,'2015-03-14 14:56:59','2015-10-11 16:46:39',1,30005014,51,7,0,0,0,0,0,0,0,0,21,21,0,0,3,25,25,111,0,0,0,39,0,18),(2593,'2015-03-14 14:56:59','2015-10-11 16:46:39',1,30002546,945,475,590,671,574,507,937,237,727,734,999,777,404,781,1097,788,1011,625,724,922,1031,1212,806,802),(2594,'2015-03-14 14:56:59','2015-10-11 16:46:39',1,30000165,149,184,296,117,120,136,131,49,77,140,69,43,262,126,158,123,101,277,82,179,173,159,84,119),(2595,'2015-03-14 14:56:59','2015-10-11 16:46:39',1,30000093,0,0,0,0,4,4,3,53,6,0,8,8,0,12,171,72,17,156,0,0,0,1,0,0),(2596,'2015-03-14 14:56:59','2015-10-11 16:46:39',1,30002756,13,0,3,63,9,30,0,0,0,19,6,8,1,26,0,0,3,54,12,1,5,16,2,68),(2597,'2015-03-14 14:56:59','2015-10-11 16:46:39',1,30004243,20,0,0,17,0,14,0,6,0,10,33,55,47,0,0,0,0,75,40,1,2,38,57,30),(2598,'2015-03-14 14:56:59','2015-10-11 16:46:39',1,30001436,111,49,62,0,0,0,0,0,0,19,40,41,0,7,11,0,58,16,15,11,0,0,0,0),(2599,'2015-03-14 14:56:59','2015-10-11 16:46:39',1,30001387,276,104,176,125,217,201,151,85,114,150,247,291,113,101,149,174,120,190,338,63,199,89,346,100),(2600,'2015-03-14 14:56:59','2015-10-11 16:46:39',1,30001365,406,455,1280,1419,866,1035,651,661,899,665,1170,1680,1211,1154,1555,1346,968,826,842,663,543,793,953,543),(2601,'2015-03-14 14:56:59','2015-10-11 16:46:39',1,30002804,622,564,658,876,926,745,1054,972,514,512,971,1192,1197,1153,1980,2100,1680,1440,831,525,839,1153,1375,1619),(2602,'2015-03-14 14:56:59','2015-10-11 16:46:39',1,30001426,287,402,270,389,249,348,302,257,298,396,258,94,190,492,683,872,781,275,185,219,185,316,282,254),(2603,'2015-03-14 14:56:59','2015-10-11 16:46:39',1,30001397,476,616,546,767,813,629,668,599,720,1086,894,913,797,556,603,512,690,774,69,388,255,555,572,587),(2604,'2015-03-14 14:56:59','2015-10-11 16:46:39',1,30002402,1,27,64,39,2,2,8,83,0,87,0,0,0,37,0,0,0,10,195,0,4,107,0,0),(2605,'2015-03-14 14:56:59','2015-10-11 16:46:39',1,30002777,446,554,259,398,414,246,125,359,276,281,356,306,250,217,263,371,480,221,371,200,287,429,367,197),(2606,'2015-03-14 14:56:59','2015-10-11 16:46:39',1,30001726,22,18,6,185,15,22,4,4,22,10,97,268,92,66,7,84,113,50,96,14,14,42,55,80),(2607,'2015-03-14 14:56:59','2015-10-11 16:46:39',1,30000285,0,0,123,0,0,44,0,21,0,30,0,4,15,0,4,8,9,36,0,0,0,5,3,11),(2608,'2015-03-14 14:56:59','2015-10-11 16:46:39',1,30000119,178,208,314,187,195,376,134,293,162,172,316,283,205,162,227,235,320,161,195,161,147,230,249,266),(2609,'2015-03-14 14:56:59','2015-10-11 16:46:39',1,30004157,308,154,52,127,118,28,280,49,57,90,177,189,212,100,63,54,46,266,70,32,188,127,163,26),(2610,'2015-03-14 14:56:59','2015-10-11 16:46:39',1,30005256,1,58,0,25,0,0,0,0,25,16,9,0,26,0,7,0,0,45,0,0,0,56,23,17),(2611,'2015-03-14 14:56:59','2015-10-11 16:46:39',1,30002985,0,2,0,12,0,0,0,31,98,24,3,0,0,0,0,0,0,0,0,9,30,0,0,4),(2612,'2015-03-14 14:56:59','2015-10-11 16:46:39',1,30005169,0,302,0,0,110,546,0,0,0,0,0,0,0,0,0,28,74,0,0,0,0,0,0,3),(2613,'2015-03-14 14:56:59','2015-10-11 16:46:39',1,30002886,253,50,287,0,114,56,0,1519,478,0,0,0,41,0,78,109,95,0,0,0,0,0,0,0),(2614,'2015-03-14 14:56:59','2015-10-11 16:46:39',1,30002594,0,0,0,0,0,0,0,0,95,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(2615,'2015-03-14 14:56:59','2015-10-11 16:46:39',1,30002524,325,245,460,240,498,368,361,517,144,270,169,217,229,403,376,444,434,416,165,257,294,258,335,489),(2616,'2015-03-14 14:56:59','2015-10-11 16:46:39',1,30001656,116,183,341,286,180,130,193,47,141,218,27,110,113,238,346,338,200,188,302,288,268,278,326,222),(2617,'2015-03-14 14:56:59','2015-10-11 16:46:39',1,30003813,92,5,23,145,39,0,0,0,34,21,0,0,0,0,0,0,84,232,0,0,0,40,12,147),(2618,'2015-03-14 14:56:59','2015-10-11 16:46:39',1,30000622,90,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(2619,'2015-03-14 14:56:59','2015-10-11 16:46:39',1,30045351,33,2,20,29,9,1,2,18,19,15,84,1,0,14,25,35,101,1,35,11,11,106,22,50),(2620,'2015-03-14 14:56:59','2015-10-11 16:46:39',1,30003765,202,61,316,11,300,170,258,0,0,181,90,187,181,312,120,225,232,77,313,479,63,37,290,507),(2621,'2015-03-14 14:56:59','2015-10-11 16:46:39',1,30000956,0,0,47,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(2622,'2015-03-14 14:56:59','2015-10-11 16:46:39',1,30002642,237,124,65,162,194,113,45,129,217,222,116,101,158,213,293,400,374,304,252,285,188,350,272,247),(2623,'2015-03-14 14:56:59','2015-10-11 16:46:39',1,30004535,0,46,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,21,0,0,0,0,0,11),(2624,'2015-03-14 14:56:59','2015-10-11 16:46:39',1,30001812,94,135,138,257,185,112,511,111,54,0,0,0,0,0,0,0,0,0,0,0,0,0,36,76),(2625,'2015-03-14 14:56:59','2015-10-11 16:46:39',1,30004905,180,0,386,135,21,0,277,154,168,0,0,0,143,166,4,0,0,4,9,93,2,0,44,113),(2626,'2015-03-14 14:56:59','2015-10-11 16:46:39',1,30004162,0,262,6,1,57,174,0,354,284,0,64,84,0,0,0,0,0,0,0,0,0,0,0,0),(2627,'2015-03-14 14:56:59','2015-10-11 16:46:39',1,30001920,43,0,97,0,42,79,35,0,0,45,29,60,0,82,97,145,189,65,70,20,28,129,0,39),(2628,'2015-03-14 14:56:59','2015-10-11 16:46:39',1,30001977,9,26,7,30,34,51,33,52,120,5,126,164,121,115,54,75,156,44,12,28,32,0,4,65),(2629,'2015-03-14 14:56:59','2015-03-14 14:56:59',1,30003206,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(2630,'2015-03-14 14:56:59','2015-10-11 16:46:39',1,30000847,0,205,216,0,320,370,89,0,0,0,0,0,0,0,0,0,0,0,0,21,21,0,0,0),(2631,'2015-03-14 14:56:59','2015-03-14 14:56:59',1,30001505,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(2632,'2015-03-14 14:56:59','2015-10-11 16:46:39',1,30000489,0,0,0,0,0,0,0,0,0,0,26,10,0,0,0,0,0,0,13,4,0,0,0,0),(2633,'2015-03-14 14:56:59','2015-10-11 16:46:39',1,30004755,0,49,2,148,63,11,33,366,148,300,117,36,41,3,0,6,6,126,53,346,257,17,0,356),(2634,'2015-03-14 14:56:59','2015-10-11 16:46:39',1,30002887,0,242,0,0,0,0,0,0,17,8,289,185,230,71,129,306,490,52,0,75,0,177,65,72),(2635,'2015-03-14 14:56:59','2015-10-11 16:46:39',1,30001195,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,110,0,0,0),(2636,'2015-03-14 14:56:59','2015-10-11 16:46:39',1,30002026,0,0,8,34,309,106,58,6,0,0,0,0,0,0,0,0,0,0,0,0,0,56,87,0),(2637,'2015-03-14 14:56:59','2015-10-11 16:46:39',1,30002174,319,218,458,201,573,583,205,121,48,136,41,100,376,139,200,103,33,120,1,88,44,61,69,420),(2638,'2015-03-14 14:56:59','2015-03-14 14:56:59',1,30004215,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(2639,'2015-03-14 14:56:59','2015-10-11 16:46:39',1,30004637,0,0,0,0,29,0,0,0,0,24,1,0,0,0,0,0,4,0,0,0,0,0,0,0),(2640,'2015-03-14 14:56:59','2015-10-11 16:46:39',1,30003142,0,0,0,0,28,46,0,0,0,0,0,0,0,0,0,0,0,0,93,0,0,0,0,72),(2641,'2015-03-14 14:56:59','2015-10-11 16:46:39',1,30000594,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,19),(2642,'2015-03-14 14:56:59','2015-10-11 16:46:39',1,30004410,0,0,0,0,0,0,0,0,112,0,0,0,0,0,0,11,11,0,0,0,0,0,0,0),(2643,'2015-03-14 14:56:59','2015-03-14 14:56:59',1,30000390,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(2644,'2015-03-14 14:56:59','2015-03-14 14:56:59',1,30000366,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(2645,'2015-03-14 14:56:59','2015-10-11 16:46:39',1,30001112,0,0,0,1,0,0,0,21,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(2646,'2015-03-14 14:56:59','2015-10-11 16:46:39',1,30000843,0,0,0,0,0,0,0,0,0,0,0,1,0,39,79,56,41,20,0,0,0,0,0,0),(2647,'2015-03-14 14:56:59','2015-03-14 14:56:59',1,30001456,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(2648,'2015-03-14 14:56:59','2015-10-11 16:46:39',1,30003634,330,95,318,154,120,251,5,442,539,131,0,0,0,0,0,0,61,8,0,0,0,0,0,0),(2649,'2015-03-14 14:56:59','2015-10-11 16:46:39',1,30002942,99,505,0,52,152,142,0,1078,99,0,0,156,46,0,0,25,93,210,0,0,0,84,0,0),(2650,'2015-03-14 14:56:59','2015-10-11 16:46:39',1,30004513,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,40,40,0,0,0,0,0,0,0),(2651,'2015-03-14 14:56:59','2015-10-11 16:46:39',1,30000677,187,0,0,0,0,0,0,0,0,1,0,0,4,16,53,37,0,41,0,7,0,7,5,58),(2652,'2015-03-14 14:56:59','2015-03-14 14:56:59',1,30000386,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(2653,'2015-03-14 14:56:59','2015-10-11 16:46:40',1,30001750,79,0,0,2,0,0,114,44,2,0,0,0,0,0,0,0,0,48,0,35,43,0,0,0),(2654,'2015-03-14 14:56:59','2015-10-11 16:46:40',1,30001043,2,31,1,12,19,14,0,3,10,153,32,51,111,49,48,76,54,154,44,0,37,137,6,96),(2655,'2015-03-14 14:56:59','2015-10-11 16:46:40',1,30004373,0,20,49,102,143,0,0,0,0,0,0,0,0,51,0,0,0,0,0,22,111,203,279,61),(2656,'2015-03-14 14:56:59','2015-10-11 16:46:40',1,30004589,74,134,22,42,23,39,200,0,10,0,0,0,0,0,11,15,4,11,0,0,0,0,0,20),(2657,'2015-03-14 14:56:59','2015-10-11 16:46:40',1,30001941,0,0,0,0,0,0,0,0,0,100,22,0,0,37,0,0,0,8,0,0,0,0,32,11),(2658,'2015-03-14 14:56:59','2015-10-11 16:46:40',1,30001230,0,0,0,0,0,0,0,4,0,94,42,55,109,0,0,1,4,0,0,1,131,0,0,0),(2659,'2015-03-14 14:56:59','2015-10-11 16:46:40',1,30000538,55,0,0,0,0,0,0,34,0,0,0,0,0,0,0,0,0,0,0,58,160,0,0,0),(2660,'2015-03-14 14:56:59','2015-10-11 16:46:40',1,30001013,0,23,25,58,47,99,21,85,46,1,0,0,140,0,0,0,0,0,0,0,0,0,0,0),(2661,'2015-03-14 14:56:59','2015-10-11 16:46:40',1,30002285,0,0,6,0,2,43,0,21,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(2662,'2015-03-14 14:56:59','2015-03-14 14:56:59',1,30001800,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(2663,'2015-03-14 14:56:59','2015-10-11 16:46:40',1,30004312,0,0,248,0,150,21,133,0,0,0,0,59,87,0,0,0,0,0,0,0,0,30,0,0),(2664,'2015-03-14 14:56:59','2015-10-11 16:46:40',1,30004385,358,192,282,354,196,204,149,0,163,89,41,100,395,241,97,135,254,0,524,89,151,133,31,134),(2665,'2015-03-14 14:56:59','2015-10-11 16:46:40',1,30004460,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,91,0),(2666,'2015-03-14 14:56:59','2015-10-11 16:46:40',1,30005158,98,0,0,0,4,4,0,0,0,17,147,51,14,35,54,0,0,0,0,0,0,0,0,0),(2667,'2015-03-14 14:56:59','2015-10-11 16:46:40',1,30004514,0,0,0,0,0,0,2,0,0,0,0,0,0,12,0,0,0,1,0,0,0,0,0,0),(2668,'2015-03-14 14:56:59','2015-10-11 16:46:40',1,30001055,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,3,0,0,0,0,0,0),(2669,'2015-03-14 14:56:59','2015-10-11 16:46:40',1,30001225,132,0,0,0,0,0,0,0,0,0,0,4,6,0,0,0,0,0,0,0,0,0,0,0),(2670,'2015-03-14 14:56:59','2015-10-11 16:46:40',1,30003864,5,54,17,18,42,23,5,15,20,60,19,72,113,66,25,20,77,48,49,173,44,19,54,0),(2671,'2015-03-14 14:56:59','2015-10-11 16:46:40',1,30000148,241,436,840,498,448,556,778,217,122,176,348,162,222,271,289,211,306,297,176,182,229,239,460,292),(2672,'2015-03-14 14:56:59','2015-10-11 16:46:40',1,30004125,64,70,149,18,22,0,241,55,59,52,0,79,54,2,53,80,174,77,125,1,97,34,135,155),(2673,'2015-03-14 14:56:59','2015-10-11 16:46:40',1,30003554,14,24,34,143,1,1,59,44,68,41,67,46,139,66,144,71,30,107,53,26,80,68,40,77),(2674,'2015-03-14 14:56:59','2015-10-11 16:46:40',1,30001050,93,0,0,0,1,1,1,0,0,0,57,0,0,0,7,7,0,0,0,0,1,0,0,71),(2675,'2015-03-14 14:56:59','2015-10-11 16:46:40',1,30001385,0,16,91,1,11,8,12,0,45,79,3,1,23,0,21,21,13,58,22,0,9,4,24,20),(2676,'2015-03-14 14:56:59','2015-10-11 16:46:40',1,30000071,98,29,0,78,426,183,0,49,0,4,75,175,12,25,31,66,102,0,0,0,0,42,7,3),(2677,'2015-03-14 14:56:59','2015-10-11 16:46:40',1,30000060,0,84,131,88,52,51,41,89,65,90,110,59,75,58,71,124,82,74,75,25,50,95,0,109),(2678,'2015-03-14 14:56:59','2015-10-11 16:46:40',1,30000082,21,64,24,49,5,6,1,0,7,41,75,55,90,247,5,15,18,0,13,56,17,58,60,31),(2679,'2015-03-14 14:56:59','2015-10-11 16:46:40',1,30000004,54,50,204,76,100,74,68,37,9,53,97,15,38,34,98,163,112,0,151,25,168,58,91,57),(2680,'2015-03-14 14:56:59','2015-10-11 16:46:40',1,30003080,33,29,93,80,0,0,36,114,2,141,25,76,20,10,2,2,8,11,0,161,63,45,56,23),(2681,'2015-03-14 14:56:59','2015-10-11 16:46:40',1,30002263,69,49,198,111,124,37,160,23,109,154,392,263,146,163,201,173,177,50,6,87,92,186,85,178),(2682,'2015-03-14 14:56:59','2015-10-11 16:46:40',1,30001653,60,38,54,132,62,57,18,84,56,5,65,45,91,31,79,190,197,61,28,132,72,30,45,40),(2683,'2015-03-14 14:56:59','2015-10-11 16:46:40',1,30003029,61,87,170,649,125,286,72,159,37,242,160,142,165,170,54,75,85,163,52,106,131,264,127,75),(2684,'2015-03-14 14:56:59','2015-10-11 16:46:40',1,30004241,1,4,27,45,38,27,23,20,68,15,39,27,0,19,0,0,0,0,0,0,0,0,4,3),(2685,'2015-03-14 14:56:59','2015-10-11 16:46:40',1,30003551,103,0,37,0,0,0,0,15,62,39,235,136,120,21,0,0,0,86,3,158,0,1,31,5),(2686,'2015-03-14 14:56:59','2015-10-11 16:46:40',1,30000121,30,125,67,327,116,105,44,74,185,113,176,161,74,155,274,196,167,257,78,178,53,200,346,125),(2687,'2015-03-14 14:56:59','2015-10-11 16:46:40',1,30003107,0,0,0,0,0,66,0,125,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(2688,'2015-03-14 14:56:59','2015-10-11 16:46:40',1,30002564,111,35,55,28,106,41,28,78,0,0,119,90,42,100,85,92,222,21,41,21,0,0,72,54),(2689,'2015-03-14 14:56:59','2015-10-11 16:46:40',1,30002336,93,0,0,0,0,39,0,0,0,224,0,0,0,40,0,0,0,0,0,177,282,0,0,0),(2690,'2015-03-14 14:56:59','2015-10-11 16:46:40',1,30000045,8,9,0,38,42,112,20,0,0,27,35,67,43,138,0,0,0,0,15,10,0,10,25,14),(2691,'2015-03-14 14:56:59','2015-10-11 16:46:40',1,30000022,1,3,22,43,39,28,0,0,48,0,0,0,0,70,0,0,0,2,0,0,0,0,0,0),(2692,'2015-03-14 14:56:59','2015-03-14 14:56:59',1,30000381,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(2693,'2015-03-14 14:56:59','2015-10-11 16:46:40',1,30001777,0,0,0,0,0,0,0,0,0,0,0,0,2,0,0,0,0,0,0,2,0,0,0,0),(2694,'2015-03-14 14:56:59','2015-10-11 16:46:40',1,30001185,504,73,43,107,190,86,168,35,0,120,137,241,205,636,121,137,138,238,804,373,153,607,588,146),(2695,'2015-03-14 14:56:59','2015-10-11 16:46:40',1,30001971,17,191,0,110,0,46,145,14,117,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(2696,'2015-03-14 14:56:59','2015-03-14 14:56:59',1,30003148,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(2697,'2015-03-14 14:56:59','2015-10-11 16:46:40',1,30002112,0,0,0,0,0,0,0,0,126,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(2698,'2015-03-14 14:56:59','2015-10-11 16:46:40',1,30002006,23,3,15,1,50,16,8,0,198,33,28,64,99,19,116,95,93,195,36,70,72,230,132,179),(2699,'2015-03-14 14:56:59','2015-10-11 16:46:40',1,30004192,0,280,1077,69,212,94,400,0,0,796,837,736,770,711,432,469,888,161,880,1080,980,519,473,153),(2700,'2015-03-14 14:56:59','2015-10-11 16:46:40',1,30002500,1020,379,115,65,145,53,19,0,63,9,9,7,0,39,0,0,0,0,0,0,5,0,0,0),(2701,'2015-03-14 14:56:59','2015-10-11 16:46:40',1,30005083,0,11,14,0,0,0,49,67,9,0,0,1,0,0,0,0,0,0,0,0,88,30,3,8),(2702,'2015-03-14 14:56:59','2015-10-11 16:46:40',1,30003760,81,213,39,100,3,91,84,298,231,62,47,23,233,55,22,1,0,0,0,0,14,57,0,0),(2703,'2015-03-14 14:56:59','2015-10-11 16:46:40',1,30002692,116,296,123,217,145,126,175,109,229,421,409,510,551,275,221,311,325,379,239,266,519,249,339,240),(2704,'2015-03-14 14:56:59','2015-10-11 16:46:40',1,30005033,46,2,9,0,0,0,42,231,408,3,41,28,12,16,0,0,7,7,41,10,130,12,11,0),(2705,'2015-03-14 14:56:59','2015-10-11 16:46:40',1,30004148,0,5,0,4,0,0,0,15,0,0,0,0,0,0,0,0,22,22,5,14,14,3,0,0),(2706,'2015-03-14 14:56:59','2015-10-11 16:46:40',1,30000608,0,0,0,0,0,0,70,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(2707,'2015-03-14 14:56:59','2015-10-11 16:46:40',1,30002748,302,121,67,424,1144,1092,85,84,255,219,183,269,142,215,331,385,490,166,6,42,108,326,275,81),(2708,'2015-03-14 14:56:59','2015-10-11 16:46:40',1,30004281,0,75,3,17,36,36,24,82,0,0,74,94,0,0,0,0,30,287,3,0,17,56,0,21),(2709,'2015-03-14 14:56:59','2015-10-11 16:46:40',1,30002254,119,97,51,37,80,22,24,88,42,80,49,113,109,207,65,64,33,61,88,45,16,63,22,79),(2710,'2015-03-14 14:56:59','2015-10-11 16:46:40',1,30004132,15,78,34,35,2,31,88,0,0,45,14,19,30,32,31,49,48,128,88,33,35,7,9,59),(2711,'2015-03-14 14:56:59','2015-10-11 16:46:40',1,30003532,68,82,87,90,37,85,97,43,17,46,87,120,119,41,138,99,109,49,16,24,23,201,118,103),(2712,'2015-03-14 14:56:59','2015-10-11 16:46:40',1,30000451,308,4,0,3,4,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(2713,'2015-03-14 14:56:59','2015-03-14 14:56:59',1,30001451,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(2714,'2015-03-14 14:56:59','2015-10-11 16:46:40',1,30004575,28,0,0,129,0,0,0,0,0,0,0,0,0,0,0,0,7,0,0,0,0,0,0,0),(2715,'2015-03-14 14:56:59','2015-10-11 16:46:40',1,30001243,0,0,0,0,0,0,0,0,0,0,128,77,0,0,0,0,0,0,0,0,0,0,0,0),(2716,'2015-03-14 14:56:59','2015-10-11 16:46:40',1,30003285,0,0,13,0,0,0,0,0,0,3,0,0,0,8,5,3,3,0,0,7,0,0,0,128),(2717,'2015-03-14 14:56:59','2015-10-11 16:46:40',1,30003661,613,4,3,0,93,151,52,130,305,10,101,187,0,4,3,12,9,8,0,23,16,4,18,386),(2718,'2015-03-14 14:56:59','2015-10-11 16:46:40',1,30004667,0,0,136,0,0,0,47,0,77,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(2719,'2015-03-14 14:56:59','2015-10-11 16:46:40',1,30004435,0,63,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,70,0,4,30,0),(2720,'2015-03-14 14:56:59','2015-10-11 16:46:40',1,30004839,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,156,0,0,0),(2721,'2015-03-14 14:56:59','2015-10-11 16:46:40',1,30001706,164,28,227,33,111,99,133,57,0,16,0,48,182,188,324,270,265,247,53,45,231,294,82,24),(2722,'2015-03-14 14:56:59','2015-10-11 16:46:40',1,30005046,33,95,254,104,67,113,229,202,57,104,208,228,77,147,153,168,187,231,104,250,166,146,60,113),(2723,'2015-03-14 14:56:59','2015-10-11 16:46:40',1,30000142,95,70,20,8,138,101,79,48,8,37,71,67,131,71,126,137,99,0,32,28,52,110,0,14),(2724,'2015-03-14 14:56:59','2015-10-11 16:46:40',1,30004684,113,158,0,0,137,0,0,0,52,0,0,0,0,0,0,0,0,0,0,0,191,0,0,0),(2725,'2015-03-14 14:56:59','2015-10-11 16:46:40',1,30004836,1,0,0,0,0,0,0,0,0,0,0,270,591,0,0,98,304,635,0,0,0,160,431,444),(2726,'2015-03-14 14:56:59','2015-10-11 16:46:40',1,30004515,0,0,16,0,0,0,0,0,44,0,0,0,0,0,0,0,0,0,0,0,0,0,4,49),(2727,'2015-03-14 14:56:59','2015-10-11 16:46:40',1,30002150,3,182,35,1,0,0,152,26,51,2,54,0,0,0,0,0,5,0,0,0,4,7,125,118),(2728,'2015-03-14 14:56:59','2015-03-14 14:56:59',1,30001636,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(2729,'2015-03-14 14:56:59','2015-10-11 16:46:40',1,30001593,5,0,0,0,0,0,0,0,0,0,0,0,0,118,0,0,0,165,0,0,0,0,0,0),(2730,'2015-03-14 14:56:59','2015-10-11 16:46:40',1,30001556,0,0,0,0,0,0,0,0,0,0,47,47,0,0,0,0,0,0,0,0,0,1,1,74),(2731,'2015-03-14 14:56:59','2015-10-11 16:46:40',1,30000708,0,2,117,11,0,0,0,0,3,0,0,0,0,0,0,0,0,143,0,0,0,0,0,0),(2732,'2015-03-14 14:56:59','2015-10-11 16:46:40',1,30005161,0,0,0,0,0,0,0,0,0,0,49,31,341,0,187,119,278,436,0,0,72,83,0,0),(2733,'2015-03-14 14:56:59','2015-10-11 16:46:40',1,30000662,3,0,13,9,0,0,7,10,0,0,0,0,5,173,0,0,0,0,0,0,0,0,3,0),(2734,'2015-03-14 14:56:59','2015-10-11 16:46:40',1,30001542,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,17,0,149),(2735,'2015-03-14 14:56:59','2015-10-11 16:46:40',1,30004462,0,0,0,0,0,0,0,0,0,89,38,0,0,0,0,0,0,0,0,0,0,25,133,0),(2736,'2015-03-14 14:56:59','2015-10-11 16:46:40',1,30004086,79,26,62,98,223,220,104,69,0,167,48,81,18,116,168,128,46,58,170,148,389,332,123,216),(2737,'2015-03-14 14:56:59','2015-10-11 16:46:40',1,30000078,0,3,3,0,5,4,41,30,3,0,0,0,22,108,0,0,1,11,0,0,19,66,30,0),(2738,'2015-03-14 14:56:59','2015-10-11 16:46:40',1,30004974,44,131,239,228,67,114,59,114,65,138,208,210,89,112,249,102,134,223,33,27,69,172,242,113),(2739,'2015-03-14 14:56:59','2015-10-11 16:46:40',1,30002679,117,202,105,114,85,145,67,97,50,21,327,421,116,179,119,84,106,113,179,141,349,196,211,55),(2740,'2015-03-14 14:56:59','2015-10-11 16:46:40',1,30003387,2,6,114,133,48,51,61,63,23,37,0,18,47,52,125,32,20,14,8,0,210,22,20,176),(2741,'2015-03-14 14:56:59','2015-10-11 16:46:40',1,30002210,13,34,18,56,52,89,100,23,23,0,32,29,2,28,48,50,20,47,79,13,4,42,108,27),(2742,'2015-03-14 14:56:59','2015-10-11 16:46:40',1,30004088,38,24,137,80,14,115,48,6,32,100,129,172,134,244,84,119,74,140,229,58,213,536,510,241),(2743,'2015-03-14 14:56:59','2015-10-11 16:46:40',1,30001046,0,0,0,23,0,0,0,5,0,0,0,0,1,3,1,11,38,21,4,18,21,0,29,32),(2744,'2015-03-14 14:56:59','2015-10-11 16:46:40',1,30002567,88,66,192,13,141,8,0,27,65,11,58,70,58,11,16,11,9,9,0,14,46,0,0,33),(2745,'2015-03-14 14:56:59','2015-10-11 16:46:40',1,30000156,233,302,261,427,233,292,252,375,442,245,448,480,234,398,463,563,462,301,197,468,279,301,314,291),(2746,'2015-03-14 14:56:59','2015-10-11 16:46:40',1,30003447,87,207,136,173,9,33,203,77,77,61,258,241,222,132,183,234,220,282,83,105,202,47,105,114),(2747,'2015-03-14 14:56:59','2015-10-11 16:46:40',1,30001423,234,150,296,274,141,26,77,31,73,210,174,295,279,153,333,293,91,304,54,160,147,46,306,280),(2748,'2015-03-14 14:56:59','2015-10-11 16:46:40',1,30011392,546,461,420,342,394,254,456,391,249,450,421,382,441,683,1009,690,411,461,230,413,571,451,476,416),(2749,'2015-03-14 14:56:59','2015-10-11 16:46:40',1,30005321,64,3,10,5,30,21,69,6,0,0,0,2,0,7,0,6,15,34,0,3,5,9,37,48),(2750,'2015-03-14 14:56:59','2015-10-11 16:46:40',1,30004731,0,78,0,0,0,0,0,0,0,0,0,16,116,13,0,0,0,0,0,0,53,33,0,0),(2751,'2015-03-14 14:56:59','2015-10-11 16:46:40',1,30005136,0,0,0,0,0,0,0,0,0,0,0,3,2,12,5,0,0,3,0,3,14,0,4,6),(2752,'2015-03-14 14:56:59','2015-10-11 16:46:40',1,30000901,0,0,0,0,0,0,0,0,0,61,0,0,0,0,0,0,0,0,0,5,5,0,0,0),(2753,'2015-03-14 14:56:59','2015-03-14 14:56:59',1,30000363,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(2754,'2015-03-14 14:56:59','2015-10-11 16:46:40',1,30000548,17,14,7,18,16,12,1,0,13,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(2755,'2015-03-14 14:56:59','2015-10-11 16:46:40',1,30004330,0,0,0,0,361,405,0,91,0,0,44,42,0,38,0,0,21,40,0,0,0,32,0,0),(2756,'2015-03-14 14:56:59','2015-10-11 16:46:40',1,30001851,0,0,1,0,0,0,0,0,0,0,0,0,0,1,36,0,0,0,0,0,1,80,4,132),(2757,'2015-03-14 14:56:59','2015-03-14 14:56:59',1,30001494,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(2758,'2015-03-14 14:56:59','2015-10-11 16:46:40',1,30003664,0,53,17,0,0,0,0,0,0,0,50,50,0,0,0,0,0,0,0,6,0,0,0,0),(2759,'2015-03-14 14:56:59','2015-10-11 16:46:40',1,30002821,0,0,0,0,0,0,0,60,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,123),(2760,'2015-03-14 14:56:59','2015-10-11 16:46:40',1,30002323,0,0,0,0,0,3,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(2761,'2015-03-14 14:56:59','2015-10-11 16:46:40',1,30004324,0,247,166,190,202,116,229,362,99,71,0,161,63,0,192,257,272,43,55,30,23,324,139,130),(2762,'2015-03-14 14:56:59','2015-10-11 16:46:40',1,30002911,376,830,667,955,740,476,764,335,325,450,320,354,429,287,899,718,679,562,669,935,619,471,931,383),(2763,'2015-03-14 14:56:59','2015-10-11 16:46:40',1,30001937,0,0,0,0,0,0,0,23,66,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(2764,'2015-03-14 14:56:59','2015-10-11 16:46:40',1,30000051,102,9,1,8,30,0,66,47,25,57,172,70,36,30,44,87,119,106,20,26,23,47,98,22),(2765,'2015-03-14 14:56:59','2015-10-11 16:46:40',1,30001738,0,26,0,0,116,0,28,38,0,4,4,0,0,74,29,12,77,116,0,0,47,18,18,0),(2766,'2015-03-14 14:56:59','2015-10-11 16:46:40',1,30001743,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,92,0,0),(2767,'2015-03-14 14:56:59','2015-10-11 16:46:40',1,30005308,279,136,397,309,488,491,388,205,366,414,608,596,505,643,630,785,800,297,218,732,477,294,261,392),(2768,'2015-03-14 14:56:59','2015-10-11 16:46:40',1,30000987,31,0,35,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(2769,'2015-03-14 14:56:59','2015-10-11 16:46:40',1,30003083,104,90,4,3,101,103,6,41,0,14,0,70,44,8,3,0,0,2,6,3,29,76,0,130),(2770,'2015-03-14 14:56:59','2015-10-11 16:46:40',1,30003016,371,111,108,281,103,149,145,353,271,132,358,405,418,272,378,252,190,327,54,24,121,135,272,36),(2771,'2015-03-14 14:56:59','2015-10-11 16:46:40',1,30003013,124,146,284,285,225,267,268,149,422,177,282,265,282,247,503,331,237,699,46,151,374,277,332,304),(2772,'2015-03-14 14:56:59','2015-10-11 16:46:40',1,30001315,0,0,0,0,0,0,0,0,20,0,44,6,0,0,0,0,0,0,0,0,0,0,3,0),(2773,'2015-03-14 14:56:59','2015-10-11 16:46:40',1,30002803,293,450,674,644,586,444,162,473,181,389,819,532,666,1258,1278,998,1052,1034,668,674,950,1048,1026,967),(2774,'2015-03-14 14:56:59','2015-10-11 16:46:40',1,30004883,139,939,930,670,467,351,56,441,252,745,293,128,418,559,285,194,292,517,232,281,218,623,311,385),(2775,'2015-03-14 14:56:59','2015-10-11 16:46:40',1,30001567,0,0,21,0,2,0,0,0,17,0,0,1,0,0,0,102,208,0,0,0,0,0,0,0),(2776,'2015-03-14 14:56:59','2015-10-11 16:46:40',1,30001948,0,0,51,13,0,0,0,0,0,6,23,46,13,0,0,0,0,0,25,29,40,29,76,26),(2777,'2015-03-14 14:56:59','2015-10-11 16:46:40',1,30001007,0,63,121,66,92,64,10,92,79,7,9,0,0,91,0,0,0,0,0,5,0,0,0,15),(2778,'2015-03-14 14:56:59','2015-10-11 16:46:40',1,30001190,0,0,0,0,0,0,0,0,0,4,102,215,47,111,112,165,216,25,174,151,234,130,12,5),(2779,'2015-03-14 14:56:59','2015-03-14 14:56:59',1,30001793,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(2780,'2015-03-14 14:56:59','2015-03-14 14:56:59',1,30001495,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(2781,'2015-03-14 14:56:59','2015-03-14 14:56:59',1,30003264,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(2782,'2015-03-14 14:56:59','2015-10-11 16:46:40',1,30000640,19,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(2783,'2015-03-14 14:56:59','2015-03-14 14:56:59',1,30005135,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(2784,'2015-03-14 14:56:59','2015-10-11 16:46:40',1,30004952,0,162,89,0,0,0,528,292,0,0,0,0,0,0,30,72,51,0,0,0,0,45,0,0),(2785,'2015-03-14 14:56:59','2015-10-11 16:46:40',1,30000325,42,1140,181,444,325,349,735,540,855,445,293,289,374,630,672,577,670,172,214,24,103,316,423,336),(2786,'2015-03-14 14:56:59','2015-10-11 16:46:40',1,30004912,141,55,80,323,188,384,76,0,72,57,258,228,87,85,141,48,120,0,3,32,270,276,143,75),(2787,'2015-03-14 14:56:59','2015-10-11 16:46:40',1,30005120,0,0,6,0,0,0,0,5,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(2788,'2015-03-14 14:56:59','2015-10-11 16:46:40',1,30004751,0,0,0,0,0,0,0,112,5,29,0,0,0,27,13,7,0,0,0,0,0,0,0,51),(2789,'2015-03-14 14:56:59','2015-10-11 16:46:40',1,30000890,0,74,312,398,103,217,235,287,102,546,625,415,534,322,368,365,264,426,295,360,421,175,259,247),(2790,'2015-03-14 14:56:59','2015-10-11 16:46:40',1,30004379,261,255,8,420,236,189,188,307,233,296,302,184,0,99,100,288,581,169,209,157,161,224,63,618),(2791,'2015-03-14 14:56:59','2015-10-11 16:46:40',1,30004490,167,858,478,27,163,276,66,122,148,616,197,193,436,513,26,222,246,9,0,0,177,661,548,860),(2792,'2015-03-14 14:56:59','2015-10-11 16:46:40',1,30001011,1,17,0,0,0,0,25,0,0,1,2,2,8,0,57,15,0,0,4,19,10,0,0,3),(2793,'2015-03-14 14:56:59','2015-10-11 16:46:40',1,30003969,121,63,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(2794,'2015-03-14 14:56:59','2015-10-11 16:46:40',1,30001550,0,0,0,0,0,0,0,0,0,0,2,5,0,0,0,0,0,0,0,0,0,0,0,0),(2795,'2015-03-14 14:56:59','2015-10-11 16:46:40',1,30001000,0,0,106,0,49,15,0,0,39,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(2796,'2015-03-14 14:56:59','2015-10-11 16:46:40',1,30004475,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,233,0,0,0,0,0,159),(2797,'2015-03-14 14:56:59','2015-10-11 16:46:40',1,30003982,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,75,132,0,0,0,0,0,0,0),(2798,'2015-03-14 14:56:59','2015-10-11 16:46:40',1,30001006,2,1,0,0,8,0,0,65,89,0,44,33,0,0,0,0,3,0,2,8,0,1,49,98),(2799,'2015-03-14 14:56:59','2015-10-11 16:46:40',1,30001026,0,0,0,0,7,17,33,0,17,15,90,43,25,0,0,35,54,0,0,0,22,4,7,17),(2800,'2015-03-14 14:56:59','2015-10-11 16:46:40',1,30000631,0,0,0,0,180,48,0,0,0,0,0,0,0,0,0,0,0,0,48,0,0,0,0,0),(2801,'2015-03-14 14:56:59','2015-10-11 16:46:40',1,30004421,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,53,0,0,0,0,0,0,0),(2802,'2015-03-14 14:56:59','2015-10-11 16:46:40',1,30001543,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,4,0,0,0,84),(2803,'2015-03-14 14:56:59','2015-10-11 16:46:40',1,30003998,0,0,0,0,0,0,0,0,0,0,0,0,48,0,0,0,0,0,0,0,0,0,0,0),(2804,'2015-03-14 14:56:59','2015-10-11 16:46:40',1,30001572,7,5,0,0,0,0,0,0,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,0),(2805,'2015-03-14 14:56:59','2015-10-11 16:46:40',1,30003972,295,60,5,414,118,30,0,0,14,0,0,0,3,0,0,0,0,0,0,0,81,122,31,0),(2806,'2015-03-14 14:56:59','2015-10-11 16:46:40',1,30001172,0,0,0,0,0,25,0,0,0,2,0,0,0,0,0,0,0,0,24,0,0,0,131,0),(2807,'2015-03-14 14:56:59','2015-10-11 16:46:40',1,30003758,292,132,143,150,296,187,115,223,218,4,46,39,5,0,74,116,219,85,0,126,66,0,0,39),(2808,'2015-03-14 14:56:59','2015-10-11 16:46:40',1,30003764,383,274,33,113,217,38,155,0,45,108,136,382,446,125,174,64,105,388,146,255,234,344,211,424),(2809,'2015-03-14 14:56:59','2015-10-11 16:46:40',1,30000665,0,0,0,6,0,0,0,0,0,0,0,0,0,25,18,0,98,0,67,10,18,0,0,0),(2810,'2015-03-14 14:56:59','2015-10-11 16:46:40',1,30002464,41,392,290,0,199,121,239,0,183,63,57,166,17,0,68,68,57,0,0,0,0,46,93,0),(2811,'2015-03-14 14:56:59','2015-10-11 16:46:40',1,30001274,6,92,39,79,20,11,41,42,127,1,30,5,94,51,18,19,20,89,44,6,6,0,112,22),(2812,'2015-03-14 14:56:59','2015-10-11 16:46:40',1,30004017,0,0,0,0,0,0,0,0,0,307,28,171,187,67,3,4,7,8,0,0,0,33,0,253),(2813,'2015-03-14 14:56:59','2015-10-11 16:46:40',1,30002447,242,247,14,10,350,165,151,21,2,0,0,0,0,0,4,9,9,36,7,0,0,110,103,80),(2814,'2015-03-14 14:56:59','2015-10-11 16:46:40',1,30001762,4,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,160,0,21),(2815,'2015-03-14 14:56:59','2015-10-11 16:46:40',1,30003687,189,187,0,60,49,32,178,29,0,0,0,0,6,10,35,0,0,105,0,0,0,15,156,23),(2816,'2015-03-14 14:56:59','2015-10-11 16:46:40',1,30003279,0,0,128,0,0,0,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(2817,'2015-03-14 14:56:59','2015-10-11 16:46:40',1,30002900,680,2000,384,116,175,134,393,1700,123,422,520,477,916,762,830,756,700,1400,690,914,296,960,773,614),(2818,'2015-03-14 14:56:59','2015-10-11 16:46:40',1,30000659,0,0,0,5,0,0,0,0,49,0,0,0,3,0,0,0,0,2,0,0,0,0,0,0),(2819,'2015-03-14 14:56:59','2015-10-11 16:46:40',1,30001238,0,0,0,0,0,0,0,0,0,0,0,0,77,0,136,137,18,0,28,36,4,0,0,0),(2820,'2015-03-14 14:56:59','2015-10-11 16:46:40',1,30002872,0,167,260,222,453,452,301,471,245,97,245,292,76,190,160,92,138,203,0,0,15,271,371,433),(2821,'2015-03-14 14:56:59','2015-03-14 14:56:59',1,30000369,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(2822,'2015-03-14 14:56:59','2015-10-11 16:46:40',1,30003950,0,0,10,5,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,9,0),(2823,'2015-03-14 14:56:59','2015-10-11 16:46:40',1,30000510,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0),(2824,'2015-03-14 14:56:59','2015-10-11 16:46:40',1,30000653,247,489,0,0,0,0,36,0,253,27,29,21,124,0,0,0,43,200,0,59,29,120,339,25),(2825,'2015-03-14 14:56:59','2015-10-11 16:46:40',1,30001040,0,5,3,1,8,2,3,0,0,5,31,4,3,0,5,27,55,7,2,0,0,3,6,2),(2826,'2015-03-14 14:56:59','2015-03-14 14:56:59',1,30004572,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(2827,'2015-03-14 14:56:59','2015-10-11 16:46:40',1,30000244,0,0,70,0,0,0,84,0,0,97,0,0,0,1,0,0,0,14,0,0,0,119,0,1),(2828,'2015-03-14 14:56:59','2015-10-11 16:46:40',1,30002873,0,0,0,0,0,0,3,0,0,5,0,0,0,0,0,0,0,0,0,0,0,0,0,105),(2829,'2015-03-14 14:56:59','2015-10-11 16:46:40',1,30001231,48,0,106,63,92,31,3,81,49,0,0,2,0,131,0,0,0,0,0,0,0,13,210,0),(2830,'2015-03-14 14:56:59','2015-10-11 16:46:40',1,30002789,83,209,96,237,234,205,156,182,217,155,195,227,190,131,182,201,232,235,63,87,147,83,152,192),(2831,'2015-03-14 14:56:59','2015-10-11 16:46:40',1,30002417,0,0,0,25,1,0,31,0,47,1,0,0,0,0,0,0,0,40,0,0,0,54,0,0),(2832,'2015-03-14 14:56:59','2015-10-11 16:46:40',1,30004095,35,139,103,361,131,129,46,113,96,69,74,130,105,50,308,354,261,167,121,115,78,57,138,186),(2833,'2015-03-14 14:56:59','2015-10-11 16:46:40',1,30003873,67,4,70,30,5,9,49,0,3,0,152,135,37,32,1,2,12,49,2,18,0,128,55,228),(2834,'2015-03-14 14:56:59','2015-10-11 16:46:40',1,30002751,74,383,272,370,243,205,205,226,189,219,416,270,274,188,188,256,329,183,89,165,148,348,151,201),(2835,'2015-03-14 14:56:59','2015-10-11 16:46:40',1,30003887,0,0,1,0,0,45,0,93,104,0,0,0,0,0,0,0,0,2,0,0,0,0,0,0),(2836,'2015-03-14 14:56:59','2015-10-11 16:46:40',1,30001405,387,721,556,325,333,328,389,356,488,513,793,696,611,826,622,713,787,482,411,504,702,951,790,668),(2837,'2015-03-14 14:56:59','2015-10-11 16:46:40',1,30002747,46,160,553,371,919,1120,336,169,98,174,210,58,139,472,76,71,208,333,193,138,516,202,172,127),(2838,'2015-03-14 14:56:59','2015-10-11 16:46:40',1,30004115,100,102,50,85,48,61,94,89,29,310,97,238,257,74,231,134,26,92,29,7,81,55,261,125),(2839,'2015-03-14 14:56:59','2015-10-11 16:46:40',1,30003069,6,2,7,5,4,3,4,23,14,3,2,0,3,1,0,0,1,13,6,0,1,7,3,13),(2840,'2015-03-14 14:56:59','2015-10-11 16:46:40',1,30004239,7,0,0,0,0,0,0,0,0,30,0,0,0,2,0,0,0,0,7,25,0,8,9,1),(2841,'2015-03-14 14:56:59','2015-10-11 16:46:40',1,30002782,198,86,188,149,187,170,218,117,110,63,50,213,150,90,138,73,130,200,89,63,258,181,189,138),(2842,'2015-03-14 14:56:59','2015-10-11 16:46:40',1,30001406,730,1037,1099,462,570,558,820,993,784,1297,1639,1680,1419,949,1053,1118,1064,985,1094,1080,1237,1374,1548,1192),(2843,'2015-03-14 14:56:59','2015-10-11 16:46:40',1,30021392,584,471,756,872,682,587,786,897,732,827,901,867,875,1120,1223,1042,1231,780,709,796,844,1039,734,810),(2844,'2015-03-14 14:56:59','2015-10-11 16:46:40',1,30004306,0,37,24,9,56,28,1,17,0,0,40,0,0,0,25,18,5,0,0,0,0,9,42,80),(2845,'2015-03-14 14:56:59','2015-10-11 16:46:40',1,30001742,65,26,0,19,9,12,29,59,76,186,7,12,15,10,87,90,54,2,0,273,87,17,72,94),(2846,'2015-03-14 14:56:59','2015-10-11 16:46:40',1,30001440,3,73,69,5,0,0,0,38,6,4,4,0,2,3,86,100,47,85,0,1,170,56,50,1),(2847,'2015-03-14 14:56:59','2015-10-11 16:46:40',1,30004134,124,53,20,118,75,38,8,16,75,43,135,59,24,89,83,43,37,33,30,77,67,0,34,4),(2848,'2015-03-14 14:56:59','2015-10-11 16:46:40',1,30000030,18,35,108,27,68,54,28,49,161,61,15,26,68,59,0,0,1,183,29,0,122,66,44,2),(2849,'2015-03-14 14:56:59','2015-10-11 16:46:40',1,30002761,44,129,87,115,172,107,202,60,44,277,35,113,69,50,143,112,47,51,114,73,31,28,117,133),(2850,'2015-03-14 14:56:59','2015-10-11 16:46:40',1,30002416,88,0,104,3,0,1,0,238,197,17,3,1,179,265,176,57,0,1,4,6,10,1,101,6),(2851,'2015-03-14 14:56:59','2015-10-11 16:46:40',1,30002580,0,139,25,36,0,0,21,1,36,116,7,48,69,0,5,4,4,3,0,1,149,106,56,1),(2852,'2015-03-14 14:56:59','2015-10-11 16:46:40',1,30002797,242,282,743,593,522,405,282,755,525,683,757,607,448,597,890,764,627,741,438,274,515,643,725,477),(2853,'2015-03-14 14:56:59','2015-10-11 16:46:40',1,30002749,125,234,205,195,375,237,174,245,161,153,308,211,257,174,286,248,158,156,42,51,156,207,169,121),(2854,'2015-03-14 14:56:59','2015-10-11 16:46:40',1,30000018,0,0,0,0,0,0,20,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,38,0),(2855,'2015-03-14 14:56:59','2015-10-11 16:46:40',1,30001242,0,0,62,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,5,5,0,0,0),(2856,'2015-03-14 14:56:59','2015-10-11 16:46:40',1,30004794,0,0,0,0,0,0,227,85,147,148,230,230,32,707,429,127,69,140,105,285,129,68,9,421),(2857,'2015-03-14 14:56:59','2015-10-11 16:46:40',1,30003729,10,20,68,7,0,0,0,62,4,11,0,0,0,67,10,3,3,0,0,0,0,0,0,13),(2858,'2015-03-14 14:56:59','2015-10-11 16:46:40',1,30002178,86,290,308,77,20,140,97,0,47,0,0,97,0,0,0,0,0,1,0,32,32,0,0,0),(2859,'2015-03-14 14:56:59','2015-10-11 16:46:40',1,30004579,0,0,0,11,0,0,0,0,0,30,6,30,61,47,59,43,87,0,28,0,32,51,39,90),(2860,'2015-03-14 14:56:59','2015-10-11 16:46:40',1,30000737,227,48,73,7,95,152,85,0,21,69,212,106,353,47,0,0,0,0,0,0,0,277,300,331),(2861,'2015-03-14 14:56:59','2015-10-11 16:46:40',1,30001164,0,0,0,0,0,0,0,0,0,0,0,0,0,4,0,0,0,23,0,0,0,0,0,0),(2862,'2015-03-14 14:56:59','2015-03-14 14:56:59',1,30000736,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(2863,'2015-03-14 14:56:59','2015-10-11 16:46:40',1,30002027,242,47,4,252,3,3,0,121,30,0,0,0,0,0,0,0,146,73,3,0,16,139,4,135),(2864,'2015-03-14 14:56:59','2015-10-11 16:46:40',1,30000519,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,3,3,0,0,0,0,0,0,0),(2865,'2015-03-14 14:56:59','2015-10-11 16:46:40',1,30004295,99,0,100,34,22,0,88,0,0,0,24,99,3,0,8,8,0,29,0,57,0,0,46,1),(2866,'2015-03-14 14:56:59','2015-10-11 16:46:40',1,30003883,0,10,136,28,102,36,113,4,50,45,9,9,0,27,42,41,3,55,0,0,58,85,68,17),(2867,'2015-03-14 14:56:59','2015-10-11 16:46:40',1,30003239,0,0,0,0,0,0,0,0,0,113,60,68,0,0,0,66,66,0,0,273,41,0,0,0),(2868,'2015-03-14 14:56:59','2015-10-11 16:46:40',1,30045346,13,2,15,18,6,20,4,26,24,11,7,8,16,0,2,49,66,19,9,6,1,38,0,11),(2869,'2015-03-14 14:56:59','2015-10-11 16:46:40',1,30004772,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,31,0),(2870,'2015-03-14 14:56:59','2015-10-11 16:46:40',1,30045308,23,14,0,1,89,23,0,85,6,127,78,7,8,4,44,37,17,26,0,12,23,5,1,97),(2871,'2015-03-14 14:56:59','2015-10-11 16:46:40',1,30002193,79,110,137,75,86,169,227,25,84,101,374,246,143,251,145,203,250,213,120,90,180,307,208,63),(2872,'2015-03-14 14:56:59','2015-10-11 16:46:40',1,30000098,0,0,0,0,1,0,2,0,0,0,0,0,0,34,90,109,65,0,49,0,0,0,2,0),(2873,'2015-03-14 14:56:59','2015-10-11 16:46:40',1,30000176,103,205,54,87,241,153,270,46,129,208,193,281,51,255,262,229,154,278,35,100,280,159,163,163),(2874,'2015-03-14 14:56:59','2015-10-11 16:46:40',1,30003999,0,0,0,0,21,0,0,0,0,569,95,0,0,0,0,0,0,0,0,0,0,0,0,0),(2875,'2015-03-14 14:56:59','2015-10-11 16:46:40',1,30005206,7,25,87,41,39,5,165,208,14,50,50,117,43,140,18,62,90,54,43,54,39,34,62,63),(2876,'2015-03-14 14:56:59','2015-10-11 16:46:40',1,30004237,0,0,28,26,3,3,0,17,30,0,0,0,0,31,0,2,2,79,0,0,0,0,0,43),(2877,'2015-03-14 14:56:59','2015-10-11 16:46:40',1,30003823,51,110,58,10,30,31,19,105,0,60,21,10,20,144,69,0,23,8,0,18,0,12,1,41),(2878,'2015-03-14 14:56:59','2015-10-11 16:46:40',1,30000116,0,11,3,36,36,62,0,0,23,184,113,24,182,132,54,0,0,70,15,123,161,3,27,2),(2879,'2015-03-14 14:56:59','2015-10-11 16:46:40',1,30005078,3,83,12,53,63,47,41,140,49,18,48,71,86,220,174,254,128,17,17,190,41,26,114,16),(2880,'2015-03-14 14:56:59','2015-03-14 14:56:59',1,30001623,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(2881,'2015-03-14 14:56:59','2015-10-11 16:46:40',1,30011672,8,0,34,10,42,42,89,18,26,0,50,0,0,1,41,79,64,131,7,71,31,37,73,72),(2882,'2015-03-14 14:56:59','2015-10-11 16:46:40',1,30005260,7,0,48,9,25,20,55,5,0,22,0,0,51,93,29,37,15,0,0,70,0,0,0,4),(2883,'2015-03-14 14:56:59','2015-10-11 16:46:40',1,30005066,0,3,2,0,0,0,0,0,55,0,4,0,0,69,48,18,0,16,0,0,0,0,56,0),(2884,'2015-03-14 14:56:59','2015-10-11 16:46:40',1,30005220,546,176,506,423,503,718,342,469,274,432,736,791,594,513,984,645,867,611,509,469,416,683,938,342),(2885,'2015-03-14 14:56:59','2015-10-11 16:46:40',1,30001682,0,20,1,0,0,0,4,6,18,107,95,37,7,1,78,76,13,2,55,72,64,106,106,15),(2886,'2015-03-14 14:56:59','2015-03-14 14:56:59',1,30001515,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(2887,'2015-03-14 14:56:59','2015-10-11 16:46:40',1,30004709,0,128,0,0,0,0,0,0,0,0,17,43,0,0,29,6,0,18,26,0,0,22,59,54),(2888,'2015-03-14 14:56:59','2015-10-11 16:46:40',1,30003343,0,11,4,63,24,38,0,17,0,26,20,9,0,0,0,0,0,0,0,4,33,109,0,10),(2889,'2015-03-14 14:56:59','2015-10-11 16:46:40',1,30001790,0,0,0,0,0,0,0,0,0,262,109,1,0,61,0,34,151,6,0,0,0,0,0,94),(2890,'2015-03-14 14:56:59','2015-10-11 16:46:40',1,30002296,0,0,0,0,0,2,0,0,0,0,0,0,3,0,0,0,0,0,0,0,0,0,0,0),(2891,'2015-03-14 14:56:59','2015-10-11 16:46:40',1,30003190,0,0,3,0,0,0,0,0,0,0,0,0,0,3,0,0,0,0,0,0,0,60,34,13),(2892,'2015-03-14 14:56:59','2015-10-11 16:46:40',1,30001240,0,0,0,0,0,0,0,0,0,0,0,0,0,5,0,0,0,0,0,12,12,0,0,0),(2893,'2015-03-14 14:56:59','2015-10-11 16:46:40',1,30005032,0,51,18,55,9,0,1,0,0,211,48,47,8,9,0,0,0,56,0,0,8,0,0,0),(2894,'2015-03-14 14:56:59','2015-10-11 16:46:40',1,30000117,6,0,2,0,3,1,17,9,58,47,69,93,100,72,67,101,106,128,21,101,107,105,77,118),(2895,'2015-03-14 14:56:59','2015-10-11 16:46:40',1,30004096,72,41,355,25,11,169,200,22,39,100,151,104,171,271,188,123,160,63,156,124,83,50,27,108),(2896,'2015-03-14 14:56:59','2015-10-11 16:46:40',1,30003863,21,0,17,101,75,25,99,135,24,22,105,156,47,253,249,225,96,36,7,17,264,206,297,257),(2897,'2015-03-14 14:56:59','2015-10-11 16:46:40',1,30000056,90,174,133,22,12,11,2,37,140,194,196,179,56,169,242,297,252,168,120,305,103,137,124,62),(2898,'2015-03-14 14:56:59','2015-10-11 16:46:40',1,30003486,0,0,0,0,0,0,0,0,0,5,2,0,8,0,0,0,0,0,4,0,0,0,0,0),(2899,'2015-03-14 14:56:59','2015-10-11 16:46:40',1,30004258,0,25,0,0,0,0,0,0,0,0,96,104,100,0,0,0,0,50,0,0,0,0,0,52),(2900,'2015-03-14 14:56:59','2015-10-11 16:46:40',1,30003490,432,664,617,547,378,430,360,310,217,557,747,583,277,786,559,745,887,912,252,439,494,864,796,306),(2901,'2015-03-14 14:56:59','2015-10-11 16:46:40',1,30001969,121,0,0,0,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(2902,'2015-03-14 14:56:59','2015-10-11 16:46:40',1,30004209,5,8,15,15,239,255,380,73,0,8,0,3,4,12,0,0,17,369,212,7,6,0,0,0),(2903,'2015-03-14 14:56:59','2015-10-11 16:46:40',1,30000189,213,83,151,204,163,101,85,54,62,47,187,39,328,263,59,104,114,148,67,91,225,88,177,142),(2904,'2015-03-14 14:56:59','2015-10-11 16:46:40',1,30001692,10,24,96,54,137,107,11,135,0,23,73,0,80,57,67,92,113,24,2,5,104,127,4,4),(2905,'2015-03-14 14:56:59','2015-10-11 16:46:40',1,30000024,7,3,49,33,33,72,86,14,0,88,50,36,17,78,36,9,71,153,179,73,117,67,102,11),(2906,'2015-03-14 14:56:59','2015-10-11 16:46:40',1,30004176,0,0,0,0,0,0,0,0,0,0,0,0,0,83,22,0,0,0,0,0,0,0,0,0),(2907,'2015-03-14 14:56:59','2015-10-11 16:46:40',1,30003860,204,1,298,126,99,95,170,13,43,314,297,184,101,169,309,265,173,93,375,104,192,192,201,189),(2908,'2015-03-14 14:56:59','2015-10-11 16:46:40',1,30045314,50,0,47,6,67,0,0,25,154,0,0,1,3,4,0,0,0,1,7,6,85,2,0,14),(2909,'2015-03-14 14:56:59','2015-10-11 16:46:40',1,30001372,119,77,222,244,94,185,230,118,135,133,114,146,193,200,208,177,177,81,64,68,149,182,158,150),(2910,'2015-03-14 14:56:59','2015-10-11 16:46:40',1,30001410,123,239,247,199,127,112,248,175,95,220,288,317,353,206,148,105,252,287,71,157,147,173,212,285),(2911,'2015-03-14 14:56:59','2015-10-11 16:46:40',1,30001360,20,258,242,18,179,13,45,12,0,68,47,6,14,251,88,111,173,83,192,149,104,65,186,190),(2912,'2015-03-14 14:56:59','2015-10-11 16:46:40',1,30000141,373,355,342,259,282,285,431,363,466,261,350,520,371,483,484,543,596,284,163,269,322,436,541,290),(2913,'2015-03-14 14:56:59','2015-10-11 16:46:40',1,30005056,275,11,267,65,6,8,32,73,20,1,116,291,186,121,181,118,225,92,23,25,82,82,124,173),(2914,'2015-03-14 14:56:59','2015-10-11 16:46:40',1,30004376,0,0,0,0,0,0,0,33,0,0,0,0,0,171,111,181,197,0,0,0,2,61,189,0),(2915,'2015-03-14 14:56:59','2015-10-11 16:46:40',1,30004488,111,1016,39,207,121,46,17,849,38,0,0,0,0,0,0,0,0,0,304,0,0,0,0,605),(2916,'2015-03-14 14:56:59','2015-10-11 16:46:40',1,30001264,128,0,135,1,0,0,85,2,3,41,0,1,0,0,0,0,0,126,0,0,0,0,0,16),(2917,'2015-03-14 14:56:59','2015-10-11 16:46:40',1,30004340,0,0,0,65,0,0,12,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,78),(2918,'2015-03-14 14:56:59','2015-10-11 16:46:40',1,30003458,23,7,39,17,8,84,77,106,68,12,17,40,30,178,95,117,94,133,58,36,89,162,216,224),(2919,'2015-03-14 14:56:59','2015-10-11 16:46:40',1,30002414,9,35,10,0,33,11,210,0,0,4,37,60,28,40,3,1,1,141,0,3,0,8,14,26),(2920,'2015-03-14 14:56:59','2015-10-11 16:46:40',1,30002566,77,61,22,11,268,1,17,153,72,89,192,167,33,7,112,84,140,40,11,6,43,4,6,29),(2921,'2015-03-14 14:56:59','2015-10-11 16:46:40',1,30001020,0,14,0,5,8,4,16,0,1,2,27,7,0,20,0,16,16,3,18,40,4,47,0,42),(2922,'2015-03-14 14:56:59','2015-10-11 16:46:40',1,30002097,16,28,5,0,109,10,17,0,4,22,41,24,1,0,29,32,8,27,0,2,5,4,52,16),(2923,'2015-03-14 14:56:59','2015-10-11 16:46:40',1,30001980,0,21,0,11,8,19,26,47,46,58,42,109,165,70,151,120,197,50,95,15,102,107,1,76),(2924,'2015-03-14 14:56:59','2015-10-11 16:46:40',1,30003344,0,3,0,0,0,24,0,0,53,127,5,0,0,0,2,14,15,0,30,5,0,0,0,68),(2925,'2015-03-14 14:56:59','2015-10-11 16:46:40',1,30004316,58,8,594,1068,598,388,411,0,0,0,39,59,117,0,136,12,0,0,0,0,0,41,0,0),(2926,'2015-03-14 14:56:59','2015-10-11 16:46:40',1,30002311,0,0,0,0,3,3,0,0,0,0,0,0,0,0,0,1,2,0,0,0,0,0,0,0),(2927,'2015-03-14 14:56:59','2015-10-11 16:46:40',1,30004375,0,0,0,0,0,0,0,0,56,0,24,24,0,1,243,359,450,2,112,4,0,92,1,0),(2928,'2015-03-14 14:56:59','2015-10-11 16:46:40',1,30003625,0,0,0,0,0,0,0,0,0,0,0,35,35,0,0,0,1,0,0,0,0,0,0,0),(2929,'2015-03-14 14:56:59','2015-03-14 14:56:59',1,30001485,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(2930,'2015-03-14 14:56:59','2015-10-11 16:46:40',1,30002248,41,57,13,103,38,10,22,0,124,62,53,17,153,16,57,100,75,123,49,58,25,23,132,55),(2931,'2015-03-14 14:56:59','2015-10-11 16:46:40',1,30005247,1,197,55,42,113,48,115,744,844,114,0,11,22,86,28,63,116,52,33,6,50,1,31,457),(2932,'2015-03-14 14:56:59','2015-10-11 16:46:40',1,30005124,70,50,3,62,174,123,8,31,75,0,0,0,0,0,0,0,0,0,0,0,2,0,0,0),(2933,'2015-03-14 14:56:59','2015-10-11 16:46:40',1,30003092,0,0,3,0,1,0,0,0,1,80,0,0,6,0,29,49,137,0,6,0,50,11,244,0),(2934,'2015-03-14 14:56:59','2015-10-11 16:46:40',1,30031392,167,231,348,254,195,185,133,234,431,259,88,249,145,179,127,215,302,90,304,136,83,246,397,318),(2935,'2015-03-14 14:56:59','2015-10-11 16:46:40',1,30002737,381,317,340,232,245,223,190,356,391,301,236,287,147,401,288,104,328,448,558,386,272,459,240,451),(2936,'2015-03-14 14:56:59','2015-10-11 16:46:40',1,30003471,0,0,0,0,0,0,0,0,16,12,0,0,0,34,0,0,0,0,0,0,13,17,17,108),(2937,'2015-03-14 14:56:59','2015-10-11 16:46:40',1,30004128,331,127,134,323,215,184,21,57,52,38,35,48,10,169,64,66,71,30,180,94,0,320,34,241),(2938,'2015-03-14 14:56:59','2015-10-11 16:46:40',1,30004152,16,41,0,10,18,41,40,0,3,1,130,150,42,0,36,23,1,121,0,31,82,131,42,49),(2939,'2015-03-14 14:56:59','2015-10-11 16:46:40',1,30005038,49,82,53,29,9,55,28,13,110,88,72,56,6,110,51,45,113,16,50,127,74,215,86,51),(2940,'2015-03-14 14:56:59','2015-10-11 16:46:40',1,30001394,304,362,353,307,275,272,440,337,422,434,339,401,496,314,459,537,507,469,331,118,336,297,467,375),(2941,'2015-03-14 14:56:59','2015-10-11 16:46:40',1,30045312,9,97,3,7,24,23,12,15,28,15,3,11,12,27,28,27,32,29,10,54,24,32,105,63),(2942,'2015-03-14 14:56:59','2015-10-11 16:46:40',1,30005258,0,7,0,0,0,0,0,26,0,8,0,26,36,0,0,5,5,51,0,0,0,3,10,7),(2943,'2015-03-14 14:56:59','2015-10-11 16:46:40',1,30000181,2360,2338,1699,1680,1938,2059,2480,1959,1758,1259,2254,2448,2180,2120,2620,2520,2880,3078,1740,1880,2558,3380,4200,3237),(2944,'2015-03-14 14:56:59','2015-10-11 16:46:40',1,30004103,83,90,58,360,21,2,29,118,10,34,103,107,38,57,77,98,186,26,25,8,32,77,128,22),(2945,'2015-03-14 14:56:59','2015-10-11 16:46:40',1,30003068,10,6,41,0,54,51,1,13,26,3,4,5,10,5,0,0,4,0,0,3,1,31,1,7),(2946,'2015-03-14 14:56:59','2015-10-11 16:46:40',1,30001901,190,0,0,5,0,0,25,28,5,1,0,0,3,1,15,15,1,0,0,39,0,0,0,1),(2947,'2015-03-14 14:56:59','2015-03-14 14:56:59',1,30001536,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(2948,'2015-03-14 14:56:59','2015-10-11 16:46:40',1,30001963,0,0,1,1,5,125,0,0,1,3,1,1,1,0,0,1,2,46,32,0,0,134,2,90),(2949,'2015-03-14 14:56:59','2015-10-11 16:46:40',1,30002452,74,53,0,8,45,18,2,0,269,0,0,0,0,0,8,18,15,8,0,0,0,13,0,0),(2950,'2015-03-14 14:56:59','2015-10-11 16:46:40',1,30004895,107,0,240,0,0,0,5,0,7,0,0,0,0,0,125,42,1,0,94,8,0,5,0,125),(2951,'2015-03-14 14:56:59','2015-10-11 16:46:40',1,30022547,139,99,67,55,86,55,59,75,0,3,26,29,5,7,106,79,0,159,21,20,0,27,0,5),(2952,'2015-03-14 14:56:59','2015-10-11 16:46:40',1,30002079,0,75,5,4,22,2,0,0,1,35,1,1,54,78,47,33,55,0,0,27,21,21,0,1),(2953,'2015-03-14 14:56:59','2015-10-11 16:46:40',1,30002519,0,33,23,73,19,45,70,39,65,69,3,3,78,22,78,70,16,0,88,15,27,34,0,79),(2954,'2015-03-14 14:56:59','2015-10-11 16:46:40',1,30002286,0,0,0,0,0,0,5,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(2955,'2015-03-14 14:56:59','2015-10-11 16:46:40',1,30000246,127,258,81,1,9,0,262,41,162,0,71,71,0,0,0,0,0,0,0,0,0,0,0,0),(2956,'2015-03-14 14:56:59','2015-10-11 16:46:40',1,30000807,0,271,407,477,96,224,199,584,288,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(2957,'2015-03-14 14:56:59','2015-10-11 16:46:40',1,30001589,0,0,0,78,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(2958,'2015-03-14 14:56:59','2015-10-11 16:46:40',1,30003177,0,0,0,0,0,0,0,24,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(2959,'2015-03-14 14:56:59','2015-10-11 16:46:40',1,30003300,24,77,45,0,0,0,12,39,4,14,25,0,50,22,44,27,10,3,5,5,4,0,15,28),(2960,'2015-03-14 14:56:59','2015-10-11 16:46:40',1,30004698,0,612,0,698,0,0,101,163,410,0,0,0,0,0,0,0,0,0,0,0,0,0,0,83),(2961,'2015-03-14 14:56:59','2015-10-11 16:46:40',1,30002042,0,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(2962,'2015-03-14 14:56:59','2015-10-11 16:46:40',1,30002767,31,2,0,129,31,53,8,0,1,1,66,64,25,11,9,35,38,0,4,0,2,6,7,26),(2963,'2015-03-14 14:56:59','2015-10-11 16:46:40',1,30003501,186,177,325,308,86,186,101,128,87,239,120,128,111,176,434,489,318,367,168,181,81,122,336,149),(2964,'2015-03-14 14:56:59','2015-10-11 16:46:40',1,30000021,0,0,0,0,0,0,32,0,0,0,0,0,0,0,0,0,0,1,0,3,2,0,4,1),(2965,'2015-03-14 14:56:59','2015-10-11 16:46:40',1,30003926,0,9,38,0,37,38,0,0,23,3,41,16,88,28,22,12,4,19,61,0,0,25,39,13),(2966,'2015-03-14 14:56:59','2015-10-11 16:46:40',1,30002771,285,253,138,106,156,110,86,81,98,217,245,349,186,228,215,123,201,271,63,100,254,365,236,217),(2967,'2015-03-14 14:56:59','2015-10-11 16:46:40',1,30005050,28,64,89,64,87,126,3,575,372,19,33,37,53,91,93,104,106,74,7,69,204,76,96,52),(2968,'2015-03-14 14:56:59','2015-10-11 16:46:40',1,30001415,210,130,219,133,59,26,40,212,107,138,246,236,164,171,235,257,346,31,145,126,216,116,204,154),(2969,'2015-03-14 14:56:59','2015-10-11 16:46:40',1,30003066,51,0,92,47,77,54,0,0,36,7,15,79,61,13,13,10,36,124,27,43,17,126,73,14),(2970,'2015-03-14 14:56:59','2015-10-11 16:46:40',1,30003096,0,0,0,0,138,137,11,11,41,0,0,0,0,0,0,0,0,0,0,3,76,462,1,0),(2971,'2015-03-14 14:56:59','2015-10-11 16:46:40',1,30003089,7,7,6,36,46,166,1,0,0,13,38,51,31,22,53,30,28,75,4,36,27,9,4,60),(2972,'2015-03-14 14:56:59','2015-10-11 16:46:40',1,30002802,435,770,624,530,525,559,426,562,372,396,445,329,433,433,479,450,394,447,501,236,513,386,374,613),(2973,'2015-03-14 14:56:59','2015-10-11 16:46:40',1,30004348,421,521,316,388,101,308,274,605,16,114,191,390,722,486,278,294,354,340,223,338,203,395,507,551),(2974,'2015-03-14 14:56:59','2015-10-11 16:46:40',1,30004642,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,50,84,0),(2975,'2015-03-14 14:56:59','2015-10-11 16:46:40',1,30003635,65,48,9,14,33,95,3,57,0,0,0,0,0,0,0,0,0,0,0,0,0,59,0,0),(2976,'2015-03-14 14:56:59','2015-10-11 16:46:40',1,30001180,0,108,130,178,93,85,269,67,48,0,0,0,0,0,18,0,0,53,0,0,0,0,0,0),(2977,'2015-03-14 14:56:59','2015-10-11 16:46:40',1,30004833,53,48,8,9,9,17,77,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(2978,'2015-03-14 14:56:59','2015-10-11 16:46:40',1,30000269,0,73,2,0,86,64,22,96,30,28,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(2979,'2015-03-14 14:56:59','2015-03-14 14:56:59',1,30000347,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(2980,'2015-03-14 14:56:59','2015-10-11 16:46:40',1,30000124,783,148,153,102,129,123,299,57,0,130,166,172,52,120,58,54,106,118,33,136,98,177,158,155),(2981,'2015-03-14 14:56:59','2015-10-11 16:46:40',1,30000498,0,0,0,0,0,0,0,0,0,0,0,0,0,221,41,22,189,168,5,58,101,0,747,119),(2982,'2015-03-14 14:56:59','2015-10-11 16:46:40',1,30000710,326,34,0,0,0,0,6,217,108,0,0,0,0,0,0,0,11,0,0,0,0,0,0,0),(2983,'2015-03-14 14:56:59','2015-10-11 16:46:40',1,30000874,247,232,174,36,260,288,352,116,262,43,23,0,6,26,44,42,58,20,77,19,131,4,0,140),(2984,'2015-03-14 14:56:59','2015-10-11 16:46:40',1,30004593,4,0,0,0,0,0,0,51,41,8,0,7,7,0,0,0,0,0,5,26,10,0,68,75),(2985,'2015-03-14 14:56:59','2015-10-11 16:46:40',1,30002142,22,149,55,18,54,117,111,70,17,0,0,0,0,11,0,109,128,0,0,0,0,129,131,0),(2986,'2015-03-14 14:56:59','2015-03-14 14:56:59',1,30003951,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(2987,'2015-03-14 14:56:59','2015-10-11 16:46:40',1,30003970,3,0,0,0,30,37,0,0,0,5,0,0,0,132,36,0,0,0,261,1,0,203,0,0),(2988,'2015-03-14 14:56:59','2015-10-11 16:46:40',1,30004625,0,0,0,0,0,0,0,0,0,0,0,0,0,5,0,0,0,7,0,2,3,0,0,0),(2989,'2015-03-14 14:56:59','2015-10-11 16:46:40',1,30001945,0,0,0,0,0,0,0,0,235,31,63,63,0,18,6,0,0,0,0,0,0,0,0,0),(2990,'2015-03-14 14:56:59','2015-10-11 16:46:40',1,30004910,448,0,536,655,262,187,272,539,567,447,522,370,517,279,391,341,364,365,0,4,376,812,1180,319),(2991,'2015-03-14 14:56:59','2015-10-11 16:46:40',1,30001223,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,131,0,0,7),(2992,'2015-03-14 14:56:59','2015-10-11 16:46:40',1,30003689,88,0,0,28,34,73,173,43,3,0,0,0,0,31,3,1,0,203,4,12,0,0,0,7),(2993,'2015-03-14 14:56:59','2015-03-14 14:56:59',1,30000357,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(2994,'2015-03-14 14:56:59','2015-10-11 16:46:40',1,30001592,0,0,0,0,0,0,0,0,0,5,18,13,0,0,0,0,0,0,0,4,4,0,0,0),(2995,'2015-03-14 14:56:59','2015-10-11 16:46:40',1,30000540,0,0,51,121,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,2,3,3),(2996,'2015-03-14 14:56:59','2015-10-11 16:46:40',1,30004018,0,0,0,0,0,0,0,0,0,0,0,0,80,0,0,0,0,0,0,0,0,53,0,0),(2997,'2015-03-14 14:56:59','2015-10-11 16:46:40',1,30002847,49,0,0,0,0,0,117,167,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,31),(2998,'2015-03-14 14:56:59','2015-10-11 16:46:40',1,30002434,0,0,181,0,0,0,0,0,0,0,0,0,0,29,0,0,0,0,0,0,0,1,126,115),(2999,'2015-03-14 14:56:59','2015-10-11 16:46:40',1,30001350,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,21,0,0,0,0,0),(3000,'2015-03-14 14:56:59','2015-10-11 16:46:40',1,30000528,489,950,1090,141,108,73,250,136,207,94,262,488,355,108,383,131,64,207,0,0,0,220,111,197),(3001,'2015-03-14 14:56:59','2015-10-11 16:46:40',1,30003168,0,118,0,115,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,119,0,0),(3002,'2015-03-14 14:56:59','2015-10-11 16:46:40',1,30003643,0,0,0,0,30,0,0,0,30,0,0,0,0,0,0,0,0,39,0,0,0,0,0,0),(3003,'2015-03-14 14:56:59','2015-10-11 16:46:40',1,30005163,0,0,0,0,0,0,0,0,68,0,0,0,205,0,116,77,390,473,0,0,0,3,98,20),(3004,'2015-03-14 14:56:59','2015-10-11 16:46:40',1,30000467,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,49,37,0),(3005,'2015-03-14 14:56:59','2015-10-11 16:46:40',1,30003684,139,258,163,67,40,44,50,186,206,12,23,19,110,63,93,76,50,73,0,0,17,96,49,117),(3006,'2015-03-14 14:56:59','2015-03-14 14:56:59',1,30000430,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(3007,'2015-03-14 14:56:59','2015-10-11 16:46:40',1,30002842,68,75,17,271,285,197,27,12,136,0,3,6,0,0,0,56,86,46,0,0,0,7,22,14),(3008,'2015-03-14 14:56:59','2015-10-11 16:46:40',1,30002470,196,192,0,0,229,15,216,0,0,15,373,444,494,0,0,0,16,293,0,75,0,199,0,71),(3009,'2015-03-14 14:56:59','2015-03-14 14:56:59',1,30001499,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(3010,'2015-03-14 14:56:59','2015-10-11 16:46:40',1,30001989,0,0,0,0,0,0,0,0,0,0,7,7,0,0,3,30,27,31,0,0,24,24,0,0),(3011,'2015-03-14 14:56:59','2015-10-11 16:46:40',1,30000891,19,437,553,115,156,7,629,245,141,138,198,208,0,329,91,163,153,531,9,374,397,0,105,65),(3012,'2015-03-14 14:56:59','2015-10-11 16:46:40',1,30001526,65,0,0,0,0,0,0,0,0,4,3,0,0,2,3,8,104,0,6,118,3,3,0,0),(3013,'2015-03-14 14:56:59','2015-10-11 16:46:40',1,30004927,0,0,0,0,0,0,0,69,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(3014,'2015-03-14 14:56:59','2015-03-14 14:56:59',1,30000605,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(3015,'2015-03-14 14:56:59','2015-10-11 16:46:40',1,30004203,95,0,0,58,0,0,0,0,0,0,0,0,0,0,0,24,96,107,0,0,0,0,0,0),(3016,'2015-03-14 14:56:59','2015-10-11 16:46:40',1,30002300,0,3,0,0,0,0,0,13,0,0,0,0,0,0,38,37,0,0,0,0,0,27,0,0),(3017,'2015-03-14 14:56:59','2015-10-11 16:46:40',1,30001876,90,0,4,0,0,0,0,0,0,25,0,57,90,0,36,127,180,117,0,0,0,13,60,13),(3018,'2015-03-14 14:56:59','2015-03-14 14:56:59',1,30000968,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(3019,'2015-03-14 14:56:59','2015-10-11 16:46:40',1,30001809,0,0,0,0,0,0,0,41,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(3020,'2015-03-14 14:56:59','2015-10-11 16:46:40',1,30004827,0,0,0,0,0,0,0,7,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,101),(3021,'2015-03-14 14:56:59','2015-10-11 16:46:40',1,30004003,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,64),(3022,'2015-03-14 14:56:59','2015-10-11 16:46:40',1,30004526,0,0,0,0,0,0,51,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,110,21),(3023,'2015-03-14 14:56:59','2015-10-11 16:46:40',1,30002376,0,77,9,5,3,0,0,0,9,0,40,22,0,0,0,0,0,0,1,7,0,0,0,0),(3024,'2015-03-14 14:56:59','2015-10-11 16:46:40',1,30002435,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,18,50,35,0,0,0,0,0),(3025,'2015-03-14 14:56:59','2015-10-11 16:46:40',1,30000786,0,0,0,0,0,0,0,0,0,0,0,0,0,10,0,0,0,0,0,0,0,0,0,0),(3026,'2015-03-14 14:56:59','2015-10-11 16:46:40',1,30004944,800,479,942,21,380,582,600,2125,505,312,0,0,0,180,0,0,0,0,286,340,84,22,136,35),(3027,'2015-03-14 14:56:59','2015-03-14 14:56:59',1,30005179,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(3028,'2015-03-14 14:56:59','2015-10-11 16:46:40',1,30001928,0,0,2,0,0,3,0,0,0,0,1,1,1,3,3,4,5,44,1,68,0,0,0,4),(3029,'2015-03-14 14:56:59','2015-10-11 16:46:40',1,30002607,276,128,0,0,8,129,0,89,23,0,0,0,0,0,0,0,0,0,0,0,0,0,104,0),(3030,'2015-03-14 14:56:59','2015-03-14 14:56:59',1,30000354,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(3031,'2015-03-14 14:56:59','2015-10-11 16:46:40',1,30004659,0,0,0,0,0,0,0,0,0,0,36,2,44,123,1,0,6,120,0,0,4,9,93,87),(3032,'2015-03-14 14:56:59','2015-10-11 16:46:40',1,30001560,14,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(3033,'2015-03-14 14:56:59','2015-10-11 16:46:40',1,30001174,0,0,0,0,0,0,0,0,0,0,0,0,0,0,133,121,9,0,14,4,1,0,0,0),(3034,'2015-03-14 14:56:59','2015-10-11 16:46:40',1,30000462,0,0,0,0,0,0,0,23,0,55,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(3035,'2015-03-14 14:56:59','2015-10-11 16:46:40',1,30003255,108,36,118,4,0,0,0,0,0,0,35,76,21,0,0,0,0,0,0,0,0,0,0,23),(3036,'2015-03-14 14:56:59','2015-10-11 16:46:40',1,30041392,63,440,416,396,377,253,267,154,170,219,129,85,395,212,514,341,410,342,185,88,151,91,241,141),(3037,'2015-03-14 14:56:59','2015-10-11 16:46:40',1,30002976,27,9,81,11,29,17,11,11,13,46,25,22,6,8,0,0,1,16,0,1,0,20,11,19),(3038,'2015-03-14 14:56:59','2015-10-11 16:46:40',1,30000029,186,57,67,62,3,120,64,63,27,60,13,19,122,56,75,48,62,108,7,54,196,68,3,0),(3039,'2015-03-14 14:56:59','2015-10-11 16:46:40',1,30002989,27,64,104,45,20,70,63,48,0,93,69,106,59,88,131,160,94,101,8,119,34,92,78,116),(3040,'2015-03-14 14:56:59','2015-10-11 16:46:40',1,30004999,0,148,161,0,19,54,12,30,42,16,28,26,0,14,10,12,10,3,28,104,15,18,65,37),(3041,'2015-03-14 14:56:59','2015-10-11 16:46:40',1,30003519,45,31,25,47,67,105,30,34,43,69,26,53,42,51,125,242,200,3,18,79,149,111,201,13),(3042,'2015-03-14 14:56:59','2015-10-11 16:46:40',1,30003049,103,99,3,34,177,201,87,30,110,36,67,75,12,54,252,236,76,197,22,57,228,170,102,325),(3043,'2015-03-14 14:56:59','2015-10-11 16:46:40',1,30003063,20,10,10,6,78,43,20,17,32,28,36,28,28,33,44,56,54,59,25,22,24,45,65,59),(3044,'2015-03-14 14:56:59','2015-10-11 16:46:40',1,30002722,95,25,36,2,10,8,28,22,59,4,97,101,65,41,1,8,8,0,2,103,48,53,13,7),(3045,'2015-03-14 14:56:59','2015-10-11 16:46:40',1,30002074,1179,1699,1260,2219,1779,1460,1358,940,855,1456,2100,2000,1720,2140,2796,2018,2040,2640,1030,1180,1600,2175,2000,1978),(3046,'2015-03-14 14:56:59','2015-10-11 16:46:40',1,30003882,101,3,125,150,14,14,18,199,30,168,0,0,0,61,14,30,30,115,0,22,29,10,32,27),(3047,'2015-03-14 14:56:59','2015-10-11 16:46:40',1,30002540,1,0,0,0,0,0,0,14,2,2,31,34,120,4,16,8,2,46,5,5,6,3,26,2),(3048,'2015-03-14 14:56:59','2015-10-11 16:46:40',1,30001712,61,47,157,73,57,37,46,83,90,53,127,128,140,109,93,116,59,184,48,162,356,109,178,393),(3049,'2015-03-14 14:56:59','2015-10-11 16:46:40',1,30032547,77,27,144,0,0,22,91,97,3,35,12,54,22,39,117,32,22,158,40,3,0,9,0,92),(3050,'2015-03-14 14:56:59','2015-10-11 16:46:40',1,30003579,81,159,0,73,2,54,0,0,28,78,28,66,84,168,0,2,2,29,95,6,56,47,72,3),(3051,'2015-03-14 14:56:59','2015-10-11 16:46:40',1,30000002,25,56,30,16,8,8,43,3,59,93,91,77,29,80,43,66,49,64,25,3,129,75,44,40),(3052,'2015-03-14 14:56:59','2015-10-11 16:46:40',1,30003549,77,0,0,0,0,0,0,114,37,54,0,8,0,0,0,0,0,0,0,75,0,14,29,109),(3053,'2015-03-14 14:56:59','2015-10-11 16:46:40',1,30002065,25,88,14,70,0,0,0,1,2,0,9,34,27,1,12,17,105,19,11,43,19,36,2,15),(3054,'2015-03-14 14:56:59','2015-10-11 16:46:40',1,30005075,94,10,100,14,4,4,37,8,33,163,116,64,10,8,58,32,85,114,40,38,49,57,53,204),(3055,'2015-03-14 14:56:59','2015-10-11 16:46:40',1,30005002,144,27,177,148,45,36,197,55,49,95,76,94,146,265,160,185,168,107,54,144,49,69,102,158),(3056,'2015-03-14 14:56:59','2015-10-11 16:46:40',1,30004159,112,146,42,50,154,37,172,0,22,369,70,76,153,57,143,297,449,160,97,98,111,59,55,53),(3057,'2015-03-14 14:56:59','2015-10-11 16:46:40',1,30003592,115,0,18,93,107,266,134,61,232,0,43,65,45,129,50,29,36,0,58,0,0,215,9,5),(3058,'2015-03-14 14:56:59','2015-10-11 16:46:40',1,30001917,0,0,0,0,0,0,250,292,27,63,59,62,29,50,70,115,120,54,38,141,215,107,158,67),(3059,'2015-03-14 14:56:59','2015-10-11 16:46:40',1,30002161,3,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,41,0,0,0),(3060,'2015-03-14 14:56:59','2015-10-11 16:46:40',1,30000683,9,21,42,9,8,3,126,0,5,0,0,0,0,0,0,0,2,0,15,0,0,0,0,0),(3061,'2015-03-14 14:56:59','2015-10-11 16:46:40',1,30004663,0,0,0,0,0,0,32,0,0,0,4,0,23,1,6,0,0,0,0,0,0,43,55,223),(3062,'2015-03-14 14:56:59','2015-10-11 16:46:40',1,30004541,0,0,0,0,0,0,0,23,0,12,9,1,0,0,0,0,0,0,0,9,1,0,0,0),(3063,'2015-03-14 14:56:59','2015-10-11 16:46:40',1,30001923,0,0,0,0,0,0,0,5,0,13,0,0,0,3,0,3,3,0,0,0,0,0,0,5),(3064,'2015-03-14 14:56:59','2015-03-14 14:56:59',1,30001605,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(3065,'2015-03-14 14:56:59','2015-10-11 16:46:40',1,30004700,0,0,0,0,0,0,125,272,0,0,0,0,116,0,24,0,220,0,0,0,93,224,33,2),(3066,'2015-03-14 14:56:59','2015-10-11 16:46:40',1,30002849,0,0,0,14,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,80,98,21),(3067,'2015-03-14 14:56:59','2015-10-11 16:46:40',1,30002932,61,6,0,0,33,141,0,58,95,0,0,0,0,81,0,57,106,4,0,0,0,50,0,0),(3068,'2015-03-14 14:56:59','2015-10-11 16:46:40',1,30005259,6,0,4,1,3,26,0,14,0,80,0,0,0,0,81,0,0,0,7,101,53,0,0,0),(3069,'2015-03-14 14:56:59','2015-10-11 16:46:40',1,30002865,0,91,3,234,199,80,70,73,139,203,152,142,418,35,242,253,58,153,0,0,14,229,273,377),(3070,'2015-03-14 14:56:59','2015-10-11 16:46:40',1,30005233,0,9,151,34,0,11,0,21,0,0,33,90,1,6,18,27,145,22,0,0,26,1,4,14),(3071,'2015-03-14 14:56:59','2015-10-11 16:46:40',1,30003039,96,75,62,80,190,44,88,10,178,113,125,147,20,108,73,97,199,77,39,213,83,122,52,20),(3072,'2015-03-14 14:56:59','2015-10-11 16:46:40',1,30002728,34,0,52,7,0,0,0,0,0,38,35,26,34,3,4,0,34,3,1,14,26,0,70,26),(3073,'2015-03-14 14:56:59','2015-10-11 16:46:40',1,30003409,136,77,81,109,121,111,61,74,57,110,72,91,90,136,62,82,50,105,108,124,133,91,147,53),(3074,'2015-03-14 14:56:59','2015-10-11 16:46:40',1,30005039,62,192,184,121,268,190,48,64,195,95,275,181,76,147,62,114,100,162,22,37,92,90,160,53),(3075,'2015-03-14 14:56:59','2015-10-11 16:46:40',1,30003759,5,6,48,0,0,0,36,77,44,3,37,65,10,205,37,130,113,160,5,10,35,70,45,64),(3076,'2015-03-14 14:56:59','2015-10-11 16:46:40',1,30003172,479,241,206,169,0,0,0,234,173,0,4,4,0,70,61,0,0,172,1,8,231,847,1265,276),(3077,'2015-03-14 14:56:59','2015-10-11 16:46:40',1,30004689,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(3078,'2015-03-14 14:56:59','2015-03-14 14:56:59',1,30001460,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(3079,'2015-03-14 14:56:59','2015-10-11 16:46:40',1,30001833,0,25,0,0,53,65,0,17,47,6,36,36,0,5,0,0,0,0,0,0,0,0,0,0),(3080,'2015-03-14 14:56:59','2015-10-11 16:46:40',1,30001953,0,0,0,0,0,0,0,0,0,0,0,0,0,0,135,133,78,0,23,4,22,0,18,41),(3081,'2015-03-14 14:56:59','2015-10-11 16:46:40',1,30004505,0,0,0,0,0,0,0,0,0,21,0,0,0,0,0,0,0,0,0,0,0,0,38,0),(3082,'2015-03-14 14:56:59','2015-03-14 14:56:59',1,30001507,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(3083,'2015-03-14 14:56:59','2015-10-11 16:46:40',1,30001587,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2),(3084,'2015-03-14 14:56:59','2015-10-11 16:46:40',1,30001069,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,93),(3085,'2015-03-14 14:56:59','2015-10-11 16:46:40',1,30002624,99,0,209,333,256,289,128,430,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(3086,'2015-03-14 14:56:59','2015-10-11 16:46:40',1,30001337,28,59,0,0,0,0,25,0,0,26,0,0,0,94,19,19,0,0,0,0,0,14,0,29),(3087,'2015-03-14 14:56:59','2015-10-11 16:46:40',1,30003421,210,109,61,25,120,124,0,68,34,29,75,59,36,90,58,120,136,24,43,150,128,208,133,132),(3088,'2015-03-14 14:56:59','2015-10-11 16:46:40',1,30000154,612,356,643,570,834,425,292,512,249,617,663,726,632,494,973,904,1038,541,252,543,361,392,529,318),(3089,'2015-03-14 14:56:59','2015-10-11 16:46:40',1,30000020,0,15,15,0,0,0,0,0,6,11,0,0,0,0,0,0,4,7,4,0,0,0,10,0),(3090,'2015-03-14 14:56:59','2015-10-11 16:46:40',1,30005087,0,0,7,0,0,0,0,0,4,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0),(3091,'2015-03-14 14:56:59','2015-10-11 16:46:40',1,30003459,47,30,27,31,32,24,79,34,24,83,212,111,7,28,91,60,131,136,27,6,61,111,62,128),(3092,'2015-03-14 14:56:59','2015-10-11 16:46:40',1,30003025,91,121,97,180,94,95,69,41,168,143,106,71,91,114,232,224,276,381,169,188,286,286,166,32),(3093,'2015-03-14 14:56:59','2015-10-11 16:46:40',1,30005007,97,20,44,35,2,22,33,95,67,153,156,53,85,71,17,18,34,121,107,18,18,15,162,39),(3094,'2015-03-14 14:56:59','2015-10-11 16:46:40',1,30002973,242,328,240,386,211,175,153,273,284,311,287,340,349,415,259,339,511,302,134,141,181,445,319,257),(3095,'2015-03-14 14:56:59','2015-10-11 16:46:40',1,30001400,156,109,257,299,105,101,213,114,337,236,215,294,258,316,298,207,357,428,35,243,182,296,321,330),(3096,'2015-03-14 14:56:59','2015-10-11 16:46:40',1,30001048,34,0,0,0,0,0,0,0,0,0,0,0,0,21,0,0,1,0,28,0,0,0,0,2),(3097,'2015-03-14 14:56:59','2015-10-11 16:46:40',1,30001416,83,264,38,50,153,139,134,202,180,51,71,73,303,147,24,125,201,25,58,27,225,34,229,141),(3098,'2015-03-14 14:56:59','2015-10-11 16:46:40',1,30004630,0,42,0,0,0,0,0,106,0,0,0,0,0,60,31,0,0,44,113,59,0,36,46,68),(3099,'2015-03-14 14:56:59','2015-10-11 16:46:40',1,30000647,17,0,0,0,0,0,19,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(3100,'2015-03-14 14:56:59','2015-10-11 16:46:40',1,30004641,0,0,0,64,0,0,98,155,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(3101,'2015-03-14 14:56:59','2015-10-11 16:46:40',1,30001038,28,1,3,27,4,8,0,0,46,243,210,97,59,28,126,133,163,298,26,13,25,179,201,67),(3102,'2015-03-14 14:56:59','2015-10-11 16:46:40',1,30002604,0,0,0,0,0,0,0,45,0,0,297,268,54,76,82,48,86,94,0,10,8,0,0,0),(3103,'2015-03-14 14:56:59','2015-10-11 16:46:40',1,30002139,0,0,5,0,0,0,0,103,0,3,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(3104,'2015-03-14 14:56:59','2015-10-11 16:46:40',1,30000599,0,0,0,0,0,0,0,0,0,0,52,200,31,0,0,0,0,0,0,0,0,0,0,0),(3105,'2015-03-14 14:56:59','2015-10-11 16:46:40',1,30000615,0,0,0,0,0,0,0,89,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(3106,'2015-03-14 14:56:59','2015-10-11 16:46:40',1,30002114,0,0,0,0,0,0,65,0,0,0,0,0,0,0,0,0,0,4,0,0,0,7,3,0),(3107,'2015-03-14 14:56:59','2015-10-11 16:46:40',1,30003973,354,0,0,0,0,0,9,27,3,196,22,290,327,49,8,8,193,175,176,175,116,220,208,56),(3108,'2015-03-14 14:56:59','2015-10-11 16:46:40',1,30001119,8,0,66,160,207,35,0,0,11,0,0,0,0,0,166,113,0,0,0,0,0,105,93,0),(3109,'2015-03-14 14:56:59','2015-10-11 16:46:40',1,30005300,10,11,2,14,3,5,8,11,17,6,15,12,12,0,0,1,10,4,0,10,7,40,8,114),(3110,'2015-03-14 14:56:59','2015-10-11 16:46:40',1,30042547,215,59,0,82,34,39,60,54,62,42,69,103,59,97,7,20,99,64,33,0,21,32,67,14),(3111,'2015-03-14 14:56:59','2015-10-11 16:46:40',1,30004897,86,0,0,127,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,84),(3112,'2015-03-14 14:56:59','2015-10-11 16:46:40',1,30005193,1,11,89,24,133,133,105,43,104,2,23,11,91,31,23,5,95,47,32,24,50,43,184,7),(3113,'2015-03-14 14:56:59','2015-10-11 16:46:40',1,30001687,32,16,49,40,23,27,72,36,73,30,116,134,26,46,146,76,118,91,15,80,24,26,43,28),(3114,'2015-03-14 14:56:59','2015-10-11 16:46:40',1,30003575,59,361,172,102,61,33,14,106,191,19,95,162,253,144,111,70,16,45,62,34,73,170,24,91),(3115,'2015-03-14 14:56:59','2015-10-11 16:46:40',1,30002996,48,0,147,60,16,101,32,97,68,92,57,142,37,29,129,45,67,39,60,109,182,73,29,81),(3116,'2015-03-14 14:56:59','2015-10-11 16:46:40',1,30000533,17,11,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,11,0),(3117,'2015-03-14 14:56:59','2015-03-14 14:56:59',1,30000384,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(3118,'2015-03-14 14:56:59','2015-10-11 16:46:40',1,30002294,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,5,0,0,0),(3119,'2015-03-14 14:56:59','2015-03-14 14:56:59',1,30000649,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(3120,'2015-03-14 14:56:59','2015-10-11 16:46:40',1,30004896,351,34,299,174,709,476,185,79,26,0,0,0,63,0,0,0,0,3,0,0,0,0,0,0),(3121,'2015-03-14 14:56:59','2015-10-11 16:46:40',1,30000704,0,0,0,0,0,0,0,0,0,0,0,1,124,0,3,3,0,0,0,0,0,0,0,0),(3122,'2015-03-14 14:56:59','2015-03-14 14:56:59',1,30001601,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(3123,'2015-03-14 14:56:59','2015-03-14 14:56:59',1,30000397,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(3124,'2015-03-14 14:56:59','2015-10-11 16:46:40',1,30003204,79,0,0,0,0,0,0,0,0,39,71,0,0,0,0,0,0,0,0,0,0,0,0,0),(3125,'2015-03-14 14:56:59','2015-10-11 16:46:40',1,30002493,1067,643,781,205,338,504,370,160,52,67,204,483,699,114,419,400,337,255,6,121,235,393,121,43),(3126,'2015-03-14 14:56:59','2015-10-11 16:46:40',1,30004353,0,33,23,28,90,99,80,296,947,0,0,0,19,0,0,0,1,6,14,1,0,0,0,1),(3127,'2015-03-14 14:56:59','2015-10-11 16:46:40',1,30000319,41,31,0,0,0,0,0,194,124,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(3128,'2015-03-14 14:56:59','2015-10-11 16:46:40',1,30004885,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,118,0,0,0),(3129,'2015-03-14 14:56:59','2015-10-11 16:46:40',1,30004021,0,0,0,0,0,0,0,120,173,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(3130,'2015-03-14 14:56:59','2015-10-11 16:46:40',1,30002830,9,536,0,0,138,126,268,246,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(3131,'2015-03-14 14:56:59','2015-10-11 16:46:40',1,30000300,71,130,305,579,546,625,447,331,385,64,77,55,49,10,51,137,270,12,182,175,106,28,16,21),(3132,'2015-03-14 14:56:59','2015-10-11 16:46:40',1,30003334,16,0,0,0,0,0,0,4,0,24,17,47,30,8,23,0,27,125,0,6,6,0,0,0),(3133,'2015-03-14 14:56:59','2015-10-11 16:46:40',1,30002928,34,0,0,0,30,0,0,0,60,77,0,0,32,0,1240,1238,1037,1,870,1180,1154,1024,363,2),(3134,'2015-03-14 14:56:59','2015-10-11 16:46:40',1,30000466,0,0,0,0,0,0,0,16,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(3135,'2015-03-14 14:56:59','2015-10-11 16:46:40',1,30001804,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(3136,'2015-03-14 14:56:59','2015-10-11 16:46:40',1,30002462,0,97,36,93,0,0,88,0,85,0,0,0,0,0,0,0,0,1,0,0,0,0,0,117),(3137,'2015-03-14 14:56:59','2015-10-11 16:46:40',1,30004747,0,0,0,0,0,0,0,0,0,18,39,36,0,0,25,67,63,0,7,86,5,0,0,15),(3138,'2015-03-14 14:56:59','2015-10-11 16:46:40',1,30004680,0,0,226,0,0,0,43,122,11,0,1,122,0,0,250,124,1,0,0,0,0,0,54,92),(3139,'2015-03-14 14:56:59','2015-10-11 16:46:40',1,30002516,14,2,0,0,14,0,55,8,7,4,33,16,12,3,107,126,79,66,4,19,4,70,62,7),(3140,'2015-03-14 14:56:59','2015-10-11 16:46:40',1,30003432,40,43,4,20,28,87,138,14,205,70,93,27,142,142,133,108,114,135,82,138,62,26,131,20),(3141,'2015-03-14 14:56:59','2015-10-11 16:46:40',1,30004967,751,391,287,478,435,256,513,278,334,434,603,658,327,567,844,964,1009,644,148,438,462,862,959,762),(3142,'2015-03-14 14:56:59','2015-10-11 16:46:40',1,30002261,290,50,110,135,21,35,7,139,94,201,256,110,207,81,72,67,43,41,21,31,22,7,16,43),(3143,'2015-03-14 14:56:59','2015-10-11 16:46:40',1,30005316,73,90,147,211,165,188,100,193,42,73,63,95,103,198,176,161,113,159,61,137,146,108,159,84),(3144,'2015-03-14 14:56:59','2015-10-11 16:46:40',1,30002545,652,509,579,434,402,380,396,310,485,935,886,903,598,635,1169,1039,724,621,713,688,1084,957,788,556),(3145,'2015-03-14 14:56:59','2015-10-11 16:46:40',1,30000813,7,213,512,211,127,237,456,127,96,0,0,55,87,0,0,0,0,134,0,0,0,205,130,0),(3146,'2015-03-14 14:56:59','2015-10-11 16:46:40',1,30005106,0,0,6,76,12,12,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(3147,'2015-03-14 14:56:59','2015-10-11 16:46:40',1,30004800,0,0,0,0,192,115,0,0,0,0,0,0,0,0,13,168,555,26,0,0,0,9,6,5),(3148,'2015-03-14 14:56:59','2015-10-11 16:46:40',1,30002458,93,83,54,38,23,23,240,0,93,10,67,6,28,82,49,95,146,159,0,51,32,21,14,169),(3149,'2015-03-14 14:56:59','2015-10-11 16:46:40',1,30004705,732,1391,1124,484,758,473,546,726,758,487,348,479,1220,123,42,79,61,18,0,20,230,203,0,462),(3150,'2015-03-14 14:56:59','2015-10-11 16:46:40',1,30002355,0,0,4,0,0,0,3,0,0,6,4,0,0,0,0,0,0,5,0,3,0,3,4,3),(3151,'2015-03-14 14:56:59','2015-10-11 16:46:40',1,30000971,0,0,0,0,0,8,0,0,0,0,0,0,0,0,13,13,4,0,29,9,0,0,0,0),(3152,'2015-03-14 14:56:59','2015-10-11 16:46:40',1,30004364,42,83,49,0,0,0,0,93,19,0,0,0,0,0,3,2,2,34,0,67,47,10,70,0),(3153,'2015-03-14 14:56:59','2015-10-11 16:46:40',1,30001078,152,192,88,151,35,67,0,142,2,196,240,15,156,66,243,162,159,12,7,78,133,242,262,185),(3154,'2015-03-14 14:56:59','2015-10-11 16:46:40',1,30000208,18,31,60,50,33,30,84,0,0,131,60,64,0,47,10,9,9,11,27,88,1,0,0,0),(3155,'2015-03-14 14:56:59','2015-10-11 16:46:40',1,30004823,0,118,122,93,7,6,0,15,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(3156,'2015-03-14 14:56:59','2015-10-11 16:46:40',1,30002869,0,0,0,0,0,0,0,0,0,0,0,70,157,165,24,0,0,0,0,0,0,0,0,0),(3157,'2015-03-14 14:56:59','2015-10-11 16:46:40',1,30001995,0,41,52,31,39,35,1,0,15,32,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(3158,'2015-03-14 14:56:59','2015-10-11 16:46:40',1,30002601,0,0,0,0,0,0,0,0,0,0,0,0,0,6,0,23,199,195,0,206,549,330,0,32),(3159,'2015-03-14 14:56:59','2015-10-11 16:46:40',1,30004449,189,331,69,57,245,187,22,23,6,47,71,71,8,131,240,238,164,122,0,0,65,0,27,111),(3160,'2015-03-14 14:56:59','2015-03-14 14:56:59',1,30000620,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(3161,'2015-03-14 14:56:59','2015-03-14 14:56:59',1,30000922,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(3162,'2015-03-14 14:56:59','2015-03-14 14:56:59',1,30001479,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(3163,'2015-03-14 14:56:59','2015-10-11 16:46:40',1,30004356,18,119,0,46,183,187,0,71,140,0,0,0,0,0,33,23,23,0,0,0,0,0,0,0),(3164,'2015-03-14 14:56:59','2015-10-11 16:46:40',1,30004633,3,0,0,2,0,0,1,0,4,0,0,0,1,0,0,0,0,0,63,0,3,129,0,0),(3165,'2015-03-14 14:56:59','2015-10-11 16:46:40',1,30000591,0,0,5,69,27,37,8,28,100,0,0,0,0,0,0,0,0,8,7,0,0,0,0,0),(3166,'2015-03-14 14:56:59','2015-10-11 16:46:40',1,30000639,95,0,6,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(3167,'2015-03-14 14:56:59','2015-10-11 16:46:40',1,30002428,39,0,0,0,0,0,0,17,105,0,124,94,0,0,0,0,0,0,0,0,0,7,27,42),(3168,'2015-03-14 14:56:59','2015-10-11 16:46:40',1,30000905,4,14,0,0,6,10,0,0,0,5,0,0,0,0,1,0,40,20,4,0,21,4,5,37),(3169,'2015-03-14 14:56:59','2015-10-11 16:46:40',1,30001032,13,28,10,0,4,0,0,25,0,0,2,12,0,5,11,38,56,0,50,38,151,12,4,0),(3170,'2015-03-14 14:56:59','2015-10-11 16:46:40',1,30004511,0,0,0,0,0,0,0,0,0,0,0,0,0,2,0,0,0,0,0,0,0,0,39,31),(3171,'2015-03-14 14:56:59','2015-10-11 16:46:40',1,30001597,1,0,0,0,0,0,0,0,0,255,53,165,200,1160,721,695,632,192,69,0,54,0,0,30),(3172,'2015-03-14 14:56:59','2015-03-14 14:56:59',1,30003200,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(3173,'2015-03-14 14:56:59','2015-10-11 16:46:40',1,30000848,0,13,0,0,0,0,85,73,0,32,0,4,6,0,0,0,0,0,1,0,0,0,0,4),(3174,'2015-03-14 14:56:59','2015-03-14 14:56:59',1,30004478,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(3175,'2015-03-14 14:56:59','2015-10-11 16:46:40',1,30004881,40,167,446,525,178,298,0,86,195,241,293,411,404,196,582,717,602,750,57,147,89,342,238,116),(3176,'2015-03-14 14:56:59','2015-10-11 16:46:40',1,30005140,0,0,0,0,0,29,105,0,39,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(3177,'2015-03-14 14:56:59','2015-10-11 16:46:40',1,30004795,0,0,110,66,156,138,151,206,17,0,0,0,0,5,7,3,0,5,37,19,8,0,0,0),(3178,'2015-03-14 14:56:59','2015-10-11 16:46:40',1,30003665,0,179,109,0,0,0,10,106,0,0,110,110,0,0,0,0,100,0,41,98,0,0,0,0),(3179,'2015-03-14 14:56:59','2015-10-11 16:46:40',1,30002377,0,0,0,0,0,0,36,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(3180,'2015-03-14 14:56:59','2015-10-11 16:46:40',1,30004213,0,1,328,182,6,0,0,126,457,1628,1980,2035,451,0,139,276,211,2820,0,0,0,0,0,0),(3181,'2015-03-14 14:56:59','2015-10-11 16:46:40',1,30002603,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,83,65),(3182,'2015-03-14 14:56:59','2015-10-11 16:46:40',1,30000471,0,0,0,0,0,0,0,0,77,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(3183,'2015-03-14 14:56:59','2015-10-11 16:46:40',1,30002000,195,0,0,0,0,0,0,0,0,0,0,0,0,16,0,0,5,0,18,32,0,0,0,2),(3184,'2015-03-14 14:56:59','2015-10-11 16:46:40',1,30000953,0,126,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,47,0,0,0,0,0,0),(3185,'2015-03-14 14:56:59','2015-10-11 16:46:40',1,30002181,0,0,0,161,64,125,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,103),(3186,'2015-03-14 14:56:59','2015-10-11 16:46:40',1,30004802,55,0,0,0,0,0,0,0,0,0,0,0,0,50,48,46,1,0,0,0,4,0,0,0),(3187,'2015-03-14 14:56:59','2015-10-11 16:46:40',1,30001747,0,176,0,6,0,0,0,0,22,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(3188,'2015-03-14 14:56:59','2015-03-14 14:56:59',1,30004010,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(3189,'2015-03-14 14:56:59','2015-10-11 16:46:40',1,30001332,0,0,0,0,0,0,24,84,0,72,46,53,38,77,90,84,78,34,63,76,63,81,82,57),(3190,'2015-03-14 14:56:59','2015-10-11 16:46:40',1,30003284,4,122,0,0,0,0,51,0,0,21,0,0,4,0,0,0,0,5,0,16,53,0,0,0),(3191,'2015-03-14 14:56:59','2015-10-11 16:46:40',1,30004773,0,0,0,0,0,0,0,0,127,15,22,46,28,0,25,4,15,36,0,17,163,57,17,7),(3192,'2015-03-14 14:56:59','2015-10-11 16:46:40',1,30004461,199,0,149,137,10,0,0,337,0,0,0,0,0,0,0,0,0,0,0,4,4,0,0,0),(3193,'2015-03-14 14:56:59','2015-10-11 16:46:40',1,30002852,0,0,0,43,0,0,0,0,25,0,0,0,0,40,0,0,0,13,0,0,0,0,0,0),(3194,'2015-03-14 14:56:59','2015-03-14 14:56:59',1,30000556,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(3195,'2015-03-14 14:56:59','2015-10-11 16:46:40',1,30000761,24,0,0,40,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(3196,'2015-03-14 14:56:59','2015-10-11 16:46:40',1,30005153,0,0,0,0,0,0,0,0,0,0,0,0,12,0,0,0,0,0,0,0,0,0,0,0),(3197,'2015-03-14 14:56:59','2015-10-11 16:46:40',1,30001754,894,390,67,805,488,488,726,270,517,357,286,353,0,53,0,27,109,0,0,0,0,138,1120,274),(3198,'2015-03-14 14:56:59','2015-10-11 16:46:40',1,30004739,0,39,3,0,0,5,0,0,0,19,0,0,0,0,0,0,0,117,3,6,5,8,0,0),(3199,'2015-03-14 14:56:59','2015-10-11 16:46:40',1,30000633,105,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(3200,'2015-03-14 14:56:59','2015-10-11 16:46:40',1,30005134,0,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,0,10,0,0,0,0,0,5),(3201,'2015-03-14 14:56:59','2015-10-11 16:46:40',1,30004901,117,46,236,126,57,18,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,122,107,0),(3202,'2015-03-14 14:56:59','2015-10-11 16:46:40',1,30002374,0,0,0,16,0,0,0,17,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(3203,'2015-03-14 14:56:59','2015-03-14 14:56:59',1,30000681,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(3204,'2015-03-14 14:56:59','2015-03-14 14:56:59',1,30001625,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(3205,'2015-03-14 14:56:59','2015-10-11 16:46:40',1,30000998,0,0,0,0,0,0,0,0,0,0,3,3,0,0,0,0,0,0,0,0,0,0,0,0),(3206,'2015-03-14 14:56:59','2015-10-11 16:46:40',1,30004369,0,0,0,0,36,50,0,126,0,402,316,124,195,295,179,139,136,147,0,132,171,123,89,0),(3207,'2015-03-14 14:56:59','2015-10-11 16:46:40',1,30000272,0,418,553,228,95,197,16,177,114,170,101,28,275,151,333,514,506,134,0,0,110,0,0,7),(3208,'2015-03-14 14:56:59','2015-10-11 16:46:40',1,30004234,0,0,0,8,9,9,0,0,0,0,9,9,0,20,3,0,0,0,0,0,40,13,9,24),(3209,'2015-03-14 14:56:59','2015-10-11 16:46:40',1,30002190,158,57,83,177,84,49,210,23,35,137,116,113,57,58,184,186,180,143,261,69,75,89,134,193),(3210,'2015-03-14 14:56:59','2015-10-11 16:46:40',1,30003558,0,40,4,13,0,0,63,139,53,23,9,10,93,18,58,21,0,61,0,15,67,0,64,78),(3211,'2015-03-14 14:56:59','2015-10-11 16:46:40',1,30003503,123,15,170,122,109,97,143,68,104,105,101,122,96,107,192,250,141,50,72,118,53,202,163,228),(3212,'2015-03-14 14:56:59','2015-10-11 16:46:40',1,30005243,58,1,39,160,174,93,231,329,188,26,82,105,15,8,65,79,38,212,75,58,123,115,299,46),(3213,'2015-03-14 14:56:59','2015-10-11 16:46:40',1,30005064,2,4,0,86,1,0,0,0,35,35,0,0,0,0,0,0,0,75,0,48,11,0,1,0),(3214,'2015-03-14 14:56:59','2015-10-11 16:46:40',1,30002570,121,24,29,80,24,17,29,25,45,45,49,55,102,32,12,30,37,25,8,54,57,82,74,15),(3215,'2015-03-14 14:56:59','2015-10-11 16:46:40',1,30000096,0,0,0,0,0,0,6,0,7,0,0,0,0,18,0,0,7,8,1,0,0,0,9,26),(3216,'2015-03-14 14:56:59','2015-10-11 16:46:40',1,30003520,23,9,5,0,18,18,2,0,0,5,0,0,94,0,21,1,0,35,36,0,0,45,0,20),(3217,'2015-03-14 14:56:59','2015-10-11 16:46:40',1,30000104,13,0,0,0,4,4,26,22,0,0,0,16,6,16,1,26,46,12,32,5,2,2,27,4),(3218,'2015-03-14 14:56:59','2015-10-11 16:46:40',1,30000122,692,70,129,323,300,201,329,235,220,180,241,149,163,162,301,243,172,123,68,153,276,230,322,257),(3219,'2015-03-14 14:56:59','2015-10-11 16:46:40',1,30003499,0,0,0,3,14,43,0,0,41,0,17,17,10,3,0,0,0,0,13,16,16,0,0,0),(3220,'2015-03-14 14:56:59','2015-10-11 16:46:40',1,30003546,73,42,242,6,50,51,52,48,51,24,26,197,6,11,38,6,8,67,0,19,3,18,55,28),(3221,'2015-03-14 14:56:59','2015-10-11 16:46:40',1,30000162,15,5,94,0,35,80,9,4,22,1,1,103,79,120,116,85,52,87,6,0,0,18,55,88),(3222,'2015-03-14 14:56:59','2015-10-11 16:46:40',1,30003576,258,117,123,194,181,171,37,94,118,311,197,276,260,230,278,285,171,14,167,34,41,79,29,206),(3223,'2015-03-14 14:56:59','2015-10-11 16:46:40',1,30000047,0,10,25,22,0,0,0,0,38,0,112,85,2,0,0,0,7,64,95,18,18,84,3,34),(3224,'2015-03-14 14:56:59','2015-10-11 16:46:40',1,30005210,0,4,0,10,0,0,0,2,18,1,2,0,0,142,0,0,55,1,0,6,7,3,16,1),(3225,'2015-03-14 14:56:59','2015-10-11 16:46:40',1,30001393,440,840,545,327,533,558,405,568,181,698,1360,969,607,586,608,654,708,543,294,502,533,943,650,1495),(3226,'2015-03-14 14:56:59','2015-10-11 16:46:40',1,30005235,32,88,114,201,239,238,74,9,79,88,115,118,230,346,122,111,395,264,46,72,49,35,184,161),(3227,'2015-03-14 14:56:59','2015-10-11 16:46:40',1,30003084,22,75,99,43,27,41,22,130,37,35,225,220,2,73,54,54,0,0,0,11,0,1,22,72),(3228,'2015-03-14 14:56:59','2015-10-11 16:46:40',1,30012505,381,254,202,129,209,250,292,202,232,257,245,175,269,255,342,237,236,372,214,207,291,186,248,114),(3229,'2015-03-14 14:56:59','2015-10-11 16:46:40',1,30002242,134,60,73,34,25,7,90,22,17,27,63,84,121,116,73,102,96,109,77,69,66,101,99,83),(3230,'2015-03-14 14:56:59','2015-10-11 16:46:40',1,30003559,3,8,21,12,0,0,5,0,8,1,0,0,0,3,0,14,28,2,0,0,0,0,0,10),(3231,'2015-03-14 14:56:59','2015-10-11 16:46:40',1,30005201,173,152,199,316,248,152,174,150,60,223,151,259,180,186,238,282,351,207,157,142,342,234,279,310),(3232,'2015-03-14 14:56:59','2015-10-11 16:46:40',1,30005230,66,214,107,63,57,117,24,88,16,92,72,111,90,318,101,124,148,137,106,89,197,105,315,89),(3233,'2015-03-14 14:56:59','2015-10-11 16:46:40',1,30004112,48,67,46,0,32,0,97,25,38,135,88,30,20,122,161,74,103,52,52,0,198,67,14,19),(3234,'2015-03-14 14:56:59','2015-10-11 16:46:40',1,30001658,385,460,330,286,346,257,559,173,289,177,404,331,308,692,1122,1187,946,714,237,248,483,234,289,330),(3235,'2015-03-14 14:56:59','2015-10-11 16:46:40',1,30002760,0,0,0,2,105,110,7,4,14,41,46,11,43,8,16,32,19,5,23,1,18,1,0,106),(3236,'2015-03-14 14:56:59','2015-10-11 16:46:40',1,30003060,0,3,6,8,0,0,0,0,0,10,1,0,0,9,6,65,65,6,84,0,27,0,0,6),(3237,'2015-03-14 14:56:59','2015-10-11 16:46:40',1,30003855,53,0,22,33,72,43,28,14,17,12,9,0,6,1,7,7,52,100,0,7,0,15,71,54),(3238,'2015-03-14 14:56:59','2015-10-11 16:46:40',1,30001388,5,53,44,8,0,64,2,6,41,9,31,0,1,0,2,100,147,0,23,5,49,0,0,65),(3239,'2015-03-14 14:56:59','2015-10-11 16:46:40',1,30004247,3,0,0,0,17,154,0,138,0,0,22,28,34,0,67,1,0,11,0,0,0,0,19,8),(3240,'2015-03-14 14:56:59','2015-10-11 16:46:40',1,30003024,66,19,50,54,72,180,57,200,82,218,140,154,31,85,117,108,113,131,143,134,142,103,59,150),(3241,'2015-03-14 14:56:59','2015-10-11 16:46:40',1,30002194,128,73,233,190,263,206,84,75,55,117,94,79,73,172,72,127,130,171,38,52,210,44,224,177),(3242,'2015-03-14 14:56:59','2015-10-11 16:46:40',1,30001722,69,19,15,18,9,67,20,27,48,13,27,27,40,44,129,93,63,79,36,3,21,29,94,17),(3243,'2015-03-14 14:56:59','2015-10-11 16:46:40',1,30045318,9,19,12,9,7,86,4,9,19,51,14,14,47,5,0,13,14,44,4,2,3,3,23,75),(3244,'2015-03-14 14:56:59','2015-10-11 16:46:40',1,30005325,47,95,81,125,147,138,66,55,102,65,53,25,87,160,155,269,242,115,54,53,135,157,233,269),(3245,'2015-03-14 14:56:59','2015-10-11 16:46:40',1,30005041,181,180,108,107,218,124,105,31,117,71,150,76,55,67,40,81,181,52,9,16,79,177,153,173),(3246,'2015-03-14 14:56:59','2015-10-11 16:46:40',1,30004235,0,3,85,0,0,0,0,0,0,14,0,0,45,0,0,0,1,0,0,0,0,36,9,0),(3247,'2015-03-14 14:56:59','2015-10-11 16:46:40',1,30003868,6,96,31,24,2,2,32,23,61,23,7,3,66,138,6,5,51,0,0,0,0,1,0,26),(3248,'2015-03-14 14:56:59','2015-10-11 16:46:40',1,30000052,0,24,6,79,47,100,108,82,85,42,3,1,71,16,17,8,8,25,75,6,0,15,37,21),(3249,'2015-03-14 14:56:59','2015-10-11 16:46:40',1,30000202,108,26,50,103,224,164,171,116,165,116,191,107,45,135,197,82,124,171,130,184,171,301,265,120),(3250,'2015-03-14 14:56:59','2015-10-11 16:46:40',1,30003444,163,0,41,11,0,24,0,79,0,85,11,8,0,0,3,2,0,17,3,209,0,4,106,22),(3251,'2015-03-14 14:56:59','2015-10-11 16:46:40',1,30003034,110,10,129,46,71,60,178,38,70,155,99,93,40,122,172,164,88,137,115,53,59,152,165,76),(3252,'2015-03-14 14:56:59','2015-10-11 16:46:40',1,30003396,100,170,317,102,146,91,358,23,121,103,90,139,156,171,228,254,180,121,123,96,5,125,73,104),(3253,'2015-03-14 14:56:59','2015-10-11 16:46:40',1,30001654,6,57,78,37,44,40,9,113,7,63,68,101,61,112,85,107,95,35,16,14,36,117,114,178),(3254,'2015-03-14 14:56:59','2015-10-11 16:46:40',1,30000140,587,434,718,735,674,542,1016,580,432,506,667,561,576,817,992,854,914,808,450,433,539,751,885,623),(3255,'2015-03-14 14:56:59','2015-10-11 16:46:40',1,30003835,32,21,15,0,0,0,7,1,70,0,0,7,0,1,8,8,0,28,8,65,15,8,54,17),(3256,'2015-03-14 14:56:59','2015-10-11 16:46:40',1,30002213,32,35,69,44,179,189,20,49,20,63,31,24,49,54,61,57,72,0,75,41,54,0,36,32),(3257,'2015-03-14 14:56:59','2015-10-11 16:46:40',1,30001182,54,0,0,0,0,0,31,0,0,156,266,479,155,472,14,253,369,94,4,8,74,634,582,208),(3258,'2015-03-14 14:56:59','2015-10-11 16:46:40',1,30001832,0,0,0,0,0,0,0,3,0,0,1,1,47,0,0,0,0,0,0,0,17,0,0,0),(3259,'2015-03-14 14:56:59','2015-10-11 16:46:40',1,30001818,0,0,0,0,0,0,2,0,0,5,0,0,0,0,0,0,0,1,0,0,0,0,0,0),(3260,'2015-03-14 14:56:59','2015-10-11 16:46:40',1,30001316,0,0,0,0,7,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(3261,'2015-03-14 14:56:59','2015-10-11 16:46:40',1,30000209,0,0,0,0,66,7,0,0,0,0,0,0,57,0,58,48,0,0,0,0,0,0,0,0),(3262,'2015-03-14 14:56:59','2015-10-11 16:46:40',1,30000443,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0),(3263,'2015-03-14 14:56:59','2015-10-11 16:46:40',1,30001027,0,0,98,0,0,0,1,0,20,0,5,5,70,0,19,19,1,0,0,0,4,0,0,0),(3264,'2015-03-14 14:56:59','2015-10-11 16:46:40',1,30004398,45,0,0,0,9,9,0,208,112,266,42,81,292,62,363,312,180,11,28,83,0,109,180,291),(3265,'2015-03-14 14:56:59','2015-10-11 16:46:40',1,30002974,227,205,158,40,150,142,58,32,83,119,91,89,153,147,164,151,234,147,14,143,148,18,158,187),(3266,'2015-03-14 14:56:59','2015-10-11 16:46:40',1,30002401,0,0,12,0,0,0,2,0,0,0,11,0,0,0,0,6,6,0,17,14,1,0,0,0),(3267,'2015-03-14 14:56:59','2015-10-11 16:46:40',1,30003403,65,98,61,0,133,41,30,27,0,75,21,0,45,0,50,89,78,75,0,0,41,89,68,63),(3268,'2015-03-14 14:56:59','2015-10-11 16:46:40',1,30002525,533,353,539,448,458,421,461,339,321,523,785,656,370,583,457,570,848,648,566,541,375,530,618,581),(3269,'2015-03-14 14:56:59','2015-10-11 16:46:40',1,30005296,43,6,13,62,27,48,14,1,87,0,1,3,5,1,7,3,8,1,0,88,179,16,116,22),(3270,'2015-03-14 14:56:59','2015-10-11 16:46:40',1,30005238,7,0,7,25,0,26,0,0,2,0,0,0,0,0,42,1,0,3,0,0,0,0,0,0),(3271,'2015-03-14 14:56:59','2015-10-11 16:46:40',1,30002986,37,27,54,135,57,9,4,0,57,2,42,33,40,83,33,8,0,15,4,47,0,81,99,59),(3272,'2015-03-14 14:56:59','2015-10-11 16:46:40',1,30004121,5,0,0,14,47,40,19,4,0,9,1,1,0,0,0,6,6,4,0,57,0,24,2,0),(3273,'2015-03-14 14:56:59','2015-10-11 16:46:40',1,30003853,0,78,37,1,14,4,12,30,5,61,12,71,63,17,0,3,6,74,5,4,6,77,83,47),(3274,'2015-03-14 14:56:59','2015-10-11 16:46:40',1,30005303,142,90,79,27,69,81,119,69,52,73,73,108,51,81,134,65,105,124,129,65,37,143,23,63),(3275,'2015-03-14 14:56:59','2015-10-11 16:46:40',1,30003538,53,14,12,9,86,86,33,0,36,33,45,58,14,0,0,1,4,112,0,0,0,21,2,2),(3276,'2015-03-14 14:56:59','2015-10-11 16:46:40',1,30044971,73,51,65,84,97,104,114,38,72,88,138,123,72,55,168,173,73,79,46,106,71,97,145,61),(3277,'2015-03-14 14:56:59','2015-10-11 16:46:40',1,30000164,1,18,4,110,12,12,2,62,0,0,0,0,0,0,34,1,1,0,3,17,4,0,4,1),(3278,'2015-03-14 14:56:59','2015-10-11 16:46:40',1,30004975,58,91,272,48,34,24,122,185,54,41,105,200,120,95,337,233,116,218,2,66,108,149,100,153),(3279,'2015-03-14 14:56:59','2015-10-11 16:46:40',1,30002637,92,101,18,105,9,42,115,44,30,121,110,97,135,52,215,252,118,35,26,63,144,52,58,26),(3280,'2015-03-14 14:56:59','2015-10-11 16:46:40',1,30003568,9,0,0,25,73,33,0,0,1,32,0,0,0,0,0,0,0,0,0,11,0,0,106,0),(3281,'2015-03-14 14:56:59','2015-10-11 16:46:40',1,30003032,97,22,99,34,13,24,146,65,51,140,145,21,8,93,73,132,139,65,48,123,71,201,195,91),(3282,'2015-03-14 14:56:59','2015-03-14 14:56:59',1,30002299,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(3283,'2015-03-14 14:56:59','2015-10-11 16:46:40',1,30004934,0,0,3,0,2,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(3284,'2015-03-14 14:56:59','2015-10-11 16:46:40',1,30000321,41,89,0,43,17,99,0,0,201,794,249,58,133,228,324,314,147,57,329,633,228,173,424,471),(3285,'2015-03-14 14:56:59','2015-10-11 16:46:40',1,30003712,0,0,0,0,0,0,0,0,37,3,114,170,63,8,36,111,138,22,160,0,0,65,121,0),(3286,'2015-03-14 14:56:59','2015-10-11 16:46:40',1,30003268,0,0,0,0,84,67,0,0,0,0,0,4,4,47,17,17,17,0,0,0,0,0,0,0),(3287,'2015-03-14 14:56:59','2015-10-11 16:46:40',1,30001988,13,0,3,0,0,3,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,2,0,0),(3288,'2015-03-14 14:56:59','2015-10-11 16:46:40',1,30004113,108,222,158,82,84,143,37,93,20,169,148,125,258,51,288,349,153,5,27,4,103,37,75,75),(3289,'2015-03-14 14:56:59','2015-10-11 16:46:40',1,30003539,58,8,52,36,12,3,239,37,1,49,134,49,50,51,4,52,50,39,116,4,24,0,0,49),(3290,'2015-03-14 14:56:59','2015-10-11 16:46:40',1,30004968,387,584,657,526,845,679,598,407,335,342,459,349,266,711,494,384,516,396,309,337,389,666,524,555),(3291,'2015-03-14 14:56:59','2015-10-11 16:46:40',1,30000046,0,56,0,71,30,8,0,22,0,0,0,0,13,0,0,0,0,20,23,0,0,0,0,27),(3292,'2015-03-14 14:56:59','2015-10-11 16:46:40',1,30002198,42,363,267,280,163,291,100,63,117,45,112,111,82,76,37,64,123,230,244,379,277,402,493,468),(3293,'2015-03-14 14:56:59','2015-10-11 16:46:40',1,30002236,0,1,0,0,10,21,0,0,0,26,62,24,0,0,0,0,0,0,0,25,0,2,0,0),(3294,'2015-03-14 14:56:59','2015-10-11 16:46:40',1,30003001,0,0,6,3,46,46,0,70,74,0,0,3,12,2,125,124,218,201,23,149,66,133,29,4),(3295,'2015-03-14 14:56:59','2015-10-11 16:46:40',1,30000079,86,13,43,57,125,175,29,323,165,108,202,376,46,104,137,225,297,40,85,161,117,307,179,80),(3296,'2015-03-14 14:56:59','2015-10-11 16:46:40',1,30001676,189,110,288,160,180,140,55,70,138,97,41,82,159,61,19,18,89,149,108,35,20,121,166,79),(3297,'2015-03-14 14:56:59','2015-10-11 16:46:40',1,30001691,6,168,21,0,45,37,30,62,3,20,99,109,11,119,52,37,56,40,14,45,8,36,81,103),(3298,'2015-03-14 14:56:59','2015-10-11 16:46:40',1,30002410,8,9,0,0,1,0,25,83,0,0,17,27,70,16,11,11,1,0,37,0,0,0,0,6),(3299,'2015-03-14 14:56:59','2015-10-11 16:46:40',1,30004153,145,5,6,180,2,0,162,57,84,45,112,119,46,8,88,50,16,10,103,8,24,70,30,46),(3300,'2015-03-14 14:56:59','2015-10-11 16:46:40',1,30002732,258,229,365,419,300,166,224,240,389,223,282,150,403,545,466,429,366,760,178,266,474,559,420,209),(3301,'2015-03-14 14:56:59','2015-10-11 16:46:40',1,30002719,10,39,36,5,6,31,18,1,32,41,0,0,0,22,21,73,68,0,38,56,1,67,88,26),(3302,'2015-03-14 14:56:59','2015-10-11 16:46:40',1,30005084,58,0,0,1,0,0,0,0,0,0,107,33,0,0,0,0,0,38,0,0,0,54,69,18),(3303,'2015-03-14 14:56:59','2015-10-11 16:46:40',1,30003563,1,83,0,0,1,24,0,0,0,7,0,15,0,3,54,49,3,4,0,2,0,75,26,9),(3304,'2015-03-14 14:56:59','2015-10-11 16:46:40',1,30005059,283,279,514,126,241,254,129,231,88,341,276,471,345,432,532,449,355,205,57,97,386,398,139,280),(3305,'2015-03-14 14:56:59','2015-10-11 16:46:40',1,30004251,108,4,84,72,65,40,127,13,4,1,7,3,5,127,2,0,0,0,4,19,93,10,7,180),(3306,'2015-03-14 14:56:59','2015-10-11 16:46:40',1,30002665,216,293,233,138,139,381,138,210,70,115,197,283,139,240,108,208,210,179,59,90,217,81,284,214),(3307,'2015-03-14 14:56:59','2015-10-11 16:46:40',1,30003482,54,72,97,56,57,32,8,4,36,13,53,51,23,62,43,33,52,34,91,8,28,28,90,42),(3308,'2015-03-14 14:56:59','2015-10-11 16:46:40',1,30000120,164,113,100,113,165,239,123,209,66,206,94,82,92,208,259,243,166,337,119,83,94,117,81,384),(3309,'2015-03-14 14:56:59','2015-10-11 16:46:40',1,30002255,0,2,30,11,33,40,0,129,0,5,50,16,0,0,0,0,0,0,9,88,59,18,0,12),(3310,'2015-03-14 14:56:59','2015-03-14 14:56:59',1,30005133,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(3311,'2015-03-14 14:56:59','2015-10-11 16:46:40',1,30000803,49,0,33,6,0,0,0,13,0,0,0,0,0,0,0,0,14,0,0,0,0,0,20,44),(3312,'2015-03-14 14:56:59','2015-10-11 16:46:40',1,30004899,19,57,0,0,0,0,0,0,0,0,0,0,0,4,317,175,1,0,0,0,0,0,0,0),(3313,'2015-03-14 14:56:59','2015-10-11 16:46:40',1,30000851,0,106,11,0,99,67,0,0,0,17,289,334,195,0,0,0,0,2,47,329,124,10,0,158),(3314,'2015-03-14 14:56:59','2015-10-11 16:46:40',1,30004743,1,191,1560,804,891,625,559,0,0,0,0,56,124,25,61,78,22,34,5,148,221,216,359,76),(3315,'2015-03-14 14:56:59','2015-10-11 16:46:40',1,30004064,0,15,90,292,46,108,6,4,0,0,0,0,0,0,0,0,0,0,0,0,0,211,0,0),(3316,'2015-03-14 14:56:59','2015-10-11 16:46:40',1,30004183,163,8,105,1350,1641,481,750,0,1906,0,0,0,0,0,0,0,0,0,0,0,1,115,92,3),(3317,'2015-03-14 14:56:59','2015-03-14 14:56:59',1,30003962,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(3318,'2015-03-14 14:56:59','2015-10-11 16:46:40',1,30000529,0,0,0,0,0,0,0,92,55,0,62,159,0,0,0,0,0,0,0,0,0,0,0,12),(3319,'2015-03-14 14:56:59','2015-10-11 16:46:40',1,30000539,0,0,0,0,0,0,0,0,5,0,0,0,0,0,0,0,0,0,0,0,18,8,0,0),(3320,'2015-03-14 14:56:59','2015-10-11 16:46:40',1,30001913,0,7,3,3,0,0,0,0,0,0,4,4,0,71,2,1,0,124,0,0,0,1,47,1),(3321,'2015-03-14 14:56:59','2015-10-11 16:46:40',1,30004913,207,101,443,263,0,0,334,15,125,5,7,4,0,0,0,17,24,143,0,0,0,208,29,19),(3322,'2015-03-14 14:56:59','2015-10-11 16:46:40',1,30000580,59,25,20,31,116,49,0,0,0,43,0,0,0,9,255,218,84,233,37,49,138,0,3,47),(3323,'2015-03-14 14:56:59','2015-10-11 16:46:40',1,30004618,6,24,47,31,0,0,41,27,6,75,80,57,17,28,23,145,220,38,35,18,40,57,0,1),(3324,'2015-03-14 14:56:59','2015-10-11 16:46:40',1,30002840,14,0,0,0,0,0,32,0,20,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(3325,'2015-03-14 14:56:59','2015-10-11 16:46:40',1,30000270,105,174,10,0,0,0,0,415,41,0,0,0,0,0,0,0,0,30,0,0,426,0,0,0),(3326,'2015-03-14 14:56:59','2015-10-11 16:46:40',1,30004765,0,0,0,0,0,0,0,202,0,82,266,103,114,97,0,138,360,234,0,139,0,29,213,0),(3327,'2015-03-14 14:56:59','2015-10-11 16:46:40',1,30002359,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,70,13,0,0,0,0),(3328,'2015-03-14 14:56:59','2015-10-11 16:46:40',1,30004223,0,0,0,0,0,0,0,79,288,0,0,0,0,0,0,3,215,266,0,0,0,0,0,0),(3329,'2015-03-14 14:56:59','2015-10-11 16:46:40',1,30003828,1,4,9,17,122,138,72,1,1,3,0,0,0,2,13,32,36,48,2,65,23,0,9,14),(3330,'2015-03-14 14:56:59','2015-10-11 16:46:40',1,30000801,529,164,42,795,716,419,95,220,530,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(3331,'2015-03-14 14:56:59','2015-10-11 16:46:40',1,30004136,25,0,0,84,15,10,0,0,1,0,3,6,89,0,0,0,0,79,0,16,0,2,25,1),(3332,'2015-03-14 14:56:59','2015-10-11 16:46:40',1,30001720,0,6,0,0,0,0,0,0,1,0,22,3,0,8,2,41,98,0,62,12,17,90,29,6),(3333,'2015-03-14 14:56:59','2015-10-11 16:46:40',1,30000042,0,27,0,0,261,61,0,9,0,0,0,0,6,6,5,10,9,0,41,102,0,0,5,4),(3334,'2015-03-14 14:56:59','2015-10-11 16:46:40',1,30000031,0,48,57,81,23,21,20,27,51,40,46,35,100,16,77,43,51,108,57,47,45,29,44,30),(3335,'2015-03-14 14:56:59','2015-10-11 16:46:40',1,30003876,10,39,46,185,43,11,14,170,0,159,1,1,95,54,73,18,16,215,43,153,85,30,98,7),(3336,'2015-03-14 14:56:59','2015-10-11 16:46:40',1,30003814,20,4,0,42,0,0,1,20,176,66,0,5,6,408,359,316,364,52,0,0,0,0,18,127),(3337,'2015-03-14 14:56:59','2015-10-11 16:46:40',1,30003881,79,8,63,44,82,8,57,46,172,1,10,10,11,24,22,31,28,53,0,21,31,66,40,165),(3338,'2015-03-14 14:56:59','2015-10-11 16:46:40',1,30005037,127,164,2,76,124,44,147,187,100,96,176,181,121,153,91,175,132,20,2,106,106,129,134,102),(3339,'2015-03-14 14:56:59','2015-10-11 16:46:40',1,30003061,62,35,112,5,14,17,72,41,23,255,1,3,4,14,4,8,10,80,129,10,17,58,20,9),(3340,'2015-03-14 14:56:59','2015-10-11 16:46:40',1,30003011,125,152,118,55,160,284,151,228,229,275,437,314,280,274,279,366,354,358,159,320,362,307,218,619),(3341,'2015-03-14 14:56:59','2015-10-11 16:46:40',1,30003893,0,142,68,4,36,32,181,6,0,50,239,160,43,57,46,30,72,26,0,69,8,5,33,49),(3342,'2015-03-14 14:56:59','2015-10-11 16:46:40',1,30001554,25,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,60,59,0,0,0),(3343,'2015-03-14 14:56:59','2015-10-11 16:46:40',1,30003443,46,44,30,48,57,57,14,28,67,34,86,51,251,33,25,19,15,49,122,25,2,63,148,44),(3344,'2015-03-14 14:56:59','2015-10-11 16:46:40',1,30003021,42,65,86,110,91,91,28,92,155,132,145,172,124,138,99,71,67,130,57,113,146,102,85,55),(3345,'2015-03-14 14:56:59','2015-10-11 16:46:40',1,30002819,195,299,225,497,315,211,115,77,163,58,93,112,111,464,372,365,388,243,126,246,415,220,381,644),(3346,'2015-03-14 14:56:59','2015-10-11 16:46:40',1,30002257,95,10,0,34,95,29,3,71,12,3,45,60,8,176,0,14,68,30,26,21,113,195,116,34),(3347,'2015-03-14 14:56:59','2015-10-11 16:46:40',1,30001715,81,12,37,66,81,53,44,39,137,76,65,36,50,43,0,0,15,16,2,48,42,52,44,3),(3348,'2015-03-14 14:56:59','2015-10-11 16:46:40',1,30005263,1,54,4,0,0,6,0,22,4,0,8,9,0,118,196,107,1,33,3,0,0,0,0,0),(3349,'2015-03-14 14:56:59','2015-10-11 16:46:40',1,30004702,1022,334,202,35,361,269,431,1210,474,218,427,224,173,45,36,37,20,47,0,0,0,0,47,52),(3350,'2015-03-14 14:56:59','2015-10-11 16:46:40',1,30003699,660,22,269,65,36,0,447,268,145,286,40,143,139,197,91,140,138,388,0,0,0,26,0,3),(3351,'2015-03-14 14:56:59','2015-10-11 16:46:40',1,30002035,0,0,476,92,336,486,5,32,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(3352,'2015-03-14 14:56:59','2015-10-11 16:46:40',1,30000280,0,4,0,56,0,76,0,0,0,0,37,85,0,0,0,0,0,0,0,0,0,0,0,0),(3353,'2015-03-14 14:56:59','2015-10-11 16:46:40',1,30001278,118,267,54,46,281,294,139,221,345,165,273,106,386,73,237,224,258,633,109,35,109,206,216,694),(3354,'2015-03-14 14:56:59','2015-10-11 16:46:40',1,30002421,34,0,0,0,0,0,0,0,0,0,5,71,105,0,0,0,0,16,0,64,43,25,102,23),(3355,'2015-03-14 14:56:59','2015-10-11 16:46:40',1,30005155,0,0,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(3356,'2015-03-14 14:56:59','2015-03-14 14:56:59',1,30004861,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(3357,'2015-03-14 14:56:59','2015-10-11 16:46:40',1,30003153,39,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,4),(3358,'2015-03-14 14:56:59','2015-10-11 16:46:40',1,30000774,60,0,0,0,24,0,0,0,0,0,0,0,0,0,0,121,122,0,0,0,0,0,0,0),(3359,'2015-03-14 14:56:59','2015-10-11 16:46:40',1,30000864,0,6,85,0,89,90,282,25,176,0,0,0,0,99,0,0,0,7,0,0,0,0,49,59),(3360,'2015-03-14 14:56:59','2015-10-11 16:46:40',1,30004464,0,152,0,270,260,392,29,704,301,0,0,0,0,0,0,0,0,0,0,0,0,0,91,0),(3361,'2015-03-14 14:56:59','2015-10-11 16:46:40',1,30004519,0,0,21,0,0,0,3,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(3362,'2015-03-14 14:56:59','2015-10-11 16:46:40',1,30002028,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,3,0,0,17,0,0,0),(3363,'2015-03-14 14:56:59','2015-10-11 16:46:40',1,30003197,0,0,0,0,3,3,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(3364,'2015-03-14 14:56:59','2015-10-11 16:46:40',1,30005189,0,0,0,0,0,0,17,0,0,0,0,0,0,0,0,0,0,0,0,0,2,0,0,0),(3365,'2015-03-14 14:56:59','2015-10-11 16:46:40',1,30003056,204,63,49,192,179,34,22,0,29,185,252,183,71,164,6,17,52,99,28,15,60,36,76,48),(3366,'2015-03-14 14:56:59','2015-10-11 16:46:40',1,30005299,6,11,100,18,35,26,28,11,20,0,11,26,41,24,15,42,33,98,16,0,10,1,21,24),(3367,'2015-03-14 14:56:59','2015-10-11 16:46:40',1,30004129,117,96,191,68,39,49,98,22,129,152,116,51,82,87,119,71,97,205,198,98,92,147,83,110),(3368,'2015-03-14 14:56:59','2015-10-11 16:46:40',1,30002206,36,21,26,6,24,45,17,31,29,46,0,0,4,0,52,0,0,0,46,0,27,87,106,14),(3369,'2015-03-14 14:56:59','2015-10-11 16:46:40',1,30005295,16,28,8,0,35,22,3,3,112,17,12,6,0,136,0,1,4,37,3,5,29,27,24,16),(3370,'2015-03-14 14:56:59','2015-10-11 16:46:40',1,30004092,106,306,143,215,82,26,280,100,78,186,360,329,218,265,97,239,392,150,84,78,96,120,315,250),(3371,'2015-03-14 14:56:59','2015-10-11 16:46:40',1,30003526,24,14,24,47,39,40,72,7,99,39,104,56,98,29,8,10,26,51,35,0,28,37,56,130),(3372,'2015-03-14 14:56:59','2015-10-11 16:46:40',1,30045334,23,4,0,4,3,8,21,11,4,98,16,8,16,15,14,22,14,123,1,43,26,1,2,132),(3373,'2015-03-14 14:56:59','2015-10-11 16:46:40',1,30002394,0,101,21,23,79,25,0,96,2,44,15,0,99,0,16,65,60,0,0,0,4,38,123,6),(3374,'2015-03-14 14:56:59','2015-10-11 16:46:40',1,30002780,184,244,333,345,148,169,201,72,98,195,177,151,262,251,338,249,369,149,129,264,278,326,276,258),(3375,'2015-03-14 14:56:59','2015-10-11 16:46:40',1,30001213,0,0,0,119,24,0,0,0,0,12,0,13,0,15,0,0,0,1,4,2,1,0,0,0),(3376,'2015-03-14 14:56:59','2015-10-11 16:46:40',1,30003755,0,0,0,0,30,0,0,0,0,0,66,66,0,0,0,0,0,0,0,0,0,0,1,11),(3377,'2015-03-14 14:56:59','2015-10-11 16:46:40',1,30004966,54,1115,451,352,1597,1780,292,2417,1542,223,1519,1700,1460,516,418,287,361,1720,229,265,126,355,756,494),(3378,'2015-03-14 14:56:59','2015-10-11 16:46:40',1,30000546,0,0,0,0,0,8,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(3379,'2015-03-14 14:56:59','2015-10-11 16:46:40',1,30002913,134,1780,338,445,1100,941,616,457,172,391,981,818,924,956,459,439,1033,1010,436,826,1069,133,1020,1140),(3380,'2015-03-14 14:56:59','2015-10-11 16:46:40',1,30003318,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,21,0),(3381,'2015-03-14 14:56:59','2015-10-11 16:46:40',1,30000232,76,356,48,506,303,302,181,541,649,0,0,0,0,0,98,261,258,0,0,0,0,0,187,0),(3382,'2015-03-14 14:56:59','2015-10-11 16:46:40',1,30001202,0,0,0,0,0,0,0,0,0,33,102,16,27,3,30,0,42,110,0,0,0,0,0,0),(3383,'2015-03-14 14:56:59','2015-10-11 16:46:40',1,30003022,1,58,158,66,61,84,44,28,0,5,25,21,0,5,0,31,36,28,6,73,10,0,0,117),(3384,'2015-03-14 14:56:59','2015-10-11 16:46:40',1,30003075,105,40,59,233,78,3,54,134,23,123,35,173,76,30,158,117,7,15,26,94,113,159,182,20),(3385,'2015-03-14 14:56:59','2015-10-11 16:46:40',1,30002940,148,73,0,0,0,0,24,113,78,0,12,13,36,0,0,0,23,186,42,49,145,173,10,224),(3386,'2015-03-14 14:56:59','2015-10-11 16:46:40',1,30003185,0,0,97,0,0,0,82,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(3387,'2015-03-14 14:56:59','2015-10-11 16:46:40',1,30003659,0,22,36,141,46,39,0,0,127,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(3388,'2015-03-14 14:56:59','2015-03-14 14:56:59',1,30000405,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(3389,'2015-03-14 14:56:59','2015-10-11 16:46:40',1,30001309,0,0,1,0,0,0,0,62,0,41,72,86,0,36,0,0,0,0,25,0,0,0,0,0),(3390,'2015-03-14 14:56:59','2015-10-11 16:46:40',1,30000236,0,1020,779,720,0,102,849,1320,0,0,0,0,0,0,0,5,6,77,299,0,0,1,331,158),(3391,'2015-03-14 14:56:59','2015-10-11 16:46:40',1,30000915,0,4,0,0,0,0,35,0,10,0,0,0,0,0,4,9,5,12,0,3,28,31,81,4),(3392,'2015-03-14 14:56:59','2015-10-11 16:46:40',1,30002612,0,0,0,127,0,0,96,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(3393,'2015-03-14 14:56:59','2015-10-11 16:46:40',1,30001209,182,138,33,93,67,27,0,40,43,119,8,6,8,60,97,173,193,47,225,122,215,213,125,106),(3394,'2015-03-14 14:56:59','2015-10-11 16:46:40',1,30004762,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,30,0),(3395,'2015-03-14 14:56:59','2015-03-14 14:56:59',1,30000401,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(3396,'2015-03-14 14:56:59','2015-03-14 14:56:59',1,30002583,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(3397,'2015-03-14 14:56:59','2015-10-11 16:46:40',1,30000904,0,16,0,0,48,71,0,0,0,7,0,0,0,0,0,0,0,0,0,16,0,0,0,66),(3398,'2015-03-14 14:56:59','2015-03-14 14:56:59',1,30000348,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(3399,'2015-03-14 14:56:59','2015-10-11 16:46:40',1,30000862,0,0,0,0,0,0,66,0,0,0,0,0,0,0,0,0,0,41,0,0,0,87,0,0),(3400,'2015-03-14 14:56:59','2015-03-14 14:56:59',1,30001489,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(3401,'2015-03-14 14:56:59','2015-10-11 16:46:40',1,30001974,1022,324,103,435,147,0,318,161,158,0,0,0,0,0,0,4,50,0,0,0,0,0,0,0),(3402,'2015-03-14 14:56:59','2015-10-11 16:46:40',1,30001060,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,93,0,0,0),(3403,'2015-03-14 14:56:59','2015-10-11 16:46:40',1,30002492,262,127,233,191,100,3,465,0,45,59,144,36,0,0,0,0,0,0,30,0,0,0,0,0),(3404,'2015-03-14 14:56:59','2015-10-11 16:46:40',1,30000215,122,75,14,0,0,6,154,26,3,0,0,0,0,0,206,141,115,28,0,0,0,0,0,41),(3405,'2015-03-14 14:56:59','2015-10-11 16:46:40',1,30001827,132,660,90,221,302,318,448,227,699,186,45,824,1740,158,885,197,119,400,0,0,0,294,373,183),(3406,'2015-03-14 14:56:59','2015-03-14 14:56:59',1,30002820,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(3407,'2015-03-14 14:56:59','2015-10-11 16:46:40',1,30004011,0,29,0,0,0,0,0,0,0,0,0,0,0,0,0,0,50,0,0,0,0,0,0,0),(3408,'2015-03-14 14:56:59','2015-10-11 16:46:40',1,30000824,0,0,0,0,0,0,0,0,0,0,0,0,0,0,51,16,0,0,0,0,0,0,0,0),(3409,'2015-03-14 14:56:59','2015-03-14 14:56:59',1,30001549,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(3410,'2015-03-14 14:56:59','2015-10-11 16:46:40',1,30001267,0,0,0,0,0,0,2,0,0,4,0,0,0,0,0,0,0,0,85,0,0,0,0,0),(3411,'2015-03-14 14:56:59','2015-10-11 16:46:40',1,30000999,0,0,0,0,0,0,7,0,0,3,4,5,4,0,0,0,0,0,0,0,53,10,0,0),(3412,'2015-03-14 14:56:59','2015-10-11 16:46:40',1,30003763,55,95,208,130,122,157,141,0,62,132,164,273,138,118,101,36,7,91,0,121,183,29,152,175),(3413,'2015-03-14 14:56:59','2015-03-14 14:56:59',1,30002341,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(3414,'2015-03-14 14:56:59','2015-10-11 16:46:40',1,30002918,0,67,200,14,0,68,1,127,0,447,375,216,125,449,426,618,754,454,204,547,307,0,174,263),(3415,'2015-03-14 14:56:59','2015-03-14 14:56:59',1,30001062,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(3416,'2015-03-14 14:56:59','2015-03-14 14:56:59',1,30002309,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(3417,'2015-03-14 14:56:59','2015-10-11 16:46:40',1,30001302,0,0,0,16,0,0,61,0,0,59,0,0,0,3,0,0,0,15,0,0,0,0,0,0),(3418,'2015-03-14 14:56:59','2015-10-11 16:46:40',1,30004580,0,32,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(3419,'2015-03-14 14:56:59','2015-10-11 16:46:40',1,30002945,180,247,0,97,53,22,95,38,0,0,0,0,52,0,0,0,58,0,0,0,0,0,60,38),(3420,'2015-03-14 14:56:59','2015-10-11 16:46:40',1,30000669,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,47,0,0),(3421,'2015-03-14 14:56:59','2015-10-11 16:46:40',1,30001277,157,98,96,24,15,62,78,129,180,32,116,164,95,99,49,88,133,155,12,29,59,73,42,174),(3422,'2015-03-14 14:56:59','2015-10-11 16:46:40',1,30001280,0,0,0,0,0,0,0,0,0,21,28,2,0,0,0,0,0,0,22,0,0,0,0,0),(3423,'2015-03-14 14:56:59','2015-10-11 16:46:40',1,30001126,0,0,0,0,4,1,0,0,21,0,0,0,0,0,47,147,113,125,0,0,0,0,72,100),(3424,'2015-03-14 14:56:59','2015-10-11 16:46:40',1,30000811,464,468,317,606,593,425,236,243,12,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(3425,'2015-03-14 14:56:59','2015-10-11 16:46:40',1,30000841,144,0,0,0,0,0,0,1,0,74,186,90,122,0,95,73,0,9,0,0,0,0,0,29),(3426,'2015-03-14 14:56:59','2015-10-11 16:46:40',1,30004783,0,0,0,0,0,0,3,0,0,0,0,4,95,0,16,132,459,108,25,0,0,0,92,450),(3427,'2015-03-14 14:56:59','2015-10-11 16:46:40',1,30003767,3,52,9,14,9,0,22,0,0,0,0,0,8,15,0,0,0,126,0,10,4,118,0,5),(3428,'2015-03-14 14:56:59','2015-10-11 16:46:40',1,30002258,27,5,6,0,90,10,13,23,61,42,83,58,72,49,3,0,40,20,16,10,1,21,41,174),(3429,'2015-03-14 14:56:59','2015-10-11 16:46:40',1,30002995,0,36,48,62,178,227,16,26,12,78,179,112,96,11,92,59,21,116,20,114,64,40,70,66),(3430,'2015-03-14 14:56:59','2015-10-11 16:46:40',1,30001651,15,24,25,78,39,1,90,33,117,33,75,88,48,46,89,111,67,27,69,104,45,90,120,88),(3431,'2015-03-14 14:56:59','2015-10-11 16:46:40',1,30001702,72,132,24,63,70,73,19,53,14,70,43,67,96,86,63,57,60,140,27,9,58,217,117,21),(3432,'2015-03-14 14:56:59','2015-10-11 16:46:40',1,30004300,0,56,1,0,15,36,0,2,0,0,2,20,23,22,0,0,0,0,0,42,16,0,0,0),(3433,'2015-03-14 14:56:59','2015-10-11 16:46:40',1,30002807,27,19,7,26,5,6,12,4,57,9,8,8,24,14,8,13,23,11,11,7,8,11,65,48),(3434,'2015-03-14 14:56:59','2015-10-11 16:46:40',1,30003475,101,30,5,6,79,0,22,12,5,24,19,17,6,11,6,8,11,65,0,11,11,3,15,31),(3435,'2015-03-14 14:56:59','2015-10-11 16:46:40',1,30005069,75,7,95,27,45,9,0,0,0,10,13,14,71,39,159,181,49,46,43,119,158,17,29,92),(3436,'2015-03-14 14:56:59','2015-10-11 16:46:40',1,30003922,0,7,57,10,0,6,0,0,0,2,5,0,0,21,21,0,0,0,21,41,36,20,0,0),(3437,'2015-03-14 14:56:59','2015-10-11 16:46:40',1,30005045,174,182,160,19,223,43,158,17,104,182,315,378,127,284,357,323,308,183,258,311,530,233,117,371),(3438,'2015-03-14 14:56:59','2015-10-11 16:46:40',1,30005242,66,0,0,47,4,25,9,0,2,0,0,0,0,0,15,0,27,0,0,0,3,0,0,0),(3439,'2015-03-14 14:56:59','2015-10-11 16:46:40',1,30000072,0,0,15,97,61,62,0,0,0,0,68,21,0,39,1,33,32,0,0,5,40,30,0,5),(3440,'2015-03-14 14:56:59','2015-10-11 16:46:40',1,30002988,263,7,330,88,25,176,110,95,32,191,119,122,73,77,245,197,151,4,389,184,53,205,183,50),(3441,'2015-03-14 14:56:59','2015-10-11 16:46:40',1,30003936,0,0,0,29,0,0,13,1,73,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(3442,'2015-03-14 14:56:59','2015-10-11 16:46:40',1,30005043,69,58,160,150,266,197,26,71,86,102,96,112,158,26,98,92,84,171,24,228,156,97,68,63),(3443,'2015-03-14 14:56:59','2015-10-11 16:46:40',1,30003496,336,1080,131,178,307,282,288,402,117,114,223,248,268,137,372,487,476,535,25,115,318,550,403,444),(3444,'2015-03-14 14:56:59','2015-10-11 16:46:40',1,30002068,762,646,934,942,723,588,399,387,539,932,1191,1218,759,1205,1700,1479,1378,1740,866,1699,1920,2618,2716,2719),(3445,'2015-03-14 14:56:59','2015-10-11 16:46:40',1,30004280,0,0,8,14,0,0,26,77,13,1,33,83,0,0,0,10,28,64,0,0,8,14,1,75),(3446,'2015-03-14 14:56:59','2015-10-11 16:46:40',1,30002262,139,37,48,145,241,137,157,101,27,254,74,52,55,279,351,382,219,21,220,62,201,104,233,173),(3447,'2015-03-14 14:56:59','2015-10-11 16:46:40',1,30001445,92,0,0,6,48,48,13,0,78,74,61,55,127,0,14,14,1,3,0,0,14,181,5,30),(3448,'2015-03-14 14:56:59','2015-10-11 16:46:40',1,30003534,0,16,5,11,0,0,23,1,8,0,56,30,93,1,0,0,14,0,0,20,0,0,0,56),(3449,'2015-03-14 14:56:59','2015-10-11 16:46:40',1,30003923,39,4,17,0,0,4,0,5,39,0,0,0,0,0,0,0,0,4,0,0,2,0,6,0),(3450,'2015-03-14 14:56:59','2015-10-11 16:46:40',1,30001413,422,104,238,380,242,337,292,99,134,84,191,368,246,268,287,296,414,317,226,268,457,172,472,425),(3451,'2015-03-14 14:56:59','2015-10-11 16:46:40',1,30001438,26,68,38,53,15,11,51,0,92,0,28,51,70,48,11,14,77,0,15,0,0,45,52,96),(3452,'2015-03-14 14:56:59','2015-10-11 16:46:40',1,30002202,87,322,170,248,238,270,21,154,456,335,314,221,376,234,449,390,350,870,171,248,807,370,698,493),(3453,'2015-03-14 14:56:59','2015-10-11 16:46:40',1,30005207,24,2,0,6,0,0,0,6,1,0,9,9,6,21,49,11,10,23,1,41,0,3,3,1),(3454,'2015-03-14 14:56:59','2015-10-11 16:46:40',1,30005054,74,2,22,10,14,67,50,0,0,47,56,77,127,134,41,36,57,88,36,34,122,131,344,43),(3455,'2015-03-14 14:56:59','2015-10-11 16:46:40',1,30001683,0,23,968,464,187,430,0,0,0,53,30,69,54,127,22,22,0,2,61,38,13,37,15,2),(3456,'2015-03-14 14:56:59','2015-10-11 16:46:40',1,30005289,75,116,100,17,19,16,46,143,94,51,77,68,80,82,348,149,110,160,36,89,46,111,160,259),(3457,'2015-03-14 14:56:59','2015-10-11 16:46:40',1,30002671,86,113,66,107,218,135,36,70,109,234,155,144,26,232,135,107,70,216,57,67,57,211,98,71),(3458,'2015-03-14 14:56:59','2015-10-11 16:46:40',1,30000016,0,0,0,0,37,0,0,8,0,0,0,26,0,0,0,0,0,0,42,0,9,9,0,0),(3459,'2015-03-14 14:56:59','2015-10-11 16:46:40',1,30000465,195,313,44,125,120,81,64,106,295,133,1,0,135,234,321,377,170,0,0,0,0,0,0,0),(3460,'2015-03-14 14:56:59','2015-10-11 16:46:40',1,30001063,0,0,0,0,0,0,0,0,0,0,0,0,60,0,0,0,0,0,0,0,0,0,0,0),(3461,'2015-03-14 14:56:59','2015-10-11 16:46:40',1,30002433,0,0,0,4,0,0,0,0,0,0,0,0,0,0,21,0,0,154,0,0,0,0,72,1),(3462,'2015-03-14 14:56:59','2015-10-11 16:46:40',1,30001117,249,22,0,145,63,32,4,102,70,253,242,73,343,111,191,110,148,187,201,361,39,241,108,474),(3463,'2015-03-14 14:56:59','2015-10-11 16:46:40',1,30002910,568,1480,440,429,656,595,560,0,149,320,425,147,143,420,790,1056,834,1220,878,637,330,521,713,1014),(3464,'2015-03-14 14:56:59','2015-10-11 16:46:40',1,30003616,0,0,1,0,0,0,0,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(3465,'2015-03-14 14:56:59','2015-10-11 16:46:40',1,30000212,0,0,0,0,0,0,66,0,0,0,0,0,0,24,0,0,7,0,0,4,4,0,0,0),(3466,'2015-03-14 14:56:59','2015-10-11 16:46:40',1,30002867,0,0,0,0,0,0,0,0,0,7,7,15,17,2,25,190,195,0,0,0,0,90,168,10),(3467,'2015-03-14 14:56:59','2015-10-11 16:46:40',1,30003186,0,0,0,0,0,0,0,0,0,0,0,0,0,0,85,26,0,0,121,0,0,0,0,0),(3468,'2015-03-14 14:56:59','2015-10-11 16:46:40',1,30004609,0,5,0,0,0,0,1,292,195,0,0,0,0,0,0,0,0,0,0,0,0,13,0,29),(3469,'2015-03-14 14:56:59','2015-10-11 16:46:40',1,30003980,0,0,0,0,0,0,0,0,0,0,16,16,0,0,0,59,59,0,0,0,0,0,0,0),(3470,'2015-03-14 14:56:59','2015-10-11 16:46:40',1,30000917,0,0,112,0,0,0,0,0,0,0,0,0,0,0,0,0,2,0,0,0,0,0,0,0),(3471,'2015-03-14 14:56:59','2015-10-11 16:46:40',1,30005031,35,0,0,0,56,0,0,0,8,40,0,0,0,0,30,60,91,4,0,133,0,43,0,0),(3472,'2015-03-14 14:56:59','2015-10-11 16:46:40',1,30004089,139,13,22,1,15,98,59,63,256,10,49,52,165,23,141,96,6,56,8,11,161,50,105,89),(3473,'2015-03-14 14:56:59','2015-10-11 16:46:40',1,30004308,67,60,30,48,42,34,46,12,111,0,95,139,41,10,0,0,24,0,1,0,0,98,95,79),(3474,'2015-03-14 14:56:59','2015-10-11 16:46:40',1,30003929,0,0,60,0,0,0,0,27,17,0,0,0,0,19,0,0,0,0,1,0,0,0,0,0),(3475,'2015-03-14 14:56:59','2015-10-11 16:46:40',1,30003378,49,14,44,28,1,14,169,21,79,134,53,49,111,112,17,20,105,97,23,108,2,118,92,199),(3476,'2015-03-14 14:56:59','2015-10-11 16:46:40',1,30005058,150,61,262,74,158,138,52,117,75,23,109,86,71,18,110,91,154,113,0,39,131,67,38,91),(3477,'2015-03-14 14:56:59','2015-10-11 16:46:40',1,30004383,62,162,35,16,54,102,155,116,201,0,117,0,83,68,0,0,0,0,0,0,0,0,0,0),(3478,'2015-03-14 14:56:59','2015-10-11 16:46:40',1,30001695,242,114,27,128,94,70,41,45,1,186,354,328,244,215,293,268,458,564,20,150,380,645,471,1133),(3479,'2015-03-14 14:56:59','2015-10-11 16:46:40',1,30003423,290,45,143,119,90,172,159,17,178,65,152,175,160,114,40,40,108,50,89,99,44,122,29,146),(3480,'2015-03-14 14:56:59','2015-10-11 16:46:40',1,30004267,11,0,89,0,34,0,0,0,222,0,0,0,0,0,0,0,0,10,1,0,0,0,0,78),(3481,'2015-03-14 14:56:59','2015-10-11 16:46:40',1,30045344,89,0,0,1,80,54,2,7,15,1,1,1,1,92,8,7,17,95,1,19,0,25,36,6),(3482,'2015-03-14 14:56:59','2015-10-11 16:46:40',1,30002228,24,53,9,26,35,79,7,41,6,26,7,31,86,48,14,41,38,0,5,4,33,132,62,16),(3483,'2015-03-14 14:56:59','2015-10-11 16:46:40',1,30003073,179,94,223,57,137,120,37,66,1,2,128,200,141,164,22,26,105,13,68,12,47,27,197,51),(3484,'2015-03-14 14:56:59','2015-10-11 16:46:40',1,30001826,0,0,1,0,0,0,202,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,1),(3485,'2015-03-14 14:56:59','2015-10-11 16:46:40',1,30000145,319,194,293,456,199,226,144,315,311,338,504,423,395,281,301,405,490,378,278,388,348,273,420,379),(3486,'2015-03-14 14:56:59','2015-10-11 16:46:40',1,30005286,0,8,0,4,0,0,0,9,0,0,0,0,0,0,0,0,9,0,0,0,9,18,29,0),(3487,'2015-03-14 14:56:59','2015-10-11 16:46:40',1,30002650,13,70,37,28,64,94,119,45,59,199,30,30,71,123,128,164,189,149,37,69,112,101,54,80),(3488,'2015-03-14 14:56:59','2015-10-11 16:46:40',1,30003859,57,13,1,0,0,0,62,55,0,64,7,7,9,13,29,8,14,124,3,14,39,12,4,47),(3489,'2015-03-14 14:56:59','2015-10-11 16:46:40',1,30002246,0,0,0,0,0,0,0,0,0,40,0,5,1,0,1,1,0,0,0,0,0,5,0,4),(3490,'2015-03-14 14:56:59','2015-10-11 16:46:40',1,30000230,0,0,1,97,0,0,5,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(3491,'2015-03-14 14:56:59','2015-10-11 16:46:40',1,30003325,3,57,0,49,0,0,0,0,8,8,1,0,0,19,0,0,0,0,0,6,0,0,1,3),(3492,'2015-03-14 14:56:59','2015-10-11 16:46:40',1,30000650,1,0,48,27,151,213,2,0,10,97,55,91,217,29,2,152,349,298,13,547,342,274,25,198),(3493,'2015-03-14 14:56:59','2015-10-11 16:46:40',1,30005170,437,14,118,0,0,17,28,110,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(3494,'2015-03-14 14:56:59','2015-10-11 16:46:40',1,30001239,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,11,10,0,0,0),(3495,'2015-03-14 14:56:59','2015-10-11 16:46:40',1,30003117,615,73,0,0,0,24,0,0,66,0,0,0,0,0,0,0,0,0,0,4,163,0,0,0),(3496,'2015-03-14 14:56:59','2015-10-11 16:46:40',1,30001789,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,58,0,0,0,0,0,0,0),(3497,'2015-03-14 14:56:59','2015-10-11 16:46:40',1,30002185,18,39,0,182,206,172,146,339,435,366,137,118,0,434,4,107,129,300,79,13,7,225,89,27),(3498,'2015-03-14 14:56:59','2015-10-11 16:46:40',1,30003504,101,78,118,138,190,202,36,161,105,82,164,134,73,180,111,153,154,60,113,37,98,130,113,83),(3499,'2015-03-14 14:56:59','2015-10-11 16:46:40',1,30005047,286,47,187,125,5,3,178,84,26,123,274,174,50,131,252,155,105,219,79,70,93,101,296,115),(3500,'2015-03-14 14:56:59','2015-10-11 16:46:40',1,30003580,96,96,1056,687,189,13,147,10,70,51,29,125,74,31,87,214,197,14,159,28,48,57,107,15),(3501,'2015-03-14 14:56:59','2015-10-11 16:46:40',1,30003006,0,0,0,26,124,53,0,177,0,0,0,0,0,105,24,46,22,92,106,3,248,0,42,13),(3502,'2015-03-14 14:56:59','2015-10-11 16:46:40',1,30004769,0,296,0,150,126,111,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,34,52),(3503,'2015-03-14 14:56:59','2015-10-11 16:46:40',1,30004126,100,102,65,78,81,2,35,140,120,32,10,51,298,196,110,64,61,161,12,18,105,146,95,106),(3504,'2015-03-14 14:56:59','2015-10-11 16:46:40',1,30004274,0,84,146,1,0,0,0,0,1,44,0,0,0,2,0,0,0,12,77,0,0,0,0,0),(3505,'2015-03-14 14:56:59','2015-10-11 16:46:40',1,30000108,0,63,0,0,68,109,0,0,45,2,0,0,0,0,31,0,0,71,0,0,0,26,0,6),(3506,'2015-03-14 14:56:59','2015-10-11 16:46:40',1,30000642,11,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(3507,'2015-03-14 14:56:59','2015-10-11 16:46:40',1,30003448,182,282,208,17,117,90,383,80,95,69,502,653,478,296,366,431,367,210,206,211,124,193,227,29),(3508,'2015-03-14 14:56:59','2015-10-11 16:46:40',1,30002234,53,51,23,27,140,156,14,59,2,66,9,15,123,70,120,78,49,75,40,129,53,5,22,77),(3509,'2015-03-14 14:56:59','2015-10-11 16:46:40',1,30000900,0,5,0,0,8,8,0,0,0,0,0,0,0,0,170,128,193,0,0,0,0,0,87,0),(3510,'2015-03-14 14:56:59','2015-10-11 16:46:40',1,30000057,16,25,77,15,106,84,3,7,1,31,3,11,45,27,8,106,133,51,20,21,50,31,99,64),(3511,'2015-03-14 14:56:59','2015-10-11 16:46:40',1,30002757,0,69,10,2,41,21,11,10,14,2,50,64,23,14,1,2,50,23,1,0,0,5,10,17),(3512,'2015-03-14 14:56:59','2015-10-11 16:46:40',1,30001082,0,0,0,0,0,0,0,0,0,0,0,0,2,0,0,0,0,191,0,0,0,0,74,21),(3513,'2015-03-14 14:56:59','2015-10-11 16:46:40',1,30000035,4,0,49,21,1,0,101,140,5,15,0,62,84,64,56,71,56,73,96,110,5,63,20,79),(3514,'2015-03-14 14:56:59','2015-10-11 16:46:40',1,30000008,61,73,28,19,64,33,1,0,85,63,69,39,19,202,14,51,58,56,68,26,166,110,85,96),(3515,'2015-03-14 14:56:59','2015-10-11 16:46:40',1,30005040,226,211,171,207,241,172,311,233,31,187,179,221,204,338,499,243,129,208,128,228,117,177,172,127),(3516,'2015-03-14 14:56:59','2015-10-11 16:46:40',1,30045352,0,2,8,0,100,152,53,40,0,102,147,142,53,0,65,98,56,5,3,0,10,49,3,35),(3517,'2015-03-14 14:56:59','2015-10-11 16:46:40',1,30000143,719,509,708,729,684,573,401,486,505,467,787,720,665,650,749,860,985,862,834,514,501,701,783,523),(3518,'2015-03-14 14:56:59','2015-03-14 14:56:59',1,30003141,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(3519,'2015-03-14 14:56:59','2015-10-11 16:46:40',1,30000896,0,0,23,0,0,0,0,0,3,0,0,0,0,0,0,0,0,0,0,0,45,0,0,0),(3520,'2015-03-14 14:56:59','2015-03-14 14:56:59',1,30000902,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(3521,'2015-03-14 14:56:59','2015-10-11 16:46:40',1,30002303,0,0,0,0,0,0,0,0,0,0,0,0,0,0,37,0,0,0,0,0,0,0,0,0),(3522,'2015-03-14 14:56:59','2015-10-11 16:46:40',1,30000855,0,9,47,0,250,189,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(3523,'2015-03-14 14:56:59','2015-10-11 16:46:40',1,30004476,0,185,51,66,240,642,0,123,482,292,273,536,153,644,332,255,407,548,156,152,380,389,479,96),(3524,'2015-03-14 14:56:59','2015-10-11 16:46:40',1,30004338,238,0,130,1539,475,144,844,0,0,0,0,1,0,0,0,0,0,0,0,0,0,46,63,74),(3525,'2015-03-14 14:56:59','2015-10-11 16:46:40',1,30004518,36,1,0,15,17,25,6,18,23,48,26,13,12,79,27,68,59,22,0,17,0,78,218,190),(3526,'2015-03-14 14:56:59','2015-10-11 16:46:40',1,30005018,229,124,117,59,77,152,60,50,22,52,124,77,55,108,132,132,193,132,106,103,58,96,71,188),(3527,'2015-03-14 14:56:59','2015-10-11 16:46:40',1,30004712,17,0,0,0,0,0,0,0,5,3,0,4,0,0,0,1,110,0,0,0,0,0,52,11),(3528,'2015-03-14 14:56:59','2015-10-11 16:46:40',1,30002218,0,69,43,27,37,53,141,121,3,109,0,0,59,14,53,39,40,7,0,0,20,73,5,99),(3529,'2015-03-14 14:56:59','2015-10-11 16:46:40',1,30000131,68,271,160,154,107,131,145,174,211,344,232,320,361,171,296,279,290,214,222,309,221,104,365,290),(3530,'2015-03-14 14:56:59','2015-10-11 16:46:40',1,30002219,0,11,0,0,0,0,0,0,0,0,0,56,41,53,0,0,0,3,0,0,42,30,17,0),(3531,'2015-03-14 14:56:59','2015-10-11 16:46:40',1,30001401,428,421,577,294,178,265,468,244,77,252,499,467,572,410,601,645,625,489,247,292,201,486,602,737),(3532,'2015-03-14 14:56:59','2015-10-11 16:46:40',1,30005236,0,0,12,0,0,5,3,1,0,6,0,60,41,0,142,21,0,132,0,0,62,0,0,19),(3533,'2015-03-14 14:56:59','2015-10-11 16:46:40',1,30004094,122,324,234,241,320,338,70,131,108,78,106,124,51,122,160,116,46,205,59,68,11,185,149,168),(3534,'2015-03-14 14:56:59','2015-10-11 16:46:40',1,30001725,44,1,9,0,0,0,101,0,0,0,8,0,0,126,33,22,1,23,0,0,0,27,0,145),(3535,'2015-03-14 14:56:59','2015-10-11 16:46:40',1,30045348,86,27,7,17,3,27,53,83,69,17,45,45,5,102,16,12,0,34,22,22,3,0,37,59),(3536,'2015-03-14 14:56:59','2015-10-11 16:46:40',1,30003884,0,5,0,0,0,0,0,0,48,49,21,1,0,0,0,31,31,0,0,0,0,39,2,0),(3537,'2015-03-14 14:56:59','2015-10-11 16:46:40',1,30001376,114,483,448,392,211,214,123,388,296,437,477,528,584,702,556,572,622,834,60,94,424,180,478,352),(3538,'2015-03-14 14:56:59','2015-10-11 16:46:40',1,30004307,18,0,19,9,89,133,75,29,11,0,30,30,11,0,0,0,0,0,0,0,0,2,20,24),(3539,'2015-03-14 14:56:59','2015-10-11 16:46:40',1,30004533,0,0,0,0,129,129,0,0,0,0,0,0,0,0,0,0,0,15,0,0,0,0,0,0),(3540,'2015-03-14 14:56:59','2015-10-11 16:46:40',1,30004479,538,0,0,0,0,0,0,0,608,1,90,91,0,0,0,0,0,0,1,160,103,0,0,0),(3541,'2015-03-14 14:56:59','2015-10-11 16:46:40',1,30002451,1,188,232,0,0,211,236,0,0,0,0,0,37,0,0,0,20,0,0,0,0,0,0,0),(3542,'2015-03-14 14:56:59','2015-10-11 16:46:40',1,30001822,0,0,0,0,0,0,48,0,0,0,0,0,0,0,0,0,0,0,0,0,0,9,94,30),(3543,'2015-03-14 14:56:59','2015-03-14 14:56:59',1,30000368,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(3544,'2015-03-14 14:56:59','2015-10-11 16:46:40',1,30004919,0,754,0,395,81,0,2,0,0,203,236,255,336,259,86,224,414,245,22,47,165,405,248,249),(3545,'2015-03-14 14:56:59','2015-03-14 14:56:59',1,30004866,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(3546,'2015-03-14 14:56:59','2015-10-11 16:46:40',1,30001094,3,0,0,0,0,0,0,0,0,32,50,43,0,28,30,30,0,0,0,0,0,0,0,0),(3547,'2015-03-14 14:56:59','2015-10-11 16:46:40',1,30001962,0,0,34,54,0,0,0,1,41,0,0,0,0,0,0,0,0,0,133,0,0,0,0,35),(3548,'2015-03-14 14:56:59','2015-03-14 14:56:59',1,30002103,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(3549,'2015-03-14 14:56:59','2015-10-11 16:46:40',1,30000696,55,0,139,7,8,1,0,1,10,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(3550,'2015-03-14 14:56:59','2015-03-14 14:56:59',1,30001622,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(3551,'2015-03-14 14:56:59','2015-10-11 16:46:40',1,30001061,0,27,0,214,12,109,415,5,14,255,0,0,40,540,0,0,0,0,0,319,170,80,0,0),(3552,'2015-03-14 14:56:59','2015-10-11 16:46:40',1,30004318,28,123,0,0,87,304,0,131,0,0,0,0,0,0,0,0,0,98,41,27,0,89,0,0),(3553,'2015-03-14 14:56:59','2015-10-11 16:46:40',1,30004035,172,76,0,246,0,0,0,256,358,119,461,441,426,268,488,74,119,1340,0,0,53,950,988,573),(3554,'2015-03-14 14:56:59','2015-10-11 16:46:40',1,30002606,4,0,0,0,0,0,0,0,0,0,0,0,0,0,45,16,8,0,0,1,80,0,0,0),(3555,'2015-03-14 14:56:59','2015-10-11 16:46:40',1,30000183,317,446,673,743,617,542,437,265,451,426,775,1169,510,625,690,690,887,849,610,247,538,544,759,855),(3556,'2015-03-14 14:56:59','2015-10-11 16:46:40',1,30001665,23,25,0,0,10,10,26,0,0,8,128,120,88,172,35,249,256,62,6,53,132,40,105,1),(3557,'2015-03-14 14:56:59','2015-10-11 16:46:40',1,30003627,0,0,0,0,0,0,0,29,0,0,0,0,0,0,0,0,3,0,0,0,0,0,0,0),(3558,'2015-03-14 14:56:59','2015-03-14 14:56:59',1,30000350,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(3559,'2015-03-14 14:56:59','2015-10-11 16:46:40',1,30004438,0,0,22,0,0,24,0,0,0,0,0,0,0,151,0,0,0,0,0,0,81,0,0,0),(3560,'2015-03-14 14:56:59','2015-10-11 16:46:40',1,30002340,0,11,5,0,0,0,0,5,7,11,0,0,3,40,6,0,0,0,13,20,8,8,0,9),(3561,'2015-03-14 14:56:59','2015-10-11 16:46:40',1,30004440,0,0,0,0,3,4,0,0,0,0,0,0,0,0,49,0,0,0,0,0,0,0,126,21),(3562,'2015-03-14 14:56:59','2015-10-11 16:46:40',1,30004612,209,614,208,202,717,413,0,379,107,0,0,0,0,0,0,0,58,76,21,0,0,114,215,256),(3563,'2015-03-14 14:56:59','2015-10-11 16:46:40',1,30001874,0,13,1,0,0,0,2,14,0,35,30,0,81,162,131,321,302,133,0,50,84,3,417,43),(3564,'2015-03-14 14:56:59','2015-10-11 16:46:40',1,30004911,166,0,158,136,220,280,66,0,0,0,0,43,0,0,3,185,359,139,0,0,0,0,11,0),(3565,'2015-03-14 14:56:59','2015-10-11 16:46:40',1,30004863,0,0,0,0,0,0,0,17,12,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(3566,'2015-03-14 14:56:59','2015-10-11 16:46:40',1,30000870,94,870,468,506,882,513,537,185,415,418,302,98,220,119,189,449,442,87,26,396,390,21,31,334),(3567,'2015-03-14 14:56:59','2015-10-11 16:46:40',1,30004050,0,0,0,0,0,0,0,7,0,0,28,28,0,155,0,0,0,97,0,0,0,0,0,3),(3568,'2015-03-14 14:56:59','2015-10-11 16:46:40',1,30002935,320,150,241,155,65,54,168,59,32,407,242,210,252,161,67,84,155,417,234,244,250,123,243,259),(3569,'2015-03-14 14:56:59','2015-10-11 16:46:40',1,30000627,8,3,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,41,8,0),(3570,'2015-03-14 14:56:59','2015-10-11 16:46:40',1,30000744,0,0,0,0,0,0,0,6,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(3571,'2015-03-14 14:56:59','2015-03-14 14:56:59',1,30000982,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(3572,'2015-03-14 14:56:59','2015-10-11 16:46:40',1,30004692,0,0,0,0,0,0,61,0,63,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(3573,'2015-03-14 14:56:59','2015-03-14 14:56:59',1,30000831,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(3574,'2015-03-14 14:56:59','2015-10-11 16:46:40',1,30002034,91,0,10,66,0,0,0,0,0,35,0,0,0,78,0,0,0,1,0,0,0,0,0,0),(3575,'2015-03-14 14:56:59','2015-10-11 16:46:40',1,30004060,0,0,0,0,0,0,0,0,0,28,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(3576,'2015-03-14 14:56:59','2015-10-11 16:46:40',1,30001964,0,2,1,1,1,0,2,303,1,0,0,0,1,0,0,2,2,0,0,0,0,1,0,84),(3577,'2015-03-14 14:56:59','2015-10-11 16:46:40',1,30003683,1,53,0,0,0,0,0,43,1,0,0,0,0,0,0,0,0,0,43,81,0,0,18,23),(3578,'2015-03-14 14:56:59','2015-10-11 16:46:40',1,30001955,63,59,0,0,0,0,0,0,0,0,0,0,0,0,146,89,29,0,43,0,0,0,0,0),(3579,'2015-03-14 14:56:59','2015-10-11 16:46:40',1,30002358,29,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(3580,'2015-03-14 14:56:59','2015-10-11 16:46:40',1,30004199,148,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,3,0,0,0,0),(3581,'2015-03-14 14:56:59','2015-10-11 16:46:40',1,30001938,30,0,0,0,0,0,0,0,1,0,0,61,13,0,70,71,20,101,0,0,87,89,57,94),(3582,'2015-03-14 14:56:59','2015-10-11 16:46:40',1,30004713,0,0,0,0,0,0,0,0,0,2,3,3,0,0,0,0,0,0,0,0,0,0,0,0),(3583,'2015-03-14 14:56:59','2015-10-11 16:46:40',1,30004049,0,19,481,80,85,16,183,141,55,0,0,0,30,0,0,0,0,0,0,0,0,0,0,0),(3584,'2015-03-14 14:56:59','2015-10-11 16:46:40',1,30004326,190,311,0,114,289,141,94,865,826,70,88,296,1249,173,364,524,356,435,512,928,1300,998,1060,1700),(3585,'2015-03-14 14:56:59','2015-10-11 16:46:40',1,30002351,4,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(3586,'2015-03-14 14:56:59','2015-10-11 16:46:40',1,30000309,56,640,239,18,175,152,612,3,130,27,46,0,69,154,200,71,23,0,0,167,137,34,0,71),(3587,'2015-03-14 14:56:59','2015-03-14 14:56:59',1,30004671,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(3588,'2015-03-14 14:56:59','2015-10-11 16:46:40',1,30004703,512,2320,267,763,844,1040,844,326,809,326,197,1062,1250,1753,807,662,198,2373,37,0,1048,1420,457,1121),(3589,'2015-03-14 14:56:59','2015-10-11 16:46:40',1,30001986,0,0,0,0,15,0,0,0,0,0,0,0,0,0,0,0,0,0,12,0,0,0,4,0),(3590,'2015-03-14 14:56:59','2015-10-11 16:46:40',1,30001751,110,3,0,19,89,0,8,2,53,0,0,0,0,0,0,0,0,0,0,0,0,0,0,57),(3591,'2015-03-14 14:56:59','2015-03-14 14:56:59',1,30000993,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(3592,'2015-03-14 14:56:59','2015-10-11 16:46:40',1,30004649,145,0,0,0,0,0,0,12,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,22),(3593,'2015-03-14 14:56:59','2015-10-11 16:46:40',1,30005171,12,97,23,13,113,85,22,145,134,8,13,18,18,46,97,61,87,110,47,1,4,178,44,30),(3594,'2015-03-14 14:56:59','2015-10-11 16:46:40',1,30004543,0,0,23,0,0,0,4,0,77,0,29,0,0,0,2,0,0,0,0,0,0,0,0,0),(3595,'2015-03-14 14:56:59','2015-10-11 16:46:40',1,30000975,0,0,0,0,0,0,3,0,0,0,0,0,0,0,3,0,0,0,0,0,0,0,0,0),(3596,'2015-03-14 14:56:59','2015-10-11 16:46:40',1,30001297,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,48,0,0,0),(3597,'2015-03-14 14:56:59','2015-10-11 16:46:40',1,30002457,0,0,204,130,266,172,0,1,0,0,0,0,0,0,0,0,0,114,0,0,0,0,0,0),(3598,'2015-03-14 14:56:59','2015-10-11 16:46:40',1,30003761,109,194,104,33,112,206,87,0,0,76,153,270,592,143,155,152,293,601,105,518,415,420,210,724),(3599,'2015-03-14 14:56:59','2015-10-11 16:46:40',1,30004044,0,0,0,0,0,0,0,0,0,0,0,0,19,3,0,9,23,0,0,0,6,43,29,19),(3600,'2015-03-14 14:56:59','2015-10-11 16:46:40',1,30002425,0,0,0,0,53,0,25,4,0,0,0,0,0,0,0,0,0,6,0,60,86,0,0,69),(3601,'2015-03-14 14:56:59','2015-10-11 16:46:40',1,30004699,0,122,86,444,223,232,318,127,12,0,0,0,0,0,0,0,0,0,0,0,0,108,0,0),(3602,'2015-03-14 14:56:59','2015-10-11 16:46:40',1,30003686,48,223,21,16,173,209,143,204,13,59,173,209,39,137,32,58,52,0,2,26,21,173,14,20),(3603,'2015-03-14 14:56:59','2015-10-11 16:46:40',1,30002602,166,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(3604,'2015-03-14 14:56:59','2015-10-11 16:46:40',1,30002499,149,131,0,45,0,0,70,0,0,0,0,0,0,110,0,0,1,0,89,1,15,82,0,0),(3605,'2015-03-14 14:56:59','2015-10-11 16:46:40',1,30000492,0,0,0,105,0,0,12,0,0,0,52,106,0,0,0,0,0,0,0,0,0,0,0,0),(3606,'2015-03-14 14:56:59','2015-10-11 16:46:40',1,30002851,0,4,0,40,0,0,0,0,4,0,0,0,4,7,3,13,19,10,0,0,9,10,0,7),(3607,'2015-03-14 14:56:59','2015-10-11 16:46:40',1,30003645,3,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,29,29,0),(3608,'2015-03-14 14:56:59','2015-10-11 16:46:40',1,30003946,15,137,76,174,155,6,60,0,22,267,201,195,508,162,138,134,142,172,43,241,64,212,298,466),(3609,'2015-03-14 14:56:59','2015-03-14 14:56:59',1,30002153,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(3610,'2015-03-14 14:56:59','2015-10-11 16:46:40',1,30004691,0,0,0,55,0,0,0,116,228,0,0,0,0,0,8,104,103,0,0,0,0,0,0,0),(3611,'2015-03-14 14:56:59','2015-10-11 16:46:40',1,30002884,1570,273,0,221,137,230,323,95,320,141,333,339,653,113,340,522,248,443,149,159,217,837,1260,1041),(3612,'2015-03-14 14:56:59','2015-10-11 16:46:40',1,30000512,20,270,1093,377,171,273,516,207,177,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(3613,'2015-03-14 14:56:59','2015-10-11 16:46:40',1,30001855,14,0,0,0,0,0,0,0,0,11,0,0,1,0,0,0,0,0,0,0,0,1,18,24),(3614,'2015-03-14 14:56:59','2015-10-11 16:46:40',1,30002116,528,265,233,101,0,0,314,172,71,0,64,3,0,0,0,0,0,130,0,0,0,0,155,131),(3615,'2015-03-14 14:56:59','2015-10-11 16:46:40',1,30001099,0,55,9,0,0,0,8,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1),(3616,'2015-03-14 14:56:59','2015-10-11 16:46:40',1,30002179,0,0,0,0,0,0,4,0,0,0,0,0,0,37,0,0,0,0,0,0,13,0,0,0),(3617,'2015-03-14 14:56:59','2015-10-11 16:46:40',1,30001068,0,0,0,0,0,0,47,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,43),(3618,'2015-03-14 14:56:59','2015-10-11 16:46:40',1,30004381,281,1055,21,719,668,547,489,446,820,96,28,60,148,476,14,271,430,0,277,171,147,374,402,562),(3619,'2015-03-14 14:56:59','2015-10-11 16:46:40',1,30002879,0,0,0,0,0,0,0,0,0,0,3,3,0,0,0,0,0,0,0,0,0,0,0,0),(3620,'2015-03-14 14:56:59','2015-10-11 16:46:40',1,30004424,0,0,0,0,0,0,0,31,0,0,0,0,0,0,0,0,0,0,0,0,0,18,0,0),(3621,'2015-03-14 14:56:59','2015-10-11 16:46:40',1,30000560,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,211,0,0),(3622,'2015-03-14 14:56:59','2015-10-11 16:46:40',1,30000679,0,0,0,0,0,0,0,0,0,0,6,6,0,0,0,2,32,7,0,3,9,30,28,1),(3623,'2015-03-14 14:56:59','2015-10-11 16:46:40',1,30004996,0,4,0,60,0,14,45,0,63,0,16,0,4,0,0,0,0,0,0,3,0,15,9,124),(3624,'2015-03-14 14:56:59','2015-10-11 16:46:40',1,30000155,399,415,547,452,709,619,234,166,445,285,566,708,670,560,650,803,952,822,258,288,389,589,425,397),(3625,'2015-03-14 14:56:59','2015-10-11 16:46:40',1,30000205,10,4,0,0,11,11,31,26,0,10,32,59,18,6,87,21,73,108,91,0,24,0,0,3),(3626,'2015-03-14 14:56:59','2015-10-11 16:46:40',1,30004109,6,2,0,0,55,75,0,0,0,0,0,0,0,0,0,0,17,31,8,26,0,0,34,3),(3627,'2015-03-14 14:56:59','2015-10-11 16:46:40',1,30004487,27,90,233,82,240,395,103,0,0,0,0,0,0,0,0,0,0,0,125,0,0,0,0,218),(3628,'2015-03-14 14:56:59','2015-10-11 16:46:40',1,30002522,85,54,145,49,26,105,99,9,76,157,67,45,71,106,57,48,123,114,96,208,138,52,108,193),(3629,'2015-03-14 14:56:59','2015-03-14 14:56:59',1,30005181,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(3630,'2015-03-14 14:56:59','2015-10-11 16:46:40',1,30003578,212,134,108,226,188,131,101,65,17,169,54,85,202,133,103,127,136,157,30,37,153,249,358,245),(3631,'2015-03-14 14:56:59','2015-10-11 16:46:40',1,30004426,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,76,12,0,0,0),(3632,'2015-03-14 14:56:59','2015-10-11 16:46:40',1,30003857,28,4,67,0,0,23,20,28,15,11,15,5,20,14,9,11,23,8,5,18,13,14,14,1),(3633,'2015-03-14 14:56:59','2015-10-11 16:46:40',1,30002509,681,927,719,666,834,667,663,472,386,1089,1121,1104,973,1199,1242,1325,1260,1213,434,743,1055,1120,721,1140),(3634,'2015-03-14 14:56:59','2015-10-11 16:46:40',1,30002388,12,38,42,19,50,0,0,21,1,1,1,0,0,24,1,1,8,0,0,35,46,9,29,3),(3635,'2015-03-14 14:56:59','2015-10-11 16:46:40',1,30003470,0,1,0,0,78,0,0,0,0,3,0,0,0,3,0,0,0,0,36,0,0,127,0,73),(3636,'2015-03-14 14:56:59','2015-10-11 16:46:40',1,30002694,33,66,0,279,33,0,54,103,61,40,112,57,0,70,128,143,117,18,0,2,68,111,18,10),(3637,'2015-03-14 14:56:59','2015-10-11 16:46:40',1,30002963,0,6,68,39,0,0,0,6,55,0,68,147,13,0,3,22,30,62,9,34,1,1,31,10),(3638,'2015-03-14 14:56:59','2015-10-11 16:46:40',1,30003582,0,22,19,39,51,70,19,22,3,49,39,88,1,98,145,13,34,114,62,6,33,44,39,2),(3639,'2015-03-14 14:56:59','2015-10-11 16:46:40',1,30003050,132,74,46,168,47,23,128,72,84,79,185,165,100,143,265,254,120,123,67,79,253,160,54,99),(3640,'2015-03-14 14:56:59','2015-10-11 16:46:40',1,30000077,9,80,86,63,68,34,63,174,82,39,4,43,96,3,25,60,149,121,101,74,98,25,136,99),(3641,'2015-03-14 14:56:59','2015-10-11 16:46:40',1,30012715,344,233,147,437,299,63,416,78,263,403,536,477,514,622,461,496,597,233,227,217,608,328,291,151),(3642,'2015-03-14 14:56:59','2015-10-11 16:46:40',1,30003657,85,0,0,14,0,86,0,0,36,0,0,0,0,0,80,81,9,0,0,0,0,0,0,0),(3643,'2015-03-14 14:56:59','2015-10-11 16:46:40',1,30002008,0,36,3,2,5,4,45,6,67,81,12,65,29,0,6,32,45,17,6,10,59,9,32,59),(3644,'2015-03-14 14:56:59','2015-10-11 16:46:40',1,30000439,113,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(3645,'2015-03-14 14:56:59','2015-10-11 16:46:40',1,30003577,0,65,128,131,22,28,74,46,41,128,171,133,133,36,181,162,65,190,82,76,81,93,56,32),(3646,'2015-03-14 14:56:59','2015-10-11 16:46:40',1,30002427,0,0,0,211,12,0,0,0,0,0,0,0,0,0,0,0,27,0,0,0,0,0,0,0),(3647,'2015-03-14 14:56:59','2015-10-11 16:46:40',1,30003446,0,0,32,0,6,0,4,0,24,0,67,63,14,0,2,2,0,76,0,2,7,0,0,84),(3648,'2015-03-14 14:56:59','2015-10-11 16:46:40',1,30003460,22,63,0,0,25,2,6,20,0,0,2,3,7,0,0,18,46,15,0,0,0,4,2,60),(3649,'2015-03-14 14:56:59','2015-10-11 16:46:40',1,30002549,8,5,9,13,10,96,150,6,9,22,40,126,31,228,42,135,110,58,0,19,16,77,17,1),(3650,'2015-03-14 14:56:59','2015-10-11 16:46:40',1,30002061,87,0,10,0,86,103,4,52,13,6,32,33,18,7,29,30,97,3,18,11,17,32,45,20),(3651,'2015-03-14 14:56:59','2015-03-14 14:56:59',1,30000472,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(3652,'2015-03-14 14:56:59','2015-10-11 16:46:40',1,30003598,52,43,0,0,25,1,88,0,0,0,0,73,21,0,0,1,15,28,0,0,0,0,0,50),(3653,'2015-03-14 14:56:59','2015-10-11 16:46:40',1,30001191,0,0,0,0,0,0,0,0,0,0,0,137,0,0,0,0,0,1,25,0,0,0,0,0),(3654,'2015-03-14 14:56:59','2015-10-11 16:46:40',1,30003437,77,142,43,23,55,12,70,72,55,34,33,31,225,53,24,22,125,32,23,6,63,32,67,87),(3655,'2015-03-14 14:56:59','2015-10-11 16:46:40',1,30005068,0,4,0,26,50,50,0,0,8,15,27,35,1,0,0,0,0,0,22,34,41,0,0,0),(3656,'2015-03-14 14:56:59','2015-10-11 16:46:40',1,30002045,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,4,0),(3657,'2015-03-14 14:56:59','2015-10-11 16:46:40',1,30003984,275,37,0,0,0,0,4,0,0,15,106,198,364,86,10,79,144,325,123,109,75,144,119,9),(3658,'2015-03-14 14:56:59','2015-10-11 16:46:40',1,30001435,0,0,23,93,0,0,12,0,126,25,24,5,80,1,9,0,47,13,0,0,25,72,0,1),(3659,'2015-03-14 14:56:59','2015-10-11 16:46:40',1,30002970,254,129,399,518,310,345,122,230,246,151,435,667,254,130,136,182,308,202,33,71,43,342,193,240),(3660,'2015-03-14 14:56:59','2015-10-11 16:46:40',1,30000204,38,0,118,37,0,45,12,69,36,11,110,65,0,1,26,50,30,156,35,14,41,27,41,97),(3661,'2015-03-14 14:56:59','2015-10-11 16:46:40',1,30000136,519,198,282,199,61,56,205,131,206,84,277,185,213,316,826,684,193,245,100,122,125,418,72,229),(3662,'2015-03-14 14:56:59','2015-10-11 16:46:40',1,30002743,68,250,576,774,966,976,158,211,58,242,431,540,274,248,317,309,376,32,36,459,108,356,348,79),(3663,'2015-03-14 14:56:59','2015-10-11 16:46:40',1,30002818,298,254,123,254,295,178,275,138,174,154,146,187,370,227,141,124,153,193,338,33,170,176,242,105),(3664,'2015-03-14 14:56:59','2015-10-11 16:46:40',1,30003838,3,9,6,21,2,10,2,100,47,0,9,9,0,12,14,28,17,16,13,6,1,0,4,10),(3665,'2015-03-14 14:56:59','2015-10-11 16:46:40',1,30002746,134,375,1234,1700,1299,1380,91,118,47,246,511,347,292,115,263,242,390,247,79,155,73,140,251,136),(3666,'2015-03-14 14:56:59','2015-10-11 16:46:40',1,30000186,0,8,60,127,163,110,0,34,24,39,0,31,12,13,29,41,32,19,9,4,18,20,44,92),(3667,'2015-03-14 14:56:59','2015-10-11 16:46:40',1,30001444,318,227,128,371,303,168,289,53,213,196,193,296,182,218,269,280,209,194,157,150,253,277,334,195),(3668,'2015-03-14 14:56:59','2015-10-11 16:46:40',1,30045347,6,25,0,15,11,85,9,22,59,6,1,1,7,42,45,50,9,85,3,0,0,11,0,6),(3669,'2015-03-14 14:56:59','2015-10-11 16:46:40',1,30002750,294,66,252,361,113,124,347,89,229,160,339,469,285,167,283,250,198,296,174,208,301,189,141,173),(3670,'2015-03-14 14:56:59','2015-10-11 16:46:40',1,30003132,0,0,0,0,0,0,41,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(3671,'2015-03-14 14:56:59','2015-10-11 16:46:40',1,30001425,271,682,170,269,339,432,377,237,217,447,616,568,153,291,296,514,613,310,106,214,154,189,268,344),(3672,'2015-03-14 14:56:59','2015-10-11 16:46:40',1,30022715,14,43,17,81,0,88,90,67,0,9,0,16,0,83,88,43,71,0,104,52,152,113,42,69),(3673,'2015-03-14 14:56:59','2015-10-11 16:46:40',1,30001433,80,154,75,291,128,116,74,40,97,136,366,200,299,339,130,100,109,239,73,125,85,202,68,46),(3674,'2015-03-14 14:56:59','2015-10-11 16:46:40',1,30002799,625,196,348,396,265,424,172,24,188,410,595,568,324,392,304,340,506,613,306,277,240,548,644,521),(3675,'2015-03-14 14:56:59','2015-10-11 16:46:40',1,30004334,32,12,26,6,16,14,0,14,452,0,76,68,0,0,113,60,19,0,0,0,0,0,46,6),(3676,'2015-03-14 14:56:59','2015-10-11 16:46:40',1,30001341,49,71,0,0,0,0,36,0,0,3,71,19,0,69,0,0,0,0,0,39,73,0,0,0),(3677,'2015-03-14 14:56:59','2015-10-11 16:46:40',1,30000983,0,0,0,0,0,6,0,0,1,0,68,1,0,0,0,0,0,8,0,0,0,0,0,10),(3678,'2015-03-14 14:56:59','2015-03-14 14:56:59',1,30005091,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(3679,'2015-03-14 14:56:59','2015-10-11 16:46:40',1,30000945,7,0,0,73,3,9,0,5,78,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(3680,'2015-03-14 14:56:59','2015-10-11 16:46:40',1,30045307,34,34,46,1,6,15,8,1,18,18,30,12,84,58,14,59,60,51,0,55,39,125,141,41),(3681,'2015-03-14 14:56:59','2015-10-11 16:46:40',1,30004924,153,0,0,0,0,0,121,97,30,98,452,602,260,250,91,165,323,438,0,0,4,1138,626,628),(3682,'2015-03-14 14:56:59','2015-10-11 16:46:40',1,30045330,5,0,0,0,1,1,0,95,4,7,0,0,3,37,17,97,92,0,0,0,6,11,59,5),(3683,'2015-03-14 14:56:59','2015-10-11 16:46:40',1,30004645,0,0,0,0,53,22,58,0,1,68,49,0,0,0,0,0,0,0,0,0,0,0,0,0),(3684,'2015-03-14 14:56:59','2015-10-11 16:46:40',1,30003388,53,97,132,62,104,113,79,133,198,123,59,48,46,122,62,100,170,116,111,210,83,88,278,12),(3685,'2015-03-14 14:56:59','2015-10-11 16:46:40',1,30005000,8,18,166,0,15,0,6,6,38,0,8,6,6,0,6,5,4,10,39,1,10,35,12,7),(3686,'2015-03-14 14:56:59','2015-10-11 16:46:40',1,30032715,0,47,204,114,60,37,0,100,48,91,63,132,13,137,105,132,225,48,37,34,159,31,244,27),(3687,'2015-03-14 14:56:59','2015-10-11 16:46:40',1,30002686,0,95,0,17,57,105,25,13,0,22,14,13,35,2,38,31,9,0,0,0,0,0,0,53),(3688,'2015-03-14 14:56:59','2015-10-11 16:46:40',1,30002515,142,0,2,5,25,23,1,0,0,0,0,0,4,1,12,7,4,79,5,47,44,2,0,7),(3689,'2015-03-14 14:56:59','2015-10-11 16:46:40',1,30003058,117,20,27,98,72,67,17,151,1,53,4,2,6,38,128,159,55,44,0,9,111,0,65,75),(3690,'2015-03-14 14:56:59','2015-10-11 16:46:40',1,30005272,7,7,9,25,23,14,59,66,0,15,15,3,0,30,44,9,12,0,0,39,18,0,0,1),(3691,'2015-03-14 14:56:59','2015-10-11 16:46:40',1,30000158,706,383,441,422,259,285,368,479,249,369,764,727,473,822,718,639,788,704,158,451,388,905,568,395),(3692,'2015-03-14 14:56:59','2015-10-11 16:46:40',1,30004137,0,0,2,0,0,0,0,0,0,0,0,0,0,195,0,0,5,0,0,0,0,24,0,22),(3693,'2015-03-14 14:56:59','2015-10-11 16:46:40',1,30004302,13,0,0,6,0,0,27,0,0,0,0,0,0,1,0,0,0,0,0,0,91,9,0,0),(3694,'2015-03-14 14:56:59','2015-10-11 16:46:40',1,30003817,30,0,0,68,203,103,38,0,90,143,5,6,0,624,439,714,764,304,9,203,496,491,431,424),(3695,'2015-03-14 14:56:59','2015-10-11 16:46:40',1,30005027,118,84,291,73,62,194,92,166,85,53,44,29,136,108,154,74,163,163,5,217,332,132,143,131),(3696,'2015-03-14 14:56:59','2015-10-11 16:46:40',1,30004244,24,0,48,0,37,37,0,0,0,0,0,0,0,0,0,0,0,14,0,0,0,0,0,2),(3697,'2015-03-14 14:56:59','2015-10-11 16:46:40',1,30002811,2,5,32,12,6,13,4,22,6,14,3,6,15,34,46,71,32,52,0,22,67,0,42,26),(3698,'2015-03-14 14:56:59','2015-10-11 16:46:40',1,30001688,73,8,82,147,97,71,8,65,118,113,183,276,134,96,60,69,59,75,77,159,201,89,85,53),(3699,'2015-03-14 14:56:59','2015-10-11 16:46:40',1,30003603,0,88,253,104,50,132,29,114,3,42,45,65,68,155,158,2,76,0,0,0,27,195,123,45),(3700,'2015-03-14 14:56:59','2015-10-11 16:46:40',1,30002568,173,168,58,38,218,160,90,42,140,107,146,148,131,187,100,65,118,91,138,86,175,188,59,80),(3701,'2015-03-14 14:56:59','2015-10-11 16:46:40',1,30003386,150,169,90,13,93,147,141,7,14,18,215,188,89,84,71,15,124,357,151,60,78,59,2,103),(3702,'2015-03-14 14:56:59','2015-10-11 16:46:40',1,30045324,101,297,221,226,71,76,242,202,141,137,162,230,129,207,294,273,215,257,197,261,283,325,436,207),(3703,'2015-03-14 14:56:59','2015-10-11 16:46:40',1,30004990,0,29,3,103,8,7,0,1,61,32,0,84,2,0,28,21,0,0,0,80,0,15,3,5),(3704,'2015-03-14 14:56:59','2015-10-11 16:46:40',1,30002779,112,332,352,277,163,176,213,203,92,437,339,361,523,131,197,329,384,319,212,231,52,252,188,132),(3705,'2015-03-14 14:56:59','2015-10-11 16:46:40',1,30000013,68,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,14,4,0,0,0),(3706,'2015-03-14 14:56:59','2015-10-11 16:46:40',1,30002091,6,12,4,18,33,67,6,0,11,21,40,17,3,7,114,66,13,36,1,26,43,13,9,83),(3707,'2015-03-14 14:56:59','2015-10-11 16:46:40',1,30000174,286,118,149,325,345,175,276,68,325,68,241,317,203,412,520,537,552,359,32,203,333,279,361,355),(3708,'2015-03-14 14:56:59','2015-10-11 16:46:40',1,30001946,0,0,7,0,0,0,0,0,0,12,12,12,0,0,0,4,8,5,0,0,0,0,0,3),(3709,'2015-03-14 14:56:59','2015-10-11 16:46:40',1,30005109,199,177,44,0,0,4,0,5,69,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(3710,'2015-03-14 14:56:59','2015-10-11 16:46:40',1,30002173,130,26,15,151,53,55,297,130,46,391,270,318,4,1260,215,135,70,126,61,298,209,146,26,55),(3711,'2015-03-14 14:56:59','2015-10-11 16:46:40',1,30003430,13,2,9,62,8,7,85,56,65,33,69,133,21,125,76,104,78,151,57,19,73,23,87,42),(3712,'2015-03-14 14:56:59','2015-10-11 16:46:40',1,30004858,0,0,0,0,0,0,227,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(3713,'2015-03-14 14:56:59','2015-03-14 14:56:59',1,30000607,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(3714,'2015-03-14 14:56:59','2015-10-11 16:46:40',1,30003450,260,263,101,61,217,217,230,322,315,225,457,387,293,323,221,185,190,328,116,191,215,116,371,118),(3715,'2015-03-14 14:56:59','2015-03-14 14:56:59',1,30003201,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(3716,'2015-03-14 14:56:59','2015-10-11 16:46:40',1,30001685,0,1,0,0,0,0,0,0,9,24,8,8,2,43,0,1,1,1,8,26,33,4,9,0),(3717,'2015-03-14 14:56:59','2015-10-11 16:46:40',1,30005060,237,58,132,147,128,198,144,55,110,29,260,335,205,111,182,144,287,126,104,186,246,349,165,178),(3718,'2015-03-14 14:56:59','2015-10-11 16:46:40',1,30000026,19,35,62,68,0,20,8,0,104,5,15,21,8,8,17,34,43,0,0,21,96,52,56,8),(3719,'2015-03-14 14:56:59','2015-10-11 16:46:40',1,30003453,332,92,82,157,56,50,43,133,130,13,3,34,64,95,94,119,76,118,120,22,67,79,97,127),(3720,'2015-03-14 14:56:59','2015-10-11 16:46:40',1,30002571,79,21,66,8,43,23,72,38,26,19,0,0,0,26,48,52,111,99,0,32,74,15,0,53),(3721,'2015-03-14 14:56:59','2015-10-11 16:46:40',1,30002098,18,0,1,21,11,12,25,0,53,10,3,0,0,17,6,9,11,12,30,27,10,17,43,2),(3722,'2015-03-14 14:56:59','2015-10-11 16:46:40',1,30022505,0,28,4,0,14,14,65,17,32,48,56,81,15,60,25,81,109,1,74,77,15,23,0,23),(3723,'2015-03-14 14:56:59','2015-10-11 16:46:40',1,30002399,142,146,36,265,47,0,0,254,0,84,136,166,13,75,28,28,33,38,85,120,0,68,105,12),(3724,'2015-03-14 14:56:59','2015-10-11 16:46:40',1,30003492,592,513,355,415,502,392,452,283,362,521,610,467,915,883,976,825,1005,1010,592,840,582,958,940,671),(3725,'2015-03-14 14:56:59','2015-10-11 16:46:40',1,30003596,94,36,0,13,1,6,97,4,22,19,1,34,11,14,63,17,16,41,0,64,0,18,62,11),(3726,'2015-03-14 14:56:59','2015-10-11 16:46:40',1,30000063,39,204,191,0,140,143,92,71,46,0,42,59,20,25,24,53,53,60,50,100,0,72,17,13),(3727,'2015-03-14 14:56:59','2015-10-11 16:46:40',1,30003830,173,110,168,41,197,175,132,50,20,91,321,206,150,97,141,152,193,72,51,131,108,89,383,101),(3728,'2015-03-14 14:56:59','2015-03-14 14:56:59',1,30000374,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(3729,'2015-03-14 14:56:59','2015-10-11 16:46:40',1,30000207,0,0,4,26,3,0,0,0,0,0,0,3,0,0,87,87,0,0,0,89,0,0,40,68),(3730,'2015-03-14 14:56:59','2015-10-11 16:46:40',1,30002569,18,41,30,59,13,2,35,46,27,33,21,46,56,51,74,98,92,45,80,27,62,81,61,28),(3731,'2015-03-14 14:56:59','2015-10-11 16:46:40',1,30002795,455,347,221,445,193,162,349,162,372,542,418,513,644,493,624,557,631,572,154,380,397,553,427,496),(3732,'2015-03-14 14:56:59','2015-10-11 16:46:40',1,30003870,2,0,17,0,0,24,33,16,32,11,0,0,22,0,97,117,65,18,142,0,0,81,0,28),(3733,'2015-03-14 14:56:59','2015-10-11 16:46:40',1,30003812,27,0,73,40,154,90,0,9,8,21,21,0,0,6,0,5,39,183,55,30,43,184,0,0),(3734,'2015-03-14 14:56:59','2015-10-11 16:46:40',1,30003831,209,17,193,175,161,267,122,42,115,350,177,110,22,90,398,190,42,239,16,68,173,185,140,211),(3735,'2015-03-14 14:56:59','2015-10-11 16:46:40',1,30005332,74,98,36,121,102,64,51,189,87,93,73,68,51,110,125,109,73,22,13,67,137,63,131,14),(3736,'2015-03-14 14:56:59','2015-10-11 16:46:40',1,30000180,1165,1379,1466,1733,1597,1558,1037,1780,1109,919,1796,2153,2179,1820,1648,1726,2197,2095,1099,1096,1919,2058,1899,1917),(3737,'2015-03-14 14:56:59','2015-10-11 16:46:40',1,30002506,129,158,272,124,339,459,71,76,150,72,58,35,256,290,124,319,347,280,176,205,160,218,191,285),(3738,'2015-03-14 14:56:59','2015-10-11 16:46:40',1,30001358,0,146,35,349,31,1,44,132,24,71,146,146,326,97,91,245,332,202,2,75,188,81,125,163),(3739,'2015-03-14 14:56:59','2015-10-11 16:46:40',1,30003792,9,3,7,1,5,2,70,0,0,17,7,0,3,5,4,6,4,84,0,31,16,3,4,33),(3740,'2015-03-14 14:56:59','2015-10-11 16:46:40',1,30003427,182,48,14,41,14,58,22,10,33,168,130,132,55,33,8,61,80,163,33,51,51,199,188,104),(3741,'2015-03-14 14:56:59','2015-10-11 16:46:40',1,30002409,67,13,49,4,4,3,22,80,72,20,60,71,1,0,4,4,1,0,0,0,0,0,1,5),(3742,'2015-03-14 14:56:59','2015-10-11 16:46:40',1,30001579,470,302,0,178,340,455,356,65,49,0,261,450,191,0,797,1033,1120,776,0,0,0,2442,2306,1997),(3743,'2015-03-14 14:56:59','2015-10-11 16:46:40',1,30001005,242,200,38,0,202,174,0,0,177,39,0,0,65,267,195,110,109,126,120,169,141,107,162,208),(3744,'2015-03-14 14:56:59','2015-10-11 16:46:40',1,30005274,0,35,0,21,22,0,0,11,0,23,76,41,0,30,26,17,23,0,0,120,1,7,0,10),(3745,'2015-03-14 14:56:59','2015-10-11 16:46:40',1,30001421,190,73,60,47,119,133,165,52,102,67,108,234,150,202,213,234,318,131,108,141,45,189,117,311),(3746,'2015-03-14 14:56:59','2015-10-11 16:46:40',1,30000192,34,5,0,10,74,2,55,7,0,45,31,31,2,106,118,32,30,0,0,0,0,0,19,76),(3747,'2015-03-14 14:56:59','2015-10-11 16:46:40',1,30000157,184,152,181,167,85,83,505,233,302,103,235,210,189,331,282,234,279,326,84,236,207,385,418,512),(3748,'2015-03-14 14:56:59','2015-10-11 16:46:40',1,30003065,2,8,47,253,151,152,35,0,54,35,6,0,109,0,27,27,0,184,18,93,0,0,135,0),(3749,'2015-03-14 14:56:59','2015-10-11 16:46:40',1,30000171,193,285,194,555,410,292,417,115,155,371,218,339,215,232,264,189,198,235,103,268,270,421,307,149),(3750,'2015-03-14 14:56:59','2015-10-11 16:46:40',1,30001538,9,0,1,0,6,6,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(3751,'2015-03-14 14:56:59','2015-10-11 16:46:40',1,30001586,0,0,0,0,1,2,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(3752,'2015-03-14 14:56:59','2015-10-11 16:46:40',1,30002808,76,23,7,4,25,42,29,66,75,14,5,0,0,8,13,21,21,30,30,56,59,42,162,48),(3753,'2015-03-14 14:56:59','2015-10-11 16:46:40',1,30000172,151,317,388,320,258,248,145,145,566,279,592,499,363,315,576,434,128,76,565,407,51,150,177,157),(3754,'2015-03-14 14:56:59','2015-10-11 16:46:40',1,30000196,0,0,0,89,0,0,84,54,0,0,0,0,0,0,4,4,19,0,29,27,9,0,1,1),(3755,'2015-03-14 14:56:59','2015-10-11 16:46:40',1,30002723,0,27,113,0,1,1,62,0,4,0,4,1,75,96,18,3,1,20,14,1,3,5,4,8),(3756,'2015-03-14 14:56:59','2015-10-11 16:46:40',1,30002578,122,0,0,38,48,10,0,75,0,6,145,175,334,207,2,2,0,86,74,304,84,122,41,58),(3757,'2015-03-14 14:56:59','2015-10-11 16:46:40',1,30001446,242,21,17,37,69,20,2,29,47,71,6,10,0,56,39,123,105,38,19,22,210,31,20,27),(3758,'2015-03-14 14:56:59','2015-10-11 16:46:40',1,30000194,7,0,1,45,33,8,53,0,32,0,0,0,41,2,2,0,30,124,0,87,0,125,123,0),(3759,'2015-03-14 14:56:59','2015-03-14 14:56:59',1,30001476,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(3760,'2015-03-14 14:56:59','2015-10-11 16:46:40',1,30004052,0,0,0,61,0,0,134,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,42),(3761,'2015-03-14 14:56:59','2015-10-11 16:46:40',1,30005297,5,1,7,1,3,3,1,7,63,0,5,5,8,9,0,2,6,0,6,7,3,32,7,8),(3762,'2015-03-14 14:56:59','2015-10-11 16:46:40',1,30003833,7,2,6,0,4,41,0,1,0,0,0,57,100,34,63,40,3,0,2,5,64,1,12,19),(3763,'2015-03-14 14:56:59','2015-10-11 16:46:40',1,30001370,387,175,348,564,251,412,360,231,151,138,243,446,201,213,348,266,287,341,50,175,229,305,367,462),(3764,'2015-03-14 14:56:59','2015-10-11 16:46:40',1,30005203,21,3,7,12,9,3,0,28,17,11,31,39,0,13,10,10,10,96,0,0,24,149,131,56),(3765,'2015-03-14 14:56:59','2015-10-11 16:46:40',1,30004969,570,571,305,528,415,395,514,102,456,668,663,644,447,1309,619,639,704,1114,504,452,706,810,1012,622),(3766,'2015-03-14 14:56:59','2015-10-11 16:46:40',1,30000135,198,172,188,143,195,123,108,85,120,171,126,153,235,222,213,237,171,62,57,92,51,235,68,148),(3767,'2015-03-14 14:56:59','2015-03-14 14:56:59',1,30000335,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(3768,'2015-03-14 14:56:59','2015-10-11 16:46:40',1,30001819,0,0,79,0,0,0,0,0,80,0,0,0,0,0,0,0,0,0,0,0,0,0,0,15),(3769,'2015-03-14 14:56:59','2015-10-11 16:46:40',1,30004581,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,51),(3770,'2015-03-14 14:56:59','2015-10-11 16:46:40',1,30002936,0,22,124,0,0,0,62,1280,708,99,0,87,134,50,0,0,0,0,178,0,166,0,0,0),(3771,'2015-03-14 14:56:59','2015-03-14 14:56:59',1,30004521,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(3772,'2015-03-14 14:56:59','2015-10-11 16:46:40',1,30000735,7,62,542,107,172,199,161,0,0,0,0,0,0,113,0,0,0,74,0,0,0,171,1,70),(3773,'2015-03-14 14:56:59','2015-03-14 14:56:59',1,30004413,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(3774,'2015-03-14 14:56:59','2015-10-11 16:46:40',1,30003722,269,0,7,266,154,200,38,7,86,131,134,143,51,207,82,209,340,225,2,158,88,132,161,81),(3775,'2015-03-14 14:56:59','2015-10-11 16:46:40',1,30000885,0,0,47,0,0,0,48,0,0,0,0,0,0,0,0,0,0,0,85,0,0,0,0,0),(3776,'2015-03-14 14:56:59','2015-10-11 16:46:40',1,30004958,51,331,269,407,474,466,321,154,80,0,9,1,4,5,0,5,10,81,0,0,93,11,47,126),(3777,'2015-03-14 14:56:59','2015-10-11 16:46:40',1,30002961,34,12,11,14,9,40,19,33,3,2,28,39,20,7,23,22,22,0,14,24,34,20,24,0),(3778,'2015-03-14 14:56:59','2015-10-11 16:46:40',1,30003088,14,8,21,15,23,25,27,8,33,28,84,111,102,36,26,41,15,160,32,4,5,54,7,31),(3779,'2015-03-14 14:56:59','2015-10-11 16:46:40',1,30003254,249,0,60,562,0,0,0,303,508,1114,1103,763,855,1241,307,389,306,981,86,472,973,147,898,409),(3780,'2015-03-14 14:56:59','2015-10-11 16:46:40',1,30001282,0,0,0,34,26,3,42,1,0,1,1,0,0,0,0,0,0,0,0,0,0,0,1,0),(3781,'2015-03-14 14:56:59','2015-10-11 16:46:40',1,30002030,147,51,0,15,50,24,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,4,0),(3782,'2015-03-14 14:56:59','2015-10-11 16:46:40',1,30003680,231,336,44,154,113,131,169,256,210,90,165,187,57,66,377,203,171,47,36,12,7,39,50,20),(3783,'2015-03-14 14:56:59','2015-10-11 16:46:40',1,30003137,0,0,74,0,0,0,0,0,0,0,0,0,0,8,0,0,20,0,0,0,0,21,47,33),(3784,'2015-03-14 14:56:59','2015-10-11 16:46:40',1,30002482,273,205,0,6,62,223,222,0,0,50,144,75,0,0,0,0,66,27,0,0,0,0,0,0),(3785,'2015-03-14 14:56:59','2015-10-11 16:46:40',1,30001823,0,577,0,289,230,316,158,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(3786,'2015-03-14 14:56:59','2015-10-11 16:46:40',1,30002467,0,69,0,0,0,0,181,54,0,0,0,0,0,0,0,0,0,66,0,0,0,0,0,0),(3787,'2015-03-14 14:56:59','2015-10-11 16:46:40',1,30001268,21,83,3,50,32,34,18,4,108,138,214,292,185,101,116,137,173,24,0,1,81,14,128,76),(3788,'2015-03-14 14:56:59','2015-10-11 16:46:40',1,30001293,4,0,0,0,69,142,0,0,0,1,0,0,0,60,1,0,0,0,0,0,0,0,0,0),(3789,'2015-03-14 14:56:59','2015-10-11 16:46:40',1,30004187,0,0,0,199,162,228,0,0,1,0,149,474,1440,0,450,668,783,363,114,0,0,272,236,807),(3790,'2015-03-14 14:56:59','2015-03-14 14:56:59',1,30000365,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(3791,'2015-03-14 14:56:59','2015-10-11 16:46:40',1,30000661,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,20,27,22,39,86,6,88,15,11),(3792,'2015-03-14 14:56:59','2015-10-11 16:46:40',1,30001547,0,0,0,0,0,0,0,0,0,0,7,0,86,10,0,0,0,0,0,0,0,0,0,4),(3793,'2015-03-14 14:56:59','2015-10-11 16:46:40',1,30004170,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,42,0,0,0,0,0,0,0),(3794,'2015-03-14 14:56:59','2015-10-11 16:46:40',1,30004497,0,0,0,106,0,0,0,15,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0),(3795,'2015-03-14 14:56:59','2015-10-11 16:46:40',1,30001795,19,162,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(3796,'2015-03-14 14:56:59','2015-10-11 16:46:40',1,30003674,0,72,55,72,0,20,175,55,1,135,493,498,315,57,139,229,221,207,34,563,388,132,581,461),(3797,'2015-03-14 14:56:59','2015-10-11 16:46:40',1,30001329,48,63,0,0,38,61,0,5,32,30,38,18,0,29,27,27,1,19,0,0,0,0,43,1),(3798,'2015-03-14 14:56:59','2015-10-11 16:46:40',1,30003978,3,9,95,3,138,10,57,0,79,0,11,11,0,0,0,0,0,0,16,16,14,0,0,0),(3799,'2015-03-14 14:56:59','2015-10-11 16:46:40',1,30003248,1145,1391,58,505,581,0,1013,354,1361,67,137,114,108,53,464,215,138,2060,75,17,109,1861,2000,526),(3800,'2015-03-14 14:56:59','2015-03-14 14:56:59',1,30000949,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(3801,'2015-03-14 14:56:59','2015-10-11 16:46:40',1,30000250,0,5,0,0,29,0,0,5,0,0,0,0,45,0,0,0,0,16,2,6,4,4,3,7),(3802,'2015-03-14 14:56:59','2015-03-14 14:56:59',1,30001604,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(3803,'2015-03-14 14:56:59','2015-10-11 16:46:40',1,30001125,491,822,74,0,0,0,160,85,10,50,445,222,57,1025,620,948,946,695,0,0,10,1980,904,368),(3804,'2015-03-14 14:56:59','2015-10-11 16:46:40',1,30003971,42,121,29,40,67,23,5,13,5,5,10,16,82,19,73,75,27,57,421,220,86,98,150,806),(3805,'2015-03-14 14:56:59','2015-10-11 16:46:40',1,30004624,0,0,0,0,0,0,0,0,0,3,0,1,0,0,0,0,0,0,0,0,0,0,0,0),(3806,'2015-03-14 14:56:59','2015-10-11 16:46:40',1,30004076,0,0,0,105,0,0,0,63,0,0,0,0,0,0,0,0,0,0,170,0,150,0,0,0),(3807,'2015-03-14 14:56:59','2015-03-14 14:56:59',1,30000411,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(3808,'2015-03-14 14:56:59','2015-10-11 16:46:40',1,30001568,0,0,0,0,0,3,0,0,0,82,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(3809,'2015-03-14 14:56:59','2015-03-14 14:56:59',1,30000638,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(3810,'2015-03-14 14:56:59','2015-10-11 16:46:40',1,30000450,0,40,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(3811,'2015-03-14 14:56:59','2015-03-14 14:56:59',1,30000977,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(3812,'2015-03-14 14:56:59','2015-10-11 16:46:40',1,30004362,155,589,142,373,238,44,186,42,655,177,0,0,0,0,0,53,53,0,0,0,0,0,0,166),(3813,'2015-03-14 14:56:59','2015-10-11 16:46:40',1,30004471,0,0,0,0,0,0,0,0,0,20,275,21,0,164,0,0,0,148,0,0,0,0,0,0),(3814,'2015-03-14 14:56:59','2015-10-11 16:46:40',1,30003163,0,0,0,0,0,0,0,64,77,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(3815,'2015-03-14 14:56:59','2015-10-11 16:46:40',1,30005185,79,0,0,0,0,0,0,0,0,0,0,53,81,0,0,0,0,0,0,132,0,0,4,0),(3816,'2015-03-14 14:56:59','2015-10-11 16:46:40',1,30004961,326,162,197,149,95,112,481,173,40,0,262,417,524,39,484,257,331,381,4,5,0,536,246,144),(3817,'2015-03-14 14:56:59','2015-10-11 16:46:40',1,30000198,151,0,3,17,0,1,0,0,0,4,9,9,0,15,0,0,0,103,1,0,0,0,0,52),(3818,'2015-03-14 14:56:59','2015-10-11 16:46:40',1,30002775,681,274,244,215,302,299,282,301,102,373,344,317,361,514,344,399,486,326,87,371,481,463,436,299),(3819,'2015-03-14 14:56:59','2015-10-11 16:46:40',1,30004253,46,16,242,9,71,43,39,18,32,4,2,2,102,149,0,5,50,131,10,5,14,95,0,2),(3820,'2015-03-14 14:56:59','2015-10-11 16:46:40',1,30003804,0,13,20,7,19,21,95,27,34,19,62,1,34,26,43,56,165,0,4,16,1,0,48,0),(3821,'2015-03-14 14:56:59','2015-10-11 16:46:40',1,30005198,60,83,117,67,39,49,112,60,60,213,48,120,42,151,93,59,69,153,55,88,32,71,260,117),(3822,'2015-03-14 14:56:59','2015-10-11 16:46:40',1,30001390,37,142,61,0,16,0,0,52,0,21,124,44,129,37,12,30,54,4,0,0,25,59,155,124),(3823,'2015-03-14 14:56:59','2015-10-11 16:46:40',1,30003878,71,87,214,195,58,201,150,84,6,69,77,105,127,95,215,188,129,44,178,56,76,96,206,112),(3824,'2015-03-14 14:56:59','2015-10-11 16:46:40',1,30004992,0,4,0,0,0,0,0,0,0,0,0,1,4,0,5,4,5,0,0,0,0,0,0,1),(3825,'2015-03-14 14:56:59','2015-10-11 16:46:40',1,30003008,0,0,0,23,102,69,0,83,112,0,74,74,0,0,0,0,0,26,36,0,0,120,49,6),(3826,'2015-03-14 14:56:59','2015-10-11 16:46:40',1,30005232,165,211,218,138,192,261,123,38,184,156,133,244,274,190,85,46,88,145,57,139,119,332,195,193),(3827,'2015-03-14 14:56:59','2015-10-11 16:46:40',1,30005073,18,0,5,0,0,3,5,0,10,24,81,0,18,8,18,25,23,119,0,16,0,0,0,3),(3828,'2015-03-14 14:56:59','2015-10-11 16:46:40',1,30002676,196,19,76,108,107,70,53,124,162,134,97,118,67,104,123,44,140,95,89,24,233,53,109,117),(3829,'2015-03-14 14:56:59','2015-10-11 16:46:40',1,30004255,25,46,0,31,0,0,0,0,0,0,10,10,5,0,8,66,64,0,0,0,0,0,0,0),(3830,'2015-03-14 14:56:59','2015-10-11 16:46:40',1,30003909,55,99,114,109,117,159,197,36,11,14,59,13,147,6,91,19,32,76,5,49,115,54,4,6),(3831,'2015-03-14 14:56:59','2015-10-11 16:46:40',1,30005280,0,0,0,0,0,56,1,0,0,0,42,58,20,0,7,7,65,26,0,18,1,0,67,14),(3832,'2015-03-14 14:56:59','2015-10-11 16:46:40',1,30004998,0,9,0,69,58,29,47,4,108,0,0,0,0,0,0,0,1,0,0,0,0,53,0,17),(3833,'2015-03-14 14:56:59','2015-10-11 16:46:40',1,30021672,125,216,222,191,311,290,300,204,264,326,280,294,243,402,628,478,398,514,497,849,390,486,399,669),(3834,'2015-03-14 14:56:59','2015-10-11 16:46:40',1,30005231,160,111,112,206,212,296,122,51,79,161,217,181,189,207,205,123,99,148,20,97,83,171,179,160),(3835,'2015-03-14 14:56:59','2015-10-11 16:46:40',1,30001402,0,44,7,0,48,212,27,0,88,2,0,0,25,23,9,13,17,42,0,4,43,0,41,91),(3836,'2015-03-14 14:56:59','2015-10-11 16:46:40',1,30002544,632,702,318,339,237,439,537,409,571,889,762,728,789,701,855,894,725,622,482,485,570,1037,663,966),(3837,'2015-03-14 14:56:59','2015-10-11 16:46:40',1,30002223,83,97,0,122,37,18,124,22,96,62,147,123,231,292,227,136,253,394,168,310,68,110,301,121),(3838,'2015-03-14 14:56:59','2015-10-11 16:46:40',1,30045320,64,9,17,16,2,42,39,6,12,12,18,10,16,6,11,19,23,10,9,25,14,16,19,8),(3839,'2015-03-14 14:56:59','2015-10-11 16:46:40',1,30001718,212,41,71,76,6,4,129,17,13,128,43,38,63,36,85,142,192,29,23,63,92,43,177,68),(3840,'2015-03-14 14:56:59','2015-10-11 16:46:40',1,30004657,0,0,101,0,4,23,0,0,0,0,163,117,192,83,21,0,0,0,0,0,55,71,157,47),(3841,'2015-03-14 14:56:59','2015-10-11 16:46:40',1,30000873,0,46,214,179,110,147,205,577,201,9,0,128,331,0,29,32,3,11,0,0,0,5,0,72),(3842,'2015-03-14 14:56:59','2015-03-14 14:56:59',1,30001483,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(3843,'2015-03-14 14:56:59','2015-10-11 16:46:40',1,30003286,48,39,10,14,36,143,20,0,3,9,18,3,1,44,11,8,5,12,4,35,4,47,0,13),(3844,'2015-03-14 14:56:59','2015-10-11 16:46:40',1,30004733,0,0,0,0,98,52,73,0,0,0,40,1,43,0,5,5,1,0,29,9,0,0,0,7),(3845,'2015-03-14 14:56:59','2015-10-11 16:46:40',1,30004825,0,0,0,0,0,0,0,0,71,0,0,0,0,0,0,0,0,0,0,0,0,0,0,20),(3846,'2015-03-14 14:56:59','2015-10-11 16:46:40',1,30003159,1,0,0,0,0,0,47,0,0,135,0,0,0,13,0,0,0,0,0,0,135,0,12,0),(3847,'2015-03-14 14:56:59','2015-10-11 16:46:40',1,30005118,0,1,0,0,0,0,40,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(3848,'2015-03-14 14:56:59','2015-03-14 14:56:59',1,30000379,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(3849,'2015-03-14 14:56:59','2015-10-11 16:46:40',1,30003516,32,26,37,30,47,16,32,146,31,47,37,48,34,38,68,53,94,24,29,14,73,61,29,35),(3850,'2015-03-14 14:56:59','2015-10-11 16:46:40',1,30004829,0,0,0,38,17,66,32,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(3851,'2015-03-14 14:56:59','2015-10-11 16:46:40',1,30003806,0,0,114,16,30,10,5,40,0,74,16,25,21,23,21,2,0,17,4,5,0,14,3,17),(3852,'2015-03-14 14:56:59','2015-10-11 16:46:40',1,30002211,27,48,91,8,54,12,60,41,0,35,52,69,28,37,167,4,3,97,0,6,77,6,68,102),(3853,'2015-03-14 14:56:59','2015-10-11 16:46:40',1,30004906,159,0,0,0,0,0,0,0,61,17,0,0,0,0,0,0,0,0,0,0,0,0,135,0),(3854,'2015-03-14 14:56:59','2015-10-11 16:46:40',1,30004978,98,154,310,134,253,98,225,225,47,181,172,63,97,156,324,274,272,127,34,97,298,150,226,281),(3855,'2015-03-14 14:56:59','2015-10-11 16:46:40',1,30004262,25,27,64,0,0,0,0,1,0,0,17,31,23,0,7,0,0,18,0,0,0,1,0,70),(3856,'2015-03-14 14:56:59','2015-10-11 16:46:40',1,30003488,464,626,351,740,497,605,246,372,314,375,553,597,428,830,784,1063,1005,744,397,277,661,795,858,513),(3857,'2015-03-14 14:56:59','2015-10-11 16:46:40',1,30001666,0,51,66,29,16,12,0,105,52,0,31,65,8,88,19,12,45,136,7,42,19,15,25,20),(3858,'2015-03-14 14:56:59','2015-10-11 16:46:40',1,30005061,24,0,0,54,34,67,0,0,0,74,0,1,13,17,0,24,25,16,0,0,0,0,84,0),(3859,'2015-03-14 14:56:59','2015-10-11 16:46:40',1,30005013,4,146,228,29,100,159,23,76,0,0,87,0,0,9,53,8,1,43,57,159,320,98,37,5),(3860,'2015-03-14 14:56:59','2015-10-11 16:46:40',1,30001693,5,62,18,0,14,0,0,0,14,0,0,0,0,50,36,0,22,89,54,46,0,39,19,80),(3861,'2015-03-14 14:56:59','2015-10-11 16:46:40',1,30000144,689,572,615,683,450,371,442,294,336,399,467,511,411,482,623,761,808,458,358,228,559,540,562,355),(3862,'2015-03-14 14:56:59','2015-10-11 16:46:40',1,30003573,0,0,30,0,0,0,0,133,4,0,0,0,0,0,4,5,3,0,0,2,26,0,0,0),(3863,'2015-03-14 14:56:59','2015-10-11 16:46:40',1,30005241,7,46,0,0,49,49,0,0,0,3,3,8,5,0,7,8,1,5,3,3,70,2,30,24),(3864,'2015-03-14 14:56:59','2015-10-11 16:46:40',1,30002632,11,38,67,235,33,80,64,147,46,116,163,158,109,36,114,141,125,7,54,94,89,109,27,14),(3865,'2015-03-14 14:56:59','2015-10-11 16:46:40',1,30004114,150,51,25,90,24,105,110,5,229,63,235,84,12,245,53,150,123,48,3,60,83,54,103,96),(3866,'2015-03-14 14:56:59','2015-10-11 16:46:40',1,30003277,0,37,0,0,3,7,1,3,16,0,8,6,5,0,0,0,0,0,0,11,22,4,0,7),(3867,'2015-03-14 14:56:59','2015-10-11 16:46:40',1,30004782,0,0,0,0,0,0,0,87,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(3868,'2015-03-14 14:56:59','2015-10-11 16:46:40',1,30001324,0,0,121,0,0,25,0,0,0,0,0,0,0,1,0,0,0,0,0,7,0,0,0,15),(3869,'2015-03-14 14:56:59','2015-10-11 16:46:40',1,30003295,0,0,141,25,23,20,10,0,48,0,0,0,57,0,11,11,33,0,15,1,0,4,0,0),(3870,'2015-03-14 14:56:59','2015-10-11 16:46:40',1,30002009,0,16,2,5,9,5,7,11,16,10,21,63,8,84,75,92,137,38,5,82,42,91,143,8),(3871,'2015-03-14 14:56:59','2015-10-11 16:46:40',1,30005178,0,0,0,0,0,73,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,3,0),(3872,'2015-03-14 14:56:59','2015-10-11 16:46:40',1,30002145,0,0,0,0,0,0,0,0,0,0,0,0,77,0,0,0,0,0,0,0,0,0,0,0),(3873,'2015-03-14 14:56:59','2015-10-11 16:46:40',1,30001707,164,140,82,234,45,37,8,16,47,31,119,94,77,69,18,0,14,71,35,0,9,40,0,176),(3874,'2015-03-14 14:56:59','2015-10-11 16:46:40',1,30003735,481,90,221,116,186,136,417,18,68,32,97,192,227,399,468,93,61,211,31,79,177,152,182,255),(3875,'2015-03-14 14:56:59','2015-10-11 16:46:40',1,30001403,221,248,412,40,266,222,355,107,252,375,537,392,447,380,494,468,680,379,363,257,57,380,344,216),(3876,'2015-03-14 14:56:59','2015-10-11 16:46:40',1,30001391,246,113,264,227,249,121,178,287,276,203,347,360,316,341,441,268,176,336,141,182,125,187,295,207),(3877,'2015-03-14 14:56:59','2015-10-11 16:46:40',1,30001669,248,214,148,154,216,302,176,108,136,276,282,143,215,288,587,698,690,434,397,397,210,344,439,220),(3878,'2015-03-14 14:56:59','2015-10-11 16:46:40',1,30001652,71,11,87,79,57,52,38,55,3,22,54,59,65,39,59,58,46,109,22,26,26,127,36,13),(3879,'2015-03-14 14:56:59','2015-10-11 16:46:40',1,30005081,30,101,269,79,169,370,0,0,21,24,0,14,1,35,45,61,110,1,0,0,8,0,187,1),(3880,'2015-03-14 14:56:59','2015-10-11 16:46:40',1,30005277,0,22,0,18,0,38,0,0,8,99,0,75,67,0,0,0,0,40,0,0,1,0,0,0),(3881,'2015-03-14 14:56:59','2015-10-11 16:46:40',1,30000066,195,26,30,18,26,5,158,5,0,0,0,0,0,29,70,85,15,4,30,4,5,18,2,241),(3882,'2015-03-14 14:56:59','2015-10-11 16:46:40',1,30003167,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,116,0,0),(3883,'2015-03-14 14:56:59','2015-10-11 16:46:40',1,30004313,37,0,136,127,0,0,0,0,23,0,0,0,36,0,0,0,0,28,0,0,0,0,0,0),(3884,'2015-03-14 14:56:59','2015-03-14 14:56:59',1,30000654,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(3885,'2015-03-14 14:56:59','2015-10-11 16:46:40',1,30000243,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,32,0,0,0,0,0),(3886,'2015-03-14 14:56:59','2015-10-11 16:46:40',1,30004411,94,243,311,327,288,357,268,0,0,43,9,14,0,175,0,41,103,77,63,80,0,43,0,0),(3887,'2015-03-14 14:56:59','2015-10-11 16:46:40',1,30003262,0,0,0,0,0,76,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(3888,'2015-03-14 14:56:59','2015-10-11 16:46:40',1,30000866,0,0,0,6,39,3,0,0,0,0,0,0,0,0,89,1,0,0,0,0,0,0,0,0),(3889,'2015-03-14 14:56:59','2015-10-11 16:46:40',1,30002870,0,0,0,5,0,0,0,0,68,0,16,111,59,95,192,10,245,129,45,275,77,35,334,875),(3890,'2015-03-14 14:56:59','2015-10-11 16:46:40',1,30004559,0,0,167,58,0,0,0,0,0,5,5,44,131,0,0,0,0,0,0,0,0,0,0,0),(3891,'2015-03-14 14:56:59','2015-10-11 16:46:40',1,30003613,67,0,142,285,259,89,1,1,0,120,20,1,0,0,83,25,0,0,0,0,0,4,31,0),(3892,'2015-03-14 14:56:59','2015-10-11 16:46:40',1,30004431,0,0,0,40,0,0,0,0,0,18,180,54,0,0,0,0,0,0,0,51,159,0,153,96),(3893,'2015-03-14 14:56:59','2015-10-11 16:46:40',1,30001012,6,22,5,7,0,0,137,80,0,6,9,19,34,1,8,5,4,91,0,101,221,43,35,26),(3894,'2015-03-14 14:56:59','2015-10-11 16:46:40',1,30003604,84,11,90,43,59,50,37,176,0,112,92,99,22,90,30,25,76,3,10,31,36,80,20,50),(3895,'2015-03-14 14:56:59','2015-10-11 16:46:40',1,30000019,0,0,0,0,0,0,54,0,0,0,0,3,4,0,0,0,0,0,0,0,0,0,0,0),(3896,'2015-03-14 14:56:59','2015-10-11 16:46:40',1,30000153,550,128,231,366,300,278,173,173,196,325,275,422,300,162,423,469,502,338,174,256,344,278,277,107),(3897,'2015-03-14 14:56:59','2015-10-11 16:46:40',1,30003271,0,0,121,61,44,0,5,172,0,0,0,0,0,0,0,0,0,0,0,53,80,0,13,17),(3898,'2015-03-14 14:56:59','2015-03-14 14:56:59',1,30000380,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(3899,'2015-03-14 14:56:59','2015-10-11 16:46:40',1,30005048,110,67,104,132,81,72,90,98,130,114,310,226,233,457,232,260,220,212,78,299,265,205,114,371),(3900,'2015-03-14 14:56:59','2015-10-11 16:46:40',1,30003434,3,71,56,36,51,0,51,33,43,36,118,136,50,218,171,170,100,134,223,87,121,91,61,173),(3901,'2015-03-14 14:56:59','2015-03-14 14:56:59',1,30001147,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(3902,'2015-03-14 14:56:59','2015-10-11 16:46:40',1,30002273,0,0,0,0,0,0,0,0,4,0,0,0,0,0,0,0,0,0,0,4,74,0,2,20),(3903,'2015-03-14 14:56:59','2015-10-11 16:46:40',1,30003581,6,144,430,0,74,67,123,51,35,0,59,181,8,0,46,0,0,95,78,30,43,0,69,19),(3904,'2015-03-14 14:56:59','2015-10-11 16:46:40',1,30003940,0,0,20,78,0,0,0,0,0,0,0,0,0,0,0,0,0,2,0,0,0,0,0,0),(3905,'2015-03-14 14:56:59','2015-10-11 16:46:40',1,30002714,151,164,40,47,188,130,253,8,18,129,339,177,102,42,154,86,45,287,62,292,189,46,255,115),(3906,'2015-03-14 14:56:59','2015-10-11 16:46:40',1,30002106,0,100,0,0,8,10,50,0,0,0,0,0,0,0,68,39,0,0,0,0,0,0,0,0),(3907,'2015-03-14 14:56:59','2015-10-11 16:46:40',1,30004065,17,0,0,0,0,0,0,0,0,0,0,0,0,0,134,72,0,0,0,0,0,0,0,0),(3908,'2015-03-14 14:56:59','2015-03-14 14:56:59',1,30001470,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(3909,'2015-03-14 14:56:59','2015-10-11 16:46:40',1,30000438,0,163,0,98,104,130,0,73,58,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(3910,'2015-03-14 14:56:59','2015-03-14 14:56:59',1,30001628,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(3911,'2015-03-14 14:56:59','2015-10-11 16:46:40',1,30004711,0,69,0,0,0,0,0,47,0,0,3,7,4,48,0,0,0,0,0,4,0,5,5,8),(3912,'2015-03-14 14:56:59','2015-10-11 16:46:40',1,30045333,0,1,65,7,0,0,123,0,76,21,21,16,8,2,1,46,80,45,9,0,10,0,1,3),(3913,'2015-03-14 14:56:59','2015-10-11 16:46:40',1,30005284,1,76,0,0,115,102,6,0,0,84,76,93,37,32,0,0,0,0,0,0,1,0,33,1),(3914,'2015-03-14 14:56:59','2015-10-11 16:46:40',1,30004770,0,0,0,0,0,0,0,13,0,0,0,0,0,4,0,0,15,385,0,392,467,129,172,284),(3915,'2015-03-14 14:56:59','2015-10-11 16:46:40',1,30000027,56,7,71,0,0,58,3,0,0,5,8,105,10,0,5,7,8,28,112,193,88,16,23,4),(3916,'2015-03-14 14:56:59','2015-10-11 16:46:40',1,30004293,0,14,10,0,0,0,8,9,0,0,0,8,25,0,0,7,98,0,0,0,0,0,44,1),(3917,'2015-03-14 14:56:59','2015-10-11 16:46:40',1,30001863,0,0,0,0,0,0,0,0,27,0,25,0,0,0,0,0,2,0,0,0,0,3,0,2),(3918,'2015-03-14 14:56:59','2015-10-11 16:46:40',1,30000738,0,0,0,0,0,0,0,0,0,0,0,0,5,0,0,0,8,9,0,0,0,6,7,18),(3919,'2015-03-14 14:56:59','2015-10-11 16:46:40',1,30005162,0,0,0,82,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(3920,'2015-03-14 14:56:59','2015-03-14 14:56:59',1,30000421,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(3921,'2015-03-14 14:56:59','2015-03-14 14:56:59',1,30000727,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(3922,'2015-03-14 14:56:59','2015-03-14 14:56:59',1,30000990,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(3923,'2015-03-14 14:56:59','2015-10-11 16:46:40',1,30002733,136,156,624,321,418,309,438,325,448,474,681,611,557,1056,360,420,507,576,169,318,224,314,579,164),(3924,'2015-03-14 14:56:59','2015-10-11 16:46:40',1,30004754,0,0,0,0,0,0,0,0,0,354,0,0,30,20,82,227,244,54,624,414,53,14,105,268),(3925,'2015-03-14 14:56:59','2015-10-11 16:46:40',1,30002662,255,55,71,171,261,252,257,206,183,83,82,102,84,288,116,95,80,223,124,167,244,49,90,281),(3926,'2015-03-14 14:56:59','2015-10-11 16:46:40',1,30000161,354,103,218,115,158,3,250,411,141,296,562,470,108,175,485,157,156,175,52,37,244,100,278,203),(3927,'2015-03-14 14:56:59','2015-10-11 16:46:40',1,30004395,291,171,149,345,759,606,202,118,645,156,588,749,128,0,40,201,273,0,16,0,0,43,114,65),(3928,'2015-03-14 14:56:59','2015-10-11 16:46:40',1,30000978,0,0,0,0,0,0,0,0,0,2,11,0,0,0,0,0,0,0,0,0,0,0,0,0),(3929,'2015-03-14 14:56:59','2015-10-11 16:46:40',1,30005147,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,3,7,36,0,0,0,0,0,0),(3930,'2015-03-14 14:56:59','2015-10-11 16:46:40',1,30003283,5,0,0,28,0,0,0,0,0,0,0,0,0,13,0,0,0,18,0,0,4,8,0,0),(3931,'2015-03-14 14:56:59','2015-10-11 16:46:40',1,30001106,244,84,9,0,5,16,368,1040,4,123,675,866,507,513,17,24,30,313,17,118,178,571,895,633),(3932,'2015-03-14 14:56:59','2015-10-11 16:46:40',1,30002370,0,0,0,0,0,0,0,0,2,3,4,0,0,122,8,4,5,0,0,0,0,0,0,0),(3933,'2015-03-14 14:56:59','2015-03-14 14:56:59',1,30000316,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(3934,'2015-03-14 14:56:59','2015-03-14 14:56:59',1,30002290,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(3935,'2015-03-14 14:56:59','2015-10-11 16:46:40',1,30004647,336,55,299,583,959,1001,153,292,222,0,0,0,0,0,0,0,0,0,358,101,237,109,46,401),(3936,'2015-03-14 14:56:59','2015-10-11 16:46:40',1,30045353,1,10,10,5,12,18,11,30,3,1,119,7,5,22,1,0,37,0,3,4,10,11,6,3),(3937,'2015-03-14 14:56:59','2015-10-11 16:46:40',1,30002490,0,330,68,265,289,355,82,126,23,139,39,25,26,92,146,132,130,215,0,141,27,97,0,162),(3938,'2015-03-14 14:56:59','2015-10-11 16:46:40',1,30002615,247,192,299,385,372,154,0,401,187,0,0,0,0,561,330,500,704,462,754,275,78,0,0,187),(3939,'2015-03-14 14:56:59','2015-10-11 16:46:40',1,30001310,66,69,0,0,0,0,143,0,0,6,163,86,77,64,74,41,83,83,74,95,143,49,91,31),(3940,'2015-03-14 14:56:59','2015-03-14 14:56:59',1,30001449,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(3941,'2015-03-14 14:56:59','2015-10-11 16:46:40',1,30004787,31,0,0,0,0,0,0,0,0,47,0,0,17,0,93,377,588,603,0,0,139,10,44,233),(3942,'2015-03-14 14:56:59','2015-10-11 16:46:40',1,30000797,258,0,0,0,5,0,0,0,0,0,0,0,0,0,0,65,77,0,0,0,0,0,57,109),(3943,'2015-03-14 14:56:59','2015-10-11 16:46:40',1,30004389,224,1212,381,897,636,1415,34,714,593,0,0,0,174,289,80,30,39,0,0,141,55,372,21,0),(3944,'2015-03-14 14:56:59','2015-10-11 16:46:40',1,30002001,0,0,0,32,0,0,0,0,42,0,0,0,0,8,0,0,0,0,0,0,0,0,0,0),(3945,'2015-03-14 14:56:59','2015-10-11 16:46:40',1,30001326,0,19,0,0,0,16,0,4,0,29,66,66,18,62,17,8,0,19,0,0,166,0,0,29),(3946,'2015-03-14 14:56:59','2015-10-11 16:46:40',1,30000872,0,16,0,0,185,63,0,461,223,318,216,169,502,325,81,18,0,188,129,365,69,40,62,130),(3947,'2015-03-14 14:56:59','2015-10-11 16:46:40',1,30000274,72,97,0,0,0,51,0,828,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,137),(3948,'2015-03-14 14:56:59','2015-10-11 16:46:40',1,30004321,186,394,40,0,230,246,69,118,265,34,70,0,0,2,31,79,56,0,0,0,0,24,53,51),(3949,'2015-03-14 14:56:59','2015-10-11 16:46:40',1,30002844,0,0,0,0,0,0,0,0,0,1,24,8,0,0,0,0,0,0,0,0,0,0,0,0),(3950,'2015-03-14 14:56:59','2015-10-11 16:46:40',1,30000586,2,12,0,1,109,129,0,0,90,5,0,0,0,33,3,6,43,7,0,19,93,35,5,0),(3951,'2015-03-14 14:56:59','2015-10-11 16:46:40',1,30004737,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,17,0,0,0,0,0,0,0),(3952,'2015-03-14 14:56:59','2015-03-14 14:56:59',1,30002132,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(3953,'2015-03-14 14:56:59','2015-10-11 16:46:40',1,30003222,173,350,315,257,47,61,642,463,336,5,53,186,554,65,0,0,83,101,351,93,190,1118,281,227),(3954,'2015-03-14 14:56:59','2015-10-11 16:46:40',1,30004749,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,134,0,0,0),(3955,'2015-03-14 14:56:59','2015-03-14 14:56:59',1,30000682,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(3956,'2015-03-14 14:56:59','2015-03-14 14:56:59',1,30000432,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(3957,'2015-03-14 14:56:59','2015-10-11 16:46:40',1,30000256,0,41,0,0,30,47,0,0,0,0,0,0,0,90,0,0,0,0,0,0,141,0,0,0),(3958,'2015-03-14 14:56:59','2015-10-11 16:46:40',1,30000717,0,33,26,35,12,6,22,0,0,47,0,0,0,0,2,0,0,0,0,0,0,0,0,3),(3959,'2015-03-14 14:56:59','2015-10-11 16:46:40',1,30004337,0,0,0,0,0,0,0,0,0,0,0,0,51,0,0,0,0,0,0,0,0,0,16,57),(3960,'2015-03-14 14:56:59','2015-10-11 16:46:40',1,30001838,0,1,0,0,0,0,54,0,0,1,2,4,1,0,0,0,0,0,0,133,30,0,0,0),(3961,'2015-03-14 14:56:59','2015-10-11 16:46:40',1,30000235,15,43,0,99,0,0,0,38,348,0,0,0,0,0,0,0,0,182,0,0,0,0,0,0),(3962,'2015-03-14 14:56:59','2015-03-14 14:56:59',1,30001196,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(3963,'2015-03-14 14:56:59','2015-10-11 16:46:40',1,30002471,563,370,462,374,488,708,0,0,0,277,82,38,188,189,108,32,32,6,0,0,0,0,13,250),(3964,'2015-03-14 14:56:59','2015-10-11 16:46:40',1,30001248,0,0,0,0,0,0,0,0,0,0,7,7,0,0,0,0,9,111,0,0,0,52,9,0),(3965,'2015-03-14 14:56:59','2015-10-11 16:46:40',1,30004054,0,113,69,0,235,271,0,0,44,339,14,13,0,0,0,0,0,0,0,0,0,0,0,0),(3966,'2015-03-14 14:56:59','2015-03-14 14:56:59',1,30000618,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(3967,'2015-03-14 14:56:59','2015-10-11 16:46:40',1,30001562,0,0,0,0,2,2,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,91,103),(3968,'2015-03-14 14:56:59','2015-10-11 16:46:40',1,30004229,0,2020,1260,557,830,1245,52,416,19,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(3969,'2015-03-14 14:56:59','2015-10-11 16:46:40',1,30004571,0,0,0,0,1,0,0,0,0,0,0,0,5,86,72,0,0,0,0,0,0,0,0,0),(3970,'2015-03-14 14:56:59','2015-10-11 16:46:40',1,30004845,0,0,0,0,0,0,0,50,3,0,0,0,117,0,36,21,0,148,0,0,0,206,188,97),(3971,'2015-03-14 14:56:59','2015-03-14 14:56:59',1,30000507,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(3972,'2015-03-14 14:56:59','2015-10-11 16:46:40',1,30003112,118,0,0,0,0,26,0,0,0,0,2,77,16,0,0,0,0,0,0,0,0,0,0,0),(3973,'2015-03-14 14:56:59','2015-10-11 16:46:40',1,30003146,13,22,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(3974,'2015-03-14 14:56:59','2015-10-11 16:46:40',1,30003669,0,1,31,63,33,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(3975,'2015-03-14 14:56:59','2015-10-11 16:46:40',1,30003975,195,0,0,0,0,0,0,0,0,94,26,43,83,70,45,0,0,0,118,70,156,302,51,51),(3976,'2015-03-14 14:56:59','2015-10-11 16:46:40',1,30000946,0,0,0,0,0,0,0,0,0,0,5,5,0,0,0,0,0,0,16,0,0,0,0,0),(3977,'2015-03-14 14:56:59','2015-10-11 16:46:40',1,30000324,487,487,151,302,739,700,846,0,72,168,278,21,245,361,200,370,522,239,0,1,0,155,363,281),(3978,'2015-03-14 14:56:59','2015-10-11 16:46:40',1,30000715,0,0,0,8,0,0,0,0,0,0,0,0,0,0,39,3,0,56,0,48,93,0,0,102),(3979,'2015-03-14 14:56:59','2015-10-11 16:46:40',1,30004846,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,133,0,0,0,12),(3980,'2015-03-14 14:56:59','2015-10-11 16:46:40',1,30001323,29,0,0,0,0,0,23,0,0,106,85,75,39,109,92,130,110,0,0,0,76,115,63,53),(3981,'2015-03-14 14:56:59','2015-10-11 16:46:40',1,30000785,21,190,0,0,236,99,96,106,52,0,67,111,38,0,0,0,55,292,0,0,0,10,0,14),(3982,'2015-03-14 14:56:59','2015-10-11 16:46:40',1,30001763,154,898,296,425,327,287,485,432,211,0,0,0,0,0,0,0,0,0,0,0,0,62,0,0),(3983,'2015-03-14 14:56:59','2015-03-14 14:56:59',1,30000413,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(3984,'2015-03-14 14:56:59','2015-10-11 16:46:40',1,30004066,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,45,0,0,0,0,0,0),(3985,'2015-03-14 14:56:59','2015-10-11 16:46:40',1,30003183,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,31),(3986,'2015-03-14 14:56:59','2015-10-11 16:46:40',1,30004408,0,106,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(3987,'2015-03-14 14:56:59','2015-10-11 16:46:40',1,30003714,49,76,53,0,50,58,11,0,72,309,244,420,159,32,40,61,166,433,77,69,21,0,86,37),(3988,'2015-03-14 14:56:59','2015-10-11 16:46:40',1,30001165,0,0,0,0,0,0,0,0,0,0,3,3,0,0,0,0,0,0,0,0,87,127,0,0),(3989,'2015-03-14 14:56:59','2015-10-11 16:46:40',1,30002363,0,0,0,1,1,0,0,0,4,6,5,5,0,0,0,0,0,0,0,0,0,0,0,0),(3990,'2015-03-14 14:56:59','2015-10-11 16:46:40',1,30004744,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,23,149,133),(3991,'2015-03-14 14:56:59','2015-03-14 14:56:59',1,30004855,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(3992,'2015-03-14 14:56:59','2015-10-11 16:46:40',1,30001080,0,0,259,54,96,44,6,4,6,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(3993,'2015-03-14 14:56:59','2015-10-11 16:46:40',1,30001935,0,0,0,0,0,0,43,0,0,0,0,0,0,5,30,0,0,0,0,0,0,0,0,0),(3994,'2015-03-14 14:56:59','2015-10-11 16:46:40',1,30004343,487,538,979,1200,609,1098,500,530,562,302,155,358,408,307,73,72,154,348,0,0,131,192,273,322),(3995,'2015-03-14 14:56:59','2015-10-11 16:46:40',1,30002138,0,0,0,0,94,0,208,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(3996,'2015-03-14 14:56:59','2015-10-11 16:46:40',1,30003221,50,0,2,2,1,1,0,24,250,75,34,33,0,47,0,0,0,57,1,75,4,99,23,0),(3997,'2015-03-14 14:56:59','2015-10-11 16:46:40',1,30001246,0,0,0,0,0,0,0,0,0,158,29,70,37,96,61,121,105,150,138,1,74,131,87,269),(3998,'2015-03-14 14:56:59','2015-10-11 16:46:40',1,30001033,13,1,0,0,1,1,18,0,31,58,18,13,22,1,0,0,0,26,14,78,21,0,0,66),(3999,'2015-03-14 14:56:59','2015-10-11 16:46:40',1,30000899,34,0,27,14,6,0,12,5,8,11,9,10,12,0,0,0,0,0,0,5,5,5,0,3),(4000,'2015-03-14 14:56:59','2015-10-11 16:46:40',1,30003164,0,0,120,0,0,0,0,0,0,0,12,0,0,89,27,0,0,0,234,47,79,170,12,0),(4001,'2015-03-14 14:56:59','2015-03-14 14:56:59',1,30003181,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(4002,'2015-03-14 14:56:59','2015-10-11 16:46:40',1,30001766,108,0,94,0,0,0,0,0,0,1180,1081,521,270,778,740,720,609,780,280,188,800,820,187,95),(4003,'2015-03-14 14:56:59','2015-10-11 16:46:40',1,30001564,0,0,0,0,0,0,0,0,0,41,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(4004,'2015-03-14 14:56:59','2015-10-11 16:46:40',1,30001772,0,0,0,0,0,0,0,0,0,0,0,0,0,0,72,0,0,0,0,0,0,0,0,83),(4005,'2015-03-14 14:56:59','2015-10-11 16:46:40',1,30001749,0,6,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,17,0,0,0,0,0,0),(4006,'2015-03-14 14:56:59','2015-10-11 16:46:40',1,30001305,32,0,0,0,0,0,0,0,0,14,85,0,72,0,0,0,0,0,19,2,0,1,95,0),(4007,'2015-03-14 14:56:59','2015-10-11 16:46:40',1,30002364,0,0,0,0,0,0,0,50,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(4008,'2015-03-14 14:56:59','2015-03-14 14:56:59',1,30005144,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(4009,'2015-03-14 14:56:59','2015-03-14 14:56:59',1,30002104,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(4010,'2015-03-14 14:56:59','2015-10-11 16:46:40',1,30004837,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,32,0,0,0),(4011,'2015-03-14 14:56:59','2015-10-11 16:46:40',1,30000505,0,0,0,0,0,0,28,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,279,65),(4012,'2015-03-14 14:56:59','2015-03-14 14:56:59',1,30001467,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(4013,'2015-03-14 14:56:59','2015-10-11 16:46:40',1,30004448,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,12,0),(4014,'2015-03-14 14:56:59','2015-03-14 14:56:59',1,30002307,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(4015,'2015-03-14 14:56:59','2015-10-11 16:46:40',1,30005172,0,382,90,100,66,120,0,173,260,99,0,0,0,112,1,0,51,1,0,0,0,0,0,70),(4016,'2015-03-14 14:56:59','2015-10-11 16:46:40',1,30002431,378,126,145,253,352,357,451,43,0,402,502,441,283,0,192,189,228,390,178,11,0,182,88,278),(4017,'2015-03-14 14:56:59','2015-10-11 16:46:40',1,30000475,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,44,0,0),(4018,'2015-03-14 14:56:59','2015-10-11 16:46:40',1,30004857,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,161,0,0,0),(4019,'2015-03-14 14:56:59','2015-03-14 14:56:59',1,30000941,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(4020,'2015-03-14 14:56:59','2015-10-11 16:46:40',1,30001903,0,0,0,0,0,0,0,0,0,0,0,1,23,0,0,0,0,0,0,18,0,27,0,0),(4021,'2015-03-14 14:56:59','2015-10-11 16:46:40',1,30002186,207,807,1159,802,746,1297,421,17,0,334,574,392,148,105,501,358,384,60,16,168,286,291,428,302),(4022,'2015-03-14 14:56:59','2015-10-11 16:46:40',1,30002288,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2),(4023,'2015-03-14 14:56:59','2015-03-14 14:56:59',1,30001473,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(4024,'2015-03-14 14:56:59','2015-10-11 16:46:40',1,30003739,63,257,24,0,73,131,294,238,542,536,215,282,268,395,290,270,117,119,261,307,168,223,158,32),(4025,'2015-03-14 14:56:59','2015-10-11 16:46:40',1,30001783,250,0,42,226,62,26,49,52,4,172,51,233,990,9,269,16,198,428,33,0,0,263,299,91),(4026,'2015-03-14 14:56:59','2015-10-11 16:46:40',1,30002479,9,231,13,344,221,225,113,7,0,0,0,0,68,0,0,0,11,16,0,0,0,0,0,0),(4027,'2015-03-14 14:56:59','2015-10-11 16:46:40',1,30002893,107,705,91,21,281,294,0,0,1239,0,0,0,72,4,0,0,0,429,11,1,0,160,89,43),(4028,'2015-03-14 14:56:59','2015-10-11 16:46:40',1,30000722,0,0,0,0,0,0,0,0,116,132,0,0,0,0,0,0,0,0,0,0,0,0,0,1),(4029,'2015-03-14 14:56:59','2015-10-11 16:46:40',1,30000938,0,0,0,0,0,0,5,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(4030,'2015-03-14 14:56:59','2015-10-11 16:46:40',1,30001565,3,0,7,0,2,3,0,0,0,0,76,134,21,0,0,0,0,0,0,0,0,0,0,0),(4031,'2015-03-14 14:56:59','2015-10-11 16:46:40',1,30003719,0,0,80,0,325,205,109,431,815,81,225,135,144,43,34,148,147,119,154,91,45,223,103,213),(4032,'2015-03-14 14:56:59','2015-10-11 16:46:40',1,30004815,0,0,0,0,0,0,0,0,0,0,0,0,0,32,0,0,0,0,0,0,0,0,0,0),(4033,'2015-03-14 14:56:59','2015-10-11 16:46:40',1,30000481,0,0,0,0,0,0,277,0,0,0,0,0,0,15,128,0,0,0,0,0,0,105,0,57),(4034,'2015-03-14 14:56:59','2015-10-11 16:46:40',1,30001596,0,0,0,0,0,0,21,0,0,237,585,546,490,458,572,585,276,823,290,383,269,219,383,375),(4035,'2015-03-14 14:56:59','2015-10-11 16:46:40',1,30003174,137,604,299,674,143,422,456,196,108,37,0,0,0,21,0,0,0,27,170,237,281,0,25,25),(4036,'2015-03-14 14:56:59','2015-10-11 16:46:40',1,30001137,0,0,3,0,0,0,76,0,0,50,254,123,126,3,8,4,12,6,0,0,4,33,17,121),(4037,'2015-03-14 14:56:59','2015-10-11 16:46:40',1,30004909,133,0,0,857,421,0,170,1221,941,78,108,131,190,4,0,0,25,0,0,15,20,110,56,63),(4038,'2015-03-14 14:56:59','2015-10-11 16:46:40',1,30001163,0,0,0,0,0,0,0,0,0,0,22,4,0,0,0,0,0,0,0,0,90,0,0,0),(4039,'2015-03-14 14:56:59','2015-10-11 16:46:40',1,30004198,0,65,0,0,0,0,0,0,65,18,78,0,0,0,0,0,0,0,0,0,0,0,0,0),(4040,'2015-03-14 14:56:59','2015-10-11 16:46:40',1,30000793,0,151,144,0,0,0,120,0,56,0,159,209,71,36,101,11,26,95,10,38,173,5,235,26),(4041,'2015-03-14 14:56:59','2015-03-14 14:56:59',1,30001617,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(4042,'2015-03-14 14:56:59','2015-10-11 16:46:40',1,30003037,85,275,712,531,237,310,381,183,373,298,688,457,231,501,674,658,553,613,349,813,635,434,347,421),(4043,'2015-03-14 14:56:59','2015-10-11 16:46:40',1,30004610,0,0,0,187,0,0,0,0,0,398,1,0,7,0,171,0,90,36,0,44,342,162,145,437),(4044,'2015-03-14 14:56:59','2015-10-11 16:46:40',1,30003292,0,0,0,0,0,0,8,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(4045,'2015-03-14 14:56:59','2015-03-14 14:56:59',1,30002829,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(4046,'2015-03-14 14:56:59','2015-10-11 16:46:40',1,30004714,0,169,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,57,0,0,0,0,0),(4047,'2015-03-14 14:56:59','2015-10-11 16:46:40',1,30000526,0,180,0,0,0,0,9,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(4048,'2015-03-14 14:56:59','2015-10-11 16:46:40',1,30004354,0,52,0,0,0,0,0,192,149,0,52,52,0,0,234,254,68,0,0,0,135,27,0,16),(4049,'2015-03-14 14:56:59','2015-10-11 16:46:40',1,30004002,5,129,231,103,210,197,218,17,0,57,177,12,27,184,475,438,243,189,0,143,299,32,10,167),(4050,'2015-03-14 14:56:59','2015-10-11 16:46:40',1,30004041,0,0,0,11,0,0,0,0,5,0,0,0,53,0,30,30,0,0,0,1,0,0,0,4),(4051,'2015-03-14 14:56:59','2015-10-11 16:46:40',1,30004027,0,0,0,0,0,0,73,0,0,0,0,0,0,0,0,0,0,0,0,0,79,0,0,0),(4052,'2015-03-14 14:56:59','2015-10-11 16:46:40',1,30003244,558,0,82,0,328,41,0,68,0,0,0,0,0,0,0,0,4,10,0,0,3,48,17,0),(4053,'2015-03-14 14:56:59','2015-10-11 16:46:40',1,30004752,0,0,0,0,0,0,0,0,0,0,0,0,0,239,0,0,13,120,0,0,0,11,63,93),(4054,'2015-03-14 14:56:59','2015-10-11 16:46:40',1,30000767,108,10,0,0,0,0,0,1,0,0,0,0,59,0,0,0,0,0,0,0,0,17,0,0),(4055,'2015-03-14 14:56:59','2015-10-11 16:46:40',1,30003266,0,0,0,68,151,132,151,0,3,53,0,0,5,110,89,178,98,159,319,128,0,158,0,0),(4056,'2015-03-14 14:56:59','2015-10-11 16:46:40',1,30004402,139,474,688,288,134,58,16,5,757,671,357,469,601,270,730,1028,589,466,176,694,434,808,797,789),(4057,'2015-03-14 14:56:59','2015-03-14 14:56:59',1,30003236,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(4058,'2015-03-14 14:56:59','2015-10-11 16:46:40',1,30001107,28,0,16,8,35,122,182,0,45,0,271,101,199,112,692,490,671,21,27,20,30,9,94,1140),(4059,'2015-03-14 14:56:59','2015-10-11 16:46:40',1,30002330,0,0,5,0,0,0,0,3,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(4060,'2015-03-14 14:56:59','2015-10-11 16:46:40',1,30002837,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,13,26,0,0,0,0,0,0,0),(4061,'2015-03-14 14:56:59','2015-10-11 16:46:40',1,30002002,0,0,0,0,0,0,3,0,0,0,0,0,0,0,0,4,4,0,0,0,0,0,0,0),(4062,'2015-03-14 14:56:59','2015-10-11 16:46:40',1,30000658,0,0,0,5,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,6,0),(4063,'2015-03-14 14:56:59','2015-10-11 16:46:40',1,30002324,0,0,1,20,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,0,0,0),(4064,'2015-03-14 14:56:59','2015-10-11 16:46:40',1,30005099,0,0,0,0,0,0,0,0,0,0,0,0,3,0,0,0,0,0,0,0,0,6,2,11),(4065,'2015-03-14 14:56:59','2015-10-11 16:46:40',1,30003151,0,71,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,17,0,37),(4066,'2015-03-14 14:56:59','2015-10-11 16:46:40',1,30005112,521,0,0,0,0,0,0,6,0,0,0,0,0,0,0,0,0,0,0,5,90,0,0,0),(4067,'2015-03-14 14:56:59','2015-10-11 16:46:40',1,30004648,87,0,0,0,0,0,0,0,0,0,10,10,0,30,0,22,75,110,0,0,4,6,16,30),(4068,'2015-03-14 14:56:59','2015-10-11 16:46:40',1,30000950,0,0,0,0,0,0,0,0,0,134,0,0,0,0,0,135,136,0,0,0,0,0,0,0),(4069,'2015-03-14 14:56:59','2015-10-11 16:46:40',1,30003127,1526,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(4070,'2015-03-14 14:56:59','2015-03-14 14:56:59',1,30001491,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(4071,'2015-03-14 14:56:59','2015-10-11 16:46:40',1,30001189,0,0,0,0,0,0,0,0,0,0,0,0,0,12,29,0,0,0,0,0,0,0,0,0),(4072,'2015-03-14 14:56:59','2015-10-11 16:46:40',1,30001265,0,0,0,0,0,0,36,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1),(4073,'2015-03-14 14:56:59','2015-10-11 16:46:40',1,30002013,0,0,0,0,0,0,0,0,0,3,0,0,0,0,0,0,0,0,0,0,0,0,0,1),(4074,'2015-03-14 14:56:59','2015-10-11 16:46:40',1,30004522,0,0,0,0,0,0,0,0,0,0,0,0,0,9,0,0,0,0,94,32,0,0,14,0),(4075,'2015-03-14 14:56:59','2015-10-11 16:46:40',1,30002182,32,10,52,18,14,4,4,12,5,16,10,6,4,44,80,122,93,7,0,0,9,7,51,4),(4076,'2015-03-14 14:56:59','2015-10-11 16:46:40',1,30000291,456,0,48,45,131,125,119,34,0,0,130,142,214,13,145,119,129,22,0,60,52,161,197,102),(4077,'2015-03-14 14:56:59','2015-10-11 16:46:40',1,30001577,6,0,0,1,0,0,0,0,0,0,0,0,0,129,0,0,0,0,0,0,0,0,0,0),(4078,'2015-03-14 14:56:59','2015-03-14 14:56:59',1,30001102,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(4079,'2015-03-14 14:56:59','2015-10-11 16:46:40',1,30000320,0,0,29,0,189,0,0,54,0,142,128,116,0,0,0,0,0,10,33,0,0,0,0,10),(4080,'2015-03-14 14:56:59','2015-10-11 16:46:40',1,30004853,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,136,0,0,0,0,0),(4081,'2015-03-14 14:56:59','2015-10-11 16:46:40',1,30003631,409,264,664,263,133,151,610,542,302,137,341,386,28,372,263,56,33,272,43,13,97,115,95,393),(4082,'2015-03-14 14:56:59','2015-10-11 16:46:40',1,30003218,195,0,0,74,0,0,151,0,39,51,0,0,0,285,58,4,18,0,0,0,0,186,0,59),(4083,'2015-03-14 14:56:59','2015-10-11 16:46:40',1,30002135,0,15,13,11,11,5,0,0,0,7,0,6,0,4,0,0,0,0,0,0,4,1,0,0),(4084,'2015-03-14 14:56:59','2015-10-11 16:46:40',1,30000563,0,125,0,0,0,0,0,0,0,7,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(4085,'2015-03-14 14:56:59','2015-10-11 16:46:40',1,30004871,0,0,0,102,0,0,0,0,0,0,0,0,291,0,4,0,0,0,0,0,0,0,0,0),(4086,'2015-03-14 14:56:59','2015-03-14 14:56:59',1,30001450,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(4087,'2015-03-14 14:56:59','2015-10-11 16:46:40',1,30002874,0,183,7,39,12,11,5,0,0,0,0,0,0,0,0,0,0,0,0,0,0,62,0,0),(4088,'2015-03-14 14:56:59','2015-10-11 16:46:40',1,30004891,141,0,0,17,0,0,2,0,0,5,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(4089,'2015-03-14 14:56:59','2015-10-11 16:46:40',1,30003769,0,0,0,0,0,0,0,0,3,0,0,0,0,0,0,3,10,4,2,25,5,8,0,0),(4090,'2015-03-14 14:56:59','2015-10-11 16:46:40',1,30001806,26,29,0,0,3,100,377,47,66,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(4091,'2015-03-14 14:56:59','2015-10-11 16:46:40',1,30004566,0,0,0,0,0,0,64,0,0,97,121,43,0,0,0,0,0,0,0,0,0,0,0,0),(4092,'2015-03-14 14:56:59','2015-10-11 16:46:40',1,30004473,0,0,124,21,157,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(4093,'2015-03-14 14:56:59','2015-03-14 14:56:59',1,30000589,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(4094,'2015-03-14 14:56:59','2015-10-11 16:46:40',1,30004339,52,0,113,0,0,0,0,0,0,31,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(4095,'2015-03-14 14:56:59','2015-10-11 16:46:40',1,30004727,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,5,0,0,0,0,0,0,5),(4096,'2015-03-14 14:56:59','2015-10-11 16:46:40',1,30002010,0,3,1,1,2,2,0,7,125,4,1,1,0,0,5,5,0,0,2,0,1,0,1,1),(4097,'2015-03-14 14:56:59','2015-03-14 14:56:59',1,30001619,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(4098,'2015-03-14 14:56:59','2015-10-11 16:46:40',1,30001859,3,0,0,0,0,0,0,0,127,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(4099,'2015-03-14 14:56:59','2015-10-11 16:46:40',1,30002894,0,0,193,375,448,420,0,0,0,12,9,0,104,12,59,203,170,166,3,0,4,317,0,423),(4100,'2015-03-14 14:56:59','2015-10-11 16:46:40',1,30003209,0,0,0,0,0,39,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,58,0),(4101,'2015-03-14 14:56:59','2015-10-11 16:46:40',1,30000768,0,129,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,14),(4102,'2015-03-14 14:56:59','2015-10-11 16:46:40',1,30004485,0,0,33,66,199,139,141,0,91,0,0,0,89,10,0,0,0,174,0,0,0,0,0,0),(4103,'2015-03-14 14:56:59','2015-10-11 16:46:40',1,30001018,375,43,34,92,52,120,25,56,4,9,148,83,313,41,77,75,107,217,204,113,1,32,0,128),(4104,'2015-03-14 14:56:59','2015-10-11 16:46:40',1,30002958,64,12,16,21,15,44,11,4,4,14,5,27,24,17,99,8,4,51,96,31,3,7,5,2),(4105,'2015-03-14 14:56:59','2015-10-11 16:46:40',1,30000033,0,6,122,149,61,31,64,59,41,61,91,76,71,137,68,40,86,38,63,72,43,191,54,88),(4106,'2015-03-14 14:56:59','2015-10-11 16:46:40',1,30002726,121,21,120,24,0,0,0,15,4,9,2,2,8,0,15,78,83,0,7,15,0,0,121,2),(4107,'2015-03-14 14:56:59','2015-10-11 16:46:40',1,30003941,0,0,0,60,0,0,9,70,0,0,0,0,1,0,27,62,128,0,0,0,2,9,0,0),(4108,'2015-03-14 14:56:59','2015-10-11 16:46:40',1,30002052,0,100,0,26,41,42,0,0,1,12,17,17,9,16,0,3,9,0,18,0,2,0,0,1),(4109,'2015-03-14 14:56:59','2015-10-11 16:46:40',1,30003914,75,34,23,10,9,5,103,3,5,27,58,9,33,112,28,12,16,15,116,0,0,62,38,48),(4110,'2015-03-14 14:56:59','2015-10-11 16:46:40',1,30002982,0,0,0,0,0,0,0,0,48,7,0,0,0,0,0,0,0,0,0,16,23,0,0,0),(4111,'2015-03-14 14:56:59','2015-10-11 16:46:40',1,30002839,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(4112,'2015-03-14 14:56:59','2015-10-11 16:46:40',1,30045315,23,5,9,0,93,0,12,22,18,78,20,33,29,15,21,14,23,28,34,5,5,9,22,13),(4113,'2015-03-14 14:56:59','2015-10-11 16:46:40',1,30002772,132,76,342,104,2,8,83,82,227,76,193,124,299,108,254,163,266,87,67,318,311,148,131,243),(4114,'2015-03-14 14:56:59','2015-10-11 16:46:40',1,30045349,3,12,6,20,1,0,0,1,1,3,6,3,0,12,4,4,92,0,73,3,3,5,4,52),(4115,'2015-03-14 14:56:59','2015-10-11 16:46:40',1,30002239,0,54,12,13,0,0,0,0,0,0,16,0,0,0,0,0,0,115,0,0,0,0,0,0),(4116,'2015-03-14 14:56:59','2015-10-11 16:46:40',1,30002718,5,0,0,3,0,0,26,4,0,77,0,0,0,0,0,0,0,3,0,0,0,0,0,3),(4117,'2015-03-14 14:56:59','2015-10-11 16:46:40',1,30001727,10,27,0,14,49,46,0,14,0,0,5,20,0,12,58,90,81,5,0,44,26,47,0,0),(4118,'2015-03-14 14:56:59','2015-10-11 16:46:40',1,30005319,119,37,141,63,43,167,248,59,123,135,125,53,46,155,103,177,162,31,163,99,53,70,82,98),(4119,'2015-03-14 14:56:59','2015-10-11 16:46:40',1,30005085,5,28,50,0,58,40,0,0,0,0,0,0,0,0,0,0,0,0,0,80,0,26,15,4),(4120,'2015-03-14 14:56:59','2015-10-11 16:46:40',1,30005080,12,0,0,0,72,72,0,0,9,0,0,0,0,0,30,31,8,0,0,0,0,0,0,0),(4121,'2015-03-14 14:56:59','2015-10-11 16:46:40',1,30003530,1,14,0,10,0,0,19,3,0,7,3,0,33,0,7,7,0,0,52,139,49,3,0,30),(4122,'2015-03-14 14:56:59','2015-10-11 16:46:40',1,30003495,160,1018,11,51,7,5,28,102,9,70,180,141,77,94,103,129,132,103,27,37,148,131,69,11),(4123,'2015-03-14 14:56:59','2015-10-11 16:46:40',1,30002212,20,38,0,70,69,20,98,21,9,90,2,5,0,68,95,56,44,20,0,8,56,25,9,62),(4124,'2015-03-14 14:56:59','2015-10-11 16:46:40',1,30004269,3,0,0,18,2,5,0,0,0,197,14,0,0,0,0,0,0,0,89,4,0,0,0,11),(4125,'2015-03-14 14:56:59','2015-10-11 16:46:40',1,30000025,1,4,82,0,0,0,129,77,8,9,8,5,0,0,76,112,66,83,38,26,27,0,58,0),(4126,'2015-03-14 14:56:59','2015-10-11 16:46:40',1,30002227,130,1,5,20,0,0,29,0,26,23,13,7,6,26,40,79,66,35,0,11,9,70,1,71),(4127,'2015-03-14 14:56:59','2015-10-11 16:46:40',1,30003602,0,0,0,19,0,10,0,0,0,34,0,72,0,5,0,0,0,0,27,9,50,1,6,97),(4128,'2015-03-14 14:56:59','2015-10-11 16:46:40',1,30001417,403,377,150,97,50,25,97,212,134,187,48,87,257,308,20,126,126,129,52,213,168,117,159,210),(4129,'2015-03-14 14:56:59','2015-10-11 16:46:40',1,30001373,201,354,221,323,157,192,361,167,330,183,275,326,204,147,274,214,223,431,181,48,119,298,359,523),(4130,'2015-03-14 14:56:59','2015-10-11 16:46:40',1,30002697,52,57,0,4,0,0,0,89,168,30,15,0,7,107,22,3,0,23,10,3,18,65,6,9),(4131,'2015-03-14 14:56:59','2015-10-11 16:46:40',1,30004116,155,27,43,14,112,97,0,4,28,135,12,12,31,46,0,120,121,88,0,109,158,13,0,36),(4132,'2015-03-14 14:56:59','2015-10-11 16:46:40',1,30002271,7,91,302,162,34,1,27,93,102,22,44,111,48,74,0,15,38,50,7,62,97,161,112,106),(4133,'2015-03-14 14:56:59','2015-03-14 14:56:59',1,30000406,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(4134,'2015-03-14 14:56:59','2015-10-11 16:46:40',1,30003104,68,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,49,5,0,0,0,0,0),(4135,'2015-03-14 14:56:59','2015-10-11 16:46:40',1,30004742,0,0,20,15,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,14,14,0,0,0),(4136,'2015-03-14 14:56:59','2015-10-11 16:46:40',1,30000805,0,9,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,24),(4137,'2015-03-14 14:56:59','2015-10-11 16:46:40',1,30002023,0,0,0,0,0,0,103,0,8,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0),(4138,'2015-03-14 14:56:59','2015-03-14 14:56:59',1,30004577,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(4139,'2015-03-14 14:56:59','2015-10-11 16:46:40',1,30002140,228,12,9,0,92,142,18,44,273,0,0,0,0,0,23,23,46,0,0,0,0,0,0,0),(4140,'2015-03-14 14:56:59','2015-10-11 16:46:40',1,30005328,95,59,69,1,0,2,99,2,0,11,0,0,0,0,18,40,22,19,6,0,0,0,0,4),(4141,'2015-03-14 14:56:59','2015-10-11 16:46:40',1,30000160,159,185,219,125,181,45,69,70,222,152,347,469,281,59,178,194,430,378,100,281,232,241,402,305),(4142,'2015-03-14 14:56:59','2015-10-11 16:46:40',1,30045354,17,36,57,8,1,2,4,13,2,40,13,4,7,8,18,20,17,9,10,127,21,14,5,15),(4143,'2015-03-14 14:56:59','2015-10-11 16:46:40',1,30001700,70,76,123,266,165,132,74,18,61,30,217,293,62,206,246,198,198,30,68,50,126,78,132,147),(4144,'2015-03-14 14:56:59','2015-10-11 16:46:40',1,30003829,3,102,18,6,3,19,3,0,0,1,1,2,7,6,1,13,13,13,15,2,5,0,2,13),(4145,'2015-03-14 14:56:59','2015-10-11 16:46:40',1,30002510,263,480,600,616,414,405,329,187,99,364,497,786,413,665,499,409,480,612,332,635,651,640,492,256),(4146,'2015-03-14 14:56:59','2015-10-11 16:46:40',1,30004970,181,340,285,238,253,259,206,68,199,275,331,365,288,286,325,429,416,203,281,338,265,316,499,227),(4147,'2015-03-14 14:56:59','2015-10-11 16:46:40',1,30003564,31,0,0,27,32,0,0,6,30,0,0,0,0,0,40,95,60,0,0,0,0,1,49,0),(4148,'2015-03-14 14:56:59','2015-10-11 16:46:40',1,30000780,0,0,0,0,0,0,0,0,0,0,38,0,0,0,0,0,27,0,0,0,0,0,0,0),(4149,'2015-03-14 14:56:59','2015-10-11 16:46:40',1,30002056,59,5,4,0,6,16,3,0,1,7,0,0,63,0,3,2,1,1,37,3,11,3,3,13),(4150,'2015-03-14 14:56:59','2015-10-11 16:46:40',1,30003851,5,110,64,79,74,80,129,36,18,0,14,9,7,10,67,0,13,8,3,3,5,16,17,43),(4151,'2015-03-14 14:56:59','2015-10-11 16:46:40',1,30003391,193,114,311,226,146,81,129,104,133,145,123,173,134,97,121,157,271,124,82,125,142,226,200,94),(4152,'2015-03-14 14:56:59','2015-10-11 16:46:40',1,30003880,244,68,270,172,161,109,99,131,21,141,424,317,206,165,125,116,180,167,68,66,63,118,180,427),(4153,'2015-03-14 14:56:59','2015-10-11 16:46:40',1,30001686,33,0,4,9,0,0,0,8,9,62,20,28,24,4,93,2,6,79,3,4,9,8,123,9),(4154,'2015-03-14 14:56:59','2015-10-11 16:46:40',1,30002256,0,33,0,3,10,21,75,35,0,15,0,26,2,1,43,42,42,0,0,0,0,9,0,46),(4155,'2015-03-14 14:56:59','2015-10-11 16:46:40',1,30003803,2,35,18,0,10,31,16,41,92,0,0,26,28,32,1,0,3,22,9,107,0,58,19,44),(4156,'2015-03-14 14:56:59','2015-03-14 14:56:59',1,30001475,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(4157,'2015-03-14 14:56:59','2015-03-14 14:56:59',1,30000385,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(4158,'2015-03-14 14:56:59','2015-10-11 16:46:40',1,30003994,73,0,99,28,9,13,19,12,172,302,444,439,308,175,733,1034,842,193,0,27,129,1058,198,149),(4159,'2015-03-14 14:56:59','2015-10-11 16:46:40',1,30003333,14,12,15,179,10,6,36,13,8,0,9,3,3,18,12,19,13,10,9,13,13,3,4,67),(4160,'2015-03-14 14:56:59','2015-10-11 16:46:40',1,30004724,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,17,0,0,0,0,0,0),(4161,'2015-03-14 14:56:59','2015-10-11 16:46:40',1,30003229,4,266,43,244,0,6,0,0,42,0,0,0,0,0,0,0,0,0,0,0,0,0,0,167),(4162,'2015-03-14 14:56:59','2015-10-11 16:46:40',1,30002129,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,66,23,0,0,0,20,41,0),(4163,'2015-03-14 14:56:59','2015-10-11 16:46:40',1,30002491,0,281,0,0,0,0,987,54,0,0,0,0,0,0,0,0,0,0,16,0,0,0,0,0),(4164,'2015-03-14 14:56:59','2015-10-11 16:46:40',1,30002954,769,225,180,488,683,608,987,1680,523,935,1343,1154,1022,499,1044,1267,1349,925,395,774,1050,979,1004,1189),(4165,'2015-03-14 14:56:59','2015-10-11 16:46:40',1,30004225,0,0,0,0,29,159,28,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(4166,'2015-03-14 14:56:59','2015-03-14 14:56:59',1,30004812,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(4167,'2015-03-14 14:56:59','2015-03-14 14:56:59',1,30002151,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(4168,'2015-03-14 14:56:59','2015-10-11 16:46:40',1,30004918,0,21,10,13,311,205,291,39,458,0,188,284,116,0,0,0,0,0,0,0,0,0,0,0),(4169,'2015-03-14 14:56:59','2015-10-11 16:46:40',1,30002993,69,49,124,237,144,118,62,31,61,92,154,188,103,108,117,113,80,22,88,133,243,82,101,119),(4170,'2015-03-14 14:56:59','2015-10-11 16:46:40',1,30003457,181,4,182,72,1,34,9,64,173,38,179,140,139,50,33,18,94,59,51,92,83,95,185,69),(4171,'2015-03-14 14:56:59','2015-10-11 16:46:40',1,30003916,0,0,0,0,0,2,0,0,0,8,15,27,0,0,0,15,86,34,0,11,2,7,0,6),(4172,'2015-03-14 14:56:59','2015-10-11 16:46:40',1,30002241,0,0,0,0,0,0,0,0,0,49,0,0,0,428,324,186,1,0,0,68,30,0,0,0),(4173,'2015-03-14 14:56:59','2015-10-11 16:46:40',1,30001650,165,110,133,15,93,108,28,14,19,61,11,26,15,89,0,6,49,81,102,0,35,16,100,26),(4174,'2015-03-14 14:56:59','2015-10-11 16:46:40',1,30004472,80,121,66,10,22,87,81,8,93,13,10,9,0,24,14,12,8,0,0,0,23,0,0,6),(4175,'2015-03-14 14:56:59','2015-10-11 16:46:40',1,30001090,326,278,437,107,565,608,63,0,0,0,113,169,273,0,0,0,0,0,0,0,0,0,0,456),(4176,'2015-03-14 14:56:59','2015-10-11 16:46:40',1,30004953,66,130,0,41,0,0,72,0,145,344,21,0,37,14,21,0,0,0,234,144,26,27,268,53),(4177,'2015-03-14 14:56:59','2015-10-11 16:46:40',1,30003260,1200,1150,60,525,243,183,494,121,312,344,587,574,377,403,71,454,957,289,108,222,364,192,134,475),(4178,'2015-03-14 14:56:59','2015-10-11 16:46:40',1,30002380,0,0,22,0,27,27,4,0,0,0,0,0,0,0,0,0,0,0,0,0,0,3,0,0),(4179,'2015-03-14 14:56:59','2015-10-11 16:46:40',1,30003626,72,0,67,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(4180,'2015-03-14 14:56:59','2015-10-11 16:46:40',1,30004015,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,29,21,0),(4181,'2015-03-14 14:56:59','2015-10-11 16:46:40',1,30004494,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,5,0),(4182,'2015-03-14 14:56:59','2015-10-11 16:46:40',1,30001902,0,0,0,0,0,0,0,60,0,0,0,10,0,7,0,0,0,3,56,33,56,0,0,0),(4183,'2015-03-14 14:56:59','2015-10-11 16:46:40',1,30003353,53,0,30,56,0,0,57,11,0,3,1,0,29,79,109,32,0,64,0,0,11,0,0,0),(4184,'2015-03-14 14:56:59','2015-10-11 16:46:40',1,30002443,95,361,258,205,488,585,636,535,233,246,372,477,553,112,114,124,142,846,472,142,262,276,450,548),(4185,'2015-03-14 14:56:59','2015-10-11 16:46:40',1,30003610,0,0,0,206,0,0,0,0,0,121,0,0,0,0,0,0,0,0,0,27,0,9,0,145),(4186,'2015-03-14 14:56:59','2015-10-11 16:46:40',1,30001028,0,5,1,36,0,0,0,0,1,1,9,6,1,0,1,1,34,4,0,0,13,0,0,0),(4187,'2015-03-14 14:56:59','2015-03-14 14:56:59',1,30001520,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(4188,'2015-03-14 14:56:59','2015-10-11 16:46:40',1,30001187,70,255,928,267,99,110,29,0,292,52,8,32,6,166,167,556,975,424,211,70,0,93,473,329),(4189,'2015-03-14 14:56:59','2015-10-11 16:46:40',1,30000673,29,1,114,1,0,0,0,8,3,0,14,0,0,28,0,0,0,0,27,49,0,0,0,7),(4190,'2015-03-14 14:56:59','2015-10-11 16:46:40',1,30002322,98,747,509,879,532,382,407,16,11,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(4191,'2015-03-14 14:56:59','2015-10-11 16:46:40',1,30003246,2935,2060,0,0,0,0,0,0,0,0,0,17,39,0,0,0,0,3329,0,0,0,3,1672,0),(4192,'2015-03-14 14:56:59','2015-10-11 16:46:40',1,30002926,709,1004,251,536,78,126,253,281,0,31,145,136,392,350,1520,1300,1300,835,760,501,840,0,635,640),(4193,'2015-03-14 14:56:59','2015-10-11 16:46:40',1,30004370,0,86,0,73,182,118,15,188,0,0,0,0,0,0,0,0,0,0,99,0,16,0,27,0),(4194,'2015-03-14 14:56:59','2015-10-11 16:46:40',1,30045325,101,458,490,64,147,247,94,185,395,182,200,154,209,196,453,231,136,156,225,310,144,267,405,261),(4195,'2015-03-14 14:56:59','2015-10-11 16:46:40',1,30001983,6,9,0,0,31,140,0,58,4,7,93,73,41,0,79,110,32,5,0,133,16,0,0,31),(4196,'2015-03-14 14:56:59','2015-10-11 16:46:40',1,30000815,0,0,107,0,0,0,0,0,0,2,0,0,0,0,0,2,2,0,0,0,0,0,0,0),(4197,'2015-03-14 14:56:59','2015-10-11 16:46:40',1,30002534,231,123,233,54,76,43,48,194,22,5,53,23,26,31,66,49,42,194,56,113,47,170,23,58),(4198,'2015-03-14 14:56:59','2015-10-11 16:46:40',1,30003395,203,18,315,83,139,98,90,0,51,69,80,179,81,463,420,284,82,109,206,72,209,161,174,77),(4199,'2015-03-14 14:56:59','2015-10-11 16:46:40',1,30004080,166,187,369,489,499,407,226,160,80,150,127,253,299,553,676,595,651,749,86,122,340,529,346,473),(4200,'2015-03-14 14:56:59','2015-10-11 16:46:40',1,30002550,30,206,42,61,42,83,40,136,107,5,54,60,89,18,83,141,231,51,77,121,125,0,0,149),(4201,'2015-03-14 14:56:59','2015-10-11 16:46:40',1,30003081,14,18,60,25,27,20,49,17,1,18,189,274,25,27,99,8,6,0,0,0,38,21,38,33),(4202,'2015-03-14 14:56:59','2015-10-11 16:46:40',1,30002721,68,53,25,33,92,62,29,33,6,1,0,0,29,208,196,119,33,5,4,74,60,47,69,68),(4203,'2015-03-14 14:56:59','2015-10-11 16:46:40',1,30002033,0,0,52,1,0,4,131,55,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(4204,'2015-03-14 14:56:59','2015-10-11 16:46:40',1,30002426,0,0,0,0,5,50,0,0,0,7,0,8,68,45,49,70,81,123,0,54,48,19,77,16),(4205,'2015-03-14 14:56:59','2015-10-11 16:46:40',1,30002975,8,9,12,9,24,16,13,10,1,1,1,0,3,1,0,2,5,43,0,4,1,2,1,3),(4206,'2015-03-14 14:56:59','2015-03-14 14:56:59',1,30001936,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(4207,'2015-03-14 14:56:59','2015-10-11 16:46:40',1,30004560,0,0,0,0,0,0,0,0,0,0,0,0,0,6,0,0,0,0,0,0,0,0,0,0),(4208,'2015-03-14 14:56:59','2015-10-11 16:46:40',1,30001924,0,0,3,0,3,9,0,0,0,16,0,0,0,0,0,0,0,95,0,0,3,4,0,6),(4209,'2015-03-14 14:56:59','2015-10-11 16:46:40',1,30001320,0,47,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,162,31,0,0,0),(4210,'2015-03-14 14:56:59','2015-03-14 14:56:59',1,30000359,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(4211,'2015-03-14 14:56:59','2015-10-11 16:46:40',1,30002039,0,0,48,43,30,40,3,8,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(4212,'2015-03-14 14:56:59','2015-03-14 14:56:59',1,30000790,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(4213,'2015-03-14 14:56:59','2015-10-11 16:46:40',1,30001830,336,1721,11,1107,3,68,558,0,0,0,0,0,218,267,335,138,0,749,169,0,0,311,867,852),(4214,'2015-03-14 14:56:59','2015-10-11 16:46:40',1,30002880,0,0,0,0,0,0,0,26,6,0,50,158,160,0,88,196,278,91,0,0,0,81,90,170),(4215,'2015-03-14 14:56:59','2015-10-11 16:46:40',1,30001259,0,0,0,0,0,0,21,91,0,230,11,42,20,230,289,335,306,213,11,0,0,30,90,65),(4216,'2015-03-14 14:56:59','2015-10-11 16:46:40',1,30001931,0,0,0,69,0,0,28,0,0,0,0,0,0,0,0,0,0,0,28,23,0,0,0,0),(4217,'2015-03-14 14:56:59','2015-03-14 14:56:59',1,30001511,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(4218,'2015-03-14 14:56:59','2015-10-11 16:46:40',1,30001139,0,160,0,0,0,0,164,63,0,0,57,93,0,0,0,0,0,0,0,0,0,0,0,0),(4219,'2015-03-14 14:56:59','2015-10-11 16:46:40',1,30003362,0,7,3,139,40,115,112,0,73,0,0,0,0,0,8,8,12,92,37,0,10,0,0,0),(4220,'2015-03-14 14:56:59','2015-10-11 16:46:40',1,30000511,0,0,0,0,0,71,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0),(4221,'2015-03-14 14:56:59','2015-10-11 16:46:40',1,30001773,0,34,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(4222,'2015-03-14 14:56:59','2015-10-11 16:46:40',1,30004516,0,0,0,0,102,78,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(4223,'2015-03-14 14:56:59','2015-03-14 14:56:59',1,30000377,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(4224,'2015-03-14 14:56:59','2015-10-11 16:46:40',1,30002183,36,174,39,119,52,102,12,83,252,0,0,35,177,39,35,8,26,140,0,0,2,10,76,129),(4225,'2015-03-14 14:56:59','2015-10-11 16:46:40',1,30002249,0,136,0,0,0,0,0,64,0,16,7,10,0,118,76,25,0,8,12,0,22,57,1,51),(4226,'2015-03-14 14:56:59','2015-10-11 16:46:40',1,30003845,0,0,103,10,40,0,83,0,0,0,10,10,0,0,0,0,0,0,3,88,0,0,0,0),(4227,'2015-03-14 14:56:59','2015-10-11 16:46:40',1,30001123,88,399,7,6,25,64,315,157,230,0,0,0,0,0,0,0,0,72,0,0,0,0,0,0),(4228,'2015-03-14 14:56:59','2015-10-11 16:46:40',1,30001724,12,21,154,40,38,9,0,0,24,0,54,60,1,49,1,27,52,13,0,5,10,113,9,55),(4229,'2015-03-14 14:56:59','2015-10-11 16:46:40',1,30001408,730,930,1023,1014,816,639,988,1118,1280,1300,1559,1820,2000,1478,1438,1799,1980,1216,776,856,1097,1180,1220,1058),(4230,'2015-03-14 14:56:59','2015-03-14 14:56:59',1,30002326,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(4231,'2015-03-14 14:56:59','2015-10-11 16:46:40',1,30001900,0,0,0,0,0,0,0,0,14,0,0,33,67,94,43,31,86,0,0,78,11,2,4,94),(4232,'2015-03-14 14:56:59','2015-10-11 16:46:40',1,30000651,0,0,0,24,0,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(4233,'2015-03-14 14:56:59','2015-10-11 16:46:40',1,30000298,192,39,0,287,0,0,125,309,231,70,206,36,3,137,90,328,554,93,52,42,0,416,334,36),(4234,'2015-03-14 14:56:59','2015-10-11 16:46:40',1,30001943,0,0,0,0,0,0,0,0,26,87,3,0,0,26,10,0,0,0,9,0,0,50,81,0),(4235,'2015-03-14 14:56:59','2015-10-11 16:46:40',1,30001142,23,12,12,24,17,9,30,19,40,131,0,0,0,301,29,0,0,0,0,0,117,0,0,30),(4236,'2015-03-14 14:56:59','2015-10-11 16:46:40',1,30001563,0,0,0,18,0,0,0,0,0,0,4,0,0,0,0,0,0,31,0,0,0,0,0,73),(4237,'2015-03-14 14:56:59','2015-10-11 16:46:40',1,30001138,11,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(4238,'2015-03-14 14:56:59','2015-10-11 16:46:40',1,30005119,4,0,0,0,0,0,0,61,0,0,0,0,0,0,0,5,30,91,0,0,0,0,0,0),(4239,'2015-03-14 14:56:59','2015-10-11 16:46:40',1,30000712,47,17,44,0,36,68,56,43,91,41,26,0,0,31,54,42,36,0,0,0,23,3,0,0),(4240,'2015-03-14 14:56:59','2015-10-11 16:46:40',1,30003410,50,61,208,185,134,56,159,65,70,59,131,47,16,56,93,115,182,140,39,87,118,61,180,58),(4241,'2015-03-14 14:56:59','2015-10-11 16:46:40',1,30004963,0,241,98,310,356,358,577,610,388,0,0,0,0,0,3,4,31,0,0,0,45,0,50,0),(4242,'2015-03-14 14:56:59','2015-03-14 14:56:59',1,30000477,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(4243,'2015-03-14 14:56:59','2015-03-14 14:56:59',1,30000834,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(4244,'2015-03-14 14:56:59','2015-10-11 16:46:40',1,30005105,0,0,0,0,0,0,0,0,0,0,0,0,0,16,0,0,0,30,13,0,0,0,4,0),(4245,'2015-03-14 14:56:59','2015-10-11 16:46:40',1,30005188,0,0,0,0,0,0,6,0,0,0,0,0,0,0,2,4,4,0,0,3,0,0,0,0),(4246,'2015-03-14 14:56:59','2015-10-11 16:46:40',1,30002022,0,29,0,16,4,0,0,0,1,0,7,7,0,106,0,0,0,22,0,0,0,0,0,0),(4247,'2015-03-14 14:56:59','2015-10-11 16:46:40',1,30003628,0,0,0,0,0,0,0,0,0,0,0,0,131,0,0,0,0,0,0,0,0,0,0,0),(4248,'2015-03-14 14:56:59','2015-10-11 16:46:40',1,30001308,0,0,36,14,27,28,21,0,0,14,0,25,0,0,14,14,0,0,0,128,12,10,0,0),(4249,'2015-03-14 14:56:59','2015-03-14 14:56:59',1,30000501,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(4250,'2015-03-14 14:56:59','2015-10-11 16:46:40',1,30004776,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,3,0,0,0,0,0,0,0),(4251,'2015-03-14 14:56:59','2015-10-11 16:46:40',1,30004819,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,127),(4252,'2015-03-14 14:56:59','2015-10-11 16:46:40',1,30004332,0,0,37,74,329,286,0,0,11,0,0,0,0,0,44,20,0,97,143,16,4,17,0,0),(4253,'2015-03-14 14:56:59','2015-10-11 16:46:40',1,30001918,0,0,0,0,34,24,0,31,25,20,2,2,0,0,31,0,0,0,0,0,0,11,0,0),(4254,'2015-03-14 14:56:59','2015-10-11 16:46:40',1,30001591,0,250,0,446,626,568,170,630,878,55,397,398,544,0,0,0,13,133,0,49,97,93,351,1),(4255,'2015-03-14 14:56:59','2015-10-11 16:46:40',1,30001893,0,0,0,0,0,0,0,0,0,12,63,60,36,16,0,0,0,0,0,0,131,0,0,0),(4256,'2015-03-14 14:56:59','2015-10-11 16:46:40',1,30002912,1083,1340,123,262,0,81,930,694,977,1580,1860,1640,1019,1620,1640,1460,1480,1400,1959,1883,1460,1260,1278,1140),(4257,'2015-03-14 14:56:59','2015-10-11 16:46:40',1,30000657,15,34,339,102,33,0,0,0,0,0,0,0,60,0,0,0,0,0,0,0,0,0,0,1),(4258,'2015-03-14 14:56:59','2015-10-11 16:46:40',1,30003611,58,112,135,28,0,99,24,0,137,0,121,22,0,1,0,0,0,0,0,0,0,189,0,0),(4259,'2015-03-14 14:56:59','2015-10-11 16:46:40',1,30003340,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,46,0,0,0,0,0,0),(4260,'2015-03-14 14:56:59','2015-10-11 16:46:40',1,30003629,0,128,78,0,0,0,149,0,2,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(4261,'2015-03-14 14:56:59','2015-10-11 16:46:40',1,30004683,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,81,0,0),(4262,'2015-03-14 14:56:59','2015-10-11 16:46:40',1,30002888,0,100,0,0,26,82,235,58,208,0,1,147,292,0,168,304,338,75,0,0,55,0,59,9),(4263,'2015-03-14 14:56:59','2015-10-11 16:46:40',1,30002017,0,0,0,0,23,23,135,0,0,0,0,0,4,0,0,0,0,0,0,3,0,1,0,0),(4264,'2015-03-14 14:56:59','2015-10-11 16:46:40',1,30000260,216,169,0,7,0,0,12,0,98,61,103,70,0,425,499,357,272,403,87,353,71,296,198,142),(4265,'2015-03-14 14:56:59','2015-03-14 14:56:59',1,30000388,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(4266,'2015-03-14 14:56:59','2015-10-11 16:46:40',1,30001088,0,124,96,58,105,94,100,0,124,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(4267,'2015-03-14 14:56:59','2015-03-14 14:56:59',1,30001176,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(4268,'2015-03-14 14:56:59','2015-10-11 16:46:40',1,30003368,0,0,0,27,26,38,7,0,1,1,0,0,0,0,1,0,2,0,0,0,7,0,12,17),(4269,'2015-03-14 14:56:59','2015-10-11 16:46:40',1,30004172,38,0,0,0,150,92,0,0,0,0,0,0,0,314,120,27,0,0,410,445,314,323,133,0),(4270,'2015-03-14 14:56:59','2015-10-11 16:46:40',1,30004886,0,0,0,0,0,0,45,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(4271,'2015-03-14 14:56:59','2015-10-11 16:46:40',1,30000753,0,0,15,0,10,42,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(4272,'2015-03-14 14:56:59','2015-03-14 14:56:59',1,30000667,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(4273,'2015-03-14 14:56:59','2015-10-11 16:46:40',1,30001030,3,124,16,83,71,15,0,11,74,103,22,37,91,0,0,0,1,0,0,0,0,3,0,28),(4274,'2015-03-14 14:56:59','2015-10-11 16:46:40',1,30001237,68,351,222,169,250,291,155,173,380,72,399,275,286,144,62,116,222,69,36,69,14,9,110,252),(4275,'2015-03-14 14:56:59','2015-03-14 14:56:59',1,30004805,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(4276,'2015-03-14 14:56:59','2015-03-14 14:56:59',1,30001471,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(4277,'2015-03-14 14:56:59','2015-10-11 16:46:40',1,30001145,0,0,35,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,25,6),(4278,'2015-03-14 14:56:59','2015-10-11 16:46:40',1,30000284,46,16,0,183,254,28,239,0,0,0,13,28,0,0,0,0,0,0,30,16,1,0,0,0),(4279,'2015-03-14 14:56:59','2015-10-11 16:46:40',1,30003257,74,442,284,0,1,0,3,29,13,0,61,0,0,0,131,95,5,0,0,34,140,33,17,31),(4280,'2015-03-14 14:56:59','2015-10-11 16:46:40',1,30000886,0,69,104,0,0,0,0,0,0,0,0,0,0,0,5,5,0,0,6,0,0,0,0,0),(4281,'2015-03-14 14:56:59','2015-10-11 16:46:40',1,30001891,0,0,0,0,0,0,0,0,0,80,89,99,83,95,101,87,80,46,58,115,63,88,119,48),(4282,'2015-03-14 14:56:59','2015-03-14 14:56:59',1,30000389,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(4283,'2015-03-14 14:56:59','2015-10-11 16:46:40',1,30003741,0,1,27,0,48,128,234,63,0,27,97,95,95,158,16,111,179,252,29,2,15,52,47,134),(4284,'2015-03-14 14:56:59','2015-10-11 16:46:40',1,30003506,243,240,289,375,237,317,165,232,96,158,187,135,257,222,195,221,281,130,213,127,232,336,464,212),(4285,'2015-03-14 14:56:59','2015-10-11 16:46:40',1,30001386,176,317,333,163,179,115,5,191,90,47,148,114,19,250,127,191,169,190,116,154,188,256,206,154),(4286,'2015-03-14 14:56:59','2015-10-11 16:46:40',1,30003894,191,151,35,2,184,90,101,36,0,968,714,809,812,28,17,73,127,0,63,0,0,0,9,41),(4287,'2015-03-14 14:56:59','2015-10-11 16:46:40',1,30001675,32,196,144,237,236,181,407,264,131,236,313,358,219,184,164,86,101,212,92,74,199,181,155,207),(4288,'2015-03-14 14:56:59','2015-10-11 16:46:40',1,30004242,4,0,0,3,0,4,3,49,0,26,19,19,0,0,0,0,0,21,87,0,0,0,0,104),(4289,'2015-03-14 14:56:59','2015-10-11 16:46:40',1,30002251,93,123,84,169,112,105,160,58,2,105,12,71,108,116,74,20,10,0,53,112,36,238,101,93),(4290,'2015-03-14 14:56:59','2015-10-11 16:46:40',1,30031672,0,0,33,17,0,0,44,21,15,0,151,76,33,0,0,0,0,0,90,1,33,50,131,0),(4291,'2015-03-14 14:56:59','2015-10-11 16:46:40',1,30002279,152,70,115,67,32,91,28,116,161,113,191,230,170,75,206,117,106,141,25,37,110,143,126,89),(4292,'2015-03-14 14:56:59','2015-10-11 16:46:40',1,30003879,79,64,139,168,37,118,77,21,136,163,50,43,97,113,90,53,81,284,106,17,113,81,76,144),(4293,'2015-03-14 14:56:59','2015-10-11 16:46:40',1,30001719,17,8,47,2,0,0,0,0,54,5,17,15,51,35,7,0,24,13,9,7,2,41,78,70),(4294,'2015-03-14 14:56:59','2015-10-11 16:46:40',1,30002298,4,0,7,82,9,31,365,0,28,0,0,0,0,0,9,0,0,0,0,0,0,0,0,0),(4295,'2015-03-14 14:56:59','2015-10-11 16:46:40',1,30003474,26,93,4,10,0,0,0,0,1,108,38,12,0,10,0,0,0,49,1,9,41,0,0,0),(4296,'2015-03-14 14:56:59','2015-10-11 16:46:40',1,30002259,0,42,50,67,47,47,2,18,46,19,49,37,91,17,47,22,79,51,9,5,15,19,33,57),(4297,'2015-03-14 14:56:59','2015-10-11 16:46:40',1,30003518,8,53,89,0,8,8,52,70,0,193,147,53,56,10,104,24,69,21,33,178,122,18,49,106),(4298,'2015-03-14 14:56:59','2015-10-11 16:46:40',1,30003086,12,13,12,23,13,6,1,47,3,19,22,17,12,0,2,0,3,5,30,17,1,1,0,20),(4299,'2015-03-14 14:56:59','2015-10-11 16:46:40',1,30000508,0,0,0,0,0,0,0,0,42,0,0,0,0,0,5,75,135,59,0,0,0,0,0,7),(4300,'2015-03-14 14:56:59','2015-10-11 16:46:40',1,30003090,50,28,20,130,19,14,10,15,10,10,24,43,22,19,13,19,20,23,13,23,3,18,28,21),(4301,'2015-03-14 14:56:59','2015-10-11 16:46:40',1,30003079,17,17,33,25,3,1,7,17,2,54,51,51,51,9,45,51,52,44,3,14,67,47,62,50),(4302,'2015-03-14 14:56:59','2015-10-11 16:46:40',1,30002745,56,253,103,226,344,258,164,43,178,123,464,263,333,76,104,140,207,547,242,241,498,122,227,529),(4303,'2015-03-14 14:56:59','2015-10-11 16:46:40',1,30002816,463,161,444,335,498,392,207,191,283,232,242,184,214,655,485,658,537,473,147,149,203,76,296,107),(4304,'2015-03-14 14:56:59','2015-10-11 16:46:40',1,30000146,183,430,606,512,355,331,583,146,88,87,147,170,235,297,328,419,280,194,136,134,251,244,261,135),(4305,'2015-03-14 14:56:59','2015-10-11 16:46:40',1,30010141,89,111,26,56,65,124,68,104,181,39,99,110,24,131,54,59,84,47,20,0,66,24,60,54),(4306,'2015-03-14 14:56:59','2015-10-11 16:46:40',1,30004299,0,1,0,0,0,0,0,12,7,0,0,0,0,0,0,0,6,4,0,0,0,9,7,0),(4307,'2015-03-14 14:56:59','2015-10-11 16:46:40',1,30002215,69,41,65,60,189,56,29,2,35,17,171,162,50,59,61,16,31,127,0,180,185,10,33,72),(4308,'2015-03-14 14:56:59','2015-10-11 16:46:40',1,30000167,61,184,572,676,270,370,191,115,154,438,169,279,233,261,365,138,338,252,128,157,307,275,776,350),(4309,'2015-03-14 14:56:59','2015-10-11 16:46:40',1,30002405,64,0,0,1,27,77,0,1,1,0,0,0,0,2,42,18,32,29,0,0,0,23,0,128),(4310,'2015-03-14 14:56:59','2015-10-11 16:46:40',1,30004146,136,0,13,22,3,1,99,16,4,138,212,193,74,18,119,69,90,122,10,79,31,87,21,170),(4311,'2015-03-14 14:56:59','2015-10-11 16:46:40',1,30000059,50,98,56,171,8,26,122,94,0,83,106,40,169,24,242,168,78,127,119,115,39,240,77,52),(4312,'2015-03-14 14:56:59','2015-10-11 16:46:40',1,30003874,20,1,36,0,0,0,49,26,3,146,35,84,15,106,11,12,66,9,4,11,6,15,12,23),(4313,'2015-03-14 14:56:59','2015-10-11 16:46:40',1,30045322,368,81,750,490,87,196,773,47,119,72,419,544,538,117,127,153,235,157,461,655,32,429,230,108),(4314,'2015-03-14 14:56:59','2015-10-11 16:46:40',1,30001721,0,0,11,0,0,0,0,0,0,0,0,0,75,0,15,15,12,0,16,0,6,24,1,0),(4315,'2015-03-14 14:56:59','2015-10-11 16:46:40',1,30002783,532,396,559,362,414,279,363,290,447,354,394,346,315,931,531,406,323,833,313,257,367,298,551,345),(4316,'2015-03-14 14:56:59','2015-10-11 16:46:40',1,30002785,490,399,1065,964,791,605,450,647,569,145,316,361,546,1042,918,861,1030,566,497,613,450,630,523,522),(4317,'2015-03-14 14:56:59','2015-10-11 16:46:40',1,30005255,27,3,0,50,0,8,35,0,3,0,0,0,45,0,11,12,14,0,0,14,2,0,0,0),(4318,'2015-03-14 14:56:59','2015-10-11 16:46:40',1,30001442,0,3,8,26,2,47,0,49,40,102,110,126,11,2,0,0,11,4,0,7,0,85,29,51),(4319,'2015-03-14 14:56:59','2015-10-11 16:46:40',1,30001377,119,103,209,146,180,171,134,276,224,238,334,285,332,249,177,96,108,180,155,104,263,226,169,364),(4320,'2015-03-14 14:56:59','2015-10-11 16:46:40',1,30045310,31,8,12,5,3,2,2,3,6,23,7,0,9,9,7,6,0,16,2,8,8,94,43,28),(4321,'2015-03-14 14:56:59','2015-10-11 16:46:40',1,30000043,0,4,0,0,8,26,53,112,4,1,0,0,0,0,0,0,1,0,0,205,0,16,54,18),(4322,'2015-03-14 14:56:59','2015-10-11 16:46:40',1,30003584,0,0,14,0,0,0,0,1,0,0,0,0,0,0,0,0,0,29,0,37,87,0,0,0),(4323,'2015-03-14 14:56:59','2015-10-11 16:46:40',1,30003522,257,29,73,62,50,42,141,47,106,106,72,20,83,58,71,70,58,129,143,100,119,158,129,50),(4324,'2015-03-14 14:56:59','2015-10-11 16:46:40',1,30003074,22,24,122,34,172,154,110,33,11,9,114,29,38,123,70,79,75,59,61,0,22,127,90,67),(4325,'2015-03-14 14:56:59','2015-10-11 16:46:40',1,30002971,224,208,620,250,263,415,261,129,113,167,150,140,169,32,122,180,288,327,95,181,58,228,227,172),(4326,'2015-03-14 14:56:59','2015-10-11 16:46:40',1,30003931,29,1,13,4,134,9,0,2,9,0,0,18,20,0,61,0,0,0,46,58,40,38,79,26),(4327,'2015-03-14 14:56:59','2015-10-11 16:46:40',1,30000005,21,24,8,34,36,34,95,65,96,58,75,52,39,136,49,25,45,21,34,41,77,55,118,67),(4328,'2015-03-14 14:56:59','2015-10-11 16:46:40',1,30003097,1,7,0,105,1,113,2,11,5,19,44,30,3,82,7,73,72,2,0,95,72,203,49,29),(4329,'2015-03-14 14:56:59','2015-10-11 16:46:40',1,30003508,29,8,18,47,66,81,2,57,67,74,126,40,50,94,52,15,46,52,161,57,48,43,49,138),(4330,'2015-03-14 14:56:59','2015-10-11 16:46:40',1,30004270,2,55,0,36,43,48,0,81,0,0,8,8,0,51,0,0,0,5,27,0,0,0,9,107),(4331,'2015-03-14 14:56:59','2015-10-11 16:46:40',1,30003865,42,41,22,35,18,31,36,31,34,11,11,73,10,185,40,48,102,87,26,65,88,67,136,12),(4332,'2015-03-14 14:56:59','2015-03-14 14:56:59',1,30000991,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(4333,'2015-03-14 14:56:59','2015-03-14 14:56:59',1,30004218,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(4334,'2015-03-14 14:56:59','2015-10-11 16:46:40',1,30001296,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,0,0,0,0,0,1,0),(4335,'2015-03-14 14:56:59','2015-10-11 16:46:40',1,30005310,198,209,178,281,253,263,218,187,99,371,406,305,193,425,312,332,292,288,157,305,340,438,308,248),(4336,'2015-03-14 14:56:59','2015-10-11 16:46:40',1,30005063,25,8,4,28,0,0,17,0,52,0,11,1,17,0,0,0,0,0,0,0,0,12,0,0),(4337,'2015-03-14 14:56:59','2015-10-11 16:46:40',1,30002654,0,0,1,0,4,4,8,0,0,0,1,0,0,1,0,0,0,3,0,0,0,1,0,0),(4338,'2015-03-14 14:56:59','2015-10-11 16:46:40',1,30005322,155,188,203,194,142,75,118,59,295,269,558,446,191,259,199,89,235,370,132,273,264,563,327,279),(4339,'2015-03-14 14:56:59','2015-10-11 16:46:40',1,30003054,18,54,122,272,126,36,56,61,123,50,107,42,69,163,43,76,84,96,33,45,67,45,62,46),(4340,'2015-03-14 14:56:59','2015-10-11 16:46:40',1,30000692,0,6,0,0,4,12,0,9,51,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(4341,'2015-03-14 14:56:59','2015-10-11 16:46:40',1,30001314,0,0,0,0,0,14,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(4342,'2015-03-14 14:56:59','2015-10-11 16:46:40',1,30004139,0,1,26,28,2,0,0,0,19,0,12,9,0,2,0,0,21,61,0,0,0,0,43,9),(4343,'2015-03-14 14:56:59','2015-10-11 16:46:40',1,30001659,80,346,159,48,156,175,165,44,202,231,166,179,220,151,176,139,216,348,47,138,75,190,227,206),(4344,'2015-03-14 14:56:59','2015-10-11 16:46:40',1,30005042,149,241,48,148,263,221,70,105,115,71,295,360,228,140,252,206,234,145,109,107,114,166,126,232),(4345,'2015-03-14 14:56:59','2015-10-11 16:46:40',1,30003869,63,0,95,0,0,34,61,39,83,41,38,31,2,4,2,6,31,37,4,23,0,19,102,88),(4346,'2015-03-14 14:56:59','2015-10-11 16:46:40',1,30001657,105,253,400,500,103,203,169,249,193,245,750,707,606,405,246,358,621,362,471,622,789,741,423,435),(4347,'2015-03-14 14:56:59','2015-10-11 16:46:40',1,30002243,109,148,71,4,78,0,1,44,0,0,45,19,40,26,24,32,40,131,0,71,22,56,29,94),(4348,'2015-03-14 14:56:59','2015-10-11 16:46:40',1,30041672,30,5,0,0,98,171,7,0,0,47,0,0,0,41,2,53,53,19,0,12,140,29,33,8),(4349,'2015-03-14 14:56:59','2015-10-11 16:46:40',1,30001359,68,80,6,204,8,8,94,462,125,23,250,54,62,24,69,123,193,232,192,103,291,60,28,231),(4350,'2015-03-14 14:56:59','2015-10-11 16:46:40',1,30020141,134,105,337,332,119,109,222,118,90,179,171,361,212,139,187,187,241,166,222,183,291,203,315,261),(4351,'2015-03-14 14:56:59','2015-10-11 16:46:40',1,30000015,0,8,0,46,0,0,0,0,7,1,1,0,0,4,0,0,0,4,0,0,3,0,0,0),(4352,'2015-03-14 14:56:59','2015-10-11 16:46:40',1,30000103,0,4,63,106,322,286,73,39,218,38,88,97,81,0,52,47,111,62,112,76,0,4,64,5),(4353,'2015-03-14 14:56:59','2015-10-11 16:46:40',1,30004623,179,466,601,562,345,353,231,302,470,112,231,302,98,160,55,49,297,249,1,15,102,51,2,20),(4354,'2015-03-14 14:56:59','2015-10-11 16:46:40',1,30005222,54,22,52,113,64,86,54,75,9,37,97,39,8,24,124,32,0,49,61,7,56,18,72,75),(4355,'2015-03-14 14:56:59','2015-10-11 16:46:40',1,30003898,0,0,9,0,0,0,0,0,0,3,4,4,32,0,0,0,29,0,0,0,0,0,13,0),(4356,'2015-03-14 14:56:59','2015-10-11 16:46:40',1,30005278,0,0,14,0,0,0,0,3,0,0,0,0,0,2,0,0,3,103,0,0,0,0,0,4),(4357,'2015-03-14 14:56:59','2015-10-11 16:46:40',1,30005020,1,3,3,69,36,15,0,35,11,28,15,14,82,15,1,13,27,1,18,22,70,2,0,31),(4358,'2015-03-14 14:56:59','2015-10-11 16:46:40',1,30003654,0,0,8,0,0,0,0,0,0,0,0,0,0,64,0,0,0,0,0,0,5,0,0,0),(4359,'2015-03-14 14:56:59','2015-10-11 16:46:40',1,30002833,0,77,0,0,0,0,0,0,0,0,5,5,0,0,0,0,0,0,8,0,0,0,0,0),(4360,'2015-03-14 14:56:59','2015-03-14 14:56:59',1,30000670,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(4361,'2015-03-14 14:56:59','2015-03-14 14:56:59',1,30001098,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(4362,'2015-03-14 14:56:59','2015-10-11 16:46:40',1,30000868,173,650,217,357,501,616,210,389,233,455,282,132,399,104,80,114,268,381,3,193,152,82,93,321),(4363,'2015-03-14 14:56:59','2015-03-14 14:56:59',1,30002831,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(4364,'2015-03-14 14:56:59','2015-10-11 16:46:40',1,30002267,3,81,70,58,42,82,25,36,4,121,188,147,17,45,90,59,120,50,30,48,145,65,150,2),(4365,'2015-03-14 14:56:59','2015-10-11 16:46:40',1,30000097,0,24,0,0,0,0,1,0,1,1,0,0,0,5,0,34,55,24,27,1,0,0,132,1),(4366,'2015-03-14 14:56:59','2015-10-11 16:46:40',1,30004283,8,0,52,0,15,37,16,2,0,21,28,2,1,73,0,0,25,8,10,1,0,6,28,27),(4367,'2015-03-14 14:56:59','2015-10-11 16:46:40',1,30004150,92,203,64,7,165,131,154,90,9,2,36,38,41,178,75,175,115,68,1,12,87,12,67,103),(4368,'2015-03-14 14:56:59','2015-10-11 16:46:40',1,30005057,148,29,95,38,133,67,110,60,151,25,80,188,153,39,218,247,249,239,32,90,200,133,111,175),(4369,'2015-03-14 14:56:59','2015-10-11 16:46:40',1,30003477,0,135,3,0,7,8,0,0,0,34,4,23,106,1,8,0,0,0,0,8,0,0,0,4),(4370,'2015-03-14 14:56:59','2015-10-11 16:46:40',1,30004231,51,35,0,0,126,137,0,0,0,0,0,0,0,0,3,23,43,69,0,0,2,0,0,0),(4371,'2015-03-14 14:56:59','2015-10-11 16:46:40',1,30000054,0,65,0,21,67,119,17,226,4,24,69,220,0,55,76,75,4,21,66,12,19,71,66,61),(4372,'2015-03-14 14:56:59','2015-10-11 16:46:40',1,30005270,0,24,1,0,2,13,0,7,0,8,64,27,12,34,95,31,27,0,39,42,51,0,33,66),(4373,'2015-03-14 14:56:59','2015-10-11 16:46:40',1,30000014,26,0,0,0,0,0,0,26,0,0,0,0,0,0,0,0,0,0,5,0,0,0,4,91),(4374,'2015-03-14 14:56:59','2015-10-11 16:46:40',1,30005271,0,0,25,0,0,9,7,0,0,0,37,61,8,8,21,22,31,21,8,4,17,3,6,2),(4375,'2015-03-14 14:56:59','2015-10-11 16:46:40',1,30003498,199,1067,460,354,174,169,73,231,21,234,169,256,236,230,177,197,293,92,110,132,132,232,194,134),(4376,'2015-03-14 14:56:59','2015-10-11 16:46:40',1,30001739,0,82,0,0,0,15,0,5,11,25,6,6,1,0,21,20,20,0,118,26,95,16,47,75),(4377,'2015-03-14 14:56:59','2015-10-11 16:46:40',1,30000067,0,0,28,0,0,0,26,0,22,22,0,0,9,0,0,0,13,57,19,1,29,0,0,5),(4378,'2015-03-14 14:56:59','2015-10-11 16:46:40',1,30003500,61,21,94,50,43,100,29,7,0,41,57,174,40,228,52,20,17,98,9,90,27,180,233,46),(4379,'2015-03-14 14:56:59','2015-10-11 16:46:40',1,30002638,21,0,23,21,15,3,101,23,0,0,88,12,13,0,33,17,7,38,2,0,11,7,70,19),(4380,'2015-03-14 14:56:59','2015-10-11 16:46:40',1,30005276,13,0,0,1,0,0,0,1,0,0,75,75,0,42,32,1,1,0,0,0,0,0,0,0),(4381,'2015-03-14 14:56:59','2015-10-11 16:46:40',1,30002999,27,76,155,0,35,96,38,64,77,24,8,15,43,14,51,49,52,0,0,3,70,59,45,0),(4382,'2015-03-14 14:56:59','2015-10-11 16:46:40',1,30000779,0,46,42,8,5,5,0,15,11,4,0,0,0,0,4,0,0,0,0,0,0,0,0,0),(4383,'2015-03-14 14:56:59','2015-10-11 16:46:40',1,30000106,32,58,91,85,39,64,71,16,24,88,138,198,80,43,15,67,56,32,45,0,54,16,70,139),(4384,'2015-03-14 14:56:59','2015-10-11 16:46:40',1,30004155,185,96,83,106,63,35,106,20,37,164,169,152,136,157,167,183,77,175,103,95,172,180,91,101),(4385,'2015-03-14 14:56:59','2015-10-11 16:46:40',1,30004268,19,116,19,54,102,85,48,40,62,70,104,39,9,32,55,61,13,16,52,0,44,31,13,20),(4386,'2015-03-14 14:56:59','2015-10-11 16:46:40',1,30000011,139,60,0,0,80,2,0,0,0,99,143,31,0,362,0,0,0,0,0,0,14,0,160,0),(4387,'2015-03-14 14:56:59','2015-10-11 16:46:40',1,30005192,0,42,12,1,97,108,32,17,29,13,8,7,52,21,25,77,202,8,26,150,204,66,138,6),(4388,'2015-03-14 14:56:59','2015-10-11 16:46:40',1,30004278,38,0,75,0,0,0,0,0,0,0,0,0,0,2,0,1,1,8,0,0,0,0,0,107),(4389,'2015-03-14 14:56:59','2015-10-11 16:46:40',1,30005217,1538,2800,714,1559,1210,1437,1637,2058,2780,3100,5000,4639,3500,4000,4239,3979,4320,5440,2260,1657,3298,4219,5018,4240),(4390,'2015-03-14 14:56:59','2015-10-11 16:46:40',1,30001673,249,68,144,152,201,113,307,131,72,491,371,389,268,409,342,220,268,272,315,258,307,213,447,473),(4391,'2015-03-14 14:56:59','2015-10-11 16:46:40',1,30000130,268,404,418,481,303,257,396,131,95,528,721,553,486,507,502,188,329,615,471,358,375,349,283,302),(4392,'2015-03-14 14:56:59','2015-10-11 16:46:40',1,30003725,64,371,4,177,13,288,145,175,127,151,112,71,89,49,33,7,30,95,0,18,120,66,70,89),(4393,'2015-03-14 14:56:59','2015-10-11 16:46:40',1,30004233,0,22,3,0,10,0,0,0,0,24,0,0,0,0,0,0,0,0,1,0,0,55,0,0),(4394,'2015-03-14 14:56:59','2015-10-11 16:46:40',1,30001338,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,8,0,0,0,0,0,0),(4395,'2015-03-14 14:56:59','2015-10-11 16:46:40',1,30005076,50,67,2,98,12,12,69,40,95,39,26,128,61,6,123,116,105,3,0,29,46,7,91,19),(4396,'2015-03-14 14:56:59','2015-10-11 16:46:40',1,30001667,115,30,53,35,28,49,97,0,12,0,3,8,76,77,62,75,21,158,31,23,82,15,28,40),(4397,'2015-03-14 14:56:59','2015-10-11 16:46:40',1,30002235,35,60,83,0,1,53,61,87,0,161,8,12,16,5,65,63,11,26,0,17,13,15,34,36),(4398,'2015-03-14 14:56:59','2015-10-11 16:46:40',1,30004135,69,89,67,4,26,7,99,25,0,46,29,0,98,53,0,0,97,47,23,34,94,0,83,7),(4399,'2015-03-14 14:56:59','2015-10-11 16:46:40',1,30002201,60,162,91,170,214,119,698,313,222,141,235,290,213,120,548,406,336,367,193,320,290,194,240,279),(4400,'2015-03-14 14:56:59','2015-10-11 16:46:40',1,30003728,17,79,111,113,128,274,218,27,103,401,176,164,195,23,61,391,398,94,17,160,103,27,160,344),(4401,'2015-03-14 14:56:59','2015-10-11 16:46:40',1,30005209,28,14,7,76,9,128,57,3,98,20,35,25,15,49,104,100,21,20,32,16,43,50,76,19),(4402,'2015-03-14 14:56:59','2015-10-11 16:46:40',1,30003484,0,9,0,0,0,0,0,0,0,17,0,0,0,0,0,28,30,39,0,6,1,0,0,8),(4403,'2015-03-14 14:56:59','2015-10-11 16:46:40',1,30003557,0,51,15,0,0,0,0,0,0,0,42,42,0,0,0,0,0,7,17,8,0,30,0,45),(4404,'2015-03-14 14:56:59','2015-10-11 16:46:40',1,30002959,20,94,116,35,3,8,40,39,4,6,24,16,13,8,10,11,19,20,5,1,3,16,0,2),(4405,'2015-03-14 14:56:59','2015-10-11 16:46:40',1,30005219,289,256,306,414,431,277,377,346,407,712,441,522,770,789,695,791,914,931,358,217,709,846,921,856),(4406,'2015-03-14 14:56:59','2015-10-11 16:46:40',1,30000179,314,194,104,268,137,94,84,131,78,65,211,221,125,136,273,269,242,481,45,215,99,187,118,532),(4407,'2015-03-14 14:56:59','2015-10-11 16:46:40',1,30002689,232,3,10,73,32,243,100,0,179,108,119,22,44,79,95,74,99,29,75,23,19,161,47,121),(4408,'2015-03-14 14:56:59','2015-10-11 16:46:40',1,30002195,74,87,150,128,85,90,70,24,176,99,104,90,127,263,297,261,271,296,79,11,62,1,156,112),(4409,'2015-03-14 14:56:59','2015-10-11 16:46:40',1,30005269,1419,1432,1573,1409,1211,1198,1215,856,950,1958,1660,1760,1359,1618,2074,2489,2590,1996,920,1340,1316,2799,2457,1914),(4410,'2015-03-14 14:56:59','2015-10-11 16:46:40',1,30001729,51,46,165,143,87,68,38,71,168,112,127,142,38,120,132,141,90,72,74,171,91,134,106,138),(4411,'2015-03-14 14:56:59','2015-10-11 16:46:40',1,30002092,0,5,107,39,0,0,2,0,0,0,7,2,1,25,39,23,10,6,6,11,1,29,4,35),(4412,'2015-03-14 14:56:59','2015-10-11 16:46:40',1,30003540,93,15,19,77,71,16,48,41,51,15,26,100,35,0,37,38,5,1,7,0,0,3,0,0),(4413,'2015-03-14 14:56:59','2015-10-11 16:46:40',1,30002791,157,290,211,398,183,217,477,282,236,404,404,307,249,338,233,191,231,220,8,106,151,438,367,203),(4414,'2015-03-14 14:56:59','2015-10-11 16:46:40',1,30000127,282,204,246,146,100,94,91,161,51,99,130,127,212,212,238,177,148,182,276,52,249,203,271,97),(4415,'2015-03-14 14:56:59','2015-10-11 16:46:40',1,30002539,0,0,12,65,16,11,13,43,1,31,5,0,5,0,30,16,8,1,26,39,62,49,50,95),(4416,'2015-03-14 14:56:59','2015-10-11 16:46:40',1,30002521,110,74,20,140,42,18,57,61,108,12,46,90,147,134,40,58,98,135,118,97,86,118,73,48),(4417,'2015-03-14 14:56:59','2015-10-11 16:46:40',1,30002229,19,0,62,82,47,26,0,40,0,20,13,14,0,21,9,11,19,216,0,81,26,21,55,62),(4418,'2015-03-14 14:56:59','2015-10-11 16:46:40',1,30003406,60,35,9,82,96,15,41,0,21,41,47,1,32,0,115,88,54,93,0,84,13,3,121,62),(4419,'2015-03-14 14:56:59','2015-10-11 16:46:40',1,30002765,214,146,118,348,131,95,115,70,115,126,127,253,204,146,234,178,228,211,119,74,230,189,200,234),(4420,'2015-03-14 14:56:59','2015-10-11 16:46:40',1,30001699,80,128,142,246,210,216,206,195,67,150,381,469,141,107,218,205,178,286,68,32,912,988,1097,1259),(4421,'2015-03-14 14:56:59','2015-10-11 16:46:40',1,30001728,6,2,29,55,38,16,44,7,33,39,15,25,120,39,66,76,125,137,17,43,29,53,36,81),(4422,'2015-03-14 14:56:59','2015-03-14 14:56:59',1,30000571,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(4423,'2015-03-14 14:56:59','2015-03-14 14:56:59',1,30000436,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(4424,'2015-03-14 14:56:59','2015-10-11 16:46:40',1,30004164,0,0,91,0,185,6,0,0,0,0,43,21,0,0,0,0,0,0,0,0,0,0,0,87),(4425,'2015-03-14 14:56:59','2015-10-11 16:46:40',1,30002411,0,0,0,18,74,0,0,0,0,0,0,0,0,7,0,0,0,0,1,0,7,6,0,3),(4426,'2015-03-14 14:56:59','2015-10-11 16:46:40',1,30003964,0,0,0,0,0,0,0,0,0,0,53,1,0,0,0,0,0,0,0,0,0,0,0,0),(4427,'2015-03-14 14:56:59','2015-10-11 16:46:40',1,30000964,0,0,0,0,0,0,31,0,0,0,0,0,0,0,0,0,0,0,170,0,0,0,0,0),(4428,'2015-03-14 14:56:59','2015-10-11 16:46:40',1,30003798,119,96,280,226,114,118,151,117,98,25,205,88,157,164,180,187,236,137,181,139,101,216,257,268),(4429,'2015-03-14 14:56:59','2015-10-11 16:46:40',1,30000479,0,0,0,0,0,0,0,134,209,0,0,11,161,0,0,0,0,0,0,0,0,0,322,0),(4430,'2015-03-14 14:56:59','2015-10-11 16:46:40',1,30001780,0,0,0,0,0,0,0,0,0,21,234,630,702,0,45,55,168,529,0,0,0,0,364,781),(4431,'2015-03-14 14:56:59','2015-10-11 16:46:40',1,30001808,49,0,192,62,0,0,0,0,0,0,2,93,0,0,0,0,0,0,0,0,0,0,0,0),(4432,'2015-03-14 14:56:59','2015-10-11 16:46:40',1,30000763,85,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(4433,'2015-03-14 14:56:59','2015-10-11 16:46:40',1,30003152,0,173,0,120,0,0,0,98,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(4434,'2015-03-14 14:56:59','2015-10-11 16:46:40',1,30001220,0,0,0,52,0,0,0,0,0,0,0,0,54,0,0,0,0,0,0,0,5,0,0,0),(4435,'2015-03-14 14:56:59','2015-10-11 16:46:40',1,30000584,11,109,208,124,477,240,30,0,0,51,94,61,64,60,0,0,0,0,0,0,0,0,0,0),(4436,'2015-03-14 14:56:59','2015-10-11 16:46:40',1,30001363,308,336,451,320,199,157,258,492,431,432,531,512,556,812,586,868,1068,640,247,170,520,416,479,647),(4437,'2015-03-14 14:56:59','2015-10-11 16:46:40',1,30002237,0,11,0,0,17,17,0,0,0,22,59,85,0,48,0,0,0,0,0,0,0,0,0,0),(4438,'2015-03-14 14:56:59','2015-10-11 16:46:40',1,30004273,0,0,45,17,0,0,0,0,8,76,5,5,0,18,1,33,130,59,0,0,0,0,0,45),(4439,'2015-03-14 14:56:59','2015-10-11 16:46:40',1,30003511,190,35,7,0,125,124,16,48,54,182,103,83,14,175,39,32,26,67,77,71,48,112,127,45),(4440,'2015-03-14 14:56:59','2015-10-11 16:46:40',1,30003225,0,104,58,140,0,141,83,18,0,0,35,88,260,0,0,0,255,41,0,0,34,28,96,65),(4441,'2015-03-14 14:56:59','2015-10-11 16:46:40',1,30004099,14,45,6,40,139,55,51,1,32,204,158,43,159,38,24,34,34,5,6,60,13,19,68,76),(4442,'2015-03-14 14:56:59','2015-10-11 16:46:40',1,30000009,0,31,0,96,70,79,0,0,0,3,0,0,0,19,26,18,7,0,0,32,6,8,6,0),(4443,'2015-03-14 14:56:59','2015-10-11 16:46:40',1,30002983,0,11,0,0,0,0,34,0,0,1,0,0,6,4,27,0,0,0,49,56,52,0,0,0),(4444,'2015-03-14 14:56:59','2015-10-11 16:46:40',1,30005323,234,153,322,373,128,122,127,123,178,298,251,302,427,369,348,309,183,565,117,246,241,179,331,294),(4445,'2015-03-14 14:56:59','2015-10-11 16:46:40',1,30003510,55,18,228,38,62,161,20,36,114,185,80,45,134,96,86,142,294,204,17,47,55,211,132,101),(4446,'2015-03-14 14:56:59','2015-10-11 16:46:40',1,30000089,0,21,0,8,0,105,3,63,0,0,0,0,0,0,0,0,0,4,0,0,0,0,0,0),(4447,'2015-03-14 14:56:59','2015-10-11 16:46:40',1,30003070,8,0,1,5,67,0,35,14,10,15,0,0,0,0,86,178,114,15,16,2,2,0,0,34),(4448,'2015-03-14 14:56:59','2015-10-11 16:46:40',1,30002980,12,9,59,18,8,23,18,19,11,1,2,3,83,3,0,3,7,34,14,1,4,2,1,3),(4449,'2015-03-14 14:56:59','2015-10-11 16:46:40',1,30005218,232,575,450,521,396,341,153,377,383,458,519,341,340,480,720,493,356,661,228,497,529,415,762,577),(4450,'2015-03-14 14:56:59','2015-10-11 16:46:40',1,30000175,246,93,98,177,103,67,93,33,79,186,224,311,294,222,356,410,543,245,97,30,170,165,144,157),(4451,'2015-03-14 14:56:59','2015-10-11 16:46:40',1,30004272,0,8,0,88,0,7,0,0,8,43,2,27,0,0,0,0,0,0,0,0,0,26,0,0),(4452,'2015-03-14 14:56:59','2015-10-11 16:46:40',1,30001369,305,342,103,230,152,103,314,408,225,187,198,214,404,340,334,237,234,423,138,208,101,324,279,221),(4453,'2015-03-14 14:56:59','2015-10-11 16:46:40',1,30002575,8,56,67,0,0,0,0,0,1,0,20,0,35,0,54,3,3,0,15,67,7,3,0,0),(4454,'2015-03-14 14:56:59','2015-10-11 16:46:40',1,30005052,21,77,375,255,90,96,81,542,40,46,153,92,62,86,311,286,348,174,2,107,198,167,99,58),(4455,'2015-03-14 14:56:59','2015-10-11 16:46:40',1,30004292,0,52,0,0,2,2,0,0,0,0,9,0,0,33,0,0,0,0,129,76,0,0,75,9),(4456,'2015-03-14 14:56:59','2015-10-11 16:46:40',1,30002111,0,0,0,244,36,36,5,70,21,0,31,115,122,5,254,100,123,99,0,0,0,62,12,5),(4457,'2015-03-14 14:56:59','2015-10-11 16:46:40',1,30004570,0,0,0,0,0,0,0,0,0,80,14,0,0,0,103,71,24,0,0,0,0,0,0,0),(4458,'2015-03-14 14:56:59','2015-03-14 14:56:59',1,30001453,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(4459,'2015-03-14 14:56:59','2015-03-14 14:56:59',1,30001630,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(4460,'2015-03-14 14:56:59','2015-10-11 16:46:40',1,30005141,0,150,403,486,304,297,211,141,254,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(4461,'2015-03-14 14:56:59','2015-10-11 16:46:40',1,30000565,0,1,0,0,0,0,0,0,0,0,0,0,71,0,0,0,0,0,0,0,0,0,0,0),(4462,'2015-03-14 14:56:59','2015-10-11 16:46:40',1,30002422,0,0,0,0,0,0,0,9,230,0,0,0,121,0,0,0,0,76,0,0,0,0,0,0),(4463,'2015-03-14 14:56:59','2015-10-11 16:46:40',1,30001288,0,4,0,0,2,0,0,2,0,0,3,0,0,40,0,0,0,0,0,0,0,0,0,0),(4464,'2015-03-14 14:56:59','2015-10-11 16:46:40',1,30003794,76,96,206,150,62,80,134,43,104,82,204,372,241,107,223,201,137,136,96,76,156,123,117,207),(4465,'2015-03-14 14:56:59','2015-10-11 16:46:40',1,30002675,65,23,105,101,58,34,106,46,17,53,60,73,41,37,68,157,220,462,9,13,74,66,57,66),(4466,'2015-03-14 14:56:59','2015-10-11 16:46:40',1,30002696,89,15,62,140,222,236,88,69,91,82,162,107,61,233,264,209,71,33,12,31,88,113,84,131),(4467,'2015-03-14 14:56:59','2015-10-11 16:46:40',1,30002711,78,205,66,128,185,94,142,70,65,110,102,137,139,198,61,68,133,56,48,196,279,79,68,97),(4468,'2015-03-14 14:56:59','2015-10-11 16:46:40',1,30003376,126,64,201,60,39,127,139,35,102,44,108,141,95,143,187,329,240,210,74,36,53,203,94,110),(4469,'2015-03-14 14:56:59','2015-10-11 16:46:40',1,30005333,59,159,303,161,231,334,94,66,254,264,596,852,427,454,433,454,414,405,205,194,469,622,277,230),(4470,'2015-03-14 14:56:59','2015-10-11 16:46:40',1,30003593,61,12,197,148,48,50,192,0,133,5,31,35,67,51,53,53,135,55,171,0,0,105,33,5),(4471,'2015-03-14 14:56:59','2015-10-11 16:46:40',1,30003607,55,6,2,48,50,1,3,0,62,0,16,7,21,41,0,3,7,28,6,13,43,24,23,90),(4472,'2015-03-14 14:56:59','2015-10-11 16:46:40',1,30000086,42,26,53,107,0,0,27,1,43,24,15,16,41,67,36,70,44,0,37,6,41,83,59,5),(4473,'2015-03-14 14:56:59','2015-10-11 16:46:40',1,30002809,13,1,83,4,8,7,5,43,0,17,18,13,12,69,14,4,0,17,6,23,4,9,6,6),(4474,'2015-03-14 14:56:59','2015-10-11 16:46:40',1,30002200,100,359,143,317,137,182,424,69,45,331,432,289,481,630,340,597,593,421,136,162,527,309,318,302),(4475,'2015-03-14 14:56:59','2015-10-11 16:46:40',1,30004101,13,0,8,26,16,12,0,0,46,11,51,66,94,81,65,48,5,0,28,10,41,73,72,105),(4476,'2015-03-14 14:56:59','2015-10-11 16:46:40',1,30000944,0,0,0,0,0,0,0,0,0,0,0,0,28,6,0,0,0,60,31,7,6,0,0,1),(4477,'2015-03-14 14:56:59','2015-10-11 16:46:40',1,30002801,610,465,628,501,229,491,397,539,738,649,772,1101,1151,714,665,596,728,955,402,287,738,1044,1236,746),(4478,'2015-03-14 14:56:59','2015-10-11 16:46:40',1,30002445,0,101,161,113,535,533,248,123,0,0,832,896,657,0,0,0,16,148,0,0,0,0,255,81),(4479,'2015-03-14 14:56:59','2015-10-11 16:46:40',1,30001158,0,0,0,0,0,0,0,0,0,0,0,0,0,4,0,0,1,3,12,1,4,0,4,2),(4480,'2015-03-14 14:56:59','2015-10-11 16:46:40',1,30004377,114,3,0,0,0,77,0,0,0,0,0,7,3,494,0,52,203,665,0,0,0,99,422,1080),(4481,'2015-03-14 14:56:59','2015-10-11 16:46:40',1,30004758,1,0,0,0,0,0,0,0,1,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0),(4482,'2015-03-14 14:56:59','2015-10-11 16:46:40',1,30004484,0,0,0,364,432,364,332,0,94,37,317,511,616,304,143,415,823,255,34,0,12,867,1103,838),(4483,'2015-03-14 14:56:59','2015-10-11 16:46:40',1,30002835,0,0,0,0,0,0,67,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(4484,'2015-03-14 14:56:59','2015-10-11 16:46:40',1,30005174,0,0,0,0,0,0,0,0,0,0,0,0,0,0,58,71,20,0,0,0,0,0,0,0),(4485,'2015-03-14 14:56:59','2015-10-11 16:46:40',1,30000515,0,9,20,16,0,0,22,5,4,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(4486,'2015-03-14 14:56:59','2015-10-11 16:46:40',1,30003667,5,442,49,45,94,145,82,14,160,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(4487,'2015-03-14 14:56:59','2015-10-11 16:46:40',1,30005015,97,74,107,91,117,162,182,80,82,98,221,188,135,211,202,199,206,221,96,78,89,105,80,135),(4488,'2015-03-14 14:56:59','2015-10-11 16:46:40',1,30004143,17,26,3,36,20,21,20,0,0,77,40,0,12,115,171,47,0,0,9,0,0,0,228,38),(4489,'2015-03-14 14:56:59','2015-10-11 16:46:40',1,30003639,0,0,5,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,3,157,136,59,0,17),(4490,'2015-03-14 14:56:59','2015-10-11 16:46:40',1,30000488,0,0,0,0,0,0,60,0,0,0,0,0,0,0,0,0,0,35,0,0,0,0,0,0),(4491,'2015-03-14 14:56:59','2015-10-11 16:46:40',1,30001096,145,0,343,201,10,13,129,0,0,0,0,4,0,0,30,25,8,3,9,0,0,0,0,0),(4492,'2015-03-14 14:56:59','2015-10-11 16:46:40',1,30004211,14,148,0,0,0,0,3,2200,151,364,283,692,982,162,332,339,270,296,0,93,165,208,75,136),(4493,'2015-03-14 14:56:59','2015-10-11 16:46:40',1,30001151,7,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,14,0),(4494,'2015-03-14 14:56:59','2015-10-11 16:46:40',1,30001911,0,9,0,0,0,3,0,0,16,71,135,164,386,237,12,72,87,298,44,84,50,133,71,52),(4495,'2015-03-14 14:56:59','2015-10-11 16:46:40',1,30002890,89,0,0,0,0,0,0,35,0,0,137,0,197,0,119,246,167,343,0,0,0,445,0,258),(4496,'2015-03-14 14:56:59','2015-10-11 16:46:40',1,30004877,1545,115,695,86,761,541,70,211,21,162,85,0,138,0,0,207,207,0,265,168,0,210,22,224),(4497,'2015-03-14 14:56:59','2015-03-14 14:56:59',1,30001633,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(4498,'2015-03-14 14:56:59','2015-10-11 16:46:40',1,30000261,6,21,0,0,0,0,72,260,51,0,0,5,90,0,32,63,93,228,23,46,27,46,0,360),(4499,'2015-03-14 14:56:59','2015-10-11 16:46:40',1,30003195,0,11,2,4,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(4500,'2015-03-14 14:56:59','2015-10-11 16:46:40',1,30002382,0,0,0,0,0,0,55,9,20,0,0,0,0,0,336,316,288,50,104,195,0,3,163,5),(4501,'2015-03-14 14:56:59','2015-10-11 16:46:40',1,30004748,20,0,0,0,0,0,0,0,0,0,0,58,18,0,0,0,35,0,0,11,50,0,2,65),(4502,'2015-03-14 14:56:59','2015-10-11 16:46:40',1,30004729,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,10,0,0,0,0,0,0),(4503,'2015-03-14 14:56:59','2015-10-11 16:46:40',1,30003673,42,0,0,0,50,28,0,0,0,0,0,0,0,0,0,0,0,0,0,46,36,0,0,0),(4504,'2015-03-14 14:56:59','2015-10-11 16:46:40',1,30003299,11,0,12,39,0,0,0,0,0,0,0,19,36,0,0,0,0,0,0,0,0,0,0,0),(4505,'2015-03-14 14:56:59','2015-10-11 16:46:40',1,30004745,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,57),(4506,'2015-03-14 14:56:59','2015-10-11 16:46:40',1,30001959,0,0,0,0,0,0,0,0,0,0,0,0,0,0,140,279,140,0,0,0,0,0,0,0),(4507,'2015-03-14 14:56:59','2015-03-14 14:56:59',1,30000330,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(4508,'2015-03-14 14:56:59','2015-10-11 16:46:40',1,30004352,46,404,344,179,237,181,91,376,526,0,0,0,0,0,32,99,88,0,41,62,0,0,0,51),(4509,'2015-03-14 14:56:59','2015-10-11 16:46:40',1,30003715,0,0,0,0,0,0,0,0,0,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0),(4510,'2015-03-14 14:56:59','2015-03-14 14:56:59',1,30001631,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(4511,'2015-03-14 14:56:59','2015-10-11 16:46:40',1,30004529,0,24,0,0,0,0,0,28,0,0,0,0,5,0,0,0,0,0,0,0,0,0,0,0),(4512,'2015-03-14 14:56:59','2015-03-14 14:56:59',1,30004676,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(4513,'2015-03-14 14:56:59','2015-10-11 16:46:40',1,30000303,39,53,31,0,11,44,56,165,122,5,0,0,51,0,154,239,114,22,246,171,0,60,0,45),(4514,'2015-03-14 14:56:59','2015-10-11 16:46:40',1,30001771,0,0,0,0,14,14,0,0,0,0,163,91,0,0,0,0,0,0,0,0,0,0,0,0),(4515,'2015-03-14 14:56:59','2015-10-11 16:46:40',1,30004842,0,0,0,0,0,0,0,0,0,0,0,4,5,18,7,0,0,0,0,0,0,0,0,0),(4516,'2015-03-14 14:56:59','2015-10-11 16:46:40',1,30003287,0,0,9,0,0,20,0,0,0,4,9,22,21,0,14,14,0,3,7,14,0,48,14,0),(4517,'2015-03-14 14:56:59','2015-10-11 16:46:40',1,30004735,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,53,0,0,0),(4518,'2015-03-14 14:56:59','2015-10-11 16:46:40',1,30004870,0,0,0,0,46,47,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(4519,'2015-03-14 14:56:59','2015-10-11 16:46:40',1,30001548,0,0,0,0,0,0,0,82,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1),(4520,'2015-03-14 14:56:59','2015-10-11 16:46:40',1,30001916,30,0,0,3,0,0,0,0,0,30,0,0,0,0,0,0,0,0,0,0,0,1,0,1),(4521,'2015-03-14 14:56:59','2015-10-11 16:46:40',1,30003943,0,0,0,0,0,0,0,21,0,0,0,1,0,16,2,0,0,0,0,0,0,0,0,0),(4522,'2015-03-14 14:56:59','2015-10-11 16:46:40',1,30003966,0,0,0,0,0,7,0,0,0,0,2,27,5,0,0,0,0,0,0,2,15,0,0,13),(4523,'2015-03-14 14:56:59','2015-10-11 16:46:40',1,30001228,0,0,0,33,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,6,0,7,28,0),(4524,'2015-03-14 14:56:59','2015-10-11 16:46:40',1,30002841,0,0,0,0,88,89,0,17,0,0,0,0,0,0,0,0,0,0,0,171,94,0,0,0),(4525,'2015-03-14 14:56:59','2015-10-11 16:46:40',1,30003465,0,31,54,3,1,0,28,0,23,1,0,0,0,9,1,2,16,0,0,6,27,0,25,1),(4526,'2015-03-14 14:56:59','2015-10-11 16:46:40',1,30005070,4,64,104,10,115,112,49,27,22,93,158,169,55,165,27,72,138,34,48,61,16,67,249,46),(4527,'2015-03-14 14:56:59','2015-10-11 16:46:40',1,30002100,0,0,0,57,4,34,1,4,89,55,2,3,1,33,2,2,11,19,60,13,41,3,10,11),(4528,'2015-03-14 14:56:59','2015-10-11 16:46:40',1,30005245,57,0,97,117,77,56,76,898,371,51,55,56,3,61,158,22,28,3,40,37,29,316,14,537),(4529,'2015-03-14 14:56:59','2015-10-11 16:46:40',1,30001447,15,158,181,54,30,23,111,87,58,9,0,3,12,44,14,2,0,45,19,31,16,119,0,123),(4530,'2015-03-14 14:56:59','2015-10-11 16:46:40',1,30005143,195,0,0,0,0,0,0,0,129,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(4531,'2015-03-14 14:56:59','2015-10-11 16:46:40',1,30003889,36,126,102,69,62,99,295,88,73,419,1348,1069,414,31,31,19,8,111,23,190,13,53,13,40),(4532,'2015-03-14 14:56:59','2015-10-11 16:46:40',1,30002813,6,5,9,5,29,23,10,3,9,14,11,12,142,3,34,79,56,3,0,8,29,9,14,81),(4533,'2015-03-14 14:56:59','2015-10-11 16:46:40',1,30003407,26,96,0,12,0,0,18,22,0,16,0,45,1,0,87,86,64,87,0,29,63,94,78,0),(4534,'2015-03-14 14:56:59','2015-10-11 16:46:40',1,30001437,88,0,0,0,50,78,0,0,0,42,118,29,42,100,40,84,71,35,19,0,16,1,3,87),(4535,'2015-03-14 14:56:59','2015-10-11 16:46:40',1,30003091,9,2,15,9,52,35,10,24,41,20,0,57,70,0,2,15,23,3,2,10,8,5,1,17),(4536,'2015-03-14 14:56:59','2015-10-11 16:46:40',1,30002812,60,140,16,0,0,0,38,9,0,12,0,0,2,0,4,3,7,4,37,10,82,32,57,47),(4537,'2015-03-14 14:56:59','2015-10-11 16:46:40',1,30000001,79,83,44,12,44,104,14,7,38,91,120,97,63,78,89,40,109,59,47,58,16,67,81,70),(4538,'2015-03-14 14:56:59','2015-10-11 16:46:40',1,30005199,106,86,198,159,150,108,128,87,89,154,100,179,125,232,187,193,259,254,101,180,173,372,186,151),(4539,'2015-03-14 14:56:59','2015-10-11 16:46:40',1,30002979,43,21,13,12,2,16,14,2,30,5,3,14,2,23,22,6,6,2,1,0,14,1,38,57),(4540,'2015-03-14 14:56:59','2015-10-11 16:46:40',1,30005205,208,67,246,28,132,199,99,18,52,61,16,16,12,100,44,61,73,75,46,273,147,41,53,67),(4541,'2015-03-14 14:56:59','2015-10-11 16:46:40',1,30001441,0,23,34,0,23,5,0,15,111,3,85,87,10,0,21,9,140,26,0,0,46,142,63,23),(4542,'2015-03-14 14:56:59','2015-10-11 16:46:40',1,30001703,40,20,48,3,35,84,230,128,70,79,57,86,98,339,411,321,282,177,201,186,322,160,208,90),(4543,'2015-03-14 14:56:59','2015-10-11 16:46:40',1,30002778,286,235,130,178,196,139,61,124,312,235,183,202,294,66,122,91,326,273,113,53,262,136,169,234),(4544,'2015-03-14 14:56:59','2015-10-11 16:46:40',1,30001671,226,170,192,132,111,100,102,85,143,138,211,149,238,284,511,310,227,228,266,151,282,261,167,192),(4545,'2015-03-14 14:56:59','2015-10-11 16:46:40',1,30002274,0,0,44,0,0,9,0,0,0,0,0,0,0,5,5,10,7,5,0,2,0,37,1,0),(4546,'2015-03-14 14:56:59','2015-10-11 16:46:40',1,30000195,0,13,0,0,9,9,0,37,0,2,132,120,36,0,0,0,0,2,0,0,0,45,1,110),(4547,'2015-03-14 14:56:59','2015-10-11 16:46:40',1,30004937,54,0,0,0,0,49,0,0,0,0,5,5,0,0,0,0,0,0,0,0,0,0,58,0),(4548,'2015-03-14 14:56:59','2015-03-14 14:56:59',1,30001051,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(4549,'2015-03-14 14:56:59','2015-10-11 16:46:40',1,30002502,292,105,205,226,74,48,17,21,144,0,70,67,0,45,0,0,5,596,4,0,0,200,39,476),(4550,'2015-03-14 14:56:59','2015-10-11 16:46:40',1,30005089,0,0,0,0,0,0,0,0,0,0,0,0,53,0,0,0,0,0,74,0,2,0,0,0),(4551,'2015-03-14 14:56:59','2015-10-11 16:46:40',1,30004638,0,0,151,0,0,0,27,0,0,0,0,9,136,0,0,0,4,0,5,4,5,2,6,0),(4552,'2015-03-14 14:56:59','2015-10-11 16:46:40',1,30003907,17,7,33,0,0,0,31,0,0,9,35,38,65,40,21,65,57,50,0,62,29,86,19,68),(4553,'2015-03-14 14:56:59','2015-10-11 16:46:40',1,30045350,27,25,0,0,11,3,19,23,2,47,20,28,36,43,4,2,4,31,3,47,11,29,16,12),(4554,'2015-03-14 14:56:59','2015-03-14 14:56:59',1,30003128,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(4555,'2015-03-14 14:56:59','2015-10-11 16:46:40',1,30005200,92,67,172,79,61,42,110,35,84,66,189,214,86,170,99,79,93,107,0,5,14,77,187,76),(4556,'2015-03-14 14:56:59','2015-10-11 16:46:40',1,30004158,184,67,66,83,2,0,17,57,103,8,0,94,100,137,175,85,31,218,130,197,30,18,15,58),(4557,'2015-03-14 14:56:59','2015-10-11 16:46:40',1,30001645,2,74,88,26,5,0,52,53,32,25,8,11,179,32,12,0,23,69,45,37,27,34,5,80),(4558,'2015-03-14 14:56:59','2015-10-11 16:46:40',1,30002763,36,94,101,44,152,28,41,41,13,186,184,148,56,56,24,78,103,88,97,45,31,56,27,36),(4559,'2015-03-14 14:56:59','2015-10-11 16:46:40',1,30002385,489,239,200,72,154,195,192,182,346,176,295,240,452,121,238,167,184,133,224,170,270,134,124,287),(4560,'2015-03-14 14:56:59','2015-10-11 16:46:40',1,30003507,114,44,292,55,34,86,39,0,60,0,25,0,93,2,122,97,59,80,99,120,165,152,26,35),(4561,'2015-03-14 14:56:59','2015-10-11 16:46:40',1,30001681,2,42,0,53,9,0,0,0,26,31,6,52,13,8,53,76,26,0,26,1,0,6,25,33),(4562,'2015-03-14 14:56:59','2015-10-11 16:46:40',1,30045335,7,0,0,0,3,26,30,1,2,20,0,3,22,6,0,0,0,0,12,10,0,0,7,19),(4563,'2015-03-14 14:56:59','2015-10-11 16:46:40',1,30000926,0,0,0,0,0,0,0,0,0,0,17,17,0,0,0,0,0,0,0,0,0,0,0,0),(4564,'2015-03-14 14:56:59','2015-10-11 16:46:40',1,30001733,3,0,3,81,60,25,15,0,0,0,29,78,0,4,1,4,3,0,36,0,0,0,0,0),(4565,'2015-03-14 14:56:59','2015-10-11 16:46:40',1,30002038,12,0,435,372,216,207,0,0,55,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(4566,'2015-03-14 14:56:59','2015-10-11 16:46:40',1,30001760,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,180,0,0,0,0,0),(4567,'2015-03-14 14:56:59','2015-10-11 16:46:40',1,30001842,43,29,59,11,4,5,59,78,0,92,68,49,54,92,61,45,17,6,5,26,32,64,96,86),(4568,'2015-03-14 14:56:59','2015-10-11 16:46:40',1,30003000,0,0,0,58,0,0,2,0,0,91,0,0,0,0,0,0,0,0,0,7,12,3,4,0),(4569,'2015-03-14 14:56:59','2015-10-11 16:46:40',1,30001677,108,223,26,223,145,229,79,150,395,121,177,151,240,247,404,245,223,55,25,140,112,178,112,102),(4570,'2015-03-14 14:56:59','2015-10-11 16:46:40',1,30002966,69,0,41,61,116,1,3,87,0,9,5,7,121,9,43,82,209,17,44,0,16,6,0,69),(4571,'2015-03-14 14:56:59','2015-10-11 16:46:40',1,30002226,105,12,0,35,0,0,29,0,49,24,74,131,40,4,44,98,65,100,0,21,122,53,127,23),(4572,'2015-03-14 14:56:59','2015-10-11 16:46:40',1,30002720,0,25,50,3,2,1,0,16,6,42,0,1,2,137,84,108,65,11,14,20,1,16,16,107),(4573,'2015-03-14 14:56:59','2015-10-11 16:46:40',1,30005314,7,28,155,149,37,47,94,0,49,80,262,228,75,5,8,15,147,32,53,117,25,74,162,44),(4574,'2015-03-14 14:56:59','2015-10-11 16:46:40',1,30000069,16,17,68,83,65,19,105,190,11,16,38,106,36,71,46,59,46,86,10,54,22,132,51,18),(4575,'2015-03-14 14:56:59','2015-03-14 14:56:59',1,30001464,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(4576,'2015-03-14 14:56:59','2015-03-14 14:56:59',1,30000352,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(4577,'2015-03-14 14:56:59','2015-10-11 16:46:40',1,30000076,0,7,223,78,8,1,16,141,4,259,36,30,132,96,119,141,136,241,27,74,112,98,80,26),(4578,'2015-03-14 14:56:59','2015-10-11 16:46:40',1,30005334,66,128,0,67,166,128,21,20,116,3,105,119,123,154,65,112,140,85,38,12,13,56,177,57),(4579,'2015-03-14 14:56:59','2015-10-11 16:46:40',1,30000100,0,41,0,17,3,43,0,117,0,0,0,27,0,0,0,0,0,2,8,97,0,0,52,0),(4580,'2015-03-14 14:56:59','2015-10-11 16:46:40',1,30003932,0,1,17,0,55,19,0,52,9,0,0,0,1,0,0,0,0,0,0,0,0,3,1,0),(4581,'2015-03-14 14:56:59','2015-10-11 16:46:40',1,30002784,387,882,418,351,603,312,387,370,378,538,641,793,641,463,262,437,499,381,460,678,624,516,345,522),(4582,'2015-03-14 14:56:59','2015-10-11 16:46:40',1,30001684,1,20,0,0,0,0,0,27,45,94,19,19,0,55,2,2,0,0,50,23,9,0,26,0),(4583,'2015-03-14 14:56:59','2015-10-11 16:46:40',1,30004298,0,76,17,7,1,2,0,10,16,1,18,79,24,56,0,0,0,33,0,0,0,0,3,0),(4584,'2015-03-14 14:56:59','2015-10-11 16:46:40',1,30001644,47,153,51,21,54,10,1,9,10,55,103,103,101,26,59,62,3,47,9,25,76,0,12,109),(4585,'2015-03-14 14:56:59','2015-10-11 16:46:40',1,30002474,0,0,0,0,62,14,64,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1),(4586,'2015-03-14 14:56:59','2015-03-14 14:56:59',1,30000742,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(4587,'2015-03-14 14:56:59','2015-10-11 16:46:40',1,30001908,0,79,62,76,17,18,63,0,0,4,0,0,0,0,73,37,0,0,0,173,12,0,0,0),(4588,'2015-03-14 14:56:59','2015-03-14 14:56:59',1,30002584,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(4589,'2015-03-14 14:56:59','2015-10-11 16:46:40',1,30004047,0,0,45,0,20,0,0,151,55,33,25,64,23,0,0,0,4,0,0,0,0,0,0,0),(4590,'2015-03-14 14:56:59','2015-10-11 16:46:40',1,30004960,69,18,0,17,73,23,0,215,9,0,0,0,0,0,0,0,0,0,0,0,0,0,0,301),(4591,'2015-03-14 14:56:59','2015-03-14 14:56:59',1,30001461,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(4592,'2015-03-14 14:56:59','2015-03-14 14:56:59',1,30001519,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(4593,'2015-03-14 14:56:59','2015-10-11 16:46:40',1,30001407,912,325,709,476,494,365,528,628,700,637,1296,1320,987,1254,1053,1063,1029,1155,317,731,1085,555,619,747),(4594,'2015-03-14 14:56:59','2015-10-11 16:46:40',1,30032505,115,0,78,102,106,27,8,0,22,0,43,71,86,8,2,43,42,72,0,129,150,63,74,89),(4595,'2015-03-14 14:56:59','2015-10-11 16:46:40',1,30002062,9,10,10,7,19,27,14,98,23,28,7,9,29,18,13,8,4,7,0,0,0,5,19,6),(4596,'2015-03-14 14:56:59','2015-10-11 16:46:40',1,30003383,0,0,0,0,8,8,238,25,0,8,69,29,14,109,59,0,0,0,76,0,14,0,14,97),(4597,'2015-03-14 14:56:59','2015-10-11 16:46:40',1,30003052,28,47,34,124,57,35,138,68,245,105,206,190,122,216,151,215,179,286,167,420,200,95,63,150),(4598,'2015-03-14 14:56:59','2015-10-11 16:46:40',1,30003436,171,18,190,67,22,29,53,100,21,31,67,73,78,43,173,206,241,98,117,108,46,78,182,282),(4599,'2015-03-14 14:56:59','2015-10-11 16:46:40',1,30002532,30,32,58,67,219,272,10,2,65,16,8,6,43,138,21,92,93,10,18,0,6,5,0,52),(4600,'2015-03-14 14:56:59','2015-10-11 16:46:40',1,30005212,65,0,0,3,0,34,0,8,5,0,17,9,25,153,0,0,0,83,14,46,7,6,1,1),(4601,'2015-03-14 14:56:59','2015-10-11 16:46:40',1,30001429,315,648,269,268,268,239,253,92,209,256,147,320,352,311,320,321,490,1089,433,347,567,559,582,667),(4602,'2015-03-14 14:56:59','2015-10-11 16:46:40',1,30003020,64,98,127,115,87,102,172,312,116,116,291,166,33,172,101,48,92,230,185,84,265,335,217,266),(4603,'2015-03-14 14:56:59','2015-10-11 16:46:40',1,30002191,85,104,219,105,242,136,196,115,93,24,243,170,204,220,307,227,164,227,143,144,154,167,204,125),(4604,'2015-03-14 14:56:59','2015-10-11 16:46:40',1,30003402,58,11,108,173,174,137,15,10,4,41,60,108,22,0,52,84,43,49,0,57,59,127,24,58),(4605,'2015-03-14 14:56:59','2015-10-11 16:46:40',1,30005301,123,189,76,152,107,123,215,9,124,76,71,142,66,113,150,119,85,142,107,42,140,28,187,121),(4606,'2015-03-14 14:56:59','2015-10-11 16:46:40',1,30003606,0,9,52,33,26,26,13,10,0,0,71,36,0,16,0,0,0,33,0,0,0,166,7,71),(4607,'2015-03-14 14:56:59','2015-10-11 16:46:40',1,30001127,0,0,0,0,0,0,0,0,0,0,5,0,0,0,0,0,0,0,0,0,0,0,0,23),(4608,'2015-03-14 14:56:59','2015-10-11 16:46:40',1,30002327,10,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(4609,'2015-03-14 14:56:59','2015-03-14 14:56:59',1,30000588,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(4610,'2015-03-14 14:56:59','2015-10-11 16:46:40',1,30004935,0,21,0,290,0,0,172,0,68,96,178,227,0,457,10,5,4,85,0,0,51,9,0,29),(4611,'2015-03-14 14:56:59','2015-10-11 16:46:40',1,30000641,7,0,0,0,0,0,0,0,0,0,0,22,19,0,0,0,0,0,0,0,0,0,0,0),(4612,'2015-03-14 14:56:59','2015-10-11 16:46:40',1,30004500,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,0,0,0,0,0,2,5),(4613,'2015-03-14 14:56:59','2015-10-11 16:46:40',1,30004452,0,137,0,0,0,0,0,0,105,0,0,0,0,0,0,0,0,0,0,0,4,0,0,0),(4614,'2015-03-14 14:56:59','2015-10-11 16:46:40',1,30005071,120,0,48,34,0,2,36,0,0,217,55,47,34,68,45,29,21,25,5,84,26,152,98,35),(4615,'2015-03-14 14:56:59','2015-10-11 16:46:40',1,30003431,26,105,51,144,45,105,19,15,97,30,94,126,149,279,118,193,171,76,95,51,27,95,180,50),(4616,'2015-03-14 14:56:59','2015-10-11 16:46:40',1,30002069,331,525,756,274,386,555,526,62,319,346,618,653,717,391,415,511,437,622,263,297,408,552,864,740),(4617,'2015-03-14 14:56:59','2015-10-11 16:46:40',1,30002562,202,136,171,11,116,80,182,35,224,17,91,94,20,34,121,47,75,122,121,16,179,123,115,46),(4618,'2015-03-14 14:56:59','2015-10-11 16:46:40',1,30000869,95,339,216,106,107,200,112,178,566,219,347,134,657,654,401,623,804,251,344,164,274,376,417,356),(4619,'2015-03-14 14:56:59','2015-10-11 16:46:40',1,30002668,102,111,45,75,146,82,73,35,107,92,161,120,95,117,172,184,108,3,166,108,11,29,101,85),(4620,'2015-03-14 14:56:59','2015-10-11 16:46:40',1,30042715,315,301,353,288,361,304,320,328,376,448,498,457,461,625,667,500,460,568,451,266,739,557,634,564),(4621,'2015-03-14 14:56:59','2015-10-11 16:46:40',1,30002508,218,97,176,184,272,156,58,54,273,319,243,264,128,392,307,302,350,227,123,154,134,216,127,512),(4622,'2015-03-14 14:56:59','2015-10-11 16:46:40',1,30004423,57,0,0,0,0,0,0,0,0,0,0,0,0,0,0,80,194,0,0,0,0,0,0,0),(4623,'2015-03-14 14:56:59','2015-10-11 16:46:40',1,30001375,273,145,268,234,441,391,318,275,353,328,246,261,292,520,352,436,477,498,179,419,590,672,715,431),(4624,'2015-03-14 14:56:59','2015-10-11 16:46:40',1,30001412,122,121,120,103,315,287,113,126,118,23,124,218,45,179,81,154,168,122,43,82,98,131,246,119),(4625,'2015-03-14 14:56:59','2015-10-11 16:46:40',1,30045327,255,323,312,175,305,234,224,181,396,220,132,117,269,355,343,428,438,206,171,284,122,438,454,353),(4626,'2015-03-14 14:56:59','2015-10-11 16:46:40',1,30000812,71,236,180,211,538,158,290,4,188,0,6,6,0,0,0,0,0,0,0,88,0,71,117,202),(4627,'2015-03-14 14:56:59','2015-10-11 16:46:40',1,30003733,7,0,16,33,0,0,32,105,0,248,154,72,67,259,196,259,331,411,225,427,231,174,191,106),(4628,'2015-03-14 14:56:59','2015-10-11 16:46:40',1,30003742,231,185,561,241,362,253,220,254,256,29,40,23,135,156,93,44,38,199,0,7,16,10,132,80),(4629,'2015-03-14 14:56:59','2015-10-11 16:46:40',1,30004634,297,453,878,323,85,201,476,67,124,0,0,0,52,202,132,0,0,0,102,0,0,7,74,331),(4630,'2015-03-14 14:56:59','2015-10-11 16:46:40',1,30004275,8,0,82,2,0,0,91,0,4,0,0,0,0,3,0,0,0,0,1,0,0,41,86,9),(4631,'2015-03-14 14:56:59','2015-10-11 16:46:40',1,30001379,266,258,323,157,295,292,266,227,236,388,317,362,318,176,362,378,323,291,157,255,402,516,330,194),(4632,'2015-03-14 14:56:59','2015-10-11 16:46:40',1,30002770,0,130,0,50,0,0,0,87,6,27,38,43,5,76,76,12,14,50,3,88,10,0,1,24),(4633,'2015-03-14 14:56:59','2015-10-11 16:46:40',1,30003064,26,190,102,99,280,280,27,0,47,175,59,103,55,73,55,15,2,0,0,99,176,83,148,6),(4634,'2015-03-14 14:56:59','2015-10-11 16:46:40',1,30004098,8,8,4,34,0,3,13,43,2,134,122,102,30,9,42,49,34,10,10,49,42,55,108,12),(4635,'2015-03-14 14:56:59','2015-10-11 16:46:40',1,30002086,15,41,0,0,0,1,0,0,16,14,55,18,30,53,0,6,28,21,16,12,6,23,26,54),(4636,'2015-03-14 14:56:59','2015-10-11 16:46:40',1,30000128,151,200,371,288,181,216,288,336,197,203,356,388,259,145,374,327,275,253,180,261,381,301,311,236),(4637,'2015-03-14 14:56:59','2015-10-11 16:46:40',1,30003958,0,0,0,0,74,0,134,60,0,0,0,0,0,0,0,0,0,0,0,0,13,0,0,0),(4638,'2015-03-14 14:56:59','2015-10-11 16:46:40',1,30002073,2400,2200,2740,2460,2300,2200,1497,793,796,2534,2914,3718,2500,1693,1919,1920,1480,1569,803,972,1131,1398,1259,1108),(4639,'2015-03-14 14:56:59','2015-10-11 16:46:40',1,30000263,237,79,1,144,0,0,85,0,0,0,29,24,19,9,13,38,120,46,0,8,9,41,104,106),(4640,'2015-03-14 14:56:59','2015-10-11 16:46:40',1,30002614,0,245,37,71,45,0,0,0,108,0,0,0,0,0,0,0,0,0,0,0,0,234,67,38),(4641,'2015-03-14 14:56:59','2015-10-11 16:46:40',1,30003779,248,0,21,140,64,18,0,0,242,179,230,343,809,304,166,198,197,171,154,426,356,212,0,76),(4642,'2015-03-14 14:56:59','2015-10-11 16:46:40',1,30002901,176,303,183,77,220,168,0,464,104,3,94,390,484,16,0,0,0,566,46,4,30,44,28,63),(4643,'2015-03-14 14:56:59','2015-10-11 16:46:40',1,30003323,4,0,7,14,5,3,101,0,0,30,0,0,0,0,0,0,0,41,4,0,0,0,0,0),(4644,'2015-03-14 14:56:59','2015-10-11 16:46:40',1,30004844,13,0,68,0,0,0,0,7,20,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(4645,'2015-03-14 14:56:59','2015-10-11 16:46:40',1,30000485,0,0,0,0,0,0,0,0,0,0,65,14,0,1,40,69,150,99,21,110,358,35,123,69),(4646,'2015-03-14 14:56:59','2015-10-11 16:46:40',1,30002353,0,0,0,0,0,0,0,0,0,0,0,2,0,0,0,0,0,0,0,0,0,0,2,57),(4647,'2015-03-14 14:56:59','2015-10-11 16:46:40',1,30003891,80,257,137,13,124,66,39,40,0,44,10,23,138,133,63,63,45,55,28,12,0,162,0,84),(4648,'2015-03-14 14:56:59','2015-10-11 16:46:40',1,30000601,0,0,0,0,0,0,0,0,0,0,0,0,0,0,4,4,0,0,0,0,0,0,0,0),(4649,'2015-03-14 14:56:59','2015-10-11 16:46:40',1,30002494,203,790,386,643,199,272,459,124,114,233,216,378,549,51,0,0,3,0,0,0,0,159,56,311),(4650,'2015-03-14 14:56:59','2015-10-11 16:46:40',1,30000747,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,63,0,0),(4651,'2015-03-14 14:56:59','2015-10-11 16:46:40',1,30002957,10,10,26,2,26,7,38,10,8,7,1,7,46,6,9,9,2,28,5,0,1,10,10,5),(4652,'2015-03-14 14:56:59','2015-10-11 16:46:40',1,30005156,0,0,0,0,4,4,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(4653,'2015-03-14 14:56:59','2015-10-11 16:46:40',1,30004436,0,0,0,0,0,0,0,0,67,0,0,0,0,0,0,0,0,0,0,0,0,21,0,0),(4654,'2015-03-14 14:56:59','2015-10-11 16:46:40',1,30001788,0,0,0,0,0,0,0,0,0,0,181,212,5,165,54,123,273,347,0,0,0,0,0,0),(4655,'2015-03-14 14:56:59','2015-10-11 16:46:40',1,30000575,124,118,0,48,15,12,62,138,36,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(4656,'2015-03-14 14:56:59','2015-10-11 16:46:40',1,30003717,246,0,0,0,0,0,0,0,0,0,0,0,0,8,0,0,0,0,8,7,0,10,2,68),(4657,'2015-03-14 14:56:59','2015-10-11 16:46:40',1,30004024,67,62,162,213,1001,1400,401,1460,292,196,296,167,502,5,0,0,0,0,0,0,0,90,90,222),(4658,'2015-03-14 14:56:59','2015-10-11 16:46:40',1,30001997,82,109,201,305,152,143,211,61,0,0,51,0,4,0,55,0,13,0,0,33,0,0,0,34),(4659,'2015-03-14 14:56:59','2015-03-14 14:56:59',1,30000404,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(4660,'2015-03-14 14:56:59','2015-10-11 16:46:40',1,30000660,8,0,9,53,14,64,0,0,6,0,0,0,0,169,0,0,0,0,0,0,0,0,0,0),(4661,'2015-03-14 14:56:59','2015-03-14 14:56:59',1,30000394,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(4662,'2015-03-14 14:56:59','2015-10-11 16:46:40',1,30004439,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,17,0,1,69,0,0,0),(4663,'2015-03-14 14:56:59','2015-10-11 16:46:40',1,30002463,0,40,212,123,12,93,6,0,0,0,0,0,43,0,0,0,0,0,0,0,0,0,0,0),(4664,'2015-03-14 14:56:59','2015-10-11 16:46:40',1,30000493,0,0,0,0,0,0,0,0,0,0,0,0,0,0,134,88,0,0,0,0,0,0,0,0),(4665,'2015-03-14 14:56:59','2015-10-11 16:46:40',1,30003637,0,128,0,0,0,0,0,4,0,0,0,0,0,0,0,0,19,0,0,200,136,0,0,0),(4666,'2015-03-14 14:56:59','2015-03-14 14:56:59',1,30000459,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(4667,'2015-03-14 14:56:59','2015-10-11 16:46:40',1,30000629,95,0,0,0,155,28,129,0,0,0,0,0,0,0,0,0,0,0,0,0,0,10,0,0),(4668,'2015-03-14 14:56:59','2015-10-11 16:46:40',1,30001155,0,0,0,0,0,0,0,0,0,58,0,0,0,0,0,0,0,0,0,48,10,0,0,0),(4669,'2015-03-14 14:56:59','2015-03-14 14:56:59',1,30003240,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(4670,'2015-03-14 14:56:59','2015-10-11 16:46:40',1,30004594,75,482,0,0,184,168,0,401,521,0,0,0,0,56,6,0,18,0,41,0,0,0,55,70),(4671,'2015-03-14 14:56:59','2015-10-11 16:46:40',1,30002951,355,164,13,234,473,420,0,216,217,82,0,0,0,136,19,0,17,161,59,124,0,147,102,141),(4672,'2015-03-14 14:56:59','2015-10-11 16:46:40',1,30000765,304,4,96,0,112,0,201,66,95,99,165,17,88,0,0,0,0,0,0,0,74,0,0,0),(4673,'2015-03-14 14:56:59','2015-10-11 16:46:40',1,30000878,0,201,8,0,82,147,0,65,103,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(4674,'2015-03-14 14:56:59','2015-10-11 16:46:40',1,30005131,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,0,0,0,0,0,0),(4675,'2015-03-14 14:56:59','2015-10-11 16:46:40',1,30001865,81,0,0,0,0,0,0,0,0,0,0,0,0,0,2,2,0,0,0,0,0,0,0,0),(4676,'2015-03-14 14:56:59','2015-10-11 16:46:40',1,30003347,5,0,0,0,0,4,0,8,0,0,9,40,0,6,0,0,125,0,12,0,0,0,0,0),(4677,'2015-03-14 14:56:59','2015-10-11 16:46:40',1,30000514,34,0,13,157,0,0,74,19,2,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(4678,'2015-03-14 14:56:59','2015-10-11 16:46:40',1,30004441,0,0,0,0,0,0,0,0,56,0,3,79,74,0,0,0,0,0,0,0,0,0,0,101),(4679,'2015-03-14 14:56:59','2015-10-11 16:46:40',1,30001585,0,0,0,0,0,0,0,0,0,10,8,4,0,18,44,35,14,0,34,20,9,16,16,24),(4680,'2015-03-14 14:56:59','2015-10-11 16:46:40',1,30000555,0,13,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(4681,'2015-03-14 14:56:59','2015-03-14 14:56:59',1,30000329,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(4682,'2015-03-14 14:56:59','2015-10-11 16:46:40',1,30003623,48,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,71,0,0,0,0,0,0),(4683,'2015-03-14 14:56:59','2015-03-14 14:56:59',1,30000703,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(4684,'2015-03-14 14:56:59','2015-10-11 16:46:40',1,30001898,0,0,0,0,0,0,0,0,1,4,0,0,0,0,3,0,0,37,0,0,0,0,42,0),(4685,'2015-03-14 14:56:59','2015-03-14 14:56:59',1,30004834,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(4686,'2015-03-14 14:56:59','2015-10-11 16:46:40',1,30000948,0,0,40,56,0,9,17,17,96,13,21,35,43,0,10,10,0,4,0,12,84,0,0,0),(4687,'2015-03-14 14:56:59','2015-10-11 16:46:40',1,30002608,176,50,32,180,241,299,78,150,6,0,0,0,3,0,0,0,0,0,0,0,0,0,104,0),(4688,'2015-03-14 14:56:59','2015-10-11 16:46:40',1,30003372,101,0,0,47,0,0,0,33,107,0,0,0,0,3,59,17,0,0,0,0,0,1,0,7),(4689,'2015-03-14 14:56:59','2015-03-14 14:56:59',1,30005126,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(4690,'2015-03-14 14:56:59','2015-10-11 16:46:40',1,30003663,0,4,59,57,0,0,0,0,63,0,0,0,0,40,55,21,1,0,0,0,0,0,0,0),(4691,'2015-03-14 14:56:59','2015-10-11 16:46:40',1,30000210,11,2,0,0,85,0,0,0,0,142,63,137,182,0,7,30,84,8,0,0,4,0,0,0),(4692,'2015-03-14 14:56:59','2015-10-11 16:46:40',1,30001927,164,50,198,1,1,47,0,91,196,95,33,24,516,192,63,75,82,28,316,194,74,482,142,50),(4693,'2015-03-14 14:56:59','2015-10-11 16:46:40',1,30004074,0,0,0,0,0,0,0,0,30,0,0,0,0,0,0,0,0,0,19,72,0,0,0,0),(4694,'2015-03-14 14:56:59','2015-10-11 16:46:40',1,30000527,5,0,164,131,0,0,38,59,124,0,64,223,424,0,0,0,0,27,0,0,0,145,760,114),(4695,'2015-03-14 14:56:59','2015-10-11 16:46:40',1,30002488,0,59,92,18,153,263,0,0,80,0,0,0,27,0,82,11,0,0,0,0,0,0,33,0),(4696,'2015-03-14 14:56:59','2015-10-11 16:46:40',1,30000693,0,18,3,0,4,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(4697,'2015-03-14 14:56:59','2015-10-11 16:46:40',1,30004202,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,78),(4698,'2015-03-14 14:56:59','2015-10-11 16:46:40',1,30002164,0,0,153,6,81,344,0,277,106,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(4699,'2015-03-14 14:56:59','2015-03-14 14:56:59',1,30000427,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(4700,'2015-03-14 14:56:59','2015-10-11 16:46:40',1,30000644,0,0,0,26,0,0,96,0,3,0,0,0,0,0,0,0,0,0,0,0,0,83,88,0),(4701,'2015-03-14 14:56:59','2015-10-11 16:46:40',1,30003227,0,70,0,0,0,0,0,0,0,0,0,79,105,0,0,0,0,0,0,0,0,0,0,0),(4702,'2015-03-14 14:56:59','2015-10-11 16:46:40',1,30002166,0,126,0,0,44,26,1,0,0,0,97,0,0,0,0,0,0,0,0,0,0,0,19,54),(4703,'2015-03-14 14:56:59','2015-03-14 14:56:59',1,30000419,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(4704,'2015-03-14 14:56:59','2015-10-11 16:46:40',1,30004685,0,0,0,0,0,0,0,121,164,0,115,123,0,0,125,52,0,0,0,122,168,0,0,0),(4705,'2015-03-14 14:56:59','2015-10-11 16:46:40',1,30002991,13,167,83,80,26,21,35,50,51,67,0,82,137,0,13,0,44,34,72,214,55,48,63,58),(4706,'2015-03-14 14:56:59','2015-10-11 16:46:40',1,30001797,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,12,21,4),(4707,'2015-03-14 14:56:59','2015-10-11 16:46:40',1,30002101,16,1,0,17,7,7,15,8,15,45,12,18,25,23,47,52,49,37,97,39,24,10,23,53),(4708,'2015-03-14 14:56:59','2015-10-11 16:46:40',1,30004807,0,0,0,0,0,0,0,0,0,0,0,0,112,0,0,0,0,54,0,0,0,0,0,0),(4709,'2015-03-14 14:56:59','2015-10-11 16:46:40',1,30004091,164,191,150,126,143,152,62,76,98,233,182,115,148,477,155,194,172,343,80,66,218,243,150,15),(4710,'2015-03-14 14:56:59','2015-10-11 16:46:40',1,30000118,0,0,5,15,0,7,56,0,0,57,34,17,2,2,21,32,32,0,0,1,0,14,0,24),(4711,'2015-03-14 14:56:59','2015-10-11 16:46:40',1,30002361,35,3,69,19,58,48,0,0,0,0,0,0,0,3,0,0,0,4,0,1,144,0,0,0),(4712,'2015-03-14 14:56:59','2015-10-11 16:46:40',1,30004602,21,0,0,0,0,0,0,0,0,0,0,0,0,0,0,3,3,0,0,0,0,0,0,0),(4713,'2015-03-14 14:56:59','2015-10-11 16:46:40',1,30004349,0,105,0,236,0,0,0,75,0,0,0,39,345,0,255,253,407,168,0,0,0,0,291,105),(4714,'2015-03-14 14:56:59','2015-10-11 16:46:40',1,30004463,535,165,355,380,622,187,0,0,0,0,0,37,75,81,17,64,119,0,0,0,0,18,75,0),(4715,'2015-03-14 14:56:59','2015-03-14 14:56:59',1,30001465,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(4716,'2015-03-14 14:56:59','2015-10-11 16:46:40',1,30000114,0,5,0,0,0,0,50,9,0,0,0,4,12,1,0,13,20,7,0,0,0,0,6,6),(4717,'2015-03-14 14:56:59','2015-10-11 16:46:40',1,30002473,0,0,0,0,0,0,0,0,0,54,0,0,0,0,91,0,0,0,84,5,0,28,63,0),(4718,'2015-03-14 14:56:59','2015-10-11 16:46:40',1,30001813,425,1509,99,73,0,0,0,226,1073,0,0,0,0,0,0,0,0,0,497,186,0,0,82,0),(4719,'2015-03-14 14:56:59','2015-03-14 14:56:59',1,30001618,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(4720,'2015-03-14 14:56:59','2015-10-11 16:46:40',1,30002024,1,1,0,0,0,0,16,91,0,17,47,0,0,5,0,0,0,0,0,0,0,0,0,0),(4721,'2015-03-14 14:56:59','2015-10-11 16:46:40',1,30001244,0,0,0,0,0,0,0,0,0,80,0,0,37,0,35,54,69,0,10,38,44,1,43,0),(4722,'2015-03-14 14:56:59','2015-10-11 16:46:40',1,30002209,75,64,21,73,10,8,0,152,0,30,27,11,30,97,134,146,72,10,62,62,42,72,30,233),(4723,'2015-03-14 14:56:59','2015-10-11 16:46:40',1,30045321,173,93,155,138,239,286,208,534,145,418,286,417,382,219,437,284,136,211,214,549,698,414,647,474),(4724,'2015-03-14 14:56:59','2015-10-11 16:46:40',1,30000201,124,175,78,115,38,54,83,26,95,126,102,162,116,122,182,198,301,216,147,110,110,298,141,365),(4725,'2015-03-14 14:56:59','2015-10-11 16:46:40',1,30000997,0,70,0,0,0,0,0,0,0,0,0,0,54,0,0,0,0,0,0,0,0,0,0,0),(4726,'2015-03-14 14:56:59','2015-10-11 16:46:40',1,30004404,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,0,0,0,0,0,0,0),(4727,'2015-03-14 14:56:59','2015-03-14 14:56:59',1,30000819,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(4728,'2015-03-14 14:56:59','2015-10-11 16:46:40',1,30004245,10,23,0,0,0,0,0,104,33,28,79,111,0,0,4,4,0,10,0,0,0,8,19,125),(4729,'2015-03-14 14:56:59','2015-10-11 16:46:40',1,30002825,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,202,4,0,0),(4730,'2015-03-14 14:56:59','2015-10-11 16:46:40',1,30002768,352,147,174,139,261,297,142,294,145,72,190,258,158,99,265,211,105,75,124,41,61,131,204,369),(4731,'2015-03-14 14:56:59','2015-10-11 16:46:40',1,30002956,565,875,310,245,683,658,0,566,1120,865,974,515,382,785,932,807,485,1039,879,565,398,596,1335,501),(4732,'2015-03-14 14:56:59','2015-10-11 16:46:40',1,30001368,112,393,295,335,101,49,233,148,95,61,253,244,307,156,223,226,208,328,133,98,146,55,199,262),(4733,'2015-03-14 14:56:59','2015-10-11 16:46:40',1,30000197,0,0,4,0,2,0,27,0,1,0,20,22,4,0,0,32,32,0,27,1,0,0,0,0),(4734,'2015-03-14 14:56:59','2015-10-11 16:46:40',1,30004922,1,31,27,165,59,60,49,204,80,0,0,4,0,0,0,99,250,28,0,0,0,65,0,50),(4735,'2015-03-14 14:56:59','2015-10-11 16:46:40',1,30001821,0,0,0,0,0,0,0,4,0,0,0,0,27,0,0,0,0,0,0,0,0,0,0,0),(4736,'2015-03-14 14:56:59','2015-10-11 16:46:40',1,30002503,388,158,95,65,193,209,314,705,116,307,640,678,239,0,0,0,0,0,38,0,0,111,0,403),(4737,'2015-03-14 14:56:59','2015-10-11 16:46:40',1,30001432,224,191,49,146,112,34,73,26,45,84,242,185,155,37,143,320,223,119,62,6,179,90,260,400),(4738,'2015-03-14 14:56:59','2015-10-11 16:46:40',1,30004779,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,0,0,0,0,0,0),(4739,'2015-03-14 14:56:59','2015-10-11 16:46:40',1,30001854,100,0,140,0,34,35,0,0,5,0,18,68,0,76,87,109,78,30,114,69,100,59,44,0),(4740,'2015-03-14 14:56:59','2015-10-11 16:46:40',1,30003352,17,82,0,10,0,0,9,0,15,44,0,0,0,0,0,0,0,0,0,0,40,0,0,9),(4741,'2015-03-14 14:56:59','2015-10-11 16:46:40',1,30002504,900,568,0,387,210,321,103,85,362,368,107,158,249,286,0,0,0,259,339,177,452,121,8,31),(4742,'2015-03-14 14:56:59','2015-10-11 16:46:40',1,30003235,0,0,0,0,0,0,0,0,0,10,229,416,61,0,0,0,0,0,0,0,0,3,0,0),(4743,'2015-03-14 14:56:59','2015-10-11 16:46:40',1,30000229,0,6,85,0,0,0,1,17,50,0,0,0,0,0,0,1,1,0,0,0,12,0,0,0),(4744,'2015-03-14 14:56:59','2015-10-11 16:46:40',1,30004706,0,0,0,0,51,66,0,0,1,0,0,0,0,28,47,47,0,36,0,0,0,5,16,10),(4745,'2015-03-14 14:56:59','2015-10-11 16:46:40',1,30001735,39,69,105,20,66,140,48,73,69,101,76,31,70,15,38,41,68,15,10,77,16,30,3,13),(4746,'2015-03-14 14:56:59','2015-10-11 16:46:40',1,30000101,187,21,32,99,146,25,83,87,0,30,7,59,57,0,81,146,210,212,11,18,18,5,115,1),(4747,'2015-03-14 14:56:59','2015-10-11 16:46:40',1,30002047,101,0,54,0,0,0,0,0,0,0,0,0,0,0,0,0,0,79,0,0,0,0,36,0),(4748,'2015-03-14 14:56:59','2015-10-11 16:46:40',1,30002083,0,0,0,0,0,0,0,0,1,16,6,19,11,15,10,8,14,41,10,10,10,22,28,45),(4749,'2015-03-14 14:56:59','2015-10-11 16:46:40',1,30030141,549,644,712,860,684,614,656,818,295,664,990,1013,884,1003,1385,1412,1271,996,603,989,997,981,899,693),(4750,'2015-03-14 14:56:59','2015-10-11 16:46:40',1,30001875,37,0,1,0,0,0,0,0,0,79,0,0,1,120,97,139,259,165,0,84,62,156,234,198),(4751,'2015-03-14 14:56:59','2015-10-11 16:46:40',1,30002824,0,0,0,0,0,0,0,0,68,0,0,0,0,0,2,2,0,0,0,0,0,0,0,0),(4752,'2015-03-14 14:56:59','2015-10-11 16:46:40',1,30002955,393,554,177,301,45,0,946,1060,100,573,821,803,1065,197,740,926,943,576,0,465,796,882,781,820),(4753,'2015-03-14 14:56:59','2015-10-11 16:46:40',1,30002610,0,0,0,0,0,0,0,43,42,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(4754,'2015-03-14 14:56:59','2015-10-11 16:46:40',1,30000177,202,197,14,62,233,238,83,68,35,55,124,174,200,175,138,167,229,227,1,81,124,253,264,165),(4755,'2015-03-14 14:56:59','2015-10-11 16:46:40',1,30003005,0,0,138,72,32,32,0,0,27,0,41,7,0,35,7,7,1,39,78,71,79,2,66,86),(4756,'2015-03-14 14:56:59','2015-10-11 16:46:40',1,30001899,0,0,0,0,0,0,0,58,0,0,0,1,0,1,0,0,0,0,0,6,8,0,0,0),(4757,'2015-03-14 14:56:59','2015-10-11 16:46:40',1,30000313,0,0,43,94,0,0,0,0,0,0,0,0,0,0,0,0,0,0,10,51,42,30,13,0),(4758,'2015-03-14 14:56:59','2015-10-11 16:46:40',1,30001234,27,0,0,0,0,0,45,161,30,0,0,0,0,0,0,2,6,0,0,0,0,0,0,4),(4759,'2015-03-14 14:56:59','2015-10-11 16:46:40',1,30003004,0,15,42,82,66,92,9,7,58,7,21,93,67,28,4,1,7,75,0,18,56,16,2,38),(4760,'2015-03-14 14:56:59','2015-10-11 16:46:40',1,30003298,0,0,1,0,4,0,0,0,0,1,0,15,21,0,0,26,69,0,18,0,0,0,0,0),(4761,'2015-03-14 14:56:59','2015-10-11 16:46:40',1,30000558,73,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(4762,'2015-03-14 14:56:59','2015-10-11 16:46:40',1,30000911,0,0,5,0,0,0,0,135,0,0,0,0,0,0,7,0,0,0,0,0,0,0,0,0),(4763,'2015-03-14 14:56:59','2015-10-11 16:46:40',1,30000858,0,0,4,16,0,21,0,7,11,0,0,0,0,0,0,6,6,0,3,0,0,120,7,0),(4764,'2015-03-14 14:56:59','2015-10-11 16:46:40',1,30000184,633,344,361,354,421,225,286,393,272,569,593,529,812,629,934,859,551,794,141,358,474,677,734,608),(4765,'2015-03-14 14:56:59','2015-10-11 16:46:40',1,30001409,673,697,632,798,745,631,741,570,467,792,533,530,793,488,747,712,707,800,442,653,635,669,642,771),(4766,'2015-03-14 14:56:59','2015-10-11 16:46:40',1,30000282,167,3,0,54,7,0,0,328,14,0,0,19,0,0,0,0,0,0,9,0,7,98,5,4),(4767,'2015-03-14 14:56:59','2015-10-11 16:46:40',1,30003481,0,0,0,0,8,0,0,0,1,8,5,0,0,0,0,0,55,2,9,0,0,0,0,27),(4768,'2015-03-14 14:56:59','2015-10-11 16:46:40',1,30002707,28,0,11,37,91,25,159,48,35,14,24,24,50,3,39,61,80,10,38,0,87,73,11,51),(4769,'2015-03-14 14:56:59','2015-10-11 16:46:40',1,30002413,0,38,26,3,139,38,0,111,0,0,1,1,0,16,0,0,0,0,0,166,6,0,0,52),(4770,'2015-03-14 14:56:59','2015-03-14 14:56:59',1,30000965,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(4771,'2015-03-14 14:56:59','2015-10-11 16:46:40',1,30001679,47,116,83,38,155,126,27,65,15,161,18,29,60,148,4,45,100,239,9,130,52,176,224,115),(4772,'2015-03-14 14:56:59','2015-10-11 16:46:40',1,30000129,217,173,434,317,207,233,151,468,137,380,318,330,351,533,358,382,315,213,109,163,243,83,479,211),(4773,'2015-03-14 14:56:59','2015-10-11 16:46:40',1,30001816,131,49,0,65,0,0,0,0,0,0,0,0,0,0,66,23,0,124,0,0,0,0,21,0),(4774,'2015-03-14 14:56:59','2015-10-11 16:46:40',1,30004495,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,4,7,0,0,0,0,0,0,0),(4775,'2015-03-14 14:56:59','2015-10-11 16:46:40',1,30001366,613,831,843,982,730,639,358,587,629,614,601,624,722,578,812,955,924,502,323,270,444,614,359,661),(4776,'2015-03-14 14:56:59','2015-10-11 16:46:40',1,30002814,242,124,196,10,119,42,122,129,301,29,167,128,73,112,325,112,105,390,133,178,221,243,142,336),(4777,'2015-03-14 14:56:59','2015-10-11 16:46:40',1,30000151,341,1260,208,234,506,432,333,419,275,793,663,613,850,604,846,722,681,696,907,724,550,1028,1299,895),(4778,'2015-03-14 14:56:59','2015-03-14 14:56:59',1,30001634,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(4779,'2015-03-14 14:56:59','2015-10-11 16:46:40',1,30003799,58,92,13,116,14,57,41,1,10,30,47,70,76,63,55,61,58,108,28,29,84,40,66,152),(4780,'2015-03-14 14:56:59','2015-10-11 16:46:40',1,30003043,50,54,110,56,158,83,62,4,181,42,12,29,6,69,75,55,39,62,90,18,42,29,119,86),(4781,'2015-03-14 14:56:59','2015-10-11 16:46:40',1,30000037,0,5,0,2,0,0,0,1,4,4,3,8,2,0,2,2,1,3,0,3,3,9,0,1),(4782,'2015-03-14 14:56:59','2015-10-11 16:46:40',1,30002998,69,0,9,18,8,40,27,86,91,32,28,239,101,1,41,67,37,79,6,2,59,9,106,157),(4783,'2015-03-14 14:56:59','2015-10-11 16:46:40',1,30003901,16,0,1,0,25,25,8,0,0,0,0,0,0,0,0,0,0,75,0,0,0,0,0,0),(4784,'2015-03-14 14:56:59','2015-10-11 16:46:40',1,30001208,101,220,73,194,311,223,208,142,104,143,112,0,7,5,176,110,33,0,46,0,4,150,101,19),(4785,'2015-03-14 14:56:59','2015-10-11 16:46:40',1,30004310,0,0,237,439,96,75,171,0,0,16,42,0,73,0,0,0,0,0,37,0,0,0,0,0),(4786,'2015-03-14 14:56:59','2015-10-11 16:46:40',1,30003955,0,67,0,116,25,25,0,93,48,6,0,56,0,0,0,0,0,0,0,0,0,0,0,0),(4787,'2015-03-14 14:56:59','2015-10-11 16:46:40',1,30004938,412,0,103,0,0,0,0,101,38,127,257,186,261,48,0,0,0,560,0,5,27,0,0,0),(4788,'2015-03-14 14:56:59','2015-10-11 16:46:40',1,30001966,17,5,0,0,8,3,0,4,9,3,2,1,6,0,0,0,4,3,0,0,0,7,2,160),(4789,'2015-03-14 14:56:59','2015-10-11 16:46:40',1,30040141,197,494,200,162,534,462,128,98,97,460,233,203,484,224,256,309,333,410,97,183,135,188,303,430),(4790,'2015-03-14 14:56:59','2015-10-11 16:46:40',1,30002070,601,305,380,429,588,383,335,685,386,392,602,704,490,416,581,548,709,325,267,559,424,762,443,553),(4791,'2015-03-14 14:56:59','2015-10-11 16:46:40',1,30000139,663,489,462,129,308,244,300,229,236,284,377,374,221,332,227,360,485,384,36,86,375,265,273,245),(4792,'2015-03-14 14:56:59','2015-10-11 16:46:40',1,30003417,21,41,12,43,0,0,65,1,5,12,99,92,157,197,72,101,108,56,42,149,173,43,7,96),(4793,'2015-03-14 14:56:59','2015-10-11 16:46:40',1,30002755,260,228,14,254,187,88,141,48,281,194,275,301,257,75,139,118,311,92,39,106,87,243,114,198),(4794,'2015-03-14 14:56:59','2015-03-14 14:56:59',1,30000382,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(4795,'2015-03-14 14:56:59','2015-10-11 16:46:40',1,30000068,2,2,0,95,210,179,2,0,28,56,21,20,206,12,3,33,35,185,1,0,4,146,58,7),(4796,'2015-03-14 14:56:59','2015-10-11 16:46:40',1,30002987,3,1,4,0,0,2,0,0,35,4,2,1,0,98,0,2,47,0,17,21,0,0,0,0),(4797,'2015-03-14 14:56:59','2015-10-11 16:46:40',1,30042505,346,372,178,182,159,175,211,84,33,404,383,285,247,467,474,485,298,403,384,135,384,323,248,366),(4798,'2015-03-14 14:56:59','2015-10-11 16:46:40',1,30004151,32,50,58,0,26,56,0,0,15,0,94,0,27,3,39,15,23,4,0,119,0,2,82,1),(4799,'2015-03-14 14:56:59','2015-03-14 14:56:59',1,30000921,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(4800,'2015-03-14 14:56:59','2015-10-11 16:46:40',1,30004468,281,43,336,330,102,156,105,76,94,805,265,315,419,524,677,856,711,1140,151,674,552,692,227,705),(4801,'2015-03-14 14:56:59','2015-10-11 16:46:40',1,30003306,38,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,7),(4802,'2015-03-14 14:56:59','2015-10-11 16:46:40',1,30001045,0,0,0,0,0,0,64,0,0,0,2,2,0,3,0,0,0,1,5,0,2,3,2,7),(4803,'2015-03-14 14:56:59','2015-10-11 16:46:40',1,30002049,385,562,377,448,552,502,404,232,489,406,425,304,183,491,521,319,252,361,272,236,244,365,279,364),(4804,'2015-03-14 14:56:59','2015-10-11 16:46:40',1,30045326,411,270,236,268,327,309,263,154,195,177,246,499,411,367,251,351,609,472,147,245,41,468,527,345),(4805,'2015-03-14 14:56:59','2015-10-11 16:46:40',1,30002759,55,9,10,2,3,2,0,14,11,11,115,16,4,6,1,1,0,33,0,3,54,14,2,27),(4806,'2015-03-14 14:56:59','2015-10-11 16:46:40',1,30003077,22,22,40,34,40,26,39,9,22,2,1,5,0,2,1,6,9,1,12,3,13,0,100,4),(4807,'2015-03-14 14:56:59','2015-10-11 16:46:40',1,30003988,0,202,34,89,181,0,66,1,495,123,24,0,0,92,14,19,48,0,198,120,412,67,178,3),(4808,'2015-03-14 14:56:59','2015-10-11 16:46:40',1,30001152,0,0,0,0,0,0,0,0,0,0,0,189,111,0,0,0,0,0,0,0,47,161,105,0),(4809,'2015-03-14 14:56:59','2015-10-11 16:46:40',1,30001003,84,0,1,0,91,41,0,42,0,3,45,56,44,44,32,0,0,45,7,104,16,50,90,100),(4810,'2015-03-14 14:56:59','2015-10-11 16:46:40',1,30000549,71,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(4811,'2015-03-14 14:56:59','2015-10-11 16:46:40',1,30001121,95,179,4,16,186,102,396,262,622,7,1,0,0,0,0,0,0,450,0,0,0,37,54,414),(4812,'2015-03-14 14:56:59','2015-10-11 16:46:40',1,30005150,0,0,0,49,0,0,0,0,0,0,0,0,0,0,0,0,0,55,0,0,0,0,0,0),(4813,'2015-03-14 14:56:59','2015-10-11 16:46:40',1,30003981,60,0,0,0,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(4814,'2015-03-14 14:56:59','2015-10-11 16:46:40',1,30000561,0,0,0,0,0,0,0,0,0,0,0,95,80,0,0,0,0,0,0,0,0,0,0,0),(4815,'2015-03-14 14:56:59','2015-10-11 16:46:40',1,30003536,47,16,8,102,8,9,24,53,32,32,71,55,112,77,174,118,25,68,64,96,96,143,27,97),(4816,'2015-03-14 14:56:59','2015-10-11 16:46:40',1,30000040,38,0,0,9,0,0,55,0,10,0,0,0,8,49,49,27,26,0,0,16,0,0,8,0),(4817,'2015-03-14 14:56:59','2015-10-11 16:46:40',1,30000930,15,3,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(4818,'2015-03-14 14:56:59','2015-03-14 14:56:59',1,30005097,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(4819,'2015-03-14 14:56:59','2015-10-11 16:46:40',1,30003965,0,0,0,40,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(4820,'2015-03-14 14:56:59','2015-10-11 16:46:40',1,30001162,184,0,4,1,0,0,17,0,0,0,10,0,0,0,0,0,3,70,0,0,0,0,0,0),(4821,'2015-03-14 14:56:59','2015-10-11 16:46:40',1,30000434,0,0,0,0,0,0,0,0,92,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(4822,'2015-03-14 14:56:59','2015-03-14 14:56:59',1,30000393,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(4823,'2015-03-14 14:56:59','2015-03-14 14:56:59',1,30000732,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(4824,'2015-03-14 14:56:59','2015-10-11 16:46:40',1,30000988,0,4,0,0,0,0,0,58,11,25,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(4825,'2015-03-14 14:56:59','2015-10-11 16:46:40',1,30001008,1,0,9,0,113,99,94,46,36,15,72,34,55,0,0,0,4,46,0,0,14,35,146,114),(4826,'2015-03-14 14:56:59','2015-10-11 16:46:40',1,30001143,0,66,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,25,0,0,0,0,0,0),(4827,'2015-03-14 14:56:59','2015-10-11 16:46:40',1,30000674,0,0,0,0,0,0,0,0,0,25,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(4828,'2015-03-14 14:56:59','2015-10-11 16:46:40',1,30003672,0,125,0,84,13,12,153,48,0,0,66,124,191,205,0,0,0,280,371,174,14,118,373,713),(4829,'2015-03-14 14:56:59','2015-10-11 16:46:40',1,30003953,0,0,0,15,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(4830,'2015-03-14 14:56:59','2015-10-11 16:46:40',1,30002437,33,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,16,0,0),(4831,'2015-03-14 14:56:59','2015-10-11 16:46:40',1,30000264,176,6,311,4,44,14,4,30,0,5,47,27,0,0,0,0,0,0,156,1,119,0,0,0),(4832,'2015-03-14 14:56:59','2015-10-11 16:46:40',1,30000248,0,0,8,85,0,0,0,0,0,0,0,0,0,0,0,119,119,0,0,41,0,0,0,0),(4833,'2015-03-14 14:56:59','2015-10-11 16:46:40',1,30002379,0,33,9,3,41,3,87,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(4834,'2015-03-14 14:56:59','2015-03-14 14:56:59',1,30000755,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(4835,'2015-03-14 14:56:59','2015-10-11 16:46:40',1,30000694,30,0,0,0,0,0,5,0,0,0,0,0,63,0,0,0,5,32,0,0,0,109,149,158),(4836,'2015-03-14 14:56:59','2015-10-11 16:46:40',1,30001787,133,0,0,0,0,0,0,0,0,0,215,657,654,24,4,8,56,44,0,0,0,4,0,8),(4837,'2015-03-14 14:56:59','2015-10-11 16:46:40',1,30004406,0,0,0,0,0,0,0,0,0,126,151,0,93,0,0,0,2,226,0,0,0,143,114,4),(4838,'2015-03-14 14:56:59','2015-10-11 16:46:40',1,30003226,44,0,0,0,0,0,0,183,0,0,0,0,0,0,0,24,118,0,0,0,0,0,0,0),(4839,'2015-03-14 14:56:59','2015-10-11 16:46:40',1,30003130,1077,127,268,101,101,0,301,18,124,0,0,0,0,0,12,3,0,0,0,0,0,0,99,99),(4840,'2015-03-14 14:56:59','2015-10-11 16:46:40',1,30003194,0,0,199,67,53,0,26,0,0,0,40,65,166,0,169,64,0,0,0,0,0,0,0,0),(4841,'2015-03-14 14:56:59','2015-10-11 16:46:40',1,30000849,0,0,185,0,288,61,4,66,0,0,0,0,4,0,7,10,8,0,15,17,13,0,0,0),(4842,'2015-03-14 14:56:59','2015-10-11 16:46:40',1,30001892,0,1,0,0,0,0,0,0,0,0,0,0,0,94,51,32,0,62,0,0,5,0,3,0),(4843,'2015-03-14 14:56:59','2015-10-11 16:46:40',1,30003143,64,0,0,127,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(4844,'2015-03-14 14:56:59','2015-10-11 16:46:40',1,30002862,0,0,0,0,0,0,24,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(4845,'2015-03-14 14:56:59','2015-10-11 16:46:40',1,30001222,6,0,0,0,0,0,0,0,0,148,164,54,10,24,0,0,0,4,48,1,6,30,87,36),(4846,'2015-03-14 14:56:59','2015-10-11 16:46:40',1,30001084,0,2,0,0,88,136,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(4847,'2015-03-14 14:56:59','2015-10-11 16:46:40',1,30001301,0,40,3,0,0,0,0,0,71,0,6,3,2,12,0,0,0,0,0,0,11,0,0,0),(4848,'2015-03-14 14:56:59','2015-03-14 14:56:59',1,30000375,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(4849,'2015-03-14 14:56:59','2015-10-11 16:46:40',1,30003294,0,0,0,8,0,8,108,11,0,0,3,0,0,0,0,0,0,0,0,0,0,1,0,0),(4850,'2015-03-14 14:56:59','2015-10-11 16:46:40',1,30004644,17,0,23,0,211,141,275,0,0,67,0,0,76,36,15,15,0,73,0,44,1,0,44,118),(4851,'2015-03-14 14:56:59','2015-10-11 16:46:40',1,30000888,365,0,0,0,85,77,0,0,0,68,0,0,0,0,0,0,0,0,0,0,18,0,0,0),(4852,'2015-03-14 14:56:59','2015-10-11 16:46:40',1,30003666,15,406,130,669,1540,1521,147,113,409,57,198,212,99,86,60,17,270,218,0,89,46,38,157,204),(4853,'2015-03-14 14:56:59','2015-10-11 16:46:40',1,30001015,29,0,4,0,0,0,0,3,53,0,0,0,0,0,3,3,0,28,0,0,5,0,0,25),(4854,'2015-03-14 14:56:59','2015-10-11 16:46:40',1,30000603,0,0,0,0,0,0,0,14,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(4855,'2015-03-14 14:56:59','2015-10-11 16:46:40',1,30000984,0,0,0,0,0,0,0,0,0,0,0,0,0,53,50,19,0,135,0,0,0,6,0,0),(4856,'2015-03-14 14:56:59','2015-10-11 16:46:40',1,30004329,0,36,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,22,0,126,0),(4857,'2015-03-14 14:56:59','2015-10-11 16:46:40',1,30001175,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,17,0,0,0,0,0,0),(4858,'2015-03-14 14:56:59','2015-10-11 16:46:40',1,30001383,285,213,389,324,211,411,292,164,254,167,345,280,380,145,282,349,415,607,169,275,168,489,544,139),(4859,'2015-03-14 14:56:59','2015-10-11 16:46:40',1,30000123,245,124,16,315,122,200,68,177,144,92,261,121,148,213,386,204,216,131,72,116,101,112,351,53),(4860,'2015-03-14 14:56:59','2015-10-11 16:46:40',1,30045331,13,83,0,16,29,57,3,23,17,18,3,15,20,84,126,100,21,34,12,7,0,37,25,33),(4861,'2015-03-14 14:56:59','2015-10-11 16:46:40',1,30005306,460,213,305,305,179,295,388,235,221,186,421,401,97,374,386,453,359,190,210,595,455,424,725,625),(4862,'2015-03-14 14:56:59','2015-10-11 16:46:40',1,30004196,0,0,0,0,0,0,0,29,0,73,42,85,0,0,62,62,1,0,0,0,0,37,62,0),(4863,'2015-03-14 14:56:59','2015-10-11 16:46:40',1,30000170,302,175,212,265,63,112,128,178,82,91,140,140,261,99,130,34,121,59,94,53,206,160,130,107),(4864,'2015-03-14 14:56:59','2015-10-11 16:46:40',1,30004289,0,11,44,16,34,11,26,5,51,0,3,3,0,1,42,44,11,12,0,0,0,7,25,10),(4865,'2015-03-14 14:56:59','2015-10-11 16:46:40',1,30005029,434,308,327,508,542,325,216,106,155,571,1115,818,143,503,279,234,335,398,420,141,174,211,161,263),(4866,'2015-03-14 14:56:59','2015-10-11 16:46:40',1,30003483,54,0,6,0,3,0,0,0,0,61,0,0,0,5,1,0,3,22,0,0,0,0,4,9),(4867,'2015-03-14 14:56:59','2015-10-11 16:46:40',1,30004230,44,12,0,0,0,0,0,29,0,93,1,0,6,0,0,0,0,0,0,14,1,0,65,0),(4868,'2015-03-14 14:56:59','2015-10-11 16:46:40',1,30002538,0,27,47,29,2,2,0,4,13,6,49,33,7,3,1,1,8,10,12,0,5,1,10,17),(4869,'2015-03-14 14:56:59','2015-10-11 16:46:40',1,30002400,144,32,196,102,20,43,25,0,151,80,134,238,31,57,249,166,108,32,0,61,68,75,162,15),(4870,'2015-03-14 14:56:59','2015-10-11 16:46:40',1,30000190,261,84,141,185,123,147,205,130,78,206,157,223,233,130,215,248,216,130,41,157,223,66,296,243),(4871,'2015-03-14 14:56:59','2015-10-11 16:46:40',1,30002230,83,19,0,168,38,69,0,22,32,30,102,147,39,49,28,15,2,3,123,27,28,80,1,20),(4872,'2015-03-14 14:56:59','2015-10-11 16:46:40',1,30000173,204,168,197,24,182,123,194,53,115,237,146,75,169,246,295,186,178,281,197,225,169,235,231,261),(4873,'2015-03-14 14:56:59','2015-10-11 16:46:40',1,30003027,17,134,43,139,71,188,43,24,99,15,257,147,120,75,133,137,74,42,93,191,82,115,160,81),(4874,'2015-03-14 14:56:59','2015-10-11 16:46:40',1,30005318,127,158,131,199,239,241,149,59,196,161,215,216,170,155,99,106,209,281,175,268,120,184,160,211),(4875,'2015-03-14 14:56:59','2015-10-11 16:46:40',1,30004547,153,0,0,0,0,0,0,0,0,0,0,0,66,0,0,0,0,0,0,0,0,0,0,5),(4876,'2015-03-14 14:56:59','2015-10-11 16:46:40',1,30000806,789,47,12,57,52,30,37,88,118,0,0,0,3,7,115,293,359,111,11,40,15,11,23,16),(4877,'2015-03-14 14:56:59','2015-10-11 16:46:40',1,30000842,127,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,13,0,0,0,3,0,0),(4878,'2015-03-14 14:56:59','2015-10-11 16:46:40',1,30001824,708,316,136,85,18,190,965,65,288,54,291,663,559,942,870,741,349,216,66,12,175,32,567,465),(4879,'2015-03-14 14:56:59','2015-10-11 16:46:40',1,30005195,2,0,35,7,41,86,0,77,0,0,0,0,0,24,1,0,0,0,10,42,7,0,14,0),(4880,'2015-03-14 14:56:59','2015-10-11 16:46:40',1,30003589,35,6,70,81,76,19,0,0,95,161,281,259,72,28,215,150,31,25,119,15,122,1,150,44),(4881,'2015-03-14 14:56:59','2015-10-11 16:46:40',1,30004246,0,0,0,0,31,88,78,30,0,1,0,0,0,13,0,0,0,0,0,0,76,0,0,0),(4882,'2015-03-14 14:56:59','2015-10-11 16:46:40',1,30001362,440,346,553,533,373,323,769,329,327,217,610,747,579,959,537,551,787,311,288,442,344,600,372,249),(4883,'2015-03-14 14:56:59','2015-10-11 16:46:40',1,30001380,659,613,179,430,580,350,649,286,269,266,407,331,385,296,705,643,637,513,155,299,262,235,285,693),(4884,'2015-03-14 14:56:59','2015-10-11 16:46:40',1,30002798,313,716,757,417,476,340,425,321,271,299,333,284,477,337,370,425,291,350,181,192,223,252,613,410),(4885,'2015-03-14 14:56:59','2015-10-11 16:46:40',1,30004220,643,164,103,140,0,3,438,521,318,0,110,161,71,90,229,192,100,262,53,5,112,385,466,287),(4886,'2015-03-14 14:56:59','2015-10-11 16:46:40',1,30003820,0,0,22,29,32,9,0,21,0,76,32,22,27,0,0,0,9,62,0,0,0,0,0,44),(4887,'2015-03-14 14:56:59','2015-10-11 16:46:40',1,30003572,0,44,1,4,23,74,0,18,34,48,4,0,9,11,4,4,18,33,42,26,12,32,32,26),(4888,'2015-03-14 14:56:59','2015-10-11 16:46:40',1,30003790,67,22,57,12,28,30,0,4,0,0,5,5,51,1,14,12,17,8,3,18,24,7,6,21),(4889,'2015-03-14 14:56:59','2015-10-11 16:46:40',1,30003899,0,0,0,2,36,36,2,0,0,0,0,3,59,0,0,0,0,0,0,0,0,0,0,0),(4890,'2015-03-14 14:56:59','2015-10-11 16:46:40',1,30004433,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,25,0,0,0,0,0,0),(4891,'2015-03-14 14:56:59','2015-10-11 16:46:40',1,30002904,0,79,38,135,60,41,0,0,4,0,134,15,0,26,30,0,62,0,0,0,1,0,131,47),(4892,'2015-03-14 14:56:59','2015-10-11 16:46:40',1,30001303,0,3,0,0,0,0,3,0,0,0,0,0,0,6,0,0,0,0,0,48,70,0,0,0),(4893,'2015-03-14 14:56:59','2015-10-11 16:46:40',1,30001351,0,0,0,0,0,0,0,0,56,0,0,0,0,0,0,0,0,0,0,0,0,15,11,0),(4894,'2015-03-14 14:56:59','2015-10-11 16:46:40',1,30001794,22,0,0,0,0,0,0,0,0,0,0,24,10,0,0,0,0,0,0,0,0,0,0,0),(4895,'2015-03-14 14:56:59','2015-10-11 16:46:40',1,30000295,5,30,0,0,88,87,0,0,116,4,7,7,0,7,0,0,7,4,0,12,6,4,13,13),(4896,'2015-03-14 14:56:59','2015-10-11 16:46:40',1,30004997,31,34,48,64,13,4,131,31,18,6,6,6,21,4,19,1,23,10,35,26,33,31,44,27),(4897,'2015-03-14 14:56:59','2015-03-14 14:56:59',1,30000346,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(4898,'2015-03-14 14:56:59','2015-10-11 16:46:40',1,30003816,0,51,218,102,107,87,2,0,172,48,0,0,48,20,3,20,39,6,0,66,6,0,12,0),(4899,'2015-03-14 14:56:59','2015-10-11 16:46:40',1,30045309,12,53,27,15,12,26,21,5,69,37,146,94,26,1,34,42,40,11,12,15,82,54,56,39),(4900,'2015-03-14 14:56:59','2015-10-11 16:46:40',1,30004993,109,167,210,173,175,127,147,229,170,51,59,106,166,240,294,244,235,282,207,296,222,353,256,401),(4901,'2015-03-14 14:56:59','2015-10-11 16:46:40',1,30003390,178,192,224,128,96,12,117,244,185,9,272,310,216,212,230,342,471,156,85,139,145,184,164,26),(4902,'2015-03-14 14:56:59','2015-10-11 16:46:40',1,30002088,117,0,0,0,0,1,0,0,1,57,11,3,18,0,28,55,50,6,4,7,28,29,62,51),(4903,'2015-03-14 14:56:59','2015-10-11 16:46:40',1,30004991,0,1,38,25,0,0,48,8,8,0,6,3,1,0,3,5,5,0,0,0,0,0,0,4),(4904,'2015-03-14 14:56:59','2015-10-11 16:46:40',1,30002731,138,191,379,213,325,305,133,208,248,361,369,357,186,168,450,306,314,594,216,332,312,340,517,155),(4905,'2015-03-14 14:56:59','2015-10-11 16:46:40',1,30003810,3,152,121,329,92,2,84,47,48,106,181,181,99,171,182,125,181,134,144,136,187,217,174,65),(4906,'2015-03-14 14:56:59','2015-10-11 16:46:40',1,30002487,0,0,78,14,0,115,0,0,0,0,0,36,229,0,0,0,0,161,0,0,0,124,74,0),(4907,'2015-03-14 14:56:59','2015-10-11 16:46:40',1,30004551,0,0,2,13,12,0,3,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(4908,'2015-03-14 14:56:59','2015-10-11 16:46:40',1,30000625,0,0,98,0,0,0,84,0,53,0,0,0,25,0,7,0,0,0,0,0,0,0,0,0),(4909,'2015-03-14 14:56:59','2015-10-11 16:46:40',1,30001566,0,2,0,0,0,0,0,0,0,0,0,0,0,0,0,22,22,0,0,0,0,0,53,183),(4910,'2015-03-14 14:56:59','2015-10-11 16:46:40',1,30003749,0,88,68,88,52,38,1,0,394,54,60,85,186,0,0,4,16,155,0,0,0,9,0,92),(4911,'2015-03-14 14:56:59','2015-10-11 16:46:40',1,30000927,0,12,0,0,0,0,0,0,0,0,0,0,0,33,0,0,0,0,76,15,3,8,9,0),(4912,'2015-03-14 14:56:59','2015-10-11 16:46:40',1,30004315,0,0,515,673,169,0,78,0,0,0,0,0,9,0,0,0,0,0,0,93,0,32,1,0),(4913,'2015-03-14 14:56:59','2015-10-11 16:46:40',1,30003116,587,348,109,227,299,237,13,108,59,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(4914,'2015-03-14 14:56:59','2015-10-11 16:46:40',1,30003339,0,4,19,0,0,4,3,0,0,0,0,3,0,0,0,0,0,111,0,0,0,0,0,29),(4915,'2015-03-14 14:56:59','2015-10-11 16:46:40',1,30003836,1,1,1,1,0,0,17,6,0,85,0,0,0,12,8,5,2,3,0,11,25,47,0,3),(4916,'2015-03-14 14:56:59','2015-03-14 14:56:59',1,30000420,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(4917,'2015-03-14 14:56:59','2015-10-11 16:46:40',1,30004453,0,0,0,0,0,0,0,0,86,0,0,0,0,0,0,0,0,218,0,0,0,0,0,42),(4918,'2015-03-14 14:56:59','2015-10-11 16:46:40',1,30001925,0,0,0,0,0,0,0,0,12,0,0,0,0,1,3,1,0,0,0,1,0,37,1,0),(4919,'2015-03-14 14:56:59','2015-10-11 16:46:40',1,30001019,2,0,0,0,0,0,0,0,0,4,0,0,0,0,0,111,268,0,0,0,0,0,0,0),(4920,'2015-03-14 14:56:59','2015-10-11 16:46:40',1,30000322,10,0,49,0,158,121,75,44,0,0,0,9,20,0,55,104,59,88,72,204,46,4,0,21),(4921,'2015-03-14 14:56:59','2015-10-11 16:46:40',1,30003399,26,76,176,55,215,246,25,150,26,138,157,210,89,121,153,119,103,164,31,99,130,166,165,103),(4922,'2015-03-14 14:56:59','2015-10-11 16:46:40',1,30000193,193,181,197,180,224,337,219,119,167,189,81,155,148,178,178,101,159,68,63,59,147,230,323,302),(4923,'2015-03-14 14:56:59','2015-10-11 16:46:40',1,30002948,109,56,0,187,281,142,44,0,0,161,245,170,73,194,263,395,366,394,14,53,388,341,119,221),(4924,'2015-03-14 14:56:59','2015-10-11 16:46:40',1,30004943,88,192,41,0,1068,784,49,136,38,36,148,373,263,176,43,44,62,433,40,41,31,0,111,242),(4925,'2015-03-14 14:56:59','2015-10-11 16:46:40',1,30004931,0,130,0,0,0,4,0,0,0,21,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(4926,'2015-03-14 14:56:59','2015-10-11 16:46:40',1,30003175,1019,228,0,401,188,719,0,727,0,51,0,0,0,0,94,81,14,0,0,0,53,0,0,233),(4927,'2015-03-14 14:56:59','2015-03-14 14:56:59',1,30001506,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(4928,'2015-03-14 14:56:59','2015-10-11 16:46:40',1,30003685,33,37,1,0,0,0,32,26,0,0,3,24,0,0,19,19,0,0,0,1,32,0,36,54),(4929,'2015-03-14 14:56:59','2015-10-11 16:46:40',1,30003361,33,0,8,0,0,0,45,26,0,0,0,0,0,24,45,0,58,0,0,0,0,0,3,0),(4930,'2015-03-14 14:56:59','2015-10-11 16:46:40',1,30002448,23,0,0,0,0,0,0,0,0,43,0,33,46,0,70,0,0,0,0,0,0,0,0,0),(4931,'2015-03-14 14:56:59','2015-10-11 16:46:40',1,30003959,0,0,0,0,0,0,0,0,0,0,0,0,0,92,0,0,0,0,0,0,0,0,0,0),(4932,'2015-03-14 14:56:59','2015-10-11 16:46:40',1,30001836,0,2,0,0,0,1,0,2,0,0,0,0,0,6,24,25,5,58,31,0,6,2,0,0),(4933,'2015-03-14 14:56:59','2015-10-11 16:46:40',1,30003129,0,0,0,121,0,0,0,0,0,0,0,0,0,2,0,0,0,0,0,0,0,0,0,0),(4934,'2015-03-14 14:56:59','2015-10-11 16:46:40',1,30004890,0,0,96,0,0,0,0,0,0,136,130,156,0,0,0,0,0,0,0,0,0,6,0,0),(4935,'2015-03-14 14:56:59','2015-10-11 16:46:40',1,30002573,144,89,32,41,41,39,24,0,44,21,74,80,35,70,9,20,46,66,14,17,25,83,41,8),(4936,'2015-03-14 14:56:59','2015-10-11 16:46:40',1,30001443,161,173,261,328,137,136,268,18,147,236,208,183,124,302,201,301,292,255,217,214,219,540,224,502),(4937,'2015-03-14 14:56:59','2015-10-11 16:46:40',1,30003309,0,0,3,0,0,0,0,0,0,0,0,0,0,0,0,0,13,0,10,0,0,0,0,0),(4938,'2015-03-14 14:56:59','2015-10-11 16:46:40',1,30001073,0,0,0,0,0,0,0,20,0,97,189,17,4,155,29,6,76,155,0,0,0,76,56,24),(4939,'2015-03-14 14:56:59','2015-10-11 16:46:40',1,30001327,8,33,0,0,0,33,0,0,0,10,22,22,13,0,3,0,0,0,0,10,13,0,0,12),(4940,'2015-03-14 14:56:59','2015-03-14 14:56:59',1,30004457,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(4941,'2015-03-14 14:56:59','2015-10-11 16:46:40',1,30001054,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,63,3),(4942,'2015-03-14 14:56:59','2015-10-11 16:46:40',1,30005173,341,74,64,158,78,41,0,0,32,227,119,127,123,23,0,0,207,980,0,492,711,960,627,354),(4943,'2015-03-14 14:56:59','2015-03-14 14:56:59',1,30001541,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(4944,'2015-03-14 14:56:59','2015-03-14 14:56:59',1,30000924,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(4945,'2015-03-14 14:56:59','2015-03-14 14:56:59',1,30004227,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(4946,'2015-03-14 14:56:59','2015-10-11 16:46:40',1,30003098,0,151,0,39,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,4,9,0,0,0),(4947,'2015-03-14 14:56:59','2015-10-11 16:46:40',1,30002655,893,604,252,191,274,378,160,101,98,546,541,428,493,963,1379,1599,1359,743,423,765,596,741,866,552),(4948,'2015-03-14 14:56:59','2015-10-11 16:46:40',1,30004936,4,0,0,0,23,49,0,0,0,0,0,0,0,0,0,0,0,139,0,59,3,0,0,0),(4949,'2015-03-14 14:56:59','2015-03-14 14:56:59',1,30001477,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(4950,'2015-03-14 14:56:59','2015-10-11 16:46:40',1,30003247,590,0,0,0,0,0,414,0,0,0,711,1432,439,0,0,0,366,1464,0,0,0,684,1520,745),(4951,'2015-03-14 14:56:59','2015-10-11 16:46:40',1,30004822,0,0,0,0,0,0,0,0,0,0,126,136,23,0,0,0,0,0,0,0,0,0,0,0),(4952,'2015-03-14 14:56:59','2015-10-11 16:46:40',1,30002497,151,9,409,0,27,0,81,0,0,0,0,3,15,0,0,0,0,0,0,0,0,15,7,0),(4953,'2015-03-14 14:56:59','2015-10-11 16:46:40',1,30004392,349,165,114,497,108,210,165,20,140,67,181,220,231,356,628,521,454,151,564,615,605,0,0,0),(4954,'2015-03-14 14:56:59','2015-10-11 16:46:40',1,30004055,169,22,5,8,60,71,0,0,30,0,10,23,0,0,0,0,0,99,0,0,0,0,0,62),(4955,'2015-03-14 14:56:59','2015-03-14 14:56:59',1,30000751,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(4956,'2015-03-14 14:56:59','2015-03-14 14:56:59',1,30000345,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(4957,'2015-03-14 14:56:59','2015-03-14 14:56:59',1,30005177,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(4958,'2015-03-14 14:56:59','2015-10-11 16:46:40',1,30002147,0,0,0,0,0,0,0,0,0,0,0,0,48,0,0,0,0,0,0,0,0,0,0,0),(4959,'2015-03-14 14:56:59','2015-10-11 16:46:40',1,30004005,5,61,16,0,28,28,18,63,0,89,10,65,1,253,8,11,11,97,101,291,127,4,118,459),(4960,'2015-03-14 14:56:59','2015-10-11 16:46:40',1,30003968,0,155,0,0,53,75,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(4961,'2015-03-14 14:56:59','2015-03-14 14:56:59',1,30004753,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(4962,'2015-03-14 14:56:59','2015-10-11 16:46:40',1,30005142,284,50,1,423,451,328,17,46,18,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(4963,'2015-03-14 14:56:59','2015-03-14 14:56:59',1,30000830,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(4964,'2015-03-14 14:56:59','2015-10-11 16:46:40',1,30001250,0,0,99,0,0,0,0,102,20,255,83,132,129,464,265,322,244,519,350,222,223,360,425,56),(4965,'2015-03-14 14:56:59','2015-10-11 16:46:40',1,30001939,0,0,23,13,3,3,15,0,0,0,21,1,5,4,30,8,0,4,11,52,53,28,10,21),(4966,'2015-03-14 14:56:59','2015-10-11 16:46:40',1,30000532,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(4967,'2015-03-14 14:56:59','2015-03-14 14:56:59',1,30000932,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(4968,'2015-03-14 14:56:59','2015-10-11 16:46:40',1,30000893,46,85,75,29,171,148,270,816,253,438,243,480,294,295,387,228,242,472,27,150,85,328,166,467),(4969,'2015-03-14 14:56:59','2015-10-11 16:46:40',1,30001897,0,0,0,0,0,0,0,49,0,0,0,0,3,0,0,0,1,0,0,0,0,0,88,0),(4970,'2015-03-14 14:56:59','2015-03-14 14:56:59',1,30001516,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(4971,'2015-03-14 14:56:59','2015-10-11 16:46:40',1,30001105,1560,151,251,0,399,516,1014,451,0,39,1024,1248,989,0,749,881,784,211,467,262,0,69,363,443),(4972,'2015-03-14 14:56:59','2015-10-11 16:46:40',1,30004537,0,0,0,0,0,16,27,75,0,0,0,0,0,5,0,0,0,0,0,0,0,0,0,0),(4973,'2015-03-14 14:56:59','2015-10-11 16:46:40',1,30003660,273,271,164,340,55,196,105,45,163,0,0,0,39,0,0,0,0,0,0,0,0,0,0,65),(4974,'2015-03-14 14:56:59','2015-10-11 16:46:40',1,30004538,0,0,0,39,0,0,0,76,17,28,149,135,0,0,0,0,0,0,0,0,0,0,0,0),(4975,'2015-03-14 14:56:59','2015-10-11 16:46:40',1,30000617,0,0,0,0,0,0,0,0,0,0,0,0,0,0,3,3,0,0,0,0,0,0,3,0),(4976,'2015-03-14 14:56:59','2015-10-11 16:46:40',1,30001311,62,75,33,54,64,51,166,12,0,4,85,30,70,98,107,44,79,82,79,109,124,89,90,33),(4977,'2015-03-14 14:56:59','2015-03-14 14:56:59',1,30000367,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(4978,'2015-03-14 14:56:59','2015-03-14 14:56:59',1,30000635,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(4979,'2015-03-14 14:56:59','2015-10-11 16:46:40',1,30002172,211,126,383,148,906,956,350,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(4980,'2015-03-14 14:56:59','2015-10-11 16:46:40',1,30001095,11,0,0,0,0,0,0,0,0,0,0,0,0,69,20,0,0,0,0,0,0,0,0,0),(4981,'2015-03-14 14:56:59','2015-03-14 14:56:59',1,30001522,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(4982,'2015-03-14 14:56:59','2015-10-11 16:46:40',1,30003205,0,0,0,0,0,0,0,17,0,0,0,0,0,0,0,5,53,0,0,0,0,0,0,0),(4983,'2015-03-14 14:56:59','2015-03-14 14:56:59',1,30001502,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(4984,'2015-03-14 14:56:59','2015-10-11 16:46:40',1,30000521,0,0,0,0,0,0,0,0,0,0,0,0,0,90,4,0,0,127,0,1,0,0,0,0),(4985,'2015-03-14 14:56:59','2015-10-11 16:46:40',1,30003983,11,0,24,0,0,0,4,124,0,0,0,18,1,0,12,18,12,0,3,8,29,9,13,9),(4986,'2015-03-14 14:56:59','2015-10-11 16:46:40',1,30000894,0,111,31,26,120,82,281,27,204,64,71,0,141,100,425,513,426,0,304,5,6,81,0,139),(4987,'2015-03-14 14:56:59','2015-10-11 16:46:40',1,30003622,0,0,41,0,16,0,14,91,0,0,0,0,0,9,0,0,0,0,0,0,0,0,0,0),(4988,'2015-03-14 14:56:59','2015-10-11 16:46:40',1,30001179,0,0,0,1,0,0,0,0,0,0,0,0,21,1,0,0,0,92,0,0,0,0,0,0),(4989,'2015-03-14 14:56:59','2015-10-11 16:46:40',1,30001748,21,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(4990,'2015-03-14 14:56:59','2015-10-11 16:46:40',1,30003102,0,128,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,42,3,0,0,0,0,0),(4991,'2015-03-14 14:56:59','2015-10-11 16:46:40',1,30002787,549,640,469,689,278,205,404,290,164,429,670,710,404,379,579,527,570,578,368,87,402,794,463,493),(4992,'2015-03-14 14:56:59','2015-10-11 16:46:40',1,30000191,47,17,3,51,0,2,6,0,0,37,1,1,2,80,0,1,22,65,0,26,22,0,0,8),(4993,'2015-03-14 14:56:59','2015-10-11 16:46:40',1,30003553,7,44,108,79,15,11,27,26,21,52,266,104,48,46,198,143,65,96,73,14,63,90,36,122),(4994,'2015-03-14 14:56:59','2015-10-11 16:46:40',1,30002790,858,671,584,713,744,566,645,104,286,1160,1180,911,704,872,720,893,913,1198,365,626,592,1028,747,824),(4995,'2015-03-14 14:56:59','2015-03-14 14:56:59',1,30004803,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(4996,'2015-03-14 14:56:59','2015-10-11 16:46:40',1,30001872,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,61,0,0,0),(4997,'2015-03-14 14:56:59','2015-10-11 16:46:40',1,30000238,95,15,121,312,0,0,142,78,256,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(4998,'2015-03-14 14:56:59','2015-10-11 16:46:40',1,30001160,0,0,0,0,0,0,0,3,0,0,2,6,0,0,0,0,0,0,0,0,0,0,0,0),(4999,'2015-03-14 14:56:59','2015-03-14 14:56:59',1,30001493,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(5000,'2015-03-14 14:56:59','2015-10-11 16:46:40',1,30004847,0,0,0,0,0,0,0,0,0,52,84,91,48,39,128,86,62,108,41,91,81,109,228,67),(5001,'2015-03-14 14:56:59','2015-10-11 16:46:40',1,30000972,0,0,0,0,0,0,0,0,0,0,0,0,0,0,6,3,0,0,0,0,0,55,0,0),(5002,'2015-03-14 14:56:59','2015-10-11 16:46:40',1,30002415,13,1,25,1,2,9,0,32,27,0,0,0,0,3,16,30,23,7,53,0,0,67,28,2),(5003,'2015-03-14 14:56:59','2015-10-11 16:46:40',1,30001878,44,62,31,3,8,17,0,5,0,29,113,256,333,67,86,272,385,277,17,212,600,135,71,189),(5004,'2015-03-14 14:56:59','2015-10-11 16:46:40',1,30003583,50,12,0,30,249,236,5,0,13,2,33,24,52,27,8,34,43,8,76,12,148,0,59,37),(5005,'2015-03-14 14:56:59','2015-03-14 14:56:59',1,30000326,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(5006,'2015-03-14 14:56:59','2015-10-11 16:46:40',1,30000746,0,0,135,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(5007,'2015-03-14 14:56:59','2015-03-14 14:56:59',1,30001247,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(5008,'2015-03-14 14:56:59','2015-10-11 16:46:40',1,30000725,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,96),(5009,'2015-03-14 14:56:59','2015-10-11 16:46:40',1,30002629,316,0,20,13,0,0,0,0,0,0,0,0,0,0,152,165,209,147,0,0,0,85,127,62),(5010,'2015-03-14 14:56:59','2015-10-11 16:46:40',1,30002429,4,0,0,0,0,100,0,0,0,0,0,0,51,0,47,0,0,0,0,0,0,25,0,1),(5011,'2015-03-14 14:56:59','2015-10-11 16:46:40',1,30000871,0,85,61,78,29,29,0,0,0,0,0,0,0,15,4,0,0,0,0,0,49,0,0,0),(5012,'2015-03-14 14:56:59','2015-10-11 16:46:40',1,30001839,0,0,0,0,0,0,0,0,0,0,0,0,0,3,0,0,0,1,0,0,0,0,0,0),(5013,'2015-03-14 14:56:59','2015-03-14 14:56:59',1,30000687,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(5014,'2015-03-14 14:56:59','2015-10-11 16:46:40',1,30001756,52,0,27,0,0,0,0,0,0,13,9,8,0,4,0,0,0,0,8,15,7,0,4,0),(5015,'2015-03-14 14:56:59','2015-10-11 16:46:40',1,30000206,204,145,87,168,65,193,134,5,120,82,147,129,149,61,131,157,151,146,42,135,283,161,111,144),(5016,'2015-03-14 14:56:59','2015-10-11 16:46:40',1,30003422,52,54,39,56,16,48,58,26,13,87,48,72,147,86,102,65,63,86,85,110,42,107,86,129),(5017,'2015-03-14 14:56:59','2015-10-11 16:46:40',1,30002554,13,0,1,0,0,0,0,9,0,28,3,0,6,0,0,7,8,0,0,0,0,2,13,9),(5018,'2015-03-14 14:56:59','2015-10-11 16:46:40',1,30001595,0,0,0,0,0,0,0,0,0,287,385,616,890,1540,1440,1004,540,742,185,790,1136,366,399,306),(5019,'2015-03-14 14:56:59','2015-10-11 16:46:40',1,30001207,228,248,48,58,268,161,103,152,15,175,290,197,201,176,414,133,300,279,319,247,107,489,401,365),(5020,'2015-03-14 14:56:59','2015-10-11 16:46:40',1,30001890,2,1,0,0,0,0,29,133,1,112,0,17,4,102,30,34,11,60,29,80,20,37,44,11),(5021,'2015-03-14 14:56:59','2015-10-11 16:46:40',1,30001755,85,0,0,0,3,3,0,0,0,1,102,104,30,0,0,0,0,0,0,0,0,0,0,0),(5022,'2015-03-14 14:56:59','2015-10-11 16:46:40',1,30001173,0,0,0,0,0,0,0,0,0,0,0,0,0,0,73,48,0,0,0,0,0,0,76,76),(5023,'2015-03-14 14:56:59','2015-03-14 14:56:59',1,30000372,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(5024,'2015-03-14 14:56:59','2015-10-11 16:46:40',1,30001336,0,0,0,0,0,0,0,0,0,29,46,10,39,19,45,41,43,107,34,57,83,93,24,14),(5025,'2015-03-14 14:56:59','2015-03-14 14:56:59',1,30001468,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(5026,'2015-03-14 14:56:59','2015-10-11 16:46:40',1,30000315,36,0,0,0,0,39,0,0,0,0,0,0,149,60,35,0,0,0,0,0,0,132,0,85),(5027,'2015-03-14 14:56:59','2015-10-11 16:46:40',1,30004662,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,4,0,0,0,32,54),(5028,'2015-03-14 14:56:59','2015-10-11 16:46:40',1,30002854,49,116,0,24,330,301,230,29,141,77,280,339,183,113,205,148,168,209,259,0,0,153,140,177),(5029,'2015-03-14 14:56:59','2015-10-11 16:46:40',1,30001849,67,0,0,0,1,3,0,40,0,7,25,26,39,76,35,36,59,4,0,0,0,37,47,75),(5030,'2015-03-14 14:56:59','2015-10-11 16:46:40',1,30004368,8,0,533,287,81,38,185,0,74,62,469,550,205,0,64,75,23,607,0,0,273,239,254,409),(5031,'2015-03-14 14:56:59','2015-10-11 16:46:40',1,30000711,46,0,0,0,0,0,0,0,41,10,165,175,1,0,0,54,145,33,0,0,0,346,87,140),(5032,'2015-03-14 14:56:59','2015-10-11 16:46:40',1,30000928,0,1,0,0,0,12,0,0,0,0,0,0,0,0,0,0,0,0,60,71,71,0,0,0),(5033,'2015-03-14 14:56:59','2015-10-11 16:46:40',1,30002371,0,0,0,0,0,0,0,0,0,128,0,0,0,1,3,3,0,0,3,0,0,0,0,0),(5034,'2015-03-14 14:56:59','2015-10-11 16:46:40',1,30001194,0,0,0,0,0,0,0,0,0,0,0,0,0,0,4,0,0,0,0,0,0,0,0,0),(5035,'2015-03-14 14:56:59','2015-10-11 16:46:40',1,30003696,213,163,152,210,392,171,243,151,135,224,189,230,170,0,0,0,0,42,0,35,181,51,257,0),(5036,'2015-03-14 14:56:59','2015-03-14 14:56:59',1,30000602,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(5037,'2015-03-14 14:56:59','2015-10-11 16:46:40',1,30004864,0,0,0,0,0,0,0,186,32,56,125,81,14,0,0,6,6,121,103,345,274,6,95,1540),(5038,'2015-03-14 14:56:59','2015-10-11 16:46:40',1,30003166,771,323,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,78,10,0),(5039,'2015-03-14 14:56:59','2015-03-14 14:56:59',1,30000957,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(5040,'2015-03-14 14:56:59','2015-10-11 16:46:40',1,30000433,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,68),(5041,'2015-03-14 14:56:59','2015-10-11 16:46:40',1,30002348,0,0,0,1,0,0,0,0,0,0,0,0,0,64,143,0,0,3,91,32,45,0,7,0),(5042,'2015-03-14 14:56:59','2015-10-11 16:46:40',1,30000187,458,851,698,643,501,788,522,662,596,282,798,717,857,828,846,714,590,698,468,311,727,567,568,440),(5043,'2015-03-14 14:56:59','2015-10-11 16:46:40',1,30002939,110,75,117,2,60,14,0,168,86,0,0,95,176,27,0,47,122,0,0,0,0,0,48,9),(5044,'2015-03-14 14:56:59','2015-10-11 16:46:40',1,30003638,22,432,589,100,262,158,188,372,79,21,0,0,21,10,0,0,58,82,100,220,148,101,47,162),(5045,'2015-03-14 14:56:59','2015-10-11 16:46:40',1,30000698,0,0,0,66,0,0,0,0,0,4,0,0,0,0,0,5,5,132,0,0,0,0,0,0),(5046,'2015-03-14 14:56:59','2015-10-11 16:46:40',1,30001140,162,0,0,50,0,0,0,0,0,0,9,224,619,0,110,110,0,183,0,0,0,0,48,56),(5047,'2015-03-14 14:56:59','2015-10-11 16:46:40',1,30003216,188,0,0,0,0,0,0,26,0,0,0,0,0,0,0,0,0,0,0,0,0,108,67,1),(5048,'2015-03-14 14:56:59','2015-10-11 16:46:40',1,30001998,0,110,0,0,0,0,0,0,0,0,0,0,0,0,47,37,0,0,0,0,0,0,0,0),(5049,'2015-03-14 14:56:59','2015-10-11 16:46:40',1,30003256,12,4,5,183,282,98,7,90,8,4,10,5,51,85,151,102,175,3,287,36,4,0,0,0),(5050,'2015-03-14 14:56:59','2015-10-11 16:46:40',1,30003120,0,1301,908,898,520,159,0,0,0,16,27,19,116,0,0,0,156,571,45,755,541,117,572,578),(5051,'2015-03-14 14:56:59','2015-03-14 14:56:59',1,30000337,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(5052,'2015-03-14 14:56:59','2015-10-11 16:46:40',1,30004621,344,578,472,168,340,481,517,617,235,260,307,713,550,341,240,426,493,591,150,174,317,159,452,189),(5053,'2015-03-14 14:56:59','2015-10-11 16:46:40',1,30002126,0,85,233,172,18,0,13,0,0,0,0,0,0,0,0,0,124,207,134,0,0,0,70,116),(5054,'2015-03-14 14:56:59','2015-10-11 16:46:40',1,30005016,139,172,163,25,343,292,1,26,39,39,215,214,40,143,171,261,179,59,82,28,166,152,126,84),(5055,'2015-03-14 14:56:59','2015-10-11 16:46:40',1,30002622,0,146,294,430,25,0,93,97,0,42,394,193,69,44,8,5,2,0,152,250,68,51,26,8),(5056,'2015-03-14 14:56:59','2015-10-11 16:46:40',1,30004840,0,0,0,0,0,0,0,151,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(5057,'2015-03-14 14:56:59','2015-10-11 16:46:40',1,30000517,0,0,50,0,0,0,50,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(5058,'2015-03-14 14:56:59','2015-10-11 16:46:40',1,30004915,337,723,0,558,473,565,32,21,289,168,177,1,157,257,117,177,319,94,43,0,275,293,367,0),(5059,'2015-03-14 14:56:59','2015-10-11 16:46:40',1,30004173,0,20,0,0,0,0,0,0,0,0,99,99,0,0,0,0,0,0,0,0,1,0,0,0),(5060,'2015-03-14 14:56:59','2015-10-11 16:46:40',1,30003744,598,211,119,172,477,398,717,11,107,50,447,367,580,311,395,498,864,794,126,25,14,358,826,777),(5061,'2015-03-14 14:56:59','2015-10-11 16:46:40',1,30002148,35,0,0,0,0,0,156,299,0,0,0,0,0,0,40,0,0,0,0,0,0,0,0,0),(5062,'2015-03-14 14:56:59','2015-10-11 16:46:40',1,30003110,0,0,0,0,0,0,0,0,0,0,0,0,0,0,4,0,0,0,0,0,0,0,0,0),(5063,'2015-03-14 14:56:59','2015-10-11 16:46:40',1,30001978,78,8,4,74,90,72,43,64,30,42,0,80,76,79,89,59,29,44,89,0,78,195,0,30),(5064,'2015-03-14 14:56:59','2015-10-11 16:46:40',1,30003245,0,0,0,0,0,0,182,0,0,0,0,0,0,0,0,0,8,9,0,0,0,6,10,0),(5065,'2015-03-14 14:56:59','2015-10-11 16:46:40',1,30000541,186,45,106,66,183,227,1,0,46,6,141,104,34,35,11,4,38,129,37,72,53,0,0,97),(5066,'2015-03-14 14:56:59','2015-10-11 16:46:40',1,30003274,0,0,0,1,1,87,2,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(5067,'2015-03-14 14:56:59','2015-10-11 16:46:40',1,30000882,9,207,0,60,51,57,97,0,0,0,0,13,12,165,21,0,0,0,0,0,0,0,0,0),(5068,'2015-03-14 14:56:59','2015-10-11 16:46:40',1,30003259,131,112,111,0,415,254,378,430,172,70,1207,1380,826,0,386,341,313,232,0,0,0,573,161,175),(5069,'2015-03-14 14:56:59','2015-10-11 16:46:40',1,30004907,759,0,0,93,37,17,0,395,345,0,4,93,141,0,98,10,0,0,0,0,0,129,218,56),(5070,'2015-03-14 14:56:59','2015-10-11 16:46:40',1,30003173,0,0,0,0,0,0,0,0,0,0,0,0,10,0,0,0,0,0,29,0,0,146,61,0),(5071,'2015-03-14 14:56:59','2015-10-11 16:46:40',1,30001594,0,0,0,0,0,0,1,0,0,2,7,2,0,0,0,0,0,0,0,3,0,4,1,0),(5072,'2015-03-14 14:56:59','2015-03-14 14:56:59',1,30000339,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(5073,'2015-03-14 14:56:59','2015-10-11 16:46:40',1,30003278,0,0,107,0,11,2,44,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(5074,'2015-03-14 14:56:59','2015-10-11 16:46:40',1,30004075,0,0,180,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(5075,'2015-03-14 14:56:59','2015-10-11 16:46:40',1,30001059,57,0,0,0,0,0,0,28,0,0,0,0,0,0,0,0,0,0,0,0,0,0,164,1),(5076,'2015-03-14 14:56:59','2015-10-11 16:46:40',1,30003288,54,7,0,0,46,1,0,43,0,33,0,20,0,3,2,4,25,0,0,0,5,123,0,16),(5077,'2015-03-14 14:56:59','2015-10-11 16:46:40',1,30003770,0,134,102,0,0,0,121,0,0,0,0,0,0,0,0,0,0,1,13,0,0,0,0,0),(5078,'2015-03-14 14:56:59','2015-10-11 16:46:40',1,30002916,0,163,238,87,139,130,266,109,199,40,6,0,0,0,0,0,0,0,115,29,0,0,0,0),(5079,'2015-03-14 14:56:59','2015-10-11 16:46:40',1,30003208,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,52,0,0,0,0,35),(5080,'2015-03-14 14:56:59','2015-10-11 16:46:40',1,30000808,31,170,23,4,191,149,88,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(5081,'2015-03-14 14:56:59','2015-03-14 14:56:59',1,30000358,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(5082,'2015-03-14 14:56:59','2015-10-11 16:46:40',1,30000833,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(5083,'2015-03-14 14:56:59','2015-10-11 16:46:40',1,30001835,0,2,0,0,52,52,0,4,0,0,30,31,0,0,0,0,0,0,0,1,1,0,0,0),(5084,'2015-03-14 14:56:59','2015-10-11 16:46:40',1,30001086,0,30,207,7,11,0,6,74,35,0,12,67,3,0,105,208,338,171,0,0,152,267,11,59),(5085,'2015-03-14 14:56:59','2015-10-11 16:46:40',1,30000713,4,0,0,0,0,0,9,49,11,0,0,0,0,2,0,0,0,0,0,0,0,0,0,126),(5086,'2015-03-14 14:56:59','2015-10-11 16:46:40',1,30002943,592,1100,0,0,29,94,95,577,249,47,362,230,136,134,767,748,371,1260,84,167,295,236,501,777),(5087,'2015-03-14 14:56:59','2015-10-11 16:46:40',1,30003688,142,0,0,15,2,6,0,0,0,0,0,0,32,0,44,8,3,0,2,31,0,0,0,4),(5088,'2015-03-14 14:56:59','2015-10-11 16:46:40',1,30001211,92,167,3,14,18,14,0,0,0,69,35,72,0,122,0,0,0,187,136,57,0,0,1,132),(5089,'2015-03-14 14:56:59','2015-10-11 16:46:40',1,30001249,0,0,0,0,0,0,0,0,0,0,0,0,0,0,4,0,0,0,0,0,0,0,0,0),(5090,'2015-03-14 14:56:59','2015-03-14 14:56:59',1,30000496,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(5091,'2015-03-14 14:56:59','2015-10-11 16:46:40',1,30000245,0,0,0,0,0,131,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0),(5092,'2015-03-14 14:56:59','2015-10-11 16:46:40',1,30001967,0,0,1,34,0,0,0,4,4,7,0,1,2,3,1,1,2,3,0,0,4,3,10,26),(5093,'2015-03-14 14:56:59','2015-10-11 16:46:40',1,30004331,236,900,37,30,0,0,174,0,0,1,117,81,0,0,0,0,0,0,0,0,0,17,0,0),(5094,'2015-03-14 14:56:59','2015-10-11 16:46:40',1,30000777,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,42),(5095,'2015-03-14 14:56:59','2015-10-11 16:46:40',1,30003700,310,120,309,140,134,81,137,119,187,0,88,27,41,28,131,47,43,47,498,249,247,84,0,151),(5096,'2015-03-14 14:56:59','2015-10-11 16:46:40',1,30001905,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,24,9),(5097,'2015-03-14 14:56:59','2015-10-11 16:46:40',1,30004416,375,0,95,0,0,0,7,12,0,0,0,0,0,5,0,2,2,0,0,0,0,0,0,0),(5098,'2015-03-14 14:56:59','2015-10-11 16:46:40',1,30003773,138,34,213,172,190,162,33,131,66,142,189,202,243,0,129,199,103,1,76,14,0,9,4,10),(5099,'2015-03-14 14:56:59','2015-03-14 14:56:59',1,30001490,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(5100,'2015-03-14 14:56:59','2015-10-11 16:46:40',1,30004355,0,156,0,0,0,0,0,928,193,0,53,24,0,0,0,0,0,0,0,65,0,84,0,0),(5101,'2015-03-14 14:56:59','2015-10-11 16:46:40',1,30000221,97,567,0,0,0,0,0,0,41,0,38,22,0,0,0,0,0,0,0,0,0,0,0,0),(5102,'2015-03-14 14:56:59','2015-10-11 16:46:40',1,30000664,31,94,0,0,0,0,0,0,0,0,0,0,20,0,0,0,0,4,0,0,0,0,0,0),(5103,'2015-03-14 14:56:59','2015-10-11 16:46:40',1,30000470,0,62,0,0,0,0,144,45,0,0,0,0,0,0,0,0,0,0,0,0,0,138,0,0),(5104,'2015-03-14 14:56:59','2015-10-11 16:46:40',1,30002319,328,41,19,25,207,233,57,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(5105,'2015-03-14 14:56:59','2015-03-14 14:56:59',1,30000417,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(5106,'2015-03-14 14:56:59','2015-10-11 16:46:40',1,30002946,237,0,147,224,274,161,117,1,0,560,227,269,207,444,385,585,718,679,118,50,71,501,399,857),(5107,'2015-03-14 14:56:59','2015-10-11 16:46:40',1,30002897,196,537,142,286,338,451,46,398,832,55,125,190,251,55,206,171,211,177,159,147,17,123,45,364),(5108,'2015-03-14 14:56:59','2015-10-11 16:46:40',1,30001093,0,0,2,0,0,0,0,0,0,79,130,0,0,0,0,0,0,0,0,0,0,0,0,0),(5109,'2015-03-14 14:56:59','2015-10-11 16:46:40',1,30002118,0,0,0,0,0,0,0,0,0,2,4,0,0,0,0,0,0,0,0,0,0,0,4,8),(5110,'2015-03-14 14:56:59','2015-10-11 16:46:40',1,30000889,183,84,80,85,228,378,0,130,176,344,344,136,558,584,174,123,94,326,296,56,427,193,723,381),(5111,'2015-03-14 14:56:59','2015-10-11 16:46:40',1,30001778,0,0,0,0,0,0,6,0,0,0,0,0,0,0,0,0,249,165,0,0,0,11,89,0),(5112,'2015-03-14 14:56:59','2015-10-11 16:46:40',1,30003224,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,3,0,0,0,0,0),(5113,'2015-03-14 14:56:59','2015-10-11 16:46:40',1,30000604,100,1,39,0,86,29,0,0,0,4,13,8,9,33,53,6,5,0,78,63,12,29,4,7),(5114,'2015-03-14 14:56:59','2015-10-11 16:46:40',1,30000293,328,20,0,29,0,0,0,130,222,68,167,156,0,0,212,208,82,173,0,0,0,0,36,34),(5115,'2015-03-14 14:56:59','2015-10-11 16:46:40',1,30004552,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,17,20,0,0,0),(5116,'2015-03-14 14:56:59','2015-03-14 14:56:59',1,30001958,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(5117,'2015-03-14 14:56:59','2015-10-11 16:46:40',1,30004069,0,0,0,0,0,1,1,0,0,109,0,0,0,0,0,0,0,0,0,0,0,7,5,0),(5118,'2015-03-14 14:56:59','2015-10-11 16:46:40',1,30004875,33,323,482,195,173,330,91,167,341,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(5119,'2015-03-14 14:56:59','2015-10-11 16:46:40',1,30003731,12,80,206,20,82,66,19,0,41,1,0,10,0,6,1,4,9,23,0,0,0,0,45,0),(5120,'2015-03-14 14:56:59','2015-10-11 16:46:40',1,30001973,154,211,139,34,76,74,0,10,16,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(5121,'2015-03-14 14:56:59','2015-10-11 16:46:40',1,30001798,26,0,0,0,0,0,0,0,0,48,26,11,53,472,302,61,104,108,20,234,342,149,316,203),(5122,'2015-03-14 14:56:59','2015-10-11 16:46:40',1,30004613,138,0,162,0,0,0,0,0,31,0,0,8,113,0,0,0,0,0,4,52,66,77,126,301),(5123,'2015-03-14 14:56:59','2015-10-11 16:46:40',1,30000752,8,11,37,102,83,14,29,5,8,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(5124,'2015-03-14 14:56:59','2015-10-11 16:46:40',1,30003263,601,71,531,213,43,47,212,15,53,150,84,135,36,38,105,14,148,92,42,16,15,15,142,295),(5125,'2015-03-14 14:56:59','2015-10-11 16:46:40',1,30003119,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,127,0,0,0,0,0),(5126,'2015-03-14 14:56:59','2015-10-11 16:46:40',1,30004342,7,0,0,47,5,0,85,0,180,1180,1071,714,772,67,0,0,23,148,0,0,0,91,1064,1420),(5127,'2015-03-14 14:56:59','2015-10-11 16:46:40',1,30003252,265,0,103,97,0,0,1,77,334,0,0,0,0,0,0,0,0,4,0,0,0,0,0,0),(5128,'2015-03-14 14:56:59','2015-10-11 16:46:40',1,30001792,0,0,0,0,0,0,0,0,0,0,0,78,1901,0,0,0,0,0,0,0,0,0,341,136),(5129,'2015-03-14 14:56:59','2015-10-11 16:46:40',1,30004894,0,113,0,0,0,0,55,0,0,71,234,196,0,0,112,0,81,0,12,0,0,101,74,177),(5130,'2015-03-14 14:56:59','2015-10-11 16:46:40',1,30001999,32,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(5131,'2015-03-14 14:56:59','2015-10-11 16:46:40',1,30000750,0,90,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,18,0,0,0,0,0,0),(5132,'2015-03-14 14:56:59','2015-10-11 16:46:40',1,30000585,0,0,14,0,0,0,0,0,0,0,0,0,0,0,5,5,0,0,0,0,0,0,0,0),(5133,'2015-03-14 14:56:59','2015-03-14 14:56:59',1,30001584,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(5134,'2015-03-14 14:56:59','2015-03-14 14:56:59',1,30002155,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(5135,'2015-03-14 14:56:59','2015-10-11 16:46:40',1,30003313,0,0,0,13,28,95,0,0,0,0,0,0,0,0,5,0,0,0,0,0,0,0,0,1),(5136,'2015-03-14 14:56:59','2015-10-11 16:46:40',1,30000275,380,31,0,4,26,0,0,0,55,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(5137,'2015-03-14 14:56:59','2015-10-11 16:46:40',1,30000447,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0),(5138,'2015-03-14 14:56:59','2015-10-11 16:46:40',1,30001552,0,0,0,0,0,0,0,0,0,0,7,6,5,0,10,10,1,3,0,4,0,4,0,3),(5139,'2015-03-14 14:56:59','2015-10-11 16:46:40',1,30004038,0,0,0,0,0,0,0,30,0,0,0,0,0,0,0,0,0,41,0,0,0,4,0,0),(5140,'2015-03-14 14:56:59','2015-10-11 16:46:40',1,30002822,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,29,87),(5141,'2015-03-14 14:56:59','2015-10-11 16:46:40',1,30001113,320,224,0,0,0,0,84,8,164,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(5142,'2015-03-14 14:56:59','2015-10-11 16:46:40',1,30001089,232,0,457,0,0,0,236,0,2,0,0,0,77,0,276,385,521,652,354,360,0,522,538,868),(5143,'2015-03-14 14:56:59','2015-03-14 14:56:59',1,30005095,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(5144,'2015-03-14 14:56:59','2015-10-11 16:46:40',1,30004856,0,0,0,0,0,0,0,0,0,0,0,0,0,0,163,99,0,0,0,0,5,0,0,0),(5145,'2015-03-14 14:56:59','2015-10-11 16:46:40',1,30001753,0,0,0,0,0,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(5146,'2015-03-14 14:56:59','2015-10-11 16:46:40',1,30004655,0,0,0,0,0,0,0,0,0,6,51,33,0,2,0,0,0,47,5,9,5,0,9,0),(5147,'2015-03-14 14:56:59','2015-10-11 16:46:40',1,30000237,729,120,23,0,0,0,0,180,247,0,0,0,0,0,44,103,104,0,0,0,203,0,0,0),(5148,'2015-03-14 14:56:59','2015-10-11 16:46:40',1,30000678,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0),(5149,'2015-03-14 14:56:59','2015-10-11 16:46:40',1,30002122,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,3,0,1,120,0),(5150,'2015-03-14 14:56:59','2015-10-11 16:46:40',1,30004320,236,72,19,150,227,329,331,42,68,0,0,0,0,3,42,91,49,226,87,0,0,127,17,205),(5151,'2015-03-14 14:56:59','2015-10-11 16:46:40',1,30001325,9,0,0,0,0,18,0,0,0,19,0,0,0,43,2,1,0,6,0,0,0,0,0,0),(5152,'2015-03-14 14:56:59','2015-10-11 16:46:40',1,30004382,246,10,0,37,3,11,277,477,85,0,0,0,147,0,103,98,0,0,74,0,0,77,93,6),(5153,'2015-03-14 14:56:59','2015-10-11 16:46:40',1,30000499,140,0,19,31,0,61,0,116,0,789,654,144,3,0,192,124,0,0,0,0,0,6,0,0),(5154,'2015-03-14 14:56:59','2015-03-14 14:56:59',1,30002600,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(5155,'2015-03-14 14:56:59','2015-10-11 16:46:40',1,30001021,192,246,43,243,116,271,32,63,51,0,25,67,46,131,0,12,20,157,89,8,0,19,44,58),(5156,'2015-03-14 14:56:59','2015-10-11 16:46:40',1,30003228,0,0,0,0,0,0,136,0,0,0,0,0,0,0,66,83,21,0,0,0,0,0,0,0),(5157,'2015-03-14 14:56:59','2015-10-11 16:46:40',1,30005175,0,83,0,8,72,98,0,0,0,13,196,290,170,56,160,168,187,2,149,179,76,75,87,61),(5158,'2015-03-14 14:56:59','2015-10-11 16:46:40',1,30003326,32,0,0,0,0,0,4,0,0,13,12,0,0,0,0,7,7,0,0,0,0,0,0,0),(5159,'2015-03-14 14:56:59','2015-10-11 16:46:40',1,30004932,0,0,115,29,48,8,134,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(5160,'2015-03-14 14:56:59','2015-10-11 16:46:40',1,30004062,559,30,0,0,0,49,0,0,0,357,566,425,263,28,279,244,559,423,73,291,617,335,791,384),(5161,'2015-03-14 14:56:59','2015-10-11 16:46:40',1,30003237,0,0,0,0,0,0,2,0,0,65,125,12,38,0,0,0,0,0,0,0,0,0,0,0),(5162,'2015-03-14 14:56:59','2015-10-11 16:46:40',1,30004396,184,618,427,493,47,68,575,791,231,472,857,969,323,29,0,0,0,0,0,0,0,0,0,0),(5163,'2015-03-14 14:56:59','2015-10-11 16:46:40',1,30004568,0,0,0,0,0,0,0,0,129,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(5164,'2015-03-14 14:56:59','2015-10-11 16:46:40',1,30004665,0,59,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,99,56),(5165,'2015-03-14 14:56:59','2015-10-11 16:46:40',1,30001291,65,207,85,45,80,51,22,96,35,142,230,428,179,215,265,211,97,169,0,55,103,63,201,107),(5166,'2015-03-14 14:56:59','2015-10-11 16:46:40',1,30001932,0,0,19,0,0,0,92,0,0,0,0,0,0,0,0,0,0,0,0,0,0,126,0,0),(5167,'2015-03-14 14:56:59','2015-03-14 14:56:59',1,30001498,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(5168,'2015-03-14 14:56:59','2015-10-11 16:46:40',1,30002597,0,0,0,0,61,0,0,0,0,0,0,0,0,17,0,0,0,0,0,0,53,0,0,0),(5169,'2015-03-14 14:56:59','2015-10-11 16:46:40',1,30003207,27,9,0,0,0,0,0,4,0,0,0,0,4,0,11,21,14,5,0,0,0,0,41,36),(5170,'2015-03-14 14:56:59','2015-10-11 16:46:40',1,30001829,0,538,0,490,281,450,395,269,237,0,0,0,0,0,62,44,41,0,0,0,0,0,0,0),(5171,'2015-03-14 14:56:59','2015-10-11 16:46:40',1,30003265,0,0,0,0,0,0,0,91,0,0,0,0,4,0,0,0,0,182,0,0,0,0,0,0),(5172,'2015-03-14 14:56:59','2015-10-11 16:46:40',1,30002044,6,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(5173,'2015-03-14 14:56:59','2015-10-11 16:46:40',1,30002169,0,174,0,0,0,0,0,0,0,77,414,265,59,121,9,70,92,140,24,22,29,113,9,6),(5174,'2015-03-14 14:56:59','2015-10-11 16:46:40',1,30004941,132,141,182,5,28,21,116,70,160,203,308,293,245,29,241,211,53,13,8,24,16,60,49,5),(5175,'2015-03-14 14:56:59','2015-10-11 16:46:40',1,30000958,0,0,0,0,0,0,0,0,0,0,41,25,0,0,0,0,0,83,0,0,0,0,0,49),(5176,'2015-03-14 14:56:59','2015-10-11 16:46:40',1,30001031,128,15,0,118,194,215,0,34,33,1,0,49,93,0,10,92,107,143,0,0,50,32,114,74),(5177,'2015-03-14 14:56:59','2015-03-14 14:56:59',1,30004859,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(5178,'2015-03-14 14:56:59','2015-10-11 16:46:40',1,30002162,6,73,0,12,296,117,294,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,3),(5179,'2015-03-14 14:56:59','2015-10-11 16:46:40',1,30002586,0,0,0,0,0,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(5180,'2015-03-14 14:56:59','2015-10-11 16:46:40',1,30001039,14,25,0,10,0,0,0,112,0,56,82,62,8,54,249,87,27,17,5,86,42,57,73,6),(5181,'2015-03-14 14:56:59','2015-10-11 16:46:40',1,30003726,28,0,9,7,4,10,0,4,39,5,2,6,2,2,16,1,0,0,1,0,0,4,0,5),(5182,'2015-03-14 14:56:59','2015-10-11 16:46:40',1,30004898,32,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0),(5183,'2015-03-14 14:56:59','2015-10-11 16:46:40',1,30002176,271,353,0,0,98,151,386,1214,427,226,67,308,424,253,407,579,934,858,0,16,471,24,191,640),(5184,'2015-03-14 14:56:59','2015-10-11 16:46:40',1,30004763,96,286,0,828,85,0,0,0,0,79,33,22,0,0,51,0,110,30,0,212,147,8,275,472),(5185,'2015-03-14 14:56:59','2015-03-14 14:56:59',1,30004809,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(5186,'2015-03-14 14:56:59','2015-10-11 16:46:40',1,30001255,0,0,21,0,206,188,0,193,0,12,11,12,15,0,0,0,4,12,0,83,13,0,0,0),(5187,'2015-03-14 14:56:59','2015-10-11 16:46:40',1,30000884,404,54,28,0,174,263,138,38,42,0,0,0,0,0,0,0,0,0,0,131,58,0,0,0),(5188,'2015-03-14 14:56:59','2015-10-11 16:46:40',1,30004171,0,0,0,10,0,0,0,0,0,42,21,0,0,0,0,0,0,0,0,0,0,0,0,6),(5189,'2015-03-14 14:56:59','2015-03-14 14:56:59',1,30000331,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(5190,'2015-03-14 14:56:59','2015-10-11 16:46:40',1,30001791,0,0,0,0,0,0,0,0,0,85,105,180,827,145,608,819,675,395,50,120,54,183,119,9),(5191,'2015-03-14 14:56:59','2015-10-11 16:46:40',1,30001261,78,0,0,53,0,0,0,169,0,2,3,0,0,85,0,0,0,0,0,36,0,18,0,5),(5192,'2015-03-14 14:56:59','2015-10-11 16:46:40',1,30003342,0,0,0,0,0,0,0,0,0,0,31,15,30,0,9,10,17,7,5,0,0,0,0,0),(5193,'2015-03-14 14:56:59','2015-10-11 16:46:40',1,30001108,0,0,3,27,222,622,2029,328,163,90,953,1094,1000,166,864,544,407,617,13,104,76,629,304,718),(5194,'2015-03-14 14:56:59','2015-10-11 16:46:40',1,30004428,0,0,0,0,40,40,0,0,0,0,0,0,0,0,0,0,0,0,0,94,94,0,0,0),(5195,'2015-03-14 14:56:59','2015-10-11 16:46:40',1,30003651,50,0,89,0,0,0,72,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(5196,'2015-03-14 14:56:59','2015-10-11 16:46:40',1,30000306,920,1040,1340,153,940,1080,73,665,538,911,679,734,800,161,581,736,672,1040,623,552,472,316,296,589),(5197,'2015-03-14 14:56:59','2015-10-11 16:46:40',1,30000220,211,546,138,169,104,163,6,11,14,9,15,14,10,0,0,0,0,3,22,16,12,38,23,17),(5198,'2015-03-14 14:56:59','2015-10-11 16:46:40',1,30001846,0,4,0,5,0,0,0,0,0,5,45,77,20,7,6,11,6,66,8,57,3,8,6,10),(5199,'2015-03-14 14:56:59','2015-10-11 16:46:40',1,30002109,108,142,0,0,19,71,2,414,1,0,0,0,228,0,0,0,0,194,76,0,0,0,148,230),(5200,'2015-03-14 14:56:59','2015-10-11 16:46:40',1,30002037,42,0,569,592,268,249,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(5201,'2015-03-14 14:56:59','2015-10-11 16:46:40',1,30004456,200,284,0,0,0,0,0,379,97,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(5202,'2015-03-14 14:56:59','2015-03-14 14:56:59',1,30002115,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(5203,'2015-03-14 14:56:59','2015-03-14 14:56:59',1,30000918,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(5204,'2015-03-14 14:56:59','2015-10-11 16:46:40',1,30001570,0,0,0,0,0,0,0,0,0,6,0,0,0,0,0,0,0,0,0,5,5,0,0,0),(5205,'2015-03-14 14:56:59','2015-10-11 16:46:40',1,30001546,0,0,0,0,0,0,0,0,0,3,4,4,106,212,87,110,96,346,0,0,387,305,74,524),(5206,'2015-03-14 14:56:59','2015-10-11 16:46:40',1,30000729,60,37,197,13,14,15,77,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(5207,'2015-03-14 14:56:59','2015-10-11 16:46:40',1,30004785,10,0,0,0,0,0,0,0,0,0,0,0,0,0,23,23,37,136,0,0,24,0,59,26),(5208,'2015-03-14 14:56:59','2015-10-11 16:46:40',1,30000308,24,115,0,0,90,19,63,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,70),(5209,'2015-03-14 14:56:59','2015-10-11 16:46:40',1,30001058,230,0,321,136,335,41,56,151,14,43,66,25,35,77,72,76,68,68,12,6,8,11,16,13),(5210,'2015-03-14 14:56:59','2015-10-11 16:46:40',1,30001262,0,0,0,84,0,0,6,0,0,0,0,0,0,0,0,0,0,0,1,0,22,0,0,0),(5211,'2015-03-14 14:56:59','2015-10-11 16:46:40',1,30000947,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,129,5,0,0,0,0,0),(5212,'2015-03-14 14:56:59','2015-03-14 14:56:59',1,30001559,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(5213,'2015-03-14 14:56:59','2015-10-11 16:46:40',1,30002466,130,354,128,219,154,113,578,527,706,129,181,286,204,84,0,0,57,632,97,362,643,89,306,382),(5214,'2015-03-14 14:56:59','2015-10-11 16:46:40',1,30003734,196,0,42,53,132,58,182,207,280,161,406,326,191,208,348,381,411,169,23,101,33,131,210,204),(5215,'2015-03-14 14:56:59','2015-10-11 16:46:40',1,30003307,0,0,2,0,2,11,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(5216,'2015-03-14 14:56:59','2015-10-11 16:46:40',1,30002902,73,5,0,7,0,0,4,2,166,10,108,147,35,7,1,22,53,13,322,65,97,138,25,10),(5217,'2015-03-14 14:56:59','2015-10-11 16:46:40',1,30000080,0,36,11,8,49,30,21,203,0,0,0,60,0,14,68,40,11,118,22,8,37,104,11,42),(5218,'2015-03-14 14:56:59','2015-10-11 16:46:40',1,30004286,0,0,36,27,77,3,1,0,0,12,0,3,37,0,0,3,31,49,0,0,0,141,4,141),(5219,'2015-03-14 14:56:59','2015-03-14 14:56:59',1,30002592,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(5220,'2015-03-14 14:56:59','2015-10-11 16:46:40',1,30001701,63,79,22,88,92,142,26,44,101,88,113,205,231,134,263,198,152,133,87,127,98,91,29,123),(5221,'2015-03-14 14:56:59','2015-10-11 16:46:40',1,30003158,240,9,239,343,103,85,330,26,274,31,79,96,7,0,59,120,179,117,136,11,0,330,106,6),(5222,'2015-03-14 14:56:59','2015-10-11 16:46:40',1,30004111,72,59,106,236,162,303,65,19,0,99,167,170,126,70,82,106,138,110,33,95,44,178,133,65),(5223,'2015-03-14 14:56:59','2015-10-11 16:46:40',1,30002762,124,12,79,67,105,58,97,59,50,25,60,68,107,72,90,33,61,110,97,85,13,112,1,95),(5224,'2015-03-14 14:56:59','2015-10-11 16:46:40',1,30001713,6,45,74,33,20,21,17,12,32,39,38,170,59,19,32,24,58,84,5,3,65,5,111,137),(5225,'2015-03-14 14:56:59','2015-10-11 16:46:40',1,30004797,0,0,0,0,0,0,0,0,58,72,16,167,21,72,14,26,22,102,298,201,181,4,30,10),(5226,'2015-03-14 14:56:59','2015-03-14 14:56:59',1,30001525,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(5227,'2015-03-14 14:56:59','2015-10-11 16:46:40',1,30001803,0,0,4,0,0,0,0,47,0,0,0,0,66,0,0,0,0,0,123,131,0,0,140,0),(5228,'2015-03-14 14:56:59','2015-10-11 16:46:40',1,30000621,0,0,0,0,0,0,84,0,15,0,0,0,0,0,0,0,0,0,0,0,0,9,0,0),(5229,'2015-03-14 14:56:59','2015-10-11 16:46:40',1,30001915,0,0,0,94,83,77,0,0,0,0,0,0,0,0,41,0,0,106,86,0,0,1,1,0),(5230,'2015-03-14 14:56:59','2015-10-11 16:46:40',1,30004144,0,0,0,10,39,0,50,0,0,76,6,0,0,46,57,0,30,84,0,0,5,35,260,49),(5231,'2015-03-14 14:56:59','2015-10-11 16:46:40',1,30001710,65,71,26,7,167,62,185,102,163,67,14,97,123,137,155,119,111,127,44,25,67,44,87,130),(5232,'2015-03-14 14:56:59','2015-10-11 16:46:40',1,30003514,134,53,121,189,140,86,0,25,169,133,188,75,74,0,103,100,98,92,26,50,69,101,2,47),(5233,'2015-03-14 14:56:59','2015-10-11 16:46:40',1,30004236,0,9,0,17,0,0,368,0,0,0,0,0,0,10,10,15,15,29,76,0,0,0,0,1),(5234,'2015-03-14 14:56:59','2015-10-11 16:46:40',1,30004154,13,142,28,73,28,107,175,3,120,50,207,57,57,4,58,45,14,250,6,191,14,74,104,92),(5235,'2015-03-14 14:56:59','2015-10-11 16:46:40',1,30004265,0,13,70,0,0,0,0,89,0,0,0,0,15,0,0,0,0,11,0,0,0,0,0,9),(5236,'2015-03-14 14:56:59','2015-10-11 16:46:40',1,30003872,0,0,212,0,65,178,21,0,0,9,0,1,128,34,31,33,46,0,0,54,13,326,67,128),(5237,'2015-03-14 14:56:59','2015-10-11 16:46:40',1,30003997,0,29,31,0,0,0,0,0,0,8,9,0,0,3,5,0,0,8,60,78,42,11,3,4),(5238,'2015-03-14 14:56:59','2015-03-14 14:56:59',1,30004838,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(5239,'2015-03-14 14:56:59','2015-10-11 16:46:40',1,30004350,803,491,425,633,576,311,262,94,92,215,540,379,0,33,226,232,267,301,0,42,0,0,72,0),(5240,'2015-03-14 14:56:59','2015-03-14 14:56:59',1,30000530,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(5241,'2015-03-14 14:56:59','2015-10-11 16:46:40',1,30001204,31,205,61,39,192,5,3,19,12,0,4,4,0,19,14,45,34,7,32,114,37,0,0,3),(5242,'2015-03-14 14:56:59','2015-10-11 16:46:40',1,30004459,1,0,0,0,0,0,0,0,59,0,5,5,62,0,0,0,0,0,0,0,0,0,0,0),(5243,'2015-03-14 14:56:59','2015-10-11 16:46:40',1,30004051,136,0,0,0,0,0,0,0,0,0,18,131,0,0,0,0,0,0,0,0,0,0,0,0),(5244,'2015-03-14 14:56:59','2015-10-11 16:46:40',1,30000583,0,122,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0),(5245,'2015-03-14 14:56:59','2015-10-11 16:46:40',1,30004260,110,7,0,0,0,0,0,1,0,0,3,1,14,45,7,0,6,0,0,5,6,0,10,0),(5246,'2015-03-14 14:56:59','2015-10-11 16:46:40',1,30000036,0,9,37,0,2,2,3,0,25,19,3,3,0,3,0,0,0,0,0,0,0,28,0,0),(5247,'2015-03-14 14:56:59','2015-10-11 16:46:40',1,30001353,20,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,84),(5248,'2015-03-14 14:56:59','2015-10-11 16:46:40',1,30001024,0,0,0,96,7,0,0,0,0,5,0,6,1,15,34,34,39,33,7,1,0,8,5,1),(5249,'2015-03-14 14:56:59','2015-10-11 16:46:40',1,30003690,0,38,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,65,60,0),(5250,'2015-03-14 14:56:59','2015-10-11 16:46:40',1,30001395,482,340,730,471,719,537,326,609,255,328,391,413,574,335,385,451,506,873,354,839,1172,1443,1205,1653),(5251,'2015-03-14 14:56:59','2015-10-11 16:46:40',1,30000880,140,0,0,0,0,0,0,27,0,13,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(5252,'2015-03-14 14:56:59','2015-10-11 16:46:40',1,30001118,489,0,281,243,0,0,93,0,20,57,0,0,0,671,257,0,3,251,390,268,249,53,151,0),(5253,'2015-03-14 14:56:59','2015-10-11 16:46:40',1,30000241,0,0,0,0,0,0,125,0,0,0,0,0,0,0,63,0,0,0,0,0,0,0,0,0),(5254,'2015-03-14 14:56:59','2015-10-11 16:46:40',1,30002432,0,0,0,0,0,0,0,0,14,0,4,0,0,0,0,0,0,76,0,0,0,0,0,0),(5255,'2015-03-14 14:56:59','2015-10-11 16:46:40',1,30001427,504,217,229,284,229,156,506,33,98,48,78,146,207,297,224,270,397,170,105,196,191,338,371,373),(5256,'2015-03-14 14:56:59','2015-10-11 16:46:40',1,30005017,149,95,163,67,166,184,47,50,80,89,95,96,69,110,221,284,276,113,166,55,150,207,98,81),(5257,'2015-03-14 14:56:59','2015-10-11 16:46:40',1,30001668,0,7,0,85,2,48,0,4,64,0,0,0,0,0,0,0,0,1,0,0,0,37,0,0),(5258,'2015-03-14 14:56:59','2015-10-11 16:46:40',1,30004131,76,8,73,50,8,38,0,42,37,58,24,56,17,18,50,55,82,143,60,179,99,135,14,13),(5259,'2015-03-14 14:56:59','2015-10-11 16:46:40',1,30003960,0,0,59,0,0,0,0,48,0,7,0,0,30,0,0,5,74,0,0,0,0,0,0,0),(5260,'2015-03-14 14:56:59','2015-10-11 16:46:40',1,30003493,291,425,157,411,114,54,205,283,114,259,361,346,342,245,341,367,294,202,222,283,384,366,387,486),(5261,'2015-03-14 14:56:59','2015-10-11 16:46:40',1,30001271,66,16,17,2,4,7,2,0,5,77,53,21,50,1,5,16,53,19,122,122,114,0,17,4),(5262,'2015-03-14 14:56:59','2015-10-11 16:46:40',1,30000784,103,0,2,2,23,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,4,0),(5263,'2015-03-14 14:56:59','2015-10-11 16:46:40',1,30003753,173,4,419,490,228,229,0,776,208,10,107,461,303,0,0,0,20,262,0,0,3,274,411,215),(5264,'2015-03-14 14:56:59','2015-10-11 16:46:40',1,30001758,0,0,0,0,0,0,0,0,274,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(5265,'2015-03-14 14:56:59','2015-10-11 16:46:40',1,30003212,78,0,0,0,0,0,6,0,0,14,116,182,0,0,21,60,54,0,0,0,0,0,0,0),(5266,'2015-03-14 14:56:59','2015-10-11 16:46:40',1,30004026,0,0,0,0,0,0,0,0,0,0,4,0,0,0,0,0,0,4,0,0,0,0,0,0),(5267,'2015-03-14 14:56:59','2015-10-11 16:46:40',1,30002794,270,457,273,199,345,281,501,153,318,516,329,402,431,669,335,371,470,510,169,170,283,285,213,205),(5268,'2015-03-14 14:56:59','2015-10-11 16:46:40',1,30003414,132,137,88,155,19,84,161,154,113,126,239,244,171,62,282,287,115,66,45,117,175,329,145,121),(5269,'2015-03-14 14:56:59','2015-10-11 16:46:40',1,30004627,60,24,70,18,129,53,0,23,11,0,0,0,0,0,0,0,0,0,0,0,0,427,161,498),(5270,'2015-03-14 14:56:59','2015-10-11 16:46:40',1,30003178,0,0,0,0,0,0,127,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(5271,'2015-03-14 14:56:59','2015-03-14 14:56:59',1,30000408,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(5272,'2015-03-14 14:56:59','2015-10-11 16:46:40',1,30003545,14,20,63,28,8,90,48,23,7,12,44,69,2,7,81,41,32,70,0,147,96,11,9,13),(5273,'2015-03-14 14:56:59','2015-10-11 16:46:40',1,30005204,106,127,10,60,104,43,134,52,61,93,40,43,38,57,100,175,105,68,27,0,28,0,14,56),(5274,'2015-03-14 14:56:59','2015-10-11 16:46:40',1,30000916,0,37,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(5275,'2015-03-14 14:56:59','2015-10-11 16:46:40',1,30000007,35,133,49,45,61,37,87,57,1,52,29,51,0,221,65,74,97,0,42,71,162,156,21,11),(5276,'2015-03-14 14:56:59','2015-10-11 16:46:40',1,30004679,0,0,0,0,0,0,0,0,6,182,60,7,0,0,109,0,0,122,0,0,124,0,67,76),(5277,'2015-03-14 14:56:59','2015-10-11 16:46:40',1,30004548,0,0,0,112,0,0,0,48,11,23,0,0,0,12,0,0,0,0,0,0,0,0,0,0),(5278,'2015-03-14 14:56:59','2015-10-11 16:46:40',1,30003588,89,56,9,61,24,12,47,37,24,42,17,15,146,123,148,62,8,3,8,39,171,189,28,21),(5279,'2015-03-14 14:56:59','2015-10-11 16:46:40',1,30004977,57,0,0,34,0,0,7,70,57,36,21,0,19,14,6,6,44,0,0,0,5,0,2,25),(5280,'2015-03-14 14:56:59','2015-10-11 16:46:40',1,30004561,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,5,0,6,0,0,0),(5281,'2015-03-14 14:56:59','2015-10-11 16:46:40',1,30003591,0,45,30,48,6,0,0,148,169,261,4,31,0,107,26,26,0,0,42,153,150,0,53,10),(5282,'2015-03-14 14:56:59','2015-10-11 16:46:40',1,30003567,0,0,35,50,0,0,0,20,73,17,0,0,0,0,0,4,25,0,0,53,129,0,9,72),(5283,'2015-03-14 14:56:59','2015-10-11 16:46:40',1,30004174,73,0,0,0,0,0,0,0,0,0,0,0,82,0,0,0,0,0,0,0,59,0,83,55),(5284,'2015-03-14 14:56:59','2015-10-11 16:46:41',1,30003990,0,0,0,0,0,0,0,0,0,0,26,8,0,0,0,0,13,21,0,0,0,0,0,2),(5285,'2015-03-14 14:56:59','2015-10-11 16:46:41',1,30003705,0,0,9,64,0,0,72,4,4,0,0,0,0,0,0,0,0,0,0,37,13,0,0,28),(5286,'2015-03-14 14:56:59','2015-03-14 14:56:59',1,30002310,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(5287,'2015-03-14 14:56:59','2015-10-11 16:46:41',1,30000231,5,360,45,375,544,288,607,334,204,85,20,1,78,172,8,34,100,402,54,12,56,26,512,31),(5288,'2015-03-14 14:56:59','2015-10-11 16:46:41',1,30004617,134,135,628,345,185,240,145,0,7,0,0,0,41,0,20,77,77,37,0,14,0,55,40,121),(5289,'2015-03-14 14:56:59','2015-10-11 16:46:41',1,30002925,240,1220,529,729,1255,1194,479,554,296,909,695,382,791,1058,493,460,748,550,155,775,344,442,540,759),(5290,'2015-03-14 14:56:59','2015-10-11 16:46:41',1,30004719,30,40,0,34,0,4,0,0,0,0,0,0,0,3,0,6,6,5,0,0,0,6,0,28),(5291,'2015-03-14 14:56:59','2015-10-11 16:46:41',1,30004554,0,5,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(5292,'2015-03-14 14:56:59','2015-03-14 14:56:59',1,30000506,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(5293,'2015-03-14 14:56:59','2015-10-11 16:46:41',1,30004542,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,134,0,0,0,0,0,0),(5294,'2015-03-14 14:56:59','2015-10-11 16:46:41',1,30001956,0,0,0,0,0,0,0,0,0,13,0,0,0,0,0,0,0,0,0,14,9,0,0,0),(5295,'2015-03-14 14:56:59','2015-10-11 16:46:41',1,30004921,97,1347,30,177,0,39,221,695,852,129,199,179,55,220,138,108,43,195,0,0,88,3,154,0),(5296,'2015-03-14 14:56:59','2015-10-11 16:46:41',1,30000266,0,46,0,231,0,0,13,8,0,24,87,0,0,0,0,0,0,0,0,0,0,0,0,1),(5297,'2015-03-14 14:56:59','2015-03-14 14:56:59',1,30000597,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(5298,'2015-03-14 14:56:59','2015-03-14 14:56:59',1,30001486,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(5299,'2015-03-14 14:56:59','2015-10-11 16:46:41',1,30001074,0,0,0,0,0,0,0,0,0,3,0,0,0,3,84,85,19,0,0,0,0,0,0,0),(5300,'2015-03-14 14:56:59','2015-10-11 16:46:41',1,30002292,0,82,0,0,3,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(5301,'2015-03-14 14:56:59','2015-03-14 14:56:59',1,30001097,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(5302,'2015-03-14 14:56:59','2015-10-11 16:46:41',1,30005132,0,0,0,0,0,0,20,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(5303,'2015-03-14 14:56:59','2015-10-11 16:46:41',1,30002368,23,0,0,0,0,0,31,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(5304,'2015-03-14 14:56:59','2015-03-14 14:56:59',1,30001454,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(5305,'2015-03-14 14:56:59','2015-10-11 16:46:41',1,30001263,0,0,22,99,0,0,16,0,1,86,0,0,0,1,0,0,0,0,0,0,0,0,0,0),(5306,'2015-03-14 14:56:59','2015-10-11 16:46:41',1,30002141,4,9,24,91,77,39,17,0,0,0,0,0,0,0,0,0,0,0,159,66,37,0,0,1),(5307,'2015-03-14 14:56:59','2015-03-14 14:56:59',1,30000387,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(5308,'2015-03-14 14:56:59','2015-10-11 16:46:41',1,30004341,52,352,104,3,254,275,5,80,159,18,29,29,0,0,0,49,119,50,0,24,16,0,0,0),(5309,'2015-03-14 14:56:59','2015-03-14 14:56:59',1,30001613,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(5310,'2015-03-14 14:56:59','2015-03-14 14:56:59',1,30003646,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(5311,'2015-03-14 14:56:59','2015-10-11 16:46:41',1,30004965,327,1410,900,1400,104,192,1183,2200,1463,0,306,817,1600,425,769,848,1226,2199,63,397,401,1680,2220,2087),(5312,'2015-03-14 14:56:59','2015-10-11 16:46:41',1,30003154,595,121,101,133,128,0,75,283,317,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(5313,'2015-03-14 14:56:59','2015-10-11 16:46:41',1,30002617,83,0,292,303,0,0,0,668,43,0,0,54,516,0,1,53,53,0,0,0,0,397,609,0),(5314,'2015-03-14 14:56:59','2015-10-11 16:46:41',1,30004425,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,30,0,0,0,0,4),(5315,'2015-03-14 14:56:59','2015-10-11 16:46:41',1,30003357,0,0,77,0,0,0,0,0,0,0,0,0,0,2,0,0,0,0,0,0,0,0,0,0),(5316,'2015-03-14 14:56:59','2015-10-11 16:46:41',1,30001919,0,0,3,0,0,0,1,0,0,0,0,0,0,0,19,0,0,32,0,25,0,0,44,100),(5317,'2015-03-14 14:56:59','2015-10-11 16:46:41',1,30003783,340,9,162,237,316,173,100,0,58,82,237,226,83,148,99,174,211,122,130,85,65,107,69,141),(5318,'2015-03-14 14:56:59','2015-10-11 16:46:41',1,30003652,0,517,412,80,283,224,126,459,297,0,0,0,0,7,0,0,31,0,0,0,0,0,0,0),(5319,'2015-03-14 14:56:59','2015-10-11 16:46:41',1,30003991,0,0,51,129,1,42,128,254,286,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(5320,'2015-03-14 14:56:59','2015-10-11 16:46:41',1,30001929,93,0,0,0,0,0,0,0,0,5,123,162,0,199,125,1,0,0,0,0,0,0,0,0),(5321,'2015-03-14 14:56:59','2015-10-11 16:46:41',1,30003989,0,8,0,0,0,0,0,21,0,29,108,1,0,0,0,0,0,0,49,0,115,0,0,0),(5322,'2015-03-14 14:56:59','2015-10-11 16:46:41',1,30004063,0,0,0,0,0,0,0,117,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(5323,'2015-03-14 14:56:59','2015-10-11 16:46:41',1,30003124,0,62,0,0,0,0,135,0,0,80,0,0,0,0,24,64,99,746,671,453,0,0,660,734),(5324,'2015-03-14 14:56:59','2015-10-11 16:46:41',1,30004666,0,0,0,0,161,68,0,0,0,0,0,0,17,28,0,0,0,0,0,54,68,0,0,0),(5325,'2015-03-14 14:56:59','2015-03-14 14:56:59',1,30000414,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(5326,'2015-03-14 14:56:59','2015-10-11 16:46:41',1,30001304,0,0,0,0,70,0,0,0,0,0,70,20,0,0,126,61,0,0,0,6,0,0,1,0),(5327,'2015-03-14 14:56:59','2015-03-14 14:56:59',1,30002337,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(5328,'2015-03-14 14:56:59','2015-10-11 16:46:41',1,30001091,39,0,0,0,0,0,0,0,0,3,0,0,0,0,0,0,0,0,0,4,0,0,0,0),(5329,'2015-03-14 14:56:59','2015-03-14 14:56:59',1,30000739,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(5330,'2015-03-14 14:56:59','2015-10-11 16:46:41',1,30001582,0,0,0,0,0,0,0,0,0,4,23,165,444,12,13,20,18,17,0,0,0,12,8,53),(5331,'2015-03-14 14:56:59','2015-10-11 16:46:41',1,30001861,21,136,0,0,0,0,0,127,0,0,0,0,0,0,3,3,0,0,0,0,0,0,0,0),(5332,'2015-03-14 14:56:59','2015-10-11 16:46:41',1,30004607,3,0,0,0,3,0,0,0,0,1,0,0,0,0,0,0,0,58,0,0,0,0,1,0),(5333,'2015-03-14 14:56:59','2015-10-11 16:46:41',1,30001345,38,0,0,29,0,0,0,70,0,42,0,0,0,0,0,0,0,0,0,0,0,0,1,71),(5334,'2015-03-14 14:56:59','2015-10-11 16:46:41',1,30004707,0,0,0,0,84,43,0,0,0,0,0,0,30,0,25,11,7,15,0,0,48,12,7,0),(5335,'2015-03-14 14:56:59','2015-03-14 14:56:59',1,30002137,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(5336,'2015-03-14 14:56:59','2015-10-11 16:46:41',1,30002117,0,3,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(5337,'2015-03-14 14:56:59','2015-10-11 16:46:41',1,30004584,0,0,0,0,5,128,0,0,0,0,3,3,0,0,0,0,5,0,0,0,0,0,0,0),(5338,'2015-03-14 14:56:59','2015-10-11 16:46:41',1,30000304,0,79,0,67,40,96,75,6,3,451,175,21,0,9,0,0,0,31,137,304,124,312,281,13),(5339,'2015-03-14 14:56:59','2015-03-14 14:56:59',1,30001455,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(5340,'2015-03-14 14:56:59','2015-10-11 16:46:41',1,30004741,0,100,117,0,105,328,134,0,142,0,0,0,88,0,35,17,0,0,0,0,0,62,1138,469),(5341,'2015-03-14 14:56:59','2015-10-11 16:46:41',1,30003927,0,0,0,47,0,0,0,4,16,0,0,0,1,11,0,0,0,0,1,0,0,0,0,3),(5342,'2015-03-14 14:56:59','2015-10-11 16:46:41',1,30000006,19,46,16,16,31,18,10,84,13,78,51,78,30,38,86,99,117,66,5,35,0,35,92,37),(5343,'2015-03-14 14:56:59','2015-10-11 16:46:41',1,30003497,409,12,228,140,259,87,53,240,152,304,51,57,392,82,308,316,287,379,269,112,296,165,198,113),(5344,'2015-03-14 14:56:59','2015-10-11 16:46:41',1,30003543,13,0,0,0,0,0,22,0,0,0,16,17,0,20,9,9,4,3,0,0,0,2,9,9),(5345,'2015-03-14 14:56:59','2015-10-11 16:46:41',1,30005211,0,7,12,0,11,8,5,0,0,0,1,26,0,4,0,0,0,13,4,0,0,10,94,3),(5346,'2015-03-14 14:56:59','2015-10-11 16:46:41',1,30005079,1,9,0,0,0,36,0,0,0,0,0,0,0,0,0,9,152,0,3,0,3,0,1,1),(5347,'2015-03-14 14:56:59','2015-10-11 16:46:41',1,30002280,203,129,144,126,209,125,143,124,131,100,120,216,132,119,367,350,243,86,40,223,92,276,247,292),(5348,'2015-03-14 14:56:59','2015-10-11 16:46:41',1,30003996,59,0,0,0,0,0,0,0,0,0,0,0,0,59,0,0,0,0,0,0,0,0,0,0),(5349,'2015-03-14 14:56:59','2015-10-11 16:46:41',1,30004290,0,123,4,146,122,32,14,0,0,72,2,0,0,8,21,0,0,24,4,39,10,57,74,252),(5350,'2015-03-14 14:56:59','2015-10-11 16:46:41',1,30004232,0,9,3,0,66,151,0,25,0,27,1,0,0,15,0,0,0,56,0,0,0,0,12,0),(5351,'2015-03-14 14:56:59','2015-10-11 16:46:41',1,30004285,0,18,4,27,51,59,56,0,0,19,4,13,36,8,0,0,13,39,35,62,45,289,128,112),(5352,'2015-03-14 14:56:59','2015-10-11 16:46:41',1,30002121,0,0,0,0,0,0,0,0,0,12,0,0,0,49,38,0,0,0,0,0,0,0,0,0),(5353,'2015-03-14 14:56:59','2015-10-11 16:46:41',1,30004701,0,68,101,100,0,0,92,177,205,0,127,0,0,0,0,0,0,0,0,0,0,0,0,0),(5354,'2015-03-14 14:56:59','2015-10-11 16:46:41',1,30004817,0,0,0,0,0,0,0,30,33,0,0,0,0,0,0,0,0,0,0,0,0,13,0,7),(5355,'2015-03-14 14:56:59','2015-10-11 16:46:41',1,30001354,0,63,0,0,0,0,0,0,0,0,5,11,11,9,0,5,14,5,10,74,0,0,0,165),(5356,'2015-03-14 14:56:59','2015-10-11 16:46:41',1,30000719,0,204,0,12,58,172,12,15,17,55,22,43,113,38,38,32,83,200,14,313,151,0,14,45),(5357,'2015-03-14 14:56:59','2015-10-11 16:46:41',1,30004704,4,1787,264,44,497,319,83,1691,1980,103,778,1336,1178,1240,284,450,202,789,0,0,0,10,89,784),(5358,'2015-03-14 14:56:59','2015-10-11 16:46:41',1,30001734,49,50,39,23,29,27,62,0,25,20,64,72,40,66,47,140,134,71,41,171,64,35,176,116),(5359,'2015-03-14 14:56:59','2015-10-11 16:46:41',1,30000055,9,73,5,74,22,1,2,7,66,0,15,92,61,16,21,48,78,75,0,0,24,1,72,107),(5360,'2015-03-14 14:56:59','2015-10-11 16:46:41',1,30003928,0,1,0,0,55,14,14,26,25,0,0,0,0,52,0,0,0,7,9,0,0,0,0,0),(5361,'2015-03-14 14:56:59','2015-10-11 16:46:41',1,30000064,106,35,20,61,12,67,46,134,33,0,47,99,98,26,21,52,174,11,68,0,0,181,80,45),(5362,'2015-03-14 14:56:59','2015-10-11 16:46:41',1,30001765,0,0,0,5,0,0,0,0,46,0,0,4,0,0,0,0,0,0,0,0,0,0,0,167),(5363,'2015-03-14 14:56:59','2015-10-11 16:46:41',1,30000688,48,0,9,13,8,9,108,0,0,0,30,0,1,0,42,18,55,42,1,1,1,0,0,0),(5364,'2015-03-14 14:56:59','2015-10-11 16:46:41',1,30001866,0,0,0,57,0,0,0,17,174,0,0,0,0,36,0,0,0,11,0,0,0,7,4,0),(5365,'2015-03-14 14:56:59','2015-03-14 14:56:59',1,30000551,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(5366,'2015-03-14 14:56:59','2015-10-11 16:46:41',1,30001922,0,160,0,93,110,55,19,0,21,60,41,0,0,35,0,0,57,0,57,13,88,99,51,23),(5367,'2015-03-14 14:56:59','2015-10-11 16:46:41',1,30003618,0,103,0,0,0,0,1,0,0,31,0,0,0,33,0,41,167,0,0,0,0,0,0,0),(5368,'2015-03-14 14:56:59','2015-10-11 16:46:41',1,30003550,1,0,0,0,0,0,0,0,20,1,0,0,0,0,0,0,0,1,0,0,118,0,158,1),(5369,'2015-03-14 14:56:59','2015-10-11 16:46:41',1,30005208,0,0,3,7,1,1,3,0,0,0,22,22,40,108,115,0,15,14,13,0,0,3,92,17),(5370,'2015-03-14 14:56:59','2015-10-11 16:46:41',1,30004489,413,4,35,91,45,2,11,114,89,104,755,328,109,238,306,21,14,214,28,93,0,170,96,709),(5371,'2015-03-14 14:56:59','2015-10-11 16:46:41',1,30004107,18,70,140,24,23,13,76,27,59,138,6,17,3,5,5,30,27,1,0,17,101,77,97,39),(5372,'2015-03-14 14:56:59','2015-10-11 16:46:41',1,30004127,66,65,73,35,191,176,100,85,126,41,182,61,40,119,175,144,180,108,1,79,147,117,53,185),(5373,'2015-03-14 14:56:59','2015-10-11 16:46:41',1,30005055,101,0,62,17,73,7,31,7,161,1,38,59,93,43,97,163,114,191,45,3,92,28,66,155),(5374,'2015-03-14 14:56:59','2015-10-11 16:46:41',1,30004140,0,1,0,0,19,18,0,0,0,0,0,2,0,0,58,28,21,0,76,21,0,0,149,86),(5375,'2015-03-14 14:56:59','2015-10-11 16:46:41',1,30002203,210,89,253,121,62,56,264,176,85,162,401,355,468,450,296,476,452,182,7,93,287,298,140,126),(5376,'2015-03-14 14:56:59','2015-10-11 16:46:41',1,30003562,0,1,3,0,0,0,75,0,0,0,0,0,0,0,0,0,0,38,0,2,0,0,0,1),(5377,'2015-03-14 14:56:59','2015-10-11 16:46:41',1,30003939,0,0,0,0,7,114,0,0,0,0,0,0,0,70,14,0,0,47,202,0,0,0,0,0),(5378,'2015-03-14 14:56:59','2015-10-11 16:46:41',1,30001732,30,12,82,59,152,154,36,54,44,47,58,34,33,0,6,16,45,51,54,15,107,25,9,100),(5379,'2015-03-14 14:56:59','2015-10-11 16:46:41',1,30004363,0,0,96,151,72,174,18,200,47,18,0,0,0,0,0,43,79,0,0,0,0,0,0,0),(5380,'2015-03-14 14:56:59','2015-10-11 16:46:41',1,30001810,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,0,0),(5381,'2015-03-14 14:56:59','2015-10-11 16:46:41',1,30000937,0,0,11,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,75,0,0,0),(5382,'2015-03-14 14:56:59','2015-10-11 16:46:41',1,30003619,113,62,89,0,22,0,0,0,0,24,17,18,0,3,0,0,0,14,0,17,96,0,0,0),(5383,'2015-03-14 14:56:59','2015-10-11 16:46:41',1,30002130,0,215,0,0,0,0,0,66,53,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(5384,'2015-03-14 14:56:59','2015-10-11 16:46:41',1,30001996,74,62,36,70,9,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,0,79,0,68),(5385,'2015-03-14 14:56:59','2015-10-11 16:46:41',1,30004888,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,45,44,0,5,114,18,0,0,0),(5386,'2015-03-14 14:56:59','2015-03-14 14:56:59',1,30004498,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(5387,'2015-03-14 14:56:59','2015-10-11 16:46:41',1,30003658,0,0,0,0,0,0,0,22,0,0,0,0,0,0,0,32,32,0,0,0,0,0,0,0),(5388,'2015-03-14 14:56:59','2015-03-14 14:56:59',1,30000407,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(5389,'2015-03-14 14:56:59','2015-10-11 16:46:41',1,30002018,0,0,152,322,0,0,20,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(5390,'2015-03-14 14:56:59','2015-10-11 16:46:41',1,30000449,0,59,0,0,0,0,43,63,0,178,594,666,813,0,169,487,680,459,113,0,168,646,258,418),(5391,'2015-03-14 14:56:59','2015-10-11 16:46:41',1,30000296,90,4,233,0,0,128,0,0,1,100,113,80,180,0,0,0,0,0,48,0,0,0,0,0),(5392,'2015-03-14 14:56:59','2015-03-14 14:56:59',1,30000935,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(5393,'2015-03-14 14:56:59','2015-10-11 16:46:41',1,30004820,0,27,0,0,0,26,0,0,5,0,0,0,0,0,0,0,0,10,0,0,0,0,0,0),(5394,'2015-03-14 14:56:59','2015-10-11 16:46:41',1,30003289,0,4,0,0,0,0,0,0,0,7,0,4,8,21,0,0,0,3,0,0,0,8,0,12),(5395,'2015-03-14 14:56:59','2015-10-11 16:46:41',1,30000699,0,0,0,0,0,0,0,0,0,0,0,0,0,3,0,0,0,0,0,0,0,0,0,0),(5396,'2015-03-14 14:56:59','2015-10-11 16:46:41',1,30000802,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,89,80),(5397,'2015-03-14 14:56:59','2015-10-11 16:46:41',1,30004882,52,426,274,741,771,378,50,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(5398,'2015-03-14 14:56:59','2015-10-11 16:46:41',1,30001133,0,0,0,0,27,27,0,0,0,52,134,133,53,144,12,0,19,0,112,108,101,17,0,0),(5399,'2015-03-14 14:56:59','2015-10-11 16:46:41',1,30005221,62,131,75,59,31,4,181,80,59,38,157,90,34,187,117,127,83,40,63,64,182,110,129,117),(5400,'2015-03-14 14:56:59','2015-10-11 16:46:41',1,30001131,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,27,60),(5401,'2015-03-14 14:56:59','2015-10-11 16:46:41',1,30005067,0,3,12,9,0,0,0,0,46,0,0,0,14,119,0,0,0,126,0,0,0,0,68,13),(5402,'2015-03-14 14:56:59','2015-10-11 16:46:41',1,30004081,265,312,404,370,248,263,108,139,212,449,416,409,293,233,401,307,166,138,517,291,530,451,424,365),(5403,'2015-03-14 14:56:59','2015-10-11 16:46:41',1,30004160,114,45,145,80,93,51,219,112,37,165,379,159,152,125,9,47,248,265,209,145,103,41,181,131),(5404,'2015-03-14 14:56:59','2015-10-11 16:46:41',1,30002923,197,1320,227,470,321,686,100,222,113,0,64,74,605,95,1000,691,521,549,88,193,487,215,751,663),(5405,'2015-03-14 14:56:59','2015-10-11 16:46:41',1,30001226,76,1,0,0,0,0,16,82,37,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0),(5406,'2015-03-14 14:56:59','2015-10-11 16:46:41',1,30004496,0,0,0,11,0,0,0,0,0,0,0,0,0,0,182,145,94,217,0,0,0,0,5,0),(5407,'2015-03-14 14:56:59','2015-10-11 16:46:41',1,30004469,538,141,0,32,223,326,285,0,0,434,565,1121,1016,75,795,695,528,231,58,228,338,474,663,960),(5408,'2015-03-14 14:56:59','2015-10-11 16:46:41',1,30002352,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,39,41,0),(5409,'2015-03-14 14:56:59','2015-03-14 14:56:59',1,30000328,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(5410,'2015-03-14 14:56:59','2015-03-14 14:56:59',1,30001072,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(5411,'2015-03-14 14:56:59','2015-10-11 16:46:41',1,30003747,0,0,0,0,26,0,0,0,209,0,0,18,19,13,506,508,591,182,0,0,0,83,43,82),(5412,'2015-03-14 14:56:59','2015-10-11 16:46:41',1,30004660,3,0,0,0,0,0,0,0,0,132,303,122,6,50,93,66,0,106,0,51,0,65,290,377),(5413,'2015-03-14 14:56:59','2015-10-11 16:46:41',1,30004955,0,0,0,0,0,0,0,0,0,6,13,0,0,24,0,33,66,0,0,0,0,4,0,0),(5414,'2015-03-14 14:56:59','2015-10-11 16:46:41',1,30004658,0,0,345,47,363,517,323,0,0,23,141,98,121,0,0,0,0,0,60,0,0,129,172,186),(5415,'2015-03-14 14:56:59','2015-10-11 16:46:41',1,30003369,84,0,0,0,21,34,0,0,14,16,46,30,17,16,16,26,11,4,0,0,20,2,12,21),(5416,'2015-03-14 14:56:59','2015-03-14 14:56:59',1,30001621,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(5417,'2015-03-14 14:56:59','2015-10-11 16:46:41',1,30003272,0,0,5,4,7,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,108),(5418,'2015-03-14 14:56:59','2015-10-11 16:46:41',1,30001590,55,0,0,0,0,0,0,0,0,0,90,87,9,72,9,0,0,0,0,0,0,0,0,0),(5419,'2015-03-14 14:56:59','2015-10-11 16:46:41',1,30004687,0,0,0,0,0,0,0,0,0,15,121,25,0,0,0,0,0,0,0,0,0,0,0,4),(5420,'2015-03-14 14:56:59','2015-10-11 16:46:41',1,30003620,14,1,51,0,0,0,18,0,0,0,33,0,0,25,0,35,53,0,0,0,0,0,79,0),(5421,'2015-03-14 14:56:59','2015-10-11 16:46:41',1,30004777,0,0,0,0,0,0,0,0,0,10,0,0,4,0,0,0,0,0,3,10,5,0,29,11),(5422,'2015-03-14 14:56:59','2015-10-11 16:46:41',1,30004540,0,0,0,0,0,0,0,0,20,0,9,10,25,0,0,0,3,14,77,58,0,9,19,27),(5423,'2015-03-14 14:56:59','2015-03-14 14:56:59',1,30004528,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(5424,'2015-03-14 14:56:59','2015-10-11 16:46:41',1,30001168,0,0,0,1,0,0,0,0,0,0,0,0,13,0,5,0,0,0,0,0,0,20,0,0),(5425,'2015-03-14 14:56:59','2015-10-11 16:46:41',1,30004031,0,632,0,54,984,694,0,0,0,0,0,0,3,0,388,1088,1560,521,0,0,0,0,46,0),(5426,'2015-03-14 14:56:59','2015-10-11 16:46:41',1,30004437,3,0,94,0,0,0,0,0,0,0,0,0,0,0,0,0,0,99,0,0,0,0,0,194),(5427,'2015-03-14 14:56:59','2015-10-11 16:46:41',1,30001004,1,0,0,0,0,33,1,0,47,79,8,19,0,26,7,3,3,0,0,5,3,4,5,1),(5428,'2015-03-14 14:56:59','2015-10-11 16:46:41',1,30002360,0,0,0,0,0,0,2,8,0,0,0,0,0,4,3,3,1,4,0,0,0,0,0,0),(5429,'2015-03-14 14:56:59','2015-03-14 14:56:59',1,30000356,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(5430,'2015-03-14 14:56:59','2015-10-11 16:46:41',1,30001807,257,52,0,159,0,0,86,111,59,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(5431,'2015-03-14 14:56:59','2015-10-11 16:46:41',1,30002914,65,1160,536,1540,1580,1359,1340,860,320,226,281,583,762,471,778,565,254,328,705,777,675,560,1240,1660),(8078,'2015-08-19 19:10:04','2015-08-19 19:10:04',1,31000001,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(8081,'2015-08-19 19:10:04','2015-08-19 19:10:04',1,31000002,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(8082,'2015-08-19 19:10:04','2015-08-19 19:10:04',1,31000003,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(8083,'2015-08-19 19:10:04','2015-08-19 19:10:04',1,31000006,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(8087,'2015-08-19 19:10:04','2015-08-19 19:10:04',1,31000004,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0); /*!40000 ALTER TABLE `system_kills_factions` ENABLE KEYS */; UNLOCK TABLES; @@ -716,7 +714,7 @@ CREATE TABLE `system_kills_pods` ( LOCK TABLES `system_kills_pods` WRITE; /*!40000 ALTER TABLE `system_kills_pods` DISABLE KEYS */; -INSERT INTO `system_kills_pods` VALUES (1,'2015-03-14 14:56:57','2015-08-29 14:46:05',1,30000995,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,2,0),(2,'2015-03-14 14:56:57','2015-03-14 14:56:57',1,30001779,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(3,'2015-03-14 14:56:57','2015-08-29 14:46:05',1,30000838,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,1,0,2,1,0),(4,'2015-03-14 14:56:57','2015-08-29 14:46:05',1,30001904,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0),(5,'2015-03-14 14:56:57','2015-03-14 14:56:57',1,30004510,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(6,'2015-03-14 14:56:57','2015-08-29 14:46:05',1,30003693,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0),(7,'2015-03-14 14:56:57','2015-03-14 14:56:57',1,30001287,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(8,'2015-03-14 14:56:57','2015-03-14 14:56:57',1,30000480,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(9,'2015-03-14 14:56:57','2015-08-29 14:46:05',1,30002454,0,0,0,0,0,1,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0),(10,'2015-03-14 14:56:57','2015-08-29 14:46:05',1,30004756,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0),(11,'2015-03-14 14:56:57','2015-03-14 14:56:57',1,30004674,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(12,'2015-03-14 14:56:57','2015-03-14 14:56:57',1,30001150,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(13,'2015-03-14 14:56:57','2015-03-14 14:56:57',1,30004930,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(14,'2015-03-14 14:56:57','2015-08-29 14:46:05',1,30001322,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0),(15,'2015-03-14 14:56:57','2015-08-29 14:46:05',1,30003114,1,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(16,'2015-03-14 14:56:57','2015-03-14 14:56:57',1,30003198,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(17,'2015-03-14 14:56:57','2015-03-14 14:56:57',1,30000222,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(18,'2015-03-14 14:56:57','2015-03-14 14:56:57',1,30001065,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(19,'2015-03-14 14:56:57','2015-03-14 14:56:57',1,30005191,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(20,'2015-03-14 14:56:57','2015-03-14 14:56:57',1,30003615,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(21,'2015-03-14 14:56:57','2015-03-14 14:56:57',1,30000799,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(22,'2015-03-14 14:56:57','2015-08-29 14:46:05',1,30000440,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(23,'2015-03-14 14:56:57','2015-08-29 14:46:05',1,30003947,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(24,'2015-03-14 14:56:57','2015-03-14 14:56:57',1,30004509,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(25,'2015-03-14 14:56:57','2015-03-14 14:56:57',1,30001295,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(26,'2015-03-14 14:56:57','2015-08-29 14:46:05',1,30000857,0,0,0,0,0,0,0,0,0,0,0,0,2,1,0,0,0,0,0,0,0,0,0,0),(27,'2015-03-14 14:56:57','2015-03-14 14:56:57',1,30004656,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(28,'2015-03-14 14:56:57','2015-08-29 14:46:05',1,30004596,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,1,0,0,0,0),(29,'2015-03-14 14:56:57','2015-08-29 14:46:05',1,30004068,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(30,'2015-03-14 14:56:57','2015-03-14 14:56:57',1,30005186,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(31,'2015-03-14 14:56:57','2015-03-14 14:56:57',1,30002609,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(32,'2015-03-14 14:56:57','2015-03-14 14:56:57',1,30003149,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(33,'2015-03-14 14:56:57','2015-03-14 14:56:57',1,30000707,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(34,'2015-03-14 14:56:57','2015-03-14 14:56:57',1,30000822,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(35,'2015-03-14 14:56:57','2015-08-29 14:46:05',1,30002460,0,0,1,0,0,0,0,0,2,0,0,0,0,0,0,0,1,0,0,0,1,0,0,0),(36,'2015-03-14 14:56:57','2015-03-14 14:56:57',1,30000623,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(37,'2015-03-14 14:56:57','2015-08-29 14:46:05',1,30000216,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(38,'2015-03-14 14:56:57','2015-08-29 14:46:05',1,30001120,0,0,1,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0),(39,'2015-03-14 14:56:57','2015-08-29 14:46:05',1,30000596,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,1,1,0,0,0,0),(40,'2015-03-14 14:56:57','2015-08-29 14:46:05',1,30002168,0,0,1,0,0,0,0,0,0,0,0,0,0,1,1,0,0,1,0,0,0,1,0,0),(41,'2015-03-14 14:56:57','2015-03-14 14:56:57',1,30004954,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(42,'2015-03-14 14:56:57','2015-08-29 14:46:05',1,30003743,0,0,0,1,2,0,0,0,9,0,0,0,0,0,0,0,0,1,0,1,0,0,0,0),(43,'2015-03-14 14:56:57','2015-03-14 14:56:57',1,30000351,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(44,'2015-03-14 14:56:57','2015-03-14 14:56:57',1,30004947,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(45,'2015-03-14 14:56:57','2015-03-14 14:56:57',1,30003782,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(46,'2015-03-14 14:56:57','2015-03-14 14:56:57',1,30004214,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(47,'2015-03-14 14:56:57','2015-03-14 14:56:57',1,30004549,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(48,'2015-03-14 14:56:57','2015-08-29 14:46:05',1,30004917,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0),(49,'2015-03-14 14:56:57','2015-03-14 14:56:57',1,30003296,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(50,'2015-03-14 14:56:57','2015-03-14 14:56:57',1,30005102,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(51,'2015-03-14 14:56:57','2015-08-29 14:46:05',1,30001889,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0),(52,'2015-03-14 14:56:57','2015-08-29 14:46:05',1,30001856,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(53,'2015-03-14 14:56:57','2015-08-29 14:46:05',1,30000522,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0),(54,'2015-03-14 14:56:57','2015-03-14 14:56:57',1,30001643,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(55,'2015-03-14 14:56:57','2015-03-14 14:56:57',1,30001551,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(56,'2015-03-14 14:56:57','2015-08-29 14:46:05',1,30000267,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0),(57,'2015-03-14 14:56:57','2015-08-29 14:46:05',1,30003330,0,0,1,0,0,0,0,0,0,0,0,0,2,1,1,1,2,0,0,0,0,1,1,0),(58,'2015-03-14 14:56:57','2015-03-14 14:56:57',1,30000645,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(59,'2015-03-14 14:56:57','2015-03-14 14:56:57',1,30003647,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(60,'2015-03-14 14:56:57','2015-03-14 14:56:57',1,30002308,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(61,'2015-03-14 14:56:57','2015-03-14 14:56:57',1,30001521,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(62,'2015-03-14 14:56:57','2015-08-29 14:46:05',1,30000262,0,0,0,0,0,0,0,0,0,0,0,0,3,0,0,0,0,0,0,0,0,0,0,0),(63,'2015-03-14 14:56:57','2015-03-14 14:56:57',1,30004720,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(64,'2015-03-14 14:56:57','2015-03-14 14:56:57',1,30000929,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(65,'2015-03-14 14:56:57','2015-03-14 14:56:57',1,30004950,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(66,'2015-03-14 14:56:57','2015-03-14 14:56:57',1,30004483,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(67,'2015-03-14 14:56:57','2015-08-29 14:46:05',1,30002899,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,1,0,0),(68,'2015-03-14 14:56:57','2015-03-14 14:56:57',1,30004874,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(69,'2015-03-14 14:56:57','2015-03-14 14:56:57',1,30004322,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(70,'2015-03-14 14:56:57','2015-03-14 14:56:57',1,30000966,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(71,'2015-03-14 14:56:57','2015-08-29 14:46:05',1,30003251,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0),(72,'2015-03-14 14:56:57','2015-03-14 14:56:57',1,30000290,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(73,'2015-03-14 14:56:57','2015-03-14 14:56:57',1,30000940,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(74,'2015-03-14 14:56:57','2015-03-14 14:56:57',1,30000566,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(75,'2015-03-14 14:56:57','2015-03-14 14:56:57',1,30001458,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(76,'2015-03-14 14:56:57','2015-03-14 14:56:57',1,30002846,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(77,'2015-03-14 14:56:57','2015-08-29 14:46:05',1,30001009,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0),(78,'2015-03-14 14:56:57','2015-03-14 14:56:57',1,30004695,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(79,'2015-03-14 14:56:57','2015-08-29 14:46:05',1,30003349,0,0,0,0,0,0,0,0,1,2,1,1,0,0,0,0,0,0,0,0,0,0,1,0),(80,'2015-03-14 14:56:57','2015-08-29 14:46:05',1,30001961,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0),(81,'2015-03-14 14:56:57','2015-08-29 14:46:05',1,30003957,0,1,0,0,0,1,0,0,0,0,0,0,0,1,1,0,0,1,1,1,0,0,0,0),(82,'2015-03-14 14:56:57','2015-03-14 14:56:57',1,30000543,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(83,'2015-03-14 14:56:57','2015-03-14 14:56:57',1,30000781,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(84,'2015-03-14 14:56:57','2015-03-14 14:56:57',1,30002934,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(85,'2015-03-14 14:56:57','2015-03-14 14:56:57',1,30004843,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(86,'2015-03-14 14:56:57','2015-03-14 14:56:57',1,30005157,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(87,'2015-03-14 14:56:57','2015-08-29 14:46:05',1,30001837,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0),(88,'2015-03-14 14:56:57','2015-03-14 14:56:57',1,30001599,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(89,'2015-03-14 14:56:57','2015-08-29 14:46:05',1,30004677,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0),(90,'2015-03-14 14:56:57','2015-03-14 14:56:57',1,30001757,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(91,'2015-03-14 14:56:57','2015-08-29 14:46:05',1,30003766,1,4,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(92,'2015-03-14 14:56:57','2015-03-14 14:56:57',1,30004801,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(93,'2015-03-14 14:56:57','2015-08-29 14:46:05',1,30004037,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(94,'2015-03-14 14:56:57','2015-08-29 14:46:05',1,30004650,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0),(95,'2015-03-14 14:56:57','2015-08-29 14:46:05',1,30000573,0,1,0,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(96,'2015-03-14 14:56:57','2015-03-14 14:56:57',1,30000734,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(97,'2015-03-14 14:56:57','2015-03-14 14:56:57',1,30002581,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(98,'2015-03-14 14:56:57','2015-03-14 14:56:57',1,30003258,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(99,'2015-03-14 14:56:57','2015-03-14 14:56:57',1,30001109,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(100,'2015-03-14 14:56:57','2015-08-29 14:46:05',1,30000301,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,2,0,0,1,0),(101,'2015-03-14 14:56:57','2015-03-14 14:56:57',1,30000463,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(102,'2015-03-14 14:56:57','2015-03-14 14:56:57',1,30003215,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(103,'2015-03-14 14:56:57','2015-03-14 14:56:57',1,30002823,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(104,'2015-03-14 14:56:57','2015-08-29 14:46:05',1,30004940,0,2,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(105,'2015-03-14 14:56:57','2015-03-14 14:56:57',1,30003297,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(106,'2015-03-14 14:56:57','2015-03-14 14:56:57',1,30004048,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(107,'2015-03-14 14:56:57','2015-03-14 14:56:57',1,30000474,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(108,'2015-03-14 14:56:57','2015-08-29 14:46:05',1,30004738,1,1,0,0,0,0,2,0,10,4,0,1,7,0,0,0,0,0,1,2,2,0,3,0),(109,'2015-03-14 14:56:57','2015-03-14 14:56:57',1,30001270,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(110,'2015-03-14 14:56:57','2015-03-14 14:56:57',1,30003336,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(111,'2015-03-14 14:56:57','2015-03-14 14:56:57',1,30003147,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(112,'2015-03-14 14:56:57','2015-03-14 14:56:57',1,30001975,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(113,'2015-03-14 14:56:57','2015-03-14 14:56:57',1,30001066,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(114,'2015-03-14 14:56:57','2015-08-29 14:46:05',1,30004639,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(115,'2015-03-14 14:56:57','2015-03-14 14:56:57',1,30004611,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(116,'2015-03-14 14:56:57','2015-08-29 14:46:05',1,30000861,0,0,0,0,0,0,0,1,0,3,6,1,2,8,3,6,3,0,1,2,0,0,3,0),(117,'2015-03-14 14:56:57','2015-03-14 14:56:57',1,30000425,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(118,'2015-03-14 14:56:57','2015-08-29 14:46:05',1,30000931,0,0,0,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(119,'2015-03-14 14:56:57','2015-03-14 14:56:57',1,30004849,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(120,'2015-03-14 14:56:57','2015-08-29 14:46:05',1,30003122,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,1,0),(121,'2015-03-14 14:56:57','2015-08-29 14:46:05',1,30003768,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(122,'2015-03-14 14:56:57','2015-03-14 14:56:57',1,30000342,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(123,'2015-03-14 14:56:57','2015-08-29 14:46:05',1,30003785,0,0,0,0,0,0,0,0,0,0,0,0,0,2,2,0,0,0,0,1,0,0,1,0),(124,'2015-03-14 14:56:57','2015-03-14 14:56:57',1,30005117,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(125,'2015-03-14 14:56:57','2015-08-29 14:46:05',1,30002317,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0),(126,'2015-03-14 14:56:57','2015-03-14 14:56:57',1,30004728,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(127,'2015-03-14 14:56:57','2015-03-14 14:56:57',1,30003624,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(128,'2015-03-14 14:56:57','2015-08-29 14:46:05',1,30000963,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,2,0),(129,'2015-03-14 14:56:57','2015-03-14 14:56:57',1,30001524,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(130,'2015-03-14 14:56:57','2015-03-14 14:56:57',1,30004688,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(131,'2015-03-14 14:56:57','2015-08-29 14:46:05',1,30004710,1,0,1,0,0,0,0,0,2,2,1,0,4,0,1,1,1,1,0,1,0,5,1,0),(132,'2015-03-14 14:56:57','2015-03-14 14:56:57',1,30004759,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(133,'2015-03-14 14:56:57','2015-03-14 14:56:57',1,30004964,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(134,'2015-03-14 14:56:57','2015-08-29 14:46:05',1,30003211,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(135,'2015-03-14 14:56:57','2015-08-29 14:46:05',1,30004367,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(136,'2015-03-14 14:56:57','2015-08-29 14:46:05',1,30002332,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0),(137,'2015-03-14 14:56:57','2015-03-14 14:56:57',1,30004226,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(138,'2015-03-14 14:56:57','2015-03-14 14:56:57',1,30001880,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(139,'2015-03-14 14:56:57','2015-03-14 14:56:57',1,30001952,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(140,'2015-03-14 14:56:57','2015-03-14 14:56:57',1,30002329,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(141,'2015-03-14 14:56:57','2015-03-14 14:56:57',1,30000395,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(142,'2015-03-14 14:56:57','2015-03-14 14:56:57',1,30001540,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(143,'2015-03-14 14:56:57','2015-08-29 14:46:05',1,30004920,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0),(144,'2015-03-14 14:56:57','2015-08-29 14:46:05',1,30004393,0,0,0,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(145,'2015-03-14 14:56:57','2015-03-14 14:56:57',1,30000445,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(146,'2015-03-14 14:56:57','2015-03-14 14:56:57',1,30000962,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(147,'2015-03-14 14:56:57','2015-03-14 14:56:57',1,30004501,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(148,'2015-03-14 14:56:57','2015-08-29 14:46:05',1,30000579,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,19,0,0,1,1,0,0),(149,'2015-03-14 14:56:57','2015-03-14 14:56:57',1,30003952,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(150,'2015-03-14 14:56:57','2015-08-29 14:46:05',1,30004189,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,1,0,0,0,0,0,0,0),(151,'2015-03-14 14:56:57','2015-08-29 14:46:05',1,30000294,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(152,'2015-03-14 14:56:57','2015-03-14 14:56:57',1,30001081,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(153,'2015-03-14 14:56:57','2015-03-14 14:56:57',1,30003233,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(154,'2015-03-14 14:56:57','2015-08-29 14:46:05',1,30001170,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0),(155,'2015-03-14 14:56:57','2015-03-14 14:56:57',1,30002365,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(156,'2015-03-14 14:56:57','2015-03-14 14:56:57',1,30000336,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(157,'2015-03-14 14:56:57','2015-03-14 14:56:57',1,30003617,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(158,'2015-03-14 14:56:57','2015-08-29 14:46:05',1,30000720,0,0,0,0,0,0,1,0,0,0,0,1,2,0,0,0,0,0,0,0,4,0,0,0),(159,'2015-03-14 14:56:57','2015-03-14 14:56:57',1,30000378,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(160,'2015-03-14 14:56:57','2015-08-29 14:46:05',1,30002866,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,1,0,0,0),(161,'2015-03-14 14:56:57','2015-03-14 14:56:57',1,30001452,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(162,'2015-03-14 14:56:57','2015-03-14 14:56:57',1,30000766,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(163,'2015-03-14 14:56:57','2015-03-14 14:56:57',1,30000424,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(164,'2015-03-14 14:56:57','2015-08-29 14:46:05',1,30000680,0,12,0,2,1,1,0,0,0,0,0,0,2,0,0,0,0,0,1,5,0,0,1,0),(165,'2015-03-14 14:56:57','2015-03-14 14:56:57',1,30000286,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(166,'2015-03-14 14:56:57','2015-08-29 14:46:05',1,30000288,1,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(167,'2015-03-14 14:56:57','2015-03-14 14:56:57',1,30000836,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(168,'2015-03-14 14:56:57','2015-03-14 14:56:57',1,30000611,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(169,'2015-03-14 14:56:57','2015-03-14 14:56:57',1,30003668,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(170,'2015-03-14 14:56:57','2015-03-14 14:56:57',1,30000349,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(171,'2015-03-14 14:56:57','2015-08-29 14:46:05',1,30002007,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0),(172,'2015-03-14 14:56:57','2015-08-29 14:46:05',1,30001786,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,0,0,0,0),(173,'2015-03-14 14:56:57','2015-03-14 14:56:57',1,30004184,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(174,'2015-03-14 14:56:57','2015-03-14 14:56:57',1,30004454,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(175,'2015-03-14 14:56:57','2015-08-29 14:46:05',1,30002903,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,0,0,0,0),(176,'2015-03-14 14:56:57','2015-03-14 14:56:57',1,30000684,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(177,'2015-03-14 14:56:57','2015-03-14 14:56:57',1,30001598,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(178,'2015-03-14 14:56:57','2015-08-29 14:46:05',1,30000756,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0),(179,'2015-03-14 14:56:57','2015-03-14 14:56:57',1,30004492,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(180,'2015-03-14 14:56:57','2015-08-29 14:46:05',1,30003754,0,0,0,0,0,0,1,0,0,0,0,0,2,0,0,0,0,0,0,0,0,0,0,0),(181,'2015-03-14 14:56:57','2015-08-29 14:46:05',1,30001864,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0),(182,'2015-03-14 14:56:57','2015-03-14 14:56:57',1,30003188,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(183,'2015-03-14 14:56:57','2015-08-29 14:46:05',1,30000473,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,5,2,0,0,0,0),(184,'2015-03-14 14:56:57','2015-03-14 14:56:57',1,30005139,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(185,'2015-03-14 14:56:57','2015-03-14 14:56:57',1,30003238,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(186,'2015-03-14 14:56:57','2015-08-29 14:46:05',1,30004734,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(187,'2015-03-14 14:56:57','2015-03-14 14:56:57',1,30004467,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(188,'2015-03-14 14:56:57','2015-08-29 14:46:05',1,30001784,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0),(189,'2015-03-14 14:56:57','2015-08-29 14:46:05',1,30001258,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,0,0,1,0),(190,'2015-03-14 14:56:57','2015-03-14 14:56:57',1,30000832,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(191,'2015-03-14 14:56:57','2015-08-29 14:46:05',1,30000996,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(192,'2015-03-14 14:56:57','2015-03-14 14:56:57',1,30004071,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(193,'2015-03-14 14:56:57','2015-08-29 14:46:05',1,30000714,0,2,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(194,'2015-03-14 14:56:57','2015-08-29 14:46:05',1,30003171,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,0,0,0,0),(195,'2015-03-14 14:56:57','2015-03-14 14:56:57',1,30005182,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(196,'2015-03-14 14:56:57','2015-03-14 14:56:57',1,30001949,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(197,'2015-03-14 14:56:57','2015-08-29 14:46:05',1,30002342,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(198,'2015-03-14 14:56:57','2015-03-14 14:56:57',1,30004394,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(199,'2015-03-14 14:56:57','2015-08-29 14:46:05',1,30000898,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(200,'2015-03-14 14:56:57','2015-08-29 14:46:05',1,30001965,1,1,0,0,0,0,0,0,0,1,1,0,0,1,0,0,0,0,0,0,0,0,0,0),(201,'2015-03-14 14:56:57','2015-08-29 14:46:05',1,30000292,1,0,0,0,0,0,0,0,2,0,0,0,0,1,0,0,1,0,0,0,0,0,0,0),(202,'2015-03-14 14:56:57','2015-08-29 14:46:05',1,30002424,0,0,0,0,0,0,0,0,3,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0),(203,'2015-03-14 14:56:57','2015-03-14 14:56:57',1,30000403,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(204,'2015-03-14 14:56:57','2015-03-14 14:56:57',1,30001746,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(205,'2015-03-14 14:56:57','2015-03-14 14:56:57',1,30001136,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(206,'2015-03-14 14:56:57','2015-03-14 14:56:57',1,30002283,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(207,'2015-03-14 14:56:57','2015-03-14 14:56:57',1,30003370,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(208,'2015-03-14 14:56:57','2015-08-29 14:46:05',1,30002455,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(209,'2015-03-14 14:56:57','2015-08-29 14:46:05',1,30004693,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0),(210,'2015-03-14 14:56:57','2015-03-14 14:56:57',1,30001352,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(211,'2015-03-14 14:56:57','2015-03-14 14:56:57',1,30001774,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(212,'2015-03-14 14:56:57','2015-08-29 14:46:05',1,30001860,0,0,0,0,0,0,1,0,0,0,0,0,0,1,0,0,0,0,0,0,3,0,0,0),(213,'2015-03-14 14:56:57','2015-03-14 14:56:57',1,30000881,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(214,'2015-03-14 14:56:57','2015-03-14 14:56:57',1,30001169,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(215,'2015-03-14 14:56:57','2015-03-14 14:56:57',1,30004531,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(216,'2015-03-14 14:56:57','2015-03-14 14:56:57',1,30000757,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(217,'2015-03-14 14:56:57','2015-03-14 14:56:57',1,30001510,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(218,'2015-03-14 14:56:57','2015-03-14 14:56:57',1,30002175,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(219,'2015-03-14 14:56:57','2015-08-29 14:46:05',1,30002909,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0),(220,'2015-03-14 14:56:57','2015-08-29 14:46:05',1,30003332,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0),(221,'2015-03-14 14:56:57','2015-08-29 14:46:05',1,30004830,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(222,'2015-03-14 14:56:57','2015-03-14 14:56:57',1,30001319,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(223,'2015-03-14 14:56:57','2015-03-14 14:56:57',1,30003304,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(224,'2015-03-14 14:56:57','2015-08-29 14:46:05',1,30002905,0,0,11,0,0,5,0,0,0,0,1,1,1,0,0,0,0,0,0,1,1,1,0,0),(225,'2015-03-14 14:56:57','2015-03-14 14:56:57',1,30003182,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(226,'2015-03-14 14:56:57','2015-03-14 14:56:57',1,30001615,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(227,'2015-03-14 14:56:57','2015-03-14 14:56:57',1,30001333,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(228,'2015-03-14 14:56:57','2015-03-14 14:56:57',1,30004447,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(229,'2015-03-14 14:56:57','2015-03-14 14:56:57',1,30001770,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(230,'2015-03-14 14:56:57','2015-03-14 14:56:57',1,30003774,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(231,'2015-03-14 14:56:57','2015-03-14 14:56:57',1,30005096,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(232,'2015-03-14 14:56:57','2015-08-29 14:46:05',1,30001799,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,0,0,0,0,0),(233,'2015-03-14 14:56:57','2015-08-29 14:46:05',1,30003275,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,1,0,0,0,0),(234,'2015-03-14 14:56:57','2015-03-14 14:56:57',1,30000909,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(235,'2015-03-14 14:56:57','2015-08-29 14:46:05',1,30001103,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(236,'2015-03-14 14:56:57','2015-03-14 14:56:57',1,30001116,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(237,'2015-03-14 14:56:57','2015-08-29 14:46:05',1,30000823,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0),(238,'2015-03-14 14:56:57','2015-03-14 14:56:57',1,30000452,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(239,'2015-03-14 14:56:57','2015-03-14 14:56:57',1,30004466,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(240,'2015-03-14 14:56:57','2015-03-14 14:56:57',1,30001642,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(241,'2015-03-14 14:56:57','2015-08-29 14:46:05',1,30004764,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,2,0,0,0),(242,'2015-03-14 14:56:57','2015-08-29 14:46:05',1,30004019,0,4,0,0,1,2,4,2,0,0,0,1,0,1,1,1,1,2,0,0,0,0,1,0),(243,'2015-03-14 14:56:57','2015-03-14 14:56:57',1,30000341,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(244,'2015-03-14 14:56:57','2015-03-14 14:56:57',1,30003356,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(245,'2015-03-14 14:56:57','2015-03-14 14:56:57',1,30000343,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(246,'2015-03-14 14:56:57','2015-08-29 14:46:05',1,30004004,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,1,0,0,0),(247,'2015-03-14 14:56:57','2015-03-14 14:56:57',1,30003231,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(248,'2015-03-14 14:56:57','2015-08-29 14:46:05',1,30000448,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,1,1,0),(249,'2015-03-14 14:56:57','2015-03-14 14:56:57',1,30004358,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(250,'2015-03-14 14:56:57','2015-08-29 14:46:05',1,30001199,0,0,0,0,0,0,0,0,3,3,0,0,4,7,2,0,0,0,1,1,0,4,0,0),(251,'2015-03-14 14:56:57','2015-03-14 14:56:57',1,30001820,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(252,'2015-03-14 14:56:57','2015-08-29 14:46:05',1,30003675,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0),(253,'2015-03-14 14:56:57','2015-08-29 14:46:05',1,30001212,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(254,'2015-03-14 14:56:57','2015-03-14 14:56:57',1,30004336,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(255,'2015-03-14 14:56:57','2015-03-14 14:56:57',1,30002582,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(256,'2015-03-14 14:56:57','2015-03-14 14:56:57',1,30001500,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(257,'2015-03-14 14:56:57','2015-08-29 14:46:05',1,30004405,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(258,'2015-03-14 14:56:57','2015-08-29 14:46:05',1,30003632,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,0,0),(259,'2015-03-14 14:56:57','2015-03-14 14:56:57',1,30000534,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(260,'2015-03-14 14:56:57','2015-08-29 14:46:05',1,30003329,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0),(261,'2015-03-14 14:56:57','2015-03-14 14:56:57',1,30004387,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(262,'2015-03-14 14:56:57','2015-08-29 14:46:05',1,30004722,1,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,2,1,0,0,0,0),(263,'2015-03-14 14:56:57','2015-03-14 14:56:57',1,30004786,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(264,'2015-03-14 14:56:57','2015-03-14 14:56:57',1,30001841,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(265,'2015-03-14 14:56:57','2015-03-14 14:56:57',1,30004668,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(266,'2015-03-14 14:56:57','2015-08-29 14:46:05',1,30003642,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0),(267,'2015-03-14 14:56:57','2015-08-29 14:46:05',1,30004517,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,1,0),(268,'2015-03-14 14:56:57','2015-03-14 14:56:57',1,30002919,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(269,'2015-03-14 14:56:57','2015-08-29 14:46:05',1,30004928,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(270,'2015-03-14 14:56:57','2015-08-29 14:46:05',1,30003312,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0),(271,'2015-03-14 14:56:57','2015-08-29 14:46:05',1,30001157,1,0,0,0,0,0,0,0,4,0,0,3,0,0,0,2,0,0,0,4,3,0,2,0),(272,'2015-03-14 14:56:57','2015-03-14 14:56:57',1,30001947,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(273,'2015-03-14 14:56:57','2015-08-29 14:46:05',1,30001868,0,1,0,0,0,0,0,0,0,2,2,0,3,0,1,1,0,0,0,0,0,0,50,0),(274,'2015-03-14 14:56:57','2015-03-14 14:56:57',1,30000535,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(275,'2015-03-14 14:56:57','2015-03-14 14:56:57',1,30004632,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(276,'2015-03-14 14:56:57','2015-03-14 14:56:57',1,30000829,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(277,'2015-03-14 14:56:57','2015-03-14 14:56:57',1,30002444,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(278,'2015-03-14 14:56:57','2015-03-14 14:56:57',1,30004766,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(279,'2015-03-14 14:56:57','2015-08-29 14:46:05',1,30001281,0,0,0,0,0,0,1,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(280,'2015-03-14 14:56:57','2015-08-29 14:46:05',1,30000798,0,4,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(281,'2015-03-14 14:56:57','2015-03-14 14:56:57',1,30004000,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(282,'2015-03-14 14:56:57','2015-03-14 14:56:57',1,30000428,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(283,'2015-03-14 14:56:57','2015-08-29 14:46:05',1,30003786,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0),(284,'2015-03-14 14:56:57','2015-03-14 14:56:57',1,30004036,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(285,'2015-03-14 14:56:57','2015-03-14 14:56:57',1,30003609,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(286,'2015-03-14 14:56:57','2015-03-14 14:56:57',1,30001474,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(287,'2015-03-14 14:56:57','2015-03-14 14:56:57',1,30001553,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(288,'2015-03-14 14:56:57','2015-03-14 14:56:57',1,30004390,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(289,'2015-03-14 14:56:57','2015-03-14 14:56:57',1,30004900,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(290,'2015-03-14 14:56:57','2015-03-14 14:56:57',1,30002302,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(291,'2015-03-14 14:56:57','2015-03-14 14:56:57',1,30000876,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(292,'2015-03-14 14:56:57','2015-08-29 14:46:05',1,30001200,0,0,0,0,1,0,0,0,0,0,0,0,3,0,1,1,0,0,1,1,0,3,0,0),(293,'2015-03-14 14:56:57','2015-08-29 14:46:05',1,30003748,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,7,0,0,0,0),(294,'2015-03-14 14:56:57','2015-03-14 14:56:57',1,30002325,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(295,'2015-03-14 14:56:57','2015-03-14 14:56:57',1,30004520,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(296,'2015-03-14 14:56:57','2015-03-14 14:56:57',1,30000228,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(297,'2015-03-14 14:56:57','2015-03-14 14:56:57',1,30002357,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(298,'2015-03-14 14:56:57','2015-08-29 14:46:05',1,30002937,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0),(299,'2015-03-14 14:56:57','2015-08-29 14:46:05',1,30003781,0,0,0,0,0,0,0,0,0,0,0,0,1,3,1,0,0,0,1,1,0,0,0,0),(300,'2015-03-14 14:56:57','2015-08-29 14:46:05',1,30004403,0,0,0,0,0,3,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(301,'2015-03-14 14:56:57','2015-08-29 14:46:05',1,30003322,0,0,1,0,0,0,0,0,0,1,0,0,0,1,1,0,0,0,0,0,0,0,0,0),(302,'2015-03-14 14:56:57','2015-08-29 14:46:05',1,30004419,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0),(303,'2015-03-14 14:56:57','2015-03-14 14:56:57',1,30004808,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(304,'2015-03-14 14:56:57','2015-03-14 14:56:57',1,30005166,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(305,'2015-03-14 14:56:57','2015-08-29 14:46:05',1,30003324,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,3,0,0,0,0,0,0),(306,'2015-03-14 14:56:57','2015-03-14 14:56:57',1,30002917,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(307,'2015-03-14 14:56:57','2015-03-14 14:56:57',1,30004951,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(308,'2015-03-14 14:56:57','2015-08-29 14:46:05',1,30004682,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(309,'2015-03-14 14:56:57','2015-03-14 14:56:57',1,30000590,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(310,'2015-03-14 14:56:57','2015-03-14 14:56:57',1,30004868,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(311,'2015-03-14 14:56:57','2015-08-29 14:46:05',1,30002921,0,2,4,0,2,0,1,3,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(312,'2015-03-14 14:56:57','2015-03-14 14:56:57',1,30000733,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(313,'2015-03-14 14:56:57','2015-03-14 14:56:57',1,30002486,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(314,'2015-03-14 14:56:57','2015-08-29 14:46:05',1,30002938,0,0,1,0,0,0,0,0,3,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(315,'2015-03-14 14:56:57','2015-03-14 14:56:57',1,30000782,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(316,'2015-03-14 14:56:57','2015-03-14 14:56:57',1,30002449,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(317,'2015-03-14 14:56:57','2015-03-14 14:56:57',1,30002011,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(318,'2015-03-14 14:56:57','2015-03-14 14:56:57',1,30003191,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(319,'2015-03-14 14:56:57','2015-08-29 14:46:05',1,30004555,0,1,0,0,0,0,0,0,1,0,0,0,0,0,0,0,2,0,0,1,0,1,0,0),(320,'2015-03-14 14:56:57','2015-03-14 14:56:57',1,30004628,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(321,'2015-03-14 14:56:57','2015-08-29 14:46:05',1,30001260,1,0,0,0,0,1,0,0,0,1,0,0,2,0,0,0,0,0,0,3,0,1,1,0),(322,'2015-03-14 14:56:57','2015-03-14 14:56:57',1,30005149,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(323,'2015-03-14 14:56:57','2015-03-14 14:56:57',1,30004014,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(324,'2015-03-14 14:56:57','2015-03-14 14:56:57',1,30000730,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(325,'2015-03-14 14:56:57','2015-03-14 14:56:57',1,30004317,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(326,'2015-03-14 14:56:57','2015-03-14 14:56:57',1,30001318,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(327,'2015-03-14 14:56:57','2015-03-14 14:56:57',1,30002015,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(328,'2015-03-14 14:56:57','2015-03-14 14:56:57',1,30004360,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(329,'2015-03-14 14:56:57','2015-08-29 14:46:05',1,30000718,1,2,0,1,0,0,1,0,6,0,0,0,0,15,14,3,0,1,6,6,6,0,1,0),(330,'2015-03-14 14:56:57','2015-03-14 14:56:57',1,30002441,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(331,'2015-03-14 14:56:57','2015-03-14 14:56:57',1,30000576,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(332,'2015-03-14 14:56:57','2015-08-29 14:46:05',1,30004553,0,2,0,0,0,0,0,0,4,1,1,0,0,0,0,0,0,2,1,3,0,0,0,0),(333,'2015-03-14 14:56:57','2015-03-14 14:56:57',1,30002144,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(334,'2015-03-14 14:56:57','2015-03-14 14:56:57',1,30004007,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(335,'2015-03-14 14:56:57','2015-03-14 14:56:57',1,30000240,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(336,'2015-03-14 14:56:57','2015-03-14 14:56:57',1,30000431,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(337,'2015-03-14 14:56:57','2015-08-29 14:46:05',1,30004828,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0),(338,'2015-03-14 14:56:57','2015-03-14 14:56:57',1,30003366,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(339,'2015-03-14 14:56:57','2015-03-14 14:56:57',1,30005121,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(340,'2015-03-14 14:56:57','2015-03-14 14:56:57',1,30002613,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(341,'2015-03-14 14:56:57','2015-03-14 14:56:57',1,30000582,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(342,'2015-03-14 14:56:57','2015-08-29 14:46:05',1,30003105,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,6,0,0,0,0),(343,'2015-03-14 14:56:57','2015-03-14 14:56:57',1,30004811,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(344,'2015-03-14 14:56:57','2015-03-14 14:56:57',1,30004165,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(345,'2015-03-14 14:56:57','2015-08-29 14:46:05',1,30002344,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0),(346,'2015-03-14 14:56:57','2015-03-14 14:56:57',1,30001867,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(347,'2015-03-14 14:56:57','2015-03-14 14:56:57',1,30001894,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(348,'2015-03-14 14:56:57','2015-03-14 14:56:57',1,30002864,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(349,'2015-03-14 14:56:57','2015-03-14 14:56:57',1,30004224,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(350,'2015-03-14 14:56:57','2015-03-14 14:56:57',1,30001349,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(351,'2015-03-14 14:56:57','2015-03-14 14:56:57',1,30002350,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(352,'2015-03-14 14:56:57','2015-03-14 14:56:57',1,30001340,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(353,'2015-03-14 14:56:57','2015-08-29 14:46:05',1,30002941,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,0,0,0,0,0,0,0),(354,'2015-03-14 14:56:57','2015-03-14 14:56:57',1,30002616,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(355,'2015-03-14 14:56:57','2015-08-29 14:46:05',1,30003131,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0),(356,'2015-03-14 14:56:57','2015-08-29 14:46:05',1,30004878,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0),(357,'2015-03-14 14:56:57','2015-03-14 14:56:57',1,30000255,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(358,'2015-03-14 14:56:57','2015-03-14 14:56:57',1,30004949,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(359,'2015-03-14 14:56:57','2015-08-29 14:46:05',1,30000251,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0),(360,'2015-03-14 14:56:57','2015-08-29 14:46:05',1,30004009,0,0,0,0,0,1,0,0,0,0,0,0,1,1,0,0,0,0,0,0,0,0,0,0),(361,'2015-03-14 14:56:57','2015-08-29 14:46:05',1,30003708,0,0,0,0,0,0,0,4,0,0,0,0,2,0,0,4,0,2,1,4,0,0,0,0),(362,'2015-03-14 14:56:57','2015-03-14 14:56:57',1,30005165,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(363,'2015-03-14 14:56:57','2015-03-14 14:56:57',1,30004188,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(364,'2015-03-14 14:56:57','2015-08-29 14:46:05',1,30001882,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0),(365,'2015-03-14 14:56:57','2015-03-14 14:56:57',1,30004415,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(366,'2015-03-14 14:56:57','2015-08-29 14:46:05',1,30001815,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0),(367,'2015-03-14 14:56:57','2015-08-29 14:46:05',1,30003706,0,0,0,0,0,0,0,1,0,0,0,0,0,1,1,0,1,0,1,0,0,1,2,0),(368,'2015-03-14 14:56:57','2015-08-29 14:46:05',1,30004504,1,0,0,0,0,1,0,2,1,2,2,0,2,2,1,3,2,0,1,0,0,0,1,0),(369,'2015-03-14 14:56:57','2015-03-14 14:56:57',1,30000376,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(370,'2015-03-14 14:56:57','2015-03-14 14:56:57',1,30000795,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(371,'2015-03-14 14:56:57','2015-03-14 14:56:57',1,30002469,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(372,'2015-03-14 14:56:57','2015-03-14 14:56:57',1,30001578,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(373,'2015-03-14 14:56:57','2015-03-14 14:56:57',1,30000749,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(374,'2015-03-14 14:56:57','2015-03-14 14:56:57',1,30004384,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(375,'2015-03-14 14:56:57','2015-03-14 14:56:57',1,30002154,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(376,'2015-03-14 14:56:57','2015-03-14 14:56:57',1,30000701,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(377,'2015-03-14 14:56:57','2015-03-14 14:56:57',1,30005159,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(378,'2015-03-14 14:56:57','2015-03-14 14:56:57',1,30000536,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(379,'2015-03-14 14:56:57','2015-03-14 14:56:57',1,30005154,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(380,'2015-03-14 14:56:57','2015-03-14 14:56:57',1,30000361,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(381,'2015-03-14 14:56:57','2015-08-29 14:46:05',1,30001858,0,0,1,0,0,0,0,2,1,0,0,0,0,1,1,1,0,0,0,1,3,2,1,0),(382,'2015-03-14 14:56:57','2015-03-14 14:56:57',1,30004216,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(383,'2015-03-14 14:56:57','2015-08-29 14:46:05',1,30000239,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(384,'2015-03-14 14:56:57','2015-03-14 14:56:57',1,30001785,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(385,'2015-03-14 14:56:57','2015-03-14 14:56:57',1,30001558,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(386,'2015-03-14 14:56:57','2015-08-29 14:46:05',1,30004661,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0),(387,'2015-03-14 14:56:57','2015-03-14 14:56:57',1,30001844,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(388,'2015-03-14 14:56:57','2015-03-14 14:56:57',1,30001869,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(389,'2015-03-14 14:56:57','2015-08-29 14:46:05',1,30004716,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0),(390,'2015-03-14 14:56:57','2015-08-29 14:46:05',1,30002495,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0),(391,'2015-03-14 14:56:57','2015-08-29 14:46:05',1,30003351,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,2,0,0),(392,'2015-03-14 14:56:57','2015-03-14 14:56:57',1,30000818,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(393,'2015-03-14 14:56:57','2015-03-14 14:56:57',1,30002297,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(394,'2015-03-14 14:56:57','2015-03-14 14:56:57',1,30004206,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(395,'2015-03-14 14:56:57','2015-03-14 14:56:57',1,30001201,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(396,'2015-03-14 14:56:57','2015-03-14 14:56:57',1,30000976,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(397,'2015-03-14 14:56:57','2015-03-14 14:56:57',1,30000776,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(398,'2015-03-14 14:56:57','2015-08-29 14:46:05',1,30002944,0,0,0,0,0,0,0,0,1,0,0,1,0,0,0,0,0,0,0,0,0,1,0,0),(399,'2015-03-14 14:56:57','2015-03-14 14:56:57',1,30001251,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(400,'2015-03-14 14:56:57','2015-08-29 14:46:05',1,30000455,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(401,'2015-03-14 14:56:57','2015-03-14 14:56:57',1,30002456,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(402,'2015-03-14 14:56:57','2015-03-14 14:56:57',1,30004746,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(403,'2015-03-14 14:56:57','2015-08-29 14:46:05',1,30001828,0,0,0,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(404,'2015-03-14 14:56:57','2015-08-29 14:46:05',1,30002585,0,0,0,1,0,1,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,0,0,0),(405,'2015-03-14 14:56:57','2015-03-14 14:56:57',1,30001149,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(406,'2015-03-14 14:56:57','2015-03-14 14:56:57',1,30002625,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(407,'2015-03-14 14:56:57','2015-08-29 14:46:05',1,30001300,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(408,'2015-03-14 14:56:57','2015-03-14 14:56:57',1,30001335,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(409,'2015-03-14 14:56:57','2015-03-14 14:56:57',1,30000630,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(410,'2015-03-14 14:56:57','2015-03-14 14:56:57',1,30004221,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(411,'2015-03-14 14:56:57','2015-03-14 14:56:57',1,30000415,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(412,'2015-03-14 14:56:57','2015-03-14 14:56:57',1,30001512,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(413,'2015-03-14 14:56:57','2015-08-29 14:46:05',1,30002889,0,0,0,0,0,0,0,0,0,0,0,0,0,1,2,1,0,0,0,0,0,0,0,0),(414,'2015-03-14 14:56:57','2015-08-29 14:46:05',1,30002461,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0),(415,'2015-03-14 14:56:57','2015-08-29 14:46:05',1,30004736,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,2,0,0,0,0,0),(416,'2015-03-14 14:56:57','2015-03-14 14:56:57',1,30001940,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(417,'2015-03-14 14:56:57','2015-03-14 14:56:57',1,30004673,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(418,'2015-03-14 14:56:57','2015-03-14 14:56:57',1,30000646,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(419,'2015-03-14 14:56:57','2015-08-29 14:46:05',1,30004391,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0),(420,'2015-03-14 14:56:57','2015-03-14 14:56:57',1,30000762,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(421,'2015-03-14 14:56:57','2015-03-14 14:56:57',1,30004166,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(422,'2015-03-14 14:56:57','2015-08-29 14:46:05',1,30004789,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0),(423,'2015-03-14 14:56:57','2015-03-14 14:56:57',1,30003310,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(424,'2015-03-14 14:56:57','2015-03-14 14:56:57',1,30003214,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(425,'2015-03-14 14:56:57','2015-03-14 14:56:57',1,30003111,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(426,'2015-03-14 14:56:57','2015-08-29 14:46:05',1,30001972,0,0,0,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(427,'2015-03-14 14:56:57','2015-03-14 14:56:57',1,30001101,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(428,'2015-03-14 14:56:57','2015-08-29 14:46:05',1,30004774,0,0,0,0,0,0,0,0,0,0,0,0,0,2,2,0,0,0,0,0,0,0,0,0),(429,'2015-03-14 14:56:57','2015-08-29 14:46:05',1,30004670,0,0,0,0,0,0,0,0,0,2,2,0,0,0,0,0,0,0,0,0,0,0,0,0),(430,'2015-03-14 14:56:57','2015-08-29 14:46:05',1,30004573,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,0,0,0),(431,'2015-03-14 14:56:57','2015-03-14 14:56:57',1,30003290,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(432,'2015-03-14 14:56:57','2015-08-29 14:46:05',1,30003321,1,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(433,'2015-03-14 14:56:57','2015-03-14 14:56:57',1,30003267,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(434,'2015-03-14 14:56:57','2015-03-14 14:56:57',1,30004412,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(435,'2015-03-14 14:56:57','2015-08-29 14:46:05',1,30004455,0,2,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(436,'2015-03-14 14:56:57','2015-08-29 14:46:05',1,30004039,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(437,'2015-03-14 14:56:57','2015-03-14 14:56:57',1,30000705,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(438,'2015-03-14 14:56:57','2015-08-29 14:46:05',1,30001241,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,1,0),(439,'2015-03-14 14:56:57','2015-03-14 14:56:57',1,30004865,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(440,'2015-03-14 14:56:57','2015-03-14 14:56:57',1,30003630,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(441,'2015-03-14 14:56:57','2015-03-14 14:56:57',1,30004374,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(442,'2015-03-14 14:56:57','2015-03-14 14:56:57',1,30001478,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(443,'2015-03-14 14:56:57','2015-03-14 14:56:57',1,30003302,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(444,'2015-03-14 14:56:57','2015-08-29 14:46:05',1,30005151,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0),(445,'2015-03-14 14:56:57','2015-08-29 14:46:05',1,30002883,0,0,0,0,0,0,0,0,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,0),(446,'2015-03-14 14:56:57','2015-03-14 14:56:57',1,30003346,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(447,'2015-03-14 14:56:57','2015-03-14 14:56:57',1,30001641,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(448,'2015-03-14 14:56:57','2015-03-14 14:56:57',1,30000912,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(449,'2015-03-14 14:56:57','2015-03-14 14:56:57',1,30003354,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(450,'2015-03-14 14:56:57','2015-08-29 14:46:05',1,30000453,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,0,0,0,0),(451,'2015-03-14 14:56:57','2015-03-14 14:56:57',1,30004344,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(452,'2015-03-14 14:56:57','2015-08-29 14:46:05',1,30000989,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0),(453,'2015-03-14 14:56:57','2015-03-14 14:56:57',1,30002480,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(454,'2015-03-14 14:56:57','2015-03-14 14:56:57',1,30001480,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(455,'2015-03-14 14:56:57','2015-03-14 14:56:57',1,30000908,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(456,'2015-03-14 14:56:57','2015-03-14 14:56:57',1,30004643,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(457,'2015-03-14 14:56:57','2015-03-14 14:56:57',1,30003350,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(458,'2015-03-14 14:56:57','2015-03-14 14:56:57',1,30001850,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(459,'2015-03-14 14:56:57','2015-08-29 14:46:05',1,30004212,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0),(460,'2015-03-14 14:56:57','2015-03-14 14:56:57',1,30004675,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(461,'2015-03-14 14:56:57','2015-03-14 14:56:57',1,30001104,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(462,'2015-03-14 14:56:57','2015-03-14 14:56:57',1,30004761,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(463,'2015-03-14 14:56:57','2015-03-14 14:56:57',1,30000844,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(464,'2015-03-14 14:56:57','2015-03-14 14:56:57',1,30000562,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(465,'2015-03-14 14:56:57','2015-08-29 14:46:05',1,30000554,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(466,'2015-03-14 14:56:57','2015-03-14 14:56:57',1,30004168,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(467,'2015-03-14 14:56:57','2015-03-14 14:56:57',1,30001014,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(468,'2015-03-14 14:56:57','2015-03-14 14:56:57',1,30004175,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(469,'2015-03-14 14:56:57','2015-08-29 14:46:05',1,30004193,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(470,'2015-03-14 14:56:57','2015-03-14 14:56:57',1,30004445,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(471,'2015-03-14 14:56:57','2015-03-14 14:56:57',1,30000637,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(472,'2015-03-14 14:56:57','2015-03-14 14:56:57',1,30002501,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(473,'2015-03-14 14:56:57','2015-08-29 14:46:05',1,30000992,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(474,'2015-03-14 14:56:57','2015-03-14 14:56:57',1,30002591,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(475,'2015-03-14 14:56:57','2015-03-14 14:56:57',1,30000581,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(476,'2015-03-14 14:56:57','2015-03-14 14:56:57',1,30004185,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(477,'2015-03-14 14:56:57','2015-03-14 14:56:57',1,30000820,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(478,'2015-03-14 14:56:57','2015-03-14 14:56:57',1,30003720,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(479,'2015-03-14 14:56:57','2015-08-29 14:46:05',1,30002291,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,6,0,0,0),(480,'2015-03-14 14:56:57','2015-03-14 14:56:57',1,30001951,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(481,'2015-03-14 14:56:57','2015-03-14 14:56:57',1,30000442,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(482,'2015-03-14 14:56:57','2015-03-14 14:56:57',1,30003223,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(483,'2015-03-14 14:56:57','2015-08-29 14:46:05',1,30003738,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,1,1,0,0,0),(484,'2015-03-14 14:56:57','2015-08-29 14:46:05',1,30003348,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0),(485,'2015-03-14 14:56:57','2015-03-14 14:56:57',1,30001532,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(486,'2015-03-14 14:56:57','2015-08-29 14:46:05',1,30004345,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0),(487,'2015-03-14 14:56:57','2015-03-14 14:56:57',1,30000741,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(488,'2015-03-14 14:56:57','2015-03-14 14:56:57',1,30000609,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(489,'2015-03-14 14:56:57','2015-08-29 14:46:05',1,30000468,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(490,'2015-03-14 14:56:57','2015-08-29 14:46:05',1,30004477,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0),(491,'2015-03-14 14:56:57','2015-08-29 14:46:05',1,30000564,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(492,'2015-03-14 14:56:57','2015-03-14 14:56:57',1,30004067,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(493,'2015-03-14 14:56:57','2015-03-14 14:56:57',1,30002950,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(494,'2015-03-14 14:56:57','2015-03-14 14:56:57',1,30005115,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(495,'2015-03-14 14:56:57','2015-08-29 14:46:05',1,30000299,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,2,0,0,0,0),(496,'2015-03-14 14:56:57','2015-03-14 14:56:57',1,30002313,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(497,'2015-03-14 14:56:57','2015-03-14 14:56:57',1,30004008,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(498,'2015-03-14 14:56:57','2015-08-29 14:46:05',1,30005152,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0),(499,'2015-03-14 14:56:57','2015-03-14 14:56:57',1,30001626,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(500,'2015-03-14 14:56:57','2015-08-29 14:46:05',1,30002927,0,11,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(501,'2015-03-14 14:56:57','2015-03-14 14:56:57',1,30004508,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(502,'2015-03-14 14:56:57','2015-03-14 14:56:57',1,30004432,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(503,'2015-03-14 14:56:57','2015-03-14 14:56:57',1,30000218,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(504,'2015-03-14 14:56:57','2015-08-29 14:46:05',1,30005110,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(505,'2015-03-14 14:56:57','2015-08-29 14:46:05',1,30002005,1,4,2,0,0,1,1,1,0,0,0,0,1,0,1,1,5,1,1,0,1,1,1,0),(506,'2015-03-14 14:56:57','2015-03-14 14:56:57',1,30005111,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(507,'2015-03-14 14:56:57','2015-03-14 14:56:57',1,30001503,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(508,'2015-03-14 14:56:57','2015-03-14 14:56:57',1,30004053,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(509,'2015-03-14 14:56:57','2015-08-29 14:46:05',1,30005114,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,0,0,0),(510,'2015-03-14 14:56:57','2015-03-14 14:56:57',1,30003640,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(511,'2015-03-14 14:56:57','2015-08-29 14:46:05',1,30003280,1,1,0,1,0,0,0,0,5,3,0,1,4,0,0,0,1,1,4,1,0,1,1,0),(512,'2015-03-14 14:56:57','2015-03-14 14:56:57',1,30004486,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(513,'2015-03-14 14:56:57','2015-03-14 14:56:57',1,30000706,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(514,'2015-03-14 14:56:57','2015-03-14 14:56:57',1,30001759,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(515,'2015-03-14 14:56:57','2015-03-14 14:56:57',1,30001603,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(516,'2015-03-14 14:56:57','2015-08-29 14:46:05',1,30002167,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,2,0,0,0,0),(517,'2015-03-14 14:56:57','2015-08-29 14:46:05',1,30004810,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(518,'2015-03-14 14:56:57','2015-03-14 14:56:57',1,30001167,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(519,'2015-03-14 14:56:57','2015-03-14 14:56:57',1,30000728,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(520,'2015-03-14 14:56:57','2015-08-29 14:46:05',1,30000557,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,0,0,0,0,0,0),(521,'2015-03-14 14:56:57','2015-03-14 14:56:57',1,30001184,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(522,'2015-03-14 14:56:57','2015-03-14 14:56:57',1,30001492,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(523,'2015-03-14 14:56:57','2015-03-14 14:56:57',1,30004347,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(524,'2015-03-14 14:56:57','2015-08-29 14:46:05',1,30003745,1,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,1,2,0,0,0),(525,'2015-03-14 14:56:57','2015-03-14 14:56:57',1,30001488,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(526,'2015-03-14 14:56:57','2015-03-14 14:56:57',1,30003145,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(527,'2015-03-14 14:56:57','2015-03-14 14:56:57',1,30003316,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(528,'2015-03-14 14:56:57','2015-08-29 14:46:05',1,30001111,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(529,'2015-03-14 14:56:57','2015-03-14 14:56:57',1,30003956,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(530,'2015-03-14 14:56:57','2015-03-14 14:56:57',1,30003315,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(531,'2015-03-14 14:56:57','2015-03-14 14:56:57',1,30000513,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(532,'2015-03-14 14:56:57','2015-03-14 14:56:57',1,30001092,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(533,'2015-03-14 14:56:57','2015-03-14 14:56:57',1,30001317,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(534,'2015-03-14 14:56:57','2015-03-14 14:56:57',1,30004923,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(535,'2015-03-14 14:56:57','2015-08-29 14:46:05',1,30000289,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(536,'2015-03-14 14:56:57','2015-03-14 14:56:57',1,30000985,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(537,'2015-03-14 14:56:57','2015-03-14 14:56:57',1,30004604,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(538,'2015-03-14 14:56:57','2015-03-14 14:56:57',1,30000791,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(539,'2015-03-14 14:56:57','2015-08-29 14:46:05',1,30002593,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,1,0,0),(540,'2015-03-14 14:56:57','2015-03-14 14:56:57',1,30001624,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(541,'2015-03-14 14:56:57','2015-03-14 14:56:57',1,30001134,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(542,'2015-03-14 14:56:57','2015-03-14 14:56:57',1,30002623,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(543,'2015-03-14 14:56:57','2015-03-14 14:56:57',1,30000764,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(544,'2015-03-14 14:56:57','2015-03-14 14:56:57',1,30000371,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(545,'2015-03-14 14:56:57','2015-08-29 14:46:05',1,30001257,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,1,1,0,0,0,0,0,0),(546,'2015-03-14 14:56:57','2015-08-29 14:46:05',1,30003270,0,0,1,0,0,1,0,0,0,1,1,0,0,1,0,0,0,0,0,0,1,0,0,0),(547,'2015-03-14 14:56:57','2015-03-14 14:56:57',1,30002619,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(548,'2015-03-14 14:56:57','2015-03-14 14:56:57',1,30000907,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(549,'2015-03-14 14:56:57','2015-03-14 14:56:57',1,30003139,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(550,'2015-03-14 14:56:57','2015-03-14 14:56:57',1,30004591,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(551,'2015-03-14 14:56:57','2015-03-14 14:56:57',1,30000402,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(552,'2015-03-14 14:56:57','2015-08-29 14:46:05',1,30002855,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,0,0,0,0),(553,'2015-03-14 14:56:57','2015-08-29 14:46:05',1,30002025,2,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0),(554,'2015-03-14 14:56:57','2015-08-29 14:46:05',1,30002459,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(555,'2015-03-14 14:56:57','2015-08-29 14:46:05',1,30001290,0,0,2,0,0,0,0,1,0,0,0,0,0,0,0,0,0,1,1,1,0,0,0,0),(556,'2015-03-14 14:56:57','2015-08-29 14:46:05',1,30004442,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0),(557,'2015-03-14 14:56:57','2015-03-14 14:56:57',1,30004073,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(558,'2015-03-14 14:56:57','2015-03-14 14:56:57',1,30000457,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(559,'2015-03-14 14:56:57','2015-03-14 14:56:57',1,30003648,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(560,'2015-03-14 14:56:57','2015-08-29 14:46:05',1,30004740,0,0,0,0,0,1,0,0,3,1,1,0,3,1,0,0,0,1,0,6,0,0,2,0),(561,'2015-03-14 14:56:57','2015-03-14 14:56:57',1,30005128,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(562,'2015-03-14 14:56:57','2015-03-14 14:56:57',1,30000364,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(563,'2015-03-14 14:56:57','2015-08-29 14:46:05',1,30001930,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(564,'2015-03-14 14:56:57','2015-03-14 14:56:57',1,30003303,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(565,'2015-03-14 14:56:57','2015-08-29 14:46:05',1,30004070,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0),(566,'2015-03-14 14:56:57','2015-08-29 14:46:05',1,30002446,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0),(567,'2015-03-14 14:56:57','2015-03-14 14:56:57',1,30003179,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(568,'2015-03-14 14:56:57','2015-03-14 14:56:57',1,30004908,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(569,'2015-03-14 14:56:57','2015-03-14 14:56:57',1,30001545,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(570,'2015-03-14 14:56:57','2015-03-14 14:56:57',1,30003210,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(571,'2015-03-14 14:56:57','2015-03-14 14:56:57',1,30001339,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(572,'2015-03-14 14:56:57','2015-03-14 14:56:57',1,30001067,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(573,'2015-03-14 14:56:57','2015-03-14 14:56:57',1,30002832,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(574,'2015-03-14 14:56:57','2015-08-29 14:46:05',1,30004608,0,0,0,0,0,0,0,1,0,0,0,1,2,0,0,1,0,1,1,1,0,0,0,0),(575,'2015-03-14 14:56:57','2015-03-14 14:56:57',1,30001574,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(576,'2015-03-14 14:56:57','2015-03-14 14:56:57',1,30001276,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(577,'2015-03-14 14:56:57','2015-08-29 14:46:05',1,30000967,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0),(578,'2015-03-14 14:56:57','2015-03-14 14:56:57',1,30000258,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(579,'2015-03-14 14:56:57','2015-08-29 14:46:05',1,30001197,1,2,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0),(580,'2015-03-14 14:56:57','2015-08-29 14:46:05',1,30001907,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0),(581,'2015-03-14 14:56:57','2015-03-14 14:56:57',1,30000297,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(582,'2015-03-14 14:56:57','2015-03-14 14:56:57',1,30002465,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(583,'2015-03-14 14:56:57','2015-03-14 14:56:57',1,30004792,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(584,'2015-03-14 14:56:57','2015-03-14 14:56:57',1,30004057,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(585,'2015-03-14 14:56:57','2015-03-14 14:56:57',1,30001328,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(586,'2015-03-14 14:56:57','2015-03-14 14:56:57',1,30001075,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(587,'2015-03-14 14:56:57','2015-03-14 14:56:57',1,30004525,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(588,'2015-03-14 14:56:57','2015-08-29 14:46:05',1,30004925,0,0,0,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(589,'2015-03-14 14:56:57','2015-03-14 14:56:57',1,30004585,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(590,'2015-03-14 14:56:57','2015-03-14 14:56:57',1,30001608,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(591,'2015-03-14 14:56:57','2015-03-14 14:56:57',1,30000525,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(592,'2015-03-14 14:56:57','2015-03-14 14:56:57',1,30000919,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(593,'2015-03-14 14:56:57','2015-08-29 14:46:05',1,30000759,0,0,0,0,0,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(594,'2015-03-14 14:56:57','2015-03-14 14:56:57',1,30000224,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(595,'2015-03-14 14:56:57','2015-08-29 14:46:05',1,30004790,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0),(596,'2015-03-14 14:56:57','2015-08-29 14:46:05',1,30000487,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,0,0,0,0),(597,'2015-03-14 14:56:57','2015-03-14 14:56:57',1,30000287,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(598,'2015-03-14 14:56:57','2015-03-14 14:56:57',1,30001588,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(599,'2015-03-14 14:56:57','2015-08-29 14:46:05',1,30000217,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(600,'2015-03-14 14:56:57','2015-03-14 14:56:57',1,30003217,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(601,'2015-03-14 14:56:57','2015-03-14 14:56:57',1,30001884,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(602,'2015-03-14 14:56:57','2015-08-29 14:46:05',1,30001057,0,0,0,0,0,0,0,0,0,2,3,1,0,0,0,0,0,0,0,0,0,0,0,0),(603,'2015-03-14 14:56:57','2015-03-14 14:56:57',1,30002158,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(604,'2015-03-14 14:56:57','2015-03-14 14:56:57',1,30000726,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(605,'2015-03-14 14:56:57','2015-03-14 14:56:57',1,30004893,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(606,'2015-03-14 14:56:57','2015-03-14 14:56:57',1,30002848,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(607,'2015-03-14 14:56:57','2015-08-29 14:46:05',1,30000787,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(608,'2015-03-14 14:56:57','2015-03-14 14:56:57',1,30000333,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(609,'2015-03-14 14:56:57','2015-03-14 14:56:57',1,30000827,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(610,'2015-03-14 14:56:57','2015-08-29 14:46:05',1,30004429,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(611,'2015-03-14 14:56:57','2015-08-29 14:46:05',1,30004620,0,0,0,0,0,0,0,0,0,0,0,4,0,0,0,0,2,0,0,0,0,1,2,0),(612,'2015-03-14 14:56:57','2015-08-29 14:46:05',1,30004045,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,1,0,0),(613,'2015-03-14 14:56:57','2015-08-29 14:46:05',1,30000483,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0),(614,'2015-03-14 14:56:57','2015-08-29 14:46:05',1,30000773,0,0,0,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(615,'2015-03-14 14:56:57','2015-03-14 14:56:57',1,30004816,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(616,'2015-03-14 14:56:57','2015-08-29 14:46:05',1,30002125,0,2,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(617,'2015-03-14 14:56:57','2015-03-14 14:56:57',1,30005145,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(618,'2015-03-14 14:56:57','2015-03-14 14:56:57',1,30001639,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(619,'2015-03-14 14:56:57','2015-03-14 14:56:57',1,30004635,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(620,'2015-03-14 14:56:57','2015-08-29 14:46:05',1,30004616,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,2,0,0,0,0),(621,'2015-03-14 14:56:57','2015-03-14 14:56:57',1,30000360,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(622,'2015-03-14 14:56:57','2015-03-14 14:56:57',1,30002046,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(623,'2015-03-14 14:56:57','2015-03-14 14:56:57',1,30003671,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(624,'2015-03-14 14:56:57','2015-08-29 14:46:05',1,30000840,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0),(625,'2015-03-14 14:56:57','2015-08-29 14:46:05',1,30001817,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0),(626,'2015-03-14 14:56:57','2015-03-14 14:56:57',1,30000323,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(627,'2015-03-14 14:56:57','2015-03-14 14:56:57',1,30004768,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(628,'2015-03-14 14:56:57','2015-03-14 14:56:57',1,30003948,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(629,'2015-03-14 14:56:57','2015-03-14 14:56:57',1,30001457,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(630,'2015-03-14 14:56:57','2015-03-14 14:56:57',1,30000955,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(631,'2015-03-14 14:56:57','2015-03-14 14:56:57',1,30005176,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(632,'2015-03-14 14:56:57','2015-03-14 14:56:57',1,30000606,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(633,'2015-03-14 14:56:57','2015-03-14 14:56:57',1,30004872,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(634,'2015-03-14 14:56:57','2015-03-14 14:56:57',1,30000745,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(635,'2015-03-14 14:56:57','2015-03-14 14:56:57',1,30004926,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(636,'2015-03-14 14:56:57','2015-08-29 14:46:05',1,30001218,0,0,0,0,0,0,0,0,2,1,1,0,1,1,1,3,0,0,0,0,0,1,0,0),(637,'2015-03-14 14:56:57','2015-03-14 14:56:57',1,30000383,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(638,'2015-03-14 14:56:57','2015-03-14 14:56:57',1,30005138,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(639,'2015-03-14 14:56:57','2015-03-14 14:56:57',1,30004860,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(640,'2015-03-14 14:56:57','2015-08-29 14:46:05',1,30001232,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,2,0,2,0,0,0,0,0),(641,'2015-03-14 14:56:57','2015-03-14 14:56:57',1,30005146,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(642,'2015-03-14 14:56:57','2015-03-14 14:56:57',1,30000353,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(643,'2015-03-14 14:56:57','2015-08-29 14:46:05',1,30003165,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,1,0,0,0,0,0,0,0),(644,'2015-03-14 14:56:57','2015-08-29 14:46:05',1,30000943,7,0,0,0,0,0,0,0,3,4,6,2,0,3,2,0,2,0,0,8,3,1,6,0),(645,'2015-03-14 14:56:57','2015-03-14 14:56:57',1,30001845,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(646,'2015-03-14 14:56:57','2015-08-29 14:46:05',1,30002016,0,16,3,3,5,22,0,0,0,0,0,0,0,0,0,0,0,0,0,2,0,1,2,0),(647,'2015-03-14 14:56:57','2015-03-14 14:56:57',1,30001141,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(648,'2015-03-14 14:56:57','2015-03-14 14:56:57',1,30002929,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(649,'2015-03-14 14:56:57','2015-08-29 14:46:05',1,30004788,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,0,0,0,0),(650,'2015-03-14 14:56:57','2015-08-29 14:46:05',1,30003945,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(651,'2015-03-14 14:56:57','2015-03-14 14:56:57',1,30004587,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(652,'2015-03-14 14:56:57','2015-03-14 14:56:57',1,30002031,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(653,'2015-03-14 14:56:57','2015-08-29 14:46:05',1,30002177,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0),(654,'2015-03-14 14:56:57','2015-03-14 14:56:57',1,30003778,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(655,'2015-03-14 14:56:57','2015-03-14 14:56:57',1,30001071,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(656,'2015-03-14 14:56:57','2015-03-14 14:56:57',1,30004351,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(657,'2015-03-14 14:56:57','2015-03-14 14:56:57',1,30004869,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(658,'2015-03-14 14:56:57','2015-03-14 14:56:57',1,30001768,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(659,'2015-03-14 14:56:57','2015-03-14 14:56:57',1,30004862,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(660,'2015-03-14 14:56:57','2015-03-14 14:56:57',1,30000614,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(661,'2015-03-14 14:56:57','2015-03-14 14:56:57',1,30004001,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(662,'2015-03-14 14:56:57','2015-03-14 14:56:57',1,30003282,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(663,'2015-03-14 14:56:57','2015-03-14 14:56:57',1,30002484,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(664,'2015-03-14 14:56:57','2015-03-14 14:56:57',1,30002293,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(665,'2015-03-14 14:56:57','2015-03-14 14:56:57',1,30000542,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(666,'2015-03-14 14:56:57','2015-03-14 14:56:57',1,30000334,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(667,'2015-03-14 14:56:57','2015-08-29 14:46:05',1,30003985,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0),(668,'2015-03-14 14:56:57','2015-03-14 14:56:57',1,30000628,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(669,'2015-03-14 14:56:57','2015-03-14 14:56:57',1,30000312,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(670,'2015-03-14 14:56:57','2015-03-14 14:56:57',1,30001514,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(671,'2015-03-14 14:56:57','2015-03-14 14:56:57',1,30001627,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(672,'2015-03-14 14:56:57','2015-08-29 14:46:05',1,30000648,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,1,0,0,0,0,0,0,0,0),(673,'2015-03-14 14:56:57','2015-03-14 14:56:57',1,30000775,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(674,'2015-03-14 14:56:57','2015-03-14 14:56:57',1,30004025,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(675,'2015-03-14 14:56:57','2015-08-29 14:46:05',1,30001745,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0),(676,'2015-03-14 14:56:57','2015-03-14 14:56:57',1,30003189,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(677,'2015-03-14 14:56:57','2015-08-29 14:46:05',1,30002924,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0),(678,'2015-03-14 14:56:57','2015-03-14 14:56:57',1,30001132,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(679,'2015-03-14 14:56:57','2015-08-29 14:46:05',1,30002885,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0),(680,'2015-03-14 14:56:57','2015-03-14 14:56:57',1,30004190,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(681,'2015-03-14 14:56:57','2015-08-29 14:46:05',1,30004640,0,0,0,0,0,0,0,0,1,3,2,0,1,0,1,1,0,0,0,0,0,0,1,0),(682,'2015-03-14 14:56:57','2015-03-14 14:56:57',1,30000770,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(683,'2015-03-14 14:56:57','2015-03-14 14:56:57',1,30002346,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(684,'2015-03-14 14:56:57','2015-03-14 14:56:57',1,30002314,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(685,'2015-03-14 14:56:57','2015-03-14 14:56:57',1,30001053,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(686,'2015-03-14 14:56:57','2015-08-29 14:46:05',1,30001219,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0),(687,'2015-03-14 14:56:57','2015-03-14 14:56:57',1,30005164,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(688,'2015-03-14 14:56:57','2015-08-29 14:46:05',1,30003974,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0),(689,'2015-03-14 14:56:57','2015-03-14 14:56:57',1,30003771,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(690,'2015-03-14 14:56:57','2015-03-14 14:56:57',1,30001144,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(691,'2015-03-14 14:56:57','2015-03-14 14:56:57',1,30001298,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(692,'2015-03-14 14:56:57','2015-03-14 14:56:57',1,30000731,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(693,'2015-03-14 14:56:57','2015-03-14 14:56:57',1,30000910,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(694,'2015-03-14 14:56:57','2015-08-29 14:46:05',1,30000748,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(695,'2015-03-14 14:56:57','2015-08-29 14:46:05',1,30004574,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(696,'2015-03-14 14:56:57','2015-03-14 14:56:57',1,30004781,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(697,'2015-03-14 14:56:57','2015-03-14 14:56:57',1,30000494,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(698,'2015-03-14 14:56:57','2015-03-14 14:56:57',1,30000771,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(699,'2015-03-14 14:56:57','2015-08-29 14:46:05',1,30001017,5,5,2,1,1,5,4,2,4,1,0,0,1,0,1,1,0,2,5,1,0,0,0,0),(700,'2015-03-14 14:56:57','2015-03-14 14:56:57',1,30001776,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(701,'2015-03-14 14:56:57','2015-08-29 14:46:05',1,30002354,1,0,0,0,0,0,0,0,0,2,1,0,0,0,0,0,1,0,0,0,1,0,0,0),(702,'2015-03-14 14:56:57','2015-08-29 14:46:05',1,30001887,0,0,0,0,0,0,0,0,0,2,1,0,0,0,0,1,0,0,0,0,2,0,0,0),(703,'2015-03-14 14:56:57','2015-03-14 14:56:57',1,30004942,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(704,'2015-03-14 14:56:57','2015-08-29 14:46:05',1,30002442,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(705,'2015-03-14 14:56:57','2015-03-14 14:56:57',1,30000391,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(706,'2015-03-14 14:56:57','2015-08-29 14:46:05',1,30001879,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0),(707,'2015-03-14 14:56:57','2015-08-29 14:46:05',1,30000652,0,0,0,0,0,0,0,0,0,0,0,0,0,2,0,0,0,0,0,0,0,0,0,0),(708,'2015-03-14 14:56:57','2015-03-14 14:56:57',1,30001561,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(709,'2015-03-14 14:56:57','2015-08-29 14:46:05',1,30003750,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,88,0,0,1,0),(710,'2015-03-14 14:56:57','2015-08-29 14:46:05',1,30000697,0,0,0,0,0,0,0,0,1,1,0,0,0,0,1,1,0,0,0,2,0,0,0,0),(711,'2015-03-14 14:56:57','2015-03-14 14:56:57',1,30004681,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(712,'2015-03-14 14:56:57','2015-08-29 14:46:05',1,30003702,0,0,1,1,1,1,0,0,0,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0),(713,'2015-03-14 14:56:57','2015-08-29 14:46:05',1,30004012,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(714,'2015-03-14 14:56:57','2015-08-29 14:46:05',1,30004056,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(715,'2015-03-14 14:56:57','2015-03-14 14:56:57',1,30001805,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(716,'2015-03-14 14:56:57','2015-08-29 14:46:05',1,30004771,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0),(717,'2015-03-14 14:56:57','2015-03-14 14:56:57',1,30001523,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(718,'2015-03-14 14:56:57','2015-08-29 14:46:05',1,30002004,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0),(719,'2015-03-14 14:56:57','2015-03-14 14:56:57',1,30002930,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(720,'2015-03-14 14:56:57','2015-08-29 14:46:05',1,30000242,0,0,0,2,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0),(721,'2015-03-14 14:56:57','2015-03-14 14:56:57',1,30001614,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(722,'2015-03-14 14:56:57','2015-08-29 14:46:05',1,30003320,0,0,1,0,0,0,0,0,0,3,0,3,5,0,1,1,0,0,0,0,0,0,0,0),(723,'2015-03-14 14:56:57','2015-08-29 14:46:05',1,30003695,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0),(724,'2015-03-14 14:56:57','2015-03-14 14:56:57',1,30004760,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(725,'2015-03-14 14:56:57','2015-03-14 14:56:57',1,30002171,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(726,'2015-03-14 14:56:57','2015-08-29 14:46:05',1,30000942,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,3,2,0,0,0),(727,'2015-03-14 14:56:57','2015-08-29 14:46:05',1,30001877,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0),(728,'2015-03-14 14:56:57','2015-03-14 14:56:57',1,30000469,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(729,'2015-03-14 14:56:57','2015-03-14 14:56:57',1,30002868,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(730,'2015-03-14 14:56:57','2015-08-29 14:46:05',1,30001273,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,1,0),(731,'2015-03-14 14:56:57','2015-03-14 14:56:57',1,30000939,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(732,'2015-03-14 14:56:57','2015-08-29 14:46:05',1,30004059,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0),(733,'2015-03-14 14:56:57','2015-03-14 14:56:57',1,30004219,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(734,'2015-03-14 14:56:57','2015-08-29 14:46:05',1,30001279,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(735,'2015-03-14 14:56:57','2015-08-29 14:46:05',1,30001166,0,0,0,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0),(736,'2015-03-14 14:56:57','2015-08-29 14:46:05',1,30004879,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0),(737,'2015-03-14 14:56:57','2015-08-29 14:46:05',1,30004397,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0),(738,'2015-03-14 14:56:57','2015-03-14 14:56:57',1,30001600,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(739,'2015-03-14 14:56:57','2015-03-14 14:56:57',1,30001484,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(740,'2015-03-14 14:56:57','2015-08-29 14:46:05',1,30005148,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(741,'2015-03-14 14:56:57','2015-08-29 14:46:05',1,30003704,0,0,0,0,0,0,0,0,0,0,0,0,3,1,1,0,0,0,0,1,1,0,0,0),(742,'2015-03-14 14:56:57','2015-03-14 14:56:57',1,30000318,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(743,'2015-03-14 14:56:57','2015-03-14 14:56:57',1,30003961,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(744,'2015-03-14 14:56:57','2015-08-29 14:46:05',1,30002590,0,0,0,0,0,0,0,0,4,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0),(745,'2015-03-14 14:56:57','2015-03-14 14:56:57',1,30002450,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(746,'2015-03-14 14:56:57','2015-08-29 14:46:05',1,30004826,0,0,0,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(747,'2015-03-14 14:56:57','2015-03-14 14:56:57',1,30000454,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(748,'2015-03-14 14:56:57','2015-08-29 14:46:05',1,30001266,0,0,0,0,0,0,0,0,0,0,0,1,0,1,4,6,1,0,0,0,0,5,0,0),(749,'2015-03-14 14:56:57','2015-08-29 14:46:05',1,30004557,0,0,0,0,0,0,0,0,1,1,0,0,0,1,1,0,0,0,0,0,0,1,0,0),(750,'2015-03-14 14:56:57','2015-03-14 14:56:57',1,30004201,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(751,'2015-03-14 14:56:57','2015-03-14 14:56:57',1,30002159,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(752,'2015-03-14 14:56:57','2015-03-14 14:56:57',1,30005168,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(753,'2015-03-14 14:56:57','2015-03-14 14:56:57',1,30004409,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(754,'2015-03-14 14:56:57','2015-08-29 14:46:05',1,30001814,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0),(755,'2015-03-14 14:56:57','2015-03-14 14:56:57',1,30001609,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(756,'2015-03-14 14:56:57','2015-03-14 14:56:57',1,30003253,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(757,'2015-03-14 14:56:57','2015-03-14 14:56:57',1,30000994,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(758,'2015-03-14 14:56:57','2015-03-14 14:56:57',1,30001312,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(759,'2015-03-14 14:56:57','2015-03-14 14:56:57',1,30001284,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(760,'2015-03-14 14:56:57','2015-08-29 14:46:05',1,30001990,0,0,1,3,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(761,'2015-03-14 14:56:57','2015-08-29 14:46:05',1,30002895,0,0,0,0,0,0,0,0,0,0,0,0,2,0,0,0,0,2,0,3,9,0,0,0),(762,'2015-03-14 14:56:57','2015-03-14 14:56:57',1,30002131,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(763,'2015-03-14 14:56:57','2015-03-14 14:56:57',1,30000271,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(764,'2015-03-14 14:56:57','2015-08-29 14:46:05',1,30005130,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0),(765,'2015-03-14 14:56:57','2015-08-29 14:46:05',1,30003301,0,3,0,0,0,3,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(766,'2015-03-14 14:56:57','2015-03-14 14:56:57',1,30000392,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(767,'2015-03-14 14:56:57','2015-03-14 14:56:57',1,30003373,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(768,'2015-03-14 14:56:57','2015-08-29 14:46:05',1,30004914,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(769,'2015-03-14 14:56:57','2015-03-14 14:56:57',1,30000616,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(770,'2015-03-14 14:56:57','2015-03-14 14:56:57',1,30000724,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(771,'2015-03-14 14:56:57','2015-03-14 14:56:57',1,30003979,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(772,'2015-03-14 14:56:57','2015-03-14 14:56:57',1,30002949,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(773,'2015-03-14 14:56:57','2015-03-14 14:56:57',1,30004629,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(774,'2015-03-14 14:56:57','2015-03-14 14:56:57',1,30004646,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(775,'2015-03-14 14:56:57','2015-03-14 14:56:57',1,30003954,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(776,'2015-03-14 14:56:57','2015-03-14 14:56:57',1,30002284,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(777,'2015-03-14 14:56:57','2015-08-29 14:46:05',1,30004366,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(778,'2015-03-14 14:56:57','2015-03-14 14:56:57',1,30001079,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(779,'2015-03-14 14:56:57','2015-03-14 14:56:57',1,30003249,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(780,'2015-03-14 14:56:57','2015-08-29 14:46:05',1,30000875,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(781,'2015-03-14 14:56:57','2015-03-14 14:56:57',1,30004796,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(782,'2015-03-14 14:56:57','2015-03-14 14:56:57',1,30003338,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(783,'2015-03-14 14:56:57','2015-08-29 14:46:05',1,30002589,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,1,0,1,0,0,0),(784,'2015-03-14 14:56:57','2015-03-14 14:56:57',1,30001306,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(785,'2015-03-14 14:56:57','2015-03-14 14:56:57',1,30005180,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(786,'2015-03-14 14:56:57','2015-03-14 14:56:57',1,30000429,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(787,'2015-03-14 14:56:57','2015-03-14 14:56:57',1,30004169,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(788,'2015-03-14 14:56:57','2015-08-29 14:46:05',1,30001154,0,0,0,0,0,0,1,7,16,3,6,3,0,3,5,3,0,3,6,11,4,11,2,0),(789,'2015-03-14 14:56:57','2015-03-14 14:56:57',1,30000723,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(790,'2015-03-14 14:56:57','2015-08-29 14:46:05',1,30004884,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0),(791,'2015-03-14 14:56:57','2015-03-14 14:56:57',1,30000399,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(792,'2015-03-14 14:56:57','2015-03-14 14:56:57',1,30000458,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(793,'2015-03-14 14:56:57','2015-03-14 14:56:57',1,30001128,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(794,'2015-03-14 14:56:57','2015-03-14 14:56:57',1,30004780,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(795,'2015-03-14 14:56:57','2015-03-14 14:56:57',1,30004582,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(796,'2015-03-14 14:56:57','2015-08-29 14:46:05',1,30001886,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0),(797,'2015-03-14 14:56:57','2015-08-29 14:46:05',1,30000800,0,0,0,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(798,'2015-03-14 14:56:57','2015-08-29 14:46:05',1,30000247,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0),(799,'2015-03-14 14:56:57','2015-03-14 14:56:57',1,30002287,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(800,'2015-03-14 14:56:57','2015-08-29 14:46:05',1,30002472,0,0,0,0,0,0,0,0,0,0,0,0,3,0,0,0,2,0,0,0,0,0,0,0),(801,'2015-03-14 14:56:57','2015-08-29 14:46:05',1,30000668,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0),(802,'2015-03-14 14:56:57','2015-03-14 14:56:57',1,30002339,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(803,'2015-03-14 14:56:57','2015-03-14 14:56:57',1,30004569,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(804,'2015-03-14 14:56:57','2015-08-29 14:46:05',1,30001840,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,1,0),(805,'2015-03-14 14:56:57','2015-03-14 14:56:57',1,30001796,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(806,'2015-03-14 14:56:57','2015-03-14 14:56:57',1,30004022,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(807,'2015-03-14 14:56:57','2015-03-14 14:56:57',1,30000883,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(808,'2015-03-14 14:56:57','2015-08-29 14:46:05',1,30000969,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,1,0,2,1,2,0),(809,'2015-03-14 14:56:57','2015-03-14 14:56:57',1,30004672,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(810,'2015-03-14 14:56:57','2015-03-14 14:56:57',1,30003341,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(811,'2015-03-14 14:56:57','2015-08-29 14:46:05',1,30001857,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,1,0),(812,'2015-03-14 14:56:57','2015-08-29 14:46:05',1,30003707,5,2,0,0,0,0,0,0,2,0,1,0,55,2,2,0,1,2,2,1,0,3,3,0),(813,'2015-03-14 14:56:57','2015-08-29 14:46:05',1,30005137,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0),(814,'2015-03-14 14:56:57','2015-03-14 14:56:57',1,30000412,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(815,'2015-03-14 14:56:57','2015-03-14 14:56:57',1,30001764,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(816,'2015-03-14 14:56:57','2015-08-29 14:46:05',1,30002618,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0),(817,'2015-03-14 14:56:57','2015-03-14 14:56:57',1,30004179,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(818,'2015-03-14 14:56:57','2015-08-29 14:46:05',1,30004619,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,0,0,0,0,0,0,0),(819,'2015-03-14 14:56:57','2015-03-14 14:56:57',1,30003650,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(820,'2015-03-14 14:56:57','2015-08-29 14:46:05',1,30003319,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,1,0),(821,'2015-03-14 14:56:57','2015-03-14 14:56:57',1,30000587,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(822,'2015-03-14 14:56:57','2015-03-14 14:56:57',1,30003977,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(823,'2015-03-14 14:56:57','2015-03-14 14:56:57',1,30004544,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(824,'2015-03-14 14:56:57','2015-03-14 14:56:57',1,30000491,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(825,'2015-03-14 14:56:57','2015-03-14 14:56:57',1,30001193,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(826,'2015-03-14 14:56:57','2015-03-14 14:56:57',1,30000702,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(827,'2015-03-14 14:56:57','2015-03-14 14:56:57',1,30001283,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(828,'2015-03-14 14:56:57','2015-08-29 14:46:05',1,30003967,0,0,0,0,0,0,0,3,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0),(829,'2015-03-14 14:56:57','2015-08-29 14:46:05',1,30000476,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0),(830,'2015-03-14 14:56:57','2015-03-14 14:56:57',1,30003100,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(831,'2015-03-14 14:56:57','2015-03-14 14:56:57',1,30000852,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(832,'2015-03-14 14:56:57','2015-03-14 14:56:57',1,30001954,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(833,'2015-03-14 14:56:57','2015-08-29 14:46:05',1,30004708,1,1,0,0,0,0,0,0,3,0,0,1,1,0,0,0,0,0,0,0,0,0,4,0),(834,'2015-03-14 14:56:57','2015-03-14 14:56:57',1,30004359,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(835,'2015-03-14 14:56:57','2015-03-14 14:56:57',1,30001870,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(836,'2015-03-14 14:56:57','2015-03-14 14:56:57',1,30004605,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(837,'2015-03-14 14:56:57','2015-08-29 14:46:05',1,30001537,0,3,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(838,'2015-03-14 14:56:57','2015-08-29 14:46:05',1,30000314,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0),(839,'2015-03-14 14:56:57','2015-03-14 14:56:57',1,30004850,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(840,'2015-03-14 14:56:57','2015-08-29 14:46:05',1,30003335,2,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(841,'2015-03-14 14:56:57','2015-03-14 14:56:57',1,30000769,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(842,'2015-03-14 14:56:57','2015-08-29 14:46:05',1,30001210,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0),(843,'2015-03-14 14:56:57','2015-03-14 14:56:57',1,30000362,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(844,'2015-03-14 14:56:57','2015-08-29 14:46:05',1,30001950,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(845,'2015-03-14 14:56:57','2015-03-14 14:56:57',1,30002836,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(846,'2015-03-14 14:56:57','2015-03-14 14:56:57',1,30003305,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(847,'2015-03-14 14:56:57','2015-03-14 14:56:57',1,30001077,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(848,'2015-03-14 14:56:57','2015-08-29 14:46:05',1,30003125,0,0,0,0,0,0,0,0,0,0,0,1,2,0,0,0,0,0,0,0,0,0,0,0),(849,'2015-03-14 14:56:57','2015-03-14 14:56:57',1,30002611,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(850,'2015-03-14 14:56:57','2015-03-14 14:56:57',1,30005167,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(851,'2015-03-14 14:56:57','2015-03-14 14:56:57',1,30003655,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(852,'2015-03-14 14:56:57','2015-08-29 14:46:05',1,30003942,1,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0),(853,'2015-03-14 14:56:57','2015-08-29 14:46:05',1,30000794,0,0,0,0,0,1,0,0,0,0,0,0,0,2,0,0,0,0,0,0,0,0,0,0),(854,'2015-03-14 14:56:57','2015-08-29 14:46:05',1,30004550,0,0,0,0,0,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(855,'2015-03-14 14:56:57','2015-08-29 14:46:05',1,30003944,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0),(856,'2015-03-14 14:56:57','2015-03-14 14:56:57',1,30000409,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(857,'2015-03-14 14:56:57','2015-03-14 14:56:57',1,30000317,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(858,'2015-03-14 14:56:57','2015-03-14 14:56:57',1,30002113,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(859,'2015-03-14 14:56:57','2015-03-14 14:56:57',1,30002952,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(860,'2015-03-14 14:56:57','2015-03-14 14:56:57',1,30001896,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(861,'2015-03-14 14:56:57','2015-08-29 14:46:05',1,30003150,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0),(862,'2015-03-14 14:56:57','2015-03-14 14:56:57',1,30004558,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(863,'2015-03-14 14:56:57','2015-03-14 14:56:57',1,30000259,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(864,'2015-03-14 14:56:57','2015-03-14 14:56:57',1,30001993,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(865,'2015-03-14 14:56:57','2015-08-29 14:46:05',1,30005092,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0),(866,'2015-03-14 14:56:57','2015-03-14 14:56:57',1,30001459,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(867,'2015-03-14 14:56:57','2015-03-14 14:56:57',1,30003331,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(868,'2015-03-14 14:56:57','2015-03-14 14:56:57',1,30004690,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(869,'2015-03-14 14:56:57','2015-03-14 14:56:57',1,30001285,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(870,'2015-03-14 14:56:57','2015-08-29 14:46:05',1,30001396,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(871,'2015-03-14 14:56:57','2015-03-14 14:56:57',1,30001022,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(872,'2015-03-14 14:56:57','2015-03-14 14:56:57',1,30003293,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(873,'2015-03-14 14:56:57','2015-03-14 14:56:57',1,30000914,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(874,'2015-03-14 14:56:57','2015-03-14 14:56:57',1,30000147,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(875,'2015-03-14 14:56:57','2015-03-14 14:56:57',1,30001694,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(876,'2015-03-14 14:56:57','2015-03-14 14:56:57',1,30003512,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(877,'2015-03-14 14:56:57','2015-03-14 14:56:57',1,30004090,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(878,'2015-03-14 14:56:57','2015-03-14 14:56:57',1,30005062,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(879,'2015-03-14 14:56:57','2015-03-14 14:56:57',1,30004831,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(880,'2015-03-14 14:56:57','2015-03-14 14:56:57',1,30002713,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(881,'2015-03-14 14:56:57','2015-08-29 14:46:05',1,30000105,0,0,0,0,0,0,0,0,0,0,0,0,2,0,0,0,0,1,0,0,0,0,0,0),(882,'2015-03-14 14:56:57','2015-03-14 14:56:57',1,30005254,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(883,'2015-03-14 14:56:57','2015-03-14 14:56:57',1,30013410,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(884,'2015-03-14 14:56:57','2015-08-29 14:46:05',1,30002507,0,1,1,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0),(885,'2015-03-14 14:56:57','2015-08-29 14:46:05',1,30004984,1,0,1,0,0,0,2,1,0,0,3,2,0,2,1,0,0,0,0,3,2,0,1,0),(886,'2015-03-14 14:56:57','2015-03-14 14:56:57',1,30002160,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(887,'2015-03-14 14:56:57','2015-03-14 14:56:57',1,30004563,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(888,'2015-03-14 14:56:57','2015-03-14 14:56:57',1,30005266,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(889,'2015-03-14 14:56:57','2015-03-14 14:56:57',1,30003028,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(890,'2015-03-14 14:56:57','2015-03-14 14:56:57',1,30004981,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(891,'2015-03-14 14:56:57','2015-08-29 14:46:05',1,30002478,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,6,0),(892,'2015-03-14 14:56:57','2015-03-14 14:56:57',1,30002892,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(893,'2015-03-14 14:56:57','2015-08-29 14:46:05',1,30003832,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0),(894,'2015-03-14 14:56:57','2015-08-29 14:46:05',1,30001648,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,1,0),(895,'2015-03-14 14:56:57','2015-03-14 14:56:57',1,30015305,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(896,'2015-03-14 14:56:57','2015-03-14 14:56:57',1,30001717,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(897,'2015-03-14 14:56:57','2015-03-14 14:56:57',1,30003059,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(898,'2015-03-14 14:56:57','2015-08-29 14:46:05',1,30003439,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0),(899,'2015-03-14 14:56:57','2015-03-14 14:56:57',1,30002268,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(900,'2015-03-14 14:56:57','2015-03-14 14:56:57',1,30002710,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(901,'2015-03-14 14:56:57','2015-08-29 14:46:05',1,30005003,3,0,0,0,0,1,0,1,0,1,0,0,1,2,2,0,0,2,0,1,1,1,1,0),(902,'2015-03-14 14:56:57','2015-03-14 14:56:57',1,30002704,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(903,'2015-03-14 14:56:57','2015-03-14 14:56:57',1,30005021,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(904,'2015-03-14 14:56:57','2015-03-14 14:56:57',1,30002639,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(905,'2015-03-14 14:56:57','2015-03-14 14:56:57',1,30002393,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(906,'2015-03-14 14:56:57','2015-03-14 14:56:57',1,30002383,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(907,'2015-03-14 14:56:57','2015-03-14 14:56:57',1,30002419,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(908,'2015-03-14 14:56:57','2015-03-14 14:56:57',1,30005006,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(909,'2015-03-14 14:56:57','2015-08-29 14:46:05',1,30005008,1,1,1,0,2,0,0,2,4,1,2,3,1,0,1,1,0,0,0,1,4,1,2,0),(910,'2015-03-14 14:56:57','2015-03-14 14:56:57',1,30003585,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(911,'2015-03-14 14:56:57','2015-03-14 14:56:57',1,30002729,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(912,'2015-03-14 14:56:57','2015-03-14 14:56:57',1,30002107,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(913,'2015-03-14 14:56:57','2015-08-29 14:46:05',1,30003535,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(914,'2015-03-14 14:56:57','2015-03-14 14:56:57',1,30002587,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(915,'2015-03-14 14:56:57','2015-03-14 14:56:57',1,30003903,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(916,'2015-03-14 14:56:57','2015-03-14 14:56:57',1,30004271,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(917,'2015-03-14 14:56:57','2015-03-14 14:56:57',1,30001539,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(918,'2015-03-14 14:56:57','2015-03-14 14:56:57',1,30005292,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(919,'2015-03-14 14:56:57','2015-03-14 14:56:57',1,30003600,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(920,'2015-03-14 14:56:57','2015-03-14 14:56:57',1,30000760,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(921,'2015-03-14 14:56:57','2015-03-14 14:56:57',1,30002933,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(922,'2015-03-14 14:56:57','2015-03-14 14:56:57',1,30000061,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(923,'2015-03-14 14:56:57','2015-03-14 14:56:57',1,30002220,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(924,'2015-03-14 14:56:57','2015-08-29 14:46:05',1,30003862,0,0,1,0,0,1,0,1,3,0,1,1,6,0,0,4,0,0,0,1,5,0,3,0),(925,'2015-03-14 14:56:57','2015-08-29 14:46:05',1,30003787,1,1,0,0,0,0,1,0,0,0,1,0,1,0,1,1,0,1,1,5,0,1,0,0),(926,'2015-03-14 14:56:57','2015-08-29 14:46:05',1,30002658,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0),(927,'2015-03-14 14:56:57','2015-03-14 14:56:57',1,30003404,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(928,'2015-03-14 14:56:57','2015-08-29 14:46:05',1,30004323,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0),(929,'2015-03-14 14:56:57','2015-03-14 14:56:57',1,30000691,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(930,'2015-03-14 14:56:57','2015-08-29 14:46:05',1,30002247,0,0,1,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0),(931,'2015-03-14 14:56:57','2015-03-14 14:56:57',1,30004082,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(932,'2015-03-14 14:56:57','2015-08-29 14:46:05',1,30005196,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0),(933,'2015-03-14 14:56:57','2015-03-14 14:56:57',1,30001697,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(934,'2015-03-14 14:56:57','2015-03-14 14:56:57',1,30002266,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(935,'2015-03-14 14:56:57','2015-03-14 14:56:57',1,30004279,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(936,'2015-03-14 14:56:57','2015-03-14 14:56:57',1,30001649,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(937,'2015-03-14 14:56:57','2015-03-14 14:56:57',1,30001741,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(938,'2015-03-14 14:56:57','2015-03-14 14:56:57',1,30045328,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(939,'2015-03-14 14:56:57','2015-08-29 14:46:05',1,30000125,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0),(940,'2015-03-14 14:56:57','2015-03-14 14:56:57',1,30002752,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(941,'2015-03-14 14:56:57','2015-03-14 14:56:57',1,30000933,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(942,'2015-03-14 14:56:57','2015-03-14 14:56:57',1,30003015,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(943,'2015-03-14 14:56:57','2015-03-14 14:56:57',1,30002289,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(944,'2015-03-14 14:56:57','2015-08-29 14:46:05',1,30005307,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(945,'2015-03-14 14:56:57','2015-03-14 14:56:57',1,30001418,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(946,'2015-03-14 14:56:57','2015-03-14 14:56:57',1,30002753,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(947,'2015-03-14 14:56:57','2015-03-14 14:56:57',1,30003566,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(948,'2015-03-14 14:56:57','2015-03-14 14:56:57',1,30002736,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(949,'2015-03-14 14:56:57','2015-03-14 14:56:57',1,30003895,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(950,'2015-03-14 14:56:57','2015-08-29 14:46:05',1,30000185,0,0,0,0,1,0,0,0,0,1,1,0,0,0,0,0,0,0,1,0,0,1,0,0),(951,'2015-03-14 14:56:57','2015-08-29 14:46:05',1,30001404,1,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0),(952,'2015-03-14 14:56:57','2015-03-14 14:56:57',1,30000166,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(953,'2015-03-14 14:56:57','2015-03-14 14:56:57',1,30002222,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(954,'2015-03-14 14:56:57','2015-03-14 14:56:57',1,30001431,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(955,'2015-03-14 14:56:57','2015-08-29 14:46:05',1,30045340,0,3,2,0,0,0,0,0,0,3,3,0,2,1,0,0,1,0,1,6,0,0,1,0),(956,'2015-03-14 14:56:57','2015-03-14 14:56:57',1,30001414,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(957,'2015-03-14 14:56:57','2015-03-14 14:56:57',1,30001289,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(958,'2015-03-14 14:56:57','2015-08-29 14:46:05',1,30004717,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(959,'2015-03-14 14:56:57','2015-03-14 14:56:57',1,30004277,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(960,'2015-03-14 14:56:57','2015-03-14 14:56:57',1,30005098,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(961,'2015-03-14 14:56:57','2015-03-14 14:56:57',1,30003291,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(962,'2015-03-14 14:56:57','2015-03-14 14:56:57',1,30002992,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(963,'2015-03-14 14:56:57','2015-08-29 14:46:05',1,30000088,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0),(964,'2015-03-14 14:56:57','2015-03-14 14:56:57',1,30004147,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(965,'2015-03-14 14:56:57','2015-03-14 14:56:57',1,30000065,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(966,'2015-03-14 14:56:57','2015-03-14 14:56:57',1,30002197,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(967,'2015-03-14 14:56:57','2015-03-14 14:56:57',1,30015042,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(968,'2015-03-14 14:56:57','2015-08-29 14:46:05',1,30011407,0,0,0,0,0,0,0,0,1,1,1,0,0,4,4,0,0,0,2,1,1,0,0,0),(969,'2015-03-14 14:56:57','2015-08-29 14:46:05',1,30045342,1,3,1,2,1,2,0,1,0,3,3,0,6,0,0,3,2,0,1,3,5,2,2,0),(970,'2015-03-14 14:56:57','2015-03-14 14:56:57',1,30003479,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(971,'2015-03-14 14:56:57','2015-03-14 14:56:57',1,30000178,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(972,'2015-03-14 14:56:57','2015-08-29 14:46:05',1,30000200,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0),(973,'2015-03-14 14:56:57','2015-08-29 14:46:05',1,30001382,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(974,'2015-03-14 14:56:57','2015-08-29 14:46:05',1,30000163,0,2,0,0,0,1,1,0,0,0,0,0,0,0,0,0,1,0,0,1,0,0,0,0),(975,'2015-03-14 14:56:57','2015-03-14 14:56:57',1,30000003,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(976,'2015-03-14 14:56:57','2015-03-14 14:56:57',1,30001534,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(977,'2015-03-14 14:56:57','2015-08-29 14:46:05',1,30004578,0,0,0,0,0,0,0,0,7,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0),(978,'2015-03-14 14:56:57','2015-08-29 14:46:05',1,30002652,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0),(979,'2015-03-14 14:56:57','2015-08-29 14:46:05',1,30003042,0,0,0,0,0,1,0,0,1,0,0,1,0,1,1,0,0,0,0,1,0,0,0,0),(980,'2015-03-14 14:56:57','2015-08-29 14:46:05',1,30002512,1,2,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(981,'2015-03-14 14:56:57','2015-08-29 14:46:05',1,30005225,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0),(982,'2015-03-14 14:56:57','2015-08-29 14:46:05',1,30003854,0,0,1,0,0,0,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(983,'2015-03-14 14:56:57','2015-03-14 14:56:57',1,30002338,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(984,'2015-03-14 14:56:57','2015-03-14 14:56:57',1,30003415,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(985,'2015-03-14 14:56:57','2015-08-29 14:46:05',1,30002216,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0),(986,'2015-03-14 14:56:57','2015-08-29 14:46:05',1,30003464,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(987,'2015-03-14 14:56:57','2015-03-14 14:56:57',1,30003379,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(988,'2015-03-14 14:56:57','2015-08-29 14:46:05',1,30003837,0,0,3,0,0,0,0,0,0,0,0,0,0,0,1,2,0,0,0,1,1,2,1,0),(989,'2015-03-14 14:56:57','2015-03-14 14:56:57',1,30003416,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(990,'2015-03-14 14:56:57','2015-03-14 14:56:57',1,30005302,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(991,'2015-03-14 14:56:57','2015-03-14 14:56:57',1,30005304,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(992,'2015-03-14 14:56:57','2015-08-29 14:46:06',1,30003380,0,0,0,0,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(993,'2015-03-14 14:56:57','2015-08-29 14:46:06',1,30003811,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(994,'2015-03-14 14:56:57','2015-08-29 14:46:06',1,30004972,0,1,1,0,0,0,0,0,1,1,0,0,0,2,2,2,0,0,2,0,1,0,0,0),(995,'2015-03-14 14:56:57','2015-08-29 14:46:06',1,30002698,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,1,0,0,0,0,0,0),(996,'2015-03-14 14:56:57','2015-08-29 14:46:06',1,30002754,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(997,'2015-03-14 14:56:57','2015-03-14 14:56:57',1,30002712,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(998,'2015-03-14 14:56:57','2015-03-14 14:56:57',1,30003521,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(999,'2015-03-14 14:56:57','2015-03-14 14:56:57',1,30000034,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(1000,'2015-03-14 14:56:57','2015-08-29 14:46:06',1,30004995,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(1001,'2015-03-14 14:56:57','2015-03-14 14:56:57',1,30005009,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(1002,'2015-03-14 14:56:57','2015-03-14 14:56:57',1,30002664,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(1003,'2015-03-14 14:56:57','2015-03-14 14:56:57',1,30002727,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(1004,'2015-03-14 14:56:57','2015-08-29 14:46:06',1,30003850,0,1,1,1,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,2,0),(1005,'2015-03-14 14:56:57','2015-08-29 14:46:06',1,30003800,0,0,0,0,0,2,0,0,1,2,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(1006,'2015-03-14 14:56:57','2015-03-14 14:56:57',1,30001730,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(1007,'2015-03-14 14:56:57','2015-08-29 14:46:06',1,30003841,0,0,1,0,0,1,0,0,1,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0),(1008,'2015-03-14 14:56:57','2015-03-14 14:56:57',1,30002678,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(1009,'2015-03-14 14:56:57','2015-08-29 14:46:06',1,30002407,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0),(1010,'2015-03-14 14:56:57','2015-03-14 14:56:57',1,30003389,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(1011,'2015-03-14 14:56:57','2015-03-14 14:56:57',1,30003917,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(1012,'2015-03-14 14:56:57','2015-08-29 14:46:06',1,30002537,1,2,1,3,4,5,1,1,0,1,0,0,4,2,0,0,0,0,1,1,2,3,1,0),(1013,'2015-03-14 14:56:57','2015-03-14 14:56:57',1,30004983,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(1014,'2015-03-14 14:56:57','2015-08-29 14:46:06',1,30002187,11,20,14,7,8,12,4,5,7,9,11,8,7,6,13,14,3,6,7,11,12,9,6,0),(1015,'2015-03-14 14:56:57','2015-03-14 14:56:57',1,30003848,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(1016,'2015-03-14 14:56:57','2015-03-14 14:56:57',1,30003012,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(1017,'2015-03-14 14:56:57','2015-08-29 14:46:06',1,30002644,0,1,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0),(1018,'2015-03-14 14:56:57','2015-03-14 14:56:57',1,30005036,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(1019,'2015-03-14 14:56:57','2015-03-14 14:56:57',1,30002511,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(1020,'2015-03-14 14:56:57','2015-08-29 14:46:06',1,30005035,0,6,0,0,1,0,0,0,10,0,0,0,1,5,3,2,0,0,3,0,1,0,0,0),(1021,'2015-03-14 14:56:57','2015-08-29 14:46:06',1,30002547,1,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,0,0,0,0,0,0,0),(1022,'2015-03-14 14:56:57','2015-03-14 14:56:57',1,30002055,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(1023,'2015-03-14 14:56:57','2015-03-14 14:56:57',1,30003480,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(1024,'2015-03-14 14:56:57','2015-08-29 14:46:06',1,30005329,0,0,1,0,0,0,0,0,0,0,0,0,1,1,1,0,0,0,0,0,1,0,0,0),(1025,'2015-03-14 14:56:57','2015-03-14 14:56:57',1,30003847,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(1026,'2015-03-14 14:56:57','2015-03-14 14:56:57',1,30000058,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(1027,'2015-03-14 14:56:57','2015-08-29 14:46:06',1,30001392,0,0,0,0,0,0,0,0,2,1,1,0,0,0,0,0,0,1,0,0,0,0,0,0),(1028,'2015-03-14 14:56:57','2015-08-29 14:46:06',1,30005311,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(1029,'2015-03-14 14:56:57','2015-03-14 14:56:57',1,30004527,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(1030,'2015-03-14 14:56:57','2015-03-14 14:56:57',1,30003552,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(1031,'2015-03-14 14:56:57','2015-03-14 14:56:57',1,30005279,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(1032,'2015-03-14 14:56:57','2015-03-14 14:56:57',1,30004301,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(1033,'2015-03-14 14:56:57','2015-08-29 14:46:06',1,30003398,0,0,0,0,0,0,0,0,0,3,3,0,0,0,0,0,0,0,0,0,0,0,0,0),(1034,'2015-03-14 14:56:57','2015-08-29 14:46:06',1,30003840,2,1,0,2,2,0,0,0,0,2,1,0,0,0,1,1,0,0,1,0,1,2,1,0),(1035,'2015-03-14 14:56:57','2015-08-29 14:46:06',1,30003571,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,1,0,0,0,0),(1036,'2015-03-14 14:56:57','2015-08-29 14:46:06',1,30003485,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0),(1037,'2015-03-14 14:56:57','2015-03-14 14:56:57',1,30005028,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(1038,'2015-03-14 14:56:57','2015-03-14 14:56:57',1,30005049,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(1039,'2015-03-14 14:56:57','2015-03-14 14:56:57',1,30005022,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(1040,'2015-03-14 14:56:57','2015-08-29 14:46:06',1,30003062,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0),(1041,'2015-03-14 14:56:57','2015-08-29 14:46:06',1,30005264,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(1042,'2015-03-14 14:56:57','2015-03-14 14:56:57',1,30003046,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(1043,'2015-03-14 14:56:57','2015-08-29 14:46:06',1,30002051,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,0),(1044,'2015-03-14 14:56:57','2015-03-14 14:56:57',1,30003515,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(1045,'2015-03-14 14:56:57','2015-03-14 14:56:57',1,30001439,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(1046,'2015-03-14 14:56:57','2015-03-14 14:56:57',1,30001647,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(1047,'2015-03-14 14:56:57','2015-08-29 14:46:06',1,30003071,0,1,1,0,0,0,0,0,0,0,0,1,0,1,1,0,0,1,1,0,0,0,0,0),(1048,'2015-03-14 14:56:57','2015-03-14 14:56:57',1,30025042,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(1049,'2015-03-14 14:56:57','2015-03-14 14:56:57',1,30004989,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(1050,'2015-03-14 14:56:57','2015-08-29 14:46:06',1,30003791,0,0,1,0,0,0,2,0,0,0,1,0,0,1,1,0,0,0,0,0,0,0,0,0),(1051,'2015-03-14 14:56:57','2015-03-14 14:56:57',1,30002776,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(1052,'2015-03-14 14:56:57','2015-03-14 14:56:57',1,30005326,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(1053,'2015-03-14 14:56:57','2015-03-14 14:56:57',1,30004291,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(1054,'2015-03-14 14:56:57','2015-03-14 14:56:57',1,30005309,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(1055,'2015-03-14 14:56:57','2015-08-29 14:46:06',1,30004104,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0),(1056,'2015-03-14 14:56:57','2015-08-29 14:46:06',1,30002081,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(1057,'2015-03-14 14:56:57','2015-03-14 14:56:57',1,30003440,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(1058,'2015-03-14 14:56:57','2015-03-14 14:56:57',1,30000132,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(1059,'2015-03-14 14:56:57','2015-03-14 14:56:57',1,30002669,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(1060,'2015-03-14 14:56:57','2015-03-14 14:56:57',1,30003426,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(1061,'2015-03-14 14:56:57','2015-08-29 14:46:06',1,30005261,0,1,1,2,2,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,0,0,0),(1062,'2015-03-14 14:56:57','2015-03-14 14:56:57',1,30001357,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(1063,'2015-03-14 14:56:57','2015-03-14 14:56:57',1,30003051,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(1064,'2015-03-14 14:56:57','2015-08-29 14:46:06',1,30002805,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0),(1065,'2015-03-14 14:56:57','2015-08-29 14:46:06',1,30005249,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0),(1066,'2015-03-14 14:56:57','2015-03-14 14:56:57',1,30005252,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(1067,'2015-03-14 14:56:57','2015-03-14 14:56:57',1,30004006,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(1068,'2015-03-14 14:56:57','2015-08-29 14:46:06',1,30001216,0,0,0,0,0,0,0,0,0,0,0,0,1,1,1,0,1,0,0,0,0,0,0,0),(1069,'2015-03-14 14:56:57','2015-03-14 14:56:57',1,30021407,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(1070,'2015-03-14 14:56:57','2015-08-29 14:46:06',1,30002453,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0),(1071,'2015-03-14 14:56:57','2015-08-29 14:46:06',1,30005216,0,3,0,0,0,0,0,0,0,0,0,2,1,0,0,0,0,0,0,1,0,0,1,0),(1072,'2015-03-14 14:56:57','2015-03-14 14:56:57',1,30001114,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(1073,'2015-03-14 14:56:57','2015-03-14 14:56:57',1,30004079,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(1074,'2015-03-14 14:56:57','2015-03-14 14:56:57',1,30004124,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(1075,'2015-03-14 14:56:57','2015-03-14 14:56:57',1,30004576,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(1076,'2015-03-14 14:56:57','2015-08-29 14:46:06',1,30005019,0,1,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(1077,'2015-03-14 14:56:57','2015-03-14 14:56:57',1,30002565,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(1078,'2015-03-14 14:56:57','2015-03-14 14:56:57',1,30003656,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(1079,'2015-03-14 14:56:57','2015-03-14 14:56:57',1,30001740,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(1080,'2015-03-14 14:56:57','2015-08-29 14:46:06',1,30002551,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0),(1081,'2015-03-14 14:56:57','2015-03-14 14:56:57',1,30002817,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(1082,'2015-03-14 14:56:57','2015-08-29 14:46:06',1,30000092,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0),(1083,'2015-03-14 14:56:57','2015-03-14 14:56:57',1,30004994,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(1084,'2015-03-14 14:56:57','2015-03-14 14:56:57',1,30003590,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(1085,'2015-03-14 14:56:57','2015-03-14 14:56:57',1,30002977,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(1086,'2015-03-14 14:56:57','2015-03-14 14:56:57',1,30003487,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(1087,'2015-03-14 14:56:57','2015-03-14 14:56:57',1,30004669,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(1088,'2015-03-14 14:56:57','2015-03-14 14:56:57',1,30003824,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(1089,'2015-03-14 14:56:57','2015-08-29 14:46:06',1,30002702,0,0,0,0,0,0,0,0,1,0,0,0,1,0,0,0,0,0,0,0,0,0,1,0),(1090,'2015-03-14 14:56:57','2015-08-29 14:46:06',1,30003030,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,0,0,0,0,0,1,0,0),(1091,'2015-03-14 14:56:57','2015-08-29 14:46:06',1,30002058,0,0,0,0,0,0,0,0,3,2,1,0,0,1,0,3,0,2,3,3,0,0,2,0),(1092,'2015-03-14 14:56:57','2015-08-29 14:46:06',1,30002648,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0),(1093,'2015-03-14 14:56:57','2015-08-29 14:46:06',1,30003852,0,0,1,1,0,1,1,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,1,0),(1094,'2015-03-14 14:56:57','2015-03-14 14:56:57',1,30004118,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(1095,'2015-03-14 14:56:57','2015-03-14 14:56:57',1,30002231,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(1096,'2015-03-14 14:56:57','2015-03-14 14:56:57',1,30000099,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(1097,'2015-03-14 14:56:57','2015-03-14 14:56:57',1,30002244,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(1098,'2015-03-14 14:56:57','2015-08-29 14:46:06',1,30000656,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0),(1099,'2015-03-14 14:56:57','2015-08-29 14:46:06',1,30002080,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0),(1100,'2015-03-14 14:56:57','2015-03-14 14:56:57',1,30005239,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(1101,'2015-03-14 14:56:57','2015-03-14 14:56:57',1,30003595,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(1102,'2015-03-14 14:56:57','2015-03-14 14:56:57',1,30001704,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(1103,'2015-03-14 14:56:57','2015-03-14 14:56:57',1,30003411,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(1104,'2015-03-14 14:56:57','2015-03-14 14:56:57',1,30003374,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(1105,'2015-03-14 14:56:57','2015-03-14 14:56:57',1,30002205,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(1106,'2015-03-14 14:56:57','2015-03-14 14:56:57',1,30003009,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(1107,'2015-03-14 14:56:57','2015-08-29 14:46:06',1,30002066,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,1,0,4,0,1,0,2,0),(1108,'2015-03-14 14:56:57','2015-08-29 14:46:06',1,30000112,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(1109,'2015-03-14 14:56:57','2015-08-29 14:46:06',1,30005001,0,1,0,0,0,1,0,0,0,0,0,0,0,1,1,1,0,0,0,0,1,0,0,0),(1110,'2015-03-14 14:56:57','2015-08-29 14:46:06',1,30002064,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,1,0,0),(1111,'2015-03-14 14:56:57','2015-03-14 14:56:57',1,30002240,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(1112,'2015-03-14 14:56:57','2015-08-29 14:46:06',1,30005330,0,0,0,1,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0),(1113,'2015-03-14 14:56:57','2015-03-14 14:56:57',1,30002253,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(1114,'2015-03-14 14:56:57','2015-08-29 14:46:06',1,30002687,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0),(1115,'2015-03-14 14:56:57','2015-08-29 14:46:06',1,30003556,0,0,1,0,0,0,0,0,0,0,0,0,1,0,0,0,1,0,0,0,1,0,0,0),(1116,'2015-03-14 14:56:57','2015-08-29 14:46:06',1,30002278,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(1117,'2015-03-14 14:56:57','2015-03-14 14:56:57',1,30001381,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(1118,'2015-03-14 14:56:57','2015-03-14 14:56:57',1,30003007,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(1119,'2015-03-14 14:56:57','2015-03-14 14:56:57',1,30002078,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(1120,'2015-03-14 14:56:57','2015-03-14 14:56:57',1,30005086,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(1121,'2015-03-14 14:56:57','2015-08-29 14:46:06',1,30002960,0,0,1,0,1,0,0,1,0,0,0,0,1,0,0,0,0,0,0,0,0,0,1,0),(1122,'2015-03-14 14:56:57','2015-03-14 14:56:57',1,30003885,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(1123,'2015-03-14 14:56:57','2015-03-14 14:56:57',1,30005065,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(1124,'2015-03-14 14:56:57','2015-03-14 14:56:57',1,30003921,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(1125,'2015-03-14 14:56:57','2015-08-29 14:46:06',1,30000012,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0),(1126,'2015-03-14 14:56:57','2015-08-29 14:46:06',1,30045332,0,4,1,0,0,0,0,0,0,1,1,1,0,0,0,0,0,0,0,0,2,0,0,0),(1127,'2015-03-14 14:56:57','2015-03-14 14:56:57',1,30005251,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(1128,'2015-03-14 14:56:57','2015-03-14 14:56:57',1,30001689,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(1129,'2015-03-14 14:56:57','2015-08-29 14:46:06',1,30002084,0,0,0,0,0,0,0,0,0,0,0,0,2,0,0,0,2,0,0,0,0,0,1,0),(1130,'2015-03-14 14:56:57','2015-08-29 14:46:06',1,30001708,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0),(1131,'2015-03-14 14:56:57','2015-03-14 14:56:57',1,30003384,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(1132,'2015-03-14 14:56:57','2015-03-14 14:56:57',1,30000084,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(1133,'2015-03-14 14:56:57','2015-03-14 14:56:57',1,30002978,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(1134,'2015-03-14 14:56:57','2015-08-29 14:46:06',1,30003491,1,0,3,0,2,0,0,0,0,1,2,0,2,0,0,0,2,0,0,0,1,0,1,0),(1135,'2015-03-14 14:56:57','2015-03-14 14:56:57',1,30003890,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(1136,'2015-03-14 14:56:57','2015-08-29 14:46:06',1,30045311,0,1,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0),(1137,'2015-03-14 14:56:57','2015-08-29 14:46:06',1,30003919,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,0,0,0,0),(1138,'2015-03-14 14:56:57','2015-08-29 14:46:06',1,30003886,0,0,0,0,0,0,0,0,1,1,2,0,0,0,0,0,0,0,0,0,0,0,0,0),(1139,'2015-03-14 14:56:57','2015-08-29 14:46:06',1,30005214,0,36,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(1140,'2015-03-14 14:56:57','2015-03-14 14:56:57',1,30000095,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(1141,'2015-03-14 14:56:57','2015-03-14 14:56:57',1,30004093,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(1142,'2015-03-14 14:56:57','2015-08-29 14:46:06',1,30002272,1,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(1143,'2015-03-14 14:56:57','2015-03-14 14:56:57',1,30004156,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(1144,'2015-03-14 14:56:57','2015-08-29 14:46:06',1,30000075,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(1145,'2015-03-14 14:56:57','2015-08-29 14:46:06',1,30005224,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0),(1146,'2015-03-14 14:56:57','2015-03-14 14:56:57',1,30001723,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(1147,'2015-03-14 14:56:57','2015-03-14 14:56:57',1,30002724,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(1148,'2015-03-14 14:56:57','2015-08-29 14:46:06',1,30000113,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,0,0,0,0,0),(1149,'2015-03-14 14:56:57','2015-03-14 14:56:57',1,30045323,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(1150,'2015-03-14 14:56:57','2015-03-14 14:56:57',1,30001419,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(1151,'2015-03-14 14:56:57','2015-03-14 14:56:57',1,30005077,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(1152,'2015-03-14 14:56:57','2015-03-14 14:56:57',1,30002557,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(1153,'2015-03-14 14:56:57','2015-08-29 14:46:06',1,30003031,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0),(1154,'2015-03-14 14:56:57','2015-08-29 14:46:06',1,30003856,0,0,0,0,0,1,0,0,0,1,2,0,0,0,0,0,0,0,0,0,0,0,0,0),(1155,'2015-03-14 14:56:57','2015-03-14 14:56:57',1,30002701,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(1156,'2015-03-14 14:56:57','2015-03-14 14:56:57',1,30002695,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(1157,'2015-03-14 14:56:57','2015-08-29 14:46:06',1,30002489,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,2,0,0,0),(1158,'2015-03-14 14:56:57','2015-03-14 14:56:57',1,30005024,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(1159,'2015-03-14 14:56:57','2015-08-29 14:46:06',1,30003038,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(1160,'2015-03-14 14:56:57','2015-08-29 14:46:06',1,30002389,0,0,0,0,0,0,0,0,1,0,1,0,0,0,0,2,0,0,0,0,0,0,0,0),(1161,'2015-03-14 14:56:57','2015-08-29 14:46:06',1,30005010,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0),(1162,'2015-03-14 14:56:57','2015-03-14 14:56:57',1,30003455,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(1163,'2015-03-14 14:56:57','2015-03-14 14:56:57',1,30001678,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(1164,'2015-03-14 14:56:57','2015-03-14 14:56:57',1,30004654,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(1165,'2015-03-14 14:56:57','2015-03-14 14:56:57',1,30005197,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(1166,'2015-03-14 14:56:57','2015-08-29 14:46:06',1,30005004,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,1,0),(1167,'2015-03-14 14:56:57','2015-08-29 14:46:06',1,30003273,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0),(1168,'2015-03-14 14:56:57','2015-03-14 14:56:57',1,30002834,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(1169,'2015-03-14 14:56:57','2015-08-29 14:46:06',1,30003827,0,0,1,1,1,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,1,0,0),(1170,'2015-03-14 14:56:57','2015-03-14 14:56:57',1,30002709,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(1171,'2015-03-14 14:56:57','2015-03-14 14:56:57',1,30003849,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(1172,'2015-03-14 14:56:57','2015-03-14 14:56:57',1,30002684,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(1173,'2015-03-14 14:56:57','2015-03-14 14:56:57',1,30002395,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(1174,'2015-03-14 14:56:57','2015-08-29 14:46:06',1,30002641,0,0,0,4,4,0,1,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0),(1175,'2015-03-14 14:56:57','2015-08-29 14:46:06',1,30002542,0,2,2,0,1,0,0,0,1,0,0,0,2,1,0,0,0,1,2,0,4,0,1,0),(1176,'2015-03-14 14:56:57','2015-03-14 14:56:57',1,30002680,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(1177,'2015-03-14 14:56:57','2015-03-14 14:56:57',1,30003818,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(1178,'2015-03-14 14:56:57','2015-08-29 14:46:06',1,30001398,0,0,0,0,0,1,0,0,0,0,0,1,0,5,5,0,1,1,0,1,1,0,1,0),(1179,'2015-03-14 14:56:57','2015-08-29 14:46:06',1,30002059,0,1,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,1,0,0),(1180,'2015-03-14 14:56:57','2015-03-14 14:56:57',1,30002657,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(1181,'2015-03-14 14:56:57','2015-08-29 14:46:06',1,30003801,2,0,3,1,0,8,1,4,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0),(1182,'2015-03-14 14:56:57','2015-08-29 14:46:06',1,30002716,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(1183,'2015-03-14 14:56:57','2015-03-14 14:56:57',1,30003915,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(1184,'2015-03-14 14:56:57','2015-03-14 14:56:57',1,30002561,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(1185,'2015-03-14 14:56:57','2015-08-29 14:46:06',1,30001361,0,0,1,0,1,0,0,1,1,2,0,0,1,0,0,1,0,0,0,1,0,0,0,0),(1186,'2015-03-14 14:56:57','2015-03-14 14:56:57',1,30003821,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(1187,'2015-03-14 14:56:57','2015-03-14 14:56:57',1,30002523,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(1188,'2015-03-14 14:56:57','2015-03-14 14:56:57',1,30001411,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(1189,'2015-03-14 14:56:57','2015-08-29 14:46:06',1,30001384,0,1,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,0,0,0),(1190,'2015-03-14 14:56:57','2015-08-29 14:46:06',1,30002656,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0),(1191,'2015-03-14 14:56:57','2015-03-14 14:56:57',1,30002744,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(1192,'2015-03-14 14:56:57','2015-08-29 14:46:06',1,30004614,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0),(1193,'2015-03-14 14:56:57','2015-03-14 14:56:57',1,30004249,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(1194,'2015-03-14 14:56:57','2015-08-29 14:46:06',1,30002270,0,0,0,0,0,0,0,0,0,0,0,0,4,0,1,2,0,0,1,1,0,1,0,0),(1195,'2015-03-14 14:56:57','2015-08-29 14:46:06',1,30003843,0,1,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,0,0,0,0),(1196,'2015-03-14 14:56:57','2015-03-14 14:56:57',1,30003053,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(1197,'2015-03-14 14:56:57','2015-08-29 14:46:06',1,30002089,0,0,0,1,1,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,1,0),(1198,'2015-03-14 14:56:57','2015-03-14 14:56:57',1,30003047,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(1199,'2015-03-14 14:56:57','2015-03-14 14:56:57',1,30002530,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(1200,'2015-03-14 14:56:57','2015-08-29 14:46:06',1,30005215,0,5,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(1201,'2015-03-14 14:56:57','2015-03-14 14:56:57',1,30000860,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(1202,'2015-03-14 14:56:57','2015-08-29 14:46:06',1,30001203,0,0,0,0,0,1,0,0,2,2,1,1,3,5,7,4,1,0,2,14,6,10,1,0),(1203,'2015-03-14 14:56:57','2015-03-14 14:56:57',1,30004904,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(1204,'2015-03-14 14:56:57','2015-08-29 14:46:06',1,30003756,3,0,0,0,0,1,0,0,0,0,0,0,11,0,0,0,0,1,0,0,0,0,0,0),(1205,'2015-03-14 14:56:57','2015-08-29 14:46:06',1,30003746,0,1,1,0,1,0,0,0,2,0,0,2,1,0,1,1,0,3,0,2,2,1,1,0),(1206,'2015-03-14 14:56:57','2015-03-14 14:56:57',1,30005094,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(1207,'2015-03-14 14:56:57','2015-08-29 14:46:06',1,30003055,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,1,0,0,0,5,1,0),(1208,'2015-03-14 14:56:57','2015-03-14 14:56:57',1,30003093,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(1209,'2015-03-14 14:56:57','2015-03-14 14:56:57',1,30002717,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(1210,'2015-03-14 14:56:57','2015-03-14 14:56:57',1,30001342,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(1211,'2015-03-14 14:56:57','2015-08-29 14:46:06',1,30000672,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0),(1212,'2015-03-14 14:56:57','2015-03-14 14:56:57',1,30001070,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(1213,'2015-03-14 14:56:57','2015-03-14 14:56:57',1,30000265,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(1214,'2015-03-14 14:56:57','2015-08-29 14:46:06',1,30005275,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0),(1215,'2015-03-14 14:56:57','2015-03-14 14:56:57',1,30003018,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(1216,'2015-03-14 14:56:57','2015-03-14 14:56:57',1,30001711,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(1217,'2015-03-14 14:56:57','2015-08-29 14:46:06',1,30000920,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0),(1218,'2015-03-14 14:56:57','2015-03-14 14:56:57',1,30001705,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(1219,'2015-03-14 14:56:57','2015-03-14 14:56:57',1,30002265,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(1220,'2015-03-14 14:56:57','2015-08-29 14:46:06',1,30004450,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0),(1221,'2015-03-14 14:56:57','2015-08-29 14:46:06',1,30000716,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,1,0,0,0),(1222,'2015-03-14 14:56:57','2015-03-14 14:56:57',1,30001944,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(1223,'2015-03-14 14:56:57','2015-03-14 14:56:57',1,30002334,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(1224,'2015-03-14 14:56:57','2015-08-29 14:46:06',1,30001156,0,2,0,0,0,0,0,0,0,3,11,8,1,7,4,8,3,3,1,6,4,0,1,0),(1225,'2015-03-14 14:56:57','2015-08-29 14:46:06',1,30000211,6,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0),(1226,'2015-03-14 14:56:57','2015-03-14 14:56:57',1,30000435,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(1227,'2015-03-14 14:56:57','2015-03-14 14:56:57',1,30004873,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(1228,'2015-03-14 14:56:57','2015-08-29 14:46:06',1,30004030,0,0,0,0,0,0,0,0,6,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0),(1229,'2015-03-14 14:56:57','2015-03-14 14:56:57',1,30005160,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(1230,'2015-03-14 14:56:57','2015-03-14 14:56:57',1,30002029,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(1231,'2015-03-14 14:56:57','2015-03-14 14:56:57',1,30002108,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(1232,'2015-03-14 14:56:57','2015-03-14 14:56:57',1,30005088,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(1233,'2015-03-14 14:56:57','2015-03-14 14:56:57',1,30001321,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(1234,'2015-03-14 14:56:57','2015-08-29 14:46:06',1,30004040,1,0,1,0,0,2,0,1,0,2,2,0,0,0,0,0,0,0,0,0,0,0,0,0),(1235,'2015-03-14 14:56:57','2015-03-14 14:56:57',1,30000423,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(1236,'2015-03-14 14:56:57','2015-08-29 14:46:06',1,30000307,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(1237,'2015-03-14 14:56:57','2015-03-14 14:56:57',1,30003250,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(1238,'2015-03-14 14:56:57','2015-08-29 14:46:06',1,30002496,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,2,0,0,0,0,1,0,0),(1239,'2015-03-14 14:56:57','2015-03-14 14:56:57',1,30001910,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(1240,'2015-03-14 14:56:57','2015-08-29 14:46:06',1,30004328,0,0,0,0,0,0,0,0,0,0,0,0,2,1,1,0,0,0,0,0,0,0,0,0),(1241,'2015-03-14 14:56:57','2015-03-14 14:56:57',1,30000817,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(1242,'2015-03-14 14:56:57','2015-08-29 14:46:06',1,30002143,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,0,0,0,0),(1243,'2015-03-14 14:56:57','2015-08-29 14:46:06',1,30002157,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0),(1244,'2015-03-14 14:56:57','2015-03-14 14:56:57',1,30000961,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(1245,'2015-03-14 14:56:57','2015-08-29 14:46:06',1,30002105,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0),(1246,'2015-03-14 14:56:57','2015-03-14 14:56:57',1,30000854,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(1247,'2015-03-14 14:56:57','2015-03-14 14:56:57',1,30000624,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(1248,'2015-03-14 14:56:57','2015-03-14 14:56:57',1,30004194,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(1249,'2015-03-14 14:56:57','2015-03-14 14:56:57',1,30001076,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(1250,'2015-03-14 14:56:57','2015-08-29 14:46:06',1,30000970,0,0,0,0,1,0,0,0,0,0,0,0,2,0,0,2,0,0,0,0,1,1,0,0),(1251,'2015-03-14 14:56:57','2015-08-29 14:46:06',1,30003730,0,1,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(1252,'2015-03-14 14:56:57','2015-03-14 14:56:57',1,30000610,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(1253,'2015-03-14 14:56:57','2015-08-29 14:46:06',1,30001215,0,0,0,0,0,0,0,0,0,0,0,1,0,3,2,3,0,0,1,0,0,0,0,0),(1254,'2015-03-14 14:56:57','2015-03-14 14:56:57',1,30001611,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(1255,'2015-03-14 14:56:57','2015-03-14 14:56:57',1,30004532,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(1256,'2015-03-14 14:56:57','2015-08-29 14:46:06',1,30004590,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0),(1257,'2015-03-14 14:56:57','2015-03-14 14:56:57',1,30003180,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(1258,'2015-03-14 14:56:57','2015-03-14 14:56:57',1,30002850,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(1259,'2015-03-14 14:56:57','2015-03-14 14:56:57',1,30002165,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(1260,'2015-03-14 14:56:57','2015-03-14 14:56:57',1,30001115,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(1261,'2015-03-14 14:56:57','2015-03-14 14:56:57',1,30004599,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(1262,'2015-03-14 14:56:57','2015-03-14 14:56:57',1,30001346,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(1263,'2015-03-14 14:56:57','2015-03-14 14:56:57',1,30002860,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(1264,'2015-03-14 14:56:57','2015-03-14 14:56:57',1,30002436,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(1265,'2015-03-14 14:56:57','2015-03-14 14:56:57',1,30001555,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(1266,'2015-03-14 14:56:57','2015-03-14 14:56:57',1,30002012,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(1267,'2015-03-14 14:56:57','2015-03-14 14:56:57',1,30004848,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(1268,'2015-03-14 14:56:57','2015-03-14 14:56:57',1,30004346,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(1269,'2015-03-14 14:56:57','2015-03-14 14:56:57',1,30002110,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(1270,'2015-03-14 14:56:57','2015-03-14 14:56:57',1,30001529,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(1271,'2015-03-14 14:56:57','2015-03-14 14:56:57',1,30005127,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(1272,'2015-03-14 14:56:57','2015-03-14 14:56:57',1,30003601,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(1273,'2015-03-14 14:56:57','2015-08-29 14:46:06',1,30003888,1,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0),(1274,'2015-03-14 14:56:57','2015-08-29 14:46:06',1,30003525,1,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,1,0,0,0,1,0),(1275,'2015-03-14 14:56:57','2015-08-29 14:46:06',1,30003502,0,1,0,0,0,0,0,0,0,0,0,0,0,0,1,2,0,0,0,0,0,0,0,0),(1276,'2015-03-14 14:56:57','2015-03-14 14:56:57',1,30000041,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(1277,'2015-03-14 14:56:57','2015-03-14 14:56:57',1,30003910,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(1278,'2015-03-14 14:56:57','2015-08-29 14:46:06',1,30004261,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0),(1279,'2015-03-14 14:56:57','2015-03-14 14:56:57',1,30002528,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(1280,'2015-03-14 14:56:57','2015-08-29 14:46:06',1,30002634,0,1,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0),(1281,'2015-03-14 14:56:57','2015-03-14 14:56:57',1,30002690,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(1282,'2015-03-14 14:56:57','2015-03-14 14:56:57',1,30005294,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(1283,'2015-03-14 14:56:57','2015-08-29 14:46:06',1,30005257,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0),(1284,'2015-03-14 14:56:57','2015-03-14 14:56:57',1,30004296,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(1285,'2015-03-14 14:56:57','2015-03-14 14:56:57',1,30000085,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(1286,'2015-03-14 14:56:57','2015-03-14 14:56:57',1,30003920,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(1287,'2015-03-14 14:56:57','2015-03-14 14:56:57',1,30003548,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(1288,'2015-03-14 14:56:57','2015-03-14 14:56:57',1,30002071,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(1289,'2015-03-14 14:56:57','2015-08-29 14:46:06',1,30003819,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0),(1290,'2015-03-14 14:56:57','2015-03-14 14:56:57',1,30002683,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(1291,'2015-03-14 14:56:57','2015-03-14 14:56:57',1,30003478,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(1292,'2015-03-14 14:56:57','2015-08-29 14:46:06',1,30002666,0,0,0,0,0,0,0,0,0,0,0,1,0,1,2,1,0,0,1,1,0,0,0,0),(1293,'2015-03-14 14:56:57','2015-03-14 14:56:57',1,30002199,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(1294,'2015-03-14 14:56:57','2015-03-14 14:56:57',1,30003908,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(1295,'2015-03-14 14:56:57','2015-03-14 14:56:57',1,30001670,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(1296,'2015-03-14 14:56:57','2015-03-14 14:56:57',1,30002700,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(1297,'2015-03-14 14:56:57','2015-03-14 14:56:57',1,30000039,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(1298,'2015-03-14 14:56:57','2015-08-29 14:46:06',1,30004252,0,0,0,0,0,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(1299,'2015-03-14 14:56:57','2015-03-14 14:56:57',1,30004851,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(1300,'2015-03-14 14:56:57','2015-03-14 14:56:57',1,30001976,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(1301,'2015-03-14 14:56:57','2015-08-29 14:46:06',1,30002498,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0),(1302,'2015-03-14 14:56:57','2015-08-29 14:46:06',1,30005129,0,0,0,0,0,0,0,0,1,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0),(1303,'2015-03-14 14:56:57','2015-08-29 14:46:06',1,30002048,0,0,0,0,0,0,0,0,0,1,3,1,0,0,0,0,0,0,0,0,1,0,0,0),(1304,'2015-03-14 14:56:57','2015-08-29 14:46:06',1,30005234,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0),(1305,'2015-03-14 14:56:57','2015-03-14 14:56:57',1,30000110,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(1306,'2015-03-14 14:56:57','2015-08-29 14:46:06',1,30003014,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(1307,'2015-03-14 14:56:57','2015-03-14 14:56:57',1,30004138,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(1308,'2015-03-14 14:56:57','2015-08-29 14:46:06',1,30000109,0,0,0,0,0,1,0,0,0,0,0,0,0,1,1,1,0,0,1,0,0,0,0,0),(1309,'2015-03-14 14:56:57','2015-03-14 14:56:57',1,30001885,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(1310,'2015-03-14 14:56:57','2015-08-29 14:46:06',1,30004506,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(1311,'2015-03-14 14:56:57','2015-03-14 14:56:57',1,30000355,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(1312,'2015-03-14 14:56:57','2015-03-14 14:56:57',1,30004427,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(1313,'2015-03-14 14:56:57','2015-03-14 14:56:57',1,30002876,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(1314,'2015-03-14 14:56:57','2015-03-14 14:56:57',1,30004417,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(1315,'2015-03-14 14:56:57','2015-08-29 14:46:06',1,30005267,0,0,0,0,0,0,0,0,0,0,0,0,1,2,2,0,0,0,0,1,0,0,0,0),(1316,'2015-03-14 14:56:57','2015-08-29 14:46:06',1,30002282,0,0,0,0,0,0,0,1,0,0,0,0,0,1,1,0,0,0,0,0,0,1,0,0),(1317,'2015-03-14 14:56:57','2015-08-29 14:46:06',1,30004163,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(1318,'2015-03-14 14:56:57','2015-08-29 14:46:06',1,30002252,0,0,0,0,0,0,0,3,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0),(1319,'2015-03-14 14:56:57','2015-03-14 14:56:57',1,30003040,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(1320,'2015-03-14 14:56:57','2015-03-14 14:56:57',1,30000115,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(1321,'2015-03-14 14:56:57','2015-03-14 14:56:57',1,30003561,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(1322,'2015-03-14 14:56:57','2015-03-14 14:56:57',1,30003555,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(1323,'2015-03-14 14:56:57','2015-03-14 14:56:57',1,30004444,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(1324,'2015-03-14 14:56:57','2015-03-14 14:56:57',1,30001469,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(1325,'2015-03-14 14:56:57','2015-08-29 14:46:06',1,30004422,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(1326,'2015-03-14 14:56:57','2015-08-29 14:46:06',1,30003757,2,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,1,0,0,0),(1327,'2015-03-14 14:56:57','2015-08-29 14:46:06',1,30004333,0,0,0,2,2,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(1328,'2015-03-14 14:56:57','2015-03-14 14:56:57',1,30001497,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(1329,'2015-03-14 14:56:57','2015-03-14 14:56:57',1,30003026,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(1330,'2015-03-14 14:56:57','2015-03-14 14:56:57',1,30004420,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(1331,'2015-03-14 14:56:57','2015-03-14 14:56:57',1,30000619,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(1332,'2015-03-14 14:56:57','2015-03-14 14:56:57',1,30002843,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(1333,'2015-03-14 14:56:57','2015-08-29 14:46:06',1,30003327,0,0,0,0,0,0,0,3,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0),(1334,'2015-03-14 14:56:57','2015-08-29 14:46:06',1,30004539,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(1335,'2015-03-14 14:56:57','2015-08-29 14:46:06',1,30002438,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0),(1336,'2015-03-14 14:56:57','2015-03-14 14:56:57',1,30002318,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(1337,'2015-03-14 14:56:57','2015-03-14 14:56:57',1,30004545,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(1338,'2015-03-14 14:56:57','2015-08-29 14:46:06',1,30002553,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(1339,'2015-03-14 14:56:57','2015-03-14 14:56:57',1,30002649,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(1340,'2015-03-14 14:56:57','2015-03-14 14:56:57',1,30003913,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(1341,'2015-03-14 14:56:57','2015-03-14 14:56:57',1,30003397,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(1342,'2015-03-14 14:56:57','2015-03-14 14:56:57',1,30002188,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(1343,'2015-03-14 14:56:57','2015-03-14 14:56:57',1,30004106,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(1344,'2015-03-14 14:56:57','2015-08-29 14:46:06',1,30002514,0,1,0,0,0,1,2,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0),(1345,'2015-03-14 14:56:57','2015-08-29 14:46:06',1,30002387,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,0,0,0,0,0,0,0,0),(1346,'2015-03-14 14:56:57','2015-08-29 14:46:06',1,30002661,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0),(1347,'2015-03-14 14:56:57','2015-03-14 14:56:57',1,30002238,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(1348,'2015-03-14 14:56:57','2015-08-29 14:46:06',1,30002715,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,1,0),(1349,'2015-03-14 14:56:57','2015-08-29 14:46:06',1,30003574,0,0,0,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0),(1350,'2015-03-14 14:56:57','2015-03-14 14:56:57',1,30000504,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(1351,'2015-03-14 14:56:57','2015-03-14 14:56:57',1,30001037,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(1352,'2015-03-14 14:56:57','2015-03-14 14:56:57',1,30003230,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(1353,'2015-03-14 14:56:57','2015-03-14 14:56:57',1,30000311,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(1354,'2015-03-14 14:56:57','2015-08-29 14:46:06',1,30001235,0,0,0,0,0,2,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(1355,'2015-03-14 14:56:57','2015-03-14 14:56:57',1,30002699,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(1356,'2015-03-14 14:56:57','2015-08-29 14:46:06',1,30003789,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,1,0,0,0,0,0,1,0,0),(1357,'2015-03-14 14:56:57','2015-03-14 14:56:57',1,30003809,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(1358,'2015-03-14 14:56:57','2015-03-14 14:56:57',1,30005034,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(1359,'2015-03-14 14:56:57','2015-03-14 14:56:57',1,30002067,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(1360,'2015-03-14 14:56:57','2015-03-14 14:56:57',1,30000986,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(1361,'2015-03-14 14:56:57','2015-03-14 14:56:57',1,30003375,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(1362,'2015-03-14 14:56:57','2015-03-14 14:56:57',1,30002703,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(1363,'2015-03-14 14:56:57','2015-03-14 14:56:57',1,30000643,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(1364,'2015-03-14 14:56:57','2015-08-29 14:46:06',1,30004399,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0),(1365,'2015-03-14 14:56:57','2015-03-14 14:56:57',1,30000081,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(1366,'2015-03-14 14:56:57','2015-08-29 14:46:06',1,30003866,0,0,0,0,0,0,0,1,0,0,0,0,0,0,1,1,0,1,0,0,4,2,0,0),(1367,'2015-03-14 14:56:57','2015-03-14 14:56:57',1,30002577,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(1368,'2015-03-14 14:56:57','2015-03-14 14:56:57',1,30004117,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(1369,'2015-03-14 14:56:57','2015-08-29 14:46:06',1,30001245,0,0,0,0,0,0,0,0,6,3,0,0,4,5,0,0,3,0,4,6,1,1,4,0),(1370,'2015-03-14 14:56:57','2015-03-14 14:56:57',1,30001286,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(1371,'2015-03-14 14:56:57','2015-03-14 14:56:57',1,30002828,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(1372,'2015-03-14 14:56:57','2015-08-29 14:46:06',1,30004804,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(1373,'2015-03-14 14:56:57','2015-08-29 14:46:06',1,30002440,5,4,1,0,0,1,0,1,1,3,4,0,4,2,0,3,2,7,2,5,1,7,4,0),(1374,'2015-03-14 14:56:57','2015-08-29 14:46:06',1,30004371,0,0,0,0,0,0,0,0,0,0,0,0,1,10,0,0,0,0,0,0,0,0,0,0),(1375,'2015-03-14 14:56:57','2015-03-14 14:56:57',1,30001629,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(1376,'2015-03-14 14:56:57','2015-03-14 14:56:57',1,30004029,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(1377,'2015-03-14 14:56:57','2015-03-14 14:56:57',1,30003993,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(1378,'2015-03-14 14:56:57','2015-03-14 14:56:57',1,30002305,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(1379,'2015-03-14 14:56:57','2015-08-29 14:46:06',1,30003138,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0),(1380,'2015-03-14 14:56:57','2015-08-29 14:46:06',1,30003328,0,0,0,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(1381,'2015-03-14 14:56:57','2015-03-14 14:56:57',1,30000925,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(1382,'2015-03-14 14:56:57','2015-08-29 14:46:06',1,30004562,0,0,0,0,0,0,0,0,1,1,23,0,5,1,0,0,0,2,0,0,0,0,0,0),(1383,'2015-03-14 14:56:57','2015-08-29 14:46:06',1,30003121,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0),(1384,'2015-03-14 14:56:57','2015-03-14 14:56:57',1,30002882,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(1385,'2015-03-14 14:56:57','2015-08-29 14:46:06',1,30004434,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0),(1386,'2015-03-14 14:56:57','2015-08-29 14:46:06',1,30002375,0,0,0,0,0,0,0,0,0,0,0,0,0,3,4,1,0,0,0,0,0,0,0,0),(1387,'2015-03-14 14:56:57','2015-03-14 14:56:57',1,30004378,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(1388,'2015-03-14 14:56:57','2015-03-14 14:56:57',1,30000550,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(1389,'2015-03-14 14:56:57','2015-03-14 14:56:57',1,30000632,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(1390,'2015-03-14 14:56:57','2015-03-14 14:56:57',1,30003995,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(1391,'2015-03-14 14:56:57','2015-03-14 14:56:57',1,30003976,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(1392,'2015-03-14 14:56:57','2015-03-14 14:56:57',1,30001576,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(1393,'2015-03-14 14:56:57','2015-08-29 14:46:06',1,30004564,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,1,0,0,0,2,0,0,0),(1394,'2015-03-14 14:56:57','2015-03-14 14:56:57',1,30000278,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(1395,'2015-03-14 14:56:57','2015-03-14 14:56:57',1,30004818,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(1396,'2015-03-14 14:56:57','2015-03-14 14:56:57',1,30004651,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(1397,'2015-03-14 14:56:57','2015-03-14 14:56:57',1,30000302,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(1398,'2015-03-14 14:56:57','2015-03-14 14:56:57',1,30001992,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(1399,'2015-03-14 14:56:57','2015-08-29 14:46:06',1,30004319,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0),(1400,'2015-03-14 14:56:57','2015-08-29 14:46:06',1,30000772,1,1,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(1401,'2015-03-14 14:56:57','2015-03-14 14:56:57',1,30000273,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(1402,'2015-03-14 14:56:57','2015-03-14 14:56:57',1,30001085,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(1403,'2015-03-14 14:56:57','2015-08-29 14:46:06',1,30004372,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0),(1404,'2015-03-14 14:56:57','2015-08-29 14:46:06',1,30004365,0,0,0,0,0,0,2,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(1405,'2015-03-14 14:56:57','2015-03-14 14:56:57',1,30000567,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(1406,'2015-03-14 14:56:57','2015-08-29 14:46:06',1,30004600,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(1407,'2015-03-14 14:56:57','2015-08-29 14:46:06',1,30001124,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(1408,'2015-03-14 14:56:57','2015-03-14 14:56:57',1,30003692,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(1409,'2015-03-14 14:56:57','2015-08-29 14:46:06',1,30003169,0,0,0,0,0,0,0,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0),(1410,'2015-03-14 14:56:57','2015-03-14 14:56:57',1,30002367,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(1411,'2015-03-14 14:56:57','2015-03-14 14:56:57',1,30004380,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(1412,'2015-03-14 14:56:57','2015-03-14 14:56:57',1,30003113,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(1413,'2015-03-14 14:56:57','2015-03-14 14:56:57',1,30004889,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(1414,'2015-03-14 14:56:57','2015-03-14 14:56:57',1,30003670,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(1415,'2015-03-14 14:56:57','2015-03-14 14:56:57',1,30000568,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(1416,'2015-03-14 14:56:57','2015-08-29 14:46:06',1,30004493,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,1,0),(1417,'2015-03-14 14:56:57','2015-03-14 14:56:57',1,30003780,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(1418,'2015-03-14 14:56:57','2015-08-29 14:46:06',1,30000821,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(1419,'2015-03-14 14:56:57','2015-03-14 14:56:57',1,30004597,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(1420,'2015-03-14 14:56:58','2015-03-14 14:56:58',1,30004191,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(1421,'2015-03-14 14:56:58','2015-03-14 14:56:58',1,30001355,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(1422,'2015-03-14 14:56:58','2015-08-29 14:46:06',1,30000863,0,0,0,0,0,1,0,1,1,4,4,0,0,0,1,1,0,0,0,0,0,0,0,0),(1423,'2015-03-14 14:56:58','2015-08-29 14:46:06',1,30004824,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0),(1424,'2015-03-14 14:56:58','2015-08-29 14:46:06',1,30005190,0,0,0,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(1425,'2015-03-14 14:56:58','2015-03-14 14:56:58',1,30002858,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(1426,'2015-03-14 14:56:58','2015-03-14 14:56:58',1,30004798,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(1427,'2015-03-14 14:56:58','2015-08-29 14:46:06',1,30003697,0,0,5,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0),(1428,'2015-03-14 14:56:58','2015-03-14 14:56:58',1,30000446,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(1429,'2015-03-14 14:56:58','2015-03-14 14:56:58',1,30001533,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(1430,'2015-03-14 14:56:58','2015-03-14 14:56:58',1,30005122,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(1431,'2015-03-14 14:56:58','2015-03-14 14:56:58',1,30004791,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(1432,'2015-03-14 14:56:58','2015-08-29 14:46:06',1,30002915,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(1433,'2015-03-14 14:56:58','2015-03-14 14:56:58',1,30000700,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(1434,'2015-03-14 14:56:58','2015-08-29 14:46:06',1,30003676,0,0,0,0,0,2,0,0,1,0,1,0,0,0,0,0,0,1,4,4,0,0,0,0),(1435,'2015-03-14 14:56:58','2015-03-14 14:56:58',1,30000743,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(1436,'2015-03-14 14:56:58','2015-03-14 14:56:58',1,30000892,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(1437,'2015-03-14 14:56:58','2015-08-29 14:46:06',1,30003109,0,0,1,0,0,0,0,0,0,0,0,0,0,1,2,2,0,0,0,5,0,0,0,0),(1438,'2015-03-14 14:56:58','2015-03-14 14:56:58',1,30002315,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(1439,'2015-03-14 14:56:58','2015-03-14 14:56:58',1,30003934,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(1440,'2015-03-14 14:56:58','2015-03-14 14:56:58',1,30003569,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(1441,'2015-03-14 14:56:58','2015-03-14 14:56:58',1,30002207,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(1442,'2015-03-14 14:56:58','2015-08-29 14:46:06',1,30000049,0,0,0,0,0,0,0,0,0,0,0,0,0,2,2,1,0,0,0,0,0,0,1,0),(1443,'2015-03-14 14:56:58','2015-03-14 14:56:58',1,30005287,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(1444,'2015-03-14 14:56:58','2015-03-14 14:56:58',1,30002735,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(1445,'2015-03-14 14:56:58','2015-08-29 14:46:06',1,30003048,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,1,0),(1446,'2015-03-14 14:56:58','2015-08-29 14:46:06',1,30002645,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0),(1447,'2015-03-14 14:56:58','2015-03-14 14:56:58',1,30004973,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(1448,'2015-03-14 14:56:58','2015-03-14 14:56:58',1,30005026,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(1449,'2015-03-14 14:56:58','2015-08-29 14:46:06',1,30001205,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,2,0,0),(1450,'2015-03-14 14:56:58','2015-08-29 14:46:06',1,30001895,0,0,0,0,0,0,0,0,0,0,0,0,2,0,0,0,0,0,0,0,0,0,0,0),(1451,'2015-03-14 14:56:58','2015-08-29 14:46:06',1,30001206,0,0,0,0,0,0,0,0,2,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0),(1452,'2015-03-14 14:56:58','2015-03-14 14:56:58',1,30004180,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(1453,'2015-03-14 14:56:58','2015-03-14 14:56:58',1,30004841,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(1454,'2015-03-14 14:56:58','2015-08-29 14:46:06',1,30002906,0,0,1,0,0,2,0,0,0,0,0,0,2,1,0,0,0,0,0,0,0,5,0,0),(1455,'2015-03-14 14:56:58','2015-03-14 14:56:58',1,30005283,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(1456,'2015-03-14 14:56:58','2015-08-29 14:46:06',1,30004407,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0),(1457,'2015-03-14 14:56:58','2015-03-14 14:56:58',1,30002483,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(1458,'2015-03-14 14:56:58','2015-08-29 14:46:06',1,30004401,0,0,0,0,0,9,0,0,0,0,0,0,1,0,0,0,1,0,0,0,0,0,0,0),(1459,'2015-03-14 14:56:58','2015-08-29 14:46:06',1,30004601,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0),(1460,'2015-03-14 14:56:58','2015-03-14 14:56:58',1,30002688,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(1461,'2015-03-14 14:56:58','2015-03-14 14:56:58',1,30035042,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(1462,'2015-03-14 14:56:58','2015-08-29 14:46:06',1,30003905,0,1,0,0,0,1,1,0,0,0,0,0,1,1,0,0,0,0,2,1,0,0,0,0),(1463,'2015-03-14 14:56:58','2015-03-14 14:56:58',1,30005228,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(1464,'2015-03-14 14:56:58','2015-03-14 14:56:58',1,30001664,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(1465,'2015-03-14 14:56:58','2015-03-14 14:56:58',1,30004108,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(1466,'2015-03-14 14:56:58','2015-03-14 14:56:58',1,30025305,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(1467,'2015-03-14 14:56:58','2015-03-14 14:56:58',1,30004122,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(1468,'2015-03-14 14:56:58','2015-03-14 14:56:58',1,30005331,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(1469,'2015-03-14 14:56:58','2015-08-29 14:46:06',1,30003834,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(1470,'2015-03-14 14:56:58','2015-03-14 14:56:58',1,30004976,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(1471,'2015-03-14 14:56:58','2015-03-14 14:56:58',1,30002224,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(1472,'2015-03-14 14:56:58','2015-08-29 14:46:06',1,30003489,0,0,1,0,0,0,0,0,0,1,1,0,0,0,0,0,0,0,0,0,1,0,0,0),(1473,'2015-03-14 14:56:58','2015-03-14 14:56:58',1,30005237,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(1474,'2015-03-14 14:56:58','2015-08-29 14:46:06',1,30002667,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,3,1,0,0,0,0),(1475,'2015-03-14 14:56:58','2015-03-14 14:56:58',1,30003529,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(1476,'2015-03-14 14:56:58','2015-03-14 14:56:58',1,30003019,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(1477,'2015-03-14 14:56:58','2015-03-14 14:56:58',1,30005327,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(1478,'2015-03-14 14:56:58','2015-03-14 14:56:58',1,30003527,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(1479,'2015-03-14 14:56:58','2015-03-14 14:56:58',1,30004250,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(1480,'2015-03-14 14:56:58','2015-03-14 14:56:58',1,30000010,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(1481,'2015-03-14 14:56:58','2015-03-14 14:56:58',1,30005253,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(1482,'2015-03-14 14:56:58','2015-03-14 14:56:58',1,30003925,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(1483,'2015-03-14 14:56:58','2015-08-29 14:46:06',1,30005051,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(1484,'2015-03-14 14:56:58','2015-08-29 14:46:06',1,30002965,0,0,0,2,2,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0),(1485,'2015-03-14 14:56:58','2015-03-14 14:56:58',1,30004210,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(1486,'2015-03-14 14:56:58','2015-03-14 14:56:58',1,30000951,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(1487,'2015-03-14 14:56:58','2015-03-14 14:56:58',1,30003363,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(1488,'2015-03-14 14:56:58','2015-08-29 14:46:06',1,30005305,0,2,0,0,0,0,0,0,0,0,1,0,1,1,0,0,0,0,0,0,0,0,0,0),(1489,'2015-03-14 14:56:58','2015-03-14 14:56:58',1,30001926,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(1490,'2015-03-14 14:56:58','2015-03-14 14:56:58',1,30002127,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(1491,'2015-03-14 14:56:58','2015-08-29 14:46:06',1,30002170,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,9,3,0,1,0,0),(1492,'2015-03-14 14:56:58','2015-03-14 14:56:58',1,30001042,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(1493,'2015-03-14 14:56:58','2015-08-29 14:46:06',1,30001025,3,0,0,0,0,0,0,0,0,2,3,0,3,1,0,0,1,0,0,0,2,1,2,0),(1494,'2015-03-14 14:56:58','2015-03-14 14:56:58',1,30004565,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(1495,'2015-03-14 14:56:58','2015-08-29 14:46:06',1,30002362,0,0,0,0,0,0,1,3,2,1,0,0,2,0,0,0,0,0,0,0,1,0,0,0),(1496,'2015-03-14 14:56:58','2015-03-14 14:56:58',1,30004458,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(1497,'2015-03-14 14:56:58','2015-03-14 14:56:58',1,30001981,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(1498,'2015-03-14 14:56:58','2015-03-14 14:56:58',1,30035305,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(1499,'2015-03-14 14:56:58','2015-08-29 14:46:06',1,30003896,0,0,0,1,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(1500,'2015-03-14 14:56:58','2015-03-14 14:56:58',1,30002275,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(1501,'2015-03-14 14:56:58','2015-03-14 14:56:58',1,30005324,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(1502,'2015-03-14 14:56:58','2015-03-14 14:56:58',1,30002708,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(1503,'2015-03-14 14:56:58','2015-03-14 14:56:58',1,30001616,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(1504,'2015-03-14 14:56:58','2015-08-29 14:46:06',1,30045305,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0),(1505,'2015-03-14 14:56:58','2015-08-29 14:46:06',1,30005194,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0),(1506,'2015-03-14 14:56:58','2015-03-14 14:56:58',1,30005023,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(1507,'2015-03-14 14:56:58','2015-03-14 14:56:58',1,30001100,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(1508,'2015-03-14 14:56:58','2015-08-29 14:46:06',1,30001254,2,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(1509,'2015-03-14 14:56:58','2015-03-14 14:56:58',1,30001825,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(1510,'2015-03-14 14:56:58','2015-08-29 14:46:06',1,30004887,0,0,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(1511,'2015-03-14 14:56:58','2015-03-14 14:56:58',1,30003904,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(1512,'2015-03-14 14:56:58','2015-03-14 14:56:58',1,30003041,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(1513,'2015-03-14 14:56:58','2015-08-29 14:46:06',1,30002682,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0),(1514,'2015-03-14 14:56:58','2015-03-14 14:56:58',1,30045042,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(1515,'2015-03-14 14:56:58','2015-03-14 14:56:58',1,30003565,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(1516,'2015-03-14 14:56:58','2015-08-29 14:46:06',1,30005298,0,0,0,0,0,1,1,0,0,1,0,0,0,0,0,0,0,0,0,1,0,0,0,0),(1517,'2015-03-14 14:56:58','2015-08-29 14:46:06',1,30014971,2,4,1,0,1,1,0,5,0,2,0,2,4,1,0,0,1,2,0,0,0,1,0,0),(1518,'2015-03-14 14:56:58','2015-03-14 14:56:58',1,30003795,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(1519,'2015-03-14 14:56:58','2015-03-14 14:56:58',1,30003123,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(1520,'2015-03-14 14:56:58','2015-08-29 14:46:06',1,30002003,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(1521,'2015-03-14 14:56:58','2015-03-14 14:56:58',1,30003678,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(1522,'2015-03-14 14:56:58','2015-03-14 14:56:58',1,30000845,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(1523,'2015-03-14 14:56:58','2015-08-29 14:46:06',1,30002691,0,0,1,0,0,3,0,0,0,0,0,1,0,1,1,0,1,0,0,1,0,0,0,0),(1524,'2015-03-14 14:56:58','2015-03-14 14:56:58',1,30002705,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(1525,'2015-03-14 14:56:58','2015-03-14 14:56:58',1,30000923,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(1526,'2015-03-14 14:56:58','2015-08-29 14:46:06',1,30004357,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,0,0),(1527,'2015-03-14 14:56:58','2015-08-29 14:46:06',1,30001275,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(1528,'2015-03-14 14:56:58','2015-03-14 14:56:58',1,30004530,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(1529,'2015-03-14 14:56:58','2015-08-29 14:46:06',1,30002373,0,0,0,0,0,0,0,0,0,0,0,0,0,1,2,1,0,0,0,0,0,0,0,0),(1530,'2015-03-14 14:56:58','2015-03-14 14:56:58',1,30002896,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(1531,'2015-03-14 14:56:58','2015-08-29 14:46:06',1,30003802,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(1532,'2015-03-14 14:56:58','2015-08-29 14:46:06',1,30004200,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(1533,'2015-03-14 14:56:58','2015-03-14 14:56:58',1,30001034,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(1534,'2015-03-14 14:56:58','2015-03-14 14:56:58',1,30001472,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(1535,'2015-03-14 14:56:58','2015-08-29 14:46:06',1,30004939,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(1536,'2015-03-14 14:56:58','2015-03-14 14:56:58',1,30004335,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(1537,'2015-03-14 14:56:58','2015-08-29 14:46:06',1,30001224,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0),(1538,'2015-03-14 14:56:58','2015-08-29 14:46:06',1,30004072,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(1539,'2015-03-14 14:56:58','2015-03-14 14:56:58',1,30004799,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(1540,'2015-03-14 14:56:58','2015-03-14 14:56:58',1,30001979,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(1541,'2015-03-14 14:56:58','2015-03-14 14:56:58',1,30003371,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(1542,'2015-03-14 14:56:58','2015-03-14 14:56:58',1,30002312,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(1543,'2015-03-14 14:56:58','2015-03-14 14:56:58',1,30001496,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(1544,'2015-03-14 14:56:58','2015-03-14 14:56:58',1,30003134,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(1545,'2015-03-14 14:56:58','2015-08-29 14:46:06',1,30002953,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0),(1546,'2015-03-14 14:56:58','2015-08-29 14:46:06',1,30001253,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0),(1547,'2015-03-14 14:56:58','2015-03-14 14:56:58',1,30000461,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(1548,'2015-03-14 14:56:58','2015-08-29 14:46:06',1,30004750,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0),(1549,'2015-03-14 14:56:58','2015-03-14 14:56:58',1,30000613,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(1550,'2015-03-14 14:56:58','2015-03-14 14:56:58',1,30002838,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(1551,'2015-03-14 14:56:58','2015-08-29 14:46:06',1,30003727,0,0,0,0,0,0,0,0,0,1,0,0,1,0,0,0,0,0,0,0,0,0,1,0),(1552,'2015-03-14 14:56:58','2015-08-29 14:46:06',1,30001272,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0),(1553,'2015-03-14 14:56:58','2015-03-14 14:56:58',1,30004813,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(1554,'2015-03-14 14:56:58','2015-03-14 14:56:58',1,30003358,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(1555,'2015-03-14 14:56:58','2015-03-14 14:56:58',1,30002149,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(1556,'2015-03-14 14:56:58','2015-03-14 14:56:58',1,30002304,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(1557,'2015-03-14 14:56:58','2015-03-14 14:56:58',1,30003115,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(1558,'2015-03-14 14:56:58','2015-08-29 14:46:06',1,30003709,0,0,0,0,0,0,0,1,0,0,0,2,1,1,1,0,0,0,0,1,0,0,1,0),(1559,'2015-03-14 14:56:58','2015-08-29 14:46:06',1,30002481,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,1,0,0,0),(1560,'2015-03-14 14:56:58','2015-08-29 14:46:06',1,30002347,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(1561,'2015-03-14 14:56:58','2015-03-14 14:56:58',1,30001761,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(1562,'2015-03-14 14:56:58','2015-08-29 14:46:06',1,30002626,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(1563,'2015-03-14 14:56:58','2015-03-14 14:56:58',1,30002366,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(1564,'2015-03-14 14:56:58','2015-08-29 14:46:06',1,30000826,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0),(1565,'2015-03-14 14:56:58','2015-03-14 14:56:58',1,30000340,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(1566,'2015-03-14 14:56:58','2015-03-14 14:56:58',1,30003135,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(1567,'2015-03-14 14:56:58','2015-08-29 14:46:06',1,30004622,0,3,5,2,4,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(1568,'2015-03-14 14:56:58','2015-03-14 14:56:58',1,30005125,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(1569,'2015-03-14 14:56:58','2015-03-14 14:56:58',1,30001299,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(1570,'2015-03-14 14:56:58','2015-08-29 14:46:06',1,30004730,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0),(1571,'2015-03-14 14:56:58','2015-03-14 14:56:58',1,30002430,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(1572,'2015-03-14 14:56:58','2015-08-29 14:46:06',1,30002036,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0),(1573,'2015-03-14 14:56:58','2015-03-14 14:56:58',1,30004588,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(1574,'2015-03-14 14:56:58','2015-03-14 14:56:58',1,30004902,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(1575,'2015-03-14 14:56:58','2015-03-14 14:56:58',1,30002295,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(1576,'2015-03-14 14:56:58','2015-08-29 14:46:06',1,30004491,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0),(1577,'2015-03-14 14:56:58','2015-08-29 14:46:06',1,30004626,0,0,0,0,0,0,0,0,0,0,0,2,1,0,0,0,0,0,0,0,0,0,1,0),(1578,'2015-03-14 14:56:58','2015-03-14 14:56:58',1,30004386,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(1579,'2015-03-14 14:56:58','2015-08-29 14:46:06',1,30004502,0,0,0,0,0,1,0,0,0,2,1,0,1,0,0,0,0,0,0,0,0,0,0,0),(1580,'2015-03-14 14:56:58','2015-08-29 14:46:06',1,30003724,0,2,0,0,1,0,0,0,0,1,0,0,0,0,0,0,0,0,5,0,1,0,0,0),(1581,'2015-03-14 14:56:58','2015-03-14 14:56:58',1,30004480,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(1582,'2015-03-14 14:56:58','2015-08-29 14:46:06',1,30000867,0,0,1,0,0,0,0,0,4,2,3,0,1,0,0,0,0,2,1,0,2,0,1,0),(1583,'2015-03-14 14:56:58','2015-08-29 14:46:06',1,30001968,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0),(1584,'2015-03-14 14:56:58','2015-08-29 14:46:06',1,30003345,1,0,1,1,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0),(1585,'2015-03-14 14:56:58','2015-08-29 14:46:06',1,30001010,0,0,0,0,0,0,0,0,1,1,0,0,5,0,0,2,1,0,0,6,4,1,0,0),(1586,'2015-03-14 14:56:58','2015-03-14 14:56:58',1,30000327,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(1587,'2015-03-14 14:56:58','2015-08-29 14:46:06',1,30001881,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0),(1588,'2015-03-14 14:56:58','2015-03-14 14:56:58',1,30004222,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(1589,'2015-03-14 14:56:58','2015-08-29 14:46:06',1,30001660,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0),(1590,'2015-03-14 14:56:58','2015-08-29 14:46:06',1,30001921,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0),(1591,'2015-03-14 14:56:58','2015-03-14 14:56:58',1,30001083,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(1592,'2015-03-14 14:56:58','2015-03-14 14:56:58',1,30002233,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(1593,'2015-03-14 14:56:58','2015-08-29 14:46:06',1,30002541,0,0,1,0,0,0,0,0,1,1,1,0,1,0,0,0,0,1,2,0,0,1,0,0),(1594,'2015-03-14 14:56:58','2015-03-14 14:56:58',1,30002513,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(1595,'2015-03-14 14:56:58','2015-03-14 14:56:58',1,30003912,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(1596,'2015-03-14 14:56:58','2015-03-14 14:56:58',1,30004097,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(1597,'2015-03-14 14:56:58','2015-08-29 14:46:06',1,30003451,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(1598,'2015-03-14 14:56:58','2015-03-14 14:56:58',1,30001356,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(1599,'2015-03-14 14:56:58','2015-08-29 14:46:06',1,30005044,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0),(1600,'2015-03-14 14:56:58','2015-08-29 14:46:06',1,30005074,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0),(1601,'2015-03-14 14:56:58','2015-03-14 14:56:58',1,30001420,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(1602,'2015-03-14 14:56:58','2015-08-29 14:46:06',1,30003797,0,0,0,0,0,0,0,0,2,0,0,0,0,0,0,1,0,0,0,0,1,0,0,0),(1603,'2015-03-14 14:56:58','2015-03-14 14:56:58',1,30003405,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(1604,'2015-03-14 14:56:58','2015-03-14 14:56:58',1,30000253,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(1605,'2015-03-14 14:56:58','2015-03-14 14:56:58',1,30004524,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(1606,'2015-03-14 14:56:58','2015-08-29 14:46:06',1,30004470,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0),(1607,'2015-03-14 14:56:58','2015-08-29 14:46:06',1,30004595,0,0,0,0,0,1,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0),(1608,'2015-03-14 14:56:58','2015-03-14 14:56:58',1,30000877,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(1609,'2015-03-14 14:56:58','2015-03-14 14:56:58',1,30003364,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(1610,'2015-03-14 14:56:58','2015-03-14 14:56:58',1,30004311,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(1611,'2015-03-14 14:56:58','2015-03-14 14:56:58',1,30003644,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(1612,'2015-03-14 14:56:58','2015-03-14 14:56:58',1,30002631,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(1613,'2015-03-14 14:56:58','2015-08-29 14:46:06',1,30000663,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(1614,'2015-03-14 14:56:58','2015-03-14 14:56:58',1,30005093,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(1615,'2015-03-14 14:56:58','2015-03-14 14:56:58',1,30000954,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(1616,'2015-03-14 14:56:58','2015-03-14 14:56:58',1,30005285,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(1617,'2015-03-14 14:56:58','2015-08-29 14:46:06',1,30002635,0,2,1,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,2,0,0,1,0),(1618,'2015-03-14 14:56:58','2015-08-29 14:46:06',1,30013489,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,1,0,0,0),(1619,'2015-03-14 14:56:58','2015-08-29 14:46:06',1,30004284,0,0,0,0,0,0,0,0,0,0,0,0,9,0,0,1,0,0,0,0,0,0,0,0),(1620,'2015-03-14 14:56:58','2015-03-14 14:56:58',1,30004105,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(1621,'2015-03-14 14:56:58','2015-08-29 14:46:06',1,30002681,0,2,0,0,1,0,0,0,1,0,0,1,0,0,0,0,1,1,0,0,1,1,0,0),(1622,'2015-03-14 14:56:58','2015-03-14 14:56:58',1,30004987,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(1623,'2015-03-14 14:56:58','2015-03-14 14:56:58',1,30005025,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(1624,'2015-03-14 14:56:58','2015-08-29 14:46:06',1,30004985,0,2,0,1,1,0,0,0,0,0,0,0,2,0,0,0,1,0,0,1,1,0,0,0),(1625,'2015-03-14 14:56:58','2015-03-14 14:56:58',1,30000816,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(1626,'2015-03-14 14:56:58','2015-03-14 14:56:58',1,30001557,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(1627,'2015-03-14 14:56:58','2015-08-29 14:46:06',1,30000441,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,1,0,0,0,0,1,0,0,0),(1628,'2015-03-14 14:56:58','2015-08-29 14:46:06',1,30004016,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,0,0,0,0,0),(1629,'2015-03-14 14:56:58','2015-03-14 14:56:58',1,30003187,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(1630,'2015-03-14 14:56:58','2015-03-14 14:56:58',1,30005229,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(1631,'2015-03-14 14:56:58','2015-03-14 14:56:58',1,30003156,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(1632,'2015-03-14 14:56:58','2015-08-29 14:46:06',1,30002967,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(1633,'2015-03-14 14:56:58','2015-03-14 14:56:58',1,30003924,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(1634,'2015-03-14 14:56:58','2015-03-14 14:56:58',1,30002646,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(1635,'2015-03-14 14:56:58','2015-03-14 14:56:58',1,30003461,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(1636,'2015-03-14 14:56:58','2015-08-29 14:46:06',1,30002968,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,3,0,0,0,0),(1637,'2015-03-14 14:56:58','2015-08-29 14:46:06',1,30001781,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,0,0,0),(1638,'2015-03-14 14:56:58','2015-03-14 14:56:58',1,30005262,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(1639,'2015-03-14 14:56:58','2015-03-14 14:56:58',1,30004903,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(1640,'2015-03-14 14:56:58','2015-08-29 14:46:06',1,30001994,0,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(1641,'2015-03-14 14:56:58','2015-03-14 14:56:58',1,30004207,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(1642,'2015-03-14 14:56:58','2015-03-14 14:56:58',1,30001960,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(1643,'2015-03-14 14:56:58','2015-03-14 14:56:58',1,30002920,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(1644,'2015-03-14 14:56:58','2015-03-14 14:56:58',1,30003170,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(1645,'2015-03-14 14:56:58','2015-03-14 14:56:58',1,30000879,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(1646,'2015-03-14 14:56:58','2015-03-14 14:56:58',1,30001632,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(1647,'2015-03-14 14:56:58','2015-08-29 14:46:06',1,30004195,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(1648,'2015-03-14 14:56:58','2015-03-14 14:56:58',1,30003157,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(1649,'2015-03-14 14:56:58','2015-08-29 14:46:06',1,30003762,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,1,0,0,0,0),(1650,'2015-03-14 14:56:58','2015-08-29 14:46:06',1,30003681,0,0,0,0,0,7,0,0,0,0,0,0,1,1,1,0,0,0,0,0,0,0,0,0),(1651,'2015-03-14 14:56:58','2015-03-14 14:56:58',1,30001130,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(1652,'2015-03-14 14:56:58','2015-03-14 14:56:58',1,30002685,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(1653,'2015-03-14 14:56:58','2015-08-29 14:46:06',1,30002659,4,7,3,0,0,2,2,4,6,6,2,5,5,11,10,10,3,3,4,4,6,9,2,0),(1654,'2015-03-14 14:56:58','2015-03-14 14:56:58',1,30005226,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(1655,'2015-03-14 14:56:58','2015-03-14 14:56:58',1,30000038,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(1656,'2015-03-14 14:56:58','2015-08-29 14:46:06',1,30001047,0,2,0,5,3,0,1,0,9,3,3,0,3,2,3,4,0,2,1,1,0,0,0,0),(1657,'2015-03-14 14:56:58','2015-08-29 14:46:06',1,30003807,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(1658,'2015-03-14 14:56:58','2015-03-14 14:56:58',1,30002706,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(1659,'2015-03-14 14:56:58','2015-03-14 14:56:58',1,30005293,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(1660,'2015-03-14 14:56:58','2015-03-14 14:56:58',1,30002014,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(1661,'2015-03-14 14:56:58','2015-03-14 14:56:58',1,30001912,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(1662,'2015-03-14 14:56:58','2015-08-29 14:46:06',1,30003721,0,0,0,0,0,0,0,0,0,0,0,0,0,2,2,0,0,0,0,0,0,0,0,0),(1663,'2015-03-14 14:56:58','2015-08-29 14:46:06',1,30003314,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0),(1664,'2015-03-14 14:56:58','2015-08-29 14:46:06',1,30002184,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0),(1665,'2015-03-14 14:56:58','2015-08-29 14:46:06',1,30004078,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(1666,'2015-03-14 14:56:58','2015-08-29 14:46:06',1,30005011,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0),(1667,'2015-03-14 14:56:58','2015-03-14 14:56:58',1,30003992,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(1668,'2015-03-14 14:56:58','2015-03-14 14:56:58',1,30003193,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(1669,'2015-03-14 14:56:58','2015-08-29 14:46:06',1,30001831,1,0,0,0,0,0,1,0,0,0,0,1,0,1,1,0,0,0,1,0,9,0,1,0),(1670,'2015-03-14 14:56:58','2015-03-14 14:56:58',1,30001610,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(1671,'2015-03-14 14:56:58','2015-03-14 14:56:58',1,30004806,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(1672,'2015-03-14 14:56:58','2015-03-14 14:56:58',1,30002041,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(1673,'2015-03-14 14:56:58','2015-03-14 14:56:58',1,30003108,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(1674,'2015-03-14 14:56:58','2015-08-29 14:46:06',1,30002633,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,0,0,0,0,0,0),(1675,'2015-03-14 14:56:58','2015-03-14 14:56:58',1,30002076,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(1676,'2015-03-14 14:56:58','2015-03-14 14:56:58',1,30000396,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(1677,'2015-03-14 14:56:58','2015-03-14 14:56:58',1,30002520,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(1678,'2015-03-14 14:56:58','2015-03-14 14:56:58',1,30002670,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(1679,'2015-03-14 14:56:58','2015-03-14 14:56:58',1,30000595,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(1680,'2015-03-14 14:56:58','2015-08-29 14:46:06',1,30004971,0,0,1,0,0,2,0,1,1,0,1,0,0,0,0,0,1,0,1,0,0,1,1,0),(1681,'2015-03-14 14:56:58','2015-08-29 14:46:06',1,30004418,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0),(1682,'2015-03-14 14:56:58','2015-03-14 14:56:58',1,30003359,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(1683,'2015-03-14 14:56:58','2015-03-14 14:56:58',1,30001504,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(1684,'2015-03-14 14:56:58','2015-03-14 14:56:58',1,30001581,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(1685,'2015-03-14 14:56:58','2015-03-14 14:56:58',1,30000518,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(1686,'2015-03-14 14:56:58','2015-03-14 14:56:58',1,30002146,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(1687,'2015-03-14 14:56:58','2015-03-14 14:56:58',1,30003682,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(1688,'2015-03-14 14:56:58','2015-03-14 14:56:58',1,30000516,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(1689,'2015-03-14 14:56:58','2015-03-14 14:56:58',1,30000490,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(1690,'2015-03-14 14:56:58','2015-03-14 14:56:58',1,30002599,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(1691,'2015-03-14 14:56:58','2015-08-29 14:46:06',1,30004042,1,0,0,0,0,0,0,0,3,3,0,0,0,0,0,0,0,0,1,1,0,0,0,0),(1692,'2015-03-14 14:56:58','2015-08-29 14:46:06',1,30002119,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0),(1693,'2015-03-14 14:56:58','2015-03-14 14:56:58',1,30002378,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(1694,'2015-03-14 14:56:58','2015-03-14 14:56:58',1,30003196,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(1695,'2015-03-14 14:56:58','2015-03-14 14:56:58',1,30000102,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(1696,'2015-03-14 14:56:58','2015-03-14 14:56:58',1,30004852,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(1697,'2015-03-14 14:56:58','2015-03-14 14:56:58',1,30000502,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(1698,'2015-03-14 14:56:58','2015-03-14 14:56:58',1,30001294,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(1699,'2015-03-14 14:56:58','2015-08-29 14:46:06',1,30002477,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0),(1700,'2015-03-14 14:56:58','2015-08-29 14:46:06',1,30003677,0,0,0,0,0,0,1,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(1701,'2015-03-14 14:56:58','2015-03-14 14:56:58',1,30000503,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(1702,'2015-03-14 14:56:58','2015-03-14 14:56:58',1,30004186,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(1703,'2015-03-14 14:56:58','2015-03-14 14:56:58',1,30001530,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(1704,'2015-03-14 14:56:58','2015-03-14 14:56:58',1,30004567,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(1705,'2015-03-14 14:56:58','2015-03-14 14:56:58',1,30004181,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(1706,'2015-03-14 14:56:58','2015-03-14 14:56:58',1,30001834,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(1707,'2015-03-14 14:56:58','2015-03-14 14:56:58',1,30000257,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(1708,'2015-03-14 14:56:58','2015-03-14 14:56:58',1,30004948,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(1709,'2015-03-14 14:56:58','2015-03-14 14:56:58',1,30004217,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(1710,'2015-03-14 14:56:58','2015-08-29 14:46:06',1,30002922,0,0,1,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0),(1711,'2015-03-14 14:56:58','2015-03-14 14:56:58',1,30004546,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(1712,'2015-03-14 14:56:58','2015-03-14 14:56:58',1,30000531,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(1713,'2015-03-14 14:56:58','2015-08-29 14:46:06',1,30000846,0,2,0,0,0,0,0,0,0,5,37,12,4,1,1,0,0,0,1,0,1,0,1,0),(1714,'2015-03-14 14:56:58','2015-08-29 14:46:06',1,30004451,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,1,0,0,1,0),(1715,'2015-03-14 14:56:58','2015-03-14 14:56:58',1,30001620,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(1716,'2015-03-14 14:56:58','2015-03-14 14:56:58',1,30000283,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(1717,'2015-03-14 14:56:58','2015-03-14 14:56:58',1,30004028,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(1718,'2015-03-14 14:56:58','2015-08-29 14:46:06',1,30005100,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(1719,'2015-03-14 14:56:58','2015-03-14 14:56:58',1,30003732,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(1720,'2015-03-14 14:56:58','2015-08-29 14:46:06',1,30001229,0,0,0,1,0,1,0,0,0,0,0,0,0,2,0,0,1,0,0,0,0,0,0,0),(1721,'2015-03-14 14:56:58','2015-08-29 14:46:06',1,30002032,0,0,0,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(1722,'2015-03-14 14:56:58','2015-08-29 14:46:06',1,30000903,1,0,0,0,0,0,0,0,0,1,0,0,0,0,1,1,0,0,3,0,0,0,1,0),(1723,'2015-03-14 14:56:58','2015-08-29 14:46:06',1,30004208,0,0,0,0,0,0,0,0,0,1,2,0,0,0,0,0,0,0,1,1,0,0,0,0),(1724,'2015-03-14 14:56:58','2015-08-29 14:46:06',1,30001214,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,1,0,1,0,1,0,0),(1725,'2015-03-14 14:56:58','2015-03-14 14:56:58',1,30001334,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(1726,'2015-03-14 14:56:58','2015-03-14 14:56:58',1,30002136,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(1727,'2015-03-14 14:56:58','2015-03-14 14:56:58',1,30003136,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(1728,'2015-03-14 14:56:58','2015-08-29 14:46:06',1,30000612,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0),(1729,'2015-03-14 14:56:58','2015-08-29 14:46:06',1,30004959,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0),(1730,'2015-03-14 14:56:58','2015-03-14 14:56:58',1,30001462,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(1731,'2015-03-14 14:56:58','2015-08-29 14:46:06',1,30001217,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0),(1732,'2015-03-14 14:56:58','2015-03-14 14:56:58',1,30004725,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(1733,'2015-03-14 14:56:58','2015-08-29 14:46:06',1,30002931,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,1,0,0),(1734,'2015-03-14 14:56:58','2015-03-14 14:56:58',1,30001527,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(1735,'2015-03-14 14:56:58','2015-03-14 14:56:58',1,30000524,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(1736,'2015-03-14 14:56:58','2015-03-14 14:56:58',1,30000634,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(1737,'2015-03-14 14:56:58','2015-03-14 14:56:58',1,30003242,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(1738,'2015-03-14 14:56:58','2015-03-14 14:56:58',1,30001909,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(1739,'2015-03-14 14:56:58','2015-03-14 14:56:58',1,30002605,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(1740,'2015-03-14 14:56:58','2015-03-14 14:56:58',1,30002349,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(1741,'2015-03-14 14:56:58','2015-03-14 14:56:58',1,30002163,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(1742,'2015-03-14 14:56:58','2015-03-14 14:56:58',1,30004499,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(1743,'2015-03-14 14:56:58','2015-03-14 14:56:58',1,30003694,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(1744,'2015-03-14 14:56:58','2015-03-14 14:56:58',1,30002124,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(1745,'2015-03-14 14:56:58','2015-03-14 14:56:58',1,30003476,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(1746,'2015-03-14 14:56:58','2015-08-29 14:46:06',1,30003438,0,1,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(1747,'2015-03-14 14:56:58','2015-03-14 14:56:58',1,30003441,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(1748,'2015-03-14 14:56:58','2015-08-29 14:46:06',1,30001933,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(1749,'2015-03-14 14:56:58','2015-03-14 14:56:58',1,30002281,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(1750,'2015-03-14 14:56:58','2015-03-14 14:56:58',1,30005291,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(1751,'2015-03-14 14:56:58','2015-03-14 14:56:58',1,30002535,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(1752,'2015-03-14 14:56:58','2015-03-14 14:56:58',1,30002196,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(1753,'2015-03-14 14:56:58','2015-03-14 14:56:58',1,30002269,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(1754,'2015-03-14 14:56:58','2015-03-14 14:56:58',1,30002536,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(1755,'2015-03-14 14:56:58','2015-08-29 14:46:06',1,30002094,0,0,0,0,0,0,0,0,1,0,0,1,0,1,1,0,0,0,0,1,0,0,0,0),(1756,'2015-03-14 14:56:58','2015-03-14 14:56:58',1,30002277,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(1757,'2015-03-14 14:56:58','2015-08-29 14:46:06',1,30001984,1,0,7,7,11,0,5,0,5,0,1,2,3,4,2,4,3,25,3,6,0,8,2,0),(1758,'2015-03-14 14:56:58','2015-08-29 14:46:06',1,30004020,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,0,0,0,0),(1759,'2015-03-14 14:56:58','2015-03-14 14:56:58',1,30003911,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(1760,'2015-03-14 14:56:58','2015-03-14 14:56:58',1,30002552,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(1761,'2015-03-14 14:56:58','2015-03-14 14:56:58',1,30004256,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(1762,'2015-03-14 14:56:58','2015-08-29 14:46:06',1,30002518,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(1763,'2015-03-14 14:56:58','2015-03-14 14:56:58',1,30000486,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(1764,'2015-03-14 14:56:58','2015-08-29 14:46:06',1,30003355,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(1765,'2015-03-14 14:56:58','2015-08-29 14:46:06',1,30005104,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0),(1766,'2015-03-14 14:56:58','2015-08-29 14:46:06',1,30003892,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(1767,'2015-03-14 14:56:58','2015-08-29 14:46:06',1,30000783,0,1,0,0,0,2,0,0,0,0,0,0,0,2,1,0,0,1,1,0,0,0,0,0),(1768,'2015-03-14 14:56:58','2015-08-29 14:46:06',1,30004297,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(1769,'2015-03-14 14:56:58','2015-08-29 14:46:06',1,30002420,0,0,0,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0),(1770,'2015-03-14 14:56:58','2015-03-14 14:56:58',1,30003401,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(1771,'2015-03-14 14:56:58','2015-08-29 14:46:06',1,30002693,1,1,0,1,1,0,0,1,1,0,0,2,3,0,0,0,0,1,2,0,2,1,2,0),(1772,'2015-03-14 14:56:58','2015-08-29 14:46:06',1,30003605,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0),(1773,'2015-03-14 14:56:58','2015-08-29 14:46:06',1,30002660,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(1774,'2015-03-14 14:56:58','2015-08-29 14:46:06',1,30002099,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,1,2,0,0,1,0),(1775,'2015-03-14 14:56:58','2015-03-14 14:56:58',1,30002563,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(1776,'2015-03-14 14:56:58','2015-03-14 14:56:58',1,30000373,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(1777,'2015-03-14 14:56:58','2015-08-29 14:46:06',1,30005108,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(1778,'2015-03-14 14:56:58','2015-08-29 14:46:06',1,30045319,0,0,0,0,0,0,1,0,1,0,0,0,1,0,0,0,0,0,0,0,1,0,1,0),(1779,'2015-03-14 14:56:58','2015-08-29 14:46:06',1,30002997,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,0,0,0,0),(1780,'2015-03-14 14:56:58','2015-03-14 14:56:58',1,30004586,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(1781,'2015-03-14 14:56:58','2015-08-29 14:46:06',1,30000249,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0),(1782,'2015-03-14 14:56:58','2015-08-29 14:46:06',1,30002555,1,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(1783,'2015-03-14 14:56:58','2015-03-14 14:56:58',1,30000577,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(1784,'2015-03-14 14:56:58','2015-03-14 14:56:58',1,30003393,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(1785,'2015-03-14 14:56:58','2015-03-14 14:56:58',1,30004946,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(1786,'2015-03-14 14:56:58','2015-08-29 14:46:06',1,30000655,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(1787,'2015-03-14 14:56:58','2015-03-14 14:56:58',1,30002740,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(1788,'2015-03-14 14:56:58','2015-03-14 14:56:58',1,30001307,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(1789,'2015-03-14 14:56:58','2015-03-14 14:56:58',1,30004204,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(1790,'2015-03-14 14:56:58','2015-08-29 14:46:06',1,30000814,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(1791,'2015-03-14 14:56:58','2015-03-14 14:56:58',1,30000083,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(1792,'2015-03-14 14:56:58','2015-03-14 14:56:58',1,30001313,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(1793,'2015-03-14 14:56:58','2015-03-14 14:56:58',1,30003494,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(1794,'2015-03-14 14:56:58','2015-03-14 14:56:58',1,30000740,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(1795,'2015-03-14 14:56:58','2015-03-14 14:56:58',1,30005317,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(1796,'2015-03-14 14:56:58','2015-08-29 14:46:06',1,30001378,0,0,1,1,1,1,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0),(1797,'2015-03-14 14:56:58','2015-03-14 14:56:58',1,30001970,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(1798,'2015-03-14 14:56:58','2015-08-29 14:46:06',1,30001434,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0),(1799,'2015-03-14 14:56:58','2015-08-29 14:46:06',1,30003044,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,2,0,0,0,2,0,0,0),(1800,'2015-03-14 14:56:58','2015-03-14 14:56:58',1,30003462,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(1801,'2015-03-14 14:56:58','2015-08-29 14:46:06',1,30002398,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(1802,'2015-03-14 14:56:58','2015-03-14 14:56:58',1,30005315,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(1803,'2015-03-14 14:56:58','2015-03-14 14:56:58',1,30003412,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(1804,'2015-03-14 14:56:58','2015-03-14 14:56:58',1,30005313,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(1805,'2015-03-14 14:56:58','2015-03-14 14:56:58',1,30004149,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(1806,'2015-03-14 14:56:58','2015-08-29 14:46:06',1,30001399,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,1,0,0,1,0,0,0,0),(1807,'2015-03-14 14:56:58','2015-08-29 14:46:06',1,30003570,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(1808,'2015-03-14 14:56:58','2015-08-29 14:46:06',1,30045336,1,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,0,0,0,0),(1809,'2015-03-14 14:56:58','2015-03-14 14:56:58',1,30023410,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(1810,'2015-03-14 14:56:58','2015-03-14 14:56:58',1,30004880,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(1811,'2015-03-14 14:56:58','2015-03-14 14:56:58',1,30002548,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(1812,'2015-03-14 14:56:58','2015-08-29 14:46:06',1,30001672,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0),(1813,'2015-03-14 14:56:58','2015-03-14 14:56:58',1,30005202,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(1814,'2015-03-14 14:56:58','2015-03-14 14:56:58',1,30003662,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(1815,'2015-03-14 14:56:58','2015-03-14 14:56:58',1,30003337,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(1816,'2015-03-14 14:56:58','2015-03-14 14:56:58',1,30005082,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(1817,'2015-03-14 14:56:58','2015-08-29 14:46:06',1,30045339,0,0,0,0,0,0,1,0,1,0,1,1,2,1,0,0,0,0,0,0,0,0,0,0),(1818,'2015-03-14 14:56:58','2015-03-14 14:56:58',1,30001430,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(1819,'2015-03-14 14:56:58','2015-03-14 14:56:58',1,30003424,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(1820,'2015-03-14 14:56:58','2015-08-29 14:46:06',1,30002769,0,0,0,2,1,1,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,1,0),(1821,'2015-03-14 14:56:58','2015-03-14 14:56:58',1,30002558,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(1822,'2015-03-14 14:56:58','2015-03-14 14:56:58',1,30003045,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(1823,'2015-03-14 14:56:58','2015-03-14 14:56:58',1,30003454,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(1824,'2015-03-14 14:56:58','2015-08-29 14:46:06',1,30002412,0,0,1,0,0,0,0,0,0,0,1,0,0,1,0,0,1,0,0,0,0,0,0,0),(1825,'2015-03-14 14:56:58','2015-08-29 14:46:06',1,30002475,0,0,0,0,0,0,0,0,1,0,0,0,1,0,0,0,0,0,0,0,0,0,3,0),(1826,'2015-03-14 14:56:58','2015-03-14 14:56:58',1,30000980,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(1827,'2015-03-14 14:56:58','2015-03-14 14:56:58',1,30001942,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(1828,'2015-03-14 14:56:58','2015-03-14 14:56:58',1,30003612,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(1829,'2015-03-14 14:56:58','2015-03-14 14:56:58',1,30002845,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(1830,'2015-03-14 14:56:58','2015-03-14 14:56:58',1,30004388,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(1831,'2015-03-14 14:56:58','2015-03-14 14:56:58',1,30004835,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(1832,'2015-03-14 14:56:58','2015-03-14 14:56:58',1,30001035,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(1833,'2015-03-14 14:56:58','2015-03-14 14:56:58',1,30000676,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(1834,'2015-03-14 14:56:58','2015-03-14 14:56:58',1,30003413,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(1835,'2015-03-14 14:56:58','2015-08-29 14:46:06',1,30002810,0,0,0,2,1,0,0,0,1,0,0,0,0,0,0,0,0,1,0,0,0,0,1,0),(1836,'2015-03-14 14:56:58','2015-03-14 14:56:58',1,30002969,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(1837,'2015-03-14 14:56:58','2015-03-14 14:56:58',1,30033410,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(1838,'2015-03-14 14:56:58','2015-03-14 14:56:58',1,30001371,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(1839,'2015-03-14 14:56:58','2015-08-29 14:46:06',1,30002742,0,0,0,0,0,0,0,0,0,0,0,0,2,0,0,0,0,0,0,0,0,0,0,0),(1840,'2015-03-14 14:56:58','2015-03-14 14:56:58',1,30003472,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(1841,'2015-03-14 14:56:58','2015-08-29 14:46:06',1,30003078,0,0,2,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(1842,'2015-03-14 14:56:58','2015-03-14 14:56:58',1,30003463,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(1843,'2015-03-14 14:56:58','2015-08-29 14:46:06',1,30002640,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,0,0,0),(1844,'2015-03-14 14:56:58','2015-03-14 14:56:58',1,30003425,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(1845,'2015-03-14 14:56:58','2015-03-14 14:56:58',1,30003419,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(1846,'2015-03-14 14:56:58','2015-03-14 14:56:58',1,30004259,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(1847,'2015-03-14 14:56:58','2015-08-29 14:46:06',1,30000203,0,2,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(1848,'2015-03-14 14:56:58','2015-03-14 14:56:58',1,30003867,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(1849,'2015-03-14 14:56:58','2015-08-29 14:46:06',1,30001233,2,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0),(1850,'2015-03-14 14:56:58','2015-03-14 14:56:58',1,30003537,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(1851,'2015-03-14 14:56:58','2015-03-14 14:56:58',1,30004033,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(1852,'2015-03-14 14:56:58','2015-03-14 14:56:58',1,30001029,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(1853,'2015-03-14 14:56:58','2015-08-29 14:46:06',1,30001736,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0),(1854,'2015-03-14 14:56:58','2015-03-14 14:56:58',1,30004305,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(1855,'2015-03-14 14:56:58','2015-08-29 14:46:06',1,30004603,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,0,0,0,0),(1856,'2015-03-14 14:56:58','2015-08-29 14:46:06',1,30002964,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(1857,'2015-03-14 14:56:58','2015-08-29 14:46:06',1,30003842,0,0,0,0,0,0,0,0,2,2,2,0,0,0,0,0,1,1,0,1,0,0,2,0),(1858,'2015-03-14 14:56:58','2015-03-14 14:56:58',1,30000028,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(1859,'2015-03-14 14:56:58','2015-03-14 14:56:58',1,30000091,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(1860,'2015-03-14 14:56:58','2015-03-14 14:56:58',1,30000137,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(1861,'2015-03-14 14:56:58','2015-08-29 14:46:06',1,30002730,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0),(1862,'2015-03-14 14:56:58','2015-03-14 14:56:58',1,30003822,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(1863,'2015-03-14 14:56:58','2015-03-14 14:56:58',1,30004986,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(1864,'2015-03-14 14:56:58','2015-08-29 14:46:06',1,30002260,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0),(1865,'2015-03-14 14:56:58','2015-03-14 14:56:58',1,30002673,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(1866,'2015-03-14 14:56:58','2015-08-29 14:46:06',1,30004287,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,2,0,0,0,0,0),(1867,'2015-03-14 14:56:58','2015-08-29 14:46:06',1,30002095,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,1,0,1,1,0),(1868,'2015-03-14 14:56:58','2015-03-14 14:56:58',1,30003517,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(1869,'2015-03-14 14:56:58','2015-08-29 14:46:06',1,30003033,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0),(1870,'2015-03-14 14:56:58','2015-08-29 14:46:06',1,30001535,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,1,0,0),(1871,'2015-03-14 14:56:58','2015-03-14 14:56:58',1,30004182,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(1872,'2015-03-14 14:56:58','2015-03-14 14:56:58',1,30001571,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(1873,'2015-03-14 14:56:58','2015-03-14 14:56:58',1,30003365,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(1874,'2015-03-14 14:56:58','2015-03-14 14:56:58',1,30000437,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(1875,'2015-03-14 14:56:58','2015-08-29 14:46:06',1,30003825,1,0,0,0,0,1,0,0,0,0,0,0,1,0,0,0,0,0,0,0,1,3,0,0),(1876,'2015-03-14 14:56:58','2015-03-14 14:56:58',1,30003466,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(1877,'2015-03-14 14:56:58','2015-03-14 14:56:58',1,30003381,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(1878,'2015-03-14 14:56:58','2015-03-14 14:56:58',1,30000796,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(1879,'2015-03-14 14:56:58','2015-08-29 14:46:06',1,30002060,1,2,0,1,1,0,0,0,1,0,0,0,1,1,1,0,1,0,2,1,0,2,0,0),(1880,'2015-03-14 14:56:58','2015-08-29 14:46:06',1,30003839,0,2,1,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0),(1881,'2015-03-14 14:56:58','2015-08-29 14:46:06',1,30003408,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0),(1882,'2015-03-14 14:56:58','2015-03-14 14:56:58',1,30003385,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(1883,'2015-03-14 14:56:58','2015-03-14 14:56:58',1,30001023,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(1884,'2015-03-14 14:56:58','2015-03-14 14:56:58',1,30004314,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(1885,'2015-03-14 14:56:58','2015-08-29 14:46:06',1,30001985,2,0,3,0,0,0,0,2,1,0,0,0,2,0,0,0,0,16,0,0,0,1,3,0),(1886,'2015-03-14 14:56:58','2015-08-29 14:46:06',1,30001181,0,0,1,0,0,0,0,0,1,0,0,0,1,1,0,0,0,1,0,0,1,0,0,0),(1887,'2015-03-14 14:56:58','2015-08-29 14:46:06',1,30002369,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0),(1888,'2015-03-14 14:56:58','2015-08-29 14:46:06',1,30001252,1,0,1,0,0,0,0,1,0,1,1,0,0,0,0,0,0,0,1,0,1,0,1,0),(1889,'2015-03-14 14:56:58','2015-03-14 14:56:58',1,30005281,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(1890,'2015-03-14 14:56:58','2015-03-14 14:56:58',1,30003392,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(1891,'2015-03-14 14:56:58','2015-08-29 14:46:06',1,30002543,1,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0),(1892,'2015-03-14 14:56:58','2015-08-29 14:46:06',1,30002085,0,0,0,0,0,0,0,0,0,0,1,0,1,1,1,0,0,0,0,0,0,0,0,0),(1893,'2015-03-14 14:56:58','2015-08-29 14:46:06',1,30003281,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0),(1894,'2015-03-14 14:56:58','2015-08-29 14:46:06',1,30001769,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0),(1895,'2015-03-14 14:56:58','2015-08-29 14:46:06',1,30002962,1,3,0,2,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0),(1896,'2015-03-14 14:56:58','2015-03-14 14:56:58',1,30000559,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(1897,'2015-03-14 14:56:58','2015-03-14 14:56:58',1,30002598,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(1898,'2015-03-14 14:56:58','2015-08-29 14:46:06',1,30000666,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(1899,'2015-03-14 14:56:58','2015-03-14 14:56:58',1,30005103,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(1900,'2015-03-14 14:56:58','2015-03-14 14:56:58',1,30000856,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(1901,'2015-03-14 14:56:58','2015-08-29 14:46:06',1,30003192,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(1902,'2015-03-14 14:56:58','2015-08-29 14:46:06',1,30004653,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,1,2,0,0,0,0,0,0,0),(1903,'2015-03-14 14:56:58','2015-03-14 14:56:58',1,30004414,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(1904,'2015-03-14 14:56:58','2015-08-29 14:46:06',1,30004327,0,0,0,1,1,0,0,0,0,0,0,0,0,2,0,0,0,0,0,0,0,0,0,0),(1905,'2015-03-14 14:56:58','2015-03-14 14:56:58',1,30004784,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(1906,'2015-03-14 14:56:58','2015-03-14 14:56:58',1,30005184,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(1907,'2015-03-14 14:56:58','2015-08-29 14:46:06',1,30000279,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(1908,'2015-03-14 14:56:58','2015-08-29 14:46:06',1,30003737,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0),(1909,'2015-03-14 14:56:58','2015-03-14 14:56:58',1,30000578,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(1910,'2015-03-14 14:56:58','2015-08-29 14:46:06',1,30000897,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0),(1911,'2015-03-14 14:56:58','2015-03-14 14:56:58',1,30005183,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(1912,'2015-03-14 14:56:58','2015-03-14 14:56:58',1,30000416,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(1913,'2015-03-14 14:56:58','2015-03-14 14:56:58',1,30001635,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(1914,'2015-03-14 14:56:58','2015-03-14 14:56:58',1,30004929,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(1915,'2015-03-14 14:56:58','2015-03-14 14:56:58',1,30000934,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(1916,'2015-03-14 14:56:58','2015-03-14 14:56:58',1,30002019,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(1917,'2015-03-14 14:56:58','2015-08-29 14:46:06',1,30004032,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,0,0,0,0),(1918,'2015-03-14 14:56:58','2015-08-29 14:46:06',1,30000572,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(1919,'2015-03-14 14:56:58','2015-03-14 14:56:58',1,30000853,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(1920,'2015-03-14 14:56:58','2015-03-14 14:56:58',1,30004757,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(1921,'2015-03-14 14:56:58','2015-03-14 14:56:58',1,30001064,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(1922,'2015-03-14 14:56:58','2015-03-14 14:56:58',1,30001906,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(1923,'2015-03-14 14:56:58','2015-08-29 14:46:06',1,30003126,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(1924,'2015-03-14 14:56:58','2015-03-14 14:56:58',1,30001801,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(1925,'2015-03-14 14:56:58','2015-03-14 14:56:58',1,30001087,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(1926,'2015-03-14 14:56:58','2015-08-29 14:46:06',1,30004503,0,0,0,0,0,1,0,0,0,2,2,0,2,0,0,0,0,0,0,0,0,0,0,0),(1927,'2015-03-14 14:56:58','2015-08-29 14:46:06',1,30003751,0,0,0,0,1,0,0,0,0,0,0,0,0,3,1,24,0,2,0,64,1,27,1,0),(1928,'2015-03-14 14:56:58','2015-03-14 14:56:58',1,30004867,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(1929,'2015-03-14 14:56:58','2015-08-29 14:46:06',1,30005187,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(1930,'2015-03-14 14:56:58','2015-03-14 14:56:58',1,30004652,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(1931,'2015-03-14 14:56:58','2015-08-29 14:46:06',1,30000695,0,1,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(1932,'2015-03-14 14:56:58','2015-03-14 14:56:58',1,30000804,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(1933,'2015-03-14 14:56:58','2015-08-29 14:46:06',1,30004013,0,0,0,0,0,0,0,0,0,0,0,1,1,2,2,1,0,0,1,1,0,0,0,0),(1934,'2015-03-14 14:56:58','2015-03-14 14:56:58',1,30000497,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(1935,'2015-03-14 14:56:58','2015-08-29 14:46:06',1,30000810,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(1936,'2015-03-14 14:56:58','2015-03-14 14:56:58',1,30000754,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(1937,'2015-03-14 14:56:58','2015-03-14 14:56:58',1,30000332,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(1938,'2015-03-14 14:56:58','2015-03-14 14:56:58',1,30002826,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(1939,'2015-03-14 14:56:58','2015-08-29 14:46:06',1,30001171,0,0,0,1,0,2,0,0,0,2,2,0,0,0,0,0,0,0,1,3,0,0,1,0),(1940,'2015-03-14 14:56:58','2015-08-29 14:46:06',1,30000959,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(1941,'2015-03-14 14:56:58','2015-03-14 14:56:58',1,30004507,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(1942,'2015-03-14 14:56:58','2015-08-29 14:46:06',1,30000600,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,0,0,0,0),(1943,'2015-03-14 14:56:58','2015-08-29 14:46:06',1,30003269,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0),(1944,'2015-03-14 14:56:58','2015-03-14 14:56:58',1,30002381,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(1945,'2015-03-14 14:56:58','2015-03-14 14:56:58',1,30001957,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(1946,'2015-03-14 14:56:58','2015-03-14 14:56:58',1,30002152,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(1947,'2015-03-14 14:56:58','2015-03-14 14:56:58',1,30000981,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(1948,'2015-03-14 14:56:58','2015-08-29 14:46:06',1,30004046,0,0,1,1,1,4,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0),(1949,'2015-03-14 14:56:58','2015-03-14 14:56:58',1,30000913,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(1950,'2015-03-14 14:56:58','2015-03-14 14:56:58',1,30002320,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(1951,'2015-03-14 14:56:58','2015-08-29 14:46:06',1,30001153,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,7,0,0,1,0,0),(1952,'2015-03-14 14:56:58','2015-03-14 14:56:58',1,30000500,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(1953,'2015-03-14 14:56:58','2015-08-29 14:46:06',1,30001888,0,0,0,0,0,0,0,1,2,0,1,3,0,0,0,1,0,0,0,0,0,0,0,0),(1954,'2015-03-14 14:56:58','2015-03-14 14:56:58',1,30000233,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(1955,'2015-03-14 14:56:58','2015-03-14 14:56:58',1,30002221,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(1956,'2015-03-14 14:56:58','2015-03-14 14:56:58',1,30003505,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(1957,'2015-03-14 14:56:58','2015-03-14 14:56:58',1,30004276,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(1958,'2015-03-14 14:56:58','2015-03-14 14:56:58',1,30003473,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(1959,'2015-03-14 14:56:58','2015-03-14 14:56:58',1,30003002,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(1960,'2015-03-14 14:56:58','2015-03-14 14:56:58',1,30003938,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(1961,'2015-03-14 14:56:58','2015-03-14 14:56:58',1,30001049,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(1962,'2015-03-14 14:56:58','2015-03-14 14:56:58',1,30000044,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(1963,'2015-03-14 14:56:58','2015-03-14 14:56:58',1,30002651,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(1964,'2015-03-14 14:56:58','2015-08-29 14:46:06',1,30003541,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,2,0,0,0,0,0,0,1,0),(1965,'2015-03-14 14:56:58','2015-08-29 14:46:06',1,30001256,0,1,0,0,0,0,0,0,1,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0),(1966,'2015-03-14 14:56:58','2015-08-29 14:46:06',1,30002643,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0),(1967,'2015-03-14 14:56:58','2015-03-14 14:56:58',1,30003599,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(1968,'2015-03-14 14:56:58','2015-03-14 14:56:58',1,30002321,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(1969,'2015-03-14 14:56:58','2015-08-29 14:46:06',1,30002881,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0),(1970,'2015-03-14 14:56:58','2015-03-14 14:56:58',1,30002827,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(1971,'2015-03-14 14:56:58','2015-08-29 14:46:06',1,30003718,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(1972,'2015-03-14 14:56:58','2015-08-29 14:46:06',1,30003276,1,3,3,3,5,1,1,0,12,2,3,2,1,0,0,0,0,1,5,1,0,1,2,0),(1973,'2015-03-14 14:56:58','2015-08-29 14:46:06',1,30004043,0,0,0,0,0,0,0,0,0,1,0,2,0,0,0,0,0,0,0,0,0,0,0,0),(1974,'2015-03-14 14:56:58','2015-08-29 14:46:06',1,30002423,0,0,0,0,0,1,1,0,0,0,1,0,0,0,0,0,0,0,0,1,0,2,0,0),(1975,'2015-03-14 14:56:58','2015-03-14 14:56:58',1,30004821,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(1976,'2015-03-14 14:56:58','2015-03-14 14:56:58',1,30002408,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(1977,'2015-03-14 14:56:58','2015-08-29 14:46:06',1,30005030,1,0,0,0,0,0,0,1,0,0,1,0,0,0,0,0,0,1,0,0,0,1,0,0),(1978,'2015-03-14 14:56:58','2015-03-14 14:56:58',1,30000050,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(1979,'2015-03-14 14:56:58','2015-08-29 14:46:06',1,30001709,1,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(1980,'2015-03-14 14:56:58','2015-03-14 14:56:58',1,30004263,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(1981,'2015-03-14 14:56:58','2015-03-14 14:56:58',1,30002628,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(1982,'2015-03-14 14:56:58','2015-03-14 14:56:58',1,30002345,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(1983,'2015-03-14 14:56:58','2015-08-29 14:46:06',1,30000226,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(1984,'2015-03-14 14:56:58','2015-08-29 14:46:06',1,30001344,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(1985,'2015-03-14 14:56:58','2015-03-14 14:56:58',1,30000418,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(1986,'2015-03-14 14:56:58','2015-03-14 14:56:58',1,30000495,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(1987,'2015-03-14 14:56:58','2015-08-29 14:46:06',1,30004254,0,0,1,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0),(1988,'2015-03-14 14:56:58','2015-03-14 14:56:58',1,30043410,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(1989,'2015-03-14 14:56:58','2015-03-14 14:56:58',1,30003442,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(1990,'2015-03-14 14:56:58','2015-03-14 14:56:58',1,30004110,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(1991,'2015-03-14 14:56:58','2015-08-29 14:46:06',1,30003691,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(1992,'2015-03-14 14:56:58','2015-03-14 14:56:58',1,30003906,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(1993,'2015-03-14 14:56:58','2015-03-14 14:56:58',1,30002335,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(1994,'2015-03-14 14:56:58','2015-03-14 14:56:58',1,30003234,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(1995,'2015-03-14 14:56:58','2015-03-14 14:56:58',1,30002316,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(1996,'2015-03-14 14:56:58','2015-08-29 14:46:06',1,30004980,0,1,2,0,0,0,0,0,0,1,1,0,0,0,0,0,0,5,0,1,1,1,0,0),(1997,'2015-03-14 14:56:58','2015-03-14 14:56:58',1,30005101,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(1998,'2015-03-14 14:56:58','2015-08-29 14:46:06',1,30002082,0,0,1,1,1,0,0,0,0,1,0,0,1,1,1,0,2,0,0,0,0,0,0,0),(1999,'2015-03-14 14:56:58','2015-03-14 14:56:58',1,30003382,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(2000,'2015-03-14 14:56:58','2015-03-14 14:56:58',1,30002677,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(2001,'2015-03-14 14:56:58','2015-03-14 14:56:58',1,30004732,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(2002,'2015-03-14 14:56:58','2015-08-29 14:46:06',1,30002898,0,0,0,0,0,12,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0),(2003,'2015-03-14 14:56:58','2015-03-14 14:56:58',1,30000227,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(2004,'2015-03-14 14:56:58','2015-08-29 14:46:06',1,30000484,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,1,0,0,0),(2005,'2015-03-14 14:56:58','2015-03-14 14:56:58',1,30002156,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(2006,'2015-03-14 14:56:58','2015-03-14 14:56:58',1,30003118,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(2007,'2015-03-14 14:56:58','2015-03-14 14:56:58',1,30000809,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(2008,'2015-03-14 14:56:58','2015-03-14 14:56:58',1,30001638,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(2009,'2015-03-14 14:56:58','2015-03-14 14:56:58',1,30001487,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(2010,'2015-03-14 14:56:58','2015-03-14 14:56:58',1,30001544,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(2011,'2015-03-14 14:56:58','2015-08-29 14:46:06',1,30002891,0,0,0,0,0,0,0,0,0,0,0,0,0,4,1,0,0,0,0,1,0,0,0,0),(2012,'2015-03-14 14:56:58','2015-03-14 14:56:58',1,30001148,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(2013,'2015-03-14 14:56:58','2015-08-29 14:46:06',1,30004303,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0),(2014,'2015-03-14 14:56:58','2015-03-14 14:56:58',1,30023489,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(2015,'2015-03-14 14:56:58','2015-08-29 14:46:06',1,30002663,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(2016,'2015-03-14 14:56:58','2015-03-14 14:56:58',1,30000023,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(2017,'2015-03-14 14:56:58','2015-03-14 14:56:58',1,30004058,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(2018,'2015-03-14 14:56:58','2015-08-29 14:46:06',1,30002630,0,2,0,0,0,0,0,0,6,2,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(2019,'2015-03-14 14:56:58','2015-03-14 14:56:58',1,30001637,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(2020,'2015-03-14 14:56:58','2015-03-14 14:56:58',1,30000478,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(2021,'2015-03-14 14:56:58','2015-08-29 14:46:06',1,30003826,1,0,0,1,0,0,0,0,0,0,0,0,1,1,0,0,2,0,0,0,4,1,0,0),(2022,'2015-03-14 14:56:58','2015-08-29 14:46:06',1,30002526,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,1,0,0,0,0,1,0),(2023,'2015-03-14 14:56:58','2015-03-14 14:56:58',1,30003036,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(2024,'2015-03-14 14:56:58','2015-08-29 14:46:06',1,30003394,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0),(2025,'2015-03-14 14:56:58','2015-03-14 14:56:58',1,30003420,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(2026,'2015-03-14 14:56:58','2015-08-29 14:46:06',1,30002090,0,0,0,0,0,0,0,0,1,2,3,3,0,0,1,1,0,2,3,0,1,0,1,0),(2027,'2015-03-14 14:56:58','2015-08-29 14:46:06',1,30002734,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0),(2028,'2015-03-14 14:56:58','2015-08-29 14:46:06',1,30000168,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0),(2029,'2015-03-14 14:56:58','2015-08-29 14:46:06',1,30002180,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0),(2030,'2015-03-14 14:56:58','2015-08-29 14:46:06',1,30003467,1,0,0,0,0,1,2,1,1,4,6,1,0,0,0,2,4,1,0,0,4,4,2,0),(2031,'2015-03-14 14:56:58','2015-03-14 14:56:58',1,30000398,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(2032,'2015-03-14 14:56:58','2015-03-14 14:56:58',1,30000219,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(2033,'2015-03-14 14:56:58','2015-08-29 14:46:06',1,30003710,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,3,0),(2034,'2015-03-14 14:56:58','2015-08-29 14:46:06',1,30001364,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,0,0,0),(2035,'2015-03-14 14:56:58','2015-03-14 14:56:58',1,30003095,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(2036,'2015-03-14 14:56:58','2015-08-29 14:46:06',1,30000199,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,1,0,0),(2037,'2015-03-14 14:56:58','2015-08-29 14:46:06',1,30000017,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0),(2038,'2015-03-14 14:56:58','2015-08-29 14:46:06',1,30001852,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,1,3,1,0,0,0),(2039,'2015-03-14 14:56:58','2015-03-14 14:56:58',1,30004161,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(2040,'2015-03-14 14:56:58','2015-03-14 14:56:58',1,30004197,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(2041,'2015-03-14 14:56:58','2015-03-14 14:56:58',1,30001775,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(2042,'2015-03-14 14:56:58','2015-03-14 14:56:58',1,30000906,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(2043,'2015-03-14 14:56:58','2015-08-29 14:46:06',1,30002021,0,0,0,3,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(2044,'2015-03-14 14:56:58','2015-08-29 14:46:06',1,30004718,0,0,0,0,0,2,4,1,0,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0),(2045,'2015-03-14 14:56:58','2015-08-29 14:46:06',1,30003711,0,0,0,0,0,0,0,0,0,0,0,2,0,0,0,0,0,0,0,0,0,0,1,0),(2046,'2015-03-14 14:56:58','2015-03-14 14:56:58',1,30001606,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(2047,'2015-03-14 14:56:58','2015-03-14 14:56:58',1,30000835,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(2048,'2015-03-14 14:56:58','2015-03-14 14:56:58',1,30000850,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(2049,'2015-03-14 14:56:58','2015-03-14 14:56:58',1,30000675,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(2050,'2015-03-14 14:56:58','2015-03-14 14:56:58',1,30002128,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(2051,'2015-03-14 14:56:58','2015-08-29 14:46:06',1,30001186,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0),(2052,'2015-03-14 14:56:58','2015-08-29 14:46:06',1,30003213,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(2053,'2015-03-14 14:56:58','2015-08-29 14:46:06',1,30001853,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,1,0),(2054,'2015-03-14 14:56:58','2015-03-14 14:56:58',1,30002878,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(2055,'2015-03-14 14:56:58','2015-08-29 14:46:06',1,30001041,2,1,0,0,0,0,2,0,1,1,1,2,5,0,0,0,1,0,0,0,0,0,2,0),(2056,'2015-03-14 14:56:58','2015-03-14 14:56:58',1,30003949,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(2057,'2015-03-14 14:56:58','2015-03-14 14:56:58',1,30003161,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(2058,'2015-03-14 14:56:58','2015-08-29 14:46:06',1,30003703,0,0,0,0,0,0,0,0,1,3,1,0,1,4,2,0,0,1,0,0,1,3,7,0),(2059,'2015-03-14 14:56:58','2015-03-14 14:56:58',1,30003367,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(2060,'2015-03-14 14:56:58','2015-03-14 14:56:58',1,30002476,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(2061,'2015-03-14 14:56:58','2015-08-29 14:46:06',1,30001183,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0),(2062,'2015-03-14 14:56:58','2015-08-29 14:46:06',1,30001227,0,0,0,0,0,0,0,1,0,0,0,1,0,3,1,0,2,0,0,0,1,1,0,0),(2063,'2015-03-14 14:56:58','2015-03-14 14:56:58',1,30003772,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(2064,'2015-03-14 14:56:58','2015-08-29 14:46:06',1,30004892,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,0,1,0,0,1,0),(2065,'2015-03-14 14:56:58','2015-03-14 14:56:58',1,30004945,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(2066,'2015-03-14 14:56:58','2015-08-29 14:46:06',1,30004876,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(2067,'2015-03-14 14:56:58','2015-03-14 14:56:58',1,30000338,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(2068,'2015-03-14 14:56:58','2015-03-14 14:56:58',1,30000778,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(2069,'2015-03-14 14:56:58','2015-08-29 14:46:06',1,30001002,0,0,0,0,0,0,0,0,0,0,1,0,0,2,1,1,1,0,0,2,0,0,2,0),(2070,'2015-03-14 14:56:58','2015-03-14 14:56:58',1,30005113,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(2071,'2015-03-14 14:56:58','2015-03-14 14:56:58',1,30001802,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(2072,'2015-03-14 14:56:58','2015-03-14 14:56:58',1,30003155,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(2073,'2015-03-14 14:56:58','2015-03-14 14:56:58',1,30002853,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(2074,'2015-03-14 14:56:58','2015-08-29 14:46:06',1,30000213,0,0,0,0,1,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(2075,'2015-03-14 14:56:58','2015-08-29 14:46:06',1,30004696,0,0,0,0,0,0,1,0,0,0,0,0,0,4,0,0,1,0,0,1,0,0,1,0),(2076,'2015-03-14 14:56:58','2015-08-29 14:46:06',1,30001987,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,2,0,0),(2077,'2015-03-14 14:56:58','2015-08-29 14:46:06',1,30004793,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,1,0,0),(2078,'2015-03-14 14:56:58','2015-08-29 14:46:06',1,30001848,0,0,1,0,0,0,0,0,0,0,0,0,0,0,1,1,1,0,0,6,1,4,1,0),(2079,'2015-03-14 14:56:58','2015-03-14 14:56:58',1,30001607,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(2080,'2015-03-14 14:56:58','2015-08-29 14:46:06',1,30004962,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,0,0,0),(2081,'2015-03-14 14:56:58','2015-08-29 14:46:06',1,30002301,0,0,0,0,0,0,0,3,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0),(2082,'2015-03-14 14:56:58','2015-03-14 14:56:58',1,30001036,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(2083,'2015-03-14 14:56:58','2015-08-29 14:46:06',1,30004721,0,0,0,0,0,3,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(2084,'2015-03-14 14:56:58','2015-03-14 14:56:58',1,30004631,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(2085,'2015-03-14 14:56:58','2015-08-29 14:46:06',1,30001569,0,0,0,0,0,0,0,0,0,0,0,0,4,1,0,0,0,0,0,0,0,0,0,0),(2086,'2015-03-14 14:56:58','2015-03-14 14:56:58',1,30003184,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(2087,'2015-03-14 14:56:58','2015-03-14 14:56:58',1,30004534,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(2088,'2015-03-14 14:56:58','2015-08-29 14:46:06',1,30003133,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(2089,'2015-03-14 14:56:58','2015-03-14 14:56:58',1,30003636,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(2090,'2015-03-14 14:56:58','2015-03-14 14:56:58',1,30000537,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(2091,'2015-03-14 14:56:58','2015-08-29 14:46:06',1,30004854,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(2092,'2015-03-14 14:56:58','2015-03-14 14:56:58',1,30000690,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(2093,'2015-03-14 14:56:58','2015-03-14 14:56:58',1,30004664,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(2094,'2015-03-14 14:56:58','2015-03-14 14:56:58',1,30004697,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(2095,'2015-03-14 14:56:58','2015-03-14 14:56:58',1,30001501,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(2096,'2015-03-14 14:56:58','2015-03-14 14:56:58',1,30003101,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(2097,'2015-03-14 14:56:58','2015-08-29 14:46:06',1,30000460,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0),(2098,'2015-03-14 14:56:58','2015-03-14 14:56:58',1,30002861,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(2099,'2015-03-14 14:56:58','2015-03-14 14:56:58',1,30004536,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(2100,'2015-03-14 14:56:58','2015-08-29 14:46:06',1,30000310,0,0,0,0,0,0,0,0,0,1,1,2,0,0,0,0,0,0,0,0,0,0,0,0),(2101,'2015-03-14 14:56:58','2015-03-14 14:56:58',1,30001517,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(2102,'2015-03-14 14:56:58','2015-08-29 14:46:06',1,30003713,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0),(2103,'2015-03-14 14:56:58','2015-03-14 14:56:58',1,30004061,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(2104,'2015-03-14 14:56:58','2015-08-29 14:46:06',1,30001982,0,0,1,0,0,0,0,0,0,1,1,0,0,1,0,0,0,0,1,0,0,0,0,0),(2105,'2015-03-14 14:56:58','2015-08-29 14:46:06',1,30004598,0,0,1,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0),(2106,'2015-03-14 14:56:58','2015-08-29 14:46:06',1,30000305,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0),(2107,'2015-03-14 14:56:58','2015-08-29 14:46:06',1,30001348,0,0,0,0,0,0,2,3,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(2108,'2015-03-14 14:56:58','2015-08-29 14:46:06',1,30000545,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0),(2109,'2015-03-14 14:56:58','2015-03-14 14:56:58',1,30000570,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(2110,'2015-03-14 14:56:58','2015-03-14 14:56:58',1,30004523,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(2111,'2015-03-14 14:56:58','2015-03-14 14:56:58',1,30002020,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(2112,'2015-03-14 14:56:58','2015-08-29 14:46:06',1,30001811,0,2,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(2113,'2015-03-14 14:56:58','2015-08-29 14:46:06',1,30003777,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0),(2114,'2015-03-14 14:56:58','2015-08-29 14:46:06',1,30005072,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0),(2115,'2015-03-14 14:56:58','2015-03-14 14:56:58',1,30002204,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(2116,'2015-03-14 14:56:58','2015-03-14 14:56:58',1,30001698,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(2117,'2015-03-14 14:56:58','2015-08-29 14:46:06',1,30003544,0,0,0,0,0,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(2118,'2015-03-14 14:56:58','2015-03-14 14:56:58',1,30002674,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(2119,'2015-03-14 14:56:58','2015-08-29 14:46:06',1,30003844,0,1,1,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(2120,'2015-03-14 14:56:58','2015-08-29 14:46:06',1,30005273,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,0),(2121,'2015-03-14 14:56:58','2015-03-14 14:56:58',1,30004085,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(2122,'2015-03-14 14:56:58','2015-03-14 14:56:58',1,30000107,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(2123,'2015-03-14 14:56:58','2015-08-29 14:46:06',1,30003076,0,0,0,0,0,0,0,0,3,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(2124,'2015-03-14 14:56:58','2015-03-14 14:56:58',1,30003805,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(2125,'2015-03-14 14:56:58','2015-03-14 14:56:58',1,30004123,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(2126,'2015-03-14 14:56:58','2015-03-14 14:56:58',1,30004119,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(2127,'2015-03-14 14:56:58','2015-03-14 14:56:58',1,30005282,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(2128,'2015-03-14 14:56:58','2015-03-14 14:56:58',1,30005240,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(2129,'2015-03-14 14:56:58','2015-08-29 14:46:06',1,30000839,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0),(2130,'2015-03-14 14:56:58','2015-03-14 14:56:58',1,30002620,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(2131,'2015-03-14 14:56:58','2015-03-14 14:56:58',1,30000464,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(2132,'2015-03-14 14:56:58','2015-03-14 14:56:58',1,30001862,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(2133,'2015-03-14 14:56:58','2015-03-14 14:56:58',1,30000792,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(2134,'2015-03-14 14:56:58','2015-08-29 14:46:06',1,30001873,1,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(2135,'2015-03-14 14:56:58','2015-08-29 14:46:06',1,30001198,0,1,0,0,0,0,0,0,10,50,6,4,8,16,21,15,16,3,8,91,64,9,37,0),(2136,'2015-03-14 14:56:58','2015-08-29 14:46:06',1,30001177,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0),(2137,'2015-03-14 14:56:58','2015-03-14 14:56:58',1,30002093,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(2138,'2015-03-14 14:56:58','2015-03-14 14:56:58',1,30003433,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(2139,'2015-03-14 14:56:58','2015-03-14 14:56:58',1,30003429,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(2140,'2015-03-14 14:56:58','2015-08-29 14:46:06',1,30003897,1,0,0,0,0,1,0,0,0,0,0,0,1,1,0,0,0,0,0,0,0,0,0,0),(2141,'2015-03-14 14:56:58','2015-03-14 14:56:58',1,30000234,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(2142,'2015-03-14 14:56:58','2015-03-14 14:56:58',1,30000149,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(2143,'2015-03-14 14:56:58','2015-08-29 14:46:06',1,30002386,0,0,0,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(2144,'2015-03-14 14:56:58','2015-08-29 14:46:06',1,30000087,0,0,0,0,0,0,0,0,1,0,0,2,0,0,0,0,0,0,0,0,1,0,0,0),(2145,'2015-03-14 14:56:58','2015-08-29 14:46:06',1,30001663,0,0,0,0,0,1,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0),(2146,'2015-03-14 14:56:58','2015-03-14 14:56:58',1,30004238,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(2147,'2015-03-14 14:56:58','2015-03-14 14:56:58',1,30004083,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(2148,'2015-03-14 14:56:58','2015-08-29 14:46:06',1,30000126,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0),(2149,'2015-03-14 14:56:58','2015-03-14 14:56:58',1,30002533,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(2150,'2015-03-14 14:56:58','2015-08-29 14:46:06',1,30002531,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0),(2151,'2015-03-14 14:56:58','2015-03-14 14:56:58',1,30003586,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(2152,'2015-03-14 14:56:58','2015-08-29 14:46:06',1,30005244,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0),(2153,'2015-03-14 14:56:58','2015-08-29 14:46:06',1,30003023,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0),(2154,'2015-03-14 14:56:58','2015-03-14 14:56:58',1,30004266,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(2155,'2015-03-14 14:56:58','2015-03-14 14:56:58',1,30004282,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(2156,'2015-03-14 14:56:58','2015-08-29 14:46:06',1,30003871,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(2157,'2015-03-14 14:56:58','2015-03-14 14:56:58',1,30000936,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(2158,'2015-03-14 14:56:58','2015-03-14 14:56:58',1,30001580,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(2159,'2015-03-14 14:56:58','2015-08-29 14:46:06',1,30000553,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(2160,'2015-03-14 14:56:58','2015-03-14 14:56:58',1,30003202,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(2161,'2015-03-14 14:56:58','2015-08-29 14:46:06',1,30004288,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0),(2162,'2015-03-14 14:56:58','2015-03-14 14:56:58',1,30004084,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(2163,'2015-03-14 14:56:58','2015-03-14 14:56:58',1,30002972,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(2164,'2015-03-14 14:56:58','2015-03-14 14:56:58',1,30001714,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(2165,'2015-03-14 14:56:58','2015-03-14 14:56:58',1,30004474,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(2166,'2015-03-14 14:56:58','2015-03-14 14:56:58',1,30003035,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(2167,'2015-03-14 14:56:58','2015-03-14 14:56:58',1,30002232,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(2168,'2015-03-14 14:56:58','2015-03-14 14:56:58',1,30003877,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(2169,'2015-03-14 14:56:58','2015-08-29 14:46:06',1,30000887,0,0,0,0,0,0,0,0,1,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0),(2170,'2015-03-14 14:56:58','2015-08-29 14:46:06',1,30005288,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,0,0,0),(2171,'2015-03-14 14:56:58','2015-08-29 14:46:06',1,30005312,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0),(2172,'2015-03-14 14:56:58','2015-08-29 14:46:06',1,30001192,0,0,0,0,0,0,0,0,1,0,0,0,0,1,2,1,0,1,0,0,5,2,1,0),(2173,'2015-03-14 14:56:58','2015-03-14 14:56:58',1,30003232,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(2174,'2015-03-14 14:56:58','2015-03-14 14:56:58',1,30000789,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(2175,'2015-03-14 14:56:58','2015-03-14 14:56:58',1,30000859,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(2176,'2015-03-14 14:56:58','2015-03-14 14:56:58',1,30001122,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(2177,'2015-03-14 14:56:58','2015-08-29 14:46:06',1,30002133,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0),(2178,'2015-03-14 14:56:58','2015-08-29 14:46:06',1,30000544,1,0,0,0,0,0,0,0,3,2,2,1,0,0,0,0,0,0,0,2,2,0,0,0),(2179,'2015-03-14 14:56:58','2015-08-29 14:46:06',1,30003698,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(2180,'2015-03-14 14:56:58','2015-08-29 14:46:06',1,30001178,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,0),(2181,'2015-03-14 14:56:58','2015-03-14 14:56:58',1,30000671,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(2182,'2015-03-14 14:56:58','2015-08-29 14:46:06',1,30002306,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0),(2183,'2015-03-14 14:56:58','2015-08-29 14:46:06',1,30003736,0,0,0,0,0,0,0,0,0,1,1,0,0,2,2,0,0,0,0,1,2,0,0,0),(2184,'2015-03-14 14:56:58','2015-08-29 14:46:06',1,30002725,0,0,0,1,0,0,1,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(2185,'2015-03-14 14:56:58','2015-03-14 14:56:58',1,30000070,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(2186,'2015-03-14 14:56:58','2015-03-14 14:56:58',1,30004087,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(2187,'2015-03-14 14:56:58','2015-08-29 14:46:06',1,30005268,0,1,0,0,0,0,0,0,5,4,4,0,0,2,1,0,0,0,1,1,0,0,0,0),(2188,'2015-03-14 14:56:58','2015-08-29 14:46:06',1,30002403,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0),(2189,'2015-03-14 14:56:58','2015-03-14 14:56:58',1,30001716,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(2190,'2015-03-14 14:56:58','2015-03-14 14:56:58',1,30003963,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(2191,'2015-03-14 14:56:58','2015-03-14 14:56:58',1,30001646,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(2192,'2015-03-14 14:56:58','2015-03-14 14:56:58',1,30003509,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(2193,'2015-03-14 14:56:58','2015-03-14 14:56:58',1,30003930,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(2194,'2015-03-14 14:56:58','2015-03-14 14:56:58',1,30003858,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(2195,'2015-03-14 14:56:58','2015-08-29 14:46:06',1,30000598,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,1,0,0,0,0,0),(2196,'2015-03-14 14:56:58','2015-03-14 14:56:58',1,30000552,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(2197,'2015-03-14 14:56:58','2015-03-14 14:56:58',1,30004465,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(2198,'2015-03-14 14:56:58','2015-03-14 14:56:58',1,30002875,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(2199,'2015-03-14 14:56:58','2015-03-14 14:56:58',1,30004694,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(2200,'2015-03-14 14:56:58','2015-03-14 14:56:58',1,30004167,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(2201,'2015-03-14 14:56:58','2015-03-14 14:56:58',1,30004957,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(2202,'2015-03-14 14:56:58','2015-03-14 14:56:58',1,30000456,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(2203,'2015-03-14 14:56:58','2015-08-29 14:46:06',1,30002653,0,0,0,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(2204,'2015-03-14 14:56:58','2015-03-14 14:56:58',1,30000593,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(2205,'2015-03-14 14:56:58','2015-08-29 14:46:06',1,30002636,0,0,0,0,1,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(2206,'2015-03-14 14:56:58','2015-03-14 14:56:58',1,30003808,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(2207,'2015-03-14 14:56:58','2015-08-29 14:46:06',1,30003360,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(2208,'2015-03-14 14:56:58','2015-08-29 14:46:06',1,30003057,0,0,0,0,0,0,1,0,0,0,0,0,1,0,1,1,1,0,0,0,0,0,0,0),(2209,'2015-03-14 14:56:58','2015-03-14 14:56:58',1,30002859,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(2210,'2015-03-14 14:56:58','2015-03-14 14:56:58',1,30001573,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(2211,'2015-03-14 14:56:58','2015-03-14 14:56:58',1,30003199,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(2212,'2015-03-14 14:56:58','2015-03-14 14:56:58',1,30002328,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(2213,'2015-03-14 14:56:58','2015-03-14 14:56:58',1,30001883,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(2214,'2015-03-14 14:56:58','2015-03-14 14:56:58',1,30002627,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(2215,'2015-03-14 14:56:58','2015-08-29 14:46:06',1,30002102,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0),(2216,'2015-03-14 14:56:58','2015-08-29 14:46:06',1,30002384,0,0,0,0,0,0,0,0,0,0,0,0,0,3,2,0,0,0,0,0,0,0,1,0),(2217,'2015-03-14 14:56:58','2015-08-29 14:46:06',1,30002517,0,1,0,0,0,0,0,0,1,2,1,0,0,0,2,2,0,2,2,1,1,0,1,0),(2218,'2015-03-14 14:56:58','2015-03-14 14:56:58',1,30002560,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(2219,'2015-03-14 14:56:58','2015-08-29 14:46:06',1,30002556,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0),(2220,'2015-03-14 14:56:58','2015-03-14 14:56:58',1,30001347,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(2221,'2015-03-14 14:56:58','2015-03-14 14:56:58',1,30003653,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(2222,'2015-03-14 14:56:58','2015-08-29 14:46:06',1,30002123,0,0,0,2,1,0,0,0,1,0,0,0,0,1,1,0,0,0,0,0,0,0,0,0),(2223,'2015-03-14 14:56:58','2015-08-29 14:46:06',1,30002947,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0),(2224,'2015-03-14 14:56:58','2015-03-14 14:56:58',1,30004778,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(2225,'2015-03-14 14:56:58','2015-03-14 14:56:58',1,30001661,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(2226,'2015-03-14 14:56:58','2015-03-14 14:56:58',1,30000344,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(2227,'2015-03-14 14:56:58','2015-03-14 14:56:58',1,30002529,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(2228,'2015-03-14 14:56:58','2015-08-29 14:46:06',1,30002621,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0),(2229,'2015-03-14 14:56:58','2015-08-29 14:46:06',1,30001531,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0),(2230,'2015-03-14 14:56:58','2015-08-29 14:46:06',1,30000276,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0),(2231,'2015-03-14 14:56:58','2015-08-29 14:46:06',1,30005123,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0),(2232,'2015-03-14 14:56:58','2015-03-14 14:56:58',1,30003986,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(2233,'2015-03-14 14:56:58','2015-03-14 14:56:58',1,30000225,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(2234,'2015-03-14 14:56:58','2015-03-14 14:56:58',1,30002588,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(2235,'2015-03-14 14:56:58','2015-03-14 14:56:58',1,30000974,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(2236,'2015-03-14 14:56:58','2015-03-14 14:56:58',1,30000523,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(2237,'2015-03-14 14:56:58','2015-08-29 14:46:06',1,30001001,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,1,1,0,0,0),(2238,'2015-03-14 14:56:58','2015-03-14 14:56:58',1,30001331,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(2239,'2015-03-14 14:56:58','2015-03-14 14:56:58',1,30001129,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(2240,'2015-03-14 14:56:58','2015-03-14 14:56:58',1,30001513,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(2241,'2015-03-14 14:56:58','2015-03-14 14:56:58',1,30000281,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(2242,'2015-03-14 14:56:58','2015-03-14 14:56:58',1,30000444,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(2243,'2015-03-14 14:56:58','2015-03-14 14:56:58',1,30005116,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(2244,'2015-03-14 14:56:58','2015-08-29 14:46:06',1,30003752,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0),(2245,'2015-03-14 14:56:58','2015-03-14 14:56:58',1,30005090,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(2246,'2015-03-14 14:56:58','2015-03-14 14:56:58',1,30000547,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(2247,'2015-03-14 14:56:58','2015-03-14 14:56:58',1,30004814,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(2248,'2015-03-14 14:56:58','2015-03-14 14:56:58',1,30004512,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(2249,'2015-03-14 14:56:58','2015-03-14 14:56:58',1,30003261,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(2250,'2015-03-14 14:56:58','2015-03-14 14:56:58',1,30000268,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(2251,'2015-03-14 14:56:58','2015-03-14 14:56:58',1,30004592,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(2252,'2015-03-14 14:56:58','2015-03-14 14:56:58',1,30004446,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(2253,'2015-03-14 14:56:58','2015-08-29 14:46:06',1,30001269,0,0,0,2,1,0,0,1,0,1,0,0,0,0,0,0,0,0,1,1,1,1,0,0),(2254,'2015-03-14 14:56:58','2015-03-14 14:56:58',1,30002120,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(2255,'2015-03-14 14:56:58','2015-03-14 14:56:58',1,30001343,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(2256,'2015-03-14 14:56:58','2015-03-14 14:56:58',1,30004606,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(2257,'2015-03-14 14:56:58','2015-03-14 14:56:58',1,30003144,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(2258,'2015-03-14 14:56:58','2015-03-14 14:56:58',1,30000223,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(2259,'2015-03-14 14:56:58','2015-08-29 14:46:06',1,30000865,0,0,2,0,0,0,1,0,0,4,2,1,0,0,0,0,0,0,0,1,2,6,2,0),(2260,'2015-03-14 14:56:58','2015-03-14 14:56:58',1,30003160,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(2261,'2015-03-14 14:56:58','2015-03-14 14:56:58',1,30003608,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(2262,'2015-03-14 14:56:58','2015-03-14 14:56:58',1,30002043,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(2263,'2015-03-14 14:56:58','2015-03-14 14:56:58',1,30004178,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(2264,'2015-03-14 14:56:58','2015-03-14 14:56:58',1,30000426,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(2265,'2015-03-14 14:56:58','2015-03-14 14:56:58',1,30001575,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(2266,'2015-03-14 14:56:58','2015-03-14 14:56:58',1,30000410,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(2267,'2015-03-14 14:56:58','2015-08-29 14:46:06',1,30000685,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(2268,'2015-03-14 14:56:58','2015-08-29 14:46:06',1,30003723,0,0,1,0,0,0,0,0,5,8,6,0,84,0,0,0,0,0,0,1,2,5,2,0),(2269,'2015-03-14 14:56:58','2015-08-29 14:46:06',1,30000574,0,1,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0),(2270,'2015-03-14 14:56:58','2015-03-14 14:56:58',1,30004443,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(2271,'2015-03-14 14:56:58','2015-08-29 14:46:06',1,30004034,0,0,0,0,0,0,0,1,1,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0),(2272,'2015-03-14 14:56:58','2015-03-14 14:56:58',1,30000973,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(2273,'2015-03-14 14:56:58','2015-03-14 14:56:58',1,30001518,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(2274,'2015-03-14 14:56:58','2015-03-14 14:56:58',1,30002857,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(2275,'2015-03-14 14:56:58','2015-03-14 14:56:58',1,30004678,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(2276,'2015-03-14 14:56:58','2015-08-29 14:46:06',1,30003775,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0),(2277,'2015-03-14 14:56:58','2015-03-14 14:56:58',1,30004916,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(2278,'2015-03-14 14:56:58','2015-03-14 14:56:58',1,30000960,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(2279,'2015-03-14 14:56:58','2015-03-14 14:56:58',1,30001424,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(2280,'2015-03-14 14:56:58','2015-08-29 14:46:06',1,30002800,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0),(2281,'2015-03-14 14:56:58','2015-03-14 14:56:58',1,30005250,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(2282,'2015-03-14 14:56:58','2015-08-29 14:46:06',1,30012547,0,0,0,0,0,0,0,1,0,0,0,0,0,2,1,0,0,0,0,1,0,0,0,0),(2283,'2015-03-14 14:56:58','2015-03-14 14:56:58',1,30005223,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(2284,'2015-03-14 14:56:58','2015-03-14 14:56:58',1,30002264,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(2285,'2015-03-14 14:56:58','2015-08-29 14:46:06',1,30002057,0,1,0,0,0,4,0,0,1,0,0,2,2,0,2,3,2,3,2,1,0,1,1,0),(2286,'2015-03-14 14:56:58','2015-08-29 14:46:06',1,30001367,0,0,0,1,0,0,0,0,0,0,0,0,2,0,0,0,1,0,0,0,0,1,0,0),(2287,'2015-03-14 14:56:58','2015-08-29 14:46:06',1,30002050,1,0,0,0,0,0,0,0,3,0,0,0,0,1,1,0,0,4,0,0,0,1,0,0),(2288,'2015-03-14 14:56:58','2015-03-14 14:56:58',1,30003533,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(2289,'2015-03-14 14:56:58','2015-08-29 14:46:06',1,30000094,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0),(2290,'2015-03-14 14:56:58','2015-03-14 14:56:58',1,30002250,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(2291,'2015-03-14 14:56:58','2015-08-29 14:46:06',1,30004248,0,0,0,0,0,1,0,1,0,0,1,0,0,0,0,0,0,1,0,0,0,0,0,0),(2292,'2015-03-14 14:56:58','2015-08-29 14:46:06',1,30005012,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(2293,'2015-03-14 14:56:58','2015-08-29 14:46:06',1,30003106,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0),(2294,'2015-03-14 14:56:58','2015-03-14 14:56:58',1,30003918,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(2295,'2015-03-14 14:56:58','2015-03-14 14:56:58',1,30004257,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(2296,'2015-03-14 14:56:58','2015-03-14 14:56:58',1,30003449,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(2297,'2015-03-14 14:56:58','2015-03-14 14:56:58',1,30002077,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(2298,'2015-03-14 14:56:58','2015-03-14 14:56:58',1,30003085,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(2299,'2015-03-14 14:56:58','2015-03-14 14:56:58',1,30001448,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(2300,'2015-03-14 14:56:58','2015-03-14 14:56:58',1,30002990,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(2301,'2015-03-14 14:56:58','2015-08-29 14:46:06',1,30002781,0,0,0,0,0,0,0,2,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(2302,'2015-03-14 14:56:58','2015-03-14 14:56:58',1,30003003,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(2303,'2015-03-14 14:56:58','2015-03-14 14:56:58',1,30002404,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(2304,'2015-03-14 14:56:58','2015-03-14 14:56:58',1,30004100,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(2305,'2015-03-14 14:56:58','2015-08-29 14:46:06',1,30045341,0,1,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,0,0,0),(2306,'2015-03-14 14:56:58','2015-03-14 14:56:58',1,30003010,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(2307,'2015-03-14 14:56:58','2015-08-29 14:46:06',1,30002981,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0),(2308,'2015-03-14 14:56:58','2015-03-14 14:56:58',1,30003900,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(2309,'2015-03-14 14:56:58','2015-03-14 14:56:58',1,30003523,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(2310,'2015-03-14 14:56:58','2015-03-14 14:56:58',1,30000152,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(2311,'2015-03-14 14:56:58','2015-03-14 14:56:58',1,30003547,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(2312,'2015-03-14 14:56:58','2015-03-14 14:56:58',1,30033489,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(2313,'2015-03-14 14:56:58','2015-03-14 14:56:58',1,30005265,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(2314,'2015-03-14 14:56:58','2015-03-14 14:56:58',1,30004145,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(2315,'2015-03-14 14:56:58','2015-08-29 14:46:06',1,30003087,0,0,0,0,0,0,0,0,2,0,0,0,0,0,0,0,1,1,0,1,0,0,0,0),(2316,'2015-03-14 14:56:58','2015-03-14 14:56:58',1,30003418,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(2317,'2015-03-14 14:56:58','2015-08-29 14:46:06',1,30003597,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0),(2318,'2015-03-14 14:56:58','2015-08-29 14:46:06',1,30003017,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0),(2319,'2015-03-14 14:56:58','2015-08-29 14:46:06',1,30003587,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,0,0,0),(2320,'2015-03-14 14:56:58','2015-08-29 14:46:06',1,30003793,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0),(2321,'2015-03-14 14:56:58','2015-03-14 14:56:58',1,30002225,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(2322,'2015-03-14 14:56:58','2015-08-29 14:46:06',1,30002758,0,0,1,1,1,0,1,0,0,0,1,1,1,0,0,1,0,0,1,0,0,0,5,0),(2323,'2015-03-14 14:56:58','2015-08-29 14:46:06',1,30000074,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0),(2324,'2015-03-14 14:56:58','2015-03-14 14:56:58',1,30000032,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(2325,'2015-03-14 14:56:58','2015-08-29 14:46:06',1,30002806,1,1,0,2,1,0,0,0,0,2,2,0,3,0,0,0,2,0,1,0,1,1,0,0),(2326,'2015-03-14 14:56:58','2015-08-29 14:46:06',1,30002764,0,1,0,0,0,0,1,0,2,0,0,0,0,2,1,0,3,1,1,0,0,0,0,0),(2327,'2015-03-14 14:56:58','2015-03-14 14:56:58',1,30001737,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(2328,'2015-03-14 14:56:58','2015-08-29 14:46:06',1,30002994,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(2329,'2015-03-14 14:56:58','2015-03-14 14:56:58',1,30003082,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(2330,'2015-03-14 14:56:58','2015-03-14 14:56:58',1,30003542,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(2331,'2015-03-14 14:56:58','2015-03-14 14:56:58',1,30000979,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(2332,'2015-03-14 14:56:58','2015-03-14 14:56:58',1,30004228,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(2333,'2015-03-14 14:56:58','2015-03-14 14:56:58',1,30003633,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(2334,'2015-03-14 14:56:58','2015-03-14 14:56:58',1,30005107,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(2335,'2015-03-14 14:56:58','2015-03-14 14:56:58',1,30004325,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(2336,'2015-03-14 14:56:58','2015-03-14 14:56:58',1,30001292,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(2337,'2015-03-14 14:56:58','2015-03-14 14:56:58',1,30000569,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(2338,'2015-03-14 14:56:58','2015-03-14 14:56:58',1,30002863,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(2339,'2015-03-14 14:56:58','2015-03-14 14:56:58',1,30001330,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(2340,'2015-03-14 14:56:58','2015-03-14 14:56:58',1,30001482,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(2341,'2015-03-14 14:56:58','2015-08-29 14:46:06',1,30000214,0,0,0,0,0,1,0,0,0,0,0,1,0,1,0,0,0,0,0,0,0,0,0,0),(2342,'2015-03-14 14:56:58','2015-03-14 14:56:58',1,30003649,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(2343,'2015-03-14 14:56:58','2015-03-14 14:56:58',1,30003435,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(2344,'2015-03-14 14:56:58','2015-03-14 14:56:58',1,30024971,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(2345,'2015-03-14 14:56:58','2015-08-29 14:46:06',1,30001161,3,6,7,3,8,1,1,1,10,5,3,1,2,0,2,5,5,7,13,10,9,12,5,0),(2346,'2015-03-14 14:56:58','2015-08-29 14:46:06',1,30002406,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(2347,'2015-03-14 14:56:58','2015-03-14 14:56:58',1,30002579,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(2348,'2015-03-14 14:56:58','2015-08-29 14:46:06',1,30002189,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0),(2349,'2015-03-14 14:56:58','2015-08-29 14:46:06',1,30003846,0,0,0,0,0,0,0,0,0,0,0,0,0,2,1,0,0,0,0,0,0,0,0,0),(2350,'2015-03-14 14:56:58','2015-03-14 14:56:58',1,30002418,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(2351,'2015-03-14 14:56:58','2015-03-14 14:56:58',1,30002390,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(2352,'2015-03-14 14:56:58','2015-08-29 14:46:06',1,30002053,3,6,0,3,1,2,2,4,2,1,2,2,7,9,9,5,1,1,2,6,1,4,5,0),(2353,'2015-03-14 14:56:58','2015-08-29 14:46:06',1,30002063,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(2354,'2015-03-14 14:56:58','2015-08-29 14:46:06',1,30003594,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(2355,'2015-03-14 14:56:58','2015-08-29 14:46:06',1,30001044,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,1,0,0),(2356,'2015-03-14 14:56:58','2015-03-14 14:56:58',1,30003902,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(2357,'2015-03-14 14:56:58','2015-03-14 14:56:58',1,30034971,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(2358,'2015-03-14 14:56:58','2015-03-14 14:56:58',1,30000188,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(2359,'2015-03-14 14:56:58','2015-08-29 14:46:06',1,30005290,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0),(2360,'2015-03-14 14:56:58','2015-03-14 14:56:58',1,30003528,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(2361,'2015-03-14 14:56:58','2015-03-14 14:56:58',1,30005213,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(2362,'2015-03-14 14:56:58','2015-08-29 14:46:06',1,30005320,2,0,1,2,1,0,0,1,0,1,1,0,1,0,0,0,0,1,0,0,0,0,0,0),(2363,'2015-03-14 14:56:58','2015-08-29 14:46:06',1,30004979,8,1,5,4,4,2,1,0,4,0,3,2,0,8,8,2,2,1,1,3,8,7,3,0),(2364,'2015-03-14 14:56:58','2015-03-14 14:56:58',1,30003937,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(2365,'2015-03-14 14:56:58','2015-08-29 14:46:06',1,30003220,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(2366,'2015-03-14 14:56:58','2015-03-14 14:56:58',1,30000837,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(2367,'2015-03-14 14:56:58','2015-03-14 14:56:58',1,30001135,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(2368,'2015-03-14 14:56:58','2015-03-14 14:56:58',1,30001509,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(2369,'2015-03-14 14:56:58','2015-08-29 14:46:06',1,30003162,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(2370,'2015-03-14 14:56:58','2015-03-14 14:56:58',1,30004686,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(2371,'2015-03-14 14:56:58','2015-03-14 14:56:58',1,30003679,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(2372,'2015-03-14 14:56:58','2015-03-14 14:56:58',1,30001612,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(2373,'2015-03-14 14:56:58','2015-08-29 14:46:06',1,30003099,0,0,0,0,0,0,0,0,0,1,0,2,0,1,0,0,0,0,0,1,2,0,1,0),(2374,'2015-03-14 14:56:58','2015-03-14 14:56:58',1,30001662,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(2375,'2015-03-14 14:56:58','2015-03-14 14:56:58',1,30004240,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(2376,'2015-03-14 14:56:58','2015-08-29 14:46:06',1,30001528,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(2377,'2015-03-14 14:56:58','2015-03-14 14:56:58',1,30004142,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(2378,'2015-03-14 14:56:58','2015-08-29 14:46:06',1,30045338,0,0,0,0,0,0,0,1,2,1,2,1,6,0,1,1,0,1,1,2,2,0,1,0),(2379,'2015-03-14 14:56:58','2015-03-14 14:56:58',1,30001674,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(2380,'2015-03-14 14:56:58','2015-03-14 14:56:58',1,30003428,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(2381,'2015-03-14 14:56:58','2015-03-14 14:56:58',1,30004133,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(2382,'2015-03-14 14:56:58','2015-03-14 14:56:58',1,30002214,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(2383,'2015-03-14 14:56:58','2015-03-14 14:56:58',1,30004141,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(2384,'2015-03-14 14:56:58','2015-03-14 14:56:58',1,30005248,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(2385,'2015-03-14 14:56:58','2015-03-14 14:56:58',1,30004077,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(2386,'2015-03-14 14:56:58','2015-08-29 14:46:06',1,30045345,0,0,1,1,0,0,1,0,0,0,0,0,0,0,0,0,1,0,0,0,1,1,0,0),(2387,'2015-03-14 14:56:58','2015-03-14 14:56:58',1,30000133,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(2388,'2015-03-14 14:56:58','2015-03-14 14:56:58',1,30003875,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(2389,'2015-03-14 14:56:58','2015-03-14 14:56:58',1,30003531,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(2390,'2015-03-14 14:56:58','2015-03-14 14:56:58',1,30031407,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(2391,'2015-03-14 14:56:58','2015-08-29 14:46:06',1,30004956,0,0,0,0,0,0,0,2,0,0,0,0,0,0,0,1,0,0,0,1,0,0,0,0),(2392,'2015-03-14 14:56:58','2015-08-29 14:46:06',1,30002245,0,0,0,0,0,0,0,0,1,1,0,2,0,0,0,0,0,0,0,0,0,0,0,0),(2393,'2015-03-14 14:56:58','2015-08-29 14:46:06',1,30000721,0,0,0,0,0,0,1,0,2,0,2,0,2,0,0,0,0,0,1,0,0,0,1,0),(2394,'2015-03-14 14:56:58','2015-08-29 14:46:06',1,30002468,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0),(2395,'2015-03-14 14:56:58','2015-08-29 14:46:06',1,30002075,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0),(2396,'2015-03-14 14:56:58','2015-03-14 14:56:58',1,30003400,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(2397,'2015-03-14 14:56:58','2015-03-14 14:56:58',1,30002485,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(2398,'2015-03-14 14:56:58','2015-03-14 14:56:58',1,30000828,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(2399,'2015-03-14 14:56:58','2015-08-29 14:46:06',1,30001744,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,0,0,0),(2400,'2015-03-14 14:56:58','2015-08-29 14:46:06',1,30001016,3,0,1,1,0,1,0,0,0,1,0,2,2,1,0,0,0,0,2,4,0,0,0,0),(2401,'2015-03-14 14:56:58','2015-08-29 14:46:06',1,30001847,0,0,0,0,0,1,0,0,0,0,0,1,0,0,0,1,0,0,0,1,0,1,0,0),(2402,'2015-03-14 14:56:58','2015-03-14 14:56:58',1,30004715,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(2403,'2015-03-14 14:56:58','2015-03-14 14:56:58',1,30004615,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(2404,'2015-03-14 14:56:58','2015-03-14 14:56:58',1,30003243,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(2405,'2015-03-14 14:56:58','2015-03-14 14:56:58',1,30003469,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(2406,'2015-03-14 14:56:58','2015-08-29 14:46:06',1,30002096,0,0,1,0,0,0,0,0,0,0,1,0,1,2,2,1,0,0,0,0,2,0,0,0),(2407,'2015-03-14 14:56:58','2015-03-14 14:56:58',1,30002773,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(2408,'2015-03-14 14:56:58','2015-03-14 14:56:58',1,30002596,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(2409,'2015-03-14 14:56:58','2015-08-29 14:46:06',1,30001680,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(2410,'2015-03-14 14:56:58','2015-08-29 14:46:06',1,30004309,0,0,0,0,0,0,0,0,2,2,1,1,2,4,11,9,6,18,42,19,0,2,0,0),(2411,'2015-03-14 14:56:58','2015-08-29 14:46:06',1,30002397,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(2412,'2015-03-14 14:56:58','2015-03-14 14:56:58',1,30043489,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(2413,'2015-03-14 14:56:58','2015-03-14 14:56:58',1,30002741,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(2414,'2015-03-14 14:56:58','2015-03-14 14:56:58',1,30004264,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(2415,'2015-03-14 14:56:58','2015-03-14 14:56:58',1,30003560,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(2416,'2015-03-14 14:56:58','2015-03-14 14:56:58',1,30004130,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(2417,'2015-03-14 14:56:58','2015-03-14 14:56:58',1,30001690,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(2418,'2015-03-14 14:56:58','2015-08-29 14:46:06',1,30000111,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,1,0,0,0,0),(2419,'2015-03-14 14:56:58','2015-08-29 14:46:06',1,30003456,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(2420,'2015-03-14 14:56:58','2015-08-29 14:46:06',1,30001221,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(2421,'2015-03-14 14:56:58','2015-08-29 14:46:06',1,30003776,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,0,0,0,0,0,0),(2422,'2015-03-14 14:56:58','2015-03-14 14:56:58',1,30000370,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(2423,'2015-03-14 14:56:58','2015-03-14 14:56:58',1,30000592,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(2424,'2015-03-14 14:56:58','2015-03-14 14:56:58',1,30001463,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(2425,'2015-03-14 14:56:58','2015-03-14 14:56:58',1,30001583,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(2426,'2015-03-14 14:56:58','2015-03-14 14:56:58',1,30002040,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(2427,'2015-03-14 14:56:58','2015-08-29 14:46:06',1,30002856,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(2428,'2015-03-14 14:56:58','2015-03-14 14:56:58',1,30000686,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(2429,'2015-03-14 14:56:58','2015-08-29 14:46:06',1,30001871,0,0,0,0,0,0,0,0,0,19,21,0,0,0,0,0,0,0,0,0,0,0,0,0),(2430,'2015-03-14 14:56:58','2015-03-14 14:56:58',1,30002392,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(2431,'2015-03-14 14:56:58','2015-08-29 14:46:06',1,30003468,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0),(2432,'2015-03-14 14:56:58','2015-03-14 14:56:58',1,30002391,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(2433,'2015-03-14 14:56:58','2015-03-14 14:56:58',1,30002574,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(2434,'2015-03-14 14:56:58','2015-03-14 14:56:58',1,30002576,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(2435,'2015-03-14 14:56:58','2015-03-14 14:56:58',1,30002054,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(2436,'2015-03-14 14:56:58','2015-08-29 14:46:06',1,30003103,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,3,0,0),(2437,'2015-03-14 14:56:58','2015-03-14 14:56:58',1,30002505,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(2438,'2015-03-14 14:56:58','2015-08-29 14:46:06',1,30004988,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(2439,'2015-03-14 14:56:58','2015-03-14 14:56:58',1,30004304,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(2440,'2015-03-14 14:56:58','2015-08-29 14:46:06',1,30003067,2,2,0,3,1,9,3,1,4,1,2,0,4,1,1,0,0,9,2,0,0,0,1,0),(2441,'2015-03-14 14:56:58','2015-03-14 14:56:58',1,30002572,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(2442,'2015-03-14 14:56:58','2015-08-29 14:46:06',1,30000150,0,0,0,0,0,1,1,0,0,0,0,0,1,0,0,0,0,0,0,1,0,0,0,0),(2443,'2015-03-14 14:56:58','2015-03-14 14:56:58',1,30002217,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(2444,'2015-03-14 14:56:58','2015-03-14 14:56:58',1,30002774,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(2445,'2015-03-14 14:56:58','2015-03-14 14:56:58',1,30002356,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(2446,'2015-03-14 14:56:58','2015-08-29 14:46:06',1,30002871,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0),(2447,'2015-03-14 14:56:58','2015-03-14 14:56:58',1,30004205,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(2448,'2015-03-14 14:56:58','2015-08-29 14:46:06',1,30001159,1,0,2,0,0,0,1,0,0,0,0,0,0,0,0,0,2,0,0,0,0,0,3,0),(2449,'2015-03-14 14:56:58','2015-03-14 14:56:58',1,30045306,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(2450,'2015-03-14 14:56:58','2015-03-14 14:56:58',1,30000134,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(2451,'2015-03-14 14:56:58','2015-08-29 14:46:06',1,30004481,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0),(2452,'2015-03-14 14:56:58','2015-08-29 14:46:06',1,30002796,0,1,1,1,0,0,0,1,4,1,0,0,2,0,1,2,1,0,2,2,4,1,3,0),(2453,'2015-03-14 14:56:58','2015-03-14 14:56:58',1,30000825,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(2454,'2015-03-14 14:56:58','2015-03-14 14:56:58',1,30004767,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(2455,'2015-03-14 14:56:58','2015-03-14 14:56:58',1,30000482,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(2456,'2015-03-14 14:56:58','2015-03-14 14:56:58',1,30001767,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(2457,'2015-03-14 14:56:58','2015-03-14 14:56:58',1,30000689,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(2458,'2015-03-14 14:56:58','2015-08-29 14:46:06',1,30000788,0,2,0,0,0,8,0,0,0,0,0,0,0,0,0,0,1,0,0,0,1,1,1,0),(2459,'2015-03-14 14:56:58','2015-03-14 14:56:58',1,30000636,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(2460,'2015-03-14 14:56:58','2015-03-14 14:56:58',1,30001934,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(2461,'2015-03-14 14:56:58','2015-08-29 14:46:06',1,30004400,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0),(2462,'2015-03-14 14:56:58','2015-03-14 14:56:58',1,30004361,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(2463,'2015-03-14 14:56:58','2015-08-29 14:46:06',1,30001188,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(2464,'2015-03-14 14:56:58','2015-03-14 14:56:58',1,30000520,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(2465,'2015-03-14 14:56:58','2015-03-14 14:56:58',1,30004177,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(2466,'2015-03-14 14:56:58','2015-08-29 14:46:06',1,30004636,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,1,0,1,2,0),(2467,'2015-03-14 14:56:58','2015-03-14 14:56:58',1,30004775,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(2468,'2015-03-14 14:56:58','2015-03-14 14:56:58',1,30001752,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(2469,'2015-03-14 14:56:58','2015-08-29 14:46:06',1,30001914,0,0,0,0,0,0,1,0,0,0,0,0,0,0,1,1,0,0,0,1,0,0,0,0),(2470,'2015-03-14 14:56:58','2015-08-29 14:46:06',1,30003784,0,0,0,0,0,0,1,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(2471,'2015-03-14 14:56:58','2015-03-14 14:56:58',1,30002134,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(2472,'2015-03-14 14:56:58','2015-03-14 14:56:58',1,30000952,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(2473,'2015-03-14 14:56:58','2015-03-14 14:56:58',1,30001466,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(2474,'2015-03-14 14:56:58','2015-08-29 14:46:06',1,30003701,0,0,1,1,1,0,0,0,0,0,1,1,0,0,0,0,0,0,0,0,1,0,0,0),(2475,'2015-03-14 14:56:58','2015-03-14 14:56:58',1,30003308,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(2476,'2015-03-14 14:56:58','2015-08-29 14:46:06',1,30003317,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0),(2477,'2015-03-14 14:56:58','2015-08-29 14:46:06',1,30001782,0,0,0,0,0,0,0,0,0,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0),(2478,'2015-03-14 14:56:58','2015-03-14 14:56:58',1,30003621,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(2479,'2015-03-14 14:56:58','2015-08-29 14:46:06',1,30004023,0,0,0,0,0,0,0,0,0,0,0,1,0,1,0,0,0,0,0,0,0,0,0,0),(2480,'2015-03-14 14:56:58','2015-03-14 14:56:58',1,30002877,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(2481,'2015-03-14 14:56:58','2015-08-29 14:46:06',1,30002908,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(2482,'2015-03-14 14:56:58','2015-03-14 14:56:58',1,30000758,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(2483,'2015-03-14 14:56:58','2015-03-14 14:56:58',1,30004723,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(2484,'2015-03-14 14:56:58','2015-03-14 14:56:58',1,30004430,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(2485,'2015-03-14 14:56:58','2015-08-29 14:46:06',1,30000626,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(2486,'2015-03-14 14:56:58','2015-03-14 14:56:58',1,30002343,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(2487,'2015-03-14 14:56:58','2015-08-29 14:46:06',1,30004933,1,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(2488,'2015-03-14 14:56:58','2015-08-29 14:46:06',1,30003716,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,1,0,0,0,0,0,0),(2489,'2015-03-14 14:56:58','2015-03-14 14:56:58',1,30001110,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(2490,'2015-03-14 14:56:58','2015-03-14 14:56:58',1,30004482,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(2491,'2015-03-14 14:56:58','2015-03-14 14:56:58',1,30001508,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(2492,'2015-03-14 14:56:58','2015-03-14 14:56:58',1,30000709,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(2493,'2015-03-14 14:56:58','2015-03-14 14:56:58',1,30003241,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(2494,'2015-03-14 14:56:58','2015-03-14 14:56:58',1,30001481,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(2495,'2015-03-14 14:56:58','2015-03-14 14:56:58',1,30004120,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(2496,'2015-03-14 14:56:58','2015-03-14 14:56:58',1,30000509,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(2497,'2015-03-14 14:56:58','2015-03-14 14:56:58',1,30001640,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(2498,'2015-03-14 14:56:58','2015-08-29 14:46:06',1,30003933,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0),(2499,'2015-03-14 14:56:58','2015-03-14 14:56:58',1,30000053,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(2500,'2015-03-14 14:56:58','2015-08-29 14:46:06',1,30002984,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(2501,'2015-03-14 14:56:58','2015-03-14 14:56:58',1,30001052,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(2502,'2015-03-14 14:56:58','2015-03-14 14:56:58',1,30001428,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(2503,'2015-03-14 14:56:58','2015-03-14 14:56:58',1,30041407,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(2504,'2015-03-14 14:56:58','2015-08-29 14:46:06',1,30045329,0,0,0,0,0,2,0,0,0,1,2,0,1,0,0,0,0,0,0,0,1,0,1,0),(2505,'2015-03-14 14:56:58','2015-03-14 14:56:58',1,30005227,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(2506,'2015-03-14 14:56:58','2015-03-14 14:56:58',1,30003513,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(2507,'2015-03-14 14:56:58','2015-03-14 14:56:58',1,30000400,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(2508,'2015-03-14 14:56:58','2015-08-29 14:46:06',1,30045313,0,0,0,0,0,0,0,0,1,0,0,0,1,0,0,1,2,0,0,0,0,0,3,0),(2509,'2015-03-14 14:56:58','2015-08-29 14:46:06',1,30003072,0,1,2,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,0,0,0),(2510,'2015-03-14 14:56:58','2015-03-14 14:56:58',1,30000422,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(2511,'2015-03-14 14:56:58','2015-03-14 14:56:58',1,30001056,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(2512,'2015-03-14 14:56:58','2015-03-14 14:56:58',1,30003815,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(2513,'2015-03-14 14:56:58','2015-08-29 14:46:06',1,30000254,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(2514,'2015-03-14 14:56:58','2015-03-14 14:56:58',1,30003203,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(2515,'2015-03-14 14:56:58','2015-03-14 14:56:58',1,30003614,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(2516,'2015-03-14 14:56:58','2015-03-14 14:56:58',1,30003987,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(2517,'2015-03-14 14:56:58','2015-08-29 14:46:06',1,30004583,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0),(2518,'2015-03-14 14:56:58','2015-08-29 14:46:06',1,30003796,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(2519,'2015-03-14 14:56:58','2015-08-29 14:46:06',1,30005005,0,0,0,0,0,1,0,1,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0),(2520,'2015-03-14 14:56:58','2015-08-29 14:46:06',1,30002647,0,0,0,0,0,0,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(2521,'2015-03-14 14:56:58','2015-08-29 14:46:06',1,30000169,0,0,0,0,0,0,0,0,1,0,0,0,0,2,2,0,0,0,0,0,0,0,0,0),(2522,'2015-03-14 14:56:58','2015-03-14 14:56:58',1,30000048,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(2523,'2015-03-14 14:56:58','2015-03-14 14:56:58',1,30001602,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(2524,'2015-03-14 14:56:58','2015-03-14 14:56:58',1,30002907,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(2525,'2015-03-14 14:56:58','2015-03-14 14:56:58',1,30001374,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(2526,'2015-03-14 14:56:58','2015-03-14 14:56:58',1,30003311,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(2527,'2015-03-14 14:56:58','2015-08-29 14:46:06',1,30001422,0,0,0,0,0,0,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(2528,'2015-03-14 14:56:58','2015-08-29 14:46:06',1,30002766,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0),(2529,'2015-03-14 14:56:58','2015-08-29 14:46:06',1,30000159,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,1,1,0,0),(2530,'2015-03-14 14:56:58','2015-08-29 14:46:06',1,30002786,0,1,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,2,2,0),(2531,'2015-03-14 14:56:58','2015-08-29 14:46:06',1,30045337,0,5,0,0,0,1,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0),(2532,'2015-03-14 14:56:58','2015-03-14 14:56:58',1,30003641,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(2533,'2015-03-14 14:56:58','2015-03-14 14:56:58',1,30000138,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(2534,'2015-03-14 14:56:58','2015-08-29 14:46:06',1,30002372,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(2535,'2015-03-14 14:56:58','2015-03-14 14:56:58',1,30001146,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(2536,'2015-03-14 14:56:58','2015-03-14 14:56:58',1,30004832,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(2537,'2015-03-14 14:56:58','2015-03-14 14:56:58',1,30000090,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(2538,'2015-03-14 14:56:58','2015-03-14 14:56:58',1,30001731,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(2539,'2015-03-14 14:56:58','2015-08-29 14:46:06',1,30002396,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0),(2540,'2015-03-14 14:56:58','2015-03-14 14:56:58',1,30004294,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(2541,'2015-03-14 14:56:58','2015-08-29 14:46:06',1,30002527,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0),(2542,'2015-03-14 14:56:58','2015-03-14 14:56:58',1,30003377,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(2543,'2015-03-14 14:56:58','2015-03-14 14:56:58',1,30002208,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(2544,'2015-03-14 14:56:58','2015-03-14 14:56:58',1,30003445,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(2545,'2015-03-14 14:56:58','2015-03-14 14:56:58',1,30003094,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(2546,'2015-03-14 14:56:58','2015-03-14 14:56:58',1,30001655,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(2547,'2015-03-14 14:56:58','2015-03-14 14:56:58',1,30005053,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(2548,'2015-03-14 14:56:58','2015-03-14 14:56:58',1,30000895,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(2549,'2015-03-14 14:56:58','2015-08-29 14:46:06',1,30045343,1,0,0,1,1,1,0,0,0,0,0,1,0,1,0,0,1,0,0,0,0,1,1,0),(2550,'2015-03-14 14:56:58','2015-08-29 14:46:06',1,30005246,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,0,0,0,0),(2551,'2015-03-14 14:56:58','2015-03-14 14:56:58',1,30002793,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(2552,'2015-03-14 14:56:58','2015-08-29 14:46:06',1,30002788,0,0,1,0,2,2,0,0,0,0,1,1,0,0,1,1,1,0,0,0,0,0,1,0),(2553,'2015-03-14 14:56:58','2015-08-29 14:46:06',1,30000182,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0),(2554,'2015-03-14 14:56:58','2015-03-14 14:56:58',1,30002072,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(2555,'2015-03-14 14:56:58','2015-08-29 14:46:06',1,30004982,0,0,1,0,0,0,0,0,1,0,0,0,1,0,1,1,1,0,0,0,0,2,0,0),(2556,'2015-03-14 14:56:58','2015-03-14 14:56:58',1,30002672,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(2557,'2015-03-14 14:56:58','2015-08-29 14:46:06',1,30002559,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0),(2558,'2015-03-14 14:56:58','2015-03-14 14:56:58',1,30004102,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(2559,'2015-03-14 14:56:58','2015-08-29 14:46:06',1,30045316,1,2,3,0,1,0,0,0,0,1,0,0,0,1,1,1,0,0,1,1,0,0,0,0),(2560,'2015-03-14 14:56:58','2015-03-14 14:56:58',1,30002738,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(2561,'2015-03-14 14:56:58','2015-08-29 14:46:06',1,30003740,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,2,0,0,0,0),(2562,'2015-03-14 14:56:58','2015-08-29 14:46:06',1,30003788,0,0,0,1,1,0,0,0,0,0,0,0,0,1,1,0,0,0,1,0,0,0,0,0),(2563,'2015-03-14 14:56:58','2015-03-14 14:56:58',1,30003219,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(2564,'2015-03-14 14:56:58','2015-03-14 14:56:58',1,30001991,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(2565,'2015-03-14 14:56:58','2015-08-29 14:46:06',1,30002439,0,0,1,0,0,0,0,0,0,0,0,0,0,3,0,0,1,2,0,3,1,0,0,0),(2566,'2015-03-14 14:56:58','2015-03-14 14:56:58',1,30000062,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(2567,'2015-03-14 14:56:58','2015-03-14 14:56:58',1,30001843,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(2568,'2015-03-14 14:56:58','2015-03-14 14:56:58',1,30004726,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(2569,'2015-03-14 14:56:58','2015-08-29 14:46:06',1,30000252,0,0,1,0,0,1,0,2,2,0,0,1,4,0,0,0,0,0,0,0,2,1,0,0),(2570,'2015-03-14 14:56:58','2015-08-29 14:46:06',1,30003861,0,0,0,0,0,0,0,0,0,1,0,0,1,0,0,0,0,0,0,0,0,0,0,0),(2571,'2015-03-14 14:56:58','2015-03-14 14:56:58',1,30003176,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(2572,'2015-03-14 14:56:58','2015-03-14 14:56:58',1,30000277,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(2573,'2015-03-14 14:56:58','2015-03-14 14:56:58',1,30003140,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(2574,'2015-03-14 14:56:58','2015-03-14 14:56:58',1,30004556,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(2575,'2015-03-14 14:56:58','2015-08-29 14:46:06',1,30045317,0,0,0,0,0,1,0,1,0,0,0,0,0,0,0,0,1,0,0,0,1,1,0,0),(2576,'2015-03-14 14:56:58','2015-03-14 14:56:58',1,30002333,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(2577,'2015-03-14 14:56:58','2015-03-14 14:56:58',1,30002595,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(2578,'2015-03-14 14:56:58','2015-03-14 14:56:58',1,30003452,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(2579,'2015-03-14 14:56:58','2015-03-14 14:56:58',1,30002792,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(2580,'2015-03-14 14:56:58','2015-03-14 14:56:58',1,30003935,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(2581,'2015-03-14 14:56:58','2015-03-14 14:56:58',1,30003524,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(2582,'2015-03-14 14:56:58','2015-08-29 14:46:06',1,30002192,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(2583,'2015-03-14 14:56:58','2015-03-14 14:56:58',1,30001696,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(2584,'2015-03-14 14:56:58','2015-08-29 14:46:06',1,30000073,0,0,0,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(2585,'2015-03-14 14:56:58','2015-08-29 14:46:06',1,30002331,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(2586,'2015-03-14 14:56:58','2015-08-29 14:46:06',1,30001236,0,0,0,0,0,0,0,0,0,2,0,0,1,0,0,0,0,0,0,0,0,0,0,0),(2587,'2015-03-14 14:56:58','2015-03-14 14:56:58',1,30002276,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(2588,'2015-03-14 14:56:58','2015-08-29 14:46:06',1,30001389,1,1,0,0,0,0,0,0,0,1,0,0,0,4,3,2,0,0,0,0,0,1,0,0),(2589,'2015-03-14 14:56:58','2015-03-14 14:56:58',1,30002739,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(2590,'2015-03-14 14:56:58','2015-08-29 14:46:06',1,30002087,0,0,0,0,0,1,0,0,0,1,0,0,0,0,0,1,0,0,0,2,0,2,0,0),(2591,'2015-03-14 14:56:58','2015-03-14 14:56:58',1,30002815,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(2592,'2015-03-14 14:56:58','2015-08-29 14:46:06',1,30005014,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(2593,'2015-03-14 14:56:58','2015-03-14 14:56:58',1,30002546,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(2594,'2015-03-14 14:56:58','2015-03-14 14:56:58',1,30000165,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(2595,'2015-03-14 14:56:58','2015-03-14 14:56:58',1,30000093,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(2596,'2015-03-14 14:56:58','2015-08-29 14:46:06',1,30002756,0,1,0,1,0,1,0,1,1,1,0,0,0,1,1,2,0,1,0,0,0,0,0,0),(2597,'2015-03-14 14:56:58','2015-03-14 14:56:58',1,30004243,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(2598,'2015-03-14 14:56:58','2015-08-29 14:46:06',1,30001436,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,1,0),(2599,'2015-03-14 14:56:58','2015-08-29 14:46:06',1,30001387,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0),(2600,'2015-03-14 14:56:58','2015-03-14 14:56:58',1,30001365,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(2601,'2015-03-14 14:56:58','2015-03-14 14:56:58',1,30002804,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(2602,'2015-03-14 14:56:58','2015-03-14 14:56:58',1,30001426,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(2603,'2015-03-14 14:56:58','2015-03-14 14:56:58',1,30001397,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(2604,'2015-03-14 14:56:58','2015-03-14 14:56:58',1,30002402,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(2605,'2015-03-14 14:56:58','2015-03-14 14:56:58',1,30002777,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(2606,'2015-03-14 14:56:58','2015-03-14 14:56:58',1,30001726,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(2607,'2015-03-14 14:56:58','2015-03-14 14:56:58',1,30000285,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(2608,'2015-03-14 14:56:58','2015-08-29 14:46:06',1,30000119,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0),(2609,'2015-03-14 14:56:58','2015-03-14 14:56:58',1,30004157,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(2610,'2015-03-14 14:56:58','2015-03-14 14:56:58',1,30005256,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(2611,'2015-03-14 14:56:58','2015-03-14 14:56:58',1,30002985,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(2612,'2015-03-14 14:56:58','2015-03-14 14:56:58',1,30005169,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(2613,'2015-03-14 14:56:58','2015-03-14 14:56:58',1,30002886,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(2614,'2015-03-14 14:56:58','2015-03-14 14:56:58',1,30002594,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(2615,'2015-03-14 14:56:58','2015-08-29 14:46:06',1,30002524,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(2616,'2015-03-14 14:56:58','2015-03-14 14:56:58',1,30001656,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(2617,'2015-03-14 14:56:58','2015-03-14 14:56:58',1,30003813,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(2618,'2015-03-14 14:56:58','2015-03-14 14:56:58',1,30000622,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(2619,'2015-03-14 14:56:58','2015-08-29 14:46:06',1,30045351,0,0,0,0,0,1,0,1,0,0,0,0,0,0,0,0,1,0,0,0,1,1,2,0),(2620,'2015-03-14 14:56:58','2015-03-14 14:56:58',1,30003765,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(2621,'2015-03-14 14:56:58','2015-03-14 14:56:58',1,30000956,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(2622,'2015-03-14 14:56:58','2015-08-29 14:46:06',1,30002642,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(2623,'2015-03-14 14:56:58','2015-03-14 14:56:58',1,30004535,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(2624,'2015-03-14 14:56:58','2015-08-29 14:46:06',1,30001812,0,2,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(2625,'2015-03-14 14:56:58','2015-03-14 14:56:58',1,30004905,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(2626,'2015-03-14 14:56:58','2015-03-14 14:56:58',1,30004162,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(2627,'2015-03-14 14:56:58','2015-03-14 14:56:58',1,30001920,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(2628,'2015-03-14 14:56:58','2015-08-29 14:46:06',1,30001977,0,0,0,0,0,1,0,0,0,0,0,0,1,1,0,0,0,0,0,0,1,0,0,0),(2629,'2015-03-14 14:56:58','2015-03-14 14:56:58',1,30003206,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(2630,'2015-03-14 14:56:58','2015-08-29 14:46:06',1,30000847,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(2631,'2015-03-14 14:56:58','2015-03-14 14:56:58',1,30001505,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(2632,'2015-03-14 14:56:58','2015-03-14 14:56:58',1,30000489,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(2633,'2015-03-14 14:56:58','2015-08-29 14:46:06',1,30004755,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(2634,'2015-03-14 14:56:58','2015-03-14 14:56:58',1,30002887,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(2635,'2015-03-14 14:56:58','2015-03-14 14:56:58',1,30001195,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(2636,'2015-03-14 14:56:58','2015-03-14 14:56:58',1,30002026,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(2637,'2015-03-14 14:56:58','2015-03-14 14:56:58',1,30002174,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(2638,'2015-03-14 14:56:58','2015-03-14 14:56:58',1,30004215,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(2639,'2015-03-14 14:56:58','2015-08-29 14:46:06',1,30004637,0,0,0,0,0,0,0,0,2,10,12,2,1,2,0,2,3,3,0,2,0,0,0,0),(2640,'2015-03-14 14:56:58','2015-08-29 14:46:06',1,30003142,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0),(2641,'2015-03-14 14:56:58','2015-03-14 14:56:58',1,30000594,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(2642,'2015-03-14 14:56:58','2015-03-14 14:56:58',1,30004410,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(2643,'2015-03-14 14:56:58','2015-03-14 14:56:58',1,30000390,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(2644,'2015-03-14 14:56:58','2015-03-14 14:56:58',1,30000366,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(2645,'2015-03-14 14:56:58','2015-03-14 14:56:58',1,30001112,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(2646,'2015-03-14 14:56:58','2015-03-14 14:56:58',1,30000843,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(2647,'2015-03-14 14:56:58','2015-03-14 14:56:58',1,30001456,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(2648,'2015-03-14 14:56:58','2015-03-14 14:56:58',1,30003634,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(2649,'2015-03-14 14:56:58','2015-03-14 14:56:58',1,30002942,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(2650,'2015-03-14 14:56:58','2015-03-14 14:56:58',1,30004513,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(2651,'2015-03-14 14:56:58','2015-08-29 14:46:07',1,30000677,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,1,0),(2652,'2015-03-14 14:56:58','2015-03-14 14:56:58',1,30000386,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(2653,'2015-03-14 14:56:58','2015-08-29 14:46:07',1,30001750,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(2654,'2015-03-14 14:56:58','2015-03-14 14:56:58',1,30001043,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(2655,'2015-03-14 14:56:58','2015-03-14 14:56:58',1,30004373,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(2656,'2015-03-14 14:56:58','2015-08-29 14:46:07',1,30004589,0,2,0,5,5,4,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0),(2657,'2015-03-14 14:56:58','2015-08-29 14:46:07',1,30001941,0,0,1,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(2658,'2015-03-14 14:56:58','2015-08-29 14:46:07',1,30001230,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,1,14,1,0,0,0,0),(2659,'2015-03-14 14:56:58','2015-03-14 14:56:58',1,30000538,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(2660,'2015-03-14 14:56:58','2015-03-14 14:56:58',1,30001013,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(2661,'2015-03-14 14:56:58','2015-03-14 14:56:58',1,30002285,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(2662,'2015-03-14 14:56:58','2015-03-14 14:56:58',1,30001800,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(2663,'2015-03-14 14:56:58','2015-03-14 14:56:58',1,30004312,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(2664,'2015-03-14 14:56:58','2015-08-29 14:46:07',1,30004385,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(2665,'2015-03-14 14:56:58','2015-03-14 14:56:58',1,30004460,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(2666,'2015-03-14 14:56:58','2015-03-14 14:56:58',1,30005158,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(2667,'2015-03-14 14:56:58','2015-03-14 14:56:58',1,30004514,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(2668,'2015-03-14 14:56:58','2015-03-14 14:56:58',1,30001055,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(2669,'2015-03-14 14:56:58','2015-08-29 14:46:07',1,30001225,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0),(2670,'2015-03-14 14:56:58','2015-03-14 14:56:58',1,30003864,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(2671,'2015-03-14 14:56:58','2015-08-29 14:46:07',1,30000148,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(2672,'2015-03-14 14:56:58','2015-03-14 14:56:58',1,30004125,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(2673,'2015-03-14 14:56:58','2015-08-29 14:46:07',1,30003554,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0),(2674,'2015-03-14 14:56:58','2015-03-14 14:56:58',1,30001050,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(2675,'2015-03-14 14:56:58','2015-08-29 14:46:07',1,30001385,0,0,1,1,1,0,11,0,1,0,0,0,1,0,0,0,0,0,0,1,0,0,0,0),(2676,'2015-03-14 14:56:58','2015-03-14 14:56:58',1,30000071,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(2677,'2015-03-14 14:56:58','2015-03-14 14:56:58',1,30000060,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(2678,'2015-03-14 14:56:58','2015-03-14 14:56:58',1,30000082,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(2679,'2015-03-14 14:56:58','2015-03-14 14:56:58',1,30000004,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(2680,'2015-03-14 14:56:58','2015-03-14 14:56:58',1,30003080,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(2681,'2015-03-14 14:56:58','2015-08-29 14:46:07',1,30002263,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0),(2682,'2015-03-14 14:56:58','2015-08-29 14:46:07',1,30001653,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0),(2683,'2015-03-14 14:56:58','2015-08-29 14:46:07',1,30003029,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0),(2684,'2015-03-14 14:56:58','2015-08-29 14:46:07',1,30004241,0,0,0,0,0,0,1,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0),(2685,'2015-03-14 14:56:58','2015-03-14 14:56:58',1,30003551,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(2686,'2015-03-14 14:56:58','2015-03-14 14:56:58',1,30000121,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(2687,'2015-03-14 14:56:58','2015-08-29 14:46:07',1,30003107,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,1,0,0,0,0,0,0,0),(2688,'2015-03-14 14:56:58','2015-03-14 14:56:58',1,30002564,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(2689,'2015-03-14 14:56:58','2015-03-14 14:56:58',1,30002336,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(2690,'2015-03-14 14:56:58','2015-03-14 14:56:58',1,30000045,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(2691,'2015-03-14 14:56:58','2015-03-14 14:56:58',1,30000022,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(2692,'2015-03-14 14:56:58','2015-03-14 14:56:58',1,30000381,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(2693,'2015-03-14 14:56:58','2015-03-14 14:56:58',1,30001777,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(2694,'2015-03-14 14:56:58','2015-08-29 14:46:07',1,30001185,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,0,0,0,0),(2695,'2015-03-14 14:56:58','2015-03-14 14:56:58',1,30001971,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(2696,'2015-03-14 14:56:58','2015-03-14 14:56:58',1,30003148,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(2697,'2015-03-14 14:56:58','2015-03-14 14:56:58',1,30002112,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(2698,'2015-03-14 14:56:58','2015-08-29 14:46:07',1,30002006,0,1,0,1,1,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(2699,'2015-03-14 14:56:58','2015-03-14 14:56:58',1,30004192,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(2700,'2015-03-14 14:56:58','2015-08-29 14:46:07',1,30002500,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(2701,'2015-03-14 14:56:58','2015-08-29 14:46:07',1,30005083,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0),(2702,'2015-03-14 14:56:58','2015-08-29 14:46:07',1,30003760,0,0,0,1,1,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0),(2703,'2015-03-14 14:56:58','2015-08-29 14:46:07',1,30002692,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0),(2704,'2015-03-14 14:56:58','2015-03-14 14:56:58',1,30005033,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(2705,'2015-03-14 14:56:58','2015-03-14 14:56:58',1,30004148,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(2706,'2015-03-14 14:56:58','2015-03-14 14:56:58',1,30000608,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(2707,'2015-03-14 14:56:58','2015-03-14 14:56:58',1,30002748,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(2708,'2015-03-14 14:56:58','2015-08-29 14:46:07',1,30004281,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0),(2709,'2015-03-14 14:56:58','2015-08-29 14:46:07',1,30002254,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,1,0,0,0,0,0,0,0,0),(2710,'2015-03-14 14:56:58','2015-03-14 14:56:58',1,30004132,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(2711,'2015-03-14 14:56:58','2015-08-29 14:46:07',1,30003532,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,0,0,0,0),(2712,'2015-03-14 14:56:58','2015-03-14 14:56:58',1,30000451,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(2713,'2015-03-14 14:56:58','2015-03-14 14:56:58',1,30001451,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(2714,'2015-03-14 14:56:58','2015-08-29 14:46:07',1,30004575,0,0,0,0,0,0,0,0,1,0,0,0,0,1,1,1,0,0,0,0,0,0,0,0),(2715,'2015-03-14 14:56:58','2015-03-14 14:56:58',1,30001243,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(2716,'2015-03-14 14:56:58','2015-08-29 14:46:07',1,30003285,0,2,5,0,2,0,1,0,0,0,0,0,2,0,0,0,0,0,0,0,0,0,1,0),(2717,'2015-03-14 14:56:58','2015-08-29 14:46:07',1,30003661,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0),(2718,'2015-03-14 14:56:58','2015-08-29 14:46:07',1,30004667,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,0,0,0,0),(2719,'2015-03-14 14:56:58','2015-03-14 14:56:58',1,30004435,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(2720,'2015-03-14 14:56:58','2015-03-14 14:56:58',1,30004839,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(2721,'2015-03-14 14:56:58','2015-03-14 14:56:58',1,30001706,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(2722,'2015-03-14 14:56:58','2015-03-14 14:56:58',1,30005046,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(2723,'2015-03-14 14:56:58','2015-08-29 14:46:07',1,30000142,19,22,40,34,19,18,20,13,14,10,12,10,16,23,21,15,18,14,27,20,17,25,15,0),(2724,'2015-03-14 14:56:58','2015-08-29 14:46:07',1,30004684,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0),(2725,'2015-03-14 14:56:58','2015-03-14 14:56:58',1,30004836,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(2726,'2015-03-14 14:56:58','2015-03-14 14:56:58',1,30004515,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(2727,'2015-03-14 14:56:58','2015-03-14 14:56:58',1,30002150,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(2728,'2015-03-14 14:56:58','2015-03-14 14:56:58',1,30001636,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(2729,'2015-03-14 14:56:58','2015-03-14 14:56:58',1,30001593,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(2730,'2015-03-14 14:56:58','2015-03-14 14:56:58',1,30001556,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(2731,'2015-03-14 14:56:58','2015-08-29 14:46:07',1,30000708,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(2732,'2015-03-14 14:56:58','2015-03-14 14:56:58',1,30005161,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(2733,'2015-03-14 14:56:58','2015-03-14 14:56:58',1,30000662,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(2734,'2015-03-14 14:56:58','2015-03-14 14:56:58',1,30001542,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(2735,'2015-03-14 14:56:58','2015-08-29 14:46:07',1,30004462,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,3,0,0,0,0,0,0,0),(2736,'2015-03-14 14:56:58','2015-08-29 14:46:07',1,30004086,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,0,0,0,0),(2737,'2015-03-14 14:56:58','2015-03-14 14:56:58',1,30000078,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(2738,'2015-03-14 14:56:58','2015-03-14 14:56:58',1,30004974,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(2739,'2015-03-14 14:56:58','2015-03-14 14:56:58',1,30002679,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(2740,'2015-03-14 14:56:58','2015-03-14 14:56:58',1,30003387,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(2741,'2015-03-14 14:56:58','2015-08-29 14:46:07',1,30002210,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(2742,'2015-03-14 14:56:58','2015-03-14 14:56:58',1,30004088,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(2743,'2015-03-14 14:56:58','2015-08-29 14:46:07',1,30001046,0,0,0,0,0,0,0,0,0,2,1,1,0,0,0,0,0,1,0,0,0,0,0,0),(2744,'2015-03-14 14:56:58','2015-03-14 14:56:58',1,30002567,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(2745,'2015-03-14 14:56:58','2015-08-29 14:46:07',1,30000156,0,0,0,0,0,0,0,0,0,0,0,1,1,1,2,1,8,0,1,0,3,2,3,0),(2746,'2015-03-14 14:56:58','2015-03-14 14:56:58',1,30003447,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(2747,'2015-03-14 14:56:58','2015-08-29 14:46:07',1,30001423,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0),(2748,'2015-03-14 14:56:58','2015-08-29 14:46:07',1,30011392,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0),(2749,'2015-03-14 14:56:58','2015-08-29 14:46:07',1,30005321,1,0,0,0,0,0,0,0,1,0,1,1,0,0,0,0,0,0,0,0,1,0,0,0),(2750,'2015-03-14 14:56:58','2015-08-29 14:46:07',1,30004731,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(2751,'2015-03-14 14:56:58','2015-03-14 14:56:58',1,30005136,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(2752,'2015-03-14 14:56:58','2015-08-29 14:46:07',1,30000901,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,2,0,0),(2753,'2015-03-14 14:56:58','2015-03-14 14:56:58',1,30000363,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(2754,'2015-03-14 14:56:58','2015-08-29 14:46:07',1,30000548,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(2755,'2015-03-14 14:56:58','2015-03-14 14:56:58',1,30004330,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(2756,'2015-03-14 14:56:58','2015-03-14 14:56:58',1,30001851,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(2757,'2015-03-14 14:56:58','2015-03-14 14:56:58',1,30001494,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(2758,'2015-03-14 14:56:58','2015-03-14 14:56:58',1,30003664,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(2759,'2015-03-14 14:56:58','2015-03-14 14:56:58',1,30002821,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(2760,'2015-03-14 14:56:58','2015-03-14 14:56:58',1,30002323,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(2761,'2015-03-14 14:56:58','2015-08-29 14:46:07',1,30004324,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(2762,'2015-03-14 14:56:58','2015-08-29 14:46:07',1,30002911,0,0,0,1,1,0,0,1,0,0,0,0,1,1,1,0,0,0,1,0,1,0,0,0),(2763,'2015-03-14 14:56:58','2015-03-14 14:56:58',1,30001937,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(2764,'2015-03-14 14:56:58','2015-08-29 14:46:07',1,30000051,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0),(2765,'2015-03-14 14:56:58','2015-03-14 14:56:58',1,30001738,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(2766,'2015-03-14 14:56:58','2015-08-29 14:46:07',1,30001743,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(2767,'2015-03-14 14:56:58','2015-08-29 14:46:07',1,30005308,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,3,0,0),(2768,'2015-03-14 14:56:58','2015-08-29 14:46:07',1,30000987,0,0,0,1,2,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(2769,'2015-03-14 14:56:58','2015-03-14 14:56:58',1,30003083,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(2770,'2015-03-14 14:56:58','2015-08-29 14:46:07',1,30003016,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(2771,'2015-03-14 14:56:58','2015-08-29 14:46:07',1,30003013,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(2772,'2015-03-14 14:56:58','2015-08-29 14:46:07',1,30001315,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(2773,'2015-03-14 14:56:58','2015-08-29 14:46:07',1,30002803,0,2,1,0,0,0,1,3,0,0,0,1,0,0,0,0,0,0,0,0,0,0,1,0),(2774,'2015-03-14 14:56:58','2015-03-14 14:56:58',1,30004883,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(2775,'2015-03-14 14:56:58','2015-08-29 14:46:07',1,30001567,0,0,0,0,0,0,0,0,0,1,0,0,0,1,2,2,0,0,0,0,0,0,0,0),(2776,'2015-03-14 14:56:58','2015-08-29 14:46:07',1,30001948,0,1,0,0,0,0,0,0,0,0,0,2,0,1,0,0,0,0,0,0,0,0,0,0),(2777,'2015-03-14 14:56:58','2015-03-14 14:56:58',1,30001007,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(2778,'2015-03-14 14:56:58','2015-08-29 14:46:07',1,30001190,0,0,0,0,0,0,0,0,0,2,2,0,0,1,0,0,0,0,0,0,0,0,0,0),(2779,'2015-03-14 14:56:58','2015-03-14 14:56:58',1,30001793,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(2780,'2015-03-14 14:56:58','2015-03-14 14:56:58',1,30001495,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(2781,'2015-03-14 14:56:58','2015-03-14 14:56:58',1,30003264,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(2782,'2015-03-14 14:56:58','2015-03-14 14:56:58',1,30000640,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(2783,'2015-03-14 14:56:58','2015-03-14 14:56:58',1,30005135,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(2784,'2015-03-14 14:56:58','2015-03-14 14:56:58',1,30004952,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(2785,'2015-03-14 14:56:58','2015-03-14 14:56:58',1,30000325,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(2786,'2015-03-14 14:56:58','2015-08-29 14:46:07',1,30004912,0,0,0,0,0,0,0,0,1,0,0,0,0,4,3,0,0,0,2,1,0,0,0,0),(2787,'2015-03-14 14:56:58','2015-03-14 14:56:58',1,30005120,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(2788,'2015-03-14 14:56:58','2015-08-29 14:46:07',1,30004751,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0),(2789,'2015-03-14 14:56:58','2015-03-14 14:56:58',1,30000890,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(2790,'2015-03-14 14:56:58','2015-03-14 14:56:58',1,30004379,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(2791,'2015-03-14 14:56:58','2015-03-14 14:56:58',1,30004490,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(2792,'2015-03-14 14:56:58','2015-08-29 14:46:07',1,30001011,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0),(2793,'2015-03-14 14:56:58','2015-03-14 14:56:58',1,30003969,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(2794,'2015-03-14 14:56:58','2015-03-14 14:56:58',1,30001550,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(2795,'2015-03-14 14:56:58','2015-08-29 14:46:07',1,30001000,0,6,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(2796,'2015-03-14 14:56:58','2015-03-14 14:56:58',1,30004475,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(2797,'2015-03-14 14:56:58','2015-08-29 14:46:07',1,30003982,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(2798,'2015-03-14 14:56:58','2015-08-29 14:46:07',1,30001006,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(2799,'2015-03-14 14:56:58','2015-08-29 14:46:07',1,30001026,1,2,2,0,0,0,0,0,0,2,2,1,2,2,6,6,7,0,1,1,3,7,6,0),(2800,'2015-03-14 14:56:58','2015-03-14 14:56:58',1,30000631,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(2801,'2015-03-14 14:56:58','2015-03-14 14:56:58',1,30004421,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(2802,'2015-03-14 14:56:58','2015-03-14 14:56:58',1,30001543,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(2803,'2015-03-14 14:56:58','2015-03-14 14:56:58',1,30003998,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(2804,'2015-03-14 14:56:58','2015-03-14 14:56:58',1,30001572,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(2805,'2015-03-14 14:56:58','2015-03-14 14:56:58',1,30003972,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(2806,'2015-03-14 14:56:58','2015-03-14 14:56:58',1,30001172,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(2807,'2015-03-14 14:56:58','2015-08-29 14:46:07',1,30003758,0,0,1,0,0,0,0,0,0,0,0,0,1,4,3,2,0,0,0,0,0,1,0,0),(2808,'2015-03-14 14:56:58','2015-08-29 14:46:07',1,30003764,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,0,0,0,0),(2809,'2015-03-14 14:56:58','2015-03-14 14:56:58',1,30000665,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(2810,'2015-03-14 14:56:58','2015-08-29 14:46:07',1,30002464,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(2811,'2015-03-14 14:56:58','2015-08-29 14:46:07',1,30001274,0,0,3,0,0,1,1,0,1,0,0,0,0,1,1,1,0,0,1,2,0,2,0,0),(2812,'2015-03-14 14:56:58','2015-08-29 14:46:07',1,30004017,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0),(2813,'2015-03-14 14:56:58','2015-08-29 14:46:07',1,30002447,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,1,0),(2814,'2015-03-14 14:56:58','2015-08-29 14:46:07',1,30001762,0,0,0,1,2,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(2815,'2015-03-14 14:56:58','2015-03-14 14:56:58',1,30003687,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(2816,'2015-03-14 14:56:58','2015-08-29 14:46:07',1,30003279,0,3,0,1,1,0,0,0,0,5,7,1,4,7,6,4,0,0,0,0,0,0,0,0),(2817,'2015-03-14 14:56:58','2015-03-14 14:56:58',1,30002900,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(2818,'2015-03-14 14:56:58','2015-08-29 14:46:07',1,30000659,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0),(2819,'2015-03-14 14:56:58','2015-03-14 14:56:58',1,30001238,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(2820,'2015-03-14 14:56:58','2015-08-29 14:46:07',1,30002872,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(2821,'2015-03-14 14:56:58','2015-03-14 14:56:58',1,30000369,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(2822,'2015-03-14 14:56:58','2015-08-29 14:46:07',1,30003950,1,13,0,2,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(2823,'2015-03-14 14:56:58','2015-03-14 14:56:58',1,30000510,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(2824,'2015-03-14 14:56:58','2015-08-29 14:46:07',1,30000653,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(2825,'2015-03-14 14:56:58','2015-03-14 14:56:58',1,30001040,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(2826,'2015-03-14 14:56:58','2015-03-14 14:56:58',1,30004572,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(2827,'2015-03-14 14:56:58','2015-03-14 14:56:58',1,30000244,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(2828,'2015-03-14 14:56:58','2015-03-14 14:56:58',1,30002873,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(2829,'2015-03-14 14:56:58','2015-08-29 14:46:07',1,30001231,0,0,0,0,0,1,0,0,1,0,0,0,0,0,0,0,0,1,1,0,0,0,2,0),(2830,'2015-03-14 14:56:58','2015-08-29 14:46:07',1,30002789,1,2,2,2,4,1,1,0,0,0,0,0,0,0,0,0,1,1,0,0,1,1,1,0),(2831,'2015-03-14 14:56:58','2015-03-14 14:56:58',1,30002417,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(2832,'2015-03-14 14:56:58','2015-03-14 14:56:58',1,30004095,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(2833,'2015-03-14 14:56:58','2015-03-14 14:56:58',1,30003873,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(2834,'2015-03-14 14:56:58','2015-03-14 14:56:58',1,30002751,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(2835,'2015-03-14 14:56:58','2015-03-14 14:56:58',1,30003887,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(2836,'2015-03-14 14:56:58','2015-08-29 14:46:07',1,30001405,0,0,0,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0),(2837,'2015-03-14 14:56:58','2015-03-14 14:56:58',1,30002747,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(2838,'2015-03-14 14:56:58','2015-03-14 14:56:58',1,30004115,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(2839,'2015-03-14 14:56:58','2015-08-29 14:46:07',1,30003069,0,2,0,0,4,2,3,1,0,1,1,0,1,1,1,0,0,0,0,0,0,0,0,0),(2840,'2015-03-14 14:56:58','2015-08-29 14:46:07',1,30004239,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0),(2841,'2015-03-14 14:56:58','2015-08-29 14:46:07',1,30002782,1,1,1,1,0,0,0,1,1,0,0,0,2,1,0,0,0,0,0,4,1,0,0,0),(2842,'2015-03-14 14:56:58','2015-03-14 14:56:58',1,30001406,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(2843,'2015-03-14 14:56:58','2015-03-14 14:56:58',1,30021392,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(2844,'2015-03-14 14:56:58','2015-08-29 14:46:07',1,30004306,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,1,1,0,0,0,0),(2845,'2015-03-14 14:56:58','2015-08-29 14:46:07',1,30001742,0,1,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0),(2846,'2015-03-14 14:56:58','2015-08-29 14:46:07',1,30001440,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0),(2847,'2015-03-14 14:56:58','2015-03-14 14:56:58',1,30004134,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(2848,'2015-03-14 14:56:58','2015-08-29 14:46:07',1,30000030,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(2849,'2015-03-14 14:56:58','2015-08-29 14:46:07',1,30002761,0,0,0,0,0,0,0,1,0,0,0,0,1,2,1,0,0,0,0,0,0,0,0,0),(2850,'2015-03-14 14:56:58','2015-03-14 14:56:58',1,30002416,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(2851,'2015-03-14 14:56:58','2015-08-29 14:46:07',1,30002580,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0),(2852,'2015-03-14 14:56:58','2015-03-14 14:56:58',1,30002797,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(2853,'2015-03-14 14:56:58','2015-03-14 14:56:58',1,30002749,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(2854,'2015-03-14 14:56:58','2015-08-29 14:46:07',1,30000018,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0),(2855,'2015-03-14 14:56:58','2015-03-14 14:56:58',1,30001242,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(2856,'2015-03-14 14:56:58','2015-08-29 14:46:07',1,30004794,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(2857,'2015-03-14 14:56:58','2015-08-29 14:46:07',1,30003729,0,0,0,0,3,1,1,2,0,0,1,1,0,0,0,0,1,1,1,12,1,0,0,0),(2858,'2015-03-14 14:56:58','2015-08-29 14:46:07',1,30002178,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,7,0,0,0,0),(2859,'2015-03-14 14:56:58','2015-03-14 14:56:58',1,30004579,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(2860,'2015-03-14 14:56:58','2015-08-29 14:46:07',1,30000737,0,2,0,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(2861,'2015-03-14 14:56:58','2015-03-14 14:56:58',1,30001164,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(2862,'2015-03-14 14:56:58','2015-03-14 14:56:58',1,30000736,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(2863,'2015-03-14 14:56:58','2015-03-14 14:56:58',1,30002027,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(2864,'2015-03-14 14:56:58','2015-03-14 14:56:58',1,30000519,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(2865,'2015-03-14 14:56:58','2015-03-14 14:56:58',1,30004295,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(2866,'2015-03-14 14:56:58','2015-08-29 14:46:07',1,30003883,0,0,0,0,0,0,0,0,2,0,0,0,0,0,0,0,0,2,1,1,0,0,0,0),(2867,'2015-03-14 14:56:58','2015-03-14 14:56:58',1,30003239,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(2868,'2015-03-14 14:56:58','2015-08-29 14:46:07',1,30045346,6,2,2,1,2,3,5,1,2,0,0,1,0,4,2,2,1,2,2,2,3,0,7,0),(2869,'2015-03-14 14:56:58','2015-03-14 14:56:58',1,30004772,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(2870,'2015-03-14 14:56:58','2015-08-29 14:46:07',1,30045308,1,1,3,1,2,2,0,0,0,0,0,0,0,0,0,0,0,1,2,0,0,1,2,0),(2871,'2015-03-14 14:56:58','2015-03-14 14:56:58',1,30002193,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(2872,'2015-03-14 14:56:58','2015-03-14 14:56:58',1,30000098,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(2873,'2015-03-14 14:56:58','2015-03-14 14:56:58',1,30000176,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(2874,'2015-03-14 14:56:58','2015-03-14 14:56:58',1,30003999,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(2875,'2015-03-14 14:56:58','2015-08-29 14:46:07',1,30005206,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(2876,'2015-03-14 14:56:58','2015-03-14 14:56:58',1,30004237,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(2877,'2015-03-14 14:56:58','2015-03-14 14:56:58',1,30003823,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(2878,'2015-03-14 14:56:58','2015-03-14 14:56:58',1,30000116,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(2879,'2015-03-14 14:56:58','2015-08-29 14:46:07',1,30005078,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0),(2880,'2015-03-14 14:56:58','2015-03-14 14:56:58',1,30001623,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(2881,'2015-03-14 14:56:58','2015-03-14 14:56:58',1,30011672,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(2882,'2015-03-14 14:56:58','2015-08-29 14:46:07',1,30005260,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(2883,'2015-03-14 14:56:58','2015-03-14 14:56:58',1,30005066,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(2884,'2015-03-14 14:56:58','2015-03-14 14:56:58',1,30005220,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(2885,'2015-03-14 14:56:58','2015-08-29 14:46:07',1,30001682,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0),(2886,'2015-03-14 14:56:58','2015-03-14 14:56:58',1,30001515,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(2887,'2015-03-14 14:56:58','2015-03-14 14:56:58',1,30004709,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(2888,'2015-03-14 14:56:58','2015-08-29 14:46:07',1,30003343,0,1,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(2889,'2015-03-14 14:56:58','2015-03-14 14:56:58',1,30001790,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(2890,'2015-03-14 14:56:58','2015-03-14 14:56:58',1,30002296,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(2891,'2015-03-14 14:56:58','2015-03-14 14:56:58',1,30003190,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(2892,'2015-03-14 14:56:58','2015-03-14 14:56:58',1,30001240,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(2893,'2015-03-14 14:56:58','2015-03-14 14:56:58',1,30005032,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(2894,'2015-03-14 14:56:58','2015-08-29 14:46:07',1,30000117,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,1,0,0),(2895,'2015-03-14 14:56:58','2015-03-14 14:56:58',1,30004096,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(2896,'2015-03-14 14:56:58','2015-08-29 14:46:07',1,30003863,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0),(2897,'2015-03-14 14:56:58','2015-08-29 14:46:07',1,30000056,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(2898,'2015-03-14 14:56:58','2015-08-29 14:46:07',1,30003486,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,0,0),(2899,'2015-03-14 14:56:58','2015-08-29 14:46:07',1,30004258,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0),(2900,'2015-03-14 14:56:58','2015-08-29 14:46:07',1,30003490,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0),(2901,'2015-03-14 14:56:58','2015-03-14 14:56:58',1,30001969,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(2902,'2015-03-14 14:56:58','2015-08-29 14:46:07',1,30004209,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0),(2903,'2015-03-14 14:56:58','2015-08-29 14:46:07',1,30000189,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,0,0,0),(2904,'2015-03-14 14:56:58','2015-03-14 14:56:58',1,30001692,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(2905,'2015-03-14 14:56:58','2015-03-14 14:56:58',1,30000024,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(2906,'2015-03-14 14:56:58','2015-03-14 14:56:58',1,30004176,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(2907,'2015-03-14 14:56:58','2015-03-14 14:56:58',1,30003860,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(2908,'2015-03-14 14:56:58','2015-08-29 14:46:07',1,30045314,0,7,0,1,0,1,1,0,1,1,2,2,3,2,0,0,4,0,0,1,0,2,1,0),(2909,'2015-03-14 14:56:58','2015-08-29 14:46:07',1,30001372,1,0,1,2,2,0,0,0,0,1,0,0,1,0,0,0,0,0,0,0,0,0,0,0),(2910,'2015-03-14 14:56:58','2015-03-14 14:56:58',1,30001410,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(2911,'2015-03-14 14:56:58','2015-03-14 14:56:58',1,30001360,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(2912,'2015-03-14 14:56:58','2015-08-29 14:46:07',1,30000141,1,0,0,1,1,0,1,0,0,0,0,0,3,0,0,0,0,0,0,0,0,0,0,0),(2913,'2015-03-14 14:56:58','2015-03-14 14:56:58',1,30005056,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(2914,'2015-03-14 14:56:58','2015-03-14 14:56:58',1,30004376,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(2915,'2015-03-14 14:56:58','2015-03-14 14:56:58',1,30004488,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(2916,'2015-03-14 14:56:58','2015-08-29 14:46:07',1,30001264,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,0,2,0),(2917,'2015-03-14 14:56:58','2015-03-14 14:56:58',1,30004340,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(2918,'2015-03-14 14:56:58','2015-03-14 14:56:58',1,30003458,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(2919,'2015-03-14 14:56:58','2015-03-14 14:56:58',1,30002414,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(2920,'2015-03-14 14:56:58','2015-03-14 14:56:58',1,30002566,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(2921,'2015-03-14 14:56:58','2015-08-29 14:46:07',1,30001020,0,0,0,0,0,0,0,0,0,1,1,0,3,0,0,0,0,1,1,1,0,0,0,0),(2922,'2015-03-14 14:56:58','2015-08-29 14:46:07',1,30002097,0,0,0,0,0,0,0,0,0,0,0,1,1,2,1,0,0,1,1,1,0,0,0,0),(2923,'2015-03-14 14:56:58','2015-08-29 14:46:07',1,30001980,3,1,0,2,0,0,0,0,0,0,0,0,2,0,0,0,0,0,0,0,0,1,1,0),(2924,'2015-03-14 14:56:58','2015-08-29 14:46:07',1,30003344,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,4,0,0,0,0),(2925,'2015-03-14 14:56:58','2015-03-14 14:56:58',1,30004316,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(2926,'2015-03-14 14:56:58','2015-03-14 14:56:58',1,30002311,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(2927,'2015-03-14 14:56:58','2015-03-14 14:56:58',1,30004375,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(2928,'2015-03-14 14:56:58','2015-03-14 14:56:58',1,30003625,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(2929,'2015-03-14 14:56:58','2015-03-14 14:56:58',1,30001485,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(2930,'2015-03-14 14:56:58','2015-03-14 14:56:58',1,30002248,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(2931,'2015-03-14 14:56:58','2015-03-14 14:56:58',1,30005247,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(2932,'2015-03-14 14:56:58','2015-03-14 14:56:58',1,30005124,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(2933,'2015-03-14 14:56:58','2015-03-14 14:56:58',1,30003092,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(2934,'2015-03-14 14:56:58','2015-03-14 14:56:58',1,30031392,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(2935,'2015-03-14 14:56:58','2015-08-29 14:46:07',1,30002737,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0),(2936,'2015-03-14 14:56:58','2015-08-29 14:46:07',1,30003471,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,0,0,0,0,0,0,1,0),(2937,'2015-03-14 14:56:58','2015-03-14 14:56:58',1,30004128,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(2938,'2015-03-14 14:56:58','2015-03-14 14:56:58',1,30004152,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(2939,'2015-03-14 14:56:58','2015-03-14 14:56:58',1,30005038,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(2940,'2015-03-14 14:56:58','2015-08-29 14:46:07',1,30001394,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0),(2941,'2015-03-14 14:56:58','2015-08-29 14:46:07',1,30045312,0,0,0,1,1,0,0,0,1,0,0,0,1,0,0,0,0,1,0,0,0,0,0,0),(2942,'2015-03-14 14:56:58','2015-03-14 14:56:58',1,30005258,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(2943,'2015-03-14 14:56:58','2015-08-29 14:46:07',1,30000181,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0),(2944,'2015-03-14 14:56:58','2015-03-14 14:56:58',1,30004103,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(2945,'2015-03-14 14:56:58','2015-08-29 14:46:07',1,30003068,1,0,0,6,4,3,2,0,1,3,3,0,2,2,2,1,7,0,0,2,1,1,1,0),(2946,'2015-03-14 14:56:58','2015-03-14 14:56:58',1,30001901,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(2947,'2015-03-14 14:56:58','2015-03-14 14:56:58',1,30001536,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(2948,'2015-03-14 14:56:58','2015-03-14 14:56:58',1,30001963,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(2949,'2015-03-14 14:56:58','2015-03-14 14:56:58',1,30002452,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(2950,'2015-03-14 14:56:58','2015-03-14 14:56:58',1,30004895,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(2951,'2015-03-14 14:56:58','2015-03-14 14:56:58',1,30022547,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(2952,'2015-03-14 14:56:58','2015-08-29 14:46:07',1,30002079,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(2953,'2015-03-14 14:56:58','2015-03-14 14:56:58',1,30002519,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(2954,'2015-03-14 14:56:58','2015-08-29 14:46:07',1,30002286,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0),(2955,'2015-03-14 14:56:58','2015-03-14 14:56:58',1,30000246,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(2956,'2015-03-14 14:56:58','2015-08-29 14:46:07',1,30000807,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(2957,'2015-03-14 14:56:58','2015-03-14 14:56:58',1,30001589,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(2958,'2015-03-14 14:56:58','2015-03-14 14:56:58',1,30003177,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(2959,'2015-03-14 14:56:58','2015-03-14 14:56:58',1,30003300,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(2960,'2015-03-14 14:56:58','2015-08-29 14:46:07',1,30004698,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(2961,'2015-03-14 14:56:58','2015-03-14 14:56:58',1,30002042,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(2962,'2015-03-14 14:56:58','2015-08-29 14:46:07',1,30002767,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0),(2963,'2015-03-14 14:56:58','2015-03-14 14:56:58',1,30003501,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(2964,'2015-03-14 14:56:58','2015-03-14 14:56:58',1,30000021,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(2965,'2015-03-14 14:56:58','2015-03-14 14:56:58',1,30003926,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(2966,'2015-03-14 14:56:58','2015-08-29 14:46:07',1,30002771,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0),(2967,'2015-03-14 14:56:58','2015-03-14 14:56:58',1,30005050,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(2968,'2015-03-14 14:56:58','2015-03-14 14:56:58',1,30001415,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(2969,'2015-03-14 14:56:58','2015-03-14 14:56:58',1,30003066,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(2970,'2015-03-14 14:56:58','2015-03-14 14:56:58',1,30003096,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(2971,'2015-03-14 14:56:58','2015-08-29 14:46:07',1,30003089,0,0,0,0,0,0,0,0,0,1,2,0,0,0,0,0,0,0,0,0,0,0,1,0),(2972,'2015-03-14 14:56:58','2015-08-29 14:46:07',1,30002802,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0),(2973,'2015-03-14 14:56:58','2015-03-14 14:56:58',1,30004348,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(2974,'2015-03-14 14:56:58','2015-08-29 14:46:07',1,30004642,0,0,0,0,0,0,0,0,1,6,5,0,0,0,0,1,0,2,0,3,0,0,0,0),(2975,'2015-03-14 14:56:58','2015-03-14 14:56:58',1,30003635,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(2976,'2015-03-14 14:56:58','2015-08-29 14:46:07',1,30001180,0,1,0,0,0,0,0,0,1,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0),(2977,'2015-03-14 14:56:58','2015-08-29 14:46:07',1,30004833,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(2978,'2015-03-14 14:56:58','2015-03-14 14:56:58',1,30000269,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(2979,'2015-03-14 14:56:58','2015-03-14 14:56:58',1,30000347,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(2980,'2015-03-14 14:56:58','2015-03-14 14:56:58',1,30000124,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(2981,'2015-03-14 14:56:58','2015-03-14 14:56:58',1,30000498,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(2982,'2015-03-14 14:56:58','2015-08-29 14:46:07',1,30000710,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(2983,'2015-03-14 14:56:58','2015-08-29 14:46:07',1,30000874,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(2984,'2015-03-14 14:56:58','2015-08-29 14:46:07',1,30004593,0,0,0,0,0,0,0,0,0,2,0,0,1,0,0,0,0,0,0,0,0,0,0,0),(2985,'2015-03-14 14:56:58','2015-03-14 14:56:58',1,30002142,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(2986,'2015-03-14 14:56:58','2015-08-29 14:46:07',1,30003951,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(2987,'2015-03-14 14:56:58','2015-03-14 14:56:58',1,30003970,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(2988,'2015-03-14 14:56:58','2015-08-29 14:46:07',1,30004625,0,0,0,0,0,0,0,0,0,0,1,2,0,0,0,0,0,0,0,1,0,0,0,0),(2989,'2015-03-14 14:56:58','2015-08-29 14:46:07',1,30001945,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0),(2990,'2015-03-14 14:56:58','2015-08-29 14:46:07',1,30004910,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0),(2991,'2015-03-14 14:56:58','2015-03-14 14:56:58',1,30001223,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(2992,'2015-03-14 14:56:58','2015-08-29 14:46:07',1,30003689,0,1,1,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(2993,'2015-03-14 14:56:58','2015-03-14 14:56:58',1,30000357,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(2994,'2015-03-14 14:56:58','2015-08-29 14:46:07',1,30001592,0,0,0,0,0,0,0,0,1,3,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(2995,'2015-03-14 14:56:58','2015-08-29 14:46:07',1,30000540,0,0,0,0,0,0,0,0,0,4,0,0,0,0,0,0,0,0,0,0,3,7,1,0),(2996,'2015-03-14 14:56:58','2015-03-14 14:56:58',1,30004018,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(2997,'2015-03-14 14:56:58','2015-08-29 14:46:07',1,30002847,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(2998,'2015-03-14 14:56:58','2015-03-14 14:56:58',1,30002434,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(2999,'2015-03-14 14:56:58','2015-03-14 14:56:58',1,30001350,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(3000,'2015-03-14 14:56:58','2015-03-14 14:56:58',1,30000528,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(3001,'2015-03-14 14:56:58','2015-03-14 14:56:58',1,30003168,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(3002,'2015-03-14 14:56:58','2015-03-14 14:56:58',1,30003643,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(3003,'2015-03-14 14:56:58','2015-03-14 14:56:58',1,30005163,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(3004,'2015-03-14 14:56:58','2015-03-14 14:56:58',1,30000467,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(3005,'2015-03-14 14:56:58','2015-08-29 14:46:07',1,30003684,0,2,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(3006,'2015-03-14 14:56:58','2015-03-14 14:56:58',1,30000430,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(3007,'2015-03-14 14:56:58','2015-03-14 14:56:58',1,30002842,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(3008,'2015-03-14 14:56:58','2015-08-29 14:46:07',1,30002470,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0),(3009,'2015-03-14 14:56:58','2015-03-14 14:56:58',1,30001499,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(3010,'2015-03-14 14:56:58','2015-08-29 14:46:07',1,30001989,0,0,0,0,0,0,2,0,0,0,1,1,0,0,0,0,0,0,0,0,0,0,0,0),(3011,'2015-03-14 14:56:58','2015-08-29 14:46:07',1,30000891,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(3012,'2015-03-14 14:56:58','2015-03-14 14:56:58',1,30001526,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(3013,'2015-03-14 14:56:58','2015-08-29 14:46:07',1,30004927,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,0,0,0,0),(3014,'2015-03-14 14:56:58','2015-03-14 14:56:58',1,30000605,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(3015,'2015-03-14 14:56:58','2015-03-14 14:56:58',1,30004203,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(3016,'2015-03-14 14:56:58','2015-03-14 14:56:58',1,30002300,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(3017,'2015-03-14 14:56:58','2015-03-14 14:56:58',1,30001876,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(3018,'2015-03-14 14:56:58','2015-03-14 14:56:58',1,30000968,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(3019,'2015-03-14 14:56:58','2015-03-14 14:56:58',1,30001809,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(3020,'2015-03-14 14:56:58','2015-08-29 14:46:07',1,30004827,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(3021,'2015-03-14 14:56:58','2015-08-29 14:46:07',1,30004003,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0),(3022,'2015-03-14 14:56:58','2015-03-14 14:56:58',1,30004526,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(3023,'2015-03-14 14:56:58','2015-08-29 14:46:07',1,30002376,0,3,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(3024,'2015-03-14 14:56:58','2015-03-14 14:56:58',1,30002435,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(3025,'2015-03-14 14:56:58','2015-08-29 14:46:07',1,30000786,0,0,0,0,0,1,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0),(3026,'2015-03-14 14:56:58','2015-03-14 14:56:58',1,30004944,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(3027,'2015-03-14 14:56:58','2015-03-14 14:56:58',1,30005179,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(3028,'2015-03-14 14:56:58','2015-03-14 14:56:58',1,30001928,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(3029,'2015-03-14 14:56:58','2015-03-14 14:56:58',1,30002607,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(3030,'2015-03-14 14:56:58','2015-03-14 14:56:58',1,30000354,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(3031,'2015-03-14 14:56:58','2015-03-14 14:56:58',1,30004659,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(3032,'2015-03-14 14:56:58','2015-03-14 14:56:58',1,30001560,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(3033,'2015-03-14 14:56:58','2015-08-29 14:46:07',1,30001174,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0),(3034,'2015-03-14 14:56:58','2015-03-14 14:56:58',1,30000462,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(3035,'2015-03-14 14:56:58','2015-08-29 14:46:07',1,30003255,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(3036,'2015-03-14 14:56:58','2015-03-14 14:56:58',1,30041392,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(3037,'2015-03-14 14:56:58','2015-08-29 14:46:07',1,30002976,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0),(3038,'2015-03-14 14:56:58','2015-03-14 14:56:58',1,30000029,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(3039,'2015-03-14 14:56:58','2015-08-29 14:46:07',1,30002989,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,0,0,0),(3040,'2015-03-14 14:56:58','2015-08-29 14:46:07',1,30004999,0,1,0,5,4,0,0,0,0,1,1,1,0,1,0,2,0,0,1,0,0,0,2,0),(3041,'2015-03-14 14:56:58','2015-03-14 14:56:58',1,30003519,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(3042,'2015-03-14 14:56:58','2015-03-14 14:56:58',1,30003049,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(3043,'2015-03-14 14:56:58','2015-08-29 14:46:07',1,30003063,1,0,1,0,0,0,2,0,5,1,0,1,4,6,6,7,0,2,9,1,6,3,1,0),(3044,'2015-03-14 14:56:58','2015-08-29 14:46:07',1,30002722,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,0,0,0,0),(3045,'2015-03-14 14:56:58','2015-08-29 14:46:07',1,30002074,1,0,1,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0),(3046,'2015-03-14 14:56:58','2015-08-29 14:46:07',1,30003882,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,1,0,0,0,0,0),(3047,'2015-03-14 14:56:58','2015-08-29 14:46:07',1,30002540,0,0,0,0,0,0,0,0,1,1,3,0,0,1,1,1,0,0,0,2,0,1,0,0),(3048,'2015-03-14 14:56:58','2015-03-14 14:56:58',1,30001712,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(3049,'2015-03-14 14:56:58','2015-03-14 14:56:58',1,30032547,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(3050,'2015-03-14 14:56:58','2015-03-14 14:56:58',1,30003579,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(3051,'2015-03-14 14:56:58','2015-03-14 14:56:58',1,30000002,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(3052,'2015-03-14 14:56:58','2015-03-14 14:56:58',1,30003549,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(3053,'2015-03-14 14:56:58','2015-08-29 14:46:07',1,30002065,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,1,0,0,0,0,0,0,0,0),(3054,'2015-03-14 14:56:58','2015-03-14 14:56:58',1,30005075,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(3055,'2015-03-14 14:56:58','2015-08-29 14:46:07',1,30005002,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0),(3056,'2015-03-14 14:56:58','2015-03-14 14:56:58',1,30004159,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(3057,'2015-03-14 14:56:58','2015-03-14 14:56:58',1,30003592,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(3058,'2015-03-14 14:56:58','2015-03-14 14:56:58',1,30001917,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(3059,'2015-03-14 14:56:58','2015-03-14 14:56:58',1,30002161,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(3060,'2015-03-14 14:56:58','2015-08-29 14:46:07',1,30000683,0,1,0,1,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(3061,'2015-03-14 14:56:58','2015-08-29 14:46:07',1,30004663,0,0,0,0,0,0,0,0,0,1,0,0,1,0,0,0,0,0,0,0,0,0,0,0),(3062,'2015-03-14 14:56:58','2015-03-14 14:56:58',1,30004541,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(3063,'2015-03-14 14:56:58','2015-03-14 14:56:58',1,30001923,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(3064,'2015-03-14 14:56:58','2015-03-14 14:56:58',1,30001605,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(3065,'2015-03-14 14:56:58','2015-03-14 14:56:58',1,30004700,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(3066,'2015-03-14 14:56:58','2015-03-14 14:56:58',1,30002849,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(3067,'2015-03-14 14:56:58','2015-08-29 14:46:07',1,30002932,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0),(3068,'2015-03-14 14:56:58','2015-03-14 14:56:58',1,30005259,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(3069,'2015-03-14 14:56:58','2015-08-29 14:46:07',1,30002865,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0),(3070,'2015-03-14 14:56:58','2015-03-14 14:56:58',1,30005233,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(3071,'2015-03-14 14:56:58','2015-08-29 14:46:07',1,30003039,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(3072,'2015-03-14 14:56:58','2015-03-14 14:56:58',1,30002728,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(3073,'2015-03-14 14:56:58','2015-03-14 14:56:58',1,30003409,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(3074,'2015-03-14 14:56:58','2015-03-14 14:56:58',1,30005039,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(3075,'2015-03-14 14:56:58','2015-08-29 14:46:07',1,30003759,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,2,0,0,0,0,0,14,0,0),(3076,'2015-03-14 14:56:58','2015-08-29 14:46:07',1,30003172,0,0,0,0,0,0,0,8,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0),(3077,'2015-03-14 14:56:58','2015-03-14 14:56:58',1,30004689,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(3078,'2015-03-14 14:56:58','2015-03-14 14:56:58',1,30001460,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(3079,'2015-03-14 14:56:58','2015-08-29 14:46:07',1,30001833,0,0,0,0,0,0,0,0,1,0,0,1,0,3,3,0,1,1,1,1,0,1,0,0),(3080,'2015-03-14 14:56:58','2015-03-14 14:56:58',1,30001953,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(3081,'2015-03-14 14:56:58','2015-03-14 14:56:58',1,30004505,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(3082,'2015-03-14 14:56:58','2015-03-14 14:56:58',1,30001507,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(3083,'2015-03-14 14:56:58','2015-03-14 14:56:58',1,30001587,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(3084,'2015-03-14 14:56:58','2015-08-29 14:46:07',1,30001069,0,1,0,0,0,0,0,0,0,0,0,0,2,0,0,0,0,0,0,0,0,0,0,0),(3085,'2015-03-14 14:56:58','2015-03-14 14:56:58',1,30002624,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(3086,'2015-03-14 14:56:58','2015-03-14 14:56:58',1,30001337,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(3087,'2015-03-14 14:56:58','2015-03-14 14:56:58',1,30003421,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(3088,'2015-03-14 14:56:58','2015-08-29 14:46:07',1,30000154,0,0,0,0,0,0,0,0,0,0,0,0,0,2,0,0,0,0,0,0,0,0,0,0),(3089,'2015-03-14 14:56:58','2015-08-29 14:46:07',1,30000020,2,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(3090,'2015-03-14 14:56:58','2015-03-14 14:56:58',1,30005087,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(3091,'2015-03-14 14:56:58','2015-03-14 14:56:58',1,30003459,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(3092,'2015-03-14 14:56:58','2015-03-14 14:56:58',1,30003025,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(3093,'2015-03-14 14:56:58','2015-08-29 14:46:07',1,30005007,0,0,0,0,0,0,0,0,1,0,0,0,2,0,0,4,7,1,2,1,1,1,9,0),(3094,'2015-03-14 14:56:58','2015-08-29 14:46:07',1,30002973,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,0,0,0,0),(3095,'2015-03-14 14:56:58','2015-08-29 14:46:07',1,30001400,0,3,1,0,0,6,2,2,1,0,3,3,1,0,0,2,0,0,0,2,1,0,1,0),(3096,'2015-03-14 14:56:58','2015-08-29 14:46:07',1,30001048,0,0,0,0,0,1,0,0,0,0,1,0,0,0,0,0,0,0,1,1,0,0,0,0),(3097,'2015-03-14 14:56:58','2015-03-14 14:56:58',1,30001416,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(3098,'2015-03-14 14:56:58','2015-08-29 14:46:07',1,30004630,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(3099,'2015-03-14 14:56:58','2015-03-14 14:56:58',1,30000647,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(3100,'2015-03-14 14:56:58','2015-03-14 14:56:58',1,30004641,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(3101,'2015-03-14 14:56:58','2015-08-29 14:46:07',1,30001038,0,0,0,0,0,0,0,0,1,0,0,0,10,0,0,0,0,0,0,1,0,1,0,0),(3102,'2015-03-14 14:56:58','2015-03-14 14:56:58',1,30002604,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(3103,'2015-03-14 14:56:58','2015-03-14 14:56:58',1,30002139,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(3104,'2015-03-14 14:56:58','2015-03-14 14:56:58',1,30000599,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(3105,'2015-03-14 14:56:58','2015-03-14 14:56:58',1,30000615,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(3106,'2015-03-14 14:56:58','2015-03-14 14:56:58',1,30002114,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(3107,'2015-03-14 14:56:58','2015-03-14 14:56:58',1,30003973,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(3108,'2015-03-14 14:56:58','2015-08-29 14:46:07',1,30001119,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(3109,'2015-03-14 14:56:58','2015-08-29 14:46:07',1,30005300,1,1,0,1,1,1,0,2,0,0,0,1,1,0,0,0,0,0,0,0,1,0,1,0),(3110,'2015-03-14 14:56:58','2015-03-14 14:56:58',1,30042547,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(3111,'2015-03-14 14:56:58','2015-03-14 14:56:58',1,30004897,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(3112,'2015-03-14 14:56:58','2015-03-14 14:56:58',1,30005193,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(3113,'2015-03-14 14:56:58','2015-03-14 14:56:58',1,30001687,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(3114,'2015-03-14 14:56:58','2015-03-14 14:56:58',1,30003575,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(3115,'2015-03-14 14:56:58','2015-08-29 14:46:07',1,30002996,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0),(3116,'2015-03-14 14:56:58','2015-08-29 14:46:07',1,30000533,0,0,0,0,0,0,0,0,0,0,0,0,2,0,0,0,0,7,0,0,0,0,0,0),(3117,'2015-03-14 14:56:58','2015-03-14 14:56:58',1,30000384,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(3118,'2015-03-14 14:56:58','2015-03-14 14:56:58',1,30002294,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(3119,'2015-03-14 14:56:58','2015-08-29 14:46:07',1,30000649,0,0,1,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0),(3120,'2015-03-14 14:56:58','2015-03-14 14:56:58',1,30004896,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(3121,'2015-03-14 14:56:58','2015-08-29 14:46:07',1,30000704,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0),(3122,'2015-03-14 14:56:58','2015-03-14 14:56:58',1,30001601,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(3123,'2015-03-14 14:56:58','2015-03-14 14:56:58',1,30000397,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(3124,'2015-03-14 14:56:58','2015-03-14 14:56:58',1,30003204,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(3125,'2015-03-14 14:56:58','2015-08-29 14:46:07',1,30002493,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(3126,'2015-03-14 14:56:58','2015-03-14 14:56:58',1,30004353,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(3127,'2015-03-14 14:56:58','2015-08-29 14:46:07',1,30000319,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0),(3128,'2015-03-14 14:56:58','2015-08-29 14:46:07',1,30004885,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0),(3129,'2015-03-14 14:56:58','2015-03-14 14:56:58',1,30004021,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(3130,'2015-03-14 14:56:58','2015-03-14 14:56:58',1,30002830,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(3131,'2015-03-14 14:56:58','2015-03-14 14:56:58',1,30000300,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(3132,'2015-03-14 14:56:58','2015-08-29 14:46:07',1,30003334,0,0,0,0,0,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(3133,'2015-03-14 14:56:58','2015-03-14 14:56:58',1,30002928,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(3134,'2015-03-14 14:56:58','2015-03-14 14:56:58',1,30000466,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(3135,'2015-03-14 14:56:58','2015-03-14 14:56:58',1,30001804,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(3136,'2015-03-14 14:56:58','2015-03-14 14:56:58',1,30002462,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(3137,'2015-03-14 14:56:58','2015-03-14 14:56:58',1,30004747,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(3138,'2015-03-14 14:56:58','2015-03-14 14:56:58',1,30004680,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(3139,'2015-03-14 14:56:58','2015-08-29 14:46:07',1,30002516,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,3,0,0,0,0,0,1,0),(3140,'2015-03-14 14:56:58','2015-03-14 14:56:58',1,30003432,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(3141,'2015-03-14 14:56:58','2015-08-29 14:46:07',1,30004967,0,0,0,0,0,0,0,0,1,0,0,0,1,1,1,1,0,0,0,0,1,0,0,0),(3142,'2015-03-14 14:56:58','2015-03-14 14:56:58',1,30002261,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(3143,'2015-03-14 14:56:58','2015-03-14 14:56:58',1,30005316,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(3144,'2015-03-14 14:56:58','2015-08-29 14:46:07',1,30002545,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(3145,'2015-03-14 14:56:58','2015-03-14 14:56:58',1,30000813,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(3146,'2015-03-14 14:56:58','2015-03-14 14:56:58',1,30005106,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(3147,'2015-03-14 14:56:58','2015-08-29 14:46:07',1,30004800,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,1,2,0),(3148,'2015-03-14 14:56:58','2015-03-14 14:56:58',1,30002458,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(3149,'2015-03-14 14:56:58','2015-08-29 14:46:07',1,30004705,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(3150,'2015-03-14 14:56:58','2015-08-29 14:46:07',1,30002355,0,0,0,0,0,0,0,0,3,3,1,1,14,4,0,1,0,0,0,1,1,2,2,0),(3151,'2015-03-14 14:56:58','2015-03-14 14:56:58',1,30000971,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(3152,'2015-03-14 14:56:58','2015-03-14 14:56:58',1,30004364,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(3153,'2015-03-14 14:56:58','2015-03-14 14:56:58',1,30001078,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(3154,'2015-03-14 14:56:58','2015-08-29 14:46:07',1,30000208,2,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,7,0,0,0,0,0),(3155,'2015-03-14 14:56:58','2015-08-29 14:46:07',1,30004823,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(3156,'2015-03-14 14:56:58','2015-03-14 14:56:58',1,30002869,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(3157,'2015-03-14 14:56:58','2015-03-14 14:56:58',1,30001995,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(3158,'2015-03-14 14:56:58','2015-03-14 14:56:58',1,30002601,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(3159,'2015-03-14 14:56:58','2015-03-14 14:56:58',1,30004449,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(3160,'2015-03-14 14:56:58','2015-03-14 14:56:58',1,30000620,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(3161,'2015-03-14 14:56:58','2015-03-14 14:56:58',1,30000922,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(3162,'2015-03-14 14:56:58','2015-03-14 14:56:58',1,30001479,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(3163,'2015-03-14 14:56:58','2015-03-14 14:56:58',1,30004356,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(3164,'2015-03-14 14:56:58','2015-03-14 14:56:58',1,30004633,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(3165,'2015-03-14 14:56:58','2015-08-29 14:46:07',1,30000591,0,1,0,0,0,0,0,0,0,0,0,0,1,1,1,0,0,1,0,0,0,0,0,0),(3166,'2015-03-14 14:56:58','2015-08-29 14:46:07',1,30000639,0,1,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0),(3167,'2015-03-14 14:56:58','2015-08-29 14:46:07',1,30002428,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0),(3168,'2015-03-14 14:56:58','2015-08-29 14:46:07',1,30000905,0,1,0,0,0,0,0,0,1,0,0,0,1,0,0,0,0,0,1,0,0,0,0,0),(3169,'2015-03-14 14:56:58','2015-03-14 14:56:58',1,30001032,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(3170,'2015-03-14 14:56:58','2015-03-14 14:56:58',1,30004511,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(3171,'2015-03-14 14:56:58','2015-08-29 14:46:07',1,30001597,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0),(3172,'2015-03-14 14:56:58','2015-03-14 14:56:58',1,30003200,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(3173,'2015-03-14 14:56:58','2015-08-29 14:46:07',1,30000848,3,4,3,2,3,2,1,0,2,2,12,2,2,0,0,0,0,0,1,10,3,2,1,0),(3174,'2015-03-14 14:56:58','2015-08-29 14:46:07',1,30004478,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(3175,'2015-03-14 14:56:58','2015-08-29 14:46:07',1,30004881,0,0,0,1,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,1,1,0),(3176,'2015-03-14 14:56:58','2015-03-14 14:56:58',1,30005140,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(3177,'2015-03-14 14:56:58','2015-03-14 14:56:58',1,30004795,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(3178,'2015-03-14 14:56:58','2015-03-14 14:56:58',1,30003665,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(3179,'2015-03-14 14:56:58','2015-03-14 14:56:58',1,30002377,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(3180,'2015-03-14 14:56:58','2015-03-14 14:56:58',1,30004213,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(3181,'2015-03-14 14:56:58','2015-08-29 14:46:07',1,30002603,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0),(3182,'2015-03-14 14:56:58','2015-03-14 14:56:58',1,30000471,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(3183,'2015-03-14 14:56:58','2015-08-29 14:46:07',1,30002000,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0),(3184,'2015-03-14 14:56:58','2015-03-14 14:56:58',1,30000953,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(3185,'2015-03-14 14:56:58','2015-03-14 14:56:58',1,30002181,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(3186,'2015-03-14 14:56:58','2015-03-14 14:56:58',1,30004802,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(3187,'2015-03-14 14:56:58','2015-03-14 14:56:58',1,30001747,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(3188,'2015-03-14 14:56:58','2015-03-14 14:56:58',1,30004010,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(3189,'2015-03-14 14:56:58','2015-03-14 14:56:58',1,30001332,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(3190,'2015-03-14 14:56:58','2015-08-29 14:46:07',1,30003284,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,1,1,0,0),(3191,'2015-03-14 14:56:58','2015-03-14 14:56:58',1,30004773,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(3192,'2015-03-14 14:56:58','2015-08-29 14:46:07',1,30004461,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,3,2,0,0,0,0),(3193,'2015-03-14 14:56:58','2015-03-14 14:56:58',1,30002852,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(3194,'2015-03-14 14:56:58','2015-03-14 14:56:58',1,30000556,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(3195,'2015-03-14 14:56:58','2015-03-14 14:56:58',1,30000761,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(3196,'2015-03-14 14:56:58','2015-03-14 14:56:58',1,30005153,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(3197,'2015-03-14 14:56:58','2015-03-14 14:56:58',1,30001754,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(3198,'2015-03-14 14:56:58','2015-08-29 14:46:07',1,30004739,0,0,0,0,0,0,0,0,5,1,0,0,6,0,0,2,0,0,0,2,1,0,0,0),(3199,'2015-03-14 14:56:58','2015-03-14 14:56:58',1,30000633,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(3200,'2015-03-14 14:56:58','2015-08-29 14:46:07',1,30005134,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0),(3201,'2015-03-14 14:56:58','2015-03-14 14:56:58',1,30004901,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(3202,'2015-03-14 14:56:58','2015-03-14 14:56:58',1,30002374,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(3203,'2015-03-14 14:56:58','2015-08-29 14:46:07',1,30000681,0,49,0,0,0,0,0,0,0,0,0,0,6,0,0,0,0,0,0,1,0,0,0,0),(3204,'2015-03-14 14:56:58','2015-03-14 14:56:58',1,30001625,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(3205,'2015-03-14 14:56:58','2015-08-29 14:46:07',1,30000998,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,0,0,0),(3206,'2015-03-14 14:56:58','2015-03-14 14:56:58',1,30004369,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(3207,'2015-03-14 14:56:58','2015-08-29 14:46:07',1,30000272,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0),(3208,'2015-03-14 14:56:58','2015-03-14 14:56:58',1,30004234,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(3209,'2015-03-14 14:56:58','2015-03-14 14:56:58',1,30002190,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(3210,'2015-03-14 14:56:58','2015-03-14 14:56:58',1,30003558,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(3211,'2015-03-14 14:56:58','2015-08-29 14:46:07',1,30003503,5,8,1,7,8,0,0,8,1,0,0,0,1,3,4,5,1,0,0,0,2,1,0,0),(3212,'2015-03-14 14:56:58','2015-08-29 14:46:07',1,30005243,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(3213,'2015-03-14 14:56:58','2015-03-14 14:56:58',1,30005064,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(3214,'2015-03-14 14:56:58','2015-03-14 14:56:58',1,30002570,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(3215,'2015-03-14 14:56:58','2015-08-29 14:46:07',1,30000096,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,0,0),(3216,'2015-03-14 14:56:58','2015-03-14 14:56:58',1,30003520,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(3217,'2015-03-14 14:56:58','2015-08-29 14:46:07',1,30000104,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0),(3218,'2015-03-14 14:56:58','2015-08-29 14:46:07',1,30000122,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(3219,'2015-03-14 14:56:58','2015-08-29 14:46:07',1,30003499,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0),(3220,'2015-03-14 14:56:58','2015-03-14 14:56:58',1,30003546,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(3221,'2015-03-14 14:56:58','2015-08-29 14:46:07',1,30000162,0,0,0,1,1,2,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0),(3222,'2015-03-14 14:56:58','2015-03-14 14:56:58',1,30003576,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(3223,'2015-03-14 14:56:58','2015-03-14 14:56:58',1,30000047,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(3224,'2015-03-14 14:56:58','2015-03-14 14:56:58',1,30005210,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(3225,'2015-03-14 14:56:58','2015-08-29 14:46:07',1,30001393,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0),(3226,'2015-03-14 14:56:58','2015-03-14 14:56:58',1,30005235,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(3227,'2015-03-14 14:56:58','2015-08-29 14:46:07',1,30003084,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(3228,'2015-03-14 14:56:58','2015-03-14 14:56:58',1,30012505,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(3229,'2015-03-14 14:56:58','2015-03-14 14:56:58',1,30002242,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(3230,'2015-03-14 14:56:58','2015-08-29 14:46:07',1,30003559,0,0,0,0,0,0,0,0,0,1,1,0,0,0,2,2,0,0,0,0,0,0,1,0),(3231,'2015-03-14 14:56:58','2015-08-29 14:46:07',1,30005201,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,0,0,0,0,0,0,0),(3232,'2015-03-14 14:56:58','2015-08-29 14:46:07',1,30005230,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0),(3233,'2015-03-14 14:56:58','2015-03-14 14:56:58',1,30004112,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(3234,'2015-03-14 14:56:58','2015-08-29 14:46:07',1,30001658,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0),(3235,'2015-03-14 14:56:58','2015-08-29 14:46:07',1,30002760,0,0,0,1,1,0,0,0,0,0,0,1,0,0,0,0,1,1,0,1,0,0,0,0),(3236,'2015-03-14 14:56:58','2015-08-29 14:46:07',1,30003060,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0),(3237,'2015-03-14 14:56:58','2015-03-14 14:56:58',1,30003855,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(3238,'2015-03-14 14:56:58','2015-08-29 14:46:07',1,30001388,0,0,0,0,0,1,0,1,0,2,1,0,0,0,1,2,0,0,0,0,0,0,0,0),(3239,'2015-03-14 14:56:58','2015-03-14 14:56:58',1,30004247,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(3240,'2015-03-14 14:56:58','2015-03-14 14:56:58',1,30003024,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(3241,'2015-03-14 14:56:58','2015-03-14 14:56:58',1,30002194,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(3242,'2015-03-14 14:56:58','2015-03-14 14:56:58',1,30001722,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(3243,'2015-03-14 14:56:58','2015-08-29 14:46:07',1,30045318,5,1,0,0,0,0,0,2,1,1,1,0,0,2,0,0,1,0,1,1,0,0,0,0),(3244,'2015-03-14 14:56:58','2015-08-29 14:46:07',1,30005325,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(3245,'2015-03-14 14:56:58','2015-03-14 14:56:58',1,30005041,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(3246,'2015-03-14 14:56:58','2015-03-14 14:56:58',1,30004235,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(3247,'2015-03-14 14:56:58','2015-03-14 14:56:58',1,30003868,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(3248,'2015-03-14 14:56:58','2015-08-29 14:46:07',1,30000052,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0),(3249,'2015-03-14 14:56:58','2015-03-14 14:56:58',1,30000202,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(3250,'2015-03-14 14:56:58','2015-08-29 14:46:07',1,30003444,0,0,1,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,0,0),(3251,'2015-03-14 14:56:58','2015-03-14 14:56:58',1,30003034,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(3252,'2015-03-14 14:56:58','2015-03-14 14:56:58',1,30003396,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(3253,'2015-03-14 14:56:58','2015-03-14 14:56:58',1,30001654,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(3254,'2015-03-14 14:56:58','2015-08-29 14:46:07',1,30000140,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,1,0,0,0),(3255,'2015-03-14 14:56:58','2015-08-29 14:46:07',1,30003835,0,1,0,1,0,0,0,0,0,0,0,0,0,0,1,1,2,0,0,0,0,0,0,0),(3256,'2015-03-14 14:56:58','2015-08-29 14:46:07',1,30002213,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0),(3257,'2015-03-14 14:56:58','2015-08-29 14:46:07',1,30001182,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,2,0,0,0,0),(3258,'2015-03-14 14:56:58','2015-08-29 14:46:07',1,30001832,0,1,0,0,0,0,0,0,0,0,0,0,1,7,0,0,0,1,0,0,0,0,0,0),(3259,'2015-03-14 14:56:58','2015-03-14 14:56:58',1,30001818,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(3260,'2015-03-14 14:56:58','2015-03-14 14:56:58',1,30001316,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(3261,'2015-03-14 14:56:58','2015-03-14 14:56:58',1,30000209,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(3262,'2015-03-14 14:56:58','2015-03-14 14:56:58',1,30000443,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(3263,'2015-03-14 14:56:58','2015-03-14 14:56:58',1,30001027,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(3264,'2015-03-14 14:56:58','2015-08-29 14:46:07',1,30004398,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0),(3265,'2015-03-14 14:56:58','2015-08-29 14:46:07',1,30002974,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0),(3266,'2015-03-14 14:56:58','2015-03-14 14:56:58',1,30002401,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(3267,'2015-03-14 14:56:58','2015-03-14 14:56:58',1,30003403,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(3268,'2015-03-14 14:56:58','2015-03-14 14:56:58',1,30002525,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(3269,'2015-03-14 14:56:58','2015-08-29 14:46:07',1,30005296,1,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,1,0),(3270,'2015-03-14 14:56:58','2015-03-14 14:56:58',1,30005238,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(3271,'2015-03-14 14:56:58','2015-03-14 14:56:58',1,30002986,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(3272,'2015-03-14 14:56:58','2015-08-29 14:46:07',1,30004121,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(3273,'2015-03-14 14:56:58','2015-08-29 14:46:07',1,30003853,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,1,0),(3274,'2015-03-14 14:56:58','2015-08-29 14:46:07',1,30005303,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(3275,'2015-03-14 14:56:58','2015-03-14 14:56:58',1,30003538,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(3276,'2015-03-14 14:56:58','2015-03-14 14:56:58',1,30044971,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(3277,'2015-03-14 14:56:58','2015-08-29 14:46:07',1,30000164,0,5,7,1,1,0,0,0,0,0,0,0,3,0,0,0,0,7,0,0,0,0,0,0),(3278,'2015-03-14 14:56:58','2015-08-29 14:46:07',1,30004975,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,0,0,0,0),(3279,'2015-03-14 14:56:58','2015-03-14 14:56:58',1,30002637,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(3280,'2015-03-14 14:56:58','2015-08-29 14:46:07',1,30003568,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0),(3281,'2015-03-14 14:56:58','2015-03-14 14:56:58',1,30003032,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(3282,'2015-03-14 14:56:58','2015-03-14 14:56:58',1,30002299,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(3283,'2015-03-14 14:56:58','2015-08-29 14:46:07',1,30004934,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0),(3284,'2015-03-14 14:56:58','2015-03-14 14:56:58',1,30000321,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(3285,'2015-03-14 14:56:58','2015-08-29 14:46:07',1,30003712,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,1,0,2,0,0,0,1,0),(3286,'2015-03-14 14:56:58','2015-08-29 14:46:07',1,30003268,1,1,0,0,0,0,1,4,0,0,0,0,0,0,0,0,2,1,1,1,1,1,1,0),(3287,'2015-03-14 14:56:58','2015-03-14 14:56:58',1,30001988,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(3288,'2015-03-14 14:56:58','2015-08-29 14:46:07',1,30004113,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(3289,'2015-03-14 14:56:58','2015-03-14 14:56:58',1,30003539,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(3290,'2015-03-14 14:56:58','2015-03-14 14:56:58',1,30004968,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(3291,'2015-03-14 14:56:58','2015-08-29 14:46:07',1,30000046,0,0,0,0,0,0,0,0,0,0,0,0,1,2,3,3,0,0,0,0,5,0,2,0),(3292,'2015-03-14 14:56:58','2015-03-14 14:56:58',1,30002198,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(3293,'2015-03-14 14:56:58','2015-03-14 14:56:58',1,30002236,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(3294,'2015-03-14 14:56:58','2015-03-14 14:56:58',1,30003001,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(3295,'2015-03-14 14:56:58','2015-08-29 14:46:07',1,30000079,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0),(3296,'2015-03-14 14:56:58','2015-03-14 14:56:58',1,30001676,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(3297,'2015-03-14 14:56:58','2015-03-14 14:56:58',1,30001691,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(3298,'2015-03-14 14:56:58','2015-08-29 14:46:07',1,30002410,1,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,1,0,0,0),(3299,'2015-03-14 14:56:58','2015-03-14 14:56:58',1,30004153,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(3300,'2015-03-14 14:56:58','2015-08-29 14:46:07',1,30002732,0,0,0,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0),(3301,'2015-03-14 14:56:58','2015-08-29 14:46:07',1,30002719,0,1,0,0,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(3302,'2015-03-14 14:56:58','2015-08-29 14:46:07',1,30005084,0,0,0,0,0,0,0,0,0,1,0,1,0,0,0,0,0,0,0,0,0,0,0,0),(3303,'2015-03-14 14:56:58','2015-08-29 14:46:07',1,30003563,1,0,0,1,2,0,0,0,1,1,2,0,0,1,0,0,0,0,0,0,0,1,8,0),(3304,'2015-03-14 14:56:58','2015-08-29 14:46:07',1,30005059,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0),(3305,'2015-03-14 14:56:58','2015-03-14 14:56:58',1,30004251,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(3306,'2015-03-14 14:56:58','2015-08-29 14:46:07',1,30002665,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0),(3307,'2015-03-14 14:56:58','2015-03-14 14:56:58',1,30003482,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(3308,'2015-03-14 14:56:58','2015-08-29 14:46:07',1,30000120,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,1,0),(3309,'2015-03-14 14:56:58','2015-03-14 14:56:58',1,30002255,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(3310,'2015-03-14 14:56:58','2015-03-14 14:56:58',1,30005133,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(3311,'2015-03-14 14:56:58','2015-08-29 14:46:07',1,30000803,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0),(3312,'2015-03-14 14:56:58','2015-03-14 14:56:58',1,30004899,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(3313,'2015-03-14 14:56:58','2015-08-29 14:46:07',1,30000851,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0),(3314,'2015-03-14 14:56:58','2015-08-29 14:46:07',1,30004743,0,0,0,0,0,0,0,0,0,0,0,1,2,4,4,0,0,0,0,0,0,0,0,0),(3315,'2015-03-14 14:56:58','2015-08-29 14:46:07',1,30004064,0,0,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(3316,'2015-03-14 14:56:58','2015-08-29 14:46:07',1,30004183,0,0,0,0,0,0,0,0,0,0,0,0,2,0,0,0,0,0,0,0,0,1,0,0),(3317,'2015-03-14 14:56:58','2015-08-29 14:46:07',1,30003962,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(3318,'2015-03-14 14:56:58','2015-03-14 14:56:58',1,30000529,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(3319,'2015-03-14 14:56:58','2015-03-14 14:56:58',1,30000539,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(3320,'2015-03-14 14:56:58','2015-03-14 14:56:58',1,30001913,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(3321,'2015-03-14 14:56:58','2015-03-14 14:56:58',1,30004913,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(3322,'2015-03-14 14:56:58','2015-08-29 14:46:07',1,30000580,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,3,0,0,2,1,1,1,0),(3323,'2015-03-14 14:56:58','2015-08-29 14:46:07',1,30004618,0,6,1,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(3324,'2015-03-14 14:56:58','2015-03-14 14:56:58',1,30002840,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(3325,'2015-03-14 14:56:58','2015-03-14 14:56:58',1,30000270,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(3326,'2015-03-14 14:56:58','2015-03-14 14:56:58',1,30004765,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(3327,'2015-03-14 14:56:58','2015-03-14 14:56:58',1,30002359,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(3328,'2015-03-14 14:56:58','2015-08-29 14:46:07',1,30004223,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0),(3329,'2015-03-14 14:56:58','2015-08-29 14:46:07',1,30003828,0,0,0,0,0,0,0,0,1,0,0,0,3,0,0,0,1,3,1,8,0,0,0,0),(3330,'2015-03-14 14:56:58','2015-08-29 14:46:07',1,30000801,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,0,0,0,0,0),(3331,'2015-03-14 14:56:58','2015-08-29 14:46:07',1,30004136,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0),(3332,'2015-03-14 14:56:58','2015-03-14 14:56:58',1,30001720,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(3333,'2015-03-14 14:56:58','2015-03-14 14:56:58',1,30000042,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(3334,'2015-03-14 14:56:58','2015-03-14 14:56:58',1,30000031,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(3335,'2015-03-14 14:56:58','2015-03-14 14:56:58',1,30003876,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(3336,'2015-03-14 14:56:58','2015-03-14 14:56:58',1,30003814,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(3337,'2015-03-14 14:56:58','2015-03-14 14:56:58',1,30003881,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(3338,'2015-03-14 14:56:58','2015-03-14 14:56:58',1,30005037,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(3339,'2015-03-14 14:56:58','2015-03-14 14:56:58',1,30003061,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(3340,'2015-03-14 14:56:58','2015-08-29 14:46:07',1,30003011,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0),(3341,'2015-03-14 14:56:58','2015-03-14 14:56:58',1,30003893,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(3342,'2015-03-14 14:56:58','2015-03-14 14:56:58',1,30001554,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(3343,'2015-03-14 14:56:58','2015-03-14 14:56:58',1,30003443,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(3344,'2015-03-14 14:56:58','2015-03-14 14:56:58',1,30003021,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(3345,'2015-03-14 14:56:58','2015-03-14 14:56:58',1,30002819,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(3346,'2015-03-14 14:56:58','2015-03-14 14:56:58',1,30002257,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(3347,'2015-03-14 14:56:58','2015-08-29 14:46:07',1,30001715,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0),(3348,'2015-03-14 14:56:58','2015-03-14 14:56:58',1,30005263,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(3349,'2015-03-14 14:56:58','2015-03-14 14:56:58',1,30004702,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(3350,'2015-03-14 14:56:58','2015-08-29 14:46:07',1,30003699,0,0,0,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(3351,'2015-03-14 14:56:58','2015-08-29 14:46:07',1,30002035,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(3352,'2015-03-14 14:56:58','2015-08-29 14:46:07',1,30000280,0,0,0,0,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(3353,'2015-03-14 14:56:58','2015-03-14 14:56:58',1,30001278,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(3354,'2015-03-14 14:56:58','2015-08-29 14:46:07',1,30002421,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0),(3355,'2015-03-14 14:56:58','2015-03-14 14:56:58',1,30005155,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(3356,'2015-03-14 14:56:58','2015-03-14 14:56:58',1,30004861,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(3357,'2015-03-14 14:56:58','2015-03-14 14:56:58',1,30003153,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(3358,'2015-03-14 14:56:58','2015-03-14 14:56:58',1,30000774,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(3359,'2015-03-14 14:56:58','2015-08-29 14:46:07',1,30000864,0,0,0,0,0,1,0,0,1,2,2,0,0,0,0,0,0,0,0,0,0,0,0,0),(3360,'2015-03-14 14:56:58','2015-03-14 14:56:58',1,30004464,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(3361,'2015-03-14 14:56:58','2015-03-14 14:56:58',1,30004519,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(3362,'2015-03-14 14:56:58','2015-03-14 14:56:58',1,30002028,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(3363,'2015-03-14 14:56:58','2015-03-14 14:56:58',1,30003197,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(3364,'2015-03-14 14:56:58','2015-08-29 14:46:07',1,30005189,0,0,0,0,0,13,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0),(3365,'2015-03-14 14:56:58','2015-03-14 14:56:58',1,30003056,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(3366,'2015-03-14 14:56:58','2015-08-29 14:46:07',1,30005299,2,0,0,0,0,1,0,0,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(3367,'2015-03-14 14:56:58','2015-03-14 14:56:58',1,30004129,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(3368,'2015-03-14 14:56:58','2015-03-14 14:56:58',1,30002206,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(3369,'2015-03-14 14:56:58','2015-08-29 14:46:07',1,30005295,0,2,1,0,1,0,0,1,0,0,0,1,0,1,3,2,1,0,0,0,0,2,1,0),(3370,'2015-03-14 14:56:58','2015-03-14 14:56:58',1,30004092,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(3371,'2015-03-14 14:56:58','2015-03-14 14:56:58',1,30003526,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(3372,'2015-03-14 14:56:58','2015-08-29 14:46:07',1,30045334,0,0,1,0,2,1,0,0,1,0,0,0,0,2,3,1,0,0,0,3,0,4,0,0),(3373,'2015-03-14 14:56:58','2015-03-14 14:56:58',1,30002394,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(3374,'2015-03-14 14:56:58','2015-03-14 14:56:58',1,30002780,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(3375,'2015-03-14 14:56:58','2015-08-29 14:46:07',1,30001213,0,0,0,0,0,0,0,0,10,4,3,0,0,1,4,3,1,0,3,3,0,0,0,0),(3376,'2015-03-14 14:56:58','2015-08-29 14:46:07',1,30003755,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0),(3377,'2015-03-14 14:56:58','2015-08-29 14:46:07',1,30004966,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,0,0,0),(3378,'2015-03-14 14:56:58','2015-03-14 14:56:58',1,30000546,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(3379,'2015-03-14 14:56:58','2015-08-29 14:46:07',1,30002913,0,0,0,0,1,1,0,0,0,0,0,0,0,0,0,0,0,3,0,0,0,0,0,0),(3380,'2015-03-14 14:56:58','2015-03-14 14:56:58',1,30003318,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(3381,'2015-03-14 14:56:58','2015-08-29 14:46:07',1,30000232,0,0,0,1,1,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(3382,'2015-03-14 14:56:58','2015-08-29 14:46:07',1,30001202,0,0,0,0,0,0,0,0,1,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0),(3383,'2015-03-14 14:56:58','2015-08-29 14:46:07',1,30003022,0,1,0,0,0,0,0,0,1,0,0,0,0,0,0,0,1,0,0,0,0,1,0,0),(3384,'2015-03-14 14:56:58','2015-08-29 14:46:07',1,30003075,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,1,0,0,0,0),(3385,'2015-03-14 14:56:58','2015-03-14 14:56:58',1,30002940,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(3386,'2015-03-14 14:56:58','2015-03-14 14:56:58',1,30003185,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(3387,'2015-03-14 14:56:58','2015-03-14 14:56:58',1,30003659,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(3388,'2015-03-14 14:56:58','2015-03-14 14:56:58',1,30000405,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(3389,'2015-03-14 14:56:58','2015-03-14 14:56:58',1,30001309,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(3390,'2015-03-14 14:56:58','2015-03-14 14:56:58',1,30000236,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(3391,'2015-03-14 14:56:58','2015-03-14 14:56:58',1,30000915,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(3392,'2015-03-14 14:56:58','2015-03-14 14:56:58',1,30002612,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(3393,'2015-03-14 14:56:58','2015-03-14 14:56:58',1,30001209,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(3394,'2015-03-14 14:56:58','2015-03-14 14:56:58',1,30004762,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(3395,'2015-03-14 14:56:58','2015-03-14 14:56:58',1,30000401,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(3396,'2015-03-14 14:56:58','2015-08-29 14:46:07',1,30002583,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,0,0,0),(3397,'2015-03-14 14:56:58','2015-08-29 14:46:07',1,30000904,0,0,1,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,1,1,0,0,0,0),(3398,'2015-03-14 14:56:58','2015-03-14 14:56:58',1,30000348,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(3399,'2015-03-14 14:56:58','2015-08-29 14:46:07',1,30000862,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0),(3400,'2015-03-14 14:56:58','2015-03-14 14:56:58',1,30001489,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(3401,'2015-03-14 14:56:58','2015-08-29 14:46:07',1,30001974,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(3402,'2015-03-14 14:56:58','2015-03-14 14:56:58',1,30001060,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(3403,'2015-03-14 14:56:58','2015-03-14 14:56:58',1,30002492,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(3404,'2015-03-14 14:56:58','2015-08-29 14:46:07',1,30000215,0,1,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(3405,'2015-03-14 14:56:58','2015-08-29 14:46:07',1,30001827,0,1,2,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(3406,'2015-03-14 14:56:58','2015-03-14 14:56:58',1,30002820,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(3407,'2015-03-14 14:56:58','2015-08-29 14:46:07',1,30004011,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0),(3408,'2015-03-14 14:56:58','2015-03-14 14:56:58',1,30000824,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(3409,'2015-03-14 14:56:58','2015-03-14 14:56:58',1,30001549,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(3410,'2015-03-14 14:56:58','2015-08-29 14:46:07',1,30001267,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0),(3411,'2015-03-14 14:56:58','2015-08-29 14:46:07',1,30000999,0,2,4,3,2,1,0,0,0,0,0,0,5,1,1,1,0,0,0,6,3,1,1,0),(3412,'2015-03-14 14:56:58','2015-03-14 14:56:58',1,30003763,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(3413,'2015-03-14 14:56:58','2015-03-14 14:56:58',1,30002341,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(3414,'2015-03-14 14:56:58','2015-03-14 14:56:58',1,30002918,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(3415,'2015-03-14 14:56:58','2015-03-14 14:56:58',1,30001062,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(3416,'2015-03-14 14:56:58','2015-03-14 14:56:58',1,30002309,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(3417,'2015-03-14 14:56:58','2015-03-14 14:56:58',1,30001302,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(3418,'2015-03-14 14:56:58','2015-03-14 14:56:58',1,30004580,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(3419,'2015-03-14 14:56:58','2015-08-29 14:46:07',1,30002945,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(3420,'2015-03-14 14:56:58','2015-08-29 14:46:07',1,30000669,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,10,0),(3421,'2015-03-14 14:56:58','2015-08-29 14:46:07',1,30001277,0,0,0,0,0,0,0,0,1,0,0,0,2,0,0,0,0,0,1,0,0,0,1,0),(3422,'2015-03-14 14:56:58','2015-08-29 14:46:07',1,30001280,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,4,1,0),(3423,'2015-03-14 14:56:58','2015-08-29 14:46:07',1,30001126,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(3424,'2015-03-14 14:56:58','2015-03-14 14:56:58',1,30000811,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(3425,'2015-03-14 14:56:58','2015-03-14 14:56:58',1,30000841,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(3426,'2015-03-14 14:56:58','2015-03-14 14:56:58',1,30004783,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(3427,'2015-03-14 14:56:58','2015-08-29 14:46:07',1,30003767,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0),(3428,'2015-03-14 14:56:58','2015-03-14 14:56:58',1,30002258,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(3429,'2015-03-14 14:56:58','2015-03-14 14:56:58',1,30002995,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(3430,'2015-03-14 14:56:58','2015-03-14 14:56:58',1,30001651,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(3431,'2015-03-14 14:56:58','2015-03-14 14:56:58',1,30001702,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(3432,'2015-03-14 14:56:58','2015-08-29 14:46:07',1,30004300,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0),(3433,'2015-03-14 14:56:58','2015-08-29 14:46:07',1,30002807,2,2,1,1,1,1,0,2,5,0,2,1,7,0,4,5,1,0,4,10,7,0,3,0),(3434,'2015-03-14 14:56:58','2015-08-29 14:46:07',1,30003475,0,0,0,0,0,0,0,1,0,0,0,0,2,1,0,1,0,0,0,0,1,0,0,0),(3435,'2015-03-14 14:56:58','2015-03-14 14:56:58',1,30005069,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(3436,'2015-03-14 14:56:58','2015-03-14 14:56:58',1,30003922,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(3437,'2015-03-14 14:56:58','2015-03-14 14:56:58',1,30005045,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(3438,'2015-03-14 14:56:58','2015-08-29 14:46:07',1,30005242,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0),(3439,'2015-03-14 14:56:58','2015-08-29 14:46:07',1,30000072,1,0,1,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,2,1,2,0,0,0),(3440,'2015-03-14 14:56:58','2015-08-29 14:46:07',1,30002988,0,1,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(3441,'2015-03-14 14:56:58','2015-03-14 14:56:58',1,30003936,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(3442,'2015-03-14 14:56:58','2015-08-29 14:46:07',1,30005043,0,1,0,0,0,0,0,0,0,1,0,0,0,0,1,1,0,0,0,0,0,0,0,0),(3443,'2015-03-14 14:56:58','2015-08-29 14:46:07',1,30003496,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(3444,'2015-03-14 14:56:58','2015-08-29 14:46:07',1,30002068,0,1,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(3445,'2015-03-14 14:56:58','2015-08-29 14:46:07',1,30004280,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,5,7,0,0,1,0,0,0,0),(3446,'2015-03-14 14:56:58','2015-03-14 14:56:58',1,30002262,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(3447,'2015-03-14 14:56:58','2015-08-29 14:46:07',1,30001445,12,0,0,5,5,0,0,11,2,0,0,0,1,0,0,0,0,0,0,1,0,0,0,0),(3448,'2015-03-14 14:56:58','2015-03-14 14:56:58',1,30003534,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(3449,'2015-03-14 14:56:58','2015-08-29 14:46:07',1,30003923,0,0,0,0,2,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0),(3450,'2015-03-14 14:56:58','2015-03-14 14:56:58',1,30001413,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(3451,'2015-03-14 14:56:58','2015-03-14 14:56:58',1,30001438,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(3452,'2015-03-14 14:56:58','2015-03-14 14:56:58',1,30002202,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(3453,'2015-03-14 14:56:58','2015-08-29 14:46:07',1,30005207,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0),(3454,'2015-03-14 14:56:58','2015-08-29 14:46:07',1,30005054,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0),(3455,'2015-03-14 14:56:58','2015-08-29 14:46:07',1,30001683,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(3456,'2015-03-14 14:56:58','2015-03-14 14:56:58',1,30005289,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(3457,'2015-03-14 14:56:58','2015-08-29 14:46:07',1,30002671,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(3458,'2015-03-14 14:56:58','2015-03-14 14:56:58',1,30000016,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(3459,'2015-03-14 14:56:58','2015-03-14 14:56:58',1,30000465,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(3460,'2015-03-14 14:56:58','2015-03-14 14:56:58',1,30001063,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(3461,'2015-03-14 14:56:58','2015-08-29 14:46:07',1,30002433,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0),(3462,'2015-03-14 14:56:58','2015-08-29 14:46:07',1,30001117,0,1,2,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(3463,'2015-03-14 14:56:58','2015-03-14 14:56:58',1,30002910,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(3464,'2015-03-14 14:56:58','2015-03-14 14:56:58',1,30003616,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(3465,'2015-03-14 14:56:58','2015-03-14 14:56:58',1,30000212,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(3466,'2015-03-14 14:56:58','2015-03-14 14:56:58',1,30002867,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(3467,'2015-03-14 14:56:58','2015-03-14 14:56:58',1,30003186,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(3468,'2015-03-14 14:56:58','2015-03-14 14:56:58',1,30004609,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(3469,'2015-03-14 14:56:58','2015-08-29 14:46:07',1,30003980,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(3470,'2015-03-14 14:56:58','2015-03-14 14:56:58',1,30000917,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(3471,'2015-03-14 14:56:58','2015-03-14 14:56:58',1,30005031,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(3472,'2015-03-14 14:56:58','2015-03-14 14:56:58',1,30004089,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(3473,'2015-03-14 14:56:58','2015-03-14 14:56:58',1,30004308,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(3474,'2015-03-14 14:56:58','2015-03-14 14:56:58',1,30003929,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(3475,'2015-03-14 14:56:58','2015-03-14 14:56:58',1,30003378,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(3476,'2015-03-14 14:56:58','2015-08-29 14:46:07',1,30005058,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0),(3477,'2015-03-14 14:56:58','2015-03-14 14:56:58',1,30004383,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(3478,'2015-03-14 14:56:58','2015-03-14 14:56:58',1,30001695,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(3479,'2015-03-14 14:56:58','2015-03-14 14:56:58',1,30003423,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(3480,'2015-03-14 14:56:58','2015-03-14 14:56:58',1,30004267,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(3481,'2015-03-14 14:56:58','2015-08-29 14:46:07',1,30045344,1,0,2,2,2,3,0,1,1,2,0,2,0,3,1,0,1,10,0,0,0,0,0,0),(3482,'2015-03-14 14:56:58','2015-03-14 14:56:58',1,30002228,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(3483,'2015-03-14 14:56:58','2015-03-14 14:56:58',1,30003073,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(3484,'2015-03-14 14:56:58','2015-03-14 14:56:58',1,30001826,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(3485,'2015-03-14 14:56:58','2015-08-29 14:46:07',1,30000145,1,0,0,0,0,0,0,0,1,0,0,0,0,0,1,1,0,0,0,0,2,1,0,0),(3486,'2015-03-14 14:56:58','2015-08-29 14:46:07',1,30005286,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(3487,'2015-03-14 14:56:58','2015-03-14 14:56:58',1,30002650,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(3488,'2015-03-14 14:56:58','2015-03-14 14:56:58',1,30003859,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(3489,'2015-03-14 14:56:58','2015-08-29 14:46:07',1,30002246,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,2,1,0),(3490,'2015-03-14 14:56:58','2015-03-14 14:56:58',1,30000230,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(3491,'2015-03-14 14:56:58','2015-08-29 14:46:07',1,30003325,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0),(3492,'2015-03-14 14:56:58','2015-08-29 14:46:07',1,30000650,0,1,0,1,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(3493,'2015-03-14 14:56:58','2015-03-14 14:56:58',1,30005170,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(3494,'2015-03-14 14:56:58','2015-03-14 14:56:58',1,30001239,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(3495,'2015-03-14 14:56:58','2015-03-14 14:56:58',1,30003117,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(3496,'2015-03-14 14:56:58','2015-03-14 14:56:58',1,30001789,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(3497,'2015-03-14 14:56:58','2015-08-29 14:46:07',1,30002185,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0),(3498,'2015-03-14 14:56:58','2015-08-29 14:46:07',1,30003504,4,5,2,4,3,0,0,1,2,0,0,3,1,1,1,0,1,1,0,0,0,2,1,0),(3499,'2015-03-14 14:56:58','2015-08-29 14:46:07',1,30005047,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0),(3500,'2015-03-14 14:56:58','2015-08-29 14:46:07',1,30003580,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,1,0,0,0,0),(3501,'2015-03-14 14:56:58','2015-03-14 14:56:58',1,30003006,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(3502,'2015-03-14 14:56:58','2015-03-14 14:56:58',1,30004769,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(3503,'2015-03-14 14:56:58','2015-03-14 14:56:58',1,30004126,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(3504,'2015-03-14 14:56:58','2015-03-14 14:56:58',1,30004274,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(3505,'2015-03-14 14:56:58','2015-03-14 14:56:58',1,30000108,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(3506,'2015-03-14 14:56:58','2015-03-14 14:56:58',1,30000642,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(3507,'2015-03-14 14:56:58','2015-03-14 14:56:58',1,30003448,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(3508,'2015-03-14 14:56:58','2015-08-29 14:46:07',1,30002234,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0),(3509,'2015-03-14 14:56:58','2015-08-29 14:46:07',1,30000900,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0),(3510,'2015-03-14 14:56:58','2015-03-14 14:56:58',1,30000057,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(3511,'2015-03-14 14:56:58','2015-08-29 14:46:07',1,30002757,0,0,1,0,0,0,3,0,1,0,1,0,0,1,1,0,1,0,0,0,0,0,1,0),(3512,'2015-03-14 14:56:58','2015-03-14 14:56:58',1,30001082,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(3513,'2015-03-14 14:56:58','2015-03-14 14:56:58',1,30000035,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(3514,'2015-03-14 14:56:58','2015-03-14 14:56:58',1,30000008,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(3515,'2015-03-14 14:56:58','2015-03-14 14:56:58',1,30005040,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(3516,'2015-03-14 14:56:58','2015-08-29 14:46:07',1,30045352,1,1,0,1,1,1,0,0,0,0,1,4,0,0,0,0,1,0,0,1,0,0,0,0),(3517,'2015-03-14 14:56:58','2015-08-29 14:46:07',1,30000143,0,0,0,0,0,0,0,1,0,0,0,0,0,1,1,0,0,0,0,0,0,0,0,0),(3518,'2015-03-14 14:56:58','2015-03-14 14:56:58',1,30003141,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(3519,'2015-03-14 14:56:58','2015-08-29 14:46:07',1,30000896,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0),(3520,'2015-03-14 14:56:58','2015-08-29 14:46:07',1,30000902,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,0,0,0,0,0),(3521,'2015-03-14 14:56:58','2015-03-14 14:56:58',1,30002303,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(3522,'2015-03-14 14:56:58','2015-03-14 14:56:58',1,30000855,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(3523,'2015-03-14 14:56:58','2015-08-29 14:46:07',1,30004476,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,0,0,0,0,0,0,1,0),(3524,'2015-03-14 14:56:58','2015-03-14 14:56:58',1,30004338,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(3525,'2015-03-14 14:56:58','2015-08-29 14:46:07',1,30004518,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0),(3526,'2015-03-14 14:56:58','2015-03-14 14:56:58',1,30005018,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(3527,'2015-03-14 14:56:58','2015-08-29 14:46:07',1,30004712,0,0,0,0,0,0,0,0,0,3,2,0,0,0,0,0,0,0,0,0,0,0,0,0),(3528,'2015-03-14 14:56:58','2015-03-14 14:56:58',1,30002218,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(3529,'2015-03-14 14:56:58','2015-03-14 14:56:58',1,30000131,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(3530,'2015-03-14 14:56:58','2015-08-29 14:46:07',1,30002219,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0),(3531,'2015-03-14 14:56:58','2015-08-29 14:46:07',1,30001401,2,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(3532,'2015-03-14 14:56:58','2015-03-14 14:56:58',1,30005236,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(3533,'2015-03-14 14:56:58','2015-03-14 14:56:58',1,30004094,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(3534,'2015-03-14 14:56:58','2015-03-14 14:56:58',1,30001725,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(3535,'2015-03-14 14:56:58','2015-08-29 14:46:07',1,30045348,0,1,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,1,0,0,1,0,0),(3536,'2015-03-14 14:56:58','2015-03-14 14:56:58',1,30003884,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(3537,'2015-03-14 14:56:58','2015-08-29 14:46:07',1,30001376,0,4,3,1,1,0,2,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0),(3538,'2015-03-14 14:56:58','2015-03-14 14:56:58',1,30004307,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(3539,'2015-03-14 14:56:58','2015-03-14 14:56:58',1,30004533,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(3540,'2015-03-14 14:56:58','2015-03-14 14:56:58',1,30004479,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(3541,'2015-03-14 14:56:58','2015-03-14 14:56:58',1,30002451,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(3542,'2015-03-14 14:56:58','2015-03-14 14:56:58',1,30001822,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(3543,'2015-03-14 14:56:58','2015-03-14 14:56:58',1,30000368,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(3544,'2015-03-14 14:56:58','2015-03-14 14:56:58',1,30004919,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(3545,'2015-03-14 14:56:58','2015-03-14 14:56:58',1,30004866,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(3546,'2015-03-14 14:56:58','2015-03-14 14:56:58',1,30001094,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(3547,'2015-03-14 14:56:58','2015-08-29 14:46:07',1,30001962,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0),(3548,'2015-03-14 14:56:58','2015-03-14 14:56:58',1,30002103,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(3549,'2015-03-14 14:56:58','2015-08-29 14:46:07',1,30000696,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,1,0,0,0,0,0,0,1,0),(3550,'2015-03-14 14:56:58','2015-03-14 14:56:58',1,30001622,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(3551,'2015-03-14 14:56:58','2015-03-14 14:56:58',1,30001061,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(3552,'2015-03-14 14:56:58','2015-03-14 14:56:58',1,30004318,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(3553,'2015-03-14 14:56:58','2015-08-29 14:46:07',1,30004035,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(3554,'2015-03-14 14:56:58','2015-08-29 14:46:07',1,30002606,0,0,0,0,0,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(3555,'2015-03-14 14:56:58','2015-08-29 14:46:07',1,30000183,0,0,0,0,0,0,0,0,0,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0),(3556,'2015-03-14 14:56:58','2015-03-14 14:56:58',1,30001665,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(3557,'2015-03-14 14:56:58','2015-03-14 14:56:58',1,30003627,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(3558,'2015-03-14 14:56:58','2015-03-14 14:56:58',1,30000350,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(3559,'2015-03-14 14:56:58','2015-03-14 14:56:58',1,30004438,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(3560,'2015-03-14 14:56:58','2015-03-14 14:56:58',1,30002340,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(3561,'2015-03-14 14:56:58','2015-03-14 14:56:58',1,30004440,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(3562,'2015-03-14 14:56:58','2015-03-14 14:56:58',1,30004612,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(3563,'2015-03-14 14:56:58','2015-08-29 14:46:07',1,30001874,0,0,1,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0),(3564,'2015-03-14 14:56:58','2015-08-29 14:46:07',1,30004911,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,0,0,0,0,0),(3565,'2015-03-14 14:56:58','2015-03-14 14:56:58',1,30004863,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(3566,'2015-03-14 14:56:58','2015-08-29 14:46:07',1,30000870,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0),(3567,'2015-03-14 14:56:58','2015-03-14 14:56:58',1,30004050,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(3568,'2015-03-14 14:56:58','2015-08-29 14:46:07',1,30002935,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0),(3569,'2015-03-14 14:56:58','2015-03-14 14:56:58',1,30000627,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(3570,'2015-03-14 14:56:58','2015-03-14 14:56:58',1,30000744,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(3571,'2015-03-14 14:56:58','2015-03-14 14:56:58',1,30000982,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(3572,'2015-03-14 14:56:58','2015-03-14 14:56:58',1,30004692,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(3573,'2015-03-14 14:56:58','2015-03-14 14:56:58',1,30000831,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(3574,'2015-03-14 14:56:58','2015-03-14 14:56:58',1,30002034,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(3575,'2015-03-14 14:56:58','2015-08-29 14:46:07',1,30004060,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0),(3576,'2015-03-14 14:56:58','2015-08-29 14:46:07',1,30001964,0,1,0,0,0,1,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(3577,'2015-03-14 14:56:58','2015-03-14 14:56:58',1,30003683,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(3578,'2015-03-14 14:56:58','2015-03-14 14:56:58',1,30001955,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(3579,'2015-03-14 14:56:58','2015-03-14 14:56:58',1,30002358,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(3580,'2015-03-14 14:56:58','2015-03-14 14:56:58',1,30004199,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(3581,'2015-03-14 14:56:58','2015-03-14 14:56:58',1,30001938,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(3582,'2015-03-14 14:56:58','2015-08-29 14:46:07',1,30004713,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0),(3583,'2015-03-14 14:56:58','2015-03-14 14:56:58',1,30004049,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(3584,'2015-03-14 14:56:58','2015-03-14 14:56:58',1,30004326,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(3585,'2015-03-14 14:56:58','2015-03-14 14:56:58',1,30002351,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(3586,'2015-03-14 14:56:58','2015-03-14 14:56:58',1,30000309,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(3587,'2015-03-14 14:56:58','2015-03-14 14:56:58',1,30004671,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(3588,'2015-03-14 14:56:58','2015-08-29 14:46:07',1,30004703,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,2,0,0),(3589,'2015-03-14 14:56:58','2015-08-29 14:46:07',1,30001986,0,1,0,0,1,0,0,0,2,0,0,0,1,0,0,1,0,0,0,0,0,0,0,0),(3590,'2015-03-14 14:56:58','2015-03-14 14:56:58',1,30001751,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(3591,'2015-03-14 14:56:58','2015-03-14 14:56:58',1,30000993,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(3592,'2015-03-14 14:56:58','2015-08-29 14:46:07',1,30004649,0,2,0,1,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(3593,'2015-03-14 14:56:58','2015-08-29 14:46:07',1,30005171,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(3594,'2015-03-14 14:56:58','2015-08-29 14:46:07',1,30004543,0,0,1,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(3595,'2015-03-14 14:56:58','2015-03-14 14:56:58',1,30000975,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(3596,'2015-03-14 14:56:58','2015-03-14 14:56:58',1,30001297,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(3597,'2015-03-14 14:56:58','2015-03-14 14:56:58',1,30002457,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(3598,'2015-03-14 14:56:58','2015-08-29 14:46:07',1,30003761,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(3599,'2015-03-14 14:56:58','2015-08-29 14:46:07',1,30004044,0,0,0,1,1,2,0,0,0,0,0,0,0,1,1,1,3,0,3,1,1,0,1,0),(3600,'2015-03-14 14:56:58','2015-08-29 14:46:07',1,30002425,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,1,1,0),(3601,'2015-03-14 14:56:58','2015-08-29 14:46:07',1,30004699,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,3,0,0,0,0),(3602,'2015-03-14 14:56:58','2015-08-29 14:46:07',1,30003686,0,3,0,1,1,0,0,1,0,0,0,0,0,1,1,1,0,0,1,0,1,0,0,0),(3603,'2015-03-14 14:56:58','2015-03-14 14:56:58',1,30002602,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(3604,'2015-03-14 14:56:58','2015-03-14 14:56:58',1,30002499,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(3605,'2015-03-14 14:56:58','2015-08-29 14:46:07',1,30000492,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0),(3606,'2015-03-14 14:56:58','2015-03-14 14:56:58',1,30002851,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(3607,'2015-03-14 14:56:58','2015-03-14 14:56:58',1,30003645,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(3608,'2015-03-14 14:56:58','2015-03-14 14:56:58',1,30003946,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(3609,'2015-03-14 14:56:58','2015-03-14 14:56:58',1,30002153,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(3610,'2015-03-14 14:56:58','2015-08-29 14:46:07',1,30004691,1,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,0,0,0),(3611,'2015-03-14 14:56:58','2015-08-29 14:46:07',1,30002884,0,0,0,0,0,0,0,0,0,1,1,0,0,1,0,0,2,0,0,0,0,0,0,0),(3612,'2015-03-14 14:56:58','2015-08-29 14:46:07',1,30000512,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(3613,'2015-03-14 14:56:58','2015-08-29 14:46:07',1,30001855,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0),(3614,'2015-03-14 14:56:58','2015-03-14 14:56:58',1,30002116,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(3615,'2015-03-14 14:56:58','2015-03-14 14:56:58',1,30001099,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(3616,'2015-03-14 14:56:58','2015-08-29 14:46:07',1,30002179,0,0,0,0,0,2,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0),(3617,'2015-03-14 14:56:58','2015-03-14 14:56:58',1,30001068,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(3618,'2015-03-14 14:56:58','2015-08-29 14:46:07',1,30004381,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0),(3619,'2015-03-14 14:56:58','2015-03-14 14:56:58',1,30002879,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(3620,'2015-03-14 14:56:58','2015-03-14 14:56:58',1,30004424,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(3621,'2015-03-14 14:56:58','2015-03-14 14:56:58',1,30000560,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(3622,'2015-03-14 14:56:58','2015-03-14 14:56:58',1,30000679,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(3623,'2015-03-14 14:56:58','2015-08-29 14:46:07',1,30004996,0,1,0,0,0,0,0,1,1,2,0,0,0,1,1,1,2,0,0,0,0,0,0,0),(3624,'2015-03-14 14:56:58','2015-08-29 14:46:07',1,30000155,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(3625,'2015-03-14 14:56:58','2015-08-29 14:46:07',1,30000205,0,0,0,0,0,0,0,1,1,3,1,0,0,0,0,3,0,0,0,1,0,0,0,0),(3626,'2015-03-14 14:56:58','2015-03-14 14:56:58',1,30004109,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(3627,'2015-03-14 14:56:58','2015-03-14 14:56:58',1,30004487,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(3628,'2015-03-14 14:56:58','2015-03-14 14:56:58',1,30002522,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(3629,'2015-03-14 14:56:58','2015-03-14 14:56:58',1,30005181,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(3630,'2015-03-14 14:56:58','2015-08-29 14:46:07',1,30003578,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,1,0,1,1,0,0,0,0),(3631,'2015-03-14 14:56:58','2015-03-14 14:56:58',1,30004426,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(3632,'2015-03-14 14:56:58','2015-08-29 14:46:07',1,30003857,1,0,0,0,0,0,0,0,1,0,0,0,1,0,1,1,0,0,0,1,0,0,0,0),(3633,'2015-03-14 14:56:58','2015-08-29 14:46:07',1,30002509,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0),(3634,'2015-03-14 14:56:58','2015-08-29 14:46:07',1,30002388,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(3635,'2015-03-14 14:56:58','2015-03-14 14:56:58',1,30003470,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(3636,'2015-03-14 14:56:58','2015-03-14 14:56:58',1,30002694,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(3637,'2015-03-14 14:56:58','2015-08-29 14:46:07',1,30002963,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(3638,'2015-03-14 14:56:58','2015-03-14 14:56:58',1,30003582,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(3639,'2015-03-14 14:56:58','2015-08-29 14:46:07',1,30003050,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(3640,'2015-03-14 14:56:58','2015-03-14 14:56:58',1,30000077,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(3641,'2015-03-14 14:56:58','2015-03-14 14:56:58',1,30012715,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(3642,'2015-03-14 14:56:58','2015-08-29 14:46:07',1,30003657,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(3643,'2015-03-14 14:56:58','2015-03-14 14:56:58',1,30002008,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(3644,'2015-03-14 14:56:58','2015-03-14 14:56:58',1,30000439,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(3645,'2015-03-14 14:56:58','2015-03-14 14:56:58',1,30003577,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(3646,'2015-03-14 14:56:58','2015-03-14 14:56:58',1,30002427,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(3647,'2015-03-14 14:56:58','2015-08-29 14:46:07',1,30003446,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0),(3648,'2015-03-14 14:56:58','2015-08-29 14:46:07',1,30003460,0,0,0,0,0,0,0,0,0,1,2,0,0,0,0,0,0,0,0,0,0,0,0,0),(3649,'2015-03-14 14:56:58','2015-03-14 14:56:58',1,30002549,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(3650,'2015-03-14 14:56:58','2015-08-29 14:46:07',1,30002061,0,0,0,0,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(3651,'2015-03-14 14:56:58','2015-03-14 14:56:58',1,30000472,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(3652,'2015-03-14 14:56:58','2015-03-14 14:56:58',1,30003598,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(3653,'2015-03-14 14:56:58','2015-08-29 14:46:07',1,30001191,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(3654,'2015-03-14 14:56:58','2015-03-14 14:56:58',1,30003437,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(3655,'2015-03-14 14:56:58','2015-03-14 14:56:58',1,30005068,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(3656,'2015-03-14 14:56:58','2015-08-29 14:46:07',1,30002045,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(3657,'2015-03-14 14:56:58','2015-03-14 14:56:58',1,30003984,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(3658,'2015-03-14 14:56:58','2015-03-14 14:56:58',1,30001435,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(3659,'2015-03-14 14:56:58','2015-03-14 14:56:58',1,30002970,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(3660,'2015-03-14 14:56:58','2015-08-29 14:46:07',1,30000204,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(3661,'2015-03-14 14:56:58','2015-08-29 14:46:07',1,30000136,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(3662,'2015-03-14 14:56:58','2015-08-29 14:46:07',1,30002743,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(3663,'2015-03-14 14:56:58','2015-03-14 14:56:58',1,30002818,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(3664,'2015-03-14 14:56:58','2015-08-29 14:46:07',1,30003838,0,0,1,0,0,1,0,0,0,0,0,1,0,0,0,0,1,0,0,0,0,0,0,0),(3665,'2015-03-14 14:56:58','2015-03-14 14:56:58',1,30002746,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(3666,'2015-03-14 14:56:58','2015-08-29 14:46:07',1,30000186,2,0,6,8,2,4,2,1,1,2,0,3,0,0,0,1,1,0,0,0,1,0,0,0),(3667,'2015-03-14 14:56:58','2015-03-14 14:56:58',1,30001444,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(3668,'2015-03-14 14:56:58','2015-08-29 14:46:07',1,30045347,0,2,0,0,1,1,0,1,2,1,2,0,4,0,0,1,1,0,0,0,0,1,1,0),(3669,'2015-03-14 14:56:58','2015-03-14 14:56:58',1,30002750,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(3670,'2015-03-14 14:56:58','2015-03-14 14:56:58',1,30003132,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(3671,'2015-03-14 14:56:58','2015-03-14 14:56:58',1,30001425,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(3672,'2015-03-14 14:56:58','2015-03-14 14:56:58',1,30022715,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(3673,'2015-03-14 14:56:58','2015-08-29 14:46:07',1,30001433,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0),(3674,'2015-03-14 14:56:58','2015-03-14 14:56:58',1,30002799,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(3675,'2015-03-14 14:56:58','2015-03-14 14:56:58',1,30004334,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(3676,'2015-03-14 14:56:58','2015-03-14 14:56:58',1,30001341,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(3677,'2015-03-14 14:56:58','2015-03-14 14:56:58',1,30000983,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(3678,'2015-03-14 14:56:58','2015-08-29 14:46:07',1,30005091,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0),(3679,'2015-03-14 14:56:58','2015-08-29 14:46:07',1,30000945,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,0,0,0,0),(3680,'2015-03-14 14:56:58','2015-08-29 14:46:07',1,30045307,0,0,0,0,0,0,0,0,1,1,1,0,0,0,0,0,0,0,0,1,0,0,0,0),(3681,'2015-03-14 14:56:58','2015-03-14 14:56:58',1,30004924,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(3682,'2015-03-14 14:56:58','2015-08-29 14:46:07',1,30045330,3,2,0,0,0,0,0,1,1,3,3,1,3,2,0,1,2,0,0,2,2,0,1,0),(3683,'2015-03-14 14:56:58','2015-03-14 14:56:58',1,30004645,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(3684,'2015-03-14 14:56:58','2015-03-14 14:56:58',1,30003388,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(3685,'2015-03-14 14:56:58','2015-08-29 14:46:07',1,30005000,0,1,1,2,3,4,1,0,1,1,0,1,4,3,3,6,0,0,0,1,1,0,1,0),(3686,'2015-03-14 14:56:58','2015-03-14 14:56:58',1,30032715,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(3687,'2015-03-14 14:56:58','2015-08-29 14:46:07',1,30002686,0,0,0,0,0,0,1,1,0,0,1,0,0,0,0,0,0,0,1,0,0,0,0,0),(3688,'2015-03-14 14:56:58','2015-08-29 14:46:07',1,30002515,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0),(3689,'2015-03-14 14:56:58','2015-08-29 14:46:07',1,30003058,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0),(3690,'2015-03-14 14:56:58','2015-08-29 14:46:07',1,30005272,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0),(3691,'2015-03-14 14:56:58','2015-08-29 14:46:07',1,30000158,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,0,0,0,0,0,0),(3692,'2015-03-14 14:56:58','2015-03-14 14:56:58',1,30004137,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(3693,'2015-03-14 14:56:58','2015-03-14 14:56:58',1,30004302,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(3694,'2015-03-14 14:56:58','2015-03-14 14:56:58',1,30003817,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(3695,'2015-03-14 14:56:58','2015-03-14 14:56:58',1,30005027,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(3696,'2015-03-14 14:56:58','2015-08-29 14:46:07',1,30004244,1,2,1,1,1,1,4,2,0,1,4,1,0,0,0,0,7,0,0,0,1,3,1,0),(3697,'2015-03-14 14:56:58','2015-08-29 14:46:07',1,30002811,0,0,1,0,0,1,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,0),(3698,'2015-03-14 14:56:58','2015-03-14 14:56:58',1,30001688,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(3699,'2015-03-14 14:56:58','2015-03-14 14:56:58',1,30003603,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(3700,'2015-03-14 14:56:58','2015-03-14 14:56:58',1,30002568,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(3701,'2015-03-14 14:56:58','2015-03-14 14:56:58',1,30003386,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(3702,'2015-03-14 14:56:58','2015-08-29 14:46:07',1,30045324,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(3703,'2015-03-14 14:56:58','2015-08-29 14:46:07',1,30004990,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,1,0,0,0,0,0,0,0),(3704,'2015-03-14 14:56:58','2015-03-14 14:56:58',1,30002779,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(3705,'2015-03-14 14:56:58','2015-03-14 14:56:58',1,30000013,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(3706,'2015-03-14 14:56:58','2015-08-29 14:46:07',1,30002091,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0),(3707,'2015-03-14 14:56:58','2015-03-14 14:56:58',1,30000174,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(3708,'2015-03-14 14:56:58','2015-03-14 14:56:58',1,30001946,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(3709,'2015-03-14 14:56:58','2015-08-29 14:46:07',1,30005109,0,0,0,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(3710,'2015-03-14 14:56:58','2015-08-29 14:46:07',1,30002173,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0),(3711,'2015-03-14 14:56:58','2015-03-14 14:56:58',1,30003430,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(3712,'2015-03-14 14:56:58','2015-03-14 14:56:58',1,30004858,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(3713,'2015-03-14 14:56:58','2015-03-14 14:56:58',1,30000607,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(3714,'2015-03-14 14:56:58','2015-03-14 14:56:58',1,30003450,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(3715,'2015-03-14 14:56:58','2015-03-14 14:56:58',1,30003201,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(3716,'2015-03-14 14:56:58','2015-03-14 14:56:58',1,30001685,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(3717,'2015-03-14 14:56:58','2015-08-29 14:46:07',1,30005060,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,1,0,0,0,0,0,0,0),(3718,'2015-03-14 14:56:58','2015-03-14 14:56:58',1,30000026,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(3719,'2015-03-14 14:56:58','2015-03-14 14:56:58',1,30003453,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(3720,'2015-03-14 14:56:58','2015-03-14 14:56:58',1,30002571,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(3721,'2015-03-14 14:56:58','2015-08-29 14:46:07',1,30002098,0,0,0,0,0,0,0,0,1,0,0,0,1,0,0,0,1,0,0,0,1,0,0,0),(3722,'2015-03-14 14:56:58','2015-03-14 14:56:58',1,30022505,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(3723,'2015-03-14 14:56:58','2015-03-14 14:56:58',1,30002399,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(3724,'2015-03-14 14:56:58','2015-03-14 14:56:58',1,30003492,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(3725,'2015-03-14 14:56:58','2015-03-14 14:56:58',1,30003596,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(3726,'2015-03-14 14:56:58','2015-08-29 14:46:07',1,30000063,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0),(3727,'2015-03-14 14:56:58','2015-08-29 14:46:07',1,30003830,0,0,0,0,0,0,0,2,3,2,1,1,2,0,0,0,0,0,0,1,5,1,0,0),(3728,'2015-03-14 14:56:58','2015-03-14 14:56:58',1,30000374,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(3729,'2015-03-14 14:56:58','2015-08-29 14:46:07',1,30000207,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0),(3730,'2015-03-14 14:56:58','2015-03-14 14:56:58',1,30002569,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(3731,'2015-03-14 14:56:58','2015-08-29 14:46:07',1,30002795,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0),(3732,'2015-03-14 14:56:58','2015-03-14 14:56:58',1,30003870,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(3733,'2015-03-14 14:56:58','2015-03-14 14:56:58',1,30003812,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(3734,'2015-03-14 14:56:58','2015-08-29 14:46:07',1,30003831,0,0,0,0,0,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,0,2,0,0),(3735,'2015-03-14 14:56:58','2015-08-29 14:46:07',1,30005332,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(3736,'2015-03-14 14:56:58','2015-08-29 14:46:07',1,30000180,1,1,1,0,0,1,0,0,0,0,1,0,0,0,0,0,0,0,0,0,1,0,0,0),(3737,'2015-03-14 14:56:58','2015-08-29 14:46:07',1,30002506,0,0,0,0,0,0,0,0,1,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0),(3738,'2015-03-14 14:56:58','2015-03-14 14:56:58',1,30001358,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(3739,'2015-03-14 14:56:58','2015-08-29 14:46:07',1,30003792,0,2,0,1,1,0,0,2,1,0,1,4,0,0,0,3,3,1,0,0,1,2,1,0),(3740,'2015-03-14 14:56:58','2015-08-29 14:46:07',1,30003427,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0),(3741,'2015-03-14 14:56:58','2015-03-14 14:56:58',1,30002409,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(3742,'2015-03-14 14:56:58','2015-03-14 14:56:58',1,30001579,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(3743,'2015-03-14 14:56:58','2015-08-29 14:46:07',1,30001005,0,0,0,1,1,0,0,0,0,1,1,1,0,0,0,0,0,0,0,0,1,0,0,0),(3744,'2015-03-14 14:56:58','2015-08-29 14:46:07',1,30005274,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,0,1,0,0,0,0,1,0),(3745,'2015-03-14 14:56:58','2015-03-14 14:56:58',1,30001421,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(3746,'2015-03-14 14:56:58','2015-03-14 14:56:58',1,30000192,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(3747,'2015-03-14 14:56:58','2015-08-29 14:46:07',1,30000157,0,0,0,1,1,1,0,0,1,0,0,1,2,0,0,0,0,0,0,0,0,0,0,0),(3748,'2015-03-14 14:56:58','2015-03-14 14:56:58',1,30003065,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(3749,'2015-03-14 14:56:58','2015-03-14 14:56:58',1,30000171,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(3750,'2015-03-14 14:56:58','2015-03-14 14:56:58',1,30001538,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(3751,'2015-03-14 14:56:58','2015-03-14 14:56:58',1,30001586,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(3752,'2015-03-14 14:56:58','2015-08-29 14:46:07',1,30002808,0,0,0,1,0,1,1,1,1,1,0,2,1,0,0,0,1,2,0,1,0,0,0,0),(3753,'2015-03-14 14:56:58','2015-08-29 14:46:07',1,30000172,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0),(3754,'2015-03-14 14:56:58','2015-08-29 14:46:07',1,30000196,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,1,0),(3755,'2015-03-14 14:56:58','2015-08-29 14:46:07',1,30002723,1,0,0,1,1,1,0,0,5,4,2,1,0,0,0,0,0,1,1,0,0,0,1,0),(3756,'2015-03-14 14:56:58','2015-08-29 14:46:07',1,30002578,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0),(3757,'2015-03-14 14:56:58','2015-03-14 14:56:58',1,30001446,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(3758,'2015-03-14 14:56:58','2015-08-29 14:46:07',1,30000194,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,1,2,0,0,0,0),(3759,'2015-03-14 14:56:58','2015-03-14 14:56:58',1,30001476,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(3760,'2015-03-14 14:56:58','2015-03-14 14:56:58',1,30004052,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(3761,'2015-03-14 14:56:58','2015-08-29 14:46:07',1,30005297,1,0,0,2,1,0,0,0,1,1,0,0,1,0,0,2,0,1,0,0,0,1,0,0),(3762,'2015-03-14 14:56:58','2015-08-29 14:46:07',1,30003833,0,8,0,16,8,2,6,1,0,14,10,0,0,0,0,0,0,0,1,0,0,0,1,0),(3763,'2015-03-14 14:56:58','2015-03-14 14:56:58',1,30001370,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(3764,'2015-03-14 14:56:58','2015-08-29 14:46:07',1,30005203,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0),(3765,'2015-03-14 14:56:58','2015-08-29 14:46:07',1,30004969,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,0,1,0,0,0,1,0,0),(3766,'2015-03-14 14:56:58','2015-03-14 14:56:58',1,30000135,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(3767,'2015-03-14 14:56:58','2015-03-14 14:56:58',1,30000335,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(3768,'2015-03-14 14:56:58','2015-03-14 14:56:58',1,30001819,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(3769,'2015-03-14 14:56:58','2015-03-14 14:56:58',1,30004581,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(3770,'2015-03-14 14:56:58','2015-08-29 14:46:07',1,30002936,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(3771,'2015-03-14 14:56:58','2015-03-14 14:56:58',1,30004521,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(3772,'2015-03-14 14:56:58','2015-08-29 14:46:07',1,30000735,0,0,1,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(3773,'2015-03-14 14:56:58','2015-08-29 14:46:07',1,30004413,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(3774,'2015-03-14 14:56:58','2015-08-29 14:46:07',1,30003722,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,0,0,0,0,0,0),(3775,'2015-03-14 14:56:58','2015-03-14 14:56:58',1,30000885,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(3776,'2015-03-14 14:56:58','2015-08-29 14:46:07',1,30004958,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0),(3777,'2015-03-14 14:56:58','2015-08-29 14:46:07',1,30002961,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0),(3778,'2015-03-14 14:56:58','2015-08-29 14:46:07',1,30003088,1,0,0,0,0,1,1,0,0,1,0,0,0,2,2,0,0,0,0,0,0,0,1,0),(3779,'2015-03-14 14:56:58','2015-08-29 14:46:07',1,30003254,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0),(3780,'2015-03-14 14:56:58','2015-03-14 14:56:58',1,30001282,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(3781,'2015-03-14 14:56:58','2015-08-29 14:46:07',1,30002030,0,6,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(3782,'2015-03-14 14:56:58','2015-08-29 14:46:07',1,30003680,0,0,1,0,0,0,0,2,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0),(3783,'2015-03-14 14:56:58','2015-03-14 14:56:58',1,30003137,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(3784,'2015-03-14 14:56:58','2015-03-14 14:56:58',1,30002482,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(3785,'2015-03-14 14:56:58','2015-03-14 14:56:58',1,30001823,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(3786,'2015-03-14 14:56:58','2015-03-14 14:56:58',1,30002467,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(3787,'2015-03-14 14:56:58','2015-08-29 14:46:07',1,30001268,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,0,0,0,0,0,1,1,0),(3788,'2015-03-14 14:56:58','2015-03-14 14:56:58',1,30001293,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(3789,'2015-03-14 14:56:58','2015-08-29 14:46:07',1,30004187,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(3790,'2015-03-14 14:56:58','2015-03-14 14:56:58',1,30000365,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(3791,'2015-03-14 14:56:58','2015-08-29 14:46:07',1,30000661,0,0,0,0,0,0,0,0,0,0,0,0,0,2,0,0,0,0,0,0,0,0,0,0),(3792,'2015-03-14 14:56:58','2015-03-14 14:56:58',1,30001547,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(3793,'2015-03-14 14:56:58','2015-03-14 14:56:58',1,30004170,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(3794,'2015-03-14 14:56:58','2015-03-14 14:56:58',1,30004497,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(3795,'2015-03-14 14:56:58','2015-03-14 14:56:58',1,30001795,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(3796,'2015-03-14 14:56:58','2015-03-14 14:56:58',1,30003674,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(3797,'2015-03-14 14:56:58','2015-08-29 14:46:07',1,30001329,0,0,0,2,2,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0),(3798,'2015-03-14 14:56:58','2015-08-29 14:46:07',1,30003978,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(3799,'2015-03-14 14:56:58','2015-08-29 14:46:07',1,30003248,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0),(3800,'2015-03-14 14:56:58','2015-03-14 14:56:58',1,30000949,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(3801,'2015-03-14 14:56:58','2015-08-29 14:46:07',1,30000250,0,1,0,0,0,0,0,0,6,1,0,1,1,1,3,2,0,0,2,0,1,1,0,0),(3802,'2015-03-14 14:56:58','2015-03-14 14:56:58',1,30001604,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(3803,'2015-03-14 14:56:58','2015-03-14 14:56:58',1,30001125,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(3804,'2015-03-14 14:56:58','2015-08-29 14:46:07',1,30003971,0,1,0,0,0,1,1,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(3805,'2015-03-14 14:56:58','2015-03-14 14:56:58',1,30004624,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(3806,'2015-03-14 14:56:58','2015-03-14 14:56:58',1,30004076,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(3807,'2015-03-14 14:56:58','2015-03-14 14:56:58',1,30000411,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(3808,'2015-03-14 14:56:58','2015-08-29 14:46:07',1,30001568,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0),(3809,'2015-03-14 14:56:58','2015-03-14 14:56:58',1,30000638,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(3810,'2015-03-14 14:56:58','2015-03-14 14:56:58',1,30000450,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(3811,'2015-03-14 14:56:58','2015-03-14 14:56:58',1,30000977,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(3812,'2015-03-14 14:56:58','2015-03-14 14:56:58',1,30004362,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(3813,'2015-03-14 14:56:58','2015-03-14 14:56:58',1,30004471,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(3814,'2015-03-14 14:56:58','2015-03-14 14:56:58',1,30003163,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(3815,'2015-03-14 14:56:58','2015-03-14 14:56:58',1,30005185,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(3816,'2015-03-14 14:56:58','2015-03-14 14:56:58',1,30004961,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(3817,'2015-03-14 14:56:58','2015-08-29 14:46:07',1,30000198,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0),(3818,'2015-03-14 14:56:58','2015-08-29 14:46:07',1,30002775,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(3819,'2015-03-14 14:56:58','2015-03-14 14:56:58',1,30004253,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(3820,'2015-03-14 14:56:58','2015-08-29 14:46:07',1,30003804,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0),(3821,'2015-03-14 14:56:58','2015-08-29 14:46:07',1,30005198,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,1,0),(3822,'2015-03-14 14:56:58','2015-08-29 14:46:07',1,30001390,1,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0),(3823,'2015-03-14 14:56:58','2015-08-29 14:46:07',1,30003878,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0),(3824,'2015-03-14 14:56:58','2015-03-14 14:56:58',1,30004992,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(3825,'2015-03-14 14:56:58','2015-03-14 14:56:58',1,30003008,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(3826,'2015-03-14 14:56:58','2015-08-29 14:46:07',1,30005232,0,0,0,0,0,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(3827,'2015-03-14 14:56:58','2015-08-29 14:46:07',1,30005073,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0),(3828,'2015-03-14 14:56:58','2015-03-14 14:56:58',1,30002676,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(3829,'2015-03-14 14:56:58','2015-03-14 14:56:58',1,30004255,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(3830,'2015-03-14 14:56:58','2015-08-29 14:46:07',1,30003909,1,0,0,0,0,1,0,0,0,1,0,1,0,0,0,0,0,1,0,0,0,0,0,0),(3831,'2015-03-14 14:56:58','2015-08-29 14:46:07',1,30005280,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0),(3832,'2015-03-14 14:56:58','2015-08-29 14:46:07',1,30004998,0,2,1,1,0,0,0,0,0,4,3,0,0,1,3,4,1,1,1,0,0,0,0,0),(3833,'2015-03-14 14:56:58','2015-08-29 14:46:07',1,30021672,0,0,0,0,0,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(3834,'2015-03-14 14:56:58','2015-03-14 14:56:58',1,30005231,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(3835,'2015-03-14 14:56:58','2015-08-29 14:46:07',1,30001402,0,2,0,0,0,1,0,0,0,0,1,0,0,1,0,0,0,0,0,0,0,1,1,0),(3836,'2015-03-14 14:56:58','2015-08-29 14:46:07',1,30002544,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(3837,'2015-03-14 14:56:58','2015-03-14 14:56:58',1,30002223,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(3838,'2015-03-14 14:56:58','2015-08-29 14:46:07',1,30045320,1,5,1,0,0,1,1,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,1,0),(3839,'2015-03-14 14:56:58','2015-08-29 14:46:07',1,30001718,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0),(3840,'2015-03-14 14:56:58','2015-03-14 14:56:58',1,30004657,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(3841,'2015-03-14 14:56:58','2015-03-14 14:56:58',1,30000873,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(3842,'2015-03-14 14:56:58','2015-03-14 14:56:58',1,30001483,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(3843,'2015-03-14 14:56:58','2015-08-29 14:46:07',1,30003286,0,0,1,1,1,0,0,0,18,1,0,6,0,0,0,1,0,1,0,0,0,2,1,0),(3844,'2015-03-14 14:56:58','2015-03-14 14:56:58',1,30004733,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(3845,'2015-03-14 14:56:58','2015-08-29 14:46:07',1,30004825,0,0,0,0,0,0,7,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(3846,'2015-03-14 14:56:58','2015-03-14 14:56:58',1,30003159,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(3847,'2015-03-14 14:56:58','2015-03-14 14:56:58',1,30005118,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(3848,'2015-03-14 14:56:58','2015-03-14 14:56:58',1,30000379,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(3849,'2015-03-14 14:56:58','2015-03-14 14:56:58',1,30003516,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(3850,'2015-03-14 14:56:58','2015-03-14 14:56:58',1,30004829,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(3851,'2015-03-14 14:56:58','2015-08-29 14:46:07',1,30003806,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0),(3852,'2015-03-14 14:56:58','2015-08-29 14:46:07',1,30002211,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0),(3853,'2015-03-14 14:56:58','2015-03-14 14:56:58',1,30004906,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(3854,'2015-03-14 14:56:58','2015-03-14 14:56:58',1,30004978,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(3855,'2015-03-14 14:56:58','2015-03-14 14:56:58',1,30004262,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(3856,'2015-03-14 14:56:58','2015-03-14 14:56:58',1,30003488,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(3857,'2015-03-14 14:56:58','2015-03-14 14:56:58',1,30001666,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(3858,'2015-03-14 14:56:58','2015-03-14 14:56:58',1,30005061,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(3859,'2015-03-14 14:56:58','2015-03-14 14:56:58',1,30005013,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(3860,'2015-03-14 14:56:58','2015-03-14 14:56:58',1,30001693,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(3861,'2015-03-14 14:56:58','2015-08-29 14:46:07',1,30000144,1,0,1,2,2,1,0,0,0,1,1,1,1,1,2,2,0,0,0,0,0,0,1,0),(3862,'2015-03-14 14:56:58','2015-08-29 14:46:07',1,30003573,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(3863,'2015-03-14 14:56:58','2015-03-14 14:56:58',1,30005241,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(3864,'2015-03-14 14:56:58','2015-03-14 14:56:58',1,30002632,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(3865,'2015-03-14 14:56:58','2015-03-14 14:56:58',1,30004114,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(3866,'2015-03-14 14:56:58','2015-08-29 14:46:07',1,30003277,4,0,0,2,3,0,0,0,0,2,2,0,7,2,1,0,5,6,4,15,4,0,1,0),(3867,'2015-03-14 14:56:58','2015-03-14 14:56:58',1,30004782,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(3868,'2015-03-14 14:56:58','2015-08-29 14:46:07',1,30001324,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0),(3869,'2015-03-14 14:56:58','2015-08-29 14:46:07',1,30003295,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,0,0,0,0),(3870,'2015-03-14 14:56:58','2015-03-14 14:56:58',1,30002009,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(3871,'2015-03-14 14:56:58','2015-03-14 14:56:58',1,30005178,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(3872,'2015-03-14 14:56:58','2015-03-14 14:56:58',1,30002145,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(3873,'2015-03-14 14:56:58','2015-03-14 14:56:58',1,30001707,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(3874,'2015-03-14 14:56:58','2015-08-29 14:46:07',1,30003735,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,1,0,0,0,0,0,0,0),(3875,'2015-03-14 14:56:58','2015-08-29 14:46:07',1,30001403,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,0,1,0),(3876,'2015-03-14 14:56:58','2015-08-29 14:46:07',1,30001391,0,0,0,0,0,0,1,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0),(3877,'2015-03-14 14:56:58','2015-03-14 14:56:58',1,30001669,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(3878,'2015-03-14 14:56:58','2015-03-14 14:56:58',1,30001652,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(3879,'2015-03-14 14:56:58','2015-03-14 14:56:58',1,30005081,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(3880,'2015-03-14 14:56:58','2015-03-14 14:56:58',1,30005277,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(3881,'2015-03-14 14:56:58','2015-03-14 14:56:58',1,30000066,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(3882,'2015-03-14 14:56:58','2015-03-14 14:56:58',1,30003167,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(3883,'2015-03-14 14:56:58','2015-08-29 14:46:07',1,30004313,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(3884,'2015-03-14 14:56:58','2015-03-14 14:56:58',1,30000654,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(3885,'2015-03-14 14:56:58','2015-03-14 14:56:58',1,30000243,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(3886,'2015-03-14 14:56:58','2015-08-29 14:46:07',1,30004411,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(3887,'2015-03-14 14:56:58','2015-03-14 14:56:58',1,30003262,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(3888,'2015-03-14 14:56:58','2015-08-29 14:46:07',1,30000866,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0),(3889,'2015-03-14 14:56:58','2015-03-14 14:56:58',1,30002870,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(3890,'2015-03-14 14:56:58','2015-08-29 14:46:07',1,30004559,0,0,0,0,0,0,0,0,0,0,0,0,22,0,0,0,0,0,0,2,0,0,0,0),(3891,'2015-03-14 14:56:58','2015-08-29 14:46:07',1,30003613,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(3892,'2015-03-14 14:56:58','2015-03-14 14:56:58',1,30004431,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(3893,'2015-03-14 14:56:58','2015-08-29 14:46:07',1,30001012,1,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0),(3894,'2015-03-14 14:56:58','2015-03-14 14:56:58',1,30003604,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(3895,'2015-03-14 14:56:58','2015-08-29 14:46:07',1,30000019,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0),(3896,'2015-03-14 14:56:58','2015-08-29 14:46:07',1,30000153,0,1,1,3,1,0,0,0,0,0,0,1,0,0,0,0,0,0,1,1,0,0,0,0),(3897,'2015-03-14 14:56:58','2015-08-29 14:46:07',1,30003271,0,0,1,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0),(3898,'2015-03-14 14:56:58','2015-03-14 14:56:58',1,30000380,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(3899,'2015-03-14 14:56:58','2015-03-14 14:56:58',1,30005048,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(3900,'2015-03-14 14:56:58','2015-03-14 14:56:58',1,30003434,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(3901,'2015-03-14 14:56:58','2015-03-14 14:56:58',1,30001147,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(3902,'2015-03-14 14:56:58','2015-03-14 14:56:58',1,30002273,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(3903,'2015-03-14 14:56:58','2015-03-14 14:56:58',1,30003581,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(3904,'2015-03-14 14:56:58','2015-03-14 14:56:58',1,30003940,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(3905,'2015-03-14 14:56:58','2015-03-14 14:56:58',1,30002714,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(3906,'2015-03-14 14:56:58','2015-03-14 14:56:58',1,30002106,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(3907,'2015-03-14 14:56:58','2015-03-14 14:56:58',1,30004065,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(3908,'2015-03-14 14:56:58','2015-03-14 14:56:58',1,30001470,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(3909,'2015-03-14 14:56:58','2015-08-29 14:46:07',1,30000438,0,0,0,0,0,0,6,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(3910,'2015-03-14 14:56:58','2015-03-14 14:56:58',1,30001628,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(3911,'2015-03-14 14:56:58','2015-08-29 14:46:07',1,30004711,0,1,0,0,0,1,1,0,5,0,0,4,2,0,1,1,0,1,0,1,4,7,14,0),(3912,'2015-03-14 14:56:58','2015-08-29 14:46:07',1,30045333,0,0,0,0,0,1,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(3913,'2015-03-14 14:56:58','2015-03-14 14:56:58',1,30005284,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(3914,'2015-03-14 14:56:58','2015-03-14 14:56:58',1,30004770,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(3915,'2015-03-14 14:56:58','2015-03-14 14:56:58',1,30000027,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(3916,'2015-03-14 14:56:58','2015-03-14 14:56:58',1,30004293,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(3917,'2015-03-14 14:56:58','2015-08-29 14:46:07',1,30001863,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,1,0),(3918,'2015-03-14 14:56:58','2015-03-14 14:56:58',1,30000738,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(3919,'2015-03-14 14:56:58','2015-03-14 14:56:58',1,30005162,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(3920,'2015-03-14 14:56:58','2015-03-14 14:56:58',1,30000421,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(3921,'2015-03-14 14:56:58','2015-03-14 14:56:58',1,30000727,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(3922,'2015-03-14 14:56:58','2015-03-14 14:56:58',1,30000990,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(3923,'2015-03-14 14:56:58','2015-03-14 14:56:58',1,30002733,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(3924,'2015-03-14 14:56:58','2015-08-29 14:46:07',1,30004754,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,2,3,0,2,0),(3925,'2015-03-14 14:56:58','2015-03-14 14:56:58',1,30002662,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(3926,'2015-03-14 14:56:58','2015-03-14 14:56:58',1,30000161,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(3927,'2015-03-14 14:56:58','2015-03-14 14:56:58',1,30004395,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(3928,'2015-03-14 14:56:58','2015-08-29 14:46:07',1,30000978,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0),(3929,'2015-03-14 14:56:58','2015-08-29 14:46:07',1,30005147,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(3930,'2015-03-14 14:56:58','2015-08-29 14:46:07',1,30003283,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(3931,'2015-03-14 14:56:58','2015-03-14 14:56:58',1,30001106,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(3932,'2015-03-14 14:56:58','2015-08-29 14:46:07',1,30002370,0,1,0,1,0,1,0,0,0,3,2,0,0,3,0,4,0,0,0,0,0,0,0,0),(3933,'2015-03-14 14:56:58','2015-03-14 14:56:58',1,30000316,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(3934,'2015-03-14 14:56:58','2015-08-29 14:46:07',1,30002290,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(3935,'2015-03-14 14:56:58','2015-03-14 14:56:58',1,30004647,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(3936,'2015-03-14 14:56:58','2015-08-29 14:46:07',1,30045353,1,0,0,4,3,1,2,1,0,5,3,4,0,1,1,1,0,2,0,4,1,1,2,0),(3937,'2015-03-14 14:56:58','2015-03-14 14:56:58',1,30002490,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(3938,'2015-03-14 14:56:58','2015-08-29 14:46:07',1,30002615,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0),(3939,'2015-03-14 14:56:58','2015-03-14 14:56:58',1,30001310,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(3940,'2015-03-14 14:56:58','2015-03-14 14:56:58',1,30001449,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(3941,'2015-03-14 14:56:58','2015-03-14 14:56:58',1,30004787,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(3942,'2015-03-14 14:56:58','2015-08-29 14:46:07',1,30000797,0,1,0,0,0,0,3,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(3943,'2015-03-14 14:56:58','2015-03-14 14:56:58',1,30004389,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(3944,'2015-03-14 14:56:58','2015-08-29 14:46:07',1,30002001,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0),(3945,'2015-03-14 14:56:58','2015-03-14 14:56:58',1,30001326,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(3946,'2015-03-14 14:56:58','2015-08-29 14:46:07',1,30000872,0,0,0,0,0,1,0,0,1,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0),(3947,'2015-03-14 14:56:58','2015-03-14 14:56:58',1,30000274,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(3948,'2015-03-14 14:56:58','2015-03-14 14:56:58',1,30004321,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(3949,'2015-03-14 14:56:58','2015-03-14 14:56:58',1,30002844,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(3950,'2015-03-14 14:56:58','2015-08-29 14:46:07',1,30000586,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,4,0,0,0,1,0,0,0),(3951,'2015-03-14 14:56:58','2015-03-14 14:56:58',1,30004737,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(3952,'2015-03-14 14:56:58','2015-08-29 14:46:07',1,30002132,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0),(3953,'2015-03-14 14:56:58','2015-03-14 14:56:58',1,30003222,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(3954,'2015-03-14 14:56:58','2015-03-14 14:56:58',1,30004749,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(3955,'2015-03-14 14:56:58','2015-08-29 14:46:07',1,30000682,0,4,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(3956,'2015-03-14 14:56:58','2015-03-14 14:56:58',1,30000432,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(3957,'2015-03-14 14:56:58','2015-08-29 14:46:07',1,30000256,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,1,0,0,0,0,0,0,0,0),(3958,'2015-03-14 14:56:58','2015-08-29 14:46:07',1,30000717,0,1,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,0,1,0,0),(3959,'2015-03-14 14:56:58','2015-03-14 14:56:58',1,30004337,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(3960,'2015-03-14 14:56:58','2015-08-29 14:46:07',1,30001838,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0),(3961,'2015-03-14 14:56:58','2015-03-14 14:56:58',1,30000235,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(3962,'2015-03-14 14:56:58','2015-03-14 14:56:58',1,30001196,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(3963,'2015-03-14 14:56:58','2015-03-14 14:56:58',1,30002471,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(3964,'2015-03-14 14:56:58','2015-08-29 14:46:07',1,30001248,0,0,0,0,0,0,0,0,0,5,5,1,0,0,0,0,0,0,1,0,0,1,0,0),(3965,'2015-03-14 14:56:58','2015-03-14 14:56:58',1,30004054,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(3966,'2015-03-14 14:56:58','2015-03-14 14:56:58',1,30000618,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(3967,'2015-03-14 14:56:58','2015-08-29 14:46:07',1,30001562,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0),(3968,'2015-03-14 14:56:58','2015-03-14 14:56:58',1,30004229,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(3969,'2015-03-14 14:56:58','2015-03-14 14:56:58',1,30004571,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(3970,'2015-03-14 14:56:58','2015-08-29 14:46:07',1,30004845,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(3971,'2015-03-14 14:56:58','2015-03-14 14:56:58',1,30000507,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(3972,'2015-03-14 14:56:58','2015-08-29 14:46:07',1,30003112,0,0,1,0,0,0,0,0,2,0,0,0,0,0,0,0,2,0,0,1,0,0,0,0),(3973,'2015-03-14 14:56:58','2015-03-14 14:56:58',1,30003146,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(3974,'2015-03-14 14:56:58','2015-03-14 14:56:58',1,30003669,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(3975,'2015-03-14 14:56:58','2015-03-14 14:56:58',1,30003975,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(3976,'2015-03-14 14:56:58','2015-03-14 14:56:58',1,30000946,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(3977,'2015-03-14 14:56:58','2015-08-29 14:46:07',1,30000324,0,0,0,0,0,0,0,0,0,0,3,0,0,0,0,0,0,1,0,0,0,0,0,0),(3978,'2015-03-14 14:56:58','2015-08-29 14:46:07',1,30000715,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0),(3979,'2015-03-14 14:56:58','2015-03-14 14:56:58',1,30004846,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(3980,'2015-03-14 14:56:58','2015-03-14 14:56:58',1,30001323,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(3981,'2015-03-14 14:56:58','2015-08-29 14:46:07',1,30000785,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(3982,'2015-03-14 14:56:58','2015-08-29 14:46:07',1,30001763,0,0,1,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(3983,'2015-03-14 14:56:58','2015-03-14 14:56:58',1,30000413,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(3984,'2015-03-14 14:56:58','2015-03-14 14:56:58',1,30004066,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(3985,'2015-03-14 14:56:58','2015-03-14 14:56:58',1,30003183,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(3986,'2015-03-14 14:56:58','2015-03-14 14:56:58',1,30004408,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(3987,'2015-03-14 14:56:58','2015-08-29 14:46:07',1,30003714,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,1,0,0,0,0),(3988,'2015-03-14 14:56:58','2015-03-14 14:56:58',1,30001165,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(3989,'2015-03-14 14:56:58','2015-08-29 14:46:07',1,30002363,0,0,0,5,5,0,0,0,0,1,1,0,0,0,0,0,1,0,0,0,0,0,0,0),(3990,'2015-03-14 14:56:58','2015-03-14 14:56:58',1,30004744,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(3991,'2015-03-14 14:56:58','2015-03-14 14:56:58',1,30004855,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(3992,'2015-03-14 14:56:58','2015-03-14 14:56:58',1,30001080,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(3993,'2015-03-14 14:56:58','2015-03-14 14:56:58',1,30001935,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(3994,'2015-03-14 14:56:58','2015-08-29 14:46:07',1,30004343,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,1,0),(3995,'2015-03-14 14:56:58','2015-03-14 14:56:58',1,30002138,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(3996,'2015-03-14 14:56:58','2015-03-14 14:56:58',1,30003221,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(3997,'2015-03-14 14:56:58','2015-08-29 14:46:07',1,30001246,0,0,0,0,0,0,0,0,0,1,0,0,0,24,0,0,0,0,0,0,0,0,0,0),(3998,'2015-03-14 14:56:58','2015-08-29 14:46:07',1,30001033,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(3999,'2015-03-14 14:56:58','2015-03-14 14:56:58',1,30000899,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(4000,'2015-03-14 14:56:58','2015-08-29 14:46:07',1,30003164,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0),(4001,'2015-03-14 14:56:58','2015-03-14 14:56:58',1,30003181,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(4002,'2015-03-14 14:56:58','2015-03-14 14:56:58',1,30001766,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(4003,'2015-03-14 14:56:58','2015-03-14 14:56:58',1,30001564,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(4004,'2015-03-14 14:56:58','2015-03-14 14:56:58',1,30001772,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(4005,'2015-03-14 14:56:58','2015-03-14 14:56:58',1,30001749,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(4006,'2015-03-14 14:56:58','2015-08-29 14:46:07',1,30001305,0,0,0,0,0,0,0,0,1,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0),(4007,'2015-03-14 14:56:58','2015-03-14 14:56:58',1,30002364,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(4008,'2015-03-14 14:56:58','2015-08-29 14:46:07',1,30005144,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0),(4009,'2015-03-14 14:56:58','2015-08-29 14:46:07',1,30002104,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0),(4010,'2015-03-14 14:56:58','2015-03-14 14:56:58',1,30004837,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(4011,'2015-03-14 14:56:58','2015-08-29 14:46:07',1,30000505,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0),(4012,'2015-03-14 14:56:58','2015-03-14 14:56:58',1,30001467,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(4013,'2015-03-14 14:56:58','2015-03-14 14:56:58',1,30004448,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(4014,'2015-03-14 14:56:58','2015-03-14 14:56:58',1,30002307,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(4015,'2015-03-14 14:56:58','2015-03-14 14:56:58',1,30005172,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(4016,'2015-03-14 14:56:58','2015-03-14 14:56:58',1,30002431,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(4017,'2015-03-14 14:56:58','2015-03-14 14:56:58',1,30000475,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(4018,'2015-03-14 14:56:58','2015-03-14 14:56:58',1,30004857,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(4019,'2015-03-14 14:56:58','2015-03-14 14:56:58',1,30000941,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(4020,'2015-03-14 14:56:58','2015-08-29 14:46:07',1,30001903,0,0,1,0,0,0,0,0,0,0,0,0,0,1,1,1,0,0,0,0,0,1,0,0),(4021,'2015-03-14 14:56:58','2015-03-14 14:56:58',1,30002186,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(4022,'2015-03-14 14:56:58','2015-03-14 14:56:58',1,30002288,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(4023,'2015-03-14 14:56:58','2015-03-14 14:56:58',1,30001473,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(4024,'2015-03-14 14:56:58','2015-03-14 14:56:58',1,30003739,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(4025,'2015-03-14 14:56:58','2015-08-29 14:46:07',1,30001783,0,0,0,0,0,0,0,0,0,1,1,0,1,2,2,0,0,0,0,0,0,0,0,0),(4026,'2015-03-14 14:56:58','2015-03-14 14:56:58',1,30002479,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(4027,'2015-03-14 14:56:58','2015-08-29 14:46:07',1,30002893,0,0,0,0,0,0,0,0,0,2,1,2,1,3,2,1,0,0,0,0,0,0,0,0),(4028,'2015-03-14 14:56:58','2015-08-29 14:46:07',1,30000722,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,1,0),(4029,'2015-03-14 14:56:58','2015-03-14 14:56:58',1,30000938,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(4030,'2015-03-14 14:56:58','2015-08-29 14:46:07',1,30001565,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0),(4031,'2015-03-14 14:56:58','2015-08-29 14:46:07',1,30003719,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0),(4032,'2015-03-14 14:56:58','2015-03-14 14:56:58',1,30004815,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(4033,'2015-03-14 14:56:58','2015-03-14 14:56:58',1,30000481,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(4034,'2015-03-14 14:56:58','2015-08-29 14:46:07',1,30001596,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(4035,'2015-03-14 14:56:58','2015-03-14 14:56:58',1,30003174,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(4036,'2015-03-14 14:56:58','2015-08-29 14:46:07',1,30001137,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(4037,'2015-03-14 14:56:58','2015-03-14 14:56:58',1,30004909,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(4038,'2015-03-14 14:56:58','2015-08-29 14:46:07',1,30001163,0,0,0,0,0,0,0,0,1,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0),(4039,'2015-03-14 14:56:58','2015-03-14 14:56:58',1,30004198,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(4040,'2015-03-14 14:56:58','2015-08-29 14:46:07',1,30000793,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,1,1,0,0),(4041,'2015-03-14 14:56:58','2015-03-14 14:56:58',1,30001617,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(4042,'2015-03-14 14:56:58','2015-08-29 14:46:07',1,30003037,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,2,0,0,0,1,0),(4043,'2015-03-14 14:56:58','2015-03-14 14:56:58',1,30004610,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(4044,'2015-03-14 14:56:58','2015-03-14 14:56:58',1,30003292,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(4045,'2015-03-14 14:56:58','2015-03-14 14:56:58',1,30002829,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(4046,'2015-03-14 14:56:58','2015-08-29 14:46:07',1,30004714,0,0,0,0,0,0,0,0,1,0,3,0,0,0,0,0,0,0,0,0,0,0,0,0),(4047,'2015-03-14 14:56:58','2015-03-14 14:56:58',1,30000526,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(4048,'2015-03-14 14:56:58','2015-08-29 14:46:07',1,30004354,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0),(4049,'2015-03-14 14:56:58','2015-03-14 14:56:58',1,30004002,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(4050,'2015-03-14 14:56:58','2015-08-29 14:46:07',1,30004041,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0),(4051,'2015-03-14 14:56:58','2015-08-29 14:46:07',1,30004027,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,0,0,0,0),(4052,'2015-03-14 14:56:58','2015-03-14 14:56:58',1,30003244,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(4053,'2015-03-14 14:56:58','2015-03-14 14:56:58',1,30004752,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(4054,'2015-03-14 14:56:58','2015-03-14 14:56:58',1,30000767,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(4055,'2015-03-14 14:56:58','2015-08-29 14:46:07',1,30003266,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(4056,'2015-03-14 14:56:58','2015-08-29 14:46:07',1,30004402,0,0,0,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(4057,'2015-03-14 14:56:58','2015-03-14 14:56:58',1,30003236,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(4058,'2015-03-14 14:56:58','2015-08-29 14:46:07',1,30001107,0,1,0,0,0,0,0,0,0,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0),(4059,'2015-03-14 14:56:58','2015-03-14 14:56:58',1,30002330,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(4060,'2015-03-14 14:56:58','2015-03-14 14:56:58',1,30002837,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(4061,'2015-03-14 14:56:58','2015-03-14 14:56:58',1,30002002,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(4062,'2015-03-14 14:56:58','2015-08-29 14:46:07',1,30000658,0,0,0,0,0,0,0,0,0,0,0,0,0,2,0,0,0,0,0,0,0,0,0,0),(4063,'2015-03-14 14:56:58','2015-03-14 14:56:58',1,30002324,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(4064,'2015-03-14 14:56:58','2015-08-29 14:46:07',1,30005099,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0),(4065,'2015-03-14 14:56:58','2015-03-14 14:56:58',1,30003151,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(4066,'2015-03-14 14:56:58','2015-08-29 14:46:07',1,30005112,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(4067,'2015-03-14 14:56:58','2015-08-29 14:46:07',1,30004648,0,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(4068,'2015-03-14 14:56:58','2015-03-14 14:56:58',1,30000950,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(4069,'2015-03-14 14:56:58','2015-03-14 14:56:58',1,30003127,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(4070,'2015-03-14 14:56:58','2015-03-14 14:56:58',1,30001491,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(4071,'2015-03-14 14:56:58','2015-08-29 14:46:07',1,30001189,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0),(4072,'2015-03-14 14:56:58','2015-08-29 14:46:07',1,30001265,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0),(4073,'2015-03-14 14:56:58','2015-03-14 14:56:58',1,30002013,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(4074,'2015-03-14 14:56:58','2015-03-14 14:56:58',1,30004522,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(4075,'2015-03-14 14:56:58','2015-08-29 14:46:07',1,30002182,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,0,0,0,0),(4076,'2015-03-14 14:56:58','2015-03-14 14:56:58',1,30000291,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(4077,'2015-03-14 14:56:58','2015-03-14 14:56:58',1,30001577,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(4078,'2015-03-14 14:56:58','2015-03-14 14:56:58',1,30001102,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(4079,'2015-03-14 14:56:58','2015-03-14 14:56:58',1,30000320,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(4080,'2015-03-14 14:56:58','2015-03-14 14:56:58',1,30004853,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(4081,'2015-03-14 14:56:58','2015-08-29 14:46:07',1,30003631,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0),(4082,'2015-03-14 14:56:58','2015-08-29 14:46:07',1,30003218,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(4083,'2015-03-14 14:56:58','2015-03-14 14:56:58',1,30002135,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(4084,'2015-03-14 14:56:58','2015-08-29 14:46:07',1,30000563,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(4085,'2015-03-14 14:56:58','2015-08-29 14:46:07',1,30004871,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,4,1,0,0,0,0),(4086,'2015-03-14 14:56:58','2015-03-14 14:56:58',1,30001450,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(4087,'2015-03-14 14:56:58','2015-03-14 14:56:58',1,30002874,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(4088,'2015-03-14 14:56:58','2015-03-14 14:56:58',1,30004891,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(4089,'2015-03-14 14:56:58','2015-08-29 14:46:07',1,30003769,0,0,0,0,0,0,0,0,0,2,0,0,2,1,1,0,0,0,0,0,0,0,0,0),(4090,'2015-03-14 14:56:58','2015-03-14 14:56:58',1,30001806,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(4091,'2015-03-14 14:56:58','2015-03-14 14:56:58',1,30004566,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(4092,'2015-03-14 14:56:58','2015-03-14 14:56:58',1,30004473,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(4093,'2015-03-14 14:56:58','2015-03-14 14:56:58',1,30000589,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(4094,'2015-03-14 14:56:58','2015-03-14 14:56:58',1,30004339,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(4095,'2015-03-14 14:56:58','2015-08-29 14:46:07',1,30004727,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(4096,'2015-03-14 14:56:58','2015-08-29 14:46:07',1,30002010,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0),(4097,'2015-03-14 14:56:58','2015-03-14 14:56:58',1,30001619,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(4098,'2015-03-14 14:56:58','2015-03-14 14:56:58',1,30001859,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(4099,'2015-03-14 14:56:58','2015-03-14 14:56:58',1,30002894,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(4100,'2015-03-14 14:56:58','2015-03-14 14:56:58',1,30003209,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(4101,'2015-03-14 14:56:58','2015-03-14 14:56:58',1,30000768,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(4102,'2015-03-14 14:56:58','2015-03-14 14:56:58',1,30004485,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(4103,'2015-03-14 14:56:58','2015-08-29 14:46:07',1,30001018,2,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0),(4104,'2015-03-14 14:56:58','2015-08-29 14:46:07',1,30002958,0,0,0,0,0,1,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0),(4105,'2015-03-14 14:56:58','2015-03-14 14:56:58',1,30000033,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(4106,'2015-03-14 14:56:58','2015-08-29 14:46:07',1,30002726,0,0,0,0,1,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(4107,'2015-03-14 14:56:58','2015-03-14 14:56:58',1,30003941,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(4108,'2015-03-14 14:56:58','2015-03-14 14:56:58',1,30002052,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(4109,'2015-03-14 14:56:58','2015-03-14 14:56:58',1,30003914,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(4110,'2015-03-14 14:56:58','2015-08-29 14:46:07',1,30002982,0,1,0,1,0,0,2,0,0,0,0,0,0,1,1,0,0,0,1,1,0,0,0,0),(4111,'2015-03-14 14:56:58','2015-03-14 14:56:58',1,30002839,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(4112,'2015-03-14 14:56:58','2015-08-29 14:46:07',1,30045315,1,0,1,0,0,1,0,1,0,0,0,0,0,0,0,0,0,1,0,1,1,0,0,0),(4113,'2015-03-14 14:56:58','2015-08-29 14:46:07',1,30002772,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0),(4114,'2015-03-14 14:56:58','2015-08-29 14:46:07',1,30045349,0,0,1,2,1,3,1,0,1,1,1,0,0,0,0,1,0,0,2,0,1,0,1,0),(4115,'2015-03-14 14:56:58','2015-03-14 14:56:58',1,30002239,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(4116,'2015-03-14 14:56:58','2015-08-29 14:46:07',1,30002718,0,8,5,15,5,0,6,5,18,19,18,0,15,25,5,7,4,0,8,21,26,17,3,0),(4117,'2015-03-14 14:56:58','2015-03-14 14:56:58',1,30001727,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(4118,'2015-03-14 14:56:58','2015-08-29 14:46:07',1,30005319,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,0,0,0,0,0,0,0,0),(4119,'2015-03-14 14:56:58','2015-03-14 14:56:58',1,30005085,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(4120,'2015-03-14 14:56:58','2015-03-14 14:56:58',1,30005080,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(4121,'2015-03-14 14:56:58','2015-08-29 14:46:07',1,30003530,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0),(4122,'2015-03-14 14:56:58','2015-03-14 14:56:58',1,30003495,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(4123,'2015-03-14 14:56:58','2015-03-14 14:56:58',1,30002212,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(4124,'2015-03-14 14:56:58','2015-08-29 14:46:07',1,30004269,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(4125,'2015-03-14 14:56:58','2015-03-14 14:56:58',1,30000025,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(4126,'2015-03-14 14:56:58','2015-03-14 14:56:58',1,30002227,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(4127,'2015-03-14 14:56:58','2015-08-29 14:46:07',1,30003602,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(4128,'2015-03-14 14:56:58','2015-03-14 14:56:58',1,30001417,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(4129,'2015-03-14 14:56:58','2015-03-14 14:56:58',1,30001373,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(4130,'2015-03-14 14:56:58','2015-08-29 14:46:07',1,30002697,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0),(4131,'2015-03-14 14:56:58','2015-03-14 14:56:58',1,30004116,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(4132,'2015-03-14 14:56:58','2015-08-29 14:46:07',1,30002271,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0),(4133,'2015-03-14 14:56:58','2015-03-14 14:56:58',1,30000406,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(4134,'2015-03-14 14:56:58','2015-03-14 14:56:58',1,30003104,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(4135,'2015-03-14 14:56:58','2015-08-29 14:46:07',1,30004742,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,1,0,0,0),(4136,'2015-03-14 14:56:58','2015-03-14 14:56:58',1,30000805,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(4137,'2015-03-14 14:56:58','2015-03-14 14:56:58',1,30002023,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(4138,'2015-03-14 14:56:58','2015-08-29 14:46:07',1,30004577,0,0,0,0,0,0,0,0,1,1,0,0,1,2,1,2,2,0,0,0,4,3,1,0),(4139,'2015-03-14 14:56:58','2015-03-14 14:56:58',1,30002140,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(4140,'2015-03-14 14:56:58','2015-08-29 14:46:07',1,30005328,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,1,1,1,0,0,2,1,0,0),(4141,'2015-03-14 14:56:58','2015-08-29 14:46:07',1,30000160,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,1,0,0,0),(4142,'2015-03-14 14:56:58','2015-08-29 14:46:07',1,30045354,0,2,0,0,1,1,2,3,2,0,0,1,1,2,0,0,2,3,0,2,1,2,1,0),(4143,'2015-03-14 14:56:58','2015-03-14 14:56:58',1,30001700,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(4144,'2015-03-14 14:56:58','2015-08-29 14:46:07',1,30003829,1,3,0,1,0,0,1,0,0,0,0,0,1,0,0,1,0,0,2,1,0,0,0,0),(4145,'2015-03-14 14:56:58','2015-08-29 14:46:07',1,30002510,2,1,2,3,1,3,1,1,1,0,1,1,1,4,1,4,3,3,3,19,3,3,1,0),(4146,'2015-03-14 14:56:58','2015-08-29 14:46:07',1,30004970,0,0,0,1,1,0,0,0,0,0,1,2,0,0,0,0,1,0,2,2,0,0,1,0),(4147,'2015-03-14 14:56:58','2015-03-14 14:56:58',1,30003564,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(4148,'2015-03-14 14:56:58','2015-03-14 14:56:58',1,30000780,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(4149,'2015-03-14 14:56:58','2015-08-29 14:46:07',1,30002056,0,0,0,1,1,0,0,0,0,0,0,0,5,4,0,0,0,0,0,0,0,0,0,0),(4150,'2015-03-14 14:56:58','2015-08-29 14:46:07',1,30003851,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0),(4151,'2015-03-14 14:56:58','2015-03-14 14:56:58',1,30003391,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(4152,'2015-03-14 14:56:58','2015-03-14 14:56:58',1,30003880,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(4153,'2015-03-14 14:56:58','2015-03-14 14:56:58',1,30001686,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(4154,'2015-03-14 14:56:58','2015-08-29 14:46:07',1,30002256,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(4155,'2015-03-14 14:56:58','2015-08-29 14:46:07',1,30003803,0,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(4156,'2015-03-14 14:56:58','2015-03-14 14:56:58',1,30001475,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(4157,'2015-03-14 14:56:58','2015-03-14 14:56:58',1,30000385,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(4158,'2015-03-14 14:56:58','2015-03-14 14:56:58',1,30003994,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(4159,'2015-03-14 14:56:58','2015-08-29 14:46:07',1,30003333,0,0,0,0,0,3,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(4160,'2015-03-14 14:56:58','2015-03-14 14:56:58',1,30004724,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(4161,'2015-03-14 14:56:58','2015-03-14 14:56:58',1,30003229,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(4162,'2015-03-14 14:56:58','2015-03-14 14:56:58',1,30002129,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(4163,'2015-03-14 14:56:58','2015-03-14 14:56:58',1,30002491,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(4164,'2015-03-14 14:56:58','2015-08-29 14:46:07',1,30002954,0,0,1,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0),(4165,'2015-03-14 14:56:58','2015-03-14 14:56:58',1,30004225,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(4166,'2015-03-14 14:56:58','2015-03-14 14:56:58',1,30004812,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(4167,'2015-03-14 14:56:58','2015-03-14 14:56:58',1,30002151,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(4168,'2015-03-14 14:56:58','2015-03-14 14:56:58',1,30004918,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(4169,'2015-03-14 14:56:58','2015-08-29 14:46:07',1,30002993,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0),(4170,'2015-03-14 14:56:58','2015-03-14 14:56:58',1,30003457,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(4171,'2015-03-14 14:56:58','2015-08-29 14:46:07',1,30003916,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0),(4172,'2015-03-14 14:56:58','2015-03-14 14:56:58',1,30002241,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(4173,'2015-03-14 14:56:58','2015-03-14 14:56:58',1,30001650,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(4174,'2015-03-14 14:56:58','2015-08-29 14:46:07',1,30004472,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,0,0,0,0,0,0,1,0),(4175,'2015-03-14 14:56:58','2015-03-14 14:56:58',1,30001090,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(4176,'2015-03-14 14:56:58','2015-03-14 14:56:58',1,30004953,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(4177,'2015-03-14 14:56:58','2015-08-29 14:46:07',1,30003260,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(4178,'2015-03-14 14:56:58','2015-03-14 14:56:58',1,30002380,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(4179,'2015-03-14 14:56:58','2015-03-14 14:56:58',1,30003626,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(4180,'2015-03-14 14:56:58','2015-03-14 14:56:58',1,30004015,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(4181,'2015-03-14 14:56:58','2015-03-14 14:56:58',1,30004494,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(4182,'2015-03-14 14:56:58','2015-08-29 14:46:07',1,30001902,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(4183,'2015-03-14 14:56:58','2015-03-14 14:56:58',1,30003353,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(4184,'2015-03-14 14:56:58','2015-03-14 14:56:58',1,30002443,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(4185,'2015-03-14 14:56:58','2015-03-14 14:56:58',1,30003610,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(4186,'2015-03-14 14:56:58','2015-08-29 14:46:07',1,30001028,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,1,2,0,1,1,0,0),(4187,'2015-03-14 14:56:58','2015-03-14 14:56:58',1,30001520,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(4188,'2015-03-14 14:56:58','2015-08-29 14:46:07',1,30001187,0,0,1,0,0,0,0,0,0,1,0,0,0,1,1,0,0,0,0,0,0,0,0,0),(4189,'2015-03-14 14:56:58','2015-08-29 14:46:07',1,30000673,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(4190,'2015-03-14 14:56:58','2015-03-14 14:56:58',1,30002322,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(4191,'2015-03-14 14:56:58','2015-08-29 14:46:07',1,30003246,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0),(4192,'2015-03-14 14:56:58','2015-08-29 14:46:07',1,30002926,0,0,1,0,0,0,0,0,0,0,1,0,0,1,0,0,0,0,0,0,0,0,0,0),(4193,'2015-03-14 14:56:58','2015-03-14 14:56:58',1,30004370,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(4194,'2015-03-14 14:56:58','2015-03-14 14:56:58',1,30045325,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(4195,'2015-03-14 14:56:58','2015-08-29 14:46:07',1,30001983,0,0,0,1,0,1,0,1,2,7,7,0,1,3,2,1,2,0,0,16,1,1,3,0),(4196,'2015-03-14 14:56:58','2015-03-14 14:56:58',1,30000815,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(4197,'2015-03-14 14:56:58','2015-03-14 14:56:58',1,30002534,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(4198,'2015-03-14 14:56:58','2015-03-14 14:56:58',1,30003395,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(4199,'2015-03-14 14:56:58','2015-08-29 14:46:07',1,30004080,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,1,0,1,0),(4200,'2015-03-14 14:56:58','2015-03-14 14:56:58',1,30002550,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(4201,'2015-03-14 14:56:58','2015-03-14 14:56:58',1,30003081,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(4202,'2015-03-14 14:56:58','2015-08-29 14:46:07',1,30002721,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(4203,'2015-03-14 14:56:58','2015-03-14 14:56:58',1,30002033,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(4204,'2015-03-14 14:56:58','2015-03-14 14:56:58',1,30002426,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(4205,'2015-03-14 14:56:58','2015-08-29 14:46:07',1,30002975,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0),(4206,'2015-03-14 14:56:58','2015-03-14 14:56:58',1,30001936,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(4207,'2015-03-14 14:56:58','2015-08-29 14:46:07',1,30004560,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0),(4208,'2015-03-14 14:56:58','2015-08-29 14:46:07',1,30001924,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0),(4209,'2015-03-14 14:56:58','2015-03-14 14:56:58',1,30001320,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(4210,'2015-03-14 14:56:58','2015-03-14 14:56:58',1,30000359,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(4211,'2015-03-14 14:56:58','2015-03-14 14:56:58',1,30002039,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(4212,'2015-03-14 14:56:58','2015-08-29 14:46:07',1,30000790,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0),(4213,'2015-03-14 14:56:58','2015-08-29 14:46:07',1,30001830,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(4214,'2015-03-14 14:56:58','2015-03-14 14:56:58',1,30002880,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(4215,'2015-03-14 14:56:58','2015-08-29 14:46:07',1,30001259,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,1,0,0,0,0),(4216,'2015-03-14 14:56:58','2015-03-14 14:56:58',1,30001931,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(4217,'2015-03-14 14:56:58','2015-03-14 14:56:58',1,30001511,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(4218,'2015-03-14 14:56:58','2015-03-14 14:56:58',1,30001139,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(4219,'2015-03-14 14:56:58','2015-08-29 14:46:07',1,30003362,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0),(4220,'2015-03-14 14:56:58','2015-03-14 14:56:58',1,30000511,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(4221,'2015-03-14 14:56:58','2015-03-14 14:56:58',1,30001773,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(4222,'2015-03-14 14:56:58','2015-03-14 14:56:58',1,30004516,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(4223,'2015-03-14 14:56:58','2015-03-14 14:56:58',1,30000377,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(4224,'2015-03-14 14:56:58','2015-08-29 14:46:07',1,30002183,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0),(4225,'2015-03-14 14:56:58','2015-03-14 14:56:58',1,30002249,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(4226,'2015-03-14 14:56:58','2015-03-14 14:56:58',1,30003845,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(4227,'2015-03-14 14:56:58','2015-03-14 14:56:58',1,30001123,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(4228,'2015-03-14 14:56:58','2015-03-14 14:56:58',1,30001724,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(4229,'2015-03-14 14:56:58','2015-08-29 14:46:07',1,30001408,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0),(4230,'2015-03-14 14:56:58','2015-03-14 14:56:58',1,30002326,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(4231,'2015-03-14 14:56:58','2015-08-29 14:46:07',1,30001900,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,0,0,0,0,0,0,0),(4232,'2015-03-14 14:56:58','2015-08-29 14:46:07',1,30000651,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(4233,'2015-03-14 14:56:58','2015-03-14 14:56:58',1,30000298,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(4234,'2015-03-14 14:56:58','2015-03-14 14:56:58',1,30001943,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(4235,'2015-03-14 14:56:58','2015-03-14 14:56:58',1,30001142,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(4236,'2015-03-14 14:56:58','2015-03-14 14:56:58',1,30001563,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(4237,'2015-03-14 14:56:58','2015-03-14 14:56:58',1,30001138,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(4238,'2015-03-14 14:56:58','2015-03-14 14:56:58',1,30005119,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(4239,'2015-03-14 14:56:58','2015-03-14 14:56:58',1,30000712,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(4240,'2015-03-14 14:56:58','2015-08-29 14:46:07',1,30003410,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,1,0,0,0,0,0,0),(4241,'2015-03-14 14:56:58','2015-03-14 14:56:58',1,30004963,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(4242,'2015-03-14 14:56:58','2015-03-14 14:56:58',1,30000477,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(4243,'2015-03-14 14:56:58','2015-03-14 14:56:58',1,30000834,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(4244,'2015-03-14 14:56:58','2015-03-14 14:56:58',1,30005105,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(4245,'2015-03-14 14:56:58','2015-08-29 14:46:07',1,30005188,0,0,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(4246,'2015-03-14 14:56:58','2015-08-29 14:46:07',1,30002022,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(4247,'2015-03-14 14:56:58','2015-03-14 14:56:58',1,30003628,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(4248,'2015-03-14 14:56:58','2015-03-14 14:56:58',1,30001308,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(4249,'2015-03-14 14:56:58','2015-03-14 14:56:58',1,30000501,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(4250,'2015-03-14 14:56:58','2015-03-14 14:56:58',1,30004776,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(4251,'2015-03-14 14:56:58','2015-03-14 14:56:58',1,30004819,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(4252,'2015-03-14 14:56:58','2015-03-14 14:56:58',1,30004332,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(4253,'2015-03-14 14:56:58','2015-08-29 14:46:07',1,30001918,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0),(4254,'2015-03-14 14:56:58','2015-08-29 14:46:07',1,30001591,0,0,0,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(4255,'2015-03-14 14:56:58','2015-03-14 14:56:58',1,30001893,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(4256,'2015-03-14 14:56:58','2015-08-29 14:46:07',1,30002912,0,0,0,0,0,0,0,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(4257,'2015-03-14 14:56:58','2015-08-29 14:46:07',1,30000657,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0),(4258,'2015-03-14 14:56:58','2015-08-29 14:46:07',1,30003611,1,0,0,0,0,1,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,0,1,0),(4259,'2015-03-14 14:56:58','2015-03-14 14:56:58',1,30003340,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(4260,'2015-03-14 14:56:58','2015-03-14 14:56:58',1,30003629,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(4261,'2015-03-14 14:56:58','2015-03-14 14:56:58',1,30004683,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(4262,'2015-03-14 14:56:58','2015-03-14 14:56:58',1,30002888,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(4263,'2015-03-14 14:56:58','2015-03-14 14:56:58',1,30002017,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(4264,'2015-03-14 14:56:58','2015-03-14 14:56:58',1,30000260,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(4265,'2015-03-14 14:56:58','2015-03-14 14:56:58',1,30000388,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(4266,'2015-03-14 14:56:58','2015-08-29 14:46:07',1,30001088,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(4267,'2015-03-14 14:56:58','2015-03-14 14:56:58',1,30001176,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(4268,'2015-03-14 14:56:58','2015-03-14 14:56:58',1,30003368,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(4269,'2015-03-14 14:56:58','2015-03-14 14:56:58',1,30004172,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(4270,'2015-03-14 14:56:58','2015-03-14 14:56:58',1,30004886,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(4271,'2015-03-14 14:56:58','2015-03-14 14:56:58',1,30000753,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(4272,'2015-03-14 14:56:58','2015-03-14 14:56:58',1,30000667,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(4273,'2015-03-14 14:56:58','2015-03-14 14:56:58',1,30001030,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(4274,'2015-03-14 14:56:58','2015-08-29 14:46:07',1,30001237,0,0,1,0,0,0,0,1,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0),(4275,'2015-03-14 14:56:58','2015-03-14 14:56:58',1,30004805,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(4276,'2015-03-14 14:56:58','2015-03-14 14:56:58',1,30001471,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(4277,'2015-03-14 14:56:58','2015-03-14 14:56:58',1,30001145,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(4278,'2015-03-14 14:56:58','2015-08-29 14:46:07',1,30000284,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0),(4279,'2015-03-14 14:56:58','2015-03-14 14:56:58',1,30003257,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(4280,'2015-03-14 14:56:58','2015-08-29 14:46:07',1,30000886,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0),(4281,'2015-03-14 14:56:58','2015-03-14 14:56:58',1,30001891,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(4282,'2015-03-14 14:56:58','2015-03-14 14:56:58',1,30000389,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(4283,'2015-03-14 14:56:58','2015-08-29 14:46:07',1,30003741,1,0,0,0,0,0,0,0,0,0,1,0,2,0,0,0,0,0,0,0,0,0,1,0),(4284,'2015-03-14 14:56:58','2015-08-29 14:46:07',1,30003506,0,2,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(4285,'2015-03-14 14:56:58','2015-03-14 14:56:58',1,30001386,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(4286,'2015-03-14 14:56:58','2015-08-29 14:46:07',1,30003894,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0),(4287,'2015-03-14 14:56:58','2015-08-29 14:46:07',1,30001675,0,0,0,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(4288,'2015-03-14 14:56:58','2015-08-29 14:46:07',1,30004242,3,1,0,1,3,0,1,0,0,1,1,0,0,0,0,0,0,0,1,4,0,0,2,0),(4289,'2015-03-14 14:56:58','2015-03-14 14:56:58',1,30002251,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(4290,'2015-03-14 14:56:58','2015-03-14 14:56:58',1,30031672,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(4291,'2015-03-14 14:56:58','2015-03-14 14:56:58',1,30002279,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(4292,'2015-03-14 14:56:58','2015-03-14 14:56:58',1,30003879,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(4293,'2015-03-14 14:56:58','2015-08-29 14:46:07',1,30001719,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,1,0),(4294,'2015-03-14 14:56:58','2015-08-29 14:46:07',1,30002298,0,0,0,0,1,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(4295,'2015-03-14 14:56:58','2015-08-29 14:46:07',1,30003474,0,0,0,0,0,6,0,0,0,1,1,0,2,2,1,0,1,1,2,1,0,1,1,0),(4296,'2015-03-14 14:56:58','2015-03-14 14:56:58',1,30002259,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(4297,'2015-03-14 14:56:58','2015-03-14 14:56:58',1,30003518,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(4298,'2015-03-14 14:56:58','2015-08-29 14:46:07',1,30003086,0,0,0,2,1,0,0,0,0,0,0,0,0,1,0,1,0,0,0,0,0,1,0,0),(4299,'2015-03-14 14:56:58','2015-03-14 14:56:58',1,30000508,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(4300,'2015-03-14 14:56:58','2015-08-29 14:46:07',1,30003090,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0),(4301,'2015-03-14 14:56:58','2015-08-29 14:46:07',1,30003079,0,0,0,0,0,0,0,0,0,0,2,2,0,0,0,0,0,0,0,2,0,0,0,0),(4302,'2015-03-14 14:56:58','2015-03-14 14:56:58',1,30002745,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(4303,'2015-03-14 14:56:58','2015-03-14 14:56:58',1,30002816,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(4304,'2015-03-14 14:56:58','2015-03-14 14:56:58',1,30000146,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(4305,'2015-03-14 14:56:58','2015-03-14 14:56:58',1,30010141,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(4306,'2015-03-14 14:56:58','2015-08-29 14:46:07',1,30004299,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,1,1,1,0),(4307,'2015-03-14 14:56:58','2015-03-14 14:56:58',1,30002215,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(4308,'2015-03-14 14:56:58','2015-03-14 14:56:58',1,30000167,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(4309,'2015-03-14 14:56:58','2015-03-14 14:56:58',1,30002405,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(4310,'2015-03-14 14:56:58','2015-03-14 14:56:58',1,30004146,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(4311,'2015-03-14 14:56:58','2015-08-29 14:46:07',1,30000059,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(4312,'2015-03-14 14:56:58','2015-03-14 14:56:58',1,30003874,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(4313,'2015-03-14 14:56:58','2015-08-29 14:46:07',1,30045322,1,1,0,0,0,0,0,0,1,0,0,2,0,0,0,0,0,0,0,0,1,0,0,0),(4314,'2015-03-14 14:56:58','2015-08-29 14:46:07',1,30001721,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,0,0,0),(4315,'2015-03-14 14:56:58','2015-03-14 14:56:58',1,30002783,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(4316,'2015-03-14 14:56:58','2015-03-14 14:56:58',1,30002785,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(4317,'2015-03-14 14:56:58','2015-03-14 14:56:58',1,30005255,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(4318,'2015-03-14 14:56:58','2015-08-29 14:46:07',1,30001442,0,0,3,1,1,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(4319,'2015-03-14 14:56:58','2015-08-29 14:46:07',1,30001377,1,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(4320,'2015-03-14 14:56:58','2015-08-29 14:46:07',1,30045310,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(4321,'2015-03-14 14:56:58','2015-03-14 14:56:58',1,30000043,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(4322,'2015-03-14 14:56:58','2015-08-29 14:46:07',1,30003584,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0),(4323,'2015-03-14 14:56:58','2015-08-29 14:46:07',1,30003522,0,2,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0),(4324,'2015-03-14 14:56:58','2015-08-29 14:46:07',1,30003074,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,0,0,0,1,1,1,0),(4325,'2015-03-14 14:56:58','2015-03-14 14:56:58',1,30002971,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(4326,'2015-03-14 14:56:58','2015-03-14 14:56:58',1,30003931,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(4327,'2015-03-14 14:56:58','2015-03-14 14:56:58',1,30000005,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(4328,'2015-03-14 14:56:58','2015-03-14 14:56:58',1,30003097,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(4329,'2015-03-14 14:56:58','2015-08-29 14:46:07',1,30003508,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0),(4330,'2015-03-14 14:56:58','2015-03-14 14:56:58',1,30004270,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(4331,'2015-03-14 14:56:58','2015-03-14 14:56:58',1,30003865,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(4332,'2015-03-14 14:56:58','2015-03-14 14:56:58',1,30000991,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(4333,'2015-03-14 14:56:58','2015-03-14 14:56:58',1,30004218,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(4334,'2015-03-14 14:56:58','2015-03-14 14:56:58',1,30001296,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(4335,'2015-03-14 14:56:58','2015-08-29 14:46:07',1,30005310,0,0,0,0,0,0,0,0,0,1,1,1,1,0,0,0,1,0,0,0,0,0,0,0),(4336,'2015-03-14 14:56:58','2015-08-29 14:46:07',1,30005063,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0),(4337,'2015-03-14 14:56:58','2015-03-14 14:56:58',1,30002654,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(4338,'2015-03-14 14:56:58','2015-08-29 14:46:07',1,30005322,0,0,0,0,1,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0),(4339,'2015-03-14 14:56:58','2015-08-29 14:46:07',1,30003054,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,1,0),(4340,'2015-03-14 14:56:58','2015-08-29 14:46:07',1,30000692,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(4341,'2015-03-14 14:56:58','2015-03-14 14:56:58',1,30001314,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(4342,'2015-03-14 14:56:58','2015-08-29 14:46:07',1,30004139,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(4343,'2015-03-14 14:56:58','2015-08-29 14:46:07',1,30001659,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0),(4344,'2015-03-14 14:56:58','2015-03-14 14:56:58',1,30005042,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(4345,'2015-03-14 14:56:58','2015-03-14 14:56:58',1,30003869,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(4346,'2015-03-14 14:56:58','2015-08-29 14:46:07',1,30001657,0,0,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(4347,'2015-03-14 14:56:58','2015-03-14 14:56:58',1,30002243,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(4348,'2015-03-14 14:56:58','2015-03-14 14:56:58',1,30041672,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(4349,'2015-03-14 14:56:58','2015-03-14 14:56:58',1,30001359,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(4350,'2015-03-14 14:56:58','2015-08-29 14:46:07',1,30020141,0,1,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(4351,'2015-03-14 14:56:58','2015-08-29 14:46:07',1,30000015,0,0,0,0,1,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,0,0,0,0),(4352,'2015-03-14 14:56:58','2015-03-14 14:56:58',1,30000103,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(4353,'2015-03-14 14:56:58','2015-08-29 14:46:07',1,30004623,0,1,0,0,0,0,0,0,0,1,1,0,0,1,0,0,0,0,0,0,0,0,0,0),(4354,'2015-03-14 14:56:58','2015-08-29 14:46:07',1,30005222,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0),(4355,'2015-03-14 14:56:58','2015-03-14 14:56:58',1,30003898,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(4356,'2015-03-14 14:56:58','2015-03-14 14:56:58',1,30005278,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(4357,'2015-03-14 14:56:58','2015-08-29 14:46:07',1,30005020,0,0,1,0,0,1,0,0,0,1,1,0,0,1,2,1,0,2,1,0,1,0,0,0),(4358,'2015-03-14 14:56:58','2015-03-14 14:56:58',1,30003654,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(4359,'2015-03-14 14:56:58','2015-03-14 14:56:58',1,30002833,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(4360,'2015-03-14 14:56:58','2015-08-29 14:46:07',1,30000670,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0),(4361,'2015-03-14 14:56:58','2015-03-14 14:56:58',1,30001098,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(4362,'2015-03-14 14:56:58','2015-08-29 14:46:07',1,30000868,0,0,0,0,0,0,0,0,0,0,0,0,0,2,2,0,0,0,0,0,0,0,0,0),(4363,'2015-03-14 14:56:58','2015-03-14 14:56:58',1,30002831,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(4364,'2015-03-14 14:56:58','2015-08-29 14:46:07',1,30002267,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(4365,'2015-03-14 14:56:58','2015-08-29 14:46:07',1,30000097,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0),(4366,'2015-03-14 14:56:58','2015-08-29 14:46:07',1,30004283,0,1,0,0,0,0,0,0,6,3,1,0,5,0,1,3,1,0,0,0,0,0,0,0),(4367,'2015-03-14 14:56:58','2015-03-14 14:56:58',1,30004150,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(4368,'2015-03-14 14:56:58','2015-03-14 14:56:58',1,30005057,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(4369,'2015-03-14 14:56:58','2015-08-29 14:46:07',1,30003477,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0),(4370,'2015-03-14 14:56:58','2015-03-14 14:56:58',1,30004231,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(4371,'2015-03-14 14:56:58','2015-03-14 14:56:58',1,30000054,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(4372,'2015-03-14 14:56:58','2015-08-29 14:46:07',1,30005270,0,0,0,1,1,0,0,0,2,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0),(4373,'2015-03-14 14:56:58','2015-03-14 14:56:58',1,30000014,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(4374,'2015-03-14 14:56:58','2015-08-29 14:46:07',1,30005271,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0),(4375,'2015-03-14 14:56:58','2015-08-29 14:46:07',1,30003498,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,2,0,1,0,0,0),(4376,'2015-03-14 14:56:58','2015-03-14 14:56:58',1,30001739,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(4377,'2015-03-14 14:56:58','2015-03-14 14:56:58',1,30000067,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(4378,'2015-03-14 14:56:58','2015-03-14 14:56:58',1,30003500,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(4379,'2015-03-14 14:56:58','2015-08-29 14:46:07',1,30002638,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0),(4380,'2015-03-14 14:56:58','2015-03-14 14:56:58',1,30005276,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(4381,'2015-03-14 14:56:58','2015-08-29 14:46:07',1,30002999,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,0,0,0),(4382,'2015-03-14 14:56:58','2015-03-14 14:56:58',1,30000779,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(4383,'2015-03-14 14:56:58','2015-03-14 14:56:58',1,30000106,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(4384,'2015-03-14 14:56:58','2015-03-14 14:56:58',1,30004155,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(4385,'2015-03-14 14:56:58','2015-03-14 14:56:58',1,30004268,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(4386,'2015-03-14 14:56:58','2015-03-14 14:56:58',1,30000011,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(4387,'2015-03-14 14:56:58','2015-03-14 14:56:58',1,30005192,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(4388,'2015-03-14 14:56:58','2015-03-14 14:56:58',1,30004278,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(4389,'2015-03-14 14:56:58','2015-08-29 14:46:07',1,30005217,0,4,0,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,1,0,0),(4390,'2015-03-14 14:56:58','2015-03-14 14:56:58',1,30001673,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(4391,'2015-03-14 14:56:58','2015-03-14 14:56:58',1,30000130,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(4392,'2015-03-14 14:56:58','2015-03-14 14:56:58',1,30003725,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(4393,'2015-03-14 14:56:58','2015-03-14 14:56:58',1,30004233,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(4394,'2015-03-14 14:56:58','2015-03-14 14:56:58',1,30001338,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(4395,'2015-03-14 14:56:58','2015-03-14 14:56:58',1,30005076,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(4396,'2015-03-14 14:56:58','2015-08-29 14:46:07',1,30001667,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0),(4397,'2015-03-14 14:56:58','2015-03-14 14:56:58',1,30002235,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(4398,'2015-03-14 14:56:58','2015-03-14 14:56:58',1,30004135,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(4399,'2015-03-14 14:56:58','2015-03-14 14:56:58',1,30002201,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(4400,'2015-03-14 14:56:58','2015-08-29 14:46:07',1,30003728,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,4,0,1,1,0),(4401,'2015-03-14 14:56:58','2015-03-14 14:56:58',1,30005209,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(4402,'2015-03-14 14:56:58','2015-03-14 14:56:58',1,30003484,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(4403,'2015-03-14 14:56:58','2015-03-14 14:56:58',1,30003557,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(4404,'2015-03-14 14:56:58','2015-08-29 14:46:07',1,30002959,0,0,0,0,0,1,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(4405,'2015-03-14 14:56:58','2015-08-29 14:46:07',1,30005219,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0),(4406,'2015-03-14 14:56:58','2015-08-29 14:46:07',1,30000179,0,0,0,0,0,0,0,5,0,1,0,0,0,0,0,0,0,0,0,0,2,2,0,0),(4407,'2015-03-14 14:56:58','2015-03-14 14:56:58',1,30002689,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(4408,'2015-03-14 14:56:58','2015-03-14 14:56:58',1,30002195,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(4409,'2015-03-14 14:56:58','2015-08-29 14:46:07',1,30005269,0,1,1,1,0,0,0,0,0,0,0,0,1,2,1,0,0,0,0,1,0,0,1,0),(4410,'2015-03-14 14:56:58','2015-08-29 14:46:07',1,30001729,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(4411,'2015-03-14 14:56:58','2015-08-29 14:46:07',1,30002092,0,0,0,0,0,0,0,0,7,0,0,0,0,0,0,1,0,1,0,0,0,0,0,0),(4412,'2015-03-14 14:56:58','2015-03-14 14:56:58',1,30003540,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(4413,'2015-03-14 14:56:58','2015-08-29 14:46:07',1,30002791,0,0,1,1,1,1,0,0,0,0,0,0,0,2,1,1,0,0,0,0,1,2,1,0),(4414,'2015-03-14 14:56:58','2015-08-29 14:46:07',1,30000127,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0),(4415,'2015-03-14 14:56:58','2015-08-29 14:46:07',1,30002539,1,5,0,6,8,1,0,0,0,2,1,0,3,1,0,0,0,1,2,3,5,3,1,0),(4416,'2015-03-14 14:56:58','2015-03-14 14:56:58',1,30002521,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(4417,'2015-03-14 14:56:58','2015-03-14 14:56:58',1,30002229,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(4418,'2015-03-14 14:56:58','2015-03-14 14:56:58',1,30003406,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(4419,'2015-03-14 14:56:58','2015-08-29 14:46:07',1,30002765,5,1,0,0,0,0,1,1,0,0,1,0,6,1,1,1,2,0,1,1,0,0,2,0),(4420,'2015-03-14 14:56:58','2015-03-14 14:56:58',1,30001699,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(4421,'2015-03-14 14:56:58','2015-03-14 14:56:58',1,30001728,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(4422,'2015-03-14 14:56:58','2015-03-14 14:56:58',1,30000571,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(4423,'2015-03-14 14:56:58','2015-03-14 14:56:58',1,30000436,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(4424,'2015-03-14 14:56:58','2015-03-14 14:56:58',1,30004164,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(4425,'2015-03-14 14:56:58','2015-03-14 14:56:58',1,30002411,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(4426,'2015-03-14 14:56:58','2015-03-14 14:56:58',1,30003964,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(4427,'2015-03-14 14:56:58','2015-08-29 14:46:07',1,30000964,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0),(4428,'2015-03-14 14:56:58','2015-03-14 14:56:58',1,30003798,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(4429,'2015-03-14 14:56:58','2015-03-14 14:56:58',1,30000479,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(4430,'2015-03-14 14:56:58','2015-03-14 14:56:58',1,30001780,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(4431,'2015-03-14 14:56:58','2015-03-14 14:56:58',1,30001808,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(4432,'2015-03-14 14:56:58','2015-03-14 14:56:58',1,30000763,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(4433,'2015-03-14 14:56:58','2015-03-14 14:56:58',1,30003152,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(4434,'2015-03-14 14:56:58','2015-08-29 14:46:07',1,30001220,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0),(4435,'2015-03-14 14:56:58','2015-03-14 14:56:58',1,30000584,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(4436,'2015-03-14 14:56:58','2015-08-29 14:46:07',1,30001363,0,0,0,1,0,0,0,0,1,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0),(4437,'2015-03-14 14:56:58','2015-03-14 14:56:58',1,30002237,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(4438,'2015-03-14 14:56:58','2015-03-14 14:56:58',1,30004273,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(4439,'2015-03-14 14:56:58','2015-03-14 14:56:58',1,30003511,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(4440,'2015-03-14 14:56:58','2015-08-29 14:46:07',1,30003225,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0),(4441,'2015-03-14 14:56:58','2015-08-29 14:46:07',1,30004099,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0),(4442,'2015-03-14 14:56:58','2015-03-14 14:56:58',1,30000009,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(4443,'2015-03-14 14:56:58','2015-03-14 14:56:58',1,30002983,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(4444,'2015-03-14 14:56:58','2015-08-29 14:46:07',1,30005323,1,0,0,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(4445,'2015-03-14 14:56:58','2015-03-14 14:56:58',1,30003510,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(4446,'2015-03-14 14:56:58','2015-03-14 14:56:58',1,30000089,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(4447,'2015-03-14 14:56:58','2015-08-29 14:46:07',1,30003070,1,1,1,0,0,1,0,0,0,1,0,0,1,1,1,0,1,0,0,0,2,1,1,0),(4448,'2015-03-14 14:56:58','2015-08-29 14:46:07',1,30002980,0,0,1,1,0,1,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0),(4449,'2015-03-14 14:56:58','2015-03-14 14:56:58',1,30005218,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(4450,'2015-03-14 14:56:58','2015-03-14 14:56:58',1,30000175,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(4451,'2015-03-14 14:56:58','2015-03-14 14:56:58',1,30004272,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(4452,'2015-03-14 14:56:58','2015-08-29 14:46:07',1,30001369,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0),(4453,'2015-03-14 14:56:58','2015-03-14 14:56:58',1,30002575,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(4454,'2015-03-14 14:56:58','2015-03-14 14:56:58',1,30005052,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(4455,'2015-03-14 14:56:58','2015-03-14 14:56:58',1,30004292,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(4456,'2015-03-14 14:56:58','2015-08-29 14:46:07',1,30002111,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0),(4457,'2015-03-14 14:56:58','2015-03-14 14:56:58',1,30004570,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(4458,'2015-03-14 14:56:58','2015-03-14 14:56:58',1,30001453,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(4459,'2015-03-14 14:56:58','2015-03-14 14:56:58',1,30001630,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(4460,'2015-03-14 14:56:58','2015-08-29 14:46:07',1,30005141,0,2,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(4461,'2015-03-14 14:56:58','2015-03-14 14:56:58',1,30000565,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(4462,'2015-03-14 14:56:58','2015-03-14 14:56:58',1,30002422,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(4463,'2015-03-14 14:56:58','2015-03-14 14:56:58',1,30001288,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(4464,'2015-03-14 14:56:58','2015-08-29 14:46:07',1,30003794,1,1,0,0,0,0,2,2,0,3,0,0,1,0,0,0,0,0,1,1,0,0,0,0),(4465,'2015-03-14 14:56:58','2015-03-14 14:56:58',1,30002675,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(4466,'2015-03-14 14:56:58','2015-08-29 14:46:07',1,30002696,1,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(4467,'2015-03-14 14:56:58','2015-03-14 14:56:58',1,30002711,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(4468,'2015-03-14 14:56:58','2015-03-14 14:56:58',1,30003376,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(4469,'2015-03-14 14:56:58','2015-03-14 14:56:58',1,30005333,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(4470,'2015-03-14 14:56:58','2015-03-14 14:56:58',1,30003593,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(4471,'2015-03-14 14:56:58','2015-08-29 14:46:07',1,30003607,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0),(4472,'2015-03-14 14:56:58','2015-03-14 14:56:58',1,30000086,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(4473,'2015-03-14 14:56:58','2015-08-29 14:46:07',1,30002809,1,2,2,1,2,0,5,0,1,1,1,0,1,1,1,0,0,1,1,1,0,0,2,0),(4474,'2015-03-14 14:56:58','2015-03-14 14:56:58',1,30002200,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(4475,'2015-03-14 14:56:58','2015-03-14 14:56:58',1,30004101,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(4476,'2015-03-14 14:56:58','2015-08-29 14:46:07',1,30000944,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,1,0,0),(4477,'2015-03-14 14:56:58','2015-08-29 14:46:07',1,30002801,0,0,0,0,0,0,1,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0),(4478,'2015-03-14 14:56:58','2015-03-14 14:56:58',1,30002445,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(4479,'2015-03-14 14:56:58','2015-08-29 14:46:07',1,30001158,2,2,5,1,0,0,0,2,0,6,0,0,0,3,1,4,0,19,3,5,0,1,1,0),(4480,'2015-03-14 14:56:58','2015-03-14 14:56:58',1,30004377,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(4481,'2015-03-14 14:56:58','2015-08-29 14:46:07',1,30004758,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(4482,'2015-03-14 14:56:58','2015-03-14 14:56:58',1,30004484,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(4483,'2015-03-14 14:56:58','2015-03-14 14:56:58',1,30002835,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(4484,'2015-03-14 14:56:58','2015-03-14 14:56:58',1,30005174,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(4485,'2015-03-14 14:56:58','2015-03-14 14:56:58',1,30000515,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(4486,'2015-03-14 14:56:58','2015-03-14 14:56:58',1,30003667,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(4487,'2015-03-14 14:56:58','2015-03-14 14:56:58',1,30005015,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(4488,'2015-03-14 14:56:58','2015-03-14 14:56:58',1,30004143,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(4489,'2015-03-14 14:56:58','2015-03-14 14:56:58',1,30003639,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(4490,'2015-03-14 14:56:58','2015-03-14 14:56:58',1,30000488,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(4491,'2015-03-14 14:56:58','2015-03-14 14:56:58',1,30001096,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(4492,'2015-03-14 14:56:58','2015-03-14 14:56:58',1,30004211,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(4493,'2015-03-14 14:56:58','2015-03-14 14:56:58',1,30001151,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(4494,'2015-03-14 14:56:58','2015-03-14 14:56:58',1,30001911,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(4495,'2015-03-14 14:56:58','2015-03-14 14:56:58',1,30002890,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(4496,'2015-03-14 14:56:58','2015-08-29 14:46:07',1,30004877,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0),(4497,'2015-03-14 14:56:58','2015-03-14 14:56:58',1,30001633,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(4498,'2015-03-14 14:56:58','2015-08-29 14:46:07',1,30000261,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,0),(4499,'2015-03-14 14:56:58','2015-03-14 14:56:58',1,30003195,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(4500,'2015-03-14 14:56:58','2015-03-14 14:56:58',1,30002382,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(4501,'2015-03-14 14:56:58','2015-08-29 14:46:07',1,30004748,1,0,0,0,0,0,1,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(4502,'2015-03-14 14:56:58','2015-03-14 14:56:58',1,30004729,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(4503,'2015-03-14 14:56:58','2015-03-14 14:56:58',1,30003673,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(4504,'2015-03-14 14:56:58','2015-03-14 14:56:58',1,30003299,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(4505,'2015-03-14 14:56:58','2015-03-14 14:56:58',1,30004745,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(4506,'2015-03-14 14:56:58','2015-08-29 14:46:07',1,30001959,0,0,0,0,0,0,0,0,0,0,0,0,0,2,2,1,0,0,0,2,1,1,0,0),(4507,'2015-03-14 14:56:58','2015-03-14 14:56:58',1,30000330,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(4508,'2015-03-14 14:56:58','2015-03-14 14:56:58',1,30004352,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(4509,'2015-03-14 14:56:58','2015-08-29 14:46:07',1,30003715,0,0,0,0,0,0,0,1,8,15,3,0,6,13,0,0,0,0,0,0,0,0,0,0),(4510,'2015-03-14 14:56:58','2015-03-14 14:56:58',1,30001631,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(4511,'2015-03-14 14:56:58','2015-03-14 14:56:58',1,30004529,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(4512,'2015-03-14 14:56:58','2015-03-14 14:56:58',1,30004676,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(4513,'2015-03-14 14:56:58','2015-08-29 14:46:07',1,30000303,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0),(4514,'2015-03-14 14:56:58','2015-03-14 14:56:58',1,30001771,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(4515,'2015-03-14 14:56:58','2015-03-14 14:56:58',1,30004842,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(4516,'2015-03-14 14:56:58','2015-03-14 14:56:58',1,30003287,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(4517,'2015-03-14 14:56:58','2015-03-14 14:56:58',1,30004735,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(4518,'2015-03-14 14:56:58','2015-08-29 14:46:07',1,30004870,0,0,0,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,0,5,0,0,0,0),(4519,'2015-03-14 14:56:58','2015-03-14 14:56:58',1,30001548,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(4520,'2015-03-14 14:56:58','2015-03-14 14:56:58',1,30001916,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(4521,'2015-03-14 14:56:58','2015-08-29 14:46:07',1,30003943,0,0,0,0,0,1,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0),(4522,'2015-03-14 14:56:58','2015-08-29 14:46:07',1,30003966,1,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0),(4523,'2015-03-14 14:56:58','2015-08-29 14:46:07',1,30001228,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,1,0,0,1,0),(4524,'2015-03-14 14:56:58','2015-03-14 14:56:58',1,30002841,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(4525,'2015-03-14 14:56:58','2015-08-29 14:46:07',1,30003465,1,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0),(4526,'2015-03-14 14:56:58','2015-03-14 14:56:58',1,30005070,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(4527,'2015-03-14 14:56:58','2015-08-29 14:46:07',1,30002100,0,0,0,0,0,3,0,0,0,1,1,0,0,1,1,0,0,0,1,1,0,0,0,0),(4528,'2015-03-14 14:56:58','2015-03-14 14:56:58',1,30005245,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(4529,'2015-03-14 14:56:58','2015-08-29 14:46:07',1,30001447,1,0,0,3,1,0,0,0,0,0,0,0,0,0,1,3,5,0,0,0,0,0,0,0),(4530,'2015-03-14 14:56:58','2015-03-14 14:56:58',1,30005143,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(4531,'2015-03-14 14:56:58','2015-03-14 14:56:58',1,30003889,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(4532,'2015-03-14 14:56:58','2015-08-29 14:46:07',1,30002813,7,15,1,3,4,0,11,8,1,12,20,25,3,21,15,9,7,6,16,4,9,49,21,0),(4533,'2015-03-14 14:56:58','2015-03-14 14:56:58',1,30003407,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(4534,'2015-03-14 14:56:58','2015-03-14 14:56:58',1,30001437,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(4535,'2015-03-14 14:56:58','2015-08-29 14:46:07',1,30003091,0,1,0,0,0,0,0,0,0,1,1,0,0,1,1,0,0,0,1,0,0,0,1,0),(4536,'2015-03-14 14:56:58','2015-08-29 14:46:07',1,30002812,0,0,0,1,1,0,1,0,1,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0),(4537,'2015-03-14 14:56:58','2015-08-29 14:46:07',1,30000001,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0),(4538,'2015-03-14 14:56:58','2015-08-29 14:46:07',1,30005199,0,0,1,0,0,0,0,0,0,0,0,0,3,0,0,0,0,1,2,1,0,5,3,0),(4539,'2015-03-14 14:56:58','2015-08-29 14:46:07',1,30002979,0,0,1,1,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,0,0,0,0,0),(4540,'2015-03-14 14:56:58','2015-08-29 14:46:07',1,30005205,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(4541,'2015-03-14 14:56:58','2015-03-14 14:56:58',1,30001441,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(4542,'2015-03-14 14:56:58','2015-03-14 14:56:58',1,30001703,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(4543,'2015-03-14 14:56:58','2015-03-14 14:56:58',1,30002778,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(4544,'2015-03-14 14:56:58','2015-08-29 14:46:07',1,30001671,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,3,0,0,0,1,0),(4545,'2015-03-14 14:56:58','2015-03-14 14:56:58',1,30002274,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(4546,'2015-03-14 14:56:58','2015-08-29 14:46:07',1,30000195,0,0,0,0,0,0,0,0,0,1,1,0,0,2,2,1,1,0,0,0,0,0,1,0),(4547,'2015-03-14 14:56:58','2015-08-29 14:46:07',1,30004937,0,0,0,0,0,0,0,0,0,0,0,0,0,2,3,1,0,0,0,0,0,0,0,0),(4548,'2015-03-14 14:56:58','2015-03-14 14:56:58',1,30001051,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(4549,'2015-03-14 14:56:58','2015-08-29 14:46:07',1,30002502,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0),(4550,'2015-03-14 14:56:58','2015-08-29 14:46:07',1,30005089,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,3,0,0,0,0),(4551,'2015-03-14 14:56:58','2015-08-29 14:46:07',1,30004638,0,2,0,0,0,0,0,0,18,2,2,0,8,5,18,20,2,8,2,10,1,2,1,0),(4552,'2015-03-14 14:56:58','2015-08-29 14:46:07',1,30003907,0,0,0,0,0,0,0,0,0,0,0,0,0,2,0,0,0,0,0,0,0,0,0,0),(4553,'2015-03-14 14:56:58','2015-08-29 14:46:07',1,30045350,0,0,0,0,0,0,0,1,0,0,0,1,0,2,1,0,1,1,0,0,0,0,0,0),(4554,'2015-03-14 14:56:58','2015-03-14 14:56:58',1,30003128,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(4555,'2015-03-14 14:56:58','2015-03-14 14:56:58',1,30005200,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(4556,'2015-03-14 14:56:58','2015-03-14 14:56:58',1,30004158,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(4557,'2015-03-14 14:56:58','2015-03-14 14:56:58',1,30001645,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(4558,'2015-03-14 14:56:58','2015-08-29 14:46:08',1,30002763,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(4559,'2015-03-14 14:56:58','2015-08-29 14:46:08',1,30002385,0,1,0,2,0,0,0,0,0,1,0,1,0,1,2,1,0,0,0,0,0,0,0,0),(4560,'2015-03-14 14:56:58','2015-08-29 14:46:08',1,30003507,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0),(4561,'2015-03-14 14:56:58','2015-08-29 14:46:08',1,30001681,0,0,0,0,0,0,0,0,0,0,1,0,4,0,0,0,0,1,1,1,0,0,3,0),(4562,'2015-03-14 14:56:58','2015-08-29 14:46:08',1,30045335,0,0,0,0,0,0,0,0,0,0,2,1,0,1,1,0,1,0,0,0,0,0,0,0),(4563,'2015-03-14 14:56:58','2015-03-14 14:56:58',1,30000926,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(4564,'2015-03-14 14:56:58','2015-03-14 14:56:58',1,30001733,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(4565,'2015-03-14 14:56:58','2015-03-14 14:56:58',1,30002038,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(4566,'2015-03-14 14:56:58','2015-03-14 14:56:58',1,30001760,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(4567,'2015-03-14 14:56:58','2015-08-29 14:46:08',1,30001842,0,0,1,1,1,1,0,1,1,2,1,2,0,0,0,0,0,0,1,2,3,3,0,0),(4568,'2015-03-14 14:56:58','2015-08-29 14:46:08',1,30003000,1,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0),(4569,'2015-03-14 14:56:58','2015-03-14 14:56:58',1,30001677,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(4570,'2015-03-14 14:56:58','2015-03-14 14:56:58',1,30002966,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(4571,'2015-03-14 14:56:58','2015-03-14 14:56:58',1,30002226,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(4572,'2015-03-14 14:56:58','2015-08-29 14:46:08',1,30002720,0,0,0,0,0,0,0,0,0,1,1,0,1,1,1,0,1,2,0,2,0,1,2,0),(4573,'2015-03-14 14:56:58','2015-03-14 14:56:58',1,30005314,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(4574,'2015-03-14 14:56:58','2015-08-29 14:46:08',1,30000069,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0),(4575,'2015-03-14 14:56:58','2015-03-14 14:56:58',1,30001464,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(4576,'2015-03-14 14:56:58','2015-03-14 14:56:58',1,30000352,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(4577,'2015-03-14 14:56:58','2015-03-14 14:56:58',1,30000076,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(4578,'2015-03-14 14:56:58','2015-03-14 14:56:58',1,30005334,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(4579,'2015-03-14 14:56:58','2015-03-14 14:56:58',1,30000100,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(4580,'2015-03-14 14:56:58','2015-08-29 14:46:08',1,30003932,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0),(4581,'2015-03-14 14:56:58','2015-03-14 14:56:58',1,30002784,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(4582,'2015-03-14 14:56:58','2015-08-29 14:46:08',1,30001684,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0),(4583,'2015-03-14 14:56:58','2015-03-14 14:56:58',1,30004298,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(4584,'2015-03-14 14:56:58','2015-03-14 14:56:58',1,30001644,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(4585,'2015-03-14 14:56:58','2015-08-29 14:46:08',1,30002474,0,0,0,1,1,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0),(4586,'2015-03-14 14:56:58','2015-03-14 14:56:58',1,30000742,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(4587,'2015-03-14 14:56:58','2015-03-14 14:56:58',1,30001908,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(4588,'2015-03-14 14:56:58','2015-03-14 14:56:58',1,30002584,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(4589,'2015-03-14 14:56:58','2015-03-14 14:56:58',1,30004047,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(4590,'2015-03-14 14:56:58','2015-03-14 14:56:58',1,30004960,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(4591,'2015-03-14 14:56:58','2015-03-14 14:56:58',1,30001461,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(4592,'2015-03-14 14:56:58','2015-03-14 14:56:58',1,30001519,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(4593,'2015-03-14 14:56:58','2015-08-29 14:46:08',1,30001407,0,0,0,0,0,0,0,0,0,0,0,0,1,0,1,1,1,0,0,0,0,0,0,0),(4594,'2015-03-14 14:56:58','2015-03-14 14:56:58',1,30032505,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(4595,'2015-03-14 14:56:58','2015-08-29 14:46:08',1,30002062,0,0,0,0,0,1,0,0,0,0,0,1,0,1,0,0,0,0,3,0,0,2,1,0),(4596,'2015-03-14 14:56:58','2015-03-14 14:56:58',1,30003383,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(4597,'2015-03-14 14:56:58','2015-08-29 14:46:08',1,30003052,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,1,0),(4598,'2015-03-14 14:56:58','2015-08-29 14:46:08',1,30003436,0,5,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(4599,'2015-03-14 14:56:58','2015-03-14 14:56:58',1,30002532,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(4600,'2015-03-14 14:56:58','2015-08-29 14:46:08',1,30005212,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0),(4601,'2015-03-14 14:56:58','2015-08-29 14:46:08',1,30001429,0,0,1,0,0,1,1,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0),(4602,'2015-03-14 14:56:58','2015-03-14 14:56:58',1,30003020,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(4603,'2015-03-14 14:56:58','2015-03-14 14:56:58',1,30002191,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(4604,'2015-03-14 14:56:58','2015-03-14 14:56:58',1,30003402,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(4605,'2015-03-14 14:56:58','2015-03-14 14:56:58',1,30005301,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(4606,'2015-03-14 14:56:58','2015-03-14 14:56:58',1,30003606,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(4607,'2015-03-14 14:56:58','2015-03-14 14:56:58',1,30001127,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(4608,'2015-03-14 14:56:58','2015-03-14 14:56:58',1,30002327,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(4609,'2015-03-14 14:56:58','2015-03-14 14:56:58',1,30000588,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(4610,'2015-03-14 14:56:58','2015-08-29 14:46:08',1,30004935,0,0,0,0,0,0,0,2,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0),(4611,'2015-03-14 14:56:58','2015-03-14 14:56:58',1,30000641,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(4612,'2015-03-14 14:56:58','2015-03-14 14:56:58',1,30004500,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(4613,'2015-03-14 14:56:58','2015-08-29 14:46:08',1,30004452,0,0,0,0,0,0,0,0,0,0,0,0,4,0,0,0,0,0,0,15,0,0,0,0),(4614,'2015-03-14 14:56:58','2015-03-14 14:56:58',1,30005071,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(4615,'2015-03-14 14:56:58','2015-03-14 14:56:58',1,30003431,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(4616,'2015-03-14 14:56:58','2015-08-29 14:46:08',1,30002069,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(4617,'2015-03-14 14:56:58','2015-03-14 14:56:58',1,30002562,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(4618,'2015-03-14 14:56:58','2015-03-14 14:56:58',1,30000869,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(4619,'2015-03-14 14:56:58','2015-03-14 14:56:58',1,30002668,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(4620,'2015-03-14 14:56:58','2015-08-29 14:46:08',1,30042715,0,0,0,0,0,0,0,0,0,0,0,0,2,0,0,0,0,0,0,0,0,0,0,0),(4621,'2015-03-14 14:56:58','2015-08-29 14:46:08',1,30002508,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0),(4622,'2015-03-14 14:56:58','2015-08-29 14:46:08',1,30004423,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,0,0,0,0,0,0),(4623,'2015-03-14 14:56:58','2015-03-14 14:56:58',1,30001375,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(4624,'2015-03-14 14:56:58','2015-03-14 14:56:58',1,30001412,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(4625,'2015-03-14 14:56:58','2015-03-14 14:56:58',1,30045327,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(4626,'2015-03-14 14:56:58','2015-08-29 14:46:08',1,30000812,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(4627,'2015-03-14 14:56:58','2015-03-14 14:56:58',1,30003733,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(4628,'2015-03-14 14:56:58','2015-08-29 14:46:08',1,30003742,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0),(4629,'2015-03-14 14:56:58','2015-08-29 14:46:08',1,30004634,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0),(4630,'2015-03-14 14:56:58','2015-03-14 14:56:58',1,30004275,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(4631,'2015-03-14 14:56:58','2015-03-14 14:56:58',1,30001379,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(4632,'2015-03-14 14:56:58','2015-08-29 14:46:08',1,30002770,1,0,0,0,0,0,0,0,0,0,0,0,1,0,0,1,0,0,0,0,0,0,0,0),(4633,'2015-03-14 14:56:58','2015-03-14 14:56:58',1,30003064,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(4634,'2015-03-14 14:56:58','2015-03-14 14:56:58',1,30004098,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(4635,'2015-03-14 14:56:58','2015-08-29 14:46:08',1,30002086,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,1,1,1,0,0,0,0),(4636,'2015-03-14 14:56:58','2015-03-14 14:56:58',1,30000128,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(4637,'2015-03-14 14:56:58','2015-03-14 14:56:58',1,30003958,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(4638,'2015-03-14 14:56:58','2015-03-14 14:56:58',1,30002073,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(4639,'2015-03-14 14:56:58','2015-08-29 14:46:08',1,30000263,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,1,0,0,0,0,0),(4640,'2015-03-14 14:56:58','2015-08-29 14:46:08',1,30002614,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0),(4641,'2015-03-14 14:56:58','2015-08-29 14:46:08',1,30003779,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0),(4642,'2015-03-14 14:56:58','2015-08-29 14:46:08',1,30002901,0,0,0,0,0,3,0,0,2,0,0,0,3,0,0,1,0,0,0,7,0,0,0,0),(4643,'2015-03-14 14:56:58','2015-08-29 14:46:08',1,30003323,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,1,3,0),(4644,'2015-03-14 14:56:58','2015-03-14 14:56:58',1,30004844,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(4645,'2015-03-14 14:56:58','2015-03-14 14:56:58',1,30000485,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(4646,'2015-03-14 14:56:58','2015-03-14 14:56:58',1,30002353,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(4647,'2015-03-14 14:56:58','2015-03-14 14:56:58',1,30003891,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(4648,'2015-03-14 14:56:58','2015-08-29 14:46:08',1,30000601,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0),(4649,'2015-03-14 14:56:58','2015-08-29 14:46:08',1,30002494,1,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(4650,'2015-03-14 14:56:58','2015-03-14 14:56:58',1,30000747,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(4651,'2015-03-14 14:56:58','2015-08-29 14:46:08',1,30002957,1,0,0,0,0,2,0,0,0,0,1,0,1,1,0,0,0,0,0,0,0,0,0,0),(4652,'2015-03-14 14:56:58','2015-03-14 14:56:58',1,30005156,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(4653,'2015-03-14 14:56:58','2015-03-14 14:56:58',1,30004436,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(4654,'2015-03-14 14:56:58','2015-03-14 14:56:58',1,30001788,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(4655,'2015-03-14 14:56:58','2015-08-29 14:46:08',1,30000575,0,3,1,3,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(4656,'2015-03-14 14:56:58','2015-08-29 14:46:08',1,30003717,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,3,0,0,1,0,0,0,0),(4657,'2015-03-14 14:56:58','2015-03-14 14:56:58',1,30004024,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(4658,'2015-03-14 14:56:58','2015-08-29 14:46:08',1,30001997,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0),(4659,'2015-03-14 14:56:58','2015-03-14 14:56:58',1,30000404,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(4660,'2015-03-14 14:56:58','2015-03-14 14:56:58',1,30000660,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(4661,'2015-03-14 14:56:58','2015-03-14 14:56:58',1,30000394,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(4662,'2015-03-14 14:56:58','2015-03-14 14:56:58',1,30004439,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(4663,'2015-03-14 14:56:58','2015-08-29 14:46:08',1,30002463,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0),(4664,'2015-03-14 14:56:58','2015-03-14 14:56:58',1,30000493,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(4665,'2015-03-14 14:56:58','2015-03-14 14:56:58',1,30003637,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(4666,'2015-03-14 14:56:58','2015-03-14 14:56:58',1,30000459,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(4667,'2015-03-14 14:56:58','2015-03-14 14:56:58',1,30000629,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(4668,'2015-03-14 14:56:58','2015-08-29 14:46:08',1,30001155,2,0,1,1,0,0,0,0,1,0,3,1,2,0,2,2,0,3,0,1,0,2,0,0),(4669,'2015-03-14 14:56:58','2015-03-14 14:56:58',1,30003240,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(4670,'2015-03-14 14:56:58','2015-03-14 14:56:58',1,30004594,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(4671,'2015-03-14 14:56:58','2015-03-14 14:56:58',1,30002951,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(4672,'2015-03-14 14:56:58','2015-03-14 14:56:58',1,30000765,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(4673,'2015-03-14 14:56:58','2015-03-14 14:56:58',1,30000878,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(4674,'2015-03-14 14:56:58','2015-03-14 14:56:58',1,30005131,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(4675,'2015-03-14 14:56:58','2015-08-29 14:46:08',1,30001865,0,0,0,0,0,0,0,0,0,2,0,1,1,0,0,0,0,0,0,0,2,0,0,0),(4676,'2015-03-14 14:56:58','2015-03-14 14:56:58',1,30003347,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(4677,'2015-03-14 14:56:58','2015-03-14 14:56:58',1,30000514,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(4678,'2015-03-14 14:56:58','2015-03-14 14:56:58',1,30004441,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(4679,'2015-03-14 14:56:58','2015-03-14 14:56:58',1,30001585,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(4680,'2015-03-14 14:56:58','2015-03-14 14:56:58',1,30000555,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(4681,'2015-03-14 14:56:58','2015-03-14 14:56:58',1,30000329,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(4682,'2015-03-14 14:56:58','2015-03-14 14:56:58',1,30003623,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(4683,'2015-03-14 14:56:58','2015-08-29 14:46:08',1,30000703,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0),(4684,'2015-03-14 14:56:58','2015-08-29 14:46:08',1,30001898,0,0,0,0,0,0,0,0,0,0,0,0,2,0,0,0,0,0,0,0,0,0,0,0),(4685,'2015-03-14 14:56:58','2015-08-29 14:46:08',1,30004834,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,1,0,0,0),(4686,'2015-03-14 14:56:58','2015-03-14 14:56:58',1,30000948,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(4687,'2015-03-14 14:56:58','2015-03-14 14:56:58',1,30002608,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(4688,'2015-03-14 14:56:58','2015-08-29 14:46:08',1,30003372,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0),(4689,'2015-03-14 14:56:58','2015-03-14 14:56:58',1,30005126,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(4690,'2015-03-14 14:56:58','2015-03-14 14:56:58',1,30003663,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(4691,'2015-03-14 14:56:58','2015-08-29 14:46:08',1,30000210,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(4692,'2015-03-14 14:56:58','2015-03-14 14:56:58',1,30001927,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(4693,'2015-03-14 14:56:58','2015-03-14 14:56:58',1,30004074,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(4694,'2015-03-14 14:56:58','2015-08-29 14:46:08',1,30000527,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0),(4695,'2015-03-14 14:56:58','2015-03-14 14:56:58',1,30002488,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(4696,'2015-03-14 14:56:58','2015-03-14 14:56:58',1,30000693,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(4697,'2015-03-14 14:56:58','2015-03-14 14:56:58',1,30004202,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(4698,'2015-03-14 14:56:58','2015-08-29 14:46:08',1,30002164,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0),(4699,'2015-03-14 14:56:58','2015-03-14 14:56:58',1,30000427,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(4700,'2015-03-14 14:56:58','2015-03-14 14:56:58',1,30000644,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(4701,'2015-03-14 14:56:58','2015-03-14 14:56:58',1,30003227,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(4702,'2015-03-14 14:56:58','2015-03-14 14:56:58',1,30002166,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(4703,'2015-03-14 14:56:58','2015-03-14 14:56:58',1,30000419,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(4704,'2015-03-14 14:56:58','2015-03-14 14:56:58',1,30004685,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(4705,'2015-03-14 14:56:58','2015-08-29 14:46:08',1,30002991,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0),(4706,'2015-03-14 14:56:58','2015-03-14 14:56:58',1,30001797,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(4707,'2015-03-14 14:56:58','2015-08-29 14:46:08',1,30002101,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0),(4708,'2015-03-14 14:56:58','2015-03-14 14:56:58',1,30004807,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(4709,'2015-03-14 14:56:58','2015-08-29 14:46:08',1,30004091,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(4710,'2015-03-14 14:56:58','2015-08-29 14:46:08',1,30000118,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(4711,'2015-03-14 14:56:58','2015-03-14 14:56:58',1,30002361,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(4712,'2015-03-14 14:56:58','2015-03-14 14:56:58',1,30004602,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(4713,'2015-03-14 14:56:58','2015-03-14 14:56:58',1,30004349,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(4714,'2015-03-14 14:56:58','2015-03-14 14:56:58',1,30004463,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(4715,'2015-03-14 14:56:58','2015-03-14 14:56:58',1,30001465,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(4716,'2015-03-14 14:56:58','2015-08-29 14:46:08',1,30000114,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0),(4717,'2015-03-14 14:56:58','2015-08-29 14:46:08',1,30002473,0,0,0,0,0,0,0,0,0,0,0,0,2,0,1,2,0,0,0,1,0,0,1,0),(4718,'2015-03-14 14:56:58','2015-03-14 14:56:58',1,30001813,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(4719,'2015-03-14 14:56:58','2015-03-14 14:56:58',1,30001618,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(4720,'2015-03-14 14:56:58','2015-03-14 14:56:58',1,30002024,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(4721,'2015-03-14 14:56:58','2015-03-14 14:56:58',1,30001244,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(4722,'2015-03-14 14:56:58','2015-03-14 14:56:58',1,30002209,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(4723,'2015-03-14 14:56:58','2015-03-14 14:56:58',1,30045321,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(4724,'2015-03-14 14:56:58','2015-03-14 14:56:58',1,30000201,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(4725,'2015-03-14 14:56:58','2015-08-29 14:46:08',1,30000997,0,0,2,0,0,0,0,1,0,0,0,0,0,1,1,0,0,0,0,0,0,0,0,0),(4726,'2015-03-14 14:56:58','2015-08-29 14:46:08',1,30004404,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,1,0,0),(4727,'2015-03-14 14:56:58','2015-03-14 14:56:58',1,30000819,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(4728,'2015-03-14 14:56:58','2015-08-29 14:46:08',1,30004245,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0),(4729,'2015-03-14 14:56:58','2015-08-29 14:46:08',1,30002825,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0),(4730,'2015-03-14 14:56:58','2015-08-29 14:46:08',1,30002768,2,2,11,3,2,4,1,5,0,0,0,1,2,4,5,2,2,0,0,2,2,0,1,0),(4731,'2015-03-14 14:56:58','2015-03-14 14:56:58',1,30002956,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(4732,'2015-03-14 14:56:58','2015-08-29 14:46:08',1,30001368,0,0,0,0,0,0,0,1,2,0,0,0,1,1,0,0,0,0,0,1,0,0,0,0),(4733,'2015-03-14 14:56:58','2015-08-29 14:46:08',1,30000197,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,1,1,0,0,0,0),(4734,'2015-03-14 14:56:58','2015-03-14 14:56:58',1,30004922,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(4735,'2015-03-14 14:56:58','2015-03-14 14:56:58',1,30001821,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(4736,'2015-03-14 14:56:58','2015-08-29 14:46:08',1,30002503,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(4737,'2015-03-14 14:56:58','2015-03-14 14:56:58',1,30001432,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(4738,'2015-03-14 14:56:58','2015-03-14 14:56:58',1,30004779,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(4739,'2015-03-14 14:56:58','2015-08-29 14:46:08',1,30001854,0,1,2,0,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,2,0),(4740,'2015-03-14 14:56:58','2015-03-14 14:56:58',1,30003352,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(4741,'2015-03-14 14:56:58','2015-08-29 14:46:08',1,30002504,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(4742,'2015-03-14 14:56:58','2015-03-14 14:56:58',1,30003235,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(4743,'2015-03-14 14:56:58','2015-03-14 14:56:58',1,30000229,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(4744,'2015-03-14 14:56:58','2015-08-29 14:46:08',1,30004706,0,1,1,0,0,0,0,3,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(4745,'2015-03-14 14:56:58','2015-03-14 14:56:58',1,30001735,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(4746,'2015-03-14 14:56:58','2015-08-29 14:46:08',1,30000101,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,0,0,0,0),(4747,'2015-03-14 14:56:58','2015-03-14 14:56:58',1,30002047,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(4748,'2015-03-14 14:56:58','2015-08-29 14:46:08',1,30002083,0,0,1,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,1,0,0,0,0),(4749,'2015-03-14 14:56:58','2015-08-29 14:46:08',1,30030141,0,0,0,0,0,0,0,0,1,0,0,0,0,1,1,0,0,0,0,0,0,0,0,0),(4750,'2015-03-14 14:56:58','2015-03-14 14:56:58',1,30001875,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(4751,'2015-03-14 14:56:58','2015-03-14 14:56:58',1,30002824,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(4752,'2015-03-14 14:56:58','2015-08-29 14:46:08',1,30002955,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0),(4753,'2015-03-14 14:56:58','2015-03-14 14:56:58',1,30002610,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(4754,'2015-03-14 14:56:58','2015-03-14 14:56:58',1,30000177,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(4755,'2015-03-14 14:56:58','2015-08-29 14:46:08',1,30003005,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(4756,'2015-03-14 14:56:58','2015-03-14 14:56:58',1,30001899,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(4757,'2015-03-14 14:56:58','2015-03-14 14:56:58',1,30000313,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(4758,'2015-03-14 14:56:58','2015-08-29 14:46:08',1,30001234,0,0,0,0,0,1,0,0,0,1,1,4,0,1,1,0,0,0,0,1,0,0,0,0),(4759,'2015-03-14 14:56:58','2015-03-14 14:56:58',1,30003004,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(4760,'2015-03-14 14:56:58','2015-08-29 14:46:08',1,30003298,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0),(4761,'2015-03-14 14:56:58','2015-08-29 14:46:08',1,30000558,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0),(4762,'2015-03-14 14:56:58','2015-03-14 14:56:58',1,30000911,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(4763,'2015-03-14 14:56:58','2015-08-29 14:46:08',1,30000858,0,0,0,0,0,0,0,0,2,1,1,1,0,1,1,0,1,0,0,0,0,0,0,0),(4764,'2015-03-14 14:56:58','2015-03-14 14:56:58',1,30000184,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(4765,'2015-03-14 14:56:58','2015-08-29 14:46:08',1,30001409,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,1,0,0,0),(4766,'2015-03-14 14:56:58','2015-03-14 14:56:58',1,30000282,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(4767,'2015-03-14 14:56:58','2015-03-14 14:56:58',1,30003481,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(4768,'2015-03-14 14:56:58','2015-08-29 14:46:08',1,30002707,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0),(4769,'2015-03-14 14:56:58','2015-03-14 14:56:58',1,30002413,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(4770,'2015-03-14 14:56:58','2015-03-14 14:56:58',1,30000965,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(4771,'2015-03-14 14:56:58','2015-03-14 14:56:58',1,30001679,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(4772,'2015-03-14 14:56:58','2015-08-29 14:46:08',1,30000129,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,0,0,0,0),(4773,'2015-03-14 14:56:58','2015-03-14 14:56:58',1,30001816,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(4774,'2015-03-14 14:56:58','2015-08-29 14:46:08',1,30004495,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(4775,'2015-03-14 14:56:58','2015-03-14 14:56:58',1,30001366,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(4776,'2015-03-14 14:56:58','2015-03-14 14:56:58',1,30002814,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(4777,'2015-03-14 14:56:58','2015-08-29 14:46:08',1,30000151,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0),(4778,'2015-03-14 14:56:58','2015-03-14 14:56:58',1,30001634,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(4779,'2015-03-14 14:56:58','2015-08-29 14:46:08',1,30003799,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0),(4780,'2015-03-14 14:56:58','2015-08-29 14:46:08',1,30003043,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0),(4781,'2015-03-14 14:56:58','2015-08-29 14:46:08',1,30000037,0,0,0,0,0,0,0,0,2,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0),(4782,'2015-03-14 14:56:58','2015-03-14 14:56:58',1,30002998,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(4783,'2015-03-14 14:56:58','2015-03-14 14:56:58',1,30003901,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(4784,'2015-03-14 14:56:58','2015-08-29 14:46:08',1,30001208,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0),(4785,'2015-03-14 14:56:58','2015-03-14 14:56:58',1,30004310,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(4786,'2015-03-14 14:56:58','2015-03-14 14:56:58',1,30003955,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(4787,'2015-03-14 14:56:58','2015-08-29 14:46:08',1,30004938,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,1,0,0,0,1,0,0),(4788,'2015-03-14 14:56:58','2015-08-29 14:46:08',1,30001966,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(4789,'2015-03-14 14:56:58','2015-03-14 14:56:58',1,30040141,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(4790,'2015-03-14 14:56:58','2015-03-14 14:56:58',1,30002070,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(4791,'2015-03-14 14:56:58','2015-08-29 14:46:08',1,30000139,0,1,0,1,1,0,0,0,1,0,0,0,0,1,0,1,1,0,0,0,0,1,0,0),(4792,'2015-03-14 14:56:58','2015-03-14 14:56:58',1,30003417,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(4793,'2015-03-14 14:56:58','2015-08-29 14:46:08',1,30002755,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,1,0,1,0),(4794,'2015-03-14 14:56:58','2015-03-14 14:56:58',1,30000382,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(4795,'2015-03-14 14:56:58','2015-03-14 14:56:58',1,30000068,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(4796,'2015-03-14 14:56:58','2015-08-29 14:46:08',1,30002987,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0),(4797,'2015-03-14 14:56:58','2015-03-14 14:56:58',1,30042505,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(4798,'2015-03-14 14:56:58','2015-03-14 14:56:58',1,30004151,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(4799,'2015-03-14 14:56:58','2015-08-29 14:46:08',1,30000921,0,0,1,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(4800,'2015-03-14 14:56:58','2015-08-29 14:46:08',1,30004468,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0),(4801,'2015-03-14 14:56:58','2015-03-14 14:56:58',1,30003306,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(4802,'2015-03-14 14:56:58','2015-08-29 14:46:08',1,30001045,0,1,0,0,0,0,0,0,0,0,0,3,1,3,1,2,1,0,3,7,4,3,1,0),(4803,'2015-03-14 14:56:58','2015-08-29 14:46:08',1,30002049,1,0,1,1,1,0,0,0,3,0,3,1,7,3,0,0,0,0,0,0,0,0,1,0),(4804,'2015-03-14 14:56:58','2015-03-14 14:56:58',1,30045326,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(4805,'2015-03-14 14:56:58','2015-08-29 14:46:08',1,30002759,0,0,0,1,0,1,1,1,1,0,1,0,0,1,1,0,0,0,1,2,0,0,0,0),(4806,'2015-03-14 14:56:58','2015-08-29 14:46:08',1,30003077,0,2,0,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,1,2,0,0,0,0),(4807,'2015-03-14 14:56:58','2015-08-29 14:46:08',1,30003988,0,0,0,0,0,0,0,1,0,0,0,0,0,1,1,0,0,0,0,0,0,0,0,0),(4808,'2015-03-14 14:56:58','2015-03-14 14:56:58',1,30001152,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(4809,'2015-03-14 14:56:58','2015-08-29 14:46:08',1,30001003,0,0,0,0,0,0,0,0,0,0,0,1,0,3,3,0,0,0,0,0,1,0,0,0),(4810,'2015-03-14 14:56:58','2015-03-14 14:56:58',1,30000549,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(4811,'2015-03-14 14:56:58','2015-03-14 14:56:58',1,30001121,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(4812,'2015-03-14 14:56:58','2015-03-14 14:56:58',1,30005150,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(4813,'2015-03-14 14:56:58','2015-03-14 14:56:58',1,30003981,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(4814,'2015-03-14 14:56:58','2015-03-14 14:56:58',1,30000561,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(4815,'2015-03-14 14:56:58','2015-03-14 14:56:58',1,30003536,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(4816,'2015-03-14 14:56:58','2015-08-29 14:46:08',1,30000040,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,0,0,0),(4817,'2015-03-14 14:56:58','2015-03-14 14:56:58',1,30000930,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(4818,'2015-03-14 14:56:58','2015-03-14 14:56:58',1,30005097,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(4819,'2015-03-14 14:56:58','2015-03-14 14:56:58',1,30003965,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(4820,'2015-03-14 14:56:58','2015-08-29 14:46:08',1,30001162,0,0,0,0,0,0,1,0,22,9,9,2,18,3,5,4,3,2,18,19,46,2,1,0),(4821,'2015-03-14 14:56:58','2015-03-14 14:56:58',1,30000434,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(4822,'2015-03-14 14:56:58','2015-03-14 14:56:58',1,30000393,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(4823,'2015-03-14 14:56:58','2015-03-14 14:56:58',1,30000732,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(4824,'2015-03-14 14:56:58','2015-08-29 14:46:08',1,30000988,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(4825,'2015-03-14 14:56:58','2015-03-14 14:56:58',1,30001008,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(4826,'2015-03-14 14:56:58','2015-03-14 14:56:58',1,30001143,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(4827,'2015-03-14 14:56:58','2015-03-14 14:56:58',1,30000674,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(4828,'2015-03-14 14:56:58','2015-08-29 14:46:08',1,30003672,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0),(4829,'2015-03-14 14:56:58','2015-08-29 14:46:08',1,30003953,0,0,1,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(4830,'2015-03-14 14:56:58','2015-08-29 14:46:08',1,30002437,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0),(4831,'2015-03-14 14:56:58','2015-08-29 14:46:08',1,30000264,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0),(4832,'2015-03-14 14:56:58','2015-03-14 14:56:58',1,30000248,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(4833,'2015-03-14 14:56:58','2015-08-29 14:46:08',1,30002379,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(4834,'2015-03-14 14:56:58','2015-03-14 14:56:58',1,30000755,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(4835,'2015-03-14 14:56:58','2015-03-14 14:56:58',1,30000694,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(4836,'2015-03-14 14:56:58','2015-03-14 14:56:58',1,30001787,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(4837,'2015-03-14 14:56:58','2015-03-14 14:56:58',1,30004406,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(4838,'2015-03-14 14:56:58','2015-03-14 14:56:58',1,30003226,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(4839,'2015-03-14 14:56:58','2015-03-14 14:56:58',1,30003130,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(4840,'2015-03-14 14:56:58','2015-08-29 14:46:08',1,30003194,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(4841,'2015-03-14 14:56:58','2015-08-29 14:46:08',1,30000849,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(4842,'2015-03-14 14:56:58','2015-03-14 14:56:58',1,30001892,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(4843,'2015-03-14 14:56:58','2015-03-14 14:56:58',1,30003143,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(4844,'2015-03-14 14:56:58','2015-03-14 14:56:58',1,30002862,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(4845,'2015-03-14 14:56:58','2015-08-29 14:46:08',1,30001222,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0),(4846,'2015-03-14 14:56:58','2015-08-29 14:46:08',1,30001084,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(4847,'2015-03-14 14:56:58','2015-03-14 14:56:58',1,30001301,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(4848,'2015-03-14 14:56:58','2015-03-14 14:56:58',1,30000375,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(4849,'2015-03-14 14:56:58','2015-03-14 14:56:58',1,30003294,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(4850,'2015-03-14 14:56:58','2015-03-14 14:56:58',1,30004644,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(4851,'2015-03-14 14:56:58','2015-03-14 14:56:58',1,30000888,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(4852,'2015-03-14 14:56:58','2015-08-29 14:46:08',1,30003666,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(4853,'2015-03-14 14:56:58','2015-08-29 14:46:08',1,30001015,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(4854,'2015-03-14 14:56:58','2015-03-14 14:56:58',1,30000603,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(4855,'2015-03-14 14:56:58','2015-03-14 14:56:58',1,30000984,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(4856,'2015-03-14 14:56:58','2015-03-14 14:56:58',1,30004329,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(4857,'2015-03-14 14:56:58','2015-03-14 14:56:58',1,30001175,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(4858,'2015-03-14 14:56:58','2015-03-14 14:56:58',1,30001383,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(4859,'2015-03-14 14:56:58','2015-03-14 14:56:58',1,30000123,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(4860,'2015-03-14 14:56:58','2015-08-29 14:46:08',1,30045331,1,0,0,0,0,0,0,0,0,1,1,0,0,2,1,1,0,0,0,0,0,0,1,0),(4861,'2015-03-14 14:56:58','2015-03-14 14:56:58',1,30005306,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(4862,'2015-03-14 14:56:58','2015-03-14 14:56:58',1,30004196,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(4863,'2015-03-14 14:56:58','2015-08-29 14:46:08',1,30000170,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(4864,'2015-03-14 14:56:58','2015-03-14 14:56:58',1,30004289,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(4865,'2015-03-14 14:56:58','2015-03-14 14:56:58',1,30005029,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(4866,'2015-03-14 14:56:58','2015-08-29 14:46:08',1,30003483,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0),(4867,'2015-03-14 14:56:58','2015-08-29 14:46:08',1,30004230,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,1,0,0,0,0,0,0),(4868,'2015-03-14 14:56:58','2015-08-29 14:46:08',1,30002538,0,0,0,0,0,0,2,2,0,3,2,0,0,3,1,0,0,1,0,1,1,0,2,0),(4869,'2015-03-14 14:56:58','2015-03-14 14:56:58',1,30002400,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(4870,'2015-03-14 14:56:58','2015-08-29 14:46:08',1,30000190,0,0,0,0,0,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(4871,'2015-03-14 14:56:58','2015-08-29 14:46:08',1,30002230,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0),(4872,'2015-03-14 14:56:58','2015-08-29 14:46:08',1,30000173,0,0,0,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(4873,'2015-03-14 14:56:58','2015-03-14 14:56:58',1,30003027,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(4874,'2015-03-14 14:56:58','2015-03-14 14:56:58',1,30005318,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(4875,'2015-03-14 14:56:58','2015-08-29 14:46:08',1,30004547,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(4876,'2015-03-14 14:56:58','2015-08-29 14:46:08',1,30000806,0,1,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0),(4877,'2015-03-14 14:56:58','2015-03-14 14:56:58',1,30000842,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(4878,'2015-03-14 14:56:58','2015-03-14 14:56:58',1,30001824,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(4879,'2015-03-14 14:56:58','2015-08-29 14:46:08',1,30005195,1,0,0,0,0,1,0,0,0,0,0,0,0,1,1,1,0,0,0,0,0,0,0,0),(4880,'2015-03-14 14:56:58','2015-08-29 14:46:08',1,30003589,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(4881,'2015-03-14 14:56:58','2015-08-29 14:46:08',1,30004246,1,0,0,0,0,0,0,0,0,0,0,0,0,2,0,0,5,0,0,0,0,0,0,0),(4882,'2015-03-14 14:56:58','2015-03-14 14:56:58',1,30001362,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(4883,'2015-03-14 14:56:58','2015-08-29 14:46:08',1,30001380,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,1,0),(4884,'2015-03-14 14:56:58','2015-03-14 14:56:58',1,30002798,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(4885,'2015-03-14 14:56:58','2015-03-14 14:56:58',1,30004220,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(4886,'2015-03-14 14:56:58','2015-08-29 14:46:08',1,30003820,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0),(4887,'2015-03-14 14:56:58','2015-08-29 14:46:08',1,30003572,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(4888,'2015-03-14 14:56:58','2015-08-29 14:46:08',1,30003790,0,1,0,0,1,0,0,0,0,0,0,0,0,0,0,1,0,0,0,1,0,1,0,0),(4889,'2015-03-14 14:56:58','2015-08-29 14:46:08',1,30003899,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(4890,'2015-03-14 14:56:58','2015-03-14 14:56:58',1,30004433,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(4891,'2015-03-14 14:56:58','2015-08-29 14:46:08',1,30002904,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0),(4892,'2015-03-14 14:56:58','2015-08-29 14:46:08',1,30001303,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,0,1,0,1,0,0),(4893,'2015-03-14 14:56:58','2015-03-14 14:56:58',1,30001351,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(4894,'2015-03-14 14:56:58','2015-03-14 14:56:58',1,30001794,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(4895,'2015-03-14 14:56:58','2015-03-14 14:56:58',1,30000295,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(4896,'2015-03-14 14:56:58','2015-08-29 14:46:08',1,30004997,0,0,0,1,1,2,2,5,1,1,1,0,0,0,0,1,1,0,0,1,1,0,0,0),(4897,'2015-03-14 14:56:58','2015-03-14 14:56:58',1,30000346,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(4898,'2015-03-14 14:56:58','2015-03-14 14:56:58',1,30003816,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(4899,'2015-03-14 14:56:58','2015-08-29 14:46:08',1,30045309,0,0,0,0,0,1,0,0,0,0,0,1,0,0,0,0,1,0,0,0,1,0,0,0),(4900,'2015-03-14 14:56:58','2015-08-29 14:46:08',1,30004993,2,2,2,3,2,1,1,0,7,3,3,0,1,1,3,4,1,4,1,0,14,5,1,0),(4901,'2015-03-14 14:56:58','2015-03-14 14:56:58',1,30003390,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(4902,'2015-03-14 14:56:58','2015-08-29 14:46:08',1,30002088,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,1,2,0,0),(4903,'2015-03-14 14:56:58','2015-03-14 14:56:58',1,30004991,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(4904,'2015-03-14 14:56:58','2015-03-14 14:56:58',1,30002731,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(4905,'2015-03-14 14:56:58','2015-03-14 14:56:58',1,30003810,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(4906,'2015-03-14 14:56:58','2015-03-14 14:56:58',1,30002487,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(4907,'2015-03-14 14:56:58','2015-03-14 14:56:58',1,30004551,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(4908,'2015-03-14 14:56:58','2015-03-14 14:56:58',1,30000625,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(4909,'2015-03-14 14:56:58','2015-03-14 14:56:58',1,30001566,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(4910,'2015-03-14 14:56:58','2015-08-29 14:46:08',1,30003749,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(4911,'2015-03-14 14:56:58','2015-08-29 14:46:08',1,30000927,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0),(4912,'2015-03-14 14:56:58','2015-08-29 14:46:08',1,30004315,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(4913,'2015-03-14 14:56:58','2015-03-14 14:56:58',1,30003116,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(4914,'2015-03-14 14:56:58','2015-08-29 14:46:08',1,30003339,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0),(4915,'2015-03-14 14:56:58','2015-08-29 14:46:08',1,30003836,0,2,0,0,0,0,0,0,0,0,0,0,2,3,1,0,0,1,0,1,0,0,0,0),(4916,'2015-03-14 14:56:58','2015-03-14 14:56:58',1,30000420,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(4917,'2015-03-14 14:56:58','2015-03-14 14:56:58',1,30004453,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(4918,'2015-03-14 14:56:58','2015-03-14 14:56:58',1,30001925,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(4919,'2015-03-14 14:56:58','2015-08-29 14:46:08',1,30001019,0,0,1,1,1,0,0,0,1,0,0,0,2,1,1,0,0,1,2,1,0,0,0,0),(4920,'2015-03-14 14:56:58','2015-03-14 14:56:58',1,30000322,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(4921,'2015-03-14 14:56:58','2015-03-14 14:56:58',1,30003399,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(4922,'2015-03-14 14:56:58','2015-03-14 14:56:58',1,30000193,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(4923,'2015-03-14 14:56:58','2015-08-29 14:46:08',1,30002948,0,0,0,1,1,0,0,1,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0),(4924,'2015-03-14 14:56:58','2015-08-29 14:46:08',1,30004943,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(4925,'2015-03-14 14:56:58','2015-03-14 14:56:58',1,30004931,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(4926,'2015-03-14 14:56:58','2015-03-14 14:56:58',1,30003175,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(4927,'2015-03-14 14:56:58','2015-03-14 14:56:58',1,30001506,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(4928,'2015-03-14 14:56:58','2015-08-29 14:46:08',1,30003685,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(4929,'2015-03-14 14:56:58','2015-08-29 14:46:08',1,30003361,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(4930,'2015-03-14 14:56:58','2015-03-14 14:56:58',1,30002448,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(4931,'2015-03-14 14:56:58','2015-03-14 14:56:58',1,30003959,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(4932,'2015-03-14 14:56:58','2015-03-14 14:56:58',1,30001836,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(4933,'2015-03-14 14:56:58','2015-03-14 14:56:58',1,30003129,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(4934,'2015-03-14 14:56:58','2015-08-29 14:46:08',1,30004890,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0),(4935,'2015-03-14 14:56:58','2015-03-14 14:56:58',1,30002573,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(4936,'2015-03-14 14:56:58','2015-08-29 14:46:08',1,30001443,0,0,1,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(4937,'2015-03-14 14:56:58','2015-03-14 14:56:58',1,30003309,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(4938,'2015-03-14 14:56:58','2015-08-29 14:46:08',1,30001073,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0),(4939,'2015-03-14 14:56:58','2015-03-14 14:56:58',1,30001327,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(4940,'2015-03-14 14:56:58','2015-03-14 14:56:58',1,30004457,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(4941,'2015-03-14 14:56:58','2015-03-14 14:56:58',1,30001054,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(4942,'2015-03-14 14:56:58','2015-08-29 14:46:08',1,30005173,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(4943,'2015-03-14 14:56:58','2015-03-14 14:56:58',1,30001541,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(4944,'2015-03-14 14:56:58','2015-03-14 14:56:58',1,30000924,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(4945,'2015-03-14 14:56:58','2015-03-14 14:56:58',1,30004227,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(4946,'2015-03-14 14:56:58','2015-08-29 14:46:08',1,30003098,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,2,0,0,1,1,0,0,0),(4947,'2015-03-14 14:56:58','2015-08-29 14:46:08',1,30002655,0,0,0,0,0,0,0,0,0,0,0,0,1,1,1,0,0,0,0,0,0,0,0,0),(4948,'2015-03-14 14:56:58','2015-08-29 14:46:08',1,30004936,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(4949,'2015-03-14 14:56:58','2015-03-14 14:56:58',1,30001477,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(4950,'2015-03-14 14:56:58','2015-03-14 14:56:58',1,30003247,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(4951,'2015-03-14 14:56:58','2015-08-29 14:46:08',1,30004822,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(4952,'2015-03-14 14:56:58','2015-03-14 14:56:58',1,30002497,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(4953,'2015-03-14 14:56:58','2015-08-29 14:46:08',1,30004392,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0),(4954,'2015-03-14 14:56:58','2015-03-14 14:56:58',1,30004055,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(4955,'2015-03-14 14:56:58','2015-03-14 14:56:58',1,30000751,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(4956,'2015-03-14 14:56:58','2015-03-14 14:56:58',1,30000345,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(4957,'2015-03-14 14:56:58','2015-03-14 14:56:58',1,30005177,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(4958,'2015-03-14 14:56:58','2015-03-14 14:56:58',1,30002147,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(4959,'2015-03-14 14:56:58','2015-03-14 14:56:58',1,30004005,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(4960,'2015-03-14 14:56:58','2015-08-29 14:46:08',1,30003968,0,2,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,1,0,0,0,0),(4961,'2015-03-14 14:56:58','2015-03-14 14:56:58',1,30004753,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(4962,'2015-03-14 14:56:58','2015-03-14 14:56:58',1,30005142,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(4963,'2015-03-14 14:56:58','2015-03-14 14:56:58',1,30000830,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(4964,'2015-03-14 14:56:58','2015-08-29 14:46:08',1,30001250,0,0,0,0,0,0,0,0,1,7,6,0,0,1,2,1,0,0,0,2,1,0,0,0),(4965,'2015-03-14 14:56:58','2015-03-14 14:56:58',1,30001939,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(4966,'2015-03-14 14:56:58','2015-03-14 14:56:58',1,30000532,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(4967,'2015-03-14 14:56:58','2015-03-14 14:56:58',1,30000932,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(4968,'2015-03-14 14:56:58','2015-03-14 14:56:58',1,30000893,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(4969,'2015-03-14 14:56:58','2015-08-29 14:46:08',1,30001897,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,1,0,0),(4970,'2015-03-14 14:56:58','2015-03-14 14:56:58',1,30001516,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(4971,'2015-03-14 14:56:58','2015-08-29 14:46:08',1,30001105,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0),(4972,'2015-03-14 14:56:58','2015-03-14 14:56:58',1,30004537,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(4973,'2015-03-14 14:56:58','2015-03-14 14:56:58',1,30003660,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(4974,'2015-03-14 14:56:58','2015-03-14 14:56:58',1,30004538,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(4975,'2015-03-14 14:56:58','2015-03-14 14:56:58',1,30000617,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(4976,'2015-03-14 14:56:58','2015-03-14 14:56:58',1,30001311,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(4977,'2015-03-14 14:56:58','2015-03-14 14:56:58',1,30000367,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(4978,'2015-03-14 14:56:58','2015-03-14 14:56:58',1,30000635,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(4979,'2015-03-14 14:56:58','2015-08-29 14:46:08',1,30002172,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(4980,'2015-03-14 14:56:58','2015-03-14 14:56:58',1,30001095,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(4981,'2015-03-14 14:56:58','2015-03-14 14:56:58',1,30001522,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(4982,'2015-03-14 14:56:58','2015-03-14 14:56:58',1,30003205,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(4983,'2015-03-14 14:56:58','2015-03-14 14:56:58',1,30001502,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(4984,'2015-03-14 14:56:58','2015-03-14 14:56:58',1,30000521,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(4985,'2015-03-14 14:56:58','2015-03-14 14:56:58',1,30003983,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(4986,'2015-03-14 14:56:58','2015-08-29 14:46:08',1,30000894,1,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(4987,'2015-03-14 14:56:58','2015-03-14 14:56:58',1,30003622,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(4988,'2015-03-14 14:56:58','2015-08-29 14:46:08',1,30001179,0,0,0,0,0,0,0,0,2,2,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(4989,'2015-03-14 14:56:58','2015-03-14 14:56:58',1,30001748,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(4990,'2015-03-14 14:56:58','2015-03-14 14:56:58',1,30003102,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(4991,'2015-03-14 14:56:58','2015-03-14 14:56:58',1,30002787,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(4992,'2015-03-14 14:56:58','2015-08-29 14:46:08',1,30000191,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0),(4993,'2015-03-14 14:56:58','2015-08-29 14:46:08',1,30003553,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0),(4994,'2015-03-14 14:56:58','2015-08-29 14:46:08',1,30002790,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0),(4995,'2015-03-14 14:56:58','2015-03-14 14:56:58',1,30004803,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(4996,'2015-03-14 14:56:58','2015-03-14 14:56:58',1,30001872,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(4997,'2015-03-14 14:56:58','2015-08-29 14:46:08',1,30000238,0,0,0,1,1,0,0,0,0,0,0,0,1,0,0,0,1,0,0,0,1,0,0,0),(4998,'2015-03-14 14:56:58','2015-08-29 14:46:08',1,30001160,0,1,2,0,1,0,2,8,0,6,2,0,0,0,0,0,0,0,1,4,2,3,0,0),(4999,'2015-03-14 14:56:58','2015-03-14 14:56:58',1,30001493,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(5000,'2015-03-14 14:56:58','2015-08-29 14:46:08',1,30004847,0,0,0,0,0,0,0,0,1,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0),(5001,'2015-03-14 14:56:58','2015-03-14 14:56:58',1,30000972,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(5002,'2015-03-14 14:56:58','2015-03-14 14:56:58',1,30002415,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(5003,'2015-03-14 14:56:58','2015-08-29 14:46:08',1,30001878,0,1,0,0,0,0,0,0,0,0,0,1,0,1,1,0,0,0,0,0,0,0,0,0),(5004,'2015-03-14 14:56:58','2015-03-14 14:56:58',1,30003583,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(5005,'2015-03-14 14:56:58','2015-03-14 14:56:58',1,30000326,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(5006,'2015-03-14 14:56:58','2015-03-14 14:56:58',1,30000746,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(5007,'2015-03-14 14:56:58','2015-08-29 14:46:08',1,30001247,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0),(5008,'2015-03-14 14:56:58','2015-03-14 14:56:58',1,30000725,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(5009,'2015-03-14 14:56:58','2015-03-14 14:56:58',1,30002629,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(5010,'2015-03-14 14:56:58','2015-03-14 14:56:58',1,30002429,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(5011,'2015-03-14 14:56:58','2015-08-29 14:46:08',1,30000871,0,0,2,1,1,1,0,0,0,0,0,0,2,1,1,0,0,0,0,0,0,0,0,0),(5012,'2015-03-14 14:56:58','2015-08-29 14:46:08',1,30001839,1,1,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(5013,'2015-03-14 14:56:58','2015-03-14 14:56:58',1,30000687,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(5014,'2015-03-14 14:56:58','2015-08-29 14:46:08',1,30001756,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,0,0,0,0),(5015,'2015-03-14 14:56:58','2015-03-14 14:56:58',1,30000206,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(5016,'2015-03-14 14:56:58','2015-03-14 14:56:58',1,30003422,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(5017,'2015-03-14 14:56:58','2015-03-14 14:56:58',1,30002554,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(5018,'2015-03-14 14:56:58','2015-08-29 14:46:08',1,30001595,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0),(5019,'2015-03-14 14:56:58','2015-08-29 14:46:08',1,30001207,0,0,0,0,0,0,0,1,4,1,1,0,2,0,0,0,0,1,1,0,0,1,1,0),(5020,'2015-03-14 14:56:58','2015-03-14 14:56:58',1,30001890,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(5021,'2015-03-14 14:56:58','2015-03-14 14:56:58',1,30001755,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(5022,'2015-03-14 14:56:58','2015-08-29 14:46:08',1,30001173,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0),(5023,'2015-03-14 14:56:58','2015-03-14 14:56:58',1,30000372,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(5024,'2015-03-14 14:56:58','2015-03-14 14:56:58',1,30001336,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(5025,'2015-03-14 14:56:58','2015-03-14 14:56:58',1,30001468,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(5026,'2015-03-14 14:56:58','2015-03-14 14:56:58',1,30000315,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(5027,'2015-03-14 14:56:58','2015-03-14 14:56:58',1,30004662,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(5028,'2015-03-14 14:56:58','2015-08-29 14:46:08',1,30002854,0,0,2,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0),(5029,'2015-03-14 14:56:58','2015-08-29 14:46:08',1,30001849,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0),(5030,'2015-03-14 14:56:58','2015-03-14 14:56:58',1,30004368,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(5031,'2015-03-14 14:56:58','2015-03-14 14:56:58',1,30000711,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(5032,'2015-03-14 14:56:58','2015-03-14 14:56:58',1,30000928,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(5033,'2015-03-14 14:56:58','2015-08-29 14:46:08',1,30002371,0,0,0,0,0,0,0,0,0,0,0,1,0,1,1,0,0,0,0,0,0,0,0,0),(5034,'2015-03-14 14:56:58','2015-08-29 14:46:08',1,30001194,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0),(5035,'2015-03-14 14:56:58','2015-08-29 14:46:08',1,30003696,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0),(5036,'2015-03-14 14:56:58','2015-03-14 14:56:58',1,30000602,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(5037,'2015-03-14 14:56:58','2015-03-14 14:56:58',1,30004864,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(5038,'2015-03-14 14:56:58','2015-03-14 14:56:58',1,30003166,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(5039,'2015-03-14 14:56:58','2015-03-14 14:56:58',1,30000957,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(5040,'2015-03-14 14:56:58','2015-08-29 14:46:08',1,30000433,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0),(5041,'2015-03-14 14:56:58','2015-03-14 14:56:58',1,30002348,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(5042,'2015-03-14 14:56:58','2015-03-14 14:56:58',1,30000187,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(5043,'2015-03-14 14:56:58','2015-03-14 14:56:58',1,30002939,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(5044,'2015-03-14 14:56:58','2015-08-29 14:46:08',1,30003638,0,0,0,0,0,0,0,3,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(5045,'2015-03-14 14:56:58','2015-08-29 14:46:08',1,30000698,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,0,0,0,0),(5046,'2015-03-14 14:56:58','2015-03-14 14:56:58',1,30001140,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(5047,'2015-03-14 14:56:58','2015-08-29 14:46:08',1,30003216,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(5048,'2015-03-14 14:56:58','2015-03-14 14:56:58',1,30001998,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(5049,'2015-03-14 14:56:58','2015-03-14 14:56:58',1,30003256,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(5050,'2015-03-14 14:56:58','2015-08-29 14:46:08',1,30003120,0,0,0,0,0,0,0,0,1,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0),(5051,'2015-03-14 14:56:58','2015-03-14 14:56:58',1,30000337,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(5052,'2015-03-14 14:56:58','2015-08-29 14:46:08',1,30004621,0,0,0,0,0,1,1,0,0,1,1,0,0,0,1,1,1,0,0,0,0,2,0,0),(5053,'2015-03-14 14:56:58','2015-03-14 14:56:58',1,30002126,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(5054,'2015-03-14 14:56:58','2015-08-29 14:46:08',1,30005016,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0),(5055,'2015-03-14 14:56:58','2015-08-29 14:46:08',1,30002622,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0),(5056,'2015-03-14 14:56:58','2015-03-14 14:56:58',1,30004840,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(5057,'2015-03-14 14:56:58','2015-03-14 14:56:58',1,30000517,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(5058,'2015-03-14 14:56:58','2015-03-14 14:56:58',1,30004915,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(5059,'2015-03-14 14:56:58','2015-03-14 14:56:58',1,30004173,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(5060,'2015-03-14 14:56:58','2015-08-29 14:46:08',1,30003744,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,0,0,1,0),(5061,'2015-03-14 14:56:58','2015-08-29 14:46:08',1,30002148,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0),(5062,'2015-03-14 14:56:58','2015-08-29 14:46:08',1,30003110,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0),(5063,'2015-03-14 14:56:58','2015-08-29 14:46:08',1,30001978,3,3,0,1,1,0,2,0,1,0,1,2,0,0,1,1,0,1,1,1,1,1,2,0),(5064,'2015-03-14 14:56:58','2015-03-14 14:56:58',1,30003245,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(5065,'2015-03-14 14:56:58','2015-08-29 14:46:08',1,30000541,0,0,0,0,0,0,0,0,1,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0),(5066,'2015-03-14 14:56:58','2015-03-14 14:56:58',1,30003274,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(5067,'2015-03-14 14:56:58','2015-03-14 14:56:58',1,30000882,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(5068,'2015-03-14 14:56:58','2015-03-14 14:56:58',1,30003259,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(5069,'2015-03-14 14:56:58','2015-03-14 14:56:58',1,30004907,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(5070,'2015-03-14 14:56:58','2015-03-14 14:56:58',1,30003173,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(5071,'2015-03-14 14:56:58','2015-08-29 14:46:08',1,30001594,0,0,0,0,0,0,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(5072,'2015-03-14 14:56:58','2015-03-14 14:56:58',1,30000339,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(5073,'2015-03-14 14:56:58','2015-08-29 14:46:08',1,30003278,0,2,0,0,0,0,0,0,1,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0),(5074,'2015-03-14 14:56:58','2015-03-14 14:56:58',1,30004075,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(5075,'2015-03-14 14:56:58','2015-03-14 14:56:58',1,30001059,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(5076,'2015-03-14 14:56:58','2015-03-14 14:56:58',1,30003288,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(5077,'2015-03-14 14:56:58','2015-08-29 14:46:08',1,30003770,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,1,0),(5078,'2015-03-14 14:56:58','2015-03-14 14:56:58',1,30002916,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(5079,'2015-03-14 14:56:58','2015-03-14 14:56:58',1,30003208,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(5080,'2015-03-14 14:56:58','2015-03-14 14:56:58',1,30000808,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(5081,'2015-03-14 14:56:58','2015-03-14 14:56:58',1,30000358,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(5082,'2015-03-14 14:56:58','2015-03-14 14:56:58',1,30000833,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(5083,'2015-03-14 14:56:58','2015-08-29 14:46:08',1,30001835,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0),(5084,'2015-03-14 14:56:58','2015-03-14 14:56:58',1,30001086,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(5085,'2015-03-14 14:56:58','2015-08-29 14:46:08',1,30000713,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(5086,'2015-03-14 14:56:58','2015-03-14 14:56:58',1,30002943,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(5087,'2015-03-14 14:56:58','2015-08-29 14:46:08',1,30003688,0,2,1,1,1,0,1,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0),(5088,'2015-03-14 14:56:58','2015-03-14 14:56:58',1,30001211,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(5089,'2015-03-14 14:56:58','2015-08-29 14:46:08',1,30001249,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0),(5090,'2015-03-14 14:56:58','2015-03-14 14:56:58',1,30000496,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(5091,'2015-03-14 14:56:58','2015-03-14 14:56:58',1,30000245,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(5092,'2015-03-14 14:56:58','2015-08-29 14:46:08',1,30001967,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(5093,'2015-03-14 14:56:58','2015-03-14 14:56:58',1,30004331,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(5094,'2015-03-14 14:56:58','2015-08-29 14:46:08',1,30000777,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0),(5095,'2015-03-14 14:56:58','2015-03-14 14:56:58',1,30003700,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(5096,'2015-03-14 14:56:58','2015-08-29 14:46:08',1,30001905,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(5097,'2015-03-14 14:56:58','2015-08-29 14:46:08',1,30004416,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,0,0,0),(5098,'2015-03-14 14:56:58','2015-08-29 14:46:08',1,30003773,0,0,0,0,0,1,0,0,2,0,0,0,16,0,0,0,0,1,0,0,0,0,0,0),(5099,'2015-03-14 14:56:58','2015-03-14 14:56:58',1,30001490,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(5100,'2015-03-14 14:56:58','2015-03-14 14:56:58',1,30004355,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(5101,'2015-03-14 14:56:58','2015-03-14 14:56:58',1,30000221,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(5102,'2015-03-14 14:56:58','2015-03-14 14:56:58',1,30000664,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(5103,'2015-03-14 14:56:58','2015-08-29 14:46:08',1,30000470,0,0,0,0,0,0,0,0,0,0,0,0,0,3,0,0,0,0,0,0,0,0,0,0),(5104,'2015-03-14 14:56:58','2015-03-14 14:56:58',1,30002319,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(5105,'2015-03-14 14:56:58','2015-03-14 14:56:58',1,30000417,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(5106,'2015-03-14 14:56:58','2015-08-29 14:46:08',1,30002946,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(5107,'2015-03-14 14:56:58','2015-08-29 14:46:08',1,30002897,0,0,0,0,0,0,0,0,0,0,0,0,10,0,0,0,0,0,0,1,0,0,0,0),(5108,'2015-03-14 14:56:58','2015-03-14 14:56:58',1,30001093,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(5109,'2015-03-14 14:56:58','2015-08-29 14:46:08',1,30002118,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,0,0,0,0,0,0,1,0),(5110,'2015-03-14 14:56:58','2015-08-29 14:46:08',1,30000889,1,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0),(5111,'2015-03-14 14:56:58','2015-03-14 14:56:58',1,30001778,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(5112,'2015-03-14 14:56:58','2015-03-14 14:56:58',1,30003224,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(5113,'2015-03-14 14:56:58','2015-08-29 14:46:08',1,30000604,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0),(5114,'2015-03-14 14:56:58','2015-03-14 14:56:58',1,30000293,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(5115,'2015-03-14 14:56:58','2015-08-29 14:46:08',1,30004552,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0),(5116,'2015-03-14 14:56:58','2015-03-14 14:56:58',1,30001958,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(5117,'2015-03-14 14:56:58','2015-03-14 14:56:58',1,30004069,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(5118,'2015-03-14 14:56:58','2015-03-14 14:56:58',1,30004875,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(5119,'2015-03-14 14:56:58','2015-08-29 14:46:08',1,30003731,0,1,0,0,0,0,0,8,0,4,0,0,1,0,0,2,0,2,2,9,0,0,0,0),(5120,'2015-03-14 14:56:58','2015-03-14 14:56:58',1,30001973,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(5121,'2015-03-14 14:56:58','2015-08-29 14:46:08',1,30001798,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0),(5122,'2015-03-14 14:56:58','2015-03-14 14:56:58',1,30004613,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(5123,'2015-03-14 14:56:58','2015-03-14 14:56:58',1,30000752,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(5124,'2015-03-14 14:56:58','2015-08-29 14:46:08',1,30003263,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(5125,'2015-03-14 14:56:58','2015-08-29 14:46:08',1,30003119,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0),(5126,'2015-03-14 14:56:58','2015-03-14 14:56:58',1,30004342,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(5127,'2015-03-14 14:56:58','2015-03-14 14:56:58',1,30003252,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(5128,'2015-03-14 14:56:58','2015-03-14 14:56:58',1,30001792,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(5129,'2015-03-14 14:56:58','2015-03-14 14:56:58',1,30004894,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(5130,'2015-03-14 14:56:58','2015-03-14 14:56:58',1,30001999,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(5131,'2015-03-14 14:56:58','2015-03-14 14:56:58',1,30000750,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(5132,'2015-03-14 14:56:58','2015-08-29 14:46:08',1,30000585,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0),(5133,'2015-03-14 14:56:58','2015-03-14 14:56:58',1,30001584,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(5134,'2015-03-14 14:56:58','2015-08-29 14:46:08',1,30002155,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0),(5135,'2015-03-14 14:56:58','2015-03-14 14:56:58',1,30003313,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(5136,'2015-03-14 14:56:58','2015-03-14 14:56:58',1,30000275,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(5137,'2015-03-14 14:56:58','2015-03-14 14:56:58',1,30000447,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(5138,'2015-03-14 14:56:58','2015-03-14 14:56:58',1,30001552,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(5139,'2015-03-14 14:56:58','2015-08-29 14:46:08',1,30004038,0,0,0,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(5140,'2015-03-14 14:56:58','2015-03-14 14:56:58',1,30002822,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(5141,'2015-03-14 14:56:58','2015-03-14 14:56:58',1,30001113,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(5142,'2015-03-14 14:56:58','2015-03-14 14:56:58',1,30001089,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(5143,'2015-03-14 14:56:58','2015-03-14 14:56:58',1,30005095,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(5144,'2015-03-14 14:56:58','2015-03-14 14:56:58',1,30004856,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(5145,'2015-03-14 14:56:58','2015-03-14 14:56:58',1,30001753,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(5146,'2015-03-14 14:56:58','2015-08-29 14:46:08',1,30004655,0,0,0,0,0,0,0,0,0,0,0,0,0,1,2,3,0,1,1,2,0,0,0,0),(5147,'2015-03-14 14:56:58','2015-03-14 14:56:58',1,30000237,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(5148,'2015-03-14 14:56:58','2015-08-29 14:46:08',1,30000678,0,0,0,0,0,1,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(5149,'2015-03-14 14:56:58','2015-03-14 14:56:58',1,30002122,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(5150,'2015-03-14 14:56:58','2015-08-29 14:46:08',1,30004320,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0),(5151,'2015-03-14 14:56:58','2015-03-14 14:56:58',1,30001325,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(5152,'2015-03-14 14:56:58','2015-08-29 14:46:08',1,30004382,0,0,0,0,0,0,0,0,0,0,0,1,1,1,0,0,0,0,0,0,0,0,0,0),(5153,'2015-03-14 14:56:58','2015-03-14 14:56:58',1,30000499,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(5154,'2015-03-14 14:56:58','2015-03-14 14:56:58',1,30002600,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(5155,'2015-03-14 14:56:58','2015-08-29 14:46:08',1,30001021,0,0,0,0,0,0,1,0,1,0,0,1,0,2,3,3,1,0,0,0,0,1,2,0),(5156,'2015-03-14 14:56:58','2015-03-14 14:56:58',1,30003228,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(5157,'2015-03-14 14:56:58','2015-03-14 14:56:58',1,30005175,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(5158,'2015-03-14 14:56:58','2015-08-29 14:46:08',1,30003326,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,5,0),(5159,'2015-03-14 14:56:58','2015-08-29 14:46:08',1,30004932,0,1,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(5160,'2015-03-14 14:56:58','2015-08-29 14:46:08',1,30004062,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,1,0,0,0,0),(5161,'2015-03-14 14:56:58','2015-03-14 14:56:58',1,30003237,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(5162,'2015-03-14 14:56:58','2015-03-14 14:56:58',1,30004396,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(5163,'2015-03-14 14:56:58','2015-03-14 14:56:58',1,30004568,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(5164,'2015-03-14 14:56:58','2015-08-29 14:46:08',1,30004665,0,0,0,0,0,0,0,0,0,0,1,4,1,0,6,33,1,0,3,8,0,0,0,0),(5165,'2015-03-14 14:56:58','2015-08-29 14:46:08',1,30001291,0,0,0,0,0,0,0,0,1,0,0,0,0,1,0,0,0,0,2,2,0,0,0,0),(5166,'2015-03-14 14:56:58','2015-03-14 14:56:58',1,30001932,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(5167,'2015-03-14 14:56:58','2015-03-14 14:56:58',1,30001498,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(5168,'2015-03-14 14:56:58','2015-03-14 14:56:58',1,30002597,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(5169,'2015-03-14 14:56:58','2015-03-14 14:56:58',1,30003207,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(5170,'2015-03-14 14:56:58','2015-03-14 14:56:58',1,30001829,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(5171,'2015-03-14 14:56:58','2015-03-14 14:56:58',1,30003265,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(5172,'2015-03-14 14:56:58','2015-03-14 14:56:58',1,30002044,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(5173,'2015-03-14 14:56:58','2015-08-29 14:46:08',1,30002169,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,1,1,0,0,0,0,0),(5174,'2015-03-14 14:56:58','2015-08-29 14:46:08',1,30004941,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,0,0,1,0),(5175,'2015-03-14 14:56:58','2015-03-14 14:56:58',1,30000958,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(5176,'2015-03-14 14:56:58','2015-03-14 14:56:58',1,30001031,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(5177,'2015-03-14 14:56:58','2015-03-14 14:56:58',1,30004859,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(5178,'2015-03-14 14:56:58','2015-03-14 14:56:58',1,30002162,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(5179,'2015-03-14 14:56:58','2015-03-14 14:56:58',1,30002586,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(5180,'2015-03-14 14:56:58','2015-03-14 14:56:58',1,30001039,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(5181,'2015-03-14 14:56:58','2015-08-29 14:46:08',1,30003726,0,1,0,1,1,6,0,1,2,0,1,0,2,2,0,0,0,4,1,1,2,0,0,0),(5182,'2015-03-14 14:56:58','2015-03-14 14:56:58',1,30004898,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(5183,'2015-03-14 14:56:58','2015-08-29 14:46:08',1,30002176,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0),(5184,'2015-03-14 14:56:58','2015-08-29 14:46:08',1,30004763,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0),(5185,'2015-03-14 14:56:58','2015-03-14 14:56:58',1,30004809,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(5186,'2015-03-14 14:56:58','2015-08-29 14:46:08',1,30001255,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0),(5187,'2015-03-14 14:56:58','2015-03-14 14:56:58',1,30000884,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(5188,'2015-03-14 14:56:58','2015-08-29 14:46:08',1,30004171,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0),(5189,'2015-03-14 14:56:58','2015-03-14 14:56:58',1,30000331,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(5190,'2015-03-14 14:56:58','2015-03-14 14:56:58',1,30001791,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(5191,'2015-03-14 14:56:58','2015-08-29 14:46:08',1,30001261,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,1,0,0,0,0),(5192,'2015-03-14 14:56:58','2015-03-14 14:56:58',1,30003342,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(5193,'2015-03-14 14:56:58','2015-08-29 14:46:08',1,30001108,0,0,1,0,0,0,0,0,3,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(5194,'2015-03-14 14:56:58','2015-03-14 14:56:58',1,30004428,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(5195,'2015-03-14 14:56:58','2015-03-14 14:56:58',1,30003651,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(5196,'2015-03-14 14:56:58','2015-08-29 14:46:08',1,30000306,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0),(5197,'2015-03-14 14:56:58','2015-08-29 14:46:08',1,30000220,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(5198,'2015-03-14 14:56:58','2015-08-29 14:46:08',1,30001846,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0),(5199,'2015-03-14 14:56:58','2015-03-14 14:56:58',1,30002109,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(5200,'2015-03-14 14:56:58','2015-03-14 14:56:58',1,30002037,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(5201,'2015-03-14 14:56:58','2015-03-14 14:56:58',1,30004456,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(5202,'2015-03-14 14:56:58','2015-03-14 14:56:58',1,30002115,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(5203,'2015-03-14 14:56:58','2015-03-14 14:56:58',1,30000918,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(5204,'2015-03-14 14:56:58','2015-03-14 14:56:58',1,30001570,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(5205,'2015-03-14 14:56:58','2015-03-14 14:56:58',1,30001546,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(5206,'2015-03-14 14:56:58','2015-03-14 14:56:58',1,30000729,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(5207,'2015-03-14 14:56:58','2015-08-29 14:46:08',1,30004785,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0),(5208,'2015-03-14 14:56:58','2015-03-14 14:56:58',1,30000308,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(5209,'2015-03-14 14:56:58','2015-03-14 14:56:58',1,30001058,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(5210,'2015-03-14 14:56:58','2015-03-14 14:56:58',1,30001262,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(5211,'2015-03-14 14:56:58','2015-08-29 14:46:08',1,30000947,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,1,0,0,0,0,0,0,0,0),(5212,'2015-03-14 14:56:58','2015-03-14 14:56:58',1,30001559,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(5213,'2015-03-14 14:56:58','2015-08-29 14:46:08',1,30002466,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,0,0,0,0,0,0,0),(5214,'2015-03-14 14:56:58','2015-08-29 14:46:08',1,30003734,0,0,0,0,0,0,0,0,0,0,0,0,0,2,2,0,0,0,0,0,0,0,0,0),(5215,'2015-03-14 14:56:58','2015-08-29 14:46:08',1,30003307,0,0,0,0,0,1,0,0,0,2,1,0,1,0,0,0,2,1,0,1,3,1,1,0),(5216,'2015-03-14 14:56:58','2015-08-29 14:46:08',1,30002902,0,0,0,0,0,4,0,0,6,7,10,6,21,5,1,2,1,6,0,0,14,1,1,0),(5217,'2015-03-14 14:56:58','2015-03-14 14:56:58',1,30000080,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(5218,'2015-03-14 14:56:58','2015-08-29 14:46:08',1,30004286,0,0,0,0,0,0,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(5219,'2015-03-14 14:56:58','2015-03-14 14:56:58',1,30002592,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(5220,'2015-03-14 14:56:58','2015-03-14 14:56:58',1,30001701,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(5221,'2015-03-14 14:56:58','2015-03-14 14:56:58',1,30003158,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(5222,'2015-03-14 14:56:58','2015-08-29 14:46:08',1,30004111,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0),(5223,'2015-03-14 14:56:58','2015-08-29 14:46:08',1,30002762,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0),(5224,'2015-03-14 14:56:58','2015-03-14 14:56:58',1,30001713,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(5225,'2015-03-14 14:56:58','2015-03-14 14:56:58',1,30004797,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(5226,'2015-03-14 14:56:58','2015-03-14 14:56:58',1,30001525,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(5227,'2015-03-14 14:56:58','2015-03-14 14:56:58',1,30001803,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(5228,'2015-03-14 14:56:58','2015-03-14 14:56:58',1,30000621,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(5229,'2015-03-14 14:56:58','2015-03-14 14:56:58',1,30001915,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(5230,'2015-03-14 14:56:58','2015-03-14 14:56:58',1,30004144,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(5231,'2015-03-14 14:56:58','2015-03-14 14:56:58',1,30001710,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(5232,'2015-03-14 14:56:58','2015-03-14 14:56:58',1,30003514,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(5233,'2015-03-14 14:56:58','2015-08-29 14:46:08',1,30004236,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0),(5234,'2015-03-14 14:56:58','2015-03-14 14:56:58',1,30004154,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(5235,'2015-03-14 14:56:58','2015-03-14 14:56:58',1,30004265,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(5236,'2015-03-14 14:56:58','2015-03-14 14:56:58',1,30003872,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(5237,'2015-03-14 14:56:58','2015-08-29 14:46:08',1,30003997,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,0,0,0,0,0,0,0),(5238,'2015-03-14 14:56:58','2015-03-14 14:56:58',1,30004838,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(5239,'2015-03-14 14:56:58','2015-03-14 14:56:58',1,30004350,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(5240,'2015-03-14 14:56:58','2015-03-14 14:56:58',1,30000530,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(5241,'2015-03-14 14:56:58','2015-08-29 14:46:08',1,30001204,0,1,0,0,0,0,0,0,0,0,0,2,2,1,0,0,0,0,2,0,0,1,0,0),(5242,'2015-03-14 14:56:58','2015-03-14 14:56:58',1,30004459,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(5243,'2015-03-14 14:56:58','2015-08-29 14:46:08',1,30004051,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(5244,'2015-03-14 14:56:58','2015-08-29 14:46:08',1,30000583,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0),(5245,'2015-03-14 14:56:58','2015-03-14 14:56:58',1,30004260,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(5246,'2015-03-14 14:56:58','2015-08-29 14:46:08',1,30000036,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(5247,'2015-03-14 14:56:58','2015-03-14 14:56:58',1,30001353,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(5248,'2015-03-14 14:56:58','2015-03-14 14:56:58',1,30001024,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(5249,'2015-03-14 14:56:58','2015-08-29 14:46:08',1,30003690,0,2,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(5250,'2015-03-14 14:56:58','2015-03-14 14:56:58',1,30001395,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(5251,'2015-03-14 14:56:58','2015-03-14 14:56:58',1,30000880,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(5252,'2015-03-14 14:56:58','2015-03-14 14:56:58',1,30001118,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(5253,'2015-03-14 14:56:58','2015-03-14 14:56:58',1,30000241,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(5254,'2015-03-14 14:56:58','2015-08-29 14:46:08',1,30002432,0,0,0,0,0,0,0,0,1,0,0,0,0,0,1,1,0,0,0,1,0,0,0,0),(5255,'2015-03-14 14:56:58','2015-03-14 14:56:58',1,30001427,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(5256,'2015-03-14 14:56:58','2015-08-29 14:46:08',1,30005017,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,1,0,0,0,0),(5257,'2015-03-14 14:56:58','2015-08-29 14:46:08',1,30001668,0,0,0,0,0,0,0,0,0,0,1,0,0,1,1,0,0,0,0,0,0,0,0,0),(5258,'2015-03-14 14:56:58','2015-03-14 14:56:58',1,30004131,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(5259,'2015-03-14 14:56:58','2015-03-14 14:56:58',1,30003960,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(5260,'2015-03-14 14:56:58','2015-08-29 14:46:08',1,30003493,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(5261,'2015-03-14 14:56:58','2015-08-29 14:46:08',1,30001271,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0),(5262,'2015-03-14 14:56:58','2015-08-29 14:46:08',1,30000784,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(5263,'2015-03-14 14:56:58','2015-03-14 14:56:58',1,30003753,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(5264,'2015-03-14 14:56:58','2015-03-14 14:56:58',1,30001758,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(5265,'2015-03-14 14:56:58','2015-03-14 14:56:58',1,30003212,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(5266,'2015-03-14 14:56:58','2015-03-14 14:56:58',1,30004026,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(5267,'2015-03-14 14:56:58','2015-08-29 14:46:08',1,30002794,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,1,0,0,1,0),(5268,'2015-03-14 14:56:58','2015-08-29 14:46:08',1,30003414,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,0,0,0,0),(5269,'2015-03-14 14:56:58','2015-03-14 14:56:58',1,30004627,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(5270,'2015-03-14 14:56:58','2015-03-14 14:56:58',1,30003178,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(5271,'2015-03-14 14:56:58','2015-03-14 14:56:58',1,30000408,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(5272,'2015-03-14 14:56:58','2015-03-14 14:56:58',1,30003545,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(5273,'2015-03-14 14:56:58','2015-03-14 14:56:58',1,30005204,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(5274,'2015-03-14 14:56:58','2015-08-29 14:46:08',1,30000916,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(5275,'2015-03-14 14:56:58','2015-08-29 14:46:08',1,30000007,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0),(5276,'2015-03-14 14:56:58','2015-03-14 14:56:58',1,30004679,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(5277,'2015-03-14 14:56:58','2015-08-29 14:46:08',1,30004548,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0),(5278,'2015-03-14 14:56:58','2015-03-14 14:56:58',1,30003588,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(5279,'2015-03-14 14:56:58','2015-08-29 14:46:08',1,30004977,1,2,0,0,3,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0),(5280,'2015-03-14 14:56:58','2015-03-14 14:56:58',1,30004561,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(5281,'2015-03-14 14:56:58','2015-03-14 14:56:58',1,30003591,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(5282,'2015-03-14 14:56:58','2015-03-14 14:56:58',1,30003567,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(5283,'2015-03-14 14:56:58','2015-03-14 14:56:58',1,30004174,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(5284,'2015-03-14 14:56:58','2015-03-14 14:56:58',1,30003990,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(5285,'2015-03-14 14:56:58','2015-08-29 14:46:08',1,30003705,0,0,0,0,0,0,0,2,0,1,0,0,1,0,0,0,0,0,0,0,0,0,0,0),(5286,'2015-03-14 14:56:58','2015-03-14 14:56:58',1,30002310,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(5287,'2015-03-14 14:56:58','2015-08-29 14:46:08',1,30000231,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0),(5288,'2015-03-14 14:56:58','2015-08-29 14:46:08',1,30004617,0,9,4,0,2,12,0,0,0,0,0,2,0,0,0,0,0,2,0,0,2,1,2,0),(5289,'2015-03-14 14:56:58','2015-08-29 14:46:08',1,30002925,1,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(5290,'2015-03-14 14:56:58','2015-08-29 14:46:08',1,30004719,1,0,0,0,0,0,0,0,0,1,2,0,5,0,1,2,1,0,1,1,1,0,0,0),(5291,'2015-03-14 14:56:58','2015-03-14 14:56:58',1,30004554,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(5292,'2015-03-14 14:56:58','2015-03-14 14:56:58',1,30000506,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(5293,'2015-03-14 14:56:58','2015-03-14 14:56:58',1,30004542,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(5294,'2015-03-14 14:56:58','2015-03-14 14:56:58',1,30001956,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(5295,'2015-03-14 14:56:58','2015-08-29 14:46:08',1,30004921,0,0,0,0,0,0,0,0,0,0,0,0,0,2,0,0,0,0,0,0,0,0,0,0),(5296,'2015-03-14 14:56:58','2015-03-14 14:56:58',1,30000266,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(5297,'2015-03-14 14:56:58','2015-03-14 14:56:58',1,30000597,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(5298,'2015-03-14 14:56:58','2015-03-14 14:56:58',1,30001486,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(5299,'2015-03-14 14:56:58','2015-03-14 14:56:58',1,30001074,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(5300,'2015-03-14 14:56:58','2015-03-14 14:56:58',1,30002292,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(5301,'2015-03-14 14:56:58','2015-03-14 14:56:58',1,30001097,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(5302,'2015-03-14 14:56:58','2015-03-14 14:56:58',1,30005132,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(5303,'2015-03-14 14:56:58','2015-03-14 14:56:58',1,30002368,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(5304,'2015-03-14 14:56:58','2015-03-14 14:56:58',1,30001454,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(5305,'2015-03-14 14:56:58','2015-03-14 14:56:58',1,30001263,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(5306,'2015-03-14 14:56:58','2015-08-29 14:46:08',1,30002141,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,1,1,0,0,0,0),(5307,'2015-03-14 14:56:58','2015-03-14 14:56:58',1,30000387,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(5308,'2015-03-14 14:56:58','2015-08-29 14:46:08',1,30004341,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(5309,'2015-03-14 14:56:58','2015-03-14 14:56:58',1,30001613,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(5310,'2015-03-14 14:56:58','2015-03-14 14:56:58',1,30003646,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(5311,'2015-03-14 14:56:58','2015-03-14 14:56:58',1,30004965,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(5312,'2015-03-14 14:56:58','2015-03-14 14:56:58',1,30003154,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(5313,'2015-03-14 14:56:58','2015-03-14 14:56:58',1,30002617,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(5314,'2015-03-14 14:56:58','2015-03-14 14:56:58',1,30004425,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(5315,'2015-03-14 14:56:58','2015-03-14 14:56:58',1,30003357,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(5316,'2015-03-14 14:56:58','2015-08-29 14:46:08',1,30001919,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0),(5317,'2015-03-14 14:56:58','2015-08-29 14:46:08',1,30003783,0,0,0,0,0,0,0,0,1,0,0,0,0,1,0,0,0,0,0,1,0,2,0,0),(5318,'2015-03-14 14:56:58','2015-03-14 14:56:58',1,30003652,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(5319,'2015-03-14 14:56:58','2015-08-29 14:46:08',1,30003991,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(5320,'2015-03-14 14:56:58','2015-03-14 14:56:58',1,30001929,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(5321,'2015-03-14 14:56:58','2015-03-14 14:56:58',1,30003989,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(5322,'2015-03-14 14:56:58','2015-08-29 14:46:08',1,30004063,0,0,0,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(5323,'2015-03-14 14:56:58','2015-03-14 14:56:58',1,30003124,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(5324,'2015-03-14 14:56:58','2015-03-14 14:56:58',1,30004666,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(5325,'2015-03-14 14:56:58','2015-03-14 14:56:58',1,30000414,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(5326,'2015-03-14 14:56:58','2015-08-29 14:46:08',1,30001304,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0),(5327,'2015-03-14 14:56:58','2015-03-14 14:56:58',1,30002337,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(5328,'2015-03-14 14:56:58','2015-03-14 14:56:58',1,30001091,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(5329,'2015-03-14 14:56:58','2015-03-14 14:56:58',1,30000739,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(5330,'2015-03-14 14:56:58','2015-03-14 14:56:58',1,30001582,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(5331,'2015-03-14 14:56:58','2015-08-29 14:46:08',1,30001861,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0),(5332,'2015-03-14 14:56:58','2015-08-29 14:46:08',1,30004607,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(5333,'2015-03-14 14:56:58','2015-08-29 14:46:08',1,30001345,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0),(5334,'2015-03-14 14:56:58','2015-08-29 14:46:08',1,30004707,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,1,0,0,0,0,1,1,0,0),(5335,'2015-03-14 14:56:58','2015-03-14 14:56:58',1,30002137,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(5336,'2015-03-14 14:56:58','2015-08-29 14:46:08',1,30002117,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,0,0,0),(5337,'2015-03-14 14:56:58','2015-03-14 14:56:58',1,30004584,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(5338,'2015-03-14 14:56:58','2015-08-29 14:46:08',1,30000304,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0),(5339,'2015-03-14 14:56:58','2015-03-14 14:56:58',1,30001455,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(5340,'2015-03-14 14:56:58','2015-03-14 14:56:58',1,30004741,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(5341,'2015-03-14 14:56:58','2015-03-14 14:56:58',1,30003927,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(5342,'2015-03-14 14:56:58','2015-03-14 14:56:58',1,30000006,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(5343,'2015-03-14 14:56:58','2015-03-14 14:56:58',1,30003497,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(5344,'2015-03-14 14:56:58','2015-03-14 14:56:58',1,30003543,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(5345,'2015-03-14 14:56:58','2015-03-14 14:56:58',1,30005211,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(5346,'2015-03-14 14:56:58','2015-03-14 14:56:58',1,30005079,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(5347,'2015-03-14 14:56:58','2015-03-14 14:56:58',1,30002280,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(5348,'2015-03-14 14:56:58','2015-03-14 14:56:58',1,30003996,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(5349,'2015-03-14 14:56:58','2015-03-14 14:56:58',1,30004290,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(5350,'2015-03-14 14:56:58','2015-03-14 14:56:58',1,30004232,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(5351,'2015-03-14 14:56:58','2015-08-29 14:46:08',1,30004285,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0),(5352,'2015-03-14 14:56:58','2015-03-14 14:56:58',1,30002121,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(5353,'2015-03-14 14:56:58','2015-03-14 14:56:58',1,30004701,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(5354,'2015-03-14 14:56:58','2015-03-14 14:56:58',1,30004817,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(5355,'2015-03-14 14:56:58','2015-08-29 14:46:08',1,30001354,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(5356,'2015-03-14 14:56:58','2015-03-14 14:56:58',1,30000719,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(5357,'2015-03-14 14:56:58','2015-08-29 14:46:08',1,30004704,0,0,0,0,0,0,0,0,0,3,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(5358,'2015-03-14 14:56:58','2015-03-14 14:56:58',1,30001734,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(5359,'2015-03-14 14:56:58','2015-03-14 14:56:58',1,30000055,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(5360,'2015-03-14 14:56:58','2015-08-29 14:46:08',1,30003928,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(5361,'2015-03-14 14:56:58','2015-03-14 14:56:58',1,30000064,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(5362,'2015-03-14 14:56:58','2015-03-14 14:56:58',1,30001765,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(5363,'2015-03-14 14:56:58','2015-03-14 14:56:58',1,30000688,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(5364,'2015-03-14 14:56:58','2015-03-14 14:56:58',1,30001866,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(5365,'2015-03-14 14:56:58','2015-03-14 14:56:58',1,30000551,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(5366,'2015-03-14 14:56:58','2015-03-14 14:56:58',1,30001922,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(5367,'2015-03-14 14:56:58','2015-03-14 14:56:58',1,30003618,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(5368,'2015-03-14 14:56:58','2015-03-14 14:56:58',1,30003550,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(5369,'2015-03-14 14:56:58','2015-08-29 14:46:08',1,30005208,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0),(5370,'2015-03-14 14:56:58','2015-08-29 14:46:08',1,30004489,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0),(5371,'2015-03-14 14:56:58','2015-03-14 14:56:58',1,30004107,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(5372,'2015-03-14 14:56:58','2015-03-14 14:56:58',1,30004127,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(5373,'2015-03-14 14:56:58','2015-08-29 14:46:08',1,30005055,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(5374,'2015-03-14 14:56:58','2015-03-14 14:56:58',1,30004140,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(5375,'2015-03-14 14:56:58','2015-08-29 14:46:08',1,30002203,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,0,0),(5376,'2015-03-14 14:56:58','2015-03-14 14:56:58',1,30003562,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(5377,'2015-03-14 14:56:58','2015-03-14 14:56:58',1,30003939,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(5378,'2015-03-14 14:56:58','2015-03-14 14:56:58',1,30001732,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(5379,'2015-03-14 14:56:58','2015-03-14 14:56:58',1,30004363,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(5380,'2015-03-14 14:56:58','2015-03-14 14:56:58',1,30001810,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(5381,'2015-03-14 14:56:58','2015-03-14 14:56:58',1,30000937,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(5382,'2015-03-14 14:56:58','2015-03-14 14:56:58',1,30003619,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(5383,'2015-03-14 14:56:58','2015-08-29 14:46:08',1,30002130,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(5384,'2015-03-14 14:56:58','2015-03-14 14:56:58',1,30001996,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(5385,'2015-03-14 14:56:58','2015-08-29 14:46:08',1,30004888,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,0,0,0,0,0,0),(5386,'2015-03-14 14:56:58','2015-03-14 14:56:58',1,30004498,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(5387,'2015-03-14 14:56:58','2015-03-14 14:56:58',1,30003658,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(5388,'2015-03-14 14:56:58','2015-03-14 14:56:58',1,30000407,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(5389,'2015-03-14 14:56:58','2015-08-29 14:46:08',1,30002018,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(5390,'2015-03-14 14:56:58','2015-03-14 14:56:58',1,30000449,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(5391,'2015-03-14 14:56:58','2015-08-29 14:46:08',1,30000296,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(5392,'2015-03-14 14:56:58','2015-03-14 14:56:58',1,30000935,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(5393,'2015-03-14 14:56:58','2015-03-14 14:56:58',1,30004820,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(5394,'2015-03-14 14:56:58','2015-03-14 14:56:58',1,30003289,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(5395,'2015-03-14 14:56:58','2015-03-14 14:56:58',1,30000699,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(5396,'2015-03-14 14:56:58','2015-03-14 14:56:58',1,30000802,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(5397,'2015-03-14 14:56:58','2015-08-29 14:46:08',1,30004882,0,0,0,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(5398,'2015-03-14 14:56:58','2015-03-14 14:56:58',1,30001133,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(5399,'2015-03-14 14:56:58','2015-08-29 14:46:08',1,30005221,0,1,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(5400,'2015-03-14 14:56:58','2015-03-14 14:56:58',1,30001131,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(5401,'2015-03-14 14:56:58','2015-03-14 14:56:58',1,30005067,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(5402,'2015-03-14 14:56:58','2015-03-14 14:56:58',1,30004081,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(5403,'2015-03-14 14:56:58','2015-03-14 14:56:58',1,30004160,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(5404,'2015-03-14 14:56:58','2015-03-14 14:56:58',1,30002923,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(5405,'2015-03-14 14:56:58','2015-08-29 14:46:08',1,30001226,0,1,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,2,0),(5406,'2015-03-14 14:56:58','2015-08-29 14:46:08',1,30004496,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,2,0,0,0,0,0,0,0,0),(5407,'2015-03-14 14:56:58','2015-08-29 14:46:08',1,30004469,0,0,0,0,0,0,0,0,0,0,0,0,1,1,1,0,0,0,0,0,0,0,2,0),(5408,'2015-03-14 14:56:58','2015-03-14 14:56:58',1,30002352,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(5409,'2015-03-14 14:56:58','2015-03-14 14:56:58',1,30000328,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(5410,'2015-03-14 14:56:58','2015-08-29 14:46:08',1,30001072,0,0,0,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(5411,'2015-03-14 14:56:58','2015-03-14 14:56:58',1,30003747,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(5412,'2015-03-14 14:56:58','2015-03-14 14:56:58',1,30004660,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(5413,'2015-03-14 14:56:58','2015-03-14 14:56:58',1,30004955,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(5414,'2015-03-14 14:56:58','2015-08-29 14:46:08',1,30004658,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0),(5415,'2015-03-14 14:56:58','2015-08-29 14:46:08',1,30003369,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0),(5416,'2015-03-14 14:56:58','2015-03-14 14:56:58',1,30001621,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(5417,'2015-03-14 14:56:58','2015-08-29 14:46:08',1,30003272,0,3,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0),(5418,'2015-03-14 14:56:58','2015-03-14 14:56:58',1,30001590,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(5419,'2015-03-14 14:56:58','2015-03-14 14:56:58',1,30004687,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(5420,'2015-03-14 14:56:58','2015-03-14 14:56:58',1,30003620,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(5421,'2015-03-14 14:56:58','2015-08-29 14:46:08',1,30004777,0,0,0,0,0,0,0,0,1,3,4,10,22,8,7,6,6,1,3,10,0,0,0,0),(5422,'2015-03-14 14:56:58','2015-03-14 14:56:58',1,30004540,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(5423,'2015-03-14 14:56:58','2015-03-14 14:56:58',1,30004528,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(5424,'2015-03-14 14:56:58','2015-08-29 14:46:08',1,30001168,2,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,4,0,0,0,0),(5425,'2015-03-14 14:56:58','2015-08-29 14:46:08',1,30004031,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(5426,'2015-03-14 14:56:58','2015-03-14 14:56:58',1,30004437,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(5427,'2015-03-14 14:56:58','2015-03-14 14:56:58',1,30001004,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(5428,'2015-03-14 14:56:58','2015-08-29 14:46:08',1,30002360,0,0,1,0,0,0,4,1,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0),(5429,'2015-03-14 14:56:58','2015-03-14 14:56:58',1,30000356,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(5430,'2015-03-14 14:56:58','2015-03-14 14:56:58',1,30001807,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(5431,'2015-03-14 14:56:58','2015-03-14 14:56:58',1,30002914,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(8078,'2015-08-19 19:10:03','2015-08-19 19:10:03',1,31000001,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(8081,'2015-08-19 19:10:03','2015-08-19 19:10:03',1,31000002,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(8082,'2015-08-19 19:10:03','2015-08-19 19:10:03',1,31000003,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(8083,'2015-08-19 19:10:03','2015-08-19 19:10:03',1,31000006,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(8087,'2015-08-19 19:10:03','2015-08-19 19:10:03',1,31000004,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0); +INSERT INTO `system_kills_pods` VALUES (1,'2015-03-14 14:56:57','2015-10-11 16:46:35',1,30000995,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,2),(2,'2015-03-14 14:56:57','2015-03-14 14:56:57',1,30001779,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(3,'2015-03-14 14:56:57','2015-10-11 16:46:35',1,30000838,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,1,0,2,1),(4,'2015-03-14 14:56:57','2015-10-11 16:46:35',1,30001904,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1),(5,'2015-03-14 14:56:57','2015-03-14 14:56:57',1,30004510,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(6,'2015-03-14 14:56:57','2015-10-11 16:46:35',1,30003693,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0),(7,'2015-03-14 14:56:57','2015-03-14 14:56:57',1,30001287,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(8,'2015-03-14 14:56:57','2015-03-14 14:56:57',1,30000480,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(9,'2015-03-14 14:56:57','2015-10-11 16:46:35',1,30002454,0,0,0,0,0,0,1,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0),(10,'2015-03-14 14:56:57','2015-10-11 16:46:35',1,30004756,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0),(11,'2015-03-14 14:56:57','2015-03-14 14:56:57',1,30004674,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(12,'2015-03-14 14:56:57','2015-03-14 14:56:57',1,30001150,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(13,'2015-03-14 14:56:57','2015-03-14 14:56:57',1,30004930,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(14,'2015-03-14 14:56:57','2015-10-11 16:46:35',1,30001322,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0),(15,'2015-03-14 14:56:57','2015-10-11 16:46:35',1,30003114,1,1,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(16,'2015-03-14 14:56:57','2015-03-14 14:56:57',1,30003198,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(17,'2015-03-14 14:56:57','2015-03-14 14:56:57',1,30000222,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(18,'2015-03-14 14:56:57','2015-03-14 14:56:57',1,30001065,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(19,'2015-03-14 14:56:57','2015-10-11 16:46:35',1,30005191,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(20,'2015-03-14 14:56:57','2015-03-14 14:56:57',1,30003615,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(21,'2015-03-14 14:56:57','2015-03-14 14:56:57',1,30000799,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(22,'2015-03-14 14:56:57','2015-10-11 16:46:35',1,30000440,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(23,'2015-03-14 14:56:57','2015-10-11 16:46:35',1,30003947,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(24,'2015-03-14 14:56:57','2015-03-14 14:56:57',1,30004509,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(25,'2015-03-14 14:56:57','2015-03-14 14:56:57',1,30001295,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(26,'2015-03-14 14:56:57','2015-10-11 16:46:35',1,30000857,0,0,0,0,0,0,0,0,0,0,0,0,0,2,1,0,0,0,0,0,0,0,0,0),(27,'2015-03-14 14:56:57','2015-03-14 14:56:57',1,30004656,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(28,'2015-03-14 14:56:57','2015-10-11 16:46:35',1,30004596,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,1,0,0,0),(29,'2015-03-14 14:56:57','2015-10-11 16:46:35',1,30004068,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(30,'2015-03-14 14:56:57','2015-03-14 14:56:57',1,30005186,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(31,'2015-03-14 14:56:57','2015-03-14 14:56:57',1,30002609,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(32,'2015-03-14 14:56:57','2015-03-14 14:56:57',1,30003149,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(33,'2015-03-14 14:56:57','2015-03-14 14:56:57',1,30000707,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(34,'2015-03-14 14:56:57','2015-03-14 14:56:57',1,30000822,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(35,'2015-03-14 14:56:57','2015-10-11 16:46:35',1,30002460,0,0,0,1,0,0,0,0,0,2,0,0,0,0,0,0,0,1,0,0,0,1,0,0),(36,'2015-03-14 14:56:57','2015-03-14 14:56:57',1,30000623,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(37,'2015-03-14 14:56:57','2015-10-11 16:46:35',1,30000216,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(38,'2015-03-14 14:56:57','2015-10-11 16:46:35',1,30001120,0,0,0,1,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0),(39,'2015-03-14 14:56:57','2015-10-11 16:46:35',1,30000596,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,1,1,0,0,0),(40,'2015-03-14 14:56:57','2015-10-11 16:46:35',1,30002168,0,0,0,1,0,0,0,0,0,0,0,0,0,0,1,1,0,0,1,0,0,0,1,0),(41,'2015-03-14 14:56:57','2015-03-14 14:56:57',1,30004954,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(42,'2015-03-14 14:56:57','2015-10-11 16:46:35',1,30003743,0,0,0,0,1,2,0,0,0,9,0,0,0,0,0,0,0,0,1,0,1,0,0,0),(43,'2015-03-14 14:56:57','2015-03-14 14:56:57',1,30000351,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(44,'2015-03-14 14:56:57','2015-03-14 14:56:57',1,30004947,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(45,'2015-03-14 14:56:57','2015-03-14 14:56:57',1,30003782,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(46,'2015-03-14 14:56:57','2015-03-14 14:56:57',1,30004214,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(47,'2015-03-14 14:56:57','2015-03-14 14:56:57',1,30004549,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(48,'2015-03-14 14:56:57','2015-10-11 16:46:35',1,30004917,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,0,0,0,0,0,0,0),(49,'2015-03-14 14:56:57','2015-03-14 14:56:57',1,30003296,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(50,'2015-03-14 14:56:57','2015-03-14 14:56:57',1,30005102,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(51,'2015-03-14 14:56:57','2015-10-11 16:46:35',1,30001889,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0),(52,'2015-03-14 14:56:57','2015-10-11 16:46:35',1,30001856,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(53,'2015-03-14 14:56:57','2015-10-11 16:46:35',1,30000522,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0),(54,'2015-03-14 14:56:57','2015-03-14 14:56:57',1,30001643,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(55,'2015-03-14 14:56:57','2015-03-14 14:56:57',1,30001551,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(56,'2015-03-14 14:56:57','2015-10-11 16:46:35',1,30000267,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,0,0,0,0,0,0,0),(57,'2015-03-14 14:56:57','2015-10-11 16:46:35',1,30003330,0,0,0,1,0,0,0,0,0,0,0,0,0,2,1,1,1,2,0,0,0,0,1,1),(58,'2015-03-14 14:56:57','2015-03-14 14:56:57',1,30000645,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(59,'2015-03-14 14:56:57','2015-03-14 14:56:57',1,30003647,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(60,'2015-03-14 14:56:57','2015-03-14 14:56:57',1,30002308,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(61,'2015-03-14 14:56:57','2015-03-14 14:56:57',1,30001521,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(62,'2015-03-14 14:56:57','2015-10-11 16:46:35',1,30000262,0,0,0,0,0,0,0,0,0,0,0,0,0,3,0,0,0,0,0,0,0,0,0,0),(63,'2015-03-14 14:56:57','2015-10-11 16:46:35',1,30004720,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(64,'2015-03-14 14:56:57','2015-03-14 14:56:57',1,30000929,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(65,'2015-03-14 14:56:57','2015-03-14 14:56:57',1,30004950,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(66,'2015-03-14 14:56:57','2015-03-14 14:56:57',1,30004483,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(67,'2015-03-14 14:56:57','2015-10-11 16:46:35',1,30002899,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,1,0),(68,'2015-03-14 14:56:57','2015-03-14 14:56:57',1,30004874,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(69,'2015-03-14 14:56:57','2015-03-14 14:56:57',1,30004322,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(70,'2015-03-14 14:56:57','2015-03-14 14:56:57',1,30000966,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(71,'2015-03-14 14:56:57','2015-10-11 16:46:35',1,30003251,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0),(72,'2015-03-14 14:56:57','2015-03-14 14:56:57',1,30000290,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(73,'2015-03-14 14:56:57','2015-03-14 14:56:57',1,30000940,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(74,'2015-03-14 14:56:57','2015-03-14 14:56:57',1,30000566,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(75,'2015-03-14 14:56:57','2015-03-14 14:56:57',1,30001458,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(76,'2015-03-14 14:56:57','2015-03-14 14:56:57',1,30002846,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(77,'2015-03-14 14:56:57','2015-10-11 16:46:35',1,30001009,1,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0),(78,'2015-03-14 14:56:57','2015-03-14 14:56:57',1,30004695,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(79,'2015-03-14 14:56:57','2015-10-11 16:46:35',1,30003349,0,0,0,0,0,0,0,0,0,1,2,1,1,0,0,0,0,0,0,0,0,0,0,1),(80,'2015-03-14 14:56:57','2015-10-11 16:46:35',1,30001961,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0),(81,'2015-03-14 14:56:57','2015-10-11 16:46:35',1,30003957,0,0,1,0,0,0,1,0,0,0,0,0,0,0,1,1,0,0,1,1,1,0,0,0),(82,'2015-03-14 14:56:57','2015-03-14 14:56:57',1,30000543,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(83,'2015-03-14 14:56:57','2015-03-14 14:56:57',1,30000781,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(84,'2015-03-14 14:56:57','2015-03-14 14:56:57',1,30002934,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(85,'2015-03-14 14:56:57','2015-03-14 14:56:57',1,30004843,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(86,'2015-03-14 14:56:57','2015-03-14 14:56:57',1,30005157,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(87,'2015-03-14 14:56:57','2015-10-11 16:46:35',1,30001837,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0),(88,'2015-03-14 14:56:57','2015-03-14 14:56:57',1,30001599,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(89,'2015-03-14 14:56:57','2015-10-11 16:46:35',1,30004677,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0),(90,'2015-03-14 14:56:57','2015-03-14 14:56:57',1,30001757,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(91,'2015-03-14 14:56:57','2015-10-11 16:46:35',1,30003766,0,1,4,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(92,'2015-03-14 14:56:57','2015-03-14 14:56:57',1,30004801,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(93,'2015-03-14 14:56:57','2015-10-11 16:46:35',1,30004037,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(94,'2015-03-14 14:56:57','2015-10-11 16:46:35',1,30004650,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0),(95,'2015-03-14 14:56:57','2015-10-11 16:46:35',1,30000573,2,0,1,0,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(96,'2015-03-14 14:56:57','2015-03-14 14:56:57',1,30000734,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(97,'2015-03-14 14:56:57','2015-03-14 14:56:57',1,30002581,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(98,'2015-03-14 14:56:57','2015-03-14 14:56:57',1,30003258,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(99,'2015-03-14 14:56:57','2015-03-14 14:56:57',1,30001109,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(100,'2015-03-14 14:56:57','2015-10-11 16:46:35',1,30000301,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,2,0,0,1),(101,'2015-03-14 14:56:57','2015-03-14 14:56:57',1,30000463,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(102,'2015-03-14 14:56:57','2015-03-14 14:56:57',1,30003215,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(103,'2015-03-14 14:56:57','2015-03-14 14:56:57',1,30002823,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(104,'2015-03-14 14:56:57','2015-10-11 16:46:35',1,30004940,1,0,2,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(105,'2015-03-14 14:56:57','2015-03-14 14:56:57',1,30003297,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(106,'2015-03-14 14:56:57','2015-03-14 14:56:57',1,30004048,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(107,'2015-03-14 14:56:57','2015-03-14 14:56:57',1,30000474,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(108,'2015-03-14 14:56:57','2015-10-11 16:46:35',1,30004738,0,1,1,0,0,0,0,2,0,10,4,0,1,7,0,0,0,0,0,1,2,2,0,3),(109,'2015-03-14 14:56:57','2015-03-14 14:56:57',1,30001270,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(110,'2015-03-14 14:56:57','2015-03-14 14:56:57',1,30003336,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(111,'2015-03-14 14:56:57','2015-03-14 14:56:57',1,30003147,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(112,'2015-03-14 14:56:57','2015-03-14 14:56:57',1,30001975,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(113,'2015-03-14 14:56:57','2015-03-14 14:56:57',1,30001066,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(114,'2015-03-14 14:56:57','2015-10-11 16:46:35',1,30004639,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(115,'2015-03-14 14:56:57','2015-03-14 14:56:57',1,30004611,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(116,'2015-03-14 14:56:57','2015-10-11 16:46:35',1,30000861,3,0,0,0,0,0,0,0,1,0,3,6,1,2,8,3,6,3,0,1,2,0,0,3),(117,'2015-03-14 14:56:57','2015-03-14 14:56:57',1,30000425,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(118,'2015-03-14 14:56:57','2015-10-11 16:46:35',1,30000931,0,0,0,0,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(119,'2015-03-14 14:56:57','2015-03-14 14:56:57',1,30004849,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(120,'2015-03-14 14:56:57','2015-10-11 16:46:35',1,30003122,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,1),(121,'2015-03-14 14:56:57','2015-10-11 16:46:35',1,30003768,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(122,'2015-03-14 14:56:57','2015-03-14 14:56:57',1,30000342,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(123,'2015-03-14 14:56:57','2015-10-11 16:46:35',1,30003785,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,2,0,0,0,0,1,0,0,1),(124,'2015-03-14 14:56:57','2015-03-14 14:56:57',1,30005117,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(125,'2015-03-14 14:56:57','2015-10-11 16:46:35',1,30002317,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0),(126,'2015-03-14 14:56:57','2015-03-14 14:56:57',1,30004728,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(127,'2015-03-14 14:56:57','2015-03-14 14:56:57',1,30003624,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(128,'2015-03-14 14:56:57','2015-10-11 16:46:35',1,30000963,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,2),(129,'2015-03-14 14:56:57','2015-03-14 14:56:57',1,30001524,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(130,'2015-03-14 14:56:57','2015-03-14 14:56:57',1,30004688,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(131,'2015-03-14 14:56:57','2015-10-11 16:46:35',1,30004710,0,1,0,1,0,0,0,0,0,2,2,1,0,4,0,1,1,1,1,0,1,0,5,1),(132,'2015-03-14 14:56:57','2015-03-14 14:56:57',1,30004759,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(133,'2015-03-14 14:56:57','2015-03-14 14:56:57',1,30004964,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(134,'2015-03-14 14:56:57','2015-10-11 16:46:35',1,30003211,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(135,'2015-03-14 14:56:57','2015-10-11 16:46:35',1,30004367,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(136,'2015-03-14 14:56:57','2015-10-11 16:46:35',1,30002332,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0),(137,'2015-03-14 14:56:57','2015-03-14 14:56:57',1,30004226,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(138,'2015-03-14 14:56:57','2015-03-14 14:56:57',1,30001880,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(139,'2015-03-14 14:56:57','2015-03-14 14:56:57',1,30001952,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(140,'2015-03-14 14:56:57','2015-03-14 14:56:57',1,30002329,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(141,'2015-03-14 14:56:57','2015-03-14 14:56:57',1,30000395,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(142,'2015-03-14 14:56:57','2015-03-14 14:56:57',1,30001540,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(143,'2015-03-14 14:56:57','2015-10-11 16:46:35',1,30004920,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0),(144,'2015-03-14 14:56:57','2015-10-11 16:46:35',1,30004393,0,0,0,0,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(145,'2015-03-14 14:56:57','2015-03-14 14:56:57',1,30000445,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(146,'2015-03-14 14:56:57','2015-03-14 14:56:57',1,30000962,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(147,'2015-03-14 14:56:57','2015-03-14 14:56:57',1,30004501,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(148,'2015-03-14 14:56:57','2015-10-11 16:46:35',1,30000579,2,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,19,0,0,1,1,0),(149,'2015-03-14 14:56:57','2015-03-14 14:56:57',1,30003952,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(150,'2015-03-14 14:56:57','2015-10-11 16:46:35',1,30004189,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,1,0,0,0,0,0,0),(151,'2015-03-14 14:56:57','2015-10-11 16:46:35',1,30000294,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0),(152,'2015-03-14 14:56:57','2015-03-14 14:56:57',1,30001081,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(153,'2015-03-14 14:56:57','2015-03-14 14:56:57',1,30003233,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(154,'2015-03-14 14:56:57','2015-10-11 16:46:35',1,30001170,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0),(155,'2015-03-14 14:56:57','2015-03-14 14:56:57',1,30002365,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(156,'2015-03-14 14:56:57','2015-03-14 14:56:57',1,30000336,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(157,'2015-03-14 14:56:57','2015-03-14 14:56:57',1,30003617,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(158,'2015-03-14 14:56:57','2015-10-11 16:46:35',1,30000720,0,0,0,0,0,0,0,1,0,0,0,0,1,2,0,0,0,0,0,0,0,4,0,0),(159,'2015-03-14 14:56:57','2015-03-14 14:56:57',1,30000378,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(160,'2015-03-14 14:56:57','2015-10-11 16:46:35',1,30002866,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,1,0,0),(161,'2015-03-14 14:56:57','2015-03-14 14:56:57',1,30001452,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(162,'2015-03-14 14:56:57','2015-03-14 14:56:57',1,30000766,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(163,'2015-03-14 14:56:57','2015-03-14 14:56:57',1,30000424,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(164,'2015-03-14 14:56:57','2015-10-11 16:46:35',1,30000680,0,0,12,0,2,1,1,0,0,0,0,0,0,2,0,0,0,0,0,1,5,0,0,1),(165,'2015-03-14 14:56:57','2015-03-14 14:56:57',1,30000286,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(166,'2015-03-14 14:56:57','2015-10-11 16:46:35',1,30000288,0,1,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(167,'2015-03-14 14:56:57','2015-10-11 16:46:35',1,30000836,3,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(168,'2015-03-14 14:56:57','2015-03-14 14:56:57',1,30000611,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(169,'2015-03-14 14:56:57','2015-03-14 14:56:57',1,30003668,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(170,'2015-03-14 14:56:57','2015-03-14 14:56:57',1,30000349,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(171,'2015-03-14 14:56:57','2015-10-11 16:46:35',1,30002007,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0),(172,'2015-03-14 14:56:57','2015-10-11 16:46:35',1,30001786,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,0,0,0),(173,'2015-03-14 14:56:57','2015-03-14 14:56:57',1,30004184,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(174,'2015-03-14 14:56:57','2015-03-14 14:56:57',1,30004454,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(175,'2015-03-14 14:56:57','2015-10-11 16:46:35',1,30002903,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,0,0,0),(176,'2015-03-14 14:56:57','2015-03-14 14:56:57',1,30000684,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(177,'2015-03-14 14:56:57','2015-03-14 14:56:57',1,30001598,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(178,'2015-03-14 14:56:57','2015-10-11 16:46:35',1,30000756,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0),(179,'2015-03-14 14:56:57','2015-03-14 14:56:57',1,30004492,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(180,'2015-03-14 14:56:57','2015-10-11 16:46:35',1,30003754,0,0,0,0,0,0,0,1,0,0,0,0,0,2,0,0,0,0,0,0,0,0,0,0),(181,'2015-03-14 14:56:57','2015-10-11 16:46:35',1,30001864,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0),(182,'2015-03-14 14:56:57','2015-03-14 14:56:57',1,30003188,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(183,'2015-03-14 14:56:57','2015-10-11 16:46:35',1,30000473,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,5,2,0,0,0),(184,'2015-03-14 14:56:57','2015-03-14 14:56:57',1,30005139,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(185,'2015-03-14 14:56:57','2015-03-14 14:56:57',1,30003238,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(186,'2015-03-14 14:56:57','2015-10-11 16:46:35',1,30004734,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(187,'2015-03-14 14:56:57','2015-03-14 14:56:57',1,30004467,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(188,'2015-03-14 14:56:57','2015-10-11 16:46:35',1,30001784,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0),(189,'2015-03-14 14:56:57','2015-10-11 16:46:35',1,30001258,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,0,0,1),(190,'2015-03-14 14:56:57','2015-03-14 14:56:57',1,30000832,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(191,'2015-03-14 14:56:57','2015-10-11 16:46:35',1,30000996,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(192,'2015-03-14 14:56:57','2015-03-14 14:56:57',1,30004071,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(193,'2015-03-14 14:56:57','2015-10-11 16:46:35',1,30000714,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(194,'2015-03-14 14:56:57','2015-10-11 16:46:35',1,30003171,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,0,0,0),(195,'2015-03-14 14:56:57','2015-03-14 14:56:57',1,30005182,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(196,'2015-03-14 14:56:57','2015-03-14 14:56:57',1,30001949,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(197,'2015-03-14 14:56:57','2015-10-11 16:46:35',1,30002342,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(198,'2015-03-14 14:56:57','2015-03-14 14:56:57',1,30004394,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(199,'2015-03-14 14:56:57','2015-10-11 16:46:35',1,30000898,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(200,'2015-03-14 14:56:57','2015-10-11 16:46:35',1,30001965,0,1,1,0,0,0,0,0,0,0,1,1,0,0,1,0,0,0,0,0,0,0,0,0),(201,'2015-03-14 14:56:57','2015-10-11 16:46:35',1,30000292,0,1,0,0,0,0,0,0,0,2,0,0,0,0,1,0,0,1,0,0,0,0,0,0),(202,'2015-03-14 14:56:57','2015-10-11 16:46:35',1,30002424,0,0,0,0,0,0,0,0,0,3,0,0,0,0,0,0,0,1,0,0,0,0,0,0),(203,'2015-03-14 14:56:57','2015-03-14 14:56:57',1,30000403,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(204,'2015-03-14 14:56:57','2015-03-14 14:56:57',1,30001746,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(205,'2015-03-14 14:56:57','2015-03-14 14:56:57',1,30001136,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(206,'2015-03-14 14:56:57','2015-03-14 14:56:57',1,30002283,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(207,'2015-03-14 14:56:57','2015-03-14 14:56:57',1,30003370,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(208,'2015-03-14 14:56:57','2015-10-11 16:46:35',1,30002455,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0),(209,'2015-03-14 14:56:57','2015-10-11 16:46:35',1,30004693,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0),(210,'2015-03-14 14:56:57','2015-03-14 14:56:57',1,30001352,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(211,'2015-03-14 14:56:57','2015-03-14 14:56:57',1,30001774,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(212,'2015-03-14 14:56:57','2015-10-11 16:46:35',1,30001860,0,0,0,0,0,0,0,1,0,0,0,0,0,0,1,0,0,0,0,0,0,3,0,0),(213,'2015-03-14 14:56:57','2015-03-14 14:56:57',1,30000881,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(214,'2015-03-14 14:56:57','2015-10-11 16:46:35',1,30001169,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(215,'2015-03-14 14:56:57','2015-03-14 14:56:57',1,30004531,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(216,'2015-03-14 14:56:57','2015-03-14 14:56:57',1,30000757,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(217,'2015-03-14 14:56:57','2015-03-14 14:56:57',1,30001510,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(218,'2015-03-14 14:56:57','2015-03-14 14:56:57',1,30002175,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(219,'2015-03-14 14:56:57','2015-10-11 16:46:35',1,30002909,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0),(220,'2015-03-14 14:56:57','2015-10-11 16:46:35',1,30003332,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1),(221,'2015-03-14 14:56:57','2015-10-11 16:46:35',1,30004830,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(222,'2015-03-14 14:56:57','2015-03-14 14:56:57',1,30001319,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(223,'2015-03-14 14:56:57','2015-03-14 14:56:57',1,30003304,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(224,'2015-03-14 14:56:57','2015-10-11 16:46:35',1,30002905,0,0,0,11,0,0,5,0,0,0,0,1,1,1,0,0,0,0,0,0,1,1,1,0),(225,'2015-03-14 14:56:57','2015-03-14 14:56:57',1,30003182,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(226,'2015-03-14 14:56:57','2015-03-14 14:56:57',1,30001615,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(227,'2015-03-14 14:56:57','2015-03-14 14:56:57',1,30001333,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(228,'2015-03-14 14:56:57','2015-03-14 14:56:57',1,30004447,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(229,'2015-03-14 14:56:57','2015-03-14 14:56:57',1,30001770,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(230,'2015-03-14 14:56:57','2015-03-14 14:56:57',1,30003774,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(231,'2015-03-14 14:56:57','2015-03-14 14:56:57',1,30005096,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(232,'2015-03-14 14:56:57','2015-10-11 16:46:35',1,30001799,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,0,0,0,0),(233,'2015-03-14 14:56:57','2015-10-11 16:46:35',1,30003275,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,1,0,0,0),(234,'2015-03-14 14:56:57','2015-03-14 14:56:57',1,30000909,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(235,'2015-03-14 14:56:57','2015-10-11 16:46:35',1,30001103,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(236,'2015-03-14 14:56:57','2015-03-14 14:56:57',1,30001116,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(237,'2015-03-14 14:56:57','2015-10-11 16:46:35',1,30000823,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1),(238,'2015-03-14 14:56:57','2015-03-14 14:56:57',1,30000452,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(239,'2015-03-14 14:56:57','2015-03-14 14:56:57',1,30004466,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(240,'2015-03-14 14:56:57','2015-03-14 14:56:57',1,30001642,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(241,'2015-03-14 14:56:57','2015-10-11 16:46:35',1,30004764,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,2,0,0),(242,'2015-03-14 14:56:57','2015-10-11 16:46:35',1,30004019,0,0,4,0,0,1,2,4,2,0,0,0,1,0,1,1,1,1,2,0,0,0,0,1),(243,'2015-03-14 14:56:57','2015-03-14 14:56:57',1,30000341,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(244,'2015-03-14 14:56:57','2015-03-14 14:56:57',1,30003356,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(245,'2015-03-14 14:56:57','2015-03-14 14:56:57',1,30000343,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(246,'2015-03-14 14:56:57','2015-10-11 16:46:35',1,30004004,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,1,0,0),(247,'2015-03-14 14:56:57','2015-03-14 14:56:57',1,30003231,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(248,'2015-03-14 14:56:57','2015-10-11 16:46:35',1,30000448,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,1,1),(249,'2015-03-14 14:56:57','2015-03-14 14:56:57',1,30004358,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(250,'2015-03-14 14:56:57','2015-10-11 16:46:35',1,30001199,0,0,0,0,0,0,0,0,0,3,3,0,0,4,7,2,0,0,0,1,1,0,4,0),(251,'2015-03-14 14:56:57','2015-03-14 14:56:57',1,30001820,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(252,'2015-03-14 14:56:57','2015-10-11 16:46:35',1,30003675,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0),(253,'2015-03-14 14:56:57','2015-10-11 16:46:35',1,30001212,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(254,'2015-03-14 14:56:57','2015-03-14 14:56:57',1,30004336,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(255,'2015-03-14 14:56:57','2015-03-14 14:56:57',1,30002582,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(256,'2015-03-14 14:56:57','2015-03-14 14:56:57',1,30001500,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(257,'2015-03-14 14:56:57','2015-10-11 16:46:35',1,30004405,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(258,'2015-03-14 14:56:57','2015-10-11 16:46:35',1,30003632,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,0),(259,'2015-03-14 14:56:57','2015-03-14 14:56:57',1,30000534,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(260,'2015-03-14 14:56:57','2015-10-11 16:46:35',1,30003329,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0),(261,'2015-03-14 14:56:57','2015-03-14 14:56:57',1,30004387,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(262,'2015-03-14 14:56:57','2015-10-11 16:46:35',1,30004722,1,1,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,2,1,0,0,0),(263,'2015-03-14 14:56:57','2015-03-14 14:56:57',1,30004786,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(264,'2015-03-14 14:56:57','2015-03-14 14:56:57',1,30001841,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(265,'2015-03-14 14:56:57','2015-03-14 14:56:57',1,30004668,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(266,'2015-03-14 14:56:57','2015-10-11 16:46:35',1,30003642,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0),(267,'2015-03-14 14:56:57','2015-10-11 16:46:35',1,30004517,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,1),(268,'2015-03-14 14:56:57','2015-03-14 14:56:57',1,30002919,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(269,'2015-03-14 14:56:57','2015-10-11 16:46:35',1,30004928,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(270,'2015-03-14 14:56:57','2015-10-11 16:46:35',1,30003312,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0),(271,'2015-03-14 14:56:57','2015-10-11 16:46:35',1,30001157,2,1,0,0,0,0,0,0,0,4,0,0,3,0,0,0,2,0,0,0,4,3,0,2),(272,'2015-03-14 14:56:57','2015-03-14 14:56:57',1,30001947,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(273,'2015-03-14 14:56:57','2015-10-11 16:46:35',1,30001868,0,0,1,0,0,0,0,0,0,0,2,2,0,3,0,1,1,0,0,0,0,0,0,50),(274,'2015-03-14 14:56:57','2015-03-14 14:56:57',1,30000535,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(275,'2015-03-14 14:56:57','2015-03-14 14:56:57',1,30004632,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(276,'2015-03-14 14:56:57','2015-03-14 14:56:57',1,30000829,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(277,'2015-03-14 14:56:57','2015-03-14 14:56:57',1,30002444,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(278,'2015-03-14 14:56:57','2015-10-11 16:46:35',1,30004766,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(279,'2015-03-14 14:56:57','2015-10-11 16:46:35',1,30001281,0,0,0,0,0,0,0,1,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0),(280,'2015-03-14 14:56:57','2015-10-11 16:46:35',1,30000798,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(281,'2015-03-14 14:56:57','2015-03-14 14:56:57',1,30004000,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(282,'2015-03-14 14:56:57','2015-03-14 14:56:57',1,30000428,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(283,'2015-03-14 14:56:57','2015-10-11 16:46:35',1,30003786,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0),(284,'2015-03-14 14:56:57','2015-03-14 14:56:57',1,30004036,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(285,'2015-03-14 14:56:57','2015-03-14 14:56:57',1,30003609,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(286,'2015-03-14 14:56:57','2015-03-14 14:56:57',1,30001474,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(287,'2015-03-14 14:56:57','2015-03-14 14:56:57',1,30001553,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(288,'2015-03-14 14:56:57','2015-03-14 14:56:57',1,30004390,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(289,'2015-03-14 14:56:57','2015-03-14 14:56:57',1,30004900,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(290,'2015-03-14 14:56:57','2015-03-14 14:56:57',1,30002302,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(291,'2015-03-14 14:56:57','2015-03-14 14:56:57',1,30000876,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(292,'2015-03-14 14:56:57','2015-10-11 16:46:35',1,30001200,0,0,0,0,0,1,0,0,0,0,0,0,0,3,0,1,1,0,0,1,1,0,3,0),(293,'2015-03-14 14:56:57','2015-10-11 16:46:35',1,30003748,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,7,0,0,0),(294,'2015-03-14 14:56:57','2015-03-14 14:56:57',1,30002325,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(295,'2015-03-14 14:56:57','2015-03-14 14:56:57',1,30004520,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(296,'2015-03-14 14:56:57','2015-03-14 14:56:57',1,30000228,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(297,'2015-03-14 14:56:57','2015-03-14 14:56:57',1,30002357,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(298,'2015-03-14 14:56:57','2015-10-11 16:46:35',1,30002937,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0),(299,'2015-03-14 14:56:57','2015-10-11 16:46:35',1,30003781,0,0,0,0,0,0,0,0,0,0,0,0,0,1,3,1,0,0,0,1,1,0,0,0),(300,'2015-03-14 14:56:57','2015-10-11 16:46:35',1,30004403,0,0,0,0,0,0,3,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(301,'2015-03-14 14:56:57','2015-10-11 16:46:35',1,30003322,0,0,0,1,0,0,0,0,0,0,1,0,0,0,1,1,0,0,0,0,0,0,0,0),(302,'2015-03-14 14:56:57','2015-10-11 16:46:35',1,30004419,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0),(303,'2015-03-14 14:56:57','2015-03-14 14:56:57',1,30004808,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(304,'2015-03-14 14:56:57','2015-03-14 14:56:57',1,30005166,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(305,'2015-03-14 14:56:57','2015-10-11 16:46:35',1,30003324,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,3,0,0,0,0,0),(306,'2015-03-14 14:56:57','2015-03-14 14:56:57',1,30002917,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(307,'2015-03-14 14:56:57','2015-03-14 14:56:57',1,30004951,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(308,'2015-03-14 14:56:57','2015-10-11 16:46:35',1,30004682,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(309,'2015-03-14 14:56:57','2015-03-14 14:56:57',1,30000590,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(310,'2015-03-14 14:56:57','2015-03-14 14:56:57',1,30004868,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(311,'2015-03-14 14:56:57','2015-10-11 16:46:35',1,30002921,0,0,2,4,0,2,0,1,3,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(312,'2015-03-14 14:56:57','2015-03-14 14:56:57',1,30000733,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(313,'2015-03-14 14:56:57','2015-03-14 14:56:57',1,30002486,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(314,'2015-03-14 14:56:57','2015-10-11 16:46:35',1,30002938,0,0,0,1,0,0,0,0,0,3,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(315,'2015-03-14 14:56:57','2015-03-14 14:56:57',1,30000782,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(316,'2015-03-14 14:56:57','2015-03-14 14:56:57',1,30002449,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(317,'2015-03-14 14:56:57','2015-10-11 16:46:35',1,30002011,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(318,'2015-03-14 14:56:57','2015-03-14 14:56:57',1,30003191,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(319,'2015-03-14 14:56:57','2015-10-11 16:46:35',1,30004555,0,0,1,0,0,0,0,0,0,1,0,0,0,0,0,0,0,2,0,0,1,0,1,0),(320,'2015-03-14 14:56:57','2015-03-14 14:56:57',1,30004628,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(321,'2015-03-14 14:56:57','2015-10-11 16:46:35',1,30001260,0,1,0,0,0,0,1,0,0,0,1,0,0,2,0,0,0,0,0,0,3,0,1,1),(322,'2015-03-14 14:56:57','2015-03-14 14:56:57',1,30005149,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(323,'2015-03-14 14:56:57','2015-03-14 14:56:57',1,30004014,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(324,'2015-03-14 14:56:57','2015-03-14 14:56:57',1,30000730,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(325,'2015-03-14 14:56:57','2015-03-14 14:56:57',1,30004317,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(326,'2015-03-14 14:56:57','2015-03-14 14:56:57',1,30001318,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(327,'2015-03-14 14:56:57','2015-03-14 14:56:57',1,30002015,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(328,'2015-03-14 14:56:57','2015-03-14 14:56:57',1,30004360,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(329,'2015-03-14 14:56:57','2015-10-11 16:46:35',1,30000718,1,1,2,0,1,0,0,1,0,6,0,0,0,0,15,14,3,0,1,6,6,6,0,1),(330,'2015-03-14 14:56:57','2015-03-14 14:56:57',1,30002441,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(331,'2015-03-14 14:56:57','2015-03-14 14:56:57',1,30000576,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(332,'2015-03-14 14:56:57','2015-10-11 16:46:35',1,30004553,0,0,2,0,0,0,0,0,0,4,1,1,0,0,0,0,0,0,2,1,3,0,0,0),(333,'2015-03-14 14:56:57','2015-03-14 14:56:57',1,30002144,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(334,'2015-03-14 14:56:57','2015-03-14 14:56:57',1,30004007,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(335,'2015-03-14 14:56:57','2015-03-14 14:56:57',1,30000240,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(336,'2015-03-14 14:56:57','2015-03-14 14:56:57',1,30000431,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(337,'2015-03-14 14:56:57','2015-10-11 16:46:35',1,30004828,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0),(338,'2015-03-14 14:56:57','2015-03-14 14:56:57',1,30003366,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(339,'2015-03-14 14:56:57','2015-03-14 14:56:57',1,30005121,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(340,'2015-03-14 14:56:57','2015-03-14 14:56:57',1,30002613,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(341,'2015-03-14 14:56:57','2015-03-14 14:56:57',1,30000582,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(342,'2015-03-14 14:56:57','2015-10-11 16:46:35',1,30003105,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,6,0,0,0),(343,'2015-03-14 14:56:57','2015-03-14 14:56:57',1,30004811,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(344,'2015-03-14 14:56:57','2015-03-14 14:56:57',1,30004165,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(345,'2015-03-14 14:56:57','2015-10-11 16:46:35',1,30002344,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0),(346,'2015-03-14 14:56:57','2015-03-14 14:56:57',1,30001867,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(347,'2015-03-14 14:56:57','2015-03-14 14:56:57',1,30001894,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(348,'2015-03-14 14:56:57','2015-03-14 14:56:57',1,30002864,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(349,'2015-03-14 14:56:57','2015-03-14 14:56:57',1,30004224,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(350,'2015-03-14 14:56:57','2015-03-14 14:56:57',1,30001349,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(351,'2015-03-14 14:56:57','2015-03-14 14:56:57',1,30002350,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(352,'2015-03-14 14:56:57','2015-03-14 14:56:57',1,30001340,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(353,'2015-03-14 14:56:57','2015-10-11 16:46:35',1,30002941,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,0,0,0,0,0,0),(354,'2015-03-14 14:56:57','2015-03-14 14:56:57',1,30002616,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(355,'2015-03-14 14:56:57','2015-10-11 16:46:35',1,30003131,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0),(356,'2015-03-14 14:56:57','2015-10-11 16:46:35',1,30004878,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0),(357,'2015-03-14 14:56:57','2015-03-14 14:56:57',1,30000255,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(358,'2015-03-14 14:56:57','2015-03-14 14:56:57',1,30004949,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(359,'2015-03-14 14:56:57','2015-10-11 16:46:35',1,30000251,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1),(360,'2015-03-14 14:56:57','2015-10-11 16:46:35',1,30004009,1,0,0,0,0,0,1,0,0,0,0,0,0,1,1,0,0,0,0,0,0,0,0,0),(361,'2015-03-14 14:56:57','2015-10-11 16:46:35',1,30003708,0,0,0,0,0,0,0,0,4,0,0,0,0,2,0,0,4,0,2,1,4,0,0,0),(362,'2015-03-14 14:56:57','2015-03-14 14:56:57',1,30005165,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(363,'2015-03-14 14:56:57','2015-03-14 14:56:57',1,30004188,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(364,'2015-03-14 14:56:57','2015-10-11 16:46:35',1,30001882,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0),(365,'2015-03-14 14:56:57','2015-03-14 14:56:57',1,30004415,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(366,'2015-03-14 14:56:57','2015-10-11 16:46:35',1,30001815,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,0,0,0,0,0,0,0),(367,'2015-03-14 14:56:57','2015-10-11 16:46:35',1,30003706,0,0,0,0,0,0,0,0,1,0,0,0,0,0,1,1,0,1,0,1,0,0,1,2),(368,'2015-03-14 14:56:57','2015-10-11 16:46:35',1,30004504,6,1,0,0,0,0,1,0,2,1,2,2,0,2,2,1,3,2,0,1,0,0,0,1),(369,'2015-03-14 14:56:57','2015-03-14 14:56:57',1,30000376,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(370,'2015-03-14 14:56:57','2015-03-14 14:56:57',1,30000795,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(371,'2015-03-14 14:56:57','2015-03-14 14:56:57',1,30002469,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(372,'2015-03-14 14:56:57','2015-03-14 14:56:57',1,30001578,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(373,'2015-03-14 14:56:57','2015-03-14 14:56:57',1,30000749,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(374,'2015-03-14 14:56:57','2015-03-14 14:56:57',1,30004384,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(375,'2015-03-14 14:56:57','2015-03-14 14:56:57',1,30002154,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(376,'2015-03-14 14:56:57','2015-03-14 14:56:57',1,30000701,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(377,'2015-03-14 14:56:57','2015-03-14 14:56:57',1,30005159,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(378,'2015-03-14 14:56:57','2015-03-14 14:56:57',1,30000536,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(379,'2015-03-14 14:56:57','2015-03-14 14:56:57',1,30005154,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(380,'2015-03-14 14:56:57','2015-03-14 14:56:57',1,30000361,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(381,'2015-03-14 14:56:57','2015-10-11 16:46:35',1,30001858,0,0,0,1,0,0,0,0,2,1,0,0,0,0,1,1,1,0,0,0,1,3,2,1),(382,'2015-03-14 14:56:57','2015-03-14 14:56:57',1,30004216,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(383,'2015-03-14 14:56:57','2015-10-11 16:46:35',1,30000239,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(384,'2015-03-14 14:56:57','2015-03-14 14:56:57',1,30001785,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(385,'2015-03-14 14:56:57','2015-03-14 14:56:57',1,30001558,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(386,'2015-03-14 14:56:57','2015-10-11 16:46:35',1,30004661,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0),(387,'2015-03-14 14:56:57','2015-03-14 14:56:57',1,30001844,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(388,'2015-03-14 14:56:57','2015-03-14 14:56:57',1,30001869,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(389,'2015-03-14 14:56:57','2015-10-11 16:46:35',1,30004716,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0),(390,'2015-03-14 14:56:57','2015-10-11 16:46:35',1,30002495,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0),(391,'2015-03-14 14:56:57','2015-10-11 16:46:35',1,30003351,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,2,0),(392,'2015-03-14 14:56:57','2015-03-14 14:56:57',1,30000818,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(393,'2015-03-14 14:56:57','2015-03-14 14:56:57',1,30002297,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(394,'2015-03-14 14:56:57','2015-03-14 14:56:57',1,30004206,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(395,'2015-03-14 14:56:57','2015-03-14 14:56:57',1,30001201,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(396,'2015-03-14 14:56:57','2015-03-14 14:56:57',1,30000976,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(397,'2015-03-14 14:56:57','2015-03-14 14:56:57',1,30000776,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(398,'2015-03-14 14:56:57','2015-10-11 16:46:35',1,30002944,0,0,0,0,0,0,0,0,0,1,0,0,1,0,0,0,0,0,0,0,0,0,1,0),(399,'2015-03-14 14:56:57','2015-03-14 14:56:57',1,30001251,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(400,'2015-03-14 14:56:57','2015-10-11 16:46:35',1,30000455,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(401,'2015-03-14 14:56:57','2015-03-14 14:56:57',1,30002456,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(402,'2015-03-14 14:56:57','2015-03-14 14:56:57',1,30004746,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(403,'2015-03-14 14:56:57','2015-10-11 16:46:35',1,30001828,0,0,0,0,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(404,'2015-03-14 14:56:57','2015-10-11 16:46:35',1,30002585,0,0,0,0,1,0,1,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,0,0),(405,'2015-03-14 14:56:57','2015-03-14 14:56:57',1,30001149,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(406,'2015-03-14 14:56:57','2015-03-14 14:56:57',1,30002625,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(407,'2015-03-14 14:56:57','2015-10-11 16:46:35',1,30001300,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(408,'2015-03-14 14:56:57','2015-03-14 14:56:57',1,30001335,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(409,'2015-03-14 14:56:57','2015-03-14 14:56:57',1,30000630,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(410,'2015-03-14 14:56:57','2015-03-14 14:56:57',1,30004221,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(411,'2015-03-14 14:56:57','2015-03-14 14:56:57',1,30000415,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(412,'2015-03-14 14:56:57','2015-03-14 14:56:57',1,30001512,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(413,'2015-03-14 14:56:57','2015-10-11 16:46:35',1,30002889,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,2,1,0,0,0,0,0,0,0),(414,'2015-03-14 14:56:57','2015-10-11 16:46:35',1,30002461,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0),(415,'2015-03-14 14:56:57','2015-10-11 16:46:35',1,30004736,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,2,0,0,0,0),(416,'2015-03-14 14:56:57','2015-03-14 14:56:57',1,30001940,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(417,'2015-03-14 14:56:57','2015-03-14 14:56:57',1,30004673,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(418,'2015-03-14 14:56:57','2015-03-14 14:56:57',1,30000646,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(419,'2015-03-14 14:56:57','2015-10-11 16:46:35',1,30004391,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,0,0,0,0,0,0,0),(420,'2015-03-14 14:56:57','2015-03-14 14:56:57',1,30000762,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(421,'2015-03-14 14:56:57','2015-03-14 14:56:57',1,30004166,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(422,'2015-03-14 14:56:57','2015-10-11 16:46:35',1,30004789,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0),(423,'2015-03-14 14:56:57','2015-03-14 14:56:57',1,30003310,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(424,'2015-03-14 14:56:57','2015-03-14 14:56:57',1,30003214,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(425,'2015-03-14 14:56:57','2015-03-14 14:56:57',1,30003111,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(426,'2015-03-14 14:56:57','2015-10-11 16:46:35',1,30001972,0,0,0,0,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(427,'2015-03-14 14:56:57','2015-03-14 14:56:57',1,30001101,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(428,'2015-03-14 14:56:57','2015-10-11 16:46:35',1,30004774,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,2,0,0,0,0,0,0,0,0),(429,'2015-03-14 14:56:57','2015-10-11 16:46:35',1,30004670,0,0,0,0,0,0,0,0,0,0,2,2,0,0,0,0,0,0,0,0,0,0,0,0),(430,'2015-03-14 14:56:57','2015-10-11 16:46:35',1,30004573,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,0,0),(431,'2015-03-14 14:56:57','2015-03-14 14:56:57',1,30003290,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(432,'2015-03-14 14:56:57','2015-10-11 16:46:35',1,30003321,0,1,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(433,'2015-03-14 14:56:57','2015-03-14 14:56:57',1,30003267,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(434,'2015-03-14 14:56:57','2015-03-14 14:56:57',1,30004412,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(435,'2015-03-14 14:56:57','2015-10-11 16:46:35',1,30004455,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(436,'2015-03-14 14:56:57','2015-10-11 16:46:35',1,30004039,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(437,'2015-03-14 14:56:57','2015-03-14 14:56:57',1,30000705,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(438,'2015-03-14 14:56:57','2015-10-11 16:46:35',1,30001241,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,1),(439,'2015-03-14 14:56:57','2015-03-14 14:56:57',1,30004865,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(440,'2015-03-14 14:56:57','2015-03-14 14:56:57',1,30003630,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(441,'2015-03-14 14:56:57','2015-03-14 14:56:57',1,30004374,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(442,'2015-03-14 14:56:57','2015-03-14 14:56:57',1,30001478,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(443,'2015-03-14 14:56:57','2015-03-14 14:56:57',1,30003302,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(444,'2015-03-14 14:56:57','2015-10-11 16:46:35',1,30005151,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0),(445,'2015-03-14 14:56:57','2015-10-11 16:46:35',1,30002883,0,0,0,0,0,0,0,0,0,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0),(446,'2015-03-14 14:56:57','2015-03-14 14:56:57',1,30003346,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(447,'2015-03-14 14:56:57','2015-03-14 14:56:57',1,30001641,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(448,'2015-03-14 14:56:57','2015-03-14 14:56:57',1,30000912,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(449,'2015-03-14 14:56:57','2015-03-14 14:56:57',1,30003354,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(450,'2015-03-14 14:56:57','2015-10-11 16:46:35',1,30000453,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,0,0,0),(451,'2015-03-14 14:56:57','2015-03-14 14:56:57',1,30004344,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(452,'2015-03-14 14:56:57','2015-10-11 16:46:35',1,30000989,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0),(453,'2015-03-14 14:56:57','2015-03-14 14:56:57',1,30002480,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(454,'2015-03-14 14:56:57','2015-03-14 14:56:57',1,30001480,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(455,'2015-03-14 14:56:57','2015-03-14 14:56:57',1,30000908,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(456,'2015-03-14 14:56:57','2015-03-14 14:56:57',1,30004643,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(457,'2015-03-14 14:56:57','2015-03-14 14:56:57',1,30003350,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(458,'2015-03-14 14:56:57','2015-03-14 14:56:57',1,30001850,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(459,'2015-03-14 14:56:57','2015-10-11 16:46:35',1,30004212,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1),(460,'2015-03-14 14:56:57','2015-03-14 14:56:57',1,30004675,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(461,'2015-03-14 14:56:57','2015-03-14 14:56:57',1,30001104,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(462,'2015-03-14 14:56:57','2015-03-14 14:56:57',1,30004761,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(463,'2015-03-14 14:56:57','2015-03-14 14:56:57',1,30000844,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(464,'2015-03-14 14:56:57','2015-03-14 14:56:57',1,30000562,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(465,'2015-03-14 14:56:57','2015-10-11 16:46:35',1,30000554,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(466,'2015-03-14 14:56:57','2015-03-14 14:56:57',1,30004168,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(467,'2015-03-14 14:56:57','2015-03-14 14:56:57',1,30001014,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(468,'2015-03-14 14:56:57','2015-03-14 14:56:57',1,30004175,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(469,'2015-03-14 14:56:57','2015-10-11 16:46:35',1,30004193,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(470,'2015-03-14 14:56:57','2015-03-14 14:56:57',1,30004445,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(471,'2015-03-14 14:56:57','2015-03-14 14:56:57',1,30000637,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(472,'2015-03-14 14:56:57','2015-03-14 14:56:57',1,30002501,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(473,'2015-03-14 14:56:57','2015-10-11 16:46:35',1,30000992,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(474,'2015-03-14 14:56:57','2015-03-14 14:56:57',1,30002591,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(475,'2015-03-14 14:56:57','2015-03-14 14:56:57',1,30000581,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(476,'2015-03-14 14:56:57','2015-03-14 14:56:57',1,30004185,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(477,'2015-03-14 14:56:57','2015-03-14 14:56:57',1,30000820,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(478,'2015-03-14 14:56:57','2015-03-14 14:56:57',1,30003720,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(479,'2015-03-14 14:56:57','2015-10-11 16:46:35',1,30002291,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,6,0,0),(480,'2015-03-14 14:56:57','2015-03-14 14:56:57',1,30001951,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(481,'2015-03-14 14:56:57','2015-03-14 14:56:57',1,30000442,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(482,'2015-03-14 14:56:57','2015-03-14 14:56:57',1,30003223,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(483,'2015-03-14 14:56:57','2015-10-11 16:46:35',1,30003738,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,1,1,0,0),(484,'2015-03-14 14:56:57','2015-10-11 16:46:35',1,30003348,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0),(485,'2015-03-14 14:56:57','2015-03-14 14:56:57',1,30001532,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(486,'2015-03-14 14:56:57','2015-10-11 16:46:35',1,30004345,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0),(487,'2015-03-14 14:56:57','2015-03-14 14:56:57',1,30000741,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(488,'2015-03-14 14:56:57','2015-03-14 14:56:57',1,30000609,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(489,'2015-03-14 14:56:57','2015-10-11 16:46:35',1,30000468,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(490,'2015-03-14 14:56:57','2015-10-11 16:46:35',1,30004477,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0),(491,'2015-03-14 14:56:57','2015-10-11 16:46:35',1,30000564,1,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(492,'2015-03-14 14:56:57','2015-03-14 14:56:57',1,30004067,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(493,'2015-03-14 14:56:57','2015-03-14 14:56:57',1,30002950,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(494,'2015-03-14 14:56:57','2015-03-14 14:56:57',1,30005115,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(495,'2015-03-14 14:56:57','2015-10-11 16:46:35',1,30000299,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,2,0,0,0),(496,'2015-03-14 14:56:57','2015-03-14 14:56:57',1,30002313,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(497,'2015-03-14 14:56:57','2015-03-14 14:56:57',1,30004008,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(498,'2015-03-14 14:56:57','2015-10-11 16:46:35',1,30005152,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0),(499,'2015-03-14 14:56:57','2015-03-14 14:56:57',1,30001626,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(500,'2015-03-14 14:56:57','2015-10-11 16:46:35',1,30002927,0,0,11,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(501,'2015-03-14 14:56:57','2015-03-14 14:56:57',1,30004508,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(502,'2015-03-14 14:56:57','2015-03-14 14:56:57',1,30004432,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(503,'2015-03-14 14:56:57','2015-03-14 14:56:57',1,30000218,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(504,'2015-03-14 14:56:57','2015-10-11 16:46:35',1,30005110,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(505,'2015-03-14 14:56:57','2015-10-11 16:46:35',1,30002005,24,1,4,2,0,0,1,1,1,0,0,0,0,1,0,1,1,5,1,1,0,1,1,1),(506,'2015-03-14 14:56:57','2015-03-14 14:56:57',1,30005111,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(507,'2015-03-14 14:56:57','2015-03-14 14:56:57',1,30001503,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(508,'2015-03-14 14:56:57','2015-03-14 14:56:57',1,30004053,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(509,'2015-03-14 14:56:57','2015-10-11 16:46:35',1,30005114,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,0,0),(510,'2015-03-14 14:56:57','2015-03-14 14:56:57',1,30003640,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(511,'2015-03-14 14:56:57','2015-10-11 16:46:35',1,30003280,0,1,1,0,1,0,0,0,0,5,3,0,1,4,0,0,0,1,1,4,1,0,1,1),(512,'2015-03-14 14:56:57','2015-03-14 14:56:57',1,30004486,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(513,'2015-03-14 14:56:57','2015-03-14 14:56:57',1,30000706,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(514,'2015-03-14 14:56:57','2015-03-14 14:56:57',1,30001759,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(515,'2015-03-14 14:56:57','2015-03-14 14:56:57',1,30001603,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(516,'2015-03-14 14:56:57','2015-10-11 16:46:35',1,30002167,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,2,0,0,0),(517,'2015-03-14 14:56:57','2015-10-11 16:46:35',1,30004810,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(518,'2015-03-14 14:56:57','2015-03-14 14:56:57',1,30001167,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(519,'2015-03-14 14:56:57','2015-03-14 14:56:57',1,30000728,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(520,'2015-03-14 14:56:57','2015-10-11 16:46:35',1,30000557,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,0,0,0,0,0),(521,'2015-03-14 14:56:57','2015-03-14 14:56:57',1,30001184,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(522,'2015-03-14 14:56:57','2015-03-14 14:56:57',1,30001492,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(523,'2015-03-14 14:56:57','2015-03-14 14:56:57',1,30004347,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(524,'2015-03-14 14:56:57','2015-10-11 16:46:35',1,30003745,0,1,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,1,2,0,0),(525,'2015-03-14 14:56:57','2015-03-14 14:56:57',1,30001488,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(526,'2015-03-14 14:56:57','2015-03-14 14:56:57',1,30003145,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(527,'2015-03-14 14:56:57','2015-03-14 14:56:57',1,30003316,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(528,'2015-03-14 14:56:57','2015-10-11 16:46:35',1,30001111,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(529,'2015-03-14 14:56:57','2015-10-11 16:46:35',1,30003956,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(530,'2015-03-14 14:56:57','2015-03-14 14:56:57',1,30003315,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(531,'2015-03-14 14:56:57','2015-03-14 14:56:57',1,30000513,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(532,'2015-03-14 14:56:57','2015-03-14 14:56:57',1,30001092,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(533,'2015-03-14 14:56:57','2015-03-14 14:56:57',1,30001317,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(534,'2015-03-14 14:56:57','2015-03-14 14:56:57',1,30004923,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(535,'2015-03-14 14:56:57','2015-10-11 16:46:35',1,30000289,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(536,'2015-03-14 14:56:57','2015-03-14 14:56:57',1,30000985,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(537,'2015-03-14 14:56:57','2015-03-14 14:56:57',1,30004604,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(538,'2015-03-14 14:56:57','2015-03-14 14:56:57',1,30000791,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(539,'2015-03-14 14:56:57','2015-10-11 16:46:35',1,30002593,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,1,0),(540,'2015-03-14 14:56:57','2015-03-14 14:56:57',1,30001624,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(541,'2015-03-14 14:56:57','2015-03-14 14:56:57',1,30001134,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(542,'2015-03-14 14:56:57','2015-03-14 14:56:57',1,30002623,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(543,'2015-03-14 14:56:57','2015-03-14 14:56:57',1,30000764,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(544,'2015-03-14 14:56:57','2015-03-14 14:56:57',1,30000371,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(545,'2015-03-14 14:56:57','2015-10-11 16:46:35',1,30001257,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,1,1,0,0,0,0,0),(546,'2015-03-14 14:56:57','2015-10-11 16:46:35',1,30003270,0,0,0,1,0,0,1,0,0,0,1,1,0,0,1,0,0,0,0,0,0,1,0,0),(547,'2015-03-14 14:56:57','2015-03-14 14:56:57',1,30002619,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(548,'2015-03-14 14:56:57','2015-03-14 14:56:57',1,30000907,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(549,'2015-03-14 14:56:57','2015-03-14 14:56:57',1,30003139,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(550,'2015-03-14 14:56:57','2015-03-14 14:56:57',1,30004591,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(551,'2015-03-14 14:56:57','2015-03-14 14:56:57',1,30000402,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(552,'2015-03-14 14:56:57','2015-10-11 16:46:35',1,30002855,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,0,0,0),(553,'2015-03-14 14:56:57','2015-10-11 16:46:35',1,30002025,0,2,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0),(554,'2015-03-14 14:56:57','2015-10-11 16:46:35',1,30002459,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(555,'2015-03-14 14:56:57','2015-10-11 16:46:35',1,30001290,0,0,0,2,0,0,0,0,1,0,0,0,0,0,0,0,0,0,1,1,1,0,0,0),(556,'2015-03-14 14:56:57','2015-10-11 16:46:35',1,30004442,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0),(557,'2015-03-14 14:56:57','2015-03-14 14:56:57',1,30004073,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(558,'2015-03-14 14:56:57','2015-03-14 14:56:57',1,30000457,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(559,'2015-03-14 14:56:57','2015-03-14 14:56:57',1,30003648,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(560,'2015-03-14 14:56:57','2015-10-11 16:46:35',1,30004740,0,0,0,0,0,0,1,0,0,3,1,1,0,3,1,0,0,0,1,0,6,0,0,2),(561,'2015-03-14 14:56:57','2015-03-14 14:56:57',1,30005128,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(562,'2015-03-14 14:56:57','2015-03-14 14:56:57',1,30000364,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(563,'2015-03-14 14:56:57','2015-10-11 16:46:35',1,30001930,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(564,'2015-03-14 14:56:57','2015-03-14 14:56:57',1,30003303,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(565,'2015-03-14 14:56:57','2015-10-11 16:46:35',1,30004070,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0),(566,'2015-03-14 14:56:57','2015-10-11 16:46:35',1,30002446,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0),(567,'2015-03-14 14:56:57','2015-03-14 14:56:57',1,30003179,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(568,'2015-03-14 14:56:57','2015-03-14 14:56:57',1,30004908,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(569,'2015-03-14 14:56:57','2015-03-14 14:56:57',1,30001545,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(570,'2015-03-14 14:56:57','2015-03-14 14:56:57',1,30003210,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(571,'2015-03-14 14:56:57','2015-03-14 14:56:57',1,30001339,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(572,'2015-03-14 14:56:57','2015-03-14 14:56:57',1,30001067,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(573,'2015-03-14 14:56:57','2015-03-14 14:56:57',1,30002832,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(574,'2015-03-14 14:56:57','2015-10-11 16:46:35',1,30004608,0,0,0,0,0,0,0,0,1,0,0,0,1,2,0,0,1,0,1,1,1,0,0,0),(575,'2015-03-14 14:56:57','2015-03-14 14:56:57',1,30001574,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(576,'2015-03-14 14:56:57','2015-03-14 14:56:57',1,30001276,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(577,'2015-03-14 14:56:57','2015-10-11 16:46:35',1,30000967,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1),(578,'2015-03-14 14:56:57','2015-03-14 14:56:57',1,30000258,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(579,'2015-03-14 14:56:57','2015-10-11 16:46:35',1,30001197,0,1,2,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1),(580,'2015-03-14 14:56:57','2015-10-11 16:46:35',1,30001907,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0),(581,'2015-03-14 14:56:57','2015-03-14 14:56:57',1,30000297,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(582,'2015-03-14 14:56:57','2015-03-14 14:56:57',1,30002465,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(583,'2015-03-14 14:56:57','2015-03-14 14:56:57',1,30004792,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(584,'2015-03-14 14:56:57','2015-03-14 14:56:57',1,30004057,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(585,'2015-03-14 14:56:57','2015-03-14 14:56:57',1,30001328,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(586,'2015-03-14 14:56:57','2015-03-14 14:56:57',1,30001075,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(587,'2015-03-14 14:56:57','2015-10-11 16:46:35',1,30004525,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(588,'2015-03-14 14:56:57','2015-10-11 16:46:35',1,30004925,0,0,0,0,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(589,'2015-03-14 14:56:57','2015-03-14 14:56:57',1,30004585,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(590,'2015-03-14 14:56:57','2015-03-14 14:56:57',1,30001608,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(591,'2015-03-14 14:56:57','2015-03-14 14:56:57',1,30000525,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(592,'2015-03-14 14:56:57','2015-03-14 14:56:57',1,30000919,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(593,'2015-03-14 14:56:57','2015-10-11 16:46:35',1,30000759,0,0,0,0,0,0,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(594,'2015-03-14 14:56:57','2015-03-14 14:56:57',1,30000224,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(595,'2015-03-14 14:56:57','2015-10-11 16:46:35',1,30004790,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0),(596,'2015-03-14 14:56:57','2015-10-11 16:46:35',1,30000487,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,0,0,0),(597,'2015-03-14 14:56:57','2015-03-14 14:56:57',1,30000287,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(598,'2015-03-14 14:56:57','2015-03-14 14:56:57',1,30001588,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(599,'2015-03-14 14:56:57','2015-10-11 16:46:35',1,30000217,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(600,'2015-03-14 14:56:57','2015-03-14 14:56:57',1,30003217,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(601,'2015-03-14 14:56:57','2015-03-14 14:56:57',1,30001884,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(602,'2015-03-14 14:56:57','2015-10-11 16:46:35',1,30001057,0,0,0,0,0,0,0,0,0,0,2,3,1,0,0,0,0,0,0,0,0,0,0,0),(603,'2015-03-14 14:56:57','2015-03-14 14:56:57',1,30002158,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(604,'2015-03-14 14:56:57','2015-03-14 14:56:57',1,30000726,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(605,'2015-03-14 14:56:57','2015-03-14 14:56:57',1,30004893,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(606,'2015-03-14 14:56:57','2015-03-14 14:56:57',1,30002848,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(607,'2015-03-14 14:56:57','2015-10-11 16:46:35',1,30000787,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(608,'2015-03-14 14:56:57','2015-03-14 14:56:57',1,30000333,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(609,'2015-03-14 14:56:57','2015-03-14 14:56:57',1,30000827,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(610,'2015-03-14 14:56:57','2015-10-11 16:46:35',1,30004429,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(611,'2015-03-14 14:56:57','2015-10-11 16:46:35',1,30004620,0,0,0,0,0,0,0,0,0,0,0,0,4,0,0,0,0,2,0,0,0,0,1,2),(612,'2015-03-14 14:56:57','2015-10-11 16:46:35',1,30004045,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,1,0),(613,'2015-03-14 14:56:57','2015-10-11 16:46:35',1,30000483,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0),(614,'2015-03-14 14:56:57','2015-10-11 16:46:35',1,30000773,0,0,0,0,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(615,'2015-03-14 14:56:57','2015-03-14 14:56:57',1,30004816,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(616,'2015-03-14 14:56:57','2015-10-11 16:46:35',1,30002125,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(617,'2015-03-14 14:56:57','2015-03-14 14:56:57',1,30005145,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(618,'2015-03-14 14:56:57','2015-03-14 14:56:57',1,30001639,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(619,'2015-03-14 14:56:57','2015-03-14 14:56:57',1,30004635,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(620,'2015-03-14 14:56:57','2015-10-11 16:46:35',1,30004616,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,2,0,0,0),(621,'2015-03-14 14:56:57','2015-03-14 14:56:57',1,30000360,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(622,'2015-03-14 14:56:57','2015-03-14 14:56:57',1,30002046,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(623,'2015-03-14 14:56:57','2015-03-14 14:56:57',1,30003671,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(624,'2015-03-14 14:56:57','2015-10-11 16:46:35',1,30000840,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0),(625,'2015-03-14 14:56:57','2015-10-11 16:46:35',1,30001817,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0),(626,'2015-03-14 14:56:57','2015-03-14 14:56:57',1,30000323,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(627,'2015-03-14 14:56:57','2015-03-14 14:56:57',1,30004768,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(628,'2015-03-14 14:56:57','2015-10-11 16:46:35',1,30003948,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(629,'2015-03-14 14:56:57','2015-03-14 14:56:57',1,30001457,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(630,'2015-03-14 14:56:57','2015-03-14 14:56:57',1,30000955,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(631,'2015-03-14 14:56:57','2015-03-14 14:56:57',1,30005176,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(632,'2015-03-14 14:56:57','2015-03-14 14:56:57',1,30000606,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(633,'2015-03-14 14:56:57','2015-03-14 14:56:57',1,30004872,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(634,'2015-03-14 14:56:57','2015-03-14 14:56:57',1,30000745,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(635,'2015-03-14 14:56:57','2015-03-14 14:56:57',1,30004926,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(636,'2015-03-14 14:56:57','2015-10-11 16:46:35',1,30001218,0,0,0,0,0,0,0,0,0,2,1,1,0,1,1,1,3,0,0,0,0,0,1,0),(637,'2015-03-14 14:56:57','2015-03-14 14:56:57',1,30000383,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(638,'2015-03-14 14:56:57','2015-03-14 14:56:57',1,30005138,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(639,'2015-03-14 14:56:57','2015-03-14 14:56:57',1,30004860,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(640,'2015-03-14 14:56:57','2015-10-11 16:46:35',1,30001232,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,2,0,2,0,0,0,0),(641,'2015-03-14 14:56:57','2015-03-14 14:56:57',1,30005146,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(642,'2015-03-14 14:56:57','2015-03-14 14:56:57',1,30000353,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(643,'2015-03-14 14:56:57','2015-10-11 16:46:35',1,30003165,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,1,0,0,0,0,0,0),(644,'2015-03-14 14:56:57','2015-10-11 16:46:35',1,30000943,1,7,0,0,0,0,0,0,0,3,4,6,2,0,3,2,0,2,0,0,8,3,1,6),(645,'2015-03-14 14:56:57','2015-03-14 14:56:57',1,30001845,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(646,'2015-03-14 14:56:57','2015-10-11 16:46:35',1,30002016,0,0,16,3,3,5,22,0,0,0,0,0,0,0,0,0,0,0,0,0,2,0,1,2),(647,'2015-03-14 14:56:57','2015-03-14 14:56:57',1,30001141,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(648,'2015-03-14 14:56:57','2015-03-14 14:56:57',1,30002929,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(649,'2015-03-14 14:56:57','2015-10-11 16:46:35',1,30004788,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,0,0,0),(650,'2015-03-14 14:56:57','2015-10-11 16:46:35',1,30003945,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(651,'2015-03-14 14:56:57','2015-03-14 14:56:57',1,30004587,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(652,'2015-03-14 14:56:57','2015-03-14 14:56:57',1,30002031,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(653,'2015-03-14 14:56:57','2015-10-11 16:46:35',1,30002177,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0),(654,'2015-03-14 14:56:57','2015-03-14 14:56:57',1,30003778,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(655,'2015-03-14 14:56:57','2015-03-14 14:56:57',1,30001071,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(656,'2015-03-14 14:56:57','2015-03-14 14:56:57',1,30004351,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(657,'2015-03-14 14:56:57','2015-03-14 14:56:57',1,30004869,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(658,'2015-03-14 14:56:57','2015-03-14 14:56:57',1,30001768,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(659,'2015-03-14 14:56:57','2015-03-14 14:56:57',1,30004862,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(660,'2015-03-14 14:56:57','2015-03-14 14:56:57',1,30000614,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(661,'2015-03-14 14:56:57','2015-03-14 14:56:57',1,30004001,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(662,'2015-03-14 14:56:57','2015-03-14 14:56:57',1,30003282,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(663,'2015-03-14 14:56:57','2015-03-14 14:56:57',1,30002484,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(664,'2015-03-14 14:56:57','2015-03-14 14:56:57',1,30002293,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(665,'2015-03-14 14:56:57','2015-03-14 14:56:57',1,30000542,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(666,'2015-03-14 14:56:57','2015-03-14 14:56:57',1,30000334,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(667,'2015-03-14 14:56:57','2015-10-11 16:46:35',1,30003985,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,0,0,0,0,0,0,0),(668,'2015-03-14 14:56:57','2015-03-14 14:56:57',1,30000628,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(669,'2015-03-14 14:56:57','2015-10-11 16:46:35',1,30000312,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(670,'2015-03-14 14:56:57','2015-03-14 14:56:57',1,30001514,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(671,'2015-03-14 14:56:57','2015-03-14 14:56:57',1,30001627,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(672,'2015-03-14 14:56:57','2015-10-11 16:46:35',1,30000648,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,1,0,0,0,0,0,0,0),(673,'2015-03-14 14:56:57','2015-03-14 14:56:57',1,30000775,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(674,'2015-03-14 14:56:57','2015-03-14 14:56:57',1,30004025,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(675,'2015-03-14 14:56:57','2015-10-11 16:46:35',1,30001745,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0),(676,'2015-03-14 14:56:57','2015-03-14 14:56:57',1,30003189,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(677,'2015-03-14 14:56:57','2015-10-11 16:46:35',1,30002924,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0),(678,'2015-03-14 14:56:57','2015-03-14 14:56:57',1,30001132,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(679,'2015-03-14 14:56:57','2015-10-11 16:46:35',1,30002885,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0),(680,'2015-03-14 14:56:57','2015-03-14 14:56:57',1,30004190,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(681,'2015-03-14 14:56:57','2015-10-11 16:46:35',1,30004640,0,0,0,0,0,0,0,0,0,1,3,2,0,1,0,1,1,0,0,0,0,0,0,1),(682,'2015-03-14 14:56:57','2015-03-14 14:56:57',1,30000770,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(683,'2015-03-14 14:56:57','2015-03-14 14:56:57',1,30002346,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(684,'2015-03-14 14:56:57','2015-03-14 14:56:57',1,30002314,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(685,'2015-03-14 14:56:57','2015-03-14 14:56:57',1,30001053,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(686,'2015-03-14 14:56:57','2015-10-11 16:46:35',1,30001219,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0),(687,'2015-03-14 14:56:57','2015-03-14 14:56:57',1,30005164,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(688,'2015-03-14 14:56:57','2015-10-11 16:46:35',1,30003974,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1),(689,'2015-03-14 14:56:57','2015-03-14 14:56:57',1,30003771,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(690,'2015-03-14 14:56:57','2015-03-14 14:56:57',1,30001144,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(691,'2015-03-14 14:56:57','2015-03-14 14:56:57',1,30001298,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(692,'2015-03-14 14:56:57','2015-03-14 14:56:57',1,30000731,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(693,'2015-03-14 14:56:57','2015-03-14 14:56:57',1,30000910,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(694,'2015-03-14 14:56:57','2015-10-11 16:46:35',1,30000748,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(695,'2015-03-14 14:56:57','2015-10-11 16:46:35',1,30004574,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(696,'2015-03-14 14:56:57','2015-03-14 14:56:57',1,30004781,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(697,'2015-03-14 14:56:57','2015-03-14 14:56:57',1,30000494,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(698,'2015-03-14 14:56:57','2015-03-14 14:56:57',1,30000771,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(699,'2015-03-14 14:56:57','2015-10-11 16:46:35',1,30001017,0,5,5,2,1,1,5,4,2,4,1,0,0,1,0,1,1,0,2,5,1,0,0,0),(700,'2015-03-14 14:56:57','2015-03-14 14:56:57',1,30001776,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(701,'2015-03-14 14:56:57','2015-10-11 16:46:35',1,30002354,0,1,0,0,0,0,0,0,0,0,2,1,0,0,0,0,0,1,0,0,0,1,0,0),(702,'2015-03-14 14:56:57','2015-10-11 16:46:35',1,30001887,0,0,0,0,0,0,0,0,0,0,2,1,0,0,0,0,1,0,0,0,0,2,0,0),(703,'2015-03-14 14:56:57','2015-03-14 14:56:57',1,30004942,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(704,'2015-03-14 14:56:57','2015-10-11 16:46:35',1,30002442,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(705,'2015-03-14 14:56:57','2015-03-14 14:56:57',1,30000391,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(706,'2015-03-14 14:56:57','2015-10-11 16:46:35',1,30001879,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0),(707,'2015-03-14 14:56:57','2015-10-11 16:46:35',1,30000652,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,0,0,0,0,0,0,0,0,0),(708,'2015-03-14 14:56:57','2015-03-14 14:56:57',1,30001561,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(709,'2015-03-14 14:56:57','2015-10-11 16:46:35',1,30003750,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,88,0,0,1),(710,'2015-03-14 14:56:57','2015-10-11 16:46:35',1,30000697,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,1,1,0,0,0,2,0,0,0),(711,'2015-03-14 14:56:57','2015-03-14 14:56:57',1,30004681,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(712,'2015-03-14 14:56:57','2015-10-11 16:46:35',1,30003702,3,0,0,1,1,1,1,0,0,0,1,1,0,0,0,0,0,0,0,0,0,0,0,0),(713,'2015-03-14 14:56:57','2015-10-11 16:46:35',1,30004012,1,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(714,'2015-03-14 14:56:57','2015-10-11 16:46:35',1,30004056,2,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(715,'2015-03-14 14:56:57','2015-03-14 14:56:57',1,30001805,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(716,'2015-03-14 14:56:57','2015-10-11 16:46:35',1,30004771,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0),(717,'2015-03-14 14:56:57','2015-03-14 14:56:57',1,30001523,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(718,'2015-03-14 14:56:57','2015-10-11 16:46:35',1,30002004,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0),(719,'2015-03-14 14:56:57','2015-03-14 14:56:57',1,30002930,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(720,'2015-03-14 14:56:57','2015-10-11 16:46:35',1,30000242,0,0,0,0,2,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0),(721,'2015-03-14 14:56:57','2015-03-14 14:56:57',1,30001614,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(722,'2015-03-14 14:56:57','2015-10-11 16:46:35',1,30003320,0,0,0,1,0,0,0,0,0,0,3,0,3,5,0,1,1,0,0,0,0,0,0,0),(723,'2015-03-14 14:56:57','2015-10-11 16:46:35',1,30003695,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0),(724,'2015-03-14 14:56:57','2015-03-14 14:56:57',1,30004760,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(725,'2015-03-14 14:56:57','2015-10-11 16:46:35',1,30002171,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(726,'2015-03-14 14:56:57','2015-10-11 16:46:35',1,30000942,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,3,2,0,0),(727,'2015-03-14 14:56:57','2015-10-11 16:46:35',1,30001877,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0),(728,'2015-03-14 14:56:57','2015-03-14 14:56:57',1,30000469,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(729,'2015-03-14 14:56:57','2015-03-14 14:56:57',1,30002868,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(730,'2015-03-14 14:56:57','2015-10-11 16:46:35',1,30001273,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,1),(731,'2015-03-14 14:56:57','2015-03-14 14:56:57',1,30000939,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(732,'2015-03-14 14:56:57','2015-10-11 16:46:35',1,30004059,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,0,0,0,0,0,0,0),(733,'2015-03-14 14:56:57','2015-03-14 14:56:57',1,30004219,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(734,'2015-03-14 14:56:57','2015-10-11 16:46:35',1,30001279,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(735,'2015-03-14 14:56:57','2015-10-11 16:46:35',1,30001166,0,0,0,0,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0),(736,'2015-03-14 14:56:57','2015-10-11 16:46:35',1,30004879,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,0,0,0,0,0,0,0),(737,'2015-03-14 14:56:57','2015-10-11 16:46:35',1,30004397,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0),(738,'2015-03-14 14:56:57','2015-03-14 14:56:57',1,30001600,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(739,'2015-03-14 14:56:57','2015-03-14 14:56:57',1,30001484,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(740,'2015-03-14 14:56:57','2015-10-11 16:46:35',1,30005148,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(741,'2015-03-14 14:56:57','2015-10-11 16:46:35',1,30003704,0,0,0,0,0,0,0,0,0,0,0,0,0,3,1,1,0,0,0,0,1,1,0,0),(742,'2015-03-14 14:56:57','2015-03-14 14:56:57',1,30000318,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(743,'2015-03-14 14:56:57','2015-03-14 14:56:57',1,30003961,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(744,'2015-03-14 14:56:57','2015-10-11 16:46:35',1,30002590,0,0,0,0,0,0,0,0,0,4,0,0,1,0,0,0,0,0,0,0,0,0,0,0),(745,'2015-03-14 14:56:57','2015-03-14 14:56:57',1,30002450,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(746,'2015-03-14 14:56:57','2015-10-11 16:46:35',1,30004826,0,0,0,0,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(747,'2015-03-14 14:56:57','2015-03-14 14:56:57',1,30000454,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(748,'2015-03-14 14:56:57','2015-10-11 16:46:35',1,30001266,0,0,0,0,0,0,0,0,0,0,0,0,1,0,1,4,6,1,0,0,0,0,5,0),(749,'2015-03-14 14:56:57','2015-10-11 16:46:35',1,30004557,0,0,0,0,0,0,0,0,0,1,1,0,0,0,1,1,0,0,0,0,0,0,1,0),(750,'2015-03-14 14:56:57','2015-03-14 14:56:57',1,30004201,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(751,'2015-03-14 14:56:57','2015-03-14 14:56:57',1,30002159,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(752,'2015-03-14 14:56:57','2015-03-14 14:56:57',1,30005168,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(753,'2015-03-14 14:56:57','2015-03-14 14:56:57',1,30004409,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(754,'2015-03-14 14:56:57','2015-10-11 16:46:35',1,30001814,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1),(755,'2015-03-14 14:56:57','2015-03-14 14:56:57',1,30001609,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(756,'2015-03-14 14:56:57','2015-03-14 14:56:57',1,30003253,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(757,'2015-03-14 14:56:57','2015-03-14 14:56:57',1,30000994,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(758,'2015-03-14 14:56:57','2015-03-14 14:56:57',1,30001312,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(759,'2015-03-14 14:56:57','2015-03-14 14:56:57',1,30001284,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(760,'2015-03-14 14:56:57','2015-10-11 16:46:35',1,30001990,0,0,0,1,3,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(761,'2015-03-14 14:56:57','2015-10-11 16:46:35',1,30002895,0,0,0,0,0,0,0,0,0,0,0,0,0,2,0,0,0,0,2,0,3,9,0,0),(762,'2015-03-14 14:56:57','2015-03-14 14:56:57',1,30002131,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(763,'2015-03-14 14:56:57','2015-03-14 14:56:57',1,30000271,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(764,'2015-03-14 14:56:57','2015-10-11 16:46:35',1,30005130,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0),(765,'2015-03-14 14:56:57','2015-10-11 16:46:35',1,30003301,0,0,3,0,0,0,3,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(766,'2015-03-14 14:56:57','2015-03-14 14:56:57',1,30000392,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(767,'2015-03-14 14:56:57','2015-03-14 14:56:57',1,30003373,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(768,'2015-03-14 14:56:57','2015-10-11 16:46:35',1,30004914,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(769,'2015-03-14 14:56:57','2015-03-14 14:56:57',1,30000616,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(770,'2015-03-14 14:56:57','2015-03-14 14:56:57',1,30000724,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(771,'2015-03-14 14:56:57','2015-03-14 14:56:57',1,30003979,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(772,'2015-03-14 14:56:57','2015-03-14 14:56:57',1,30002949,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(773,'2015-03-14 14:56:57','2015-03-14 14:56:57',1,30004629,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(774,'2015-03-14 14:56:57','2015-03-14 14:56:57',1,30004646,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(775,'2015-03-14 14:56:57','2015-03-14 14:56:57',1,30003954,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(776,'2015-03-14 14:56:57','2015-03-14 14:56:57',1,30002284,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(777,'2015-03-14 14:56:57','2015-10-11 16:46:35',1,30004366,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(778,'2015-03-14 14:56:57','2015-03-14 14:56:57',1,30001079,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(779,'2015-03-14 14:56:57','2015-03-14 14:56:57',1,30003249,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(780,'2015-03-14 14:56:57','2015-10-11 16:46:35',1,30000875,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(781,'2015-03-14 14:56:57','2015-03-14 14:56:57',1,30004796,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(782,'2015-03-14 14:56:57','2015-03-14 14:56:57',1,30003338,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(783,'2015-03-14 14:56:57','2015-10-11 16:46:35',1,30002589,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,1,0,1,0,0),(784,'2015-03-14 14:56:57','2015-03-14 14:56:57',1,30001306,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(785,'2015-03-14 14:56:57','2015-03-14 14:56:57',1,30005180,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(786,'2015-03-14 14:56:57','2015-03-14 14:56:57',1,30000429,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(787,'2015-03-14 14:56:57','2015-03-14 14:56:57',1,30004169,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(788,'2015-03-14 14:56:57','2015-10-11 16:46:35',1,30001154,0,0,0,0,0,0,0,1,7,16,3,6,3,0,3,5,3,0,3,6,11,4,11,2),(789,'2015-03-14 14:56:57','2015-03-14 14:56:57',1,30000723,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(790,'2015-03-14 14:56:57','2015-10-11 16:46:35',1,30004884,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0),(791,'2015-03-14 14:56:57','2015-03-14 14:56:57',1,30000399,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(792,'2015-03-14 14:56:57','2015-03-14 14:56:57',1,30000458,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(793,'2015-03-14 14:56:57','2015-03-14 14:56:57',1,30001128,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(794,'2015-03-14 14:56:57','2015-03-14 14:56:57',1,30004780,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(795,'2015-03-14 14:56:57','2015-03-14 14:56:57',1,30004582,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(796,'2015-03-14 14:56:57','2015-10-11 16:46:35',1,30001886,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0),(797,'2015-03-14 14:56:57','2015-10-11 16:46:35',1,30000800,0,0,0,0,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(798,'2015-03-14 14:56:57','2015-10-11 16:46:35',1,30000247,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0),(799,'2015-03-14 14:56:57','2015-03-14 14:56:57',1,30002287,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(800,'2015-03-14 14:56:57','2015-10-11 16:46:35',1,30002472,0,0,0,0,0,0,0,0,0,0,0,0,0,3,0,0,0,2,0,0,0,0,0,0),(801,'2015-03-14 14:56:57','2015-10-11 16:46:35',1,30000668,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1),(802,'2015-03-14 14:56:57','2015-03-14 14:56:57',1,30002339,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(803,'2015-03-14 14:56:57','2015-03-14 14:56:57',1,30004569,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(804,'2015-03-14 14:56:57','2015-10-11 16:46:35',1,30001840,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,1),(805,'2015-03-14 14:56:57','2015-03-14 14:56:57',1,30001796,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(806,'2015-03-14 14:56:57','2015-03-14 14:56:57',1,30004022,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(807,'2015-03-14 14:56:57','2015-03-14 14:56:57',1,30000883,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(808,'2015-03-14 14:56:57','2015-10-11 16:46:35',1,30000969,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,1,0,2,1,2),(809,'2015-03-14 14:56:57','2015-03-14 14:56:57',1,30004672,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(810,'2015-03-14 14:56:57','2015-03-14 14:56:57',1,30003341,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(811,'2015-03-14 14:56:57','2015-10-11 16:46:35',1,30001857,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,1),(812,'2015-03-14 14:56:57','2015-10-11 16:46:35',1,30003707,1,5,2,0,0,0,0,0,0,2,0,1,0,55,2,2,0,1,2,2,1,0,3,3),(813,'2015-03-14 14:56:57','2015-10-11 16:46:35',1,30005137,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0),(814,'2015-03-14 14:56:57','2015-03-14 14:56:57',1,30000412,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(815,'2015-03-14 14:56:57','2015-03-14 14:56:57',1,30001764,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(816,'2015-03-14 14:56:57','2015-10-11 16:46:35',1,30002618,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0),(817,'2015-03-14 14:56:57','2015-03-14 14:56:57',1,30004179,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(818,'2015-03-14 14:56:57','2015-10-11 16:46:35',1,30004619,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,0,0,0,0,0,0),(819,'2015-03-14 14:56:57','2015-03-14 14:56:57',1,30003650,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(820,'2015-03-14 14:56:57','2015-10-11 16:46:35',1,30003319,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,1),(821,'2015-03-14 14:56:57','2015-03-14 14:56:57',1,30000587,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(822,'2015-03-14 14:56:57','2015-03-14 14:56:57',1,30003977,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(823,'2015-03-14 14:56:57','2015-03-14 14:56:57',1,30004544,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(824,'2015-03-14 14:56:57','2015-03-14 14:56:57',1,30000491,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(825,'2015-03-14 14:56:57','2015-03-14 14:56:57',1,30001193,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(826,'2015-03-14 14:56:57','2015-03-14 14:56:57',1,30000702,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(827,'2015-03-14 14:56:57','2015-03-14 14:56:57',1,30001283,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(828,'2015-03-14 14:56:57','2015-10-11 16:46:35',1,30003967,0,0,0,0,0,0,0,0,3,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0),(829,'2015-03-14 14:56:57','2015-10-11 16:46:35',1,30000476,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0),(830,'2015-03-14 14:56:57','2015-03-14 14:56:57',1,30003100,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(831,'2015-03-14 14:56:57','2015-03-14 14:56:57',1,30000852,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(832,'2015-03-14 14:56:57','2015-03-14 14:56:57',1,30001954,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(833,'2015-03-14 14:56:57','2015-10-11 16:46:35',1,30004708,0,1,1,0,0,0,0,0,0,3,0,0,1,1,0,0,0,0,0,0,0,0,0,4),(834,'2015-03-14 14:56:57','2015-03-14 14:56:57',1,30004359,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(835,'2015-03-14 14:56:57','2015-03-14 14:56:57',1,30001870,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(836,'2015-03-14 14:56:57','2015-03-14 14:56:57',1,30004605,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(837,'2015-03-14 14:56:57','2015-10-11 16:46:35',1,30001537,0,0,3,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(838,'2015-03-14 14:56:57','2015-10-11 16:46:35',1,30000314,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0),(839,'2015-03-14 14:56:57','2015-03-14 14:56:57',1,30004850,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(840,'2015-03-14 14:56:57','2015-10-11 16:46:35',1,30003335,0,2,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(841,'2015-03-14 14:56:57','2015-03-14 14:56:57',1,30000769,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(842,'2015-03-14 14:56:57','2015-10-11 16:46:35',1,30001210,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0),(843,'2015-03-14 14:56:57','2015-03-14 14:56:57',1,30000362,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(844,'2015-03-14 14:56:57','2015-10-11 16:46:35',1,30001950,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(845,'2015-03-14 14:56:57','2015-03-14 14:56:57',1,30002836,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(846,'2015-03-14 14:56:57','2015-03-14 14:56:57',1,30003305,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(847,'2015-03-14 14:56:57','2015-03-14 14:56:57',1,30001077,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(848,'2015-03-14 14:56:57','2015-10-11 16:46:35',1,30003125,0,0,0,0,0,0,0,0,0,0,0,0,1,2,0,0,0,0,0,0,0,0,0,0),(849,'2015-03-14 14:56:57','2015-03-14 14:56:57',1,30002611,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(850,'2015-03-14 14:56:57','2015-03-14 14:56:57',1,30005167,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(851,'2015-03-14 14:56:57','2015-03-14 14:56:57',1,30003655,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(852,'2015-03-14 14:56:57','2015-10-11 16:46:35',1,30003942,0,1,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,0,0,0,0,0,0,0),(853,'2015-03-14 14:56:57','2015-10-11 16:46:35',1,30000794,0,0,0,0,0,0,1,0,0,0,0,0,0,0,2,0,0,0,0,0,0,0,0,0),(854,'2015-03-14 14:56:57','2015-10-11 16:46:35',1,30004550,0,0,0,0,0,0,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(855,'2015-03-14 14:56:57','2015-10-11 16:46:35',1,30003944,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0),(856,'2015-03-14 14:56:57','2015-03-14 14:56:57',1,30000409,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(857,'2015-03-14 14:56:57','2015-03-14 14:56:57',1,30000317,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(858,'2015-03-14 14:56:57','2015-03-14 14:56:57',1,30002113,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(859,'2015-03-14 14:56:57','2015-03-14 14:56:57',1,30002952,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(860,'2015-03-14 14:56:57','2015-03-14 14:56:57',1,30001896,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(861,'2015-03-14 14:56:57','2015-10-11 16:46:35',1,30003150,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0),(862,'2015-03-14 14:56:57','2015-03-14 14:56:57',1,30004558,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(863,'2015-03-14 14:56:57','2015-03-14 14:56:57',1,30000259,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(864,'2015-03-14 14:56:57','2015-03-14 14:56:57',1,30001993,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(865,'2015-03-14 14:56:57','2015-10-11 16:46:35',1,30005092,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0),(866,'2015-03-14 14:56:57','2015-03-14 14:56:57',1,30001459,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(867,'2015-03-14 14:56:57','2015-03-14 14:56:57',1,30003331,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(868,'2015-03-14 14:56:57','2015-03-14 14:56:57',1,30004690,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(869,'2015-03-14 14:56:57','2015-03-14 14:56:57',1,30001285,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(870,'2015-03-14 14:56:57','2015-10-11 16:46:35',1,30001396,1,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(871,'2015-03-14 14:56:57','2015-03-14 14:56:57',1,30001022,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(872,'2015-03-14 14:56:57','2015-03-14 14:56:57',1,30003293,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(873,'2015-03-14 14:56:57','2015-03-14 14:56:57',1,30000914,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(874,'2015-03-14 14:56:57','2015-03-14 14:56:57',1,30000147,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(875,'2015-03-14 14:56:57','2015-03-14 14:56:57',1,30001694,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(876,'2015-03-14 14:56:57','2015-03-14 14:56:57',1,30003512,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(877,'2015-03-14 14:56:57','2015-03-14 14:56:57',1,30004090,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(878,'2015-03-14 14:56:57','2015-03-14 14:56:57',1,30005062,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(879,'2015-03-14 14:56:57','2015-03-14 14:56:57',1,30004831,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(880,'2015-03-14 14:56:57','2015-03-14 14:56:57',1,30002713,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(881,'2015-03-14 14:56:57','2015-10-11 16:46:35',1,30000105,0,0,0,0,0,0,0,0,0,0,0,0,0,2,0,0,0,0,1,0,0,0,0,0),(882,'2015-03-14 14:56:57','2015-03-14 14:56:57',1,30005254,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(883,'2015-03-14 14:56:57','2015-03-14 14:56:57',1,30013410,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(884,'2015-03-14 14:56:57','2015-10-11 16:46:35',1,30002507,0,0,1,1,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0),(885,'2015-03-14 14:56:57','2015-10-11 16:46:35',1,30004984,2,1,0,1,0,0,0,2,1,0,0,3,2,0,2,1,0,0,0,0,3,2,0,1),(886,'2015-03-14 14:56:57','2015-03-14 14:56:57',1,30002160,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(887,'2015-03-14 14:56:57','2015-03-14 14:56:57',1,30004563,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(888,'2015-03-14 14:56:57','2015-03-14 14:56:57',1,30005266,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(889,'2015-03-14 14:56:57','2015-03-14 14:56:57',1,30003028,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(890,'2015-03-14 14:56:57','2015-03-14 14:56:57',1,30004981,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(891,'2015-03-14 14:56:57','2015-10-11 16:46:35',1,30002478,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,6),(892,'2015-03-14 14:56:57','2015-03-14 14:56:57',1,30002892,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(893,'2015-03-14 14:56:57','2015-10-11 16:46:35',1,30003832,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,0,0,0,0,0,0,0),(894,'2015-03-14 14:56:57','2015-10-11 16:46:35',1,30001648,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,1),(895,'2015-03-14 14:56:57','2015-03-14 14:56:57',1,30015305,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(896,'2015-03-14 14:56:57','2015-03-14 14:56:57',1,30001717,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(897,'2015-03-14 14:56:57','2015-03-14 14:56:57',1,30003059,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(898,'2015-03-14 14:56:57','2015-10-11 16:46:35',1,30003439,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0),(899,'2015-03-14 14:56:57','2015-03-14 14:56:57',1,30002268,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(900,'2015-03-14 14:56:57','2015-03-14 14:56:57',1,30002710,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(901,'2015-03-14 14:56:57','2015-10-11 16:46:35',1,30005003,0,3,0,0,0,0,1,0,1,0,1,0,0,1,2,2,0,0,2,0,1,1,1,1),(902,'2015-03-14 14:56:57','2015-03-14 14:56:57',1,30002704,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(903,'2015-03-14 14:56:57','2015-03-14 14:56:57',1,30005021,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(904,'2015-03-14 14:56:57','2015-03-14 14:56:57',1,30002639,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(905,'2015-03-14 14:56:57','2015-03-14 14:56:57',1,30002393,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(906,'2015-03-14 14:56:57','2015-03-14 14:56:57',1,30002383,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(907,'2015-03-14 14:56:57','2015-03-14 14:56:57',1,30002419,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(908,'2015-03-14 14:56:57','2015-03-14 14:56:57',1,30005006,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(909,'2015-03-14 14:56:57','2015-10-11 16:46:35',1,30005008,1,1,1,1,0,2,0,0,2,4,1,2,3,1,0,1,1,0,0,0,1,4,1,2),(910,'2015-03-14 14:56:57','2015-03-14 14:56:57',1,30003585,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(911,'2015-03-14 14:56:57','2015-03-14 14:56:57',1,30002729,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(912,'2015-03-14 14:56:57','2015-03-14 14:56:57',1,30002107,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(913,'2015-03-14 14:56:57','2015-10-11 16:46:35',1,30003535,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(914,'2015-03-14 14:56:57','2015-10-11 16:46:35',1,30002587,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(915,'2015-03-14 14:56:57','2015-03-14 14:56:57',1,30003903,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(916,'2015-03-14 14:56:57','2015-03-14 14:56:57',1,30004271,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(917,'2015-03-14 14:56:57','2015-03-14 14:56:57',1,30001539,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(918,'2015-03-14 14:56:57','2015-03-14 14:56:57',1,30005292,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(919,'2015-03-14 14:56:57','2015-03-14 14:56:57',1,30003600,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(920,'2015-03-14 14:56:57','2015-03-14 14:56:57',1,30000760,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(921,'2015-03-14 14:56:57','2015-03-14 14:56:57',1,30002933,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(922,'2015-03-14 14:56:57','2015-03-14 14:56:57',1,30000061,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(923,'2015-03-14 14:56:57','2015-03-14 14:56:57',1,30002220,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(924,'2015-03-14 14:56:57','2015-10-11 16:46:35',1,30003862,0,0,0,1,0,0,1,0,1,3,0,1,1,6,0,0,4,0,0,0,1,5,0,3),(925,'2015-03-14 14:56:57','2015-10-11 16:46:35',1,30003787,4,1,1,0,0,0,0,1,0,0,0,1,0,1,0,1,1,0,1,1,5,0,1,0),(926,'2015-03-14 14:56:57','2015-10-11 16:46:35',1,30002658,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0),(927,'2015-03-14 14:56:57','2015-03-14 14:56:57',1,30003404,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(928,'2015-03-14 14:56:57','2015-10-11 16:46:35',1,30004323,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0),(929,'2015-03-14 14:56:57','2015-03-14 14:56:57',1,30000691,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(930,'2015-03-14 14:56:57','2015-10-11 16:46:35',1,30002247,0,0,0,1,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0),(931,'2015-03-14 14:56:57','2015-03-14 14:56:57',1,30004082,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(932,'2015-03-14 14:56:57','2015-10-11 16:46:35',1,30005196,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0),(933,'2015-03-14 14:56:57','2015-03-14 14:56:57',1,30001697,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(934,'2015-03-14 14:56:57','2015-03-14 14:56:57',1,30002266,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(935,'2015-03-14 14:56:57','2015-03-14 14:56:57',1,30004279,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(936,'2015-03-14 14:56:57','2015-03-14 14:56:57',1,30001649,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(937,'2015-03-14 14:56:57','2015-03-14 14:56:57',1,30001741,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(938,'2015-03-14 14:56:57','2015-03-14 14:56:57',1,30045328,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(939,'2015-03-14 14:56:57','2015-10-11 16:46:35',1,30000125,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0),(940,'2015-03-14 14:56:57','2015-03-14 14:56:57',1,30002752,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(941,'2015-03-14 14:56:57','2015-03-14 14:56:57',1,30000933,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(942,'2015-03-14 14:56:57','2015-03-14 14:56:57',1,30003015,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(943,'2015-03-14 14:56:57','2015-03-14 14:56:57',1,30002289,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(944,'2015-03-14 14:56:57','2015-10-11 16:46:35',1,30005307,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(945,'2015-03-14 14:56:57','2015-03-14 14:56:57',1,30001418,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(946,'2015-03-14 14:56:57','2015-03-14 14:56:57',1,30002753,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(947,'2015-03-14 14:56:57','2015-03-14 14:56:57',1,30003566,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(948,'2015-03-14 14:56:57','2015-03-14 14:56:57',1,30002736,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(949,'2015-03-14 14:56:57','2015-03-14 14:56:57',1,30003895,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(950,'2015-03-14 14:56:57','2015-10-11 16:46:35',1,30000185,0,0,0,0,0,1,0,0,0,0,1,1,0,0,0,0,0,0,0,1,0,0,1,0),(951,'2015-03-14 14:56:57','2015-10-11 16:46:35',1,30001404,0,1,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,0,0,0,0,0,0,0),(952,'2015-03-14 14:56:57','2015-03-14 14:56:57',1,30000166,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(953,'2015-03-14 14:56:57','2015-03-14 14:56:57',1,30002222,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(954,'2015-03-14 14:56:57','2015-03-14 14:56:57',1,30001431,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(955,'2015-03-14 14:56:57','2015-10-11 16:46:35',1,30045340,2,0,3,2,0,0,0,0,0,0,3,3,0,2,1,0,0,1,0,1,6,0,0,1),(956,'2015-03-14 14:56:57','2015-03-14 14:56:57',1,30001414,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(957,'2015-03-14 14:56:57','2015-03-14 14:56:57',1,30001289,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(958,'2015-03-14 14:56:57','2015-10-11 16:46:35',1,30004717,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(959,'2015-03-14 14:56:57','2015-03-14 14:56:57',1,30004277,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(960,'2015-03-14 14:56:57','2015-03-14 14:56:57',1,30005098,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(961,'2015-03-14 14:56:57','2015-03-14 14:56:57',1,30003291,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(962,'2015-03-14 14:56:57','2015-03-14 14:56:57',1,30002992,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(963,'2015-03-14 14:56:57','2015-10-11 16:46:35',1,30000088,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,0,0,0,0,0,0,0),(964,'2015-03-14 14:56:57','2015-03-14 14:56:57',1,30004147,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(965,'2015-03-14 14:56:57','2015-03-14 14:56:57',1,30000065,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(966,'2015-03-14 14:56:57','2015-03-14 14:56:57',1,30002197,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(967,'2015-03-14 14:56:57','2015-03-14 14:56:57',1,30015042,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(968,'2015-03-14 14:56:57','2015-10-11 16:46:35',1,30011407,1,0,0,0,0,0,0,0,0,1,1,1,0,0,4,4,0,0,0,2,1,1,0,0),(969,'2015-03-14 14:56:57','2015-10-11 16:46:35',1,30045342,2,1,3,1,2,1,2,0,1,0,3,3,0,6,0,0,3,2,0,1,3,5,2,2),(970,'2015-03-14 14:56:57','2015-03-14 14:56:57',1,30003479,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(971,'2015-03-14 14:56:57','2015-03-14 14:56:57',1,30000178,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(972,'2015-03-14 14:56:57','2015-10-11 16:46:35',1,30000200,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1),(973,'2015-03-14 14:56:57','2015-10-11 16:46:35',1,30001382,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(974,'2015-03-14 14:56:57','2015-10-11 16:46:35',1,30000163,0,0,2,0,0,0,1,1,0,0,0,0,0,0,0,0,0,1,0,0,1,0,0,0),(975,'2015-03-14 14:56:57','2015-03-14 14:56:57',1,30000003,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(976,'2015-03-14 14:56:57','2015-03-14 14:56:57',1,30001534,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(977,'2015-03-14 14:56:57','2015-10-11 16:46:35',1,30004578,0,0,0,0,0,0,0,0,0,7,0,0,0,0,1,0,0,0,0,0,0,0,0,0),(978,'2015-03-14 14:56:57','2015-10-11 16:46:35',1,30002652,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1),(979,'2015-03-14 14:56:57','2015-10-11 16:46:35',1,30003042,0,0,0,0,0,0,1,0,0,1,0,0,1,0,1,1,0,0,0,0,1,0,0,0),(980,'2015-03-14 14:56:57','2015-10-11 16:46:35',1,30002512,1,1,2,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(981,'2015-03-14 14:56:57','2015-10-11 16:46:35',1,30005225,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0),(982,'2015-03-14 14:56:57','2015-10-11 16:46:35',1,30003854,0,0,0,1,0,0,0,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(983,'2015-03-14 14:56:57','2015-03-14 14:56:57',1,30002338,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(984,'2015-03-14 14:56:57','2015-03-14 14:56:57',1,30003415,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(985,'2015-03-14 14:56:57','2015-10-11 16:46:35',1,30002216,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0),(986,'2015-03-14 14:56:57','2015-10-11 16:46:35',1,30003464,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(987,'2015-03-14 14:56:57','2015-03-14 14:56:57',1,30003379,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(988,'2015-03-14 14:56:57','2015-10-11 16:46:35',1,30003837,0,0,0,3,0,0,0,0,0,0,0,0,0,0,0,1,2,0,0,0,1,1,2,1),(989,'2015-03-14 14:56:57','2015-03-14 14:56:57',1,30003416,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(990,'2015-03-14 14:56:57','2015-03-14 14:56:57',1,30005302,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(991,'2015-03-14 14:56:57','2015-03-14 14:56:57',1,30005304,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(992,'2015-03-14 14:56:57','2015-10-11 16:46:35',1,30003380,0,0,0,0,0,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(993,'2015-03-14 14:56:57','2015-10-11 16:46:35',1,30003811,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(994,'2015-03-14 14:56:57','2015-10-11 16:46:35',1,30004972,3,0,1,1,0,0,0,0,0,1,1,0,0,0,2,2,2,0,0,2,0,1,0,0),(995,'2015-03-14 14:56:57','2015-10-11 16:46:35',1,30002698,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,1,0,0,0,0,0),(996,'2015-03-14 14:56:57','2015-10-11 16:46:35',1,30002754,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(997,'2015-03-14 14:56:57','2015-03-14 14:56:57',1,30002712,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(998,'2015-03-14 14:56:57','2015-10-11 16:46:35',1,30003521,2,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(999,'2015-03-14 14:56:57','2015-03-14 14:56:57',1,30000034,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(1000,'2015-03-14 14:56:57','2015-10-11 16:46:35',1,30004995,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(1001,'2015-03-14 14:56:57','2015-03-14 14:56:57',1,30005009,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(1002,'2015-03-14 14:56:57','2015-03-14 14:56:57',1,30002664,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(1003,'2015-03-14 14:56:57','2015-03-14 14:56:57',1,30002727,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(1004,'2015-03-14 14:56:57','2015-10-11 16:46:35',1,30003850,0,0,1,1,1,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,2),(1005,'2015-03-14 14:56:57','2015-10-11 16:46:35',1,30003800,0,0,0,0,0,0,2,0,0,1,2,0,0,0,0,0,0,0,0,0,0,0,0,0),(1006,'2015-03-14 14:56:57','2015-03-14 14:56:57',1,30001730,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(1007,'2015-03-14 14:56:57','2015-10-11 16:46:35',1,30003841,0,0,0,1,0,0,1,0,0,1,0,0,0,0,1,0,0,0,0,0,0,0,0,0),(1008,'2015-03-14 14:56:57','2015-03-14 14:56:57',1,30002678,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(1009,'2015-03-14 14:56:57','2015-10-11 16:46:35',1,30002407,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0),(1010,'2015-03-14 14:56:57','2015-03-14 14:56:57',1,30003389,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(1011,'2015-03-14 14:56:57','2015-03-14 14:56:57',1,30003917,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(1012,'2015-03-14 14:56:57','2015-10-11 16:46:35',1,30002537,0,1,2,1,3,4,5,1,1,0,1,0,0,4,2,0,0,0,0,1,1,2,3,1),(1013,'2015-03-14 14:56:57','2015-03-14 14:56:57',1,30004983,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(1014,'2015-03-14 14:56:57','2015-10-11 16:46:35',1,30002187,4,11,20,14,7,8,12,4,5,7,9,11,8,7,6,13,14,3,6,7,11,12,9,6),(1015,'2015-03-14 14:56:57','2015-03-14 14:56:57',1,30003848,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(1016,'2015-03-14 14:56:57','2015-03-14 14:56:57',1,30003012,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(1017,'2015-03-14 14:56:57','2015-10-11 16:46:35',1,30002644,0,0,1,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0),(1018,'2015-03-14 14:56:57','2015-03-14 14:56:57',1,30005036,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(1019,'2015-03-14 14:56:57','2015-03-14 14:56:57',1,30002511,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(1020,'2015-03-14 14:56:57','2015-10-11 16:46:35',1,30005035,0,0,6,0,0,1,0,0,0,10,0,0,0,1,5,3,2,0,0,3,0,1,0,0),(1021,'2015-03-14 14:56:57','2015-10-11 16:46:35',1,30002547,0,1,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,0,0,0,0,0,0),(1022,'2015-03-14 14:56:57','2015-03-14 14:56:57',1,30002055,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(1023,'2015-03-14 14:56:57','2015-03-14 14:56:57',1,30003480,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(1024,'2015-03-14 14:56:57','2015-10-11 16:46:35',1,30005329,0,0,0,1,0,0,0,0,0,0,0,0,0,1,1,1,0,0,0,0,0,1,0,0),(1025,'2015-03-14 14:56:57','2015-03-14 14:56:57',1,30003847,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(1026,'2015-03-14 14:56:57','2015-03-14 14:56:57',1,30000058,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(1027,'2015-03-14 14:56:57','2015-10-11 16:46:35',1,30001392,0,0,0,0,0,0,0,0,0,2,1,1,0,0,0,0,0,0,1,0,0,0,0,0),(1028,'2015-03-14 14:56:57','2015-10-11 16:46:35',1,30005311,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(1029,'2015-03-14 14:56:57','2015-03-14 14:56:57',1,30004527,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(1030,'2015-03-14 14:56:57','2015-03-14 14:56:57',1,30003552,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(1031,'2015-03-14 14:56:57','2015-03-14 14:56:57',1,30005279,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(1032,'2015-03-14 14:56:57','2015-03-14 14:56:57',1,30004301,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(1033,'2015-03-14 14:56:57','2015-10-11 16:46:35',1,30003398,0,0,0,0,0,0,0,0,0,0,3,3,0,0,0,0,0,0,0,0,0,0,0,0),(1034,'2015-03-14 14:56:57','2015-10-11 16:46:35',1,30003840,0,2,1,0,2,2,0,0,0,0,2,1,0,0,0,1,1,0,0,1,0,1,2,1),(1035,'2015-03-14 14:56:57','2015-10-11 16:46:35',1,30003571,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,1,0,0,0),(1036,'2015-03-14 14:56:57','2015-10-11 16:46:35',1,30003485,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0),(1037,'2015-03-14 14:56:57','2015-03-14 14:56:57',1,30005028,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(1038,'2015-03-14 14:56:57','2015-03-14 14:56:57',1,30005049,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(1039,'2015-03-14 14:56:57','2015-03-14 14:56:57',1,30005022,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(1040,'2015-03-14 14:56:57','2015-10-11 16:46:35',1,30003062,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0),(1041,'2015-03-14 14:56:57','2015-10-11 16:46:35',1,30005264,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(1042,'2015-03-14 14:56:57','2015-03-14 14:56:57',1,30003046,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(1043,'2015-03-14 14:56:57','2015-10-11 16:46:35',1,30002051,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0),(1044,'2015-03-14 14:56:57','2015-03-14 14:56:57',1,30003515,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(1045,'2015-03-14 14:56:57','2015-03-14 14:56:57',1,30001439,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(1046,'2015-03-14 14:56:57','2015-03-14 14:56:57',1,30001647,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(1047,'2015-03-14 14:56:57','2015-10-11 16:46:35',1,30003071,0,0,1,1,0,0,0,0,0,0,0,0,1,0,1,1,0,0,1,1,0,0,0,0),(1048,'2015-03-14 14:56:57','2015-03-14 14:56:57',1,30025042,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(1049,'2015-03-14 14:56:57','2015-03-14 14:56:57',1,30004989,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(1050,'2015-03-14 14:56:57','2015-10-11 16:46:35',1,30003791,0,0,0,1,0,0,0,2,0,0,0,1,0,0,1,1,0,0,0,0,0,0,0,0),(1051,'2015-03-14 14:56:57','2015-03-14 14:56:57',1,30002776,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(1052,'2015-03-14 14:56:57','2015-03-14 14:56:57',1,30005326,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(1053,'2015-03-14 14:56:57','2015-03-14 14:56:57',1,30004291,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(1054,'2015-03-14 14:56:57','2015-03-14 14:56:57',1,30005309,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(1055,'2015-03-14 14:56:57','2015-10-11 16:46:35',1,30004104,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,0,0,0,0,0,0,0),(1056,'2015-03-14 14:56:57','2015-10-11 16:46:35',1,30002081,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(1057,'2015-03-14 14:56:57','2015-03-14 14:56:57',1,30003440,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(1058,'2015-03-14 14:56:57','2015-03-14 14:56:57',1,30000132,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(1059,'2015-03-14 14:56:57','2015-03-14 14:56:57',1,30002669,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(1060,'2015-03-14 14:56:57','2015-03-14 14:56:57',1,30003426,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(1061,'2015-03-14 14:56:57','2015-10-11 16:46:35',1,30005261,0,0,1,1,2,2,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,0,0),(1062,'2015-03-14 14:56:57','2015-03-14 14:56:57',1,30001357,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(1063,'2015-03-14 14:56:57','2015-10-11 16:46:35',1,30003051,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(1064,'2015-03-14 14:56:57','2015-10-11 16:46:35',1,30002805,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0),(1065,'2015-03-14 14:56:57','2015-10-11 16:46:35',1,30005249,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0),(1066,'2015-03-14 14:56:57','2015-03-14 14:56:57',1,30005252,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(1067,'2015-03-14 14:56:57','2015-03-14 14:56:57',1,30004006,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(1068,'2015-03-14 14:56:57','2015-10-11 16:46:35',1,30001216,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,1,0,1,0,0,0,0,0,0),(1069,'2015-03-14 14:56:57','2015-03-14 14:56:57',1,30021407,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(1070,'2015-03-14 14:56:57','2015-10-11 16:46:35',1,30002453,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0),(1071,'2015-03-14 14:56:57','2015-10-11 16:46:35',1,30005216,0,0,3,0,0,0,0,0,0,0,0,0,2,1,0,0,0,0,0,0,1,0,0,1),(1072,'2015-03-14 14:56:57','2015-03-14 14:56:57',1,30001114,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(1073,'2015-03-14 14:56:57','2015-03-14 14:56:57',1,30004079,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(1074,'2015-03-14 14:56:57','2015-03-14 14:56:57',1,30004124,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(1075,'2015-03-14 14:56:57','2015-03-14 14:56:57',1,30004576,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(1076,'2015-03-14 14:56:57','2015-10-11 16:46:35',1,30005019,0,0,1,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(1077,'2015-03-14 14:56:57','2015-03-14 14:56:57',1,30002565,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(1078,'2015-03-14 14:56:57','2015-03-14 14:56:57',1,30003656,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(1079,'2015-03-14 14:56:57','2015-03-14 14:56:57',1,30001740,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(1080,'2015-03-14 14:56:57','2015-10-11 16:46:35',1,30002551,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0),(1081,'2015-03-14 14:56:57','2015-03-14 14:56:57',1,30002817,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(1082,'2015-03-14 14:56:57','2015-10-11 16:46:35',1,30000092,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0),(1083,'2015-03-14 14:56:57','2015-10-11 16:46:35',1,30004994,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(1084,'2015-03-14 14:56:57','2015-03-14 14:56:57',1,30003590,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(1085,'2015-03-14 14:56:57','2015-03-14 14:56:57',1,30002977,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(1086,'2015-03-14 14:56:57','2015-10-11 16:46:35',1,30003487,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(1087,'2015-03-14 14:56:57','2015-03-14 14:56:57',1,30004669,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(1088,'2015-03-14 14:56:57','2015-03-14 14:56:57',1,30003824,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(1089,'2015-03-14 14:56:57','2015-10-11 16:46:35',1,30002702,0,0,0,0,0,0,0,0,0,1,0,0,0,1,0,0,0,0,0,0,0,0,0,1),(1090,'2015-03-14 14:56:57','2015-10-11 16:46:35',1,30003030,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,0,0,0,0,0,1,0),(1091,'2015-03-14 14:56:57','2015-10-11 16:46:35',1,30002058,0,0,0,0,0,0,0,0,0,3,2,1,0,0,1,0,3,0,2,3,3,0,0,2),(1092,'2015-03-14 14:56:57','2015-10-11 16:46:35',1,30002648,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,0,0,0,0,0,0,0),(1093,'2015-03-14 14:56:57','2015-10-11 16:46:35',1,30003852,0,0,0,1,1,0,1,1,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,1),(1094,'2015-03-14 14:56:57','2015-03-14 14:56:57',1,30004118,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(1095,'2015-03-14 14:56:57','2015-03-14 14:56:57',1,30002231,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(1096,'2015-03-14 14:56:57','2015-03-14 14:56:57',1,30000099,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(1097,'2015-03-14 14:56:57','2015-03-14 14:56:57',1,30002244,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(1098,'2015-03-14 14:56:57','2015-10-11 16:46:35',1,30000656,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0),(1099,'2015-03-14 14:56:57','2015-10-11 16:46:35',1,30002080,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0),(1100,'2015-03-14 14:56:57','2015-03-14 14:56:57',1,30005239,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(1101,'2015-03-14 14:56:57','2015-03-14 14:56:57',1,30003595,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(1102,'2015-03-14 14:56:57','2015-03-14 14:56:57',1,30001704,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(1103,'2015-03-14 14:56:57','2015-03-14 14:56:57',1,30003411,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(1104,'2015-03-14 14:56:57','2015-03-14 14:56:57',1,30003374,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(1105,'2015-03-14 14:56:57','2015-03-14 14:56:57',1,30002205,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(1106,'2015-03-14 14:56:57','2015-03-14 14:56:57',1,30003009,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(1107,'2015-03-14 14:56:57','2015-10-11 16:46:35',1,30002066,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,1,0,4,0,1,0,2),(1108,'2015-03-14 14:56:57','2015-10-11 16:46:35',1,30000112,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(1109,'2015-03-14 14:56:57','2015-10-11 16:46:35',1,30005001,0,0,1,0,0,0,1,0,0,0,0,0,0,0,1,1,1,0,0,0,0,1,0,0),(1110,'2015-03-14 14:56:57','2015-10-11 16:46:35',1,30002064,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,1,0),(1111,'2015-03-14 14:56:57','2015-03-14 14:56:57',1,30002240,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(1112,'2015-03-14 14:56:57','2015-10-11 16:46:35',1,30005330,0,0,0,0,1,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0),(1113,'2015-03-14 14:56:57','2015-03-14 14:56:57',1,30002253,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(1114,'2015-03-14 14:56:57','2015-10-11 16:46:35',1,30002687,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0),(1115,'2015-03-14 14:56:57','2015-10-11 16:46:35',1,30003556,1,0,0,1,0,0,0,0,0,0,0,0,0,1,0,0,0,1,0,0,0,1,0,0),(1116,'2015-03-14 14:56:57','2015-10-11 16:46:35',1,30002278,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(1117,'2015-03-14 14:56:57','2015-03-14 14:56:57',1,30001381,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(1118,'2015-03-14 14:56:57','2015-03-14 14:56:57',1,30003007,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(1119,'2015-03-14 14:56:57','2015-03-14 14:56:57',1,30002078,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(1120,'2015-03-14 14:56:57','2015-03-14 14:56:57',1,30005086,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(1121,'2015-03-14 14:56:57','2015-10-11 16:46:35',1,30002960,0,0,0,1,0,1,0,0,1,0,0,0,0,1,0,0,0,0,0,0,0,0,0,1),(1122,'2015-03-14 14:56:57','2015-03-14 14:56:57',1,30003885,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(1123,'2015-03-14 14:56:57','2015-03-14 14:56:57',1,30005065,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(1124,'2015-03-14 14:56:57','2015-03-14 14:56:57',1,30003921,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(1125,'2015-03-14 14:56:57','2015-10-11 16:46:35',1,30000012,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0),(1126,'2015-03-14 14:56:57','2015-10-11 16:46:35',1,30045332,1,0,4,1,0,0,0,0,0,0,1,1,1,0,0,0,0,0,0,0,0,2,0,0),(1127,'2015-03-14 14:56:57','2015-03-14 14:56:57',1,30005251,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(1128,'2015-03-14 14:56:57','2015-03-14 14:56:57',1,30001689,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(1129,'2015-03-14 14:56:57','2015-10-11 16:46:35',1,30002084,0,0,0,0,0,0,0,0,0,0,0,0,0,2,0,0,0,2,0,0,0,0,0,1),(1130,'2015-03-14 14:56:57','2015-10-11 16:46:35',1,30001708,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0),(1131,'2015-03-14 14:56:57','2015-03-14 14:56:57',1,30003384,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(1132,'2015-03-14 14:56:57','2015-03-14 14:56:57',1,30000084,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(1133,'2015-03-14 14:56:57','2015-03-14 14:56:57',1,30002978,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(1134,'2015-03-14 14:56:57','2015-10-11 16:46:35',1,30003491,2,1,0,3,0,2,0,0,0,0,1,2,0,2,0,0,0,2,0,0,0,1,0,1),(1135,'2015-03-14 14:56:57','2015-03-14 14:56:57',1,30003890,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(1136,'2015-03-14 14:56:57','2015-10-11 16:46:35',1,30045311,0,0,1,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0),(1137,'2015-03-14 14:56:57','2015-10-11 16:46:35',1,30003919,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,0,0,0),(1138,'2015-03-14 14:56:57','2015-10-11 16:46:35',1,30003886,0,0,0,0,0,0,0,0,0,1,1,2,0,0,0,0,0,0,0,0,0,0,0,0),(1139,'2015-03-14 14:56:57','2015-10-11 16:46:35',1,30005214,0,0,36,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(1140,'2015-03-14 14:56:57','2015-03-14 14:56:57',1,30000095,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(1141,'2015-03-14 14:56:57','2015-03-14 14:56:57',1,30004093,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(1142,'2015-03-14 14:56:57','2015-10-11 16:46:35',1,30002272,0,1,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(1143,'2015-03-14 14:56:57','2015-03-14 14:56:57',1,30004156,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(1144,'2015-03-14 14:56:57','2015-10-11 16:46:35',1,30000075,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(1145,'2015-03-14 14:56:57','2015-10-11 16:46:35',1,30005224,2,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0),(1146,'2015-03-14 14:56:57','2015-03-14 14:56:57',1,30001723,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(1147,'2015-03-14 14:56:57','2015-03-14 14:56:57',1,30002724,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(1148,'2015-03-14 14:56:57','2015-10-11 16:46:35',1,30000113,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,0,0,0,0),(1149,'2015-03-14 14:56:57','2015-03-14 14:56:57',1,30045323,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(1150,'2015-03-14 14:56:57','2015-03-14 14:56:57',1,30001419,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(1151,'2015-03-14 14:56:57','2015-03-14 14:56:57',1,30005077,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(1152,'2015-03-14 14:56:57','2015-03-14 14:56:57',1,30002557,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(1153,'2015-03-14 14:56:57','2015-10-11 16:46:35',1,30003031,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0),(1154,'2015-03-14 14:56:57','2015-10-11 16:46:35',1,30003856,0,0,0,0,0,0,1,0,0,0,1,2,0,0,0,0,0,0,0,0,0,0,0,0),(1155,'2015-03-14 14:56:57','2015-03-14 14:56:57',1,30002701,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(1156,'2015-03-14 14:56:57','2015-03-14 14:56:57',1,30002695,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(1157,'2015-03-14 14:56:57','2015-10-11 16:46:35',1,30002489,2,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,2,0,0),(1158,'2015-03-14 14:56:57','2015-03-14 14:56:57',1,30005024,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(1159,'2015-03-14 14:56:57','2015-10-11 16:46:35',1,30003038,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(1160,'2015-03-14 14:56:57','2015-10-11 16:46:35',1,30002389,0,0,0,0,0,0,0,0,0,1,0,1,0,0,0,0,2,0,0,0,0,0,0,0),(1161,'2015-03-14 14:56:57','2015-10-11 16:46:35',1,30005010,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0),(1162,'2015-03-14 14:56:57','2015-03-14 14:56:57',1,30003455,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(1163,'2015-03-14 14:56:57','2015-03-14 14:56:57',1,30001678,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(1164,'2015-03-14 14:56:57','2015-03-14 14:56:57',1,30004654,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(1165,'2015-03-14 14:56:57','2015-03-14 14:56:57',1,30005197,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(1166,'2015-03-14 14:56:57','2015-10-11 16:46:35',1,30005004,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,1),(1167,'2015-03-14 14:56:57','2015-10-11 16:46:35',1,30003273,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0),(1168,'2015-03-14 14:56:57','2015-03-14 14:56:57',1,30002834,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(1169,'2015-03-14 14:56:57','2015-10-11 16:46:35',1,30003827,0,0,0,1,1,1,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,1,0),(1170,'2015-03-14 14:56:57','2015-03-14 14:56:57',1,30002709,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(1171,'2015-03-14 14:56:57','2015-03-14 14:56:57',1,30003849,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(1172,'2015-03-14 14:56:57','2015-03-14 14:56:57',1,30002684,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(1173,'2015-03-14 14:56:57','2015-03-14 14:56:57',1,30002395,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(1174,'2015-03-14 14:56:57','2015-10-11 16:46:35',1,30002641,2,0,0,0,4,4,0,1,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0),(1175,'2015-03-14 14:56:57','2015-10-11 16:46:35',1,30002542,1,0,2,2,0,1,0,0,0,1,0,0,0,2,1,0,0,0,1,2,0,4,0,1),(1176,'2015-03-14 14:56:57','2015-03-14 14:56:57',1,30002680,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(1177,'2015-03-14 14:56:57','2015-03-14 14:56:57',1,30003818,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(1178,'2015-03-14 14:56:57','2015-10-11 16:46:35',1,30001398,3,0,0,0,0,0,1,0,0,0,0,0,1,0,5,5,0,1,1,0,1,1,0,1),(1179,'2015-03-14 14:56:57','2015-10-11 16:46:35',1,30002059,0,0,1,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,1,0),(1180,'2015-03-14 14:56:57','2015-03-14 14:56:57',1,30002657,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(1181,'2015-03-14 14:56:57','2015-10-11 16:46:35',1,30003801,0,2,0,3,1,0,8,1,4,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0),(1182,'2015-03-14 14:56:57','2015-10-11 16:46:35',1,30002716,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(1183,'2015-03-14 14:56:57','2015-03-14 14:56:57',1,30003915,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(1184,'2015-03-14 14:56:57','2015-03-14 14:56:57',1,30002561,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(1185,'2015-03-14 14:56:57','2015-10-11 16:46:35',1,30001361,0,0,0,1,0,1,0,0,1,1,2,0,0,1,0,0,1,0,0,0,1,0,0,0),(1186,'2015-03-14 14:56:57','2015-03-14 14:56:57',1,30003821,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(1187,'2015-03-14 14:56:57','2015-03-14 14:56:57',1,30002523,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(1188,'2015-03-14 14:56:57','2015-03-14 14:56:57',1,30001411,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(1189,'2015-03-14 14:56:57','2015-10-11 16:46:35',1,30001384,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,0,0),(1190,'2015-03-14 14:56:57','2015-10-11 16:46:35',1,30002656,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0),(1191,'2015-03-14 14:56:57','2015-03-14 14:56:57',1,30002744,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(1192,'2015-03-14 14:56:57','2015-10-11 16:46:35',1,30004614,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0),(1193,'2015-03-14 14:56:57','2015-03-14 14:56:57',1,30004249,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(1194,'2015-03-14 14:56:57','2015-10-11 16:46:35',1,30002270,0,0,0,0,0,0,0,0,0,0,0,0,0,4,0,1,2,0,0,1,1,0,1,0),(1195,'2015-03-14 14:56:57','2015-10-11 16:46:35',1,30003843,0,0,1,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,0,0,0),(1196,'2015-03-14 14:56:57','2015-03-14 14:56:57',1,30003053,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(1197,'2015-03-14 14:56:57','2015-10-11 16:46:35',1,30002089,0,0,0,0,1,1,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,1),(1198,'2015-03-14 14:56:57','2015-03-14 14:56:57',1,30003047,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(1199,'2015-03-14 14:56:57','2015-03-14 14:56:57',1,30002530,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(1200,'2015-03-14 14:56:57','2015-10-11 16:46:35',1,30005215,1,0,5,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(1201,'2015-03-14 14:56:57','2015-03-14 14:56:57',1,30000860,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(1202,'2015-03-14 14:56:57','2015-10-11 16:46:35',1,30001203,0,0,0,0,0,0,1,0,0,2,2,1,1,3,5,7,4,1,0,2,14,6,10,1),(1203,'2015-03-14 14:56:57','2015-03-14 14:56:57',1,30004904,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(1204,'2015-03-14 14:56:57','2015-10-11 16:46:35',1,30003756,0,3,0,0,0,0,1,0,0,0,0,0,0,11,0,0,0,0,1,0,0,0,0,0),(1205,'2015-03-14 14:56:57','2015-10-11 16:46:35',1,30003746,0,0,1,1,0,1,0,0,0,2,0,0,2,1,0,1,1,0,3,0,2,2,1,1),(1206,'2015-03-14 14:56:57','2015-03-14 14:56:57',1,30005094,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(1207,'2015-03-14 14:56:57','2015-10-11 16:46:35',1,30003055,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,1,0,0,0,5,1),(1208,'2015-03-14 14:56:57','2015-03-14 14:56:57',1,30003093,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(1209,'2015-03-14 14:56:57','2015-03-14 14:56:57',1,30002717,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(1210,'2015-03-14 14:56:57','2015-03-14 14:56:57',1,30001342,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(1211,'2015-03-14 14:56:57','2015-10-11 16:46:35',1,30000672,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0),(1212,'2015-03-14 14:56:57','2015-03-14 14:56:57',1,30001070,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(1213,'2015-03-14 14:56:57','2015-03-14 14:56:57',1,30000265,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(1214,'2015-03-14 14:56:57','2015-10-11 16:46:35',1,30005275,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0),(1215,'2015-03-14 14:56:57','2015-03-14 14:56:57',1,30003018,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(1216,'2015-03-14 14:56:57','2015-03-14 14:56:57',1,30001711,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(1217,'2015-03-14 14:56:57','2015-10-11 16:46:35',1,30000920,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0),(1218,'2015-03-14 14:56:57','2015-03-14 14:56:57',1,30001705,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(1219,'2015-03-14 14:56:57','2015-03-14 14:56:57',1,30002265,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(1220,'2015-03-14 14:56:57','2015-10-11 16:46:35',1,30004450,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0),(1221,'2015-03-14 14:56:57','2015-10-11 16:46:35',1,30000716,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,1,0,0),(1222,'2015-03-14 14:56:57','2015-03-14 14:56:57',1,30001944,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(1223,'2015-03-14 14:56:57','2015-03-14 14:56:57',1,30002334,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(1224,'2015-03-14 14:56:57','2015-10-11 16:46:35',1,30001156,0,0,2,0,0,0,0,0,0,0,3,11,8,1,7,4,8,3,3,1,6,4,0,1),(1225,'2015-03-14 14:56:57','2015-10-11 16:46:35',1,30000211,0,6,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0),(1226,'2015-03-14 14:56:57','2015-03-14 14:56:57',1,30000435,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(1227,'2015-03-14 14:56:57','2015-03-14 14:56:57',1,30004873,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(1228,'2015-03-14 14:56:57','2015-10-11 16:46:35',1,30004030,0,0,0,0,0,0,0,0,0,6,0,0,0,0,0,0,0,1,0,0,0,0,0,0),(1229,'2015-03-14 14:56:57','2015-03-14 14:56:57',1,30005160,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(1230,'2015-03-14 14:56:57','2015-10-11 16:46:35',1,30002029,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(1231,'2015-03-14 14:56:57','2015-03-14 14:56:57',1,30002108,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(1232,'2015-03-14 14:56:57','2015-03-14 14:56:57',1,30005088,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(1233,'2015-03-14 14:56:57','2015-03-14 14:56:57',1,30001321,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(1234,'2015-03-14 14:56:57','2015-10-11 16:46:35',1,30004040,1,1,0,1,0,0,2,0,1,0,2,2,0,0,0,0,0,0,0,0,0,0,0,0),(1235,'2015-03-14 14:56:57','2015-03-14 14:56:57',1,30000423,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(1236,'2015-03-14 14:56:57','2015-10-11 16:46:35',1,30000307,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(1237,'2015-03-14 14:56:57','2015-03-14 14:56:57',1,30003250,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(1238,'2015-03-14 14:56:57','2015-10-11 16:46:35',1,30002496,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,2,0,0,0,0,1,0),(1239,'2015-03-14 14:56:57','2015-03-14 14:56:57',1,30001910,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(1240,'2015-03-14 14:56:57','2015-10-11 16:46:35',1,30004328,0,0,0,0,0,0,0,0,0,0,0,0,0,2,1,1,0,0,0,0,0,0,0,0),(1241,'2015-03-14 14:56:57','2015-03-14 14:56:57',1,30000817,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(1242,'2015-03-14 14:56:57','2015-10-11 16:46:35',1,30002143,3,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,0,0,0),(1243,'2015-03-14 14:56:57','2015-10-11 16:46:35',1,30002157,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,1,0,0,0),(1244,'2015-03-14 14:56:57','2015-03-14 14:56:57',1,30000961,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(1245,'2015-03-14 14:56:57','2015-10-11 16:46:35',1,30002105,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1),(1246,'2015-03-14 14:56:57','2015-03-14 14:56:57',1,30000854,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(1247,'2015-03-14 14:56:57','2015-10-11 16:46:35',1,30000624,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(1248,'2015-03-14 14:56:57','2015-03-14 14:56:57',1,30004194,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(1249,'2015-03-14 14:56:57','2015-03-14 14:56:57',1,30001076,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(1250,'2015-03-14 14:56:57','2015-10-11 16:46:35',1,30000970,0,0,0,0,0,1,0,0,0,0,0,0,0,2,0,0,2,0,0,0,0,1,1,0),(1251,'2015-03-14 14:56:57','2015-10-11 16:46:35',1,30003730,0,0,1,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(1252,'2015-03-14 14:56:57','2015-03-14 14:56:57',1,30000610,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(1253,'2015-03-14 14:56:57','2015-10-11 16:46:35',1,30001215,0,0,0,0,0,0,0,0,0,0,0,0,1,0,3,2,3,0,0,1,0,0,0,0),(1254,'2015-03-14 14:56:57','2015-03-14 14:56:57',1,30001611,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(1255,'2015-03-14 14:56:57','2015-03-14 14:56:57',1,30004532,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(1256,'2015-03-14 14:56:57','2015-10-11 16:46:35',1,30004590,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0),(1257,'2015-03-14 14:56:57','2015-03-14 14:56:57',1,30003180,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(1258,'2015-03-14 14:56:57','2015-03-14 14:56:57',1,30002850,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(1259,'2015-03-14 14:56:57','2015-03-14 14:56:57',1,30002165,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(1260,'2015-03-14 14:56:57','2015-03-14 14:56:57',1,30001115,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(1261,'2015-03-14 14:56:57','2015-03-14 14:56:57',1,30004599,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(1262,'2015-03-14 14:56:57','2015-03-14 14:56:57',1,30001346,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(1263,'2015-03-14 14:56:57','2015-03-14 14:56:57',1,30002860,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(1264,'2015-03-14 14:56:57','2015-03-14 14:56:57',1,30002436,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(1265,'2015-03-14 14:56:57','2015-03-14 14:56:57',1,30001555,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(1266,'2015-03-14 14:56:57','2015-10-11 16:46:35',1,30002012,9,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(1267,'2015-03-14 14:56:57','2015-03-14 14:56:57',1,30004848,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(1268,'2015-03-14 14:56:57','2015-03-14 14:56:57',1,30004346,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(1269,'2015-03-14 14:56:57','2015-03-14 14:56:57',1,30002110,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(1270,'2015-03-14 14:56:57','2015-03-14 14:56:57',1,30001529,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(1271,'2015-03-14 14:56:57','2015-03-14 14:56:57',1,30005127,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(1272,'2015-03-14 14:56:57','2015-03-14 14:56:57',1,30003601,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(1273,'2015-03-14 14:56:57','2015-10-11 16:46:35',1,30003888,0,1,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0),(1274,'2015-03-14 14:56:57','2015-10-11 16:46:35',1,30003525,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,1,0,0,0,1),(1275,'2015-03-14 14:56:57','2015-10-11 16:46:35',1,30003502,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,1,2,0,0,0,0,0,0,0),(1276,'2015-03-14 14:56:57','2015-03-14 14:56:57',1,30000041,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(1277,'2015-03-14 14:56:57','2015-03-14 14:56:57',1,30003910,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(1278,'2015-03-14 14:56:57','2015-10-11 16:46:35',1,30004261,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0),(1279,'2015-03-14 14:56:57','2015-03-14 14:56:57',1,30002528,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(1280,'2015-03-14 14:56:57','2015-10-11 16:46:35',1,30002634,1,0,1,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0),(1281,'2015-03-14 14:56:57','2015-03-14 14:56:57',1,30002690,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(1282,'2015-03-14 14:56:57','2015-10-11 16:46:35',1,30005294,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(1283,'2015-03-14 14:56:57','2015-10-11 16:46:35',1,30005257,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0),(1284,'2015-03-14 14:56:57','2015-03-14 14:56:57',1,30004296,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(1285,'2015-03-14 14:56:57','2015-03-14 14:56:57',1,30000085,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(1286,'2015-03-14 14:56:57','2015-03-14 14:56:57',1,30003920,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(1287,'2015-03-14 14:56:57','2015-03-14 14:56:57',1,30003548,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(1288,'2015-03-14 14:56:57','2015-03-14 14:56:57',1,30002071,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(1289,'2015-03-14 14:56:57','2015-10-11 16:46:35',1,30003819,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0),(1290,'2015-03-14 14:56:57','2015-03-14 14:56:57',1,30002683,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(1291,'2015-03-14 14:56:57','2015-03-14 14:56:57',1,30003478,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(1292,'2015-03-14 14:56:57','2015-10-11 16:46:35',1,30002666,0,0,0,0,0,0,0,0,0,0,0,0,1,0,1,2,1,0,0,1,1,0,0,0),(1293,'2015-03-14 14:56:57','2015-03-14 14:56:57',1,30002199,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(1294,'2015-03-14 14:56:57','2015-03-14 14:56:57',1,30003908,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(1295,'2015-03-14 14:56:57','2015-03-14 14:56:57',1,30001670,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(1296,'2015-03-14 14:56:57','2015-03-14 14:56:57',1,30002700,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(1297,'2015-03-14 14:56:57','2015-03-14 14:56:57',1,30000039,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(1298,'2015-03-14 14:56:57','2015-10-11 16:46:35',1,30004252,0,0,0,0,0,0,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(1299,'2015-03-14 14:56:57','2015-03-14 14:56:57',1,30004851,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(1300,'2015-03-14 14:56:57','2015-03-14 14:56:57',1,30001976,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(1301,'2015-03-14 14:56:57','2015-10-11 16:46:35',1,30002498,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0),(1302,'2015-03-14 14:56:57','2015-10-11 16:46:35',1,30005129,0,0,0,0,0,0,0,0,0,1,0,0,1,0,0,0,0,0,0,0,0,0,0,0),(1303,'2015-03-14 14:56:57','2015-10-11 16:46:35',1,30002048,0,0,0,0,0,0,0,0,0,0,1,3,1,0,0,0,0,0,0,0,0,1,0,0),(1304,'2015-03-14 14:56:57','2015-10-11 16:46:35',1,30005234,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0),(1305,'2015-03-14 14:56:57','2015-03-14 14:56:57',1,30000110,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(1306,'2015-03-14 14:56:57','2015-10-11 16:46:35',1,30003014,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(1307,'2015-03-14 14:56:57','2015-03-14 14:56:57',1,30004138,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(1308,'2015-03-14 14:56:57','2015-10-11 16:46:35',1,30000109,0,0,0,0,0,0,1,0,0,0,0,0,0,0,1,1,1,0,0,1,0,0,0,0),(1309,'2015-03-14 14:56:57','2015-03-14 14:56:57',1,30001885,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(1310,'2015-03-14 14:56:57','2015-10-11 16:46:35',1,30004506,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(1311,'2015-03-14 14:56:57','2015-03-14 14:56:57',1,30000355,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(1312,'2015-03-14 14:56:57','2015-03-14 14:56:57',1,30004427,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(1313,'2015-03-14 14:56:57','2015-03-14 14:56:57',1,30002876,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(1314,'2015-03-14 14:56:57','2015-03-14 14:56:57',1,30004417,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(1315,'2015-03-14 14:56:57','2015-10-11 16:46:35',1,30005267,0,0,0,0,0,0,0,0,0,0,0,0,0,1,2,2,0,0,0,0,1,0,0,0),(1316,'2015-03-14 14:56:57','2015-10-11 16:46:35',1,30002282,0,0,0,0,0,0,0,0,1,0,0,0,0,0,1,1,0,0,0,0,0,0,1,0),(1317,'2015-03-14 14:56:57','2015-10-11 16:46:35',1,30004163,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(1318,'2015-03-14 14:56:57','2015-10-11 16:46:35',1,30002252,0,0,0,0,0,0,0,0,3,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0),(1319,'2015-03-14 14:56:57','2015-03-14 14:56:57',1,30003040,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(1320,'2015-03-14 14:56:57','2015-03-14 14:56:57',1,30000115,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(1321,'2015-03-14 14:56:57','2015-03-14 14:56:57',1,30003561,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(1322,'2015-03-14 14:56:57','2015-03-14 14:56:57',1,30003555,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(1323,'2015-03-14 14:56:57','2015-03-14 14:56:57',1,30004444,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(1324,'2015-03-14 14:56:57','2015-03-14 14:56:57',1,30001469,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(1325,'2015-03-14 14:56:57','2015-10-11 16:46:35',1,30004422,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(1326,'2015-03-14 14:56:57','2015-10-11 16:46:35',1,30003757,0,2,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,1,0,0),(1327,'2015-03-14 14:56:57','2015-10-11 16:46:35',1,30004333,0,0,0,0,2,2,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(1328,'2015-03-14 14:56:57','2015-03-14 14:56:57',1,30001497,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(1329,'2015-03-14 14:56:57','2015-03-14 14:56:57',1,30003026,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(1330,'2015-03-14 14:56:57','2015-03-14 14:56:57',1,30004420,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(1331,'2015-03-14 14:56:57','2015-03-14 14:56:57',1,30000619,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(1332,'2015-03-14 14:56:57','2015-03-14 14:56:57',1,30002843,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(1333,'2015-03-14 14:56:57','2015-10-11 16:46:35',1,30003327,3,0,0,0,0,0,0,0,3,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0),(1334,'2015-03-14 14:56:57','2015-10-11 16:46:35',1,30004539,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(1335,'2015-03-14 14:56:57','2015-10-11 16:46:35',1,30002438,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0),(1336,'2015-03-14 14:56:57','2015-03-14 14:56:57',1,30002318,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(1337,'2015-03-14 14:56:57','2015-03-14 14:56:57',1,30004545,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(1338,'2015-03-14 14:56:57','2015-10-11 16:46:35',1,30002553,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(1339,'2015-03-14 14:56:57','2015-03-14 14:56:57',1,30002649,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(1340,'2015-03-14 14:56:57','2015-03-14 14:56:57',1,30003913,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(1341,'2015-03-14 14:56:57','2015-03-14 14:56:57',1,30003397,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(1342,'2015-03-14 14:56:57','2015-03-14 14:56:57',1,30002188,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(1343,'2015-03-14 14:56:57','2015-03-14 14:56:57',1,30004106,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(1344,'2015-03-14 14:56:57','2015-10-11 16:46:35',1,30002514,0,0,1,0,0,0,1,2,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0),(1345,'2015-03-14 14:56:57','2015-10-11 16:46:35',1,30002387,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,0,0,0,0,0,0,0),(1346,'2015-03-14 14:56:57','2015-10-11 16:46:35',1,30002661,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0),(1347,'2015-03-14 14:56:57','2015-03-14 14:56:57',1,30002238,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(1348,'2015-03-14 14:56:57','2015-10-11 16:46:35',1,30002715,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,1),(1349,'2015-03-14 14:56:57','2015-10-11 16:46:35',1,30003574,0,0,0,0,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0),(1350,'2015-03-14 14:56:57','2015-03-14 14:56:57',1,30000504,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(1351,'2015-03-14 14:56:57','2015-03-14 14:56:57',1,30001037,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(1352,'2015-03-14 14:56:57','2015-03-14 14:56:57',1,30003230,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(1353,'2015-03-14 14:56:57','2015-03-14 14:56:57',1,30000311,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(1354,'2015-03-14 14:56:57','2015-10-11 16:46:36',1,30001235,0,0,0,0,0,0,2,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(1355,'2015-03-14 14:56:57','2015-03-14 14:56:57',1,30002699,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(1356,'2015-03-14 14:56:57','2015-10-11 16:46:36',1,30003789,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,1,0,0,0,0,0,1,0),(1357,'2015-03-14 14:56:57','2015-03-14 14:56:57',1,30003809,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(1358,'2015-03-14 14:56:57','2015-03-14 14:56:57',1,30005034,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(1359,'2015-03-14 14:56:57','2015-03-14 14:56:57',1,30002067,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(1360,'2015-03-14 14:56:57','2015-03-14 14:56:57',1,30000986,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(1361,'2015-03-14 14:56:57','2015-03-14 14:56:57',1,30003375,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(1362,'2015-03-14 14:56:57','2015-03-14 14:56:57',1,30002703,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(1363,'2015-03-14 14:56:57','2015-03-14 14:56:57',1,30000643,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(1364,'2015-03-14 14:56:57','2015-10-11 16:46:36',1,30004399,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0),(1365,'2015-03-14 14:56:57','2015-03-14 14:56:57',1,30000081,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(1366,'2015-03-14 14:56:57','2015-10-11 16:46:36',1,30003866,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,1,1,0,1,0,0,4,2,0),(1367,'2015-03-14 14:56:57','2015-03-14 14:56:57',1,30002577,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(1368,'2015-03-14 14:56:57','2015-03-14 14:56:57',1,30004117,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(1369,'2015-03-14 14:56:57','2015-10-11 16:46:36',1,30001245,0,0,0,0,0,0,0,0,0,6,3,0,0,4,5,0,0,3,0,4,6,1,1,4),(1370,'2015-03-14 14:56:57','2015-03-14 14:56:57',1,30001286,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(1371,'2015-03-14 14:56:57','2015-03-14 14:56:57',1,30002828,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(1372,'2015-03-14 14:56:57','2015-10-11 16:46:36',1,30004804,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(1373,'2015-03-14 14:56:57','2015-10-11 16:46:36',1,30002440,3,5,4,1,0,0,1,0,1,1,3,4,0,4,2,0,3,2,7,2,5,1,7,4),(1374,'2015-03-14 14:56:57','2015-10-11 16:46:36',1,30004371,0,0,0,0,0,0,0,0,0,0,0,0,0,1,10,0,0,0,0,0,0,0,0,0),(1375,'2015-03-14 14:56:57','2015-03-14 14:56:57',1,30001629,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(1376,'2015-03-14 14:56:57','2015-03-14 14:56:57',1,30004029,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(1377,'2015-03-14 14:56:57','2015-03-14 14:56:57',1,30003993,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(1378,'2015-03-14 14:56:57','2015-03-14 14:56:57',1,30002305,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(1379,'2015-03-14 14:56:57','2015-10-11 16:46:36',1,30003138,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0),(1380,'2015-03-14 14:56:57','2015-10-11 16:46:36',1,30003328,0,0,0,0,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(1381,'2015-03-14 14:56:57','2015-03-14 14:56:57',1,30000925,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(1382,'2015-03-14 14:56:57','2015-10-11 16:46:36',1,30004562,0,0,0,0,0,0,0,0,0,1,1,23,0,5,1,0,0,0,2,0,0,0,0,0),(1383,'2015-03-14 14:56:57','2015-10-11 16:46:36',1,30003121,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0),(1384,'2015-03-14 14:56:57','2015-03-14 14:56:57',1,30002882,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(1385,'2015-03-14 14:56:57','2015-10-11 16:46:36',1,30004434,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0),(1386,'2015-03-14 14:56:57','2015-10-11 16:46:36',1,30002375,0,0,0,0,0,0,0,0,0,0,0,0,0,0,3,4,1,0,0,0,0,0,0,0),(1387,'2015-03-14 14:56:57','2015-03-14 14:56:57',1,30004378,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(1388,'2015-03-14 14:56:57','2015-03-14 14:56:57',1,30000550,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(1389,'2015-03-14 14:56:57','2015-03-14 14:56:57',1,30000632,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(1390,'2015-03-14 14:56:57','2015-03-14 14:56:57',1,30003995,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(1391,'2015-03-14 14:56:57','2015-03-14 14:56:57',1,30003976,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(1392,'2015-03-14 14:56:57','2015-03-14 14:56:57',1,30001576,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(1393,'2015-03-14 14:56:57','2015-10-11 16:46:36',1,30004564,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,1,0,0,0,2,0,0),(1394,'2015-03-14 14:56:57','2015-10-11 16:46:36',1,30000278,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(1395,'2015-03-14 14:56:57','2015-10-11 16:46:36',1,30004818,2,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(1396,'2015-03-14 14:56:57','2015-03-14 14:56:57',1,30004651,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(1397,'2015-03-14 14:56:57','2015-10-11 16:46:36',1,30000302,2,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(1398,'2015-03-14 14:56:57','2015-03-14 14:56:57',1,30001992,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(1399,'2015-03-14 14:56:57','2015-10-11 16:46:36',1,30004319,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0),(1400,'2015-03-14 14:56:57','2015-10-11 16:46:36',1,30000772,0,1,1,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(1401,'2015-03-14 14:56:57','2015-03-14 14:56:57',1,30000273,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(1402,'2015-03-14 14:56:57','2015-03-14 14:56:57',1,30001085,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(1403,'2015-03-14 14:56:57','2015-10-11 16:46:36',1,30004372,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0),(1404,'2015-03-14 14:56:57','2015-10-11 16:46:36',1,30004365,0,0,0,0,0,0,0,2,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(1405,'2015-03-14 14:56:57','2015-03-14 14:56:57',1,30000567,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(1406,'2015-03-14 14:56:57','2015-10-11 16:46:36',1,30004600,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(1407,'2015-03-14 14:56:57','2015-10-11 16:46:36',1,30001124,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(1408,'2015-03-14 14:56:57','2015-03-14 14:56:57',1,30003692,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(1409,'2015-03-14 14:56:57','2015-10-11 16:46:36',1,30003169,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,1),(1410,'2015-03-14 14:56:57','2015-03-14 14:56:57',1,30002367,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(1411,'2015-03-14 14:56:57','2015-03-14 14:56:57',1,30004380,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(1412,'2015-03-14 14:56:57','2015-03-14 14:56:57',1,30003113,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(1413,'2015-03-14 14:56:57','2015-03-14 14:56:57',1,30004889,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(1414,'2015-03-14 14:56:57','2015-03-14 14:56:57',1,30003670,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(1415,'2015-03-14 14:56:57','2015-03-14 14:56:57',1,30000568,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(1416,'2015-03-14 14:56:57','2015-10-11 16:46:36',1,30004493,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,1),(1417,'2015-03-14 14:56:57','2015-03-14 14:56:57',1,30003780,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(1418,'2015-03-14 14:56:57','2015-10-11 16:46:36',1,30000821,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(1419,'2015-03-14 14:56:57','2015-03-14 14:56:57',1,30004597,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(1420,'2015-03-14 14:56:58','2015-03-14 14:56:58',1,30004191,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(1421,'2015-03-14 14:56:58','2015-03-14 14:56:58',1,30001355,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(1422,'2015-03-14 14:56:58','2015-10-11 16:46:36',1,30000863,0,0,0,0,0,0,1,0,1,1,4,4,0,0,0,1,1,0,0,0,0,0,0,0),(1423,'2015-03-14 14:56:58','2015-10-11 16:46:36',1,30004824,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1),(1424,'2015-03-14 14:56:58','2015-10-11 16:46:36',1,30005190,0,0,0,0,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(1425,'2015-03-14 14:56:58','2015-03-14 14:56:58',1,30002858,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(1426,'2015-03-14 14:56:58','2015-03-14 14:56:58',1,30004798,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(1427,'2015-03-14 14:56:58','2015-10-11 16:46:36',1,30003697,0,0,0,5,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0),(1428,'2015-03-14 14:56:58','2015-03-14 14:56:58',1,30000446,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(1429,'2015-03-14 14:56:58','2015-03-14 14:56:58',1,30001533,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(1430,'2015-03-14 14:56:58','2015-03-14 14:56:58',1,30005122,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(1431,'2015-03-14 14:56:58','2015-10-11 16:46:36',1,30004791,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(1432,'2015-03-14 14:56:58','2015-10-11 16:46:36',1,30002915,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(1433,'2015-03-14 14:56:58','2015-03-14 14:56:58',1,30000700,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(1434,'2015-03-14 14:56:58','2015-10-11 16:46:36',1,30003676,0,0,0,0,0,0,2,0,0,1,0,1,0,0,0,0,0,0,1,4,4,0,0,0),(1435,'2015-03-14 14:56:58','2015-03-14 14:56:58',1,30000743,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(1436,'2015-03-14 14:56:58','2015-03-14 14:56:58',1,30000892,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(1437,'2015-03-14 14:56:58','2015-10-11 16:46:36',1,30003109,0,0,0,1,0,0,0,0,0,0,0,0,0,0,1,2,2,0,0,0,5,0,0,0),(1438,'2015-03-14 14:56:58','2015-03-14 14:56:58',1,30002315,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(1439,'2015-03-14 14:56:58','2015-03-14 14:56:58',1,30003934,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(1440,'2015-03-14 14:56:58','2015-03-14 14:56:58',1,30003569,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(1441,'2015-03-14 14:56:58','2015-03-14 14:56:58',1,30002207,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(1442,'2015-03-14 14:56:58','2015-10-11 16:46:36',1,30000049,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,2,1,0,0,0,0,0,0,1),(1443,'2015-03-14 14:56:58','2015-03-14 14:56:58',1,30005287,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(1444,'2015-03-14 14:56:58','2015-03-14 14:56:58',1,30002735,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(1445,'2015-03-14 14:56:58','2015-10-11 16:46:36',1,30003048,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,1),(1446,'2015-03-14 14:56:58','2015-10-11 16:46:36',1,30002645,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0),(1447,'2015-03-14 14:56:58','2015-03-14 14:56:58',1,30004973,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(1448,'2015-03-14 14:56:58','2015-03-14 14:56:58',1,30005026,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(1449,'2015-03-14 14:56:58','2015-10-11 16:46:36',1,30001205,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,2,0),(1450,'2015-03-14 14:56:58','2015-10-11 16:46:36',1,30001895,0,0,0,0,0,0,0,0,0,0,0,0,0,2,0,0,0,0,0,0,0,0,0,0),(1451,'2015-03-14 14:56:58','2015-10-11 16:46:36',1,30001206,0,0,0,0,0,0,0,0,0,2,0,0,0,0,0,0,0,0,0,1,1,0,0,0),(1452,'2015-03-14 14:56:58','2015-03-14 14:56:58',1,30004180,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(1453,'2015-03-14 14:56:58','2015-03-14 14:56:58',1,30004841,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(1454,'2015-03-14 14:56:58','2015-10-11 16:46:36',1,30002906,0,0,0,1,0,0,2,0,0,0,0,0,0,2,1,0,0,0,0,0,0,0,5,0),(1455,'2015-03-14 14:56:58','2015-03-14 14:56:58',1,30005283,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(1456,'2015-03-14 14:56:58','2015-10-11 16:46:36',1,30004407,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1),(1457,'2015-03-14 14:56:58','2015-03-14 14:56:58',1,30002483,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(1458,'2015-03-14 14:56:58','2015-10-11 16:46:36',1,30004401,0,0,0,0,0,0,9,0,0,0,0,0,0,1,0,0,0,1,0,0,0,0,0,0),(1459,'2015-03-14 14:56:58','2015-10-11 16:46:36',1,30004601,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0),(1460,'2015-03-14 14:56:58','2015-03-14 14:56:58',1,30002688,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(1461,'2015-03-14 14:56:58','2015-03-14 14:56:58',1,30035042,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(1462,'2015-03-14 14:56:58','2015-10-11 16:46:36',1,30003905,0,0,1,0,0,0,1,1,0,0,0,0,0,1,1,0,0,0,0,2,1,0,0,0),(1463,'2015-03-14 14:56:58','2015-03-14 14:56:58',1,30005228,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(1464,'2015-03-14 14:56:58','2015-03-14 14:56:58',1,30001664,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(1465,'2015-03-14 14:56:58','2015-03-14 14:56:58',1,30004108,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(1466,'2015-03-14 14:56:58','2015-03-14 14:56:58',1,30025305,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(1467,'2015-03-14 14:56:58','2015-03-14 14:56:58',1,30004122,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(1468,'2015-03-14 14:56:58','2015-03-14 14:56:58',1,30005331,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(1469,'2015-03-14 14:56:58','2015-10-11 16:46:36',1,30003834,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(1470,'2015-03-14 14:56:58','2015-03-14 14:56:58',1,30004976,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(1471,'2015-03-14 14:56:58','2015-03-14 14:56:58',1,30002224,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(1472,'2015-03-14 14:56:58','2015-10-11 16:46:36',1,30003489,0,0,0,1,0,0,0,0,0,0,1,1,0,0,0,0,0,0,0,0,0,1,0,0),(1473,'2015-03-14 14:56:58','2015-03-14 14:56:58',1,30005237,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(1474,'2015-03-14 14:56:58','2015-10-11 16:46:36',1,30002667,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,3,1,0,0,0),(1475,'2015-03-14 14:56:58','2015-03-14 14:56:58',1,30003529,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(1476,'2015-03-14 14:56:58','2015-03-14 14:56:58',1,30003019,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(1477,'2015-03-14 14:56:58','2015-03-14 14:56:58',1,30005327,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(1478,'2015-03-14 14:56:58','2015-03-14 14:56:58',1,30003527,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(1479,'2015-03-14 14:56:58','2015-03-14 14:56:58',1,30004250,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(1480,'2015-03-14 14:56:58','2015-03-14 14:56:58',1,30000010,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(1481,'2015-03-14 14:56:58','2015-03-14 14:56:58',1,30005253,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(1482,'2015-03-14 14:56:58','2015-03-14 14:56:58',1,30003925,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(1483,'2015-03-14 14:56:58','2015-10-11 16:46:36',1,30005051,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(1484,'2015-03-14 14:56:58','2015-10-11 16:46:36',1,30002965,0,0,0,0,2,2,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0),(1485,'2015-03-14 14:56:58','2015-03-14 14:56:58',1,30004210,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(1486,'2015-03-14 14:56:58','2015-03-14 14:56:58',1,30000951,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(1487,'2015-03-14 14:56:58','2015-03-14 14:56:58',1,30003363,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(1488,'2015-03-14 14:56:58','2015-10-11 16:46:36',1,30005305,1,0,2,0,0,0,0,0,0,0,0,1,0,1,1,0,0,0,0,0,0,0,0,0),(1489,'2015-03-14 14:56:58','2015-03-14 14:56:58',1,30001926,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(1490,'2015-03-14 14:56:58','2015-03-14 14:56:58',1,30002127,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(1491,'2015-03-14 14:56:58','2015-10-11 16:46:36',1,30002170,1,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,9,3,0,1,0),(1492,'2015-03-14 14:56:58','2015-03-14 14:56:58',1,30001042,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(1493,'2015-03-14 14:56:58','2015-10-11 16:46:36',1,30001025,0,3,0,0,0,0,0,0,0,0,2,3,0,3,1,0,0,1,0,0,0,2,1,2),(1494,'2015-03-14 14:56:58','2015-03-14 14:56:58',1,30004565,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(1495,'2015-03-14 14:56:58','2015-10-11 16:46:36',1,30002362,0,0,0,0,0,0,0,1,3,2,1,0,0,2,0,0,0,0,0,0,0,1,0,0),(1496,'2015-03-14 14:56:58','2015-03-14 14:56:58',1,30004458,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(1497,'2015-03-14 14:56:58','2015-03-14 14:56:58',1,30001981,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(1498,'2015-03-14 14:56:58','2015-03-14 14:56:58',1,30035305,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(1499,'2015-03-14 14:56:58','2015-10-11 16:46:36',1,30003896,0,0,0,0,1,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(1500,'2015-03-14 14:56:58','2015-03-14 14:56:58',1,30002275,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(1501,'2015-03-14 14:56:58','2015-03-14 14:56:58',1,30005324,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(1502,'2015-03-14 14:56:58','2015-03-14 14:56:58',1,30002708,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(1503,'2015-03-14 14:56:58','2015-03-14 14:56:58',1,30001616,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(1504,'2015-03-14 14:56:58','2015-10-11 16:46:36',1,30045305,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1),(1505,'2015-03-14 14:56:58','2015-10-11 16:46:36',1,30005194,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,0,0,0,0,0,0,0),(1506,'2015-03-14 14:56:58','2015-03-14 14:56:58',1,30005023,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(1507,'2015-03-14 14:56:58','2015-03-14 14:56:58',1,30001100,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(1508,'2015-03-14 14:56:58','2015-10-11 16:46:36',1,30001254,0,2,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(1509,'2015-03-14 14:56:58','2015-03-14 14:56:58',1,30001825,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(1510,'2015-03-14 14:56:58','2015-10-11 16:46:36',1,30004887,0,0,0,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(1511,'2015-03-14 14:56:58','2015-03-14 14:56:58',1,30003904,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(1512,'2015-03-14 14:56:58','2015-03-14 14:56:58',1,30003041,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(1513,'2015-03-14 14:56:58','2015-10-11 16:46:36',1,30002682,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0),(1514,'2015-03-14 14:56:58','2015-03-14 14:56:58',1,30045042,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(1515,'2015-03-14 14:56:58','2015-03-14 14:56:58',1,30003565,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(1516,'2015-03-14 14:56:58','2015-10-11 16:46:36',1,30005298,0,0,0,0,0,0,1,1,0,0,1,0,0,0,0,0,0,0,0,0,1,0,0,0),(1517,'2015-03-14 14:56:58','2015-10-11 16:46:36',1,30014971,1,2,4,1,0,1,1,0,5,0,2,0,2,4,1,0,0,1,2,0,0,0,1,0),(1518,'2015-03-14 14:56:58','2015-03-14 14:56:58',1,30003795,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(1519,'2015-03-14 14:56:58','2015-03-14 14:56:58',1,30003123,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(1520,'2015-03-14 14:56:58','2015-10-11 16:46:36',1,30002003,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(1521,'2015-03-14 14:56:58','2015-03-14 14:56:58',1,30003678,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(1522,'2015-03-14 14:56:58','2015-03-14 14:56:58',1,30000845,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(1523,'2015-03-14 14:56:58','2015-10-11 16:46:36',1,30002691,0,0,0,1,0,0,3,0,0,0,0,0,1,0,1,1,0,1,0,0,1,0,0,0),(1524,'2015-03-14 14:56:58','2015-03-14 14:56:58',1,30002705,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(1525,'2015-03-14 14:56:58','2015-03-14 14:56:58',1,30000923,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(1526,'2015-03-14 14:56:58','2015-10-11 16:46:36',1,30004357,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,0),(1527,'2015-03-14 14:56:58','2015-10-11 16:46:36',1,30001275,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(1528,'2015-03-14 14:56:58','2015-03-14 14:56:58',1,30004530,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(1529,'2015-03-14 14:56:58','2015-10-11 16:46:36',1,30002373,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,2,1,0,0,0,0,0,0,0),(1530,'2015-03-14 14:56:58','2015-03-14 14:56:58',1,30002896,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(1531,'2015-03-14 14:56:58','2015-10-11 16:46:36',1,30003802,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(1532,'2015-03-14 14:56:58','2015-10-11 16:46:36',1,30004200,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(1533,'2015-03-14 14:56:58','2015-03-14 14:56:58',1,30001034,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(1534,'2015-03-14 14:56:58','2015-03-14 14:56:58',1,30001472,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(1535,'2015-03-14 14:56:58','2015-10-11 16:46:36',1,30004939,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(1536,'2015-03-14 14:56:58','2015-03-14 14:56:58',1,30004335,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(1537,'2015-03-14 14:56:58','2015-10-11 16:46:36',1,30001224,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0),(1538,'2015-03-14 14:56:58','2015-10-11 16:46:36',1,30004072,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(1539,'2015-03-14 14:56:58','2015-03-14 14:56:58',1,30004799,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(1540,'2015-03-14 14:56:58','2015-03-14 14:56:58',1,30001979,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(1541,'2015-03-14 14:56:58','2015-03-14 14:56:58',1,30003371,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(1542,'2015-03-14 14:56:58','2015-03-14 14:56:58',1,30002312,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(1543,'2015-03-14 14:56:58','2015-03-14 14:56:58',1,30001496,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(1544,'2015-03-14 14:56:58','2015-03-14 14:56:58',1,30003134,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(1545,'2015-03-14 14:56:58','2015-10-11 16:46:36',1,30002953,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0),(1546,'2015-03-14 14:56:58','2015-10-11 16:46:36',1,30001253,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0),(1547,'2015-03-14 14:56:58','2015-03-14 14:56:58',1,30000461,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(1548,'2015-03-14 14:56:58','2015-10-11 16:46:36',1,30004750,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0),(1549,'2015-03-14 14:56:58','2015-03-14 14:56:58',1,30000613,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(1550,'2015-03-14 14:56:58','2015-03-14 14:56:58',1,30002838,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(1551,'2015-03-14 14:56:58','2015-10-11 16:46:36',1,30003727,0,0,0,0,0,0,0,0,0,0,1,0,0,1,0,0,0,0,0,0,0,0,0,1),(1552,'2015-03-14 14:56:58','2015-10-11 16:46:36',1,30001272,0,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0),(1553,'2015-03-14 14:56:58','2015-03-14 14:56:58',1,30004813,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(1554,'2015-03-14 14:56:58','2015-03-14 14:56:58',1,30003358,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(1555,'2015-03-14 14:56:58','2015-03-14 14:56:58',1,30002149,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(1556,'2015-03-14 14:56:58','2015-03-14 14:56:58',1,30002304,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(1557,'2015-03-14 14:56:58','2015-03-14 14:56:58',1,30003115,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(1558,'2015-03-14 14:56:58','2015-10-11 16:46:36',1,30003709,0,0,0,0,0,0,0,0,1,0,0,0,2,1,1,1,0,0,0,0,1,0,0,1),(1559,'2015-03-14 14:56:58','2015-10-11 16:46:36',1,30002481,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,1,0,0),(1560,'2015-03-14 14:56:58','2015-10-11 16:46:36',1,30002347,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(1561,'2015-03-14 14:56:58','2015-03-14 14:56:58',1,30001761,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(1562,'2015-03-14 14:56:58','2015-10-11 16:46:36',1,30002626,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0),(1563,'2015-03-14 14:56:58','2015-03-14 14:56:58',1,30002366,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(1564,'2015-03-14 14:56:58','2015-10-11 16:46:36',1,30000826,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0),(1565,'2015-03-14 14:56:58','2015-03-14 14:56:58',1,30000340,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(1566,'2015-03-14 14:56:58','2015-03-14 14:56:58',1,30003135,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(1567,'2015-03-14 14:56:58','2015-10-11 16:46:36',1,30004622,0,0,3,5,2,4,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(1568,'2015-03-14 14:56:58','2015-03-14 14:56:58',1,30005125,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(1569,'2015-03-14 14:56:58','2015-03-14 14:56:58',1,30001299,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(1570,'2015-03-14 14:56:58','2015-10-11 16:46:36',1,30004730,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0),(1571,'2015-03-14 14:56:58','2015-03-14 14:56:58',1,30002430,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(1572,'2015-03-14 14:56:58','2015-10-11 16:46:36',1,30002036,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0),(1573,'2015-03-14 14:56:58','2015-03-14 14:56:58',1,30004588,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(1574,'2015-03-14 14:56:58','2015-03-14 14:56:58',1,30004902,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(1575,'2015-03-14 14:56:58','2015-03-14 14:56:58',1,30002295,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(1576,'2015-03-14 14:56:58','2015-10-11 16:46:36',1,30004491,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,0,0,0,0,0,0,0),(1577,'2015-03-14 14:56:58','2015-10-11 16:46:36',1,30004626,0,0,0,0,0,0,0,0,0,0,0,0,2,1,0,0,0,0,0,0,0,0,0,1),(1578,'2015-03-14 14:56:58','2015-03-14 14:56:58',1,30004386,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(1579,'2015-03-14 14:56:58','2015-10-11 16:46:36',1,30004502,0,0,0,0,0,0,1,0,0,0,2,1,0,1,0,0,0,0,0,0,0,0,0,0),(1580,'2015-03-14 14:56:58','2015-10-11 16:46:36',1,30003724,0,0,2,0,0,1,0,0,0,0,1,0,0,0,0,0,0,0,0,5,0,1,0,0),(1581,'2015-03-14 14:56:58','2015-03-14 14:56:58',1,30004480,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(1582,'2015-03-14 14:56:58','2015-10-11 16:46:36',1,30000867,0,0,0,1,0,0,0,0,0,4,2,3,0,1,0,0,0,0,2,1,0,2,0,1),(1583,'2015-03-14 14:56:58','2015-10-11 16:46:36',1,30001968,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0),(1584,'2015-03-14 14:56:58','2015-10-11 16:46:36',1,30003345,0,1,0,1,1,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0),(1585,'2015-03-14 14:56:58','2015-10-11 16:46:36',1,30001010,0,0,0,0,0,0,0,0,0,1,1,0,0,5,0,0,2,1,0,0,6,4,1,0),(1586,'2015-03-14 14:56:58','2015-03-14 14:56:58',1,30000327,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(1587,'2015-03-14 14:56:58','2015-10-11 16:46:36',1,30001881,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0),(1588,'2015-03-14 14:56:58','2015-03-14 14:56:58',1,30004222,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(1589,'2015-03-14 14:56:58','2015-10-11 16:46:36',1,30001660,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0),(1590,'2015-03-14 14:56:58','2015-10-11 16:46:36',1,30001921,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0),(1591,'2015-03-14 14:56:58','2015-03-14 14:56:58',1,30001083,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(1592,'2015-03-14 14:56:58','2015-03-14 14:56:58',1,30002233,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(1593,'2015-03-14 14:56:58','2015-10-11 16:46:36',1,30002541,0,0,0,1,0,0,0,0,0,1,1,1,0,1,0,0,0,0,1,2,0,0,1,0),(1594,'2015-03-14 14:56:58','2015-03-14 14:56:58',1,30002513,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(1595,'2015-03-14 14:56:58','2015-03-14 14:56:58',1,30003912,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(1596,'2015-03-14 14:56:58','2015-03-14 14:56:58',1,30004097,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(1597,'2015-03-14 14:56:58','2015-10-11 16:46:36',1,30003451,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(1598,'2015-03-14 14:56:58','2015-10-11 16:46:36',1,30001356,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(1599,'2015-03-14 14:56:58','2015-10-11 16:46:36',1,30005044,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0),(1600,'2015-03-14 14:56:58','2015-10-11 16:46:36',1,30005074,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,0,0,0,0,0,0,0),(1601,'2015-03-14 14:56:58','2015-03-14 14:56:58',1,30001420,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(1602,'2015-03-14 14:56:58','2015-10-11 16:46:36',1,30003797,0,0,0,0,0,0,0,0,0,2,0,0,0,0,0,0,1,0,0,0,0,1,0,0),(1603,'2015-03-14 14:56:58','2015-03-14 14:56:58',1,30003405,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(1604,'2015-03-14 14:56:58','2015-03-14 14:56:58',1,30000253,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(1605,'2015-03-14 14:56:58','2015-03-14 14:56:58',1,30004524,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(1606,'2015-03-14 14:56:58','2015-10-11 16:46:36',1,30004470,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0),(1607,'2015-03-14 14:56:58','2015-10-11 16:46:36',1,30004595,0,0,0,0,0,0,1,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0),(1608,'2015-03-14 14:56:58','2015-03-14 14:56:58',1,30000877,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(1609,'2015-03-14 14:56:58','2015-03-14 14:56:58',1,30003364,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(1610,'2015-03-14 14:56:58','2015-03-14 14:56:58',1,30004311,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(1611,'2015-03-14 14:56:58','2015-03-14 14:56:58',1,30003644,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(1612,'2015-03-14 14:56:58','2015-03-14 14:56:58',1,30002631,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(1613,'2015-03-14 14:56:58','2015-10-11 16:46:36',1,30000663,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0),(1614,'2015-03-14 14:56:58','2015-03-14 14:56:58',1,30005093,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(1615,'2015-03-14 14:56:58','2015-03-14 14:56:58',1,30000954,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(1616,'2015-03-14 14:56:58','2015-03-14 14:56:58',1,30005285,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(1617,'2015-03-14 14:56:58','2015-10-11 16:46:36',1,30002635,1,0,2,1,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,2,0,0,1),(1618,'2015-03-14 14:56:58','2015-10-11 16:46:36',1,30013489,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,1,0,0),(1619,'2015-03-14 14:56:58','2015-10-11 16:46:36',1,30004284,0,0,0,0,0,0,0,0,0,0,0,0,0,9,0,0,1,0,0,0,0,0,0,0),(1620,'2015-03-14 14:56:58','2015-03-14 14:56:58',1,30004105,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(1621,'2015-03-14 14:56:58','2015-10-11 16:46:36',1,30002681,2,0,2,0,0,1,0,0,0,1,0,0,1,0,0,0,0,1,1,0,0,1,1,0),(1622,'2015-03-14 14:56:58','2015-03-14 14:56:58',1,30004987,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(1623,'2015-03-14 14:56:58','2015-03-14 14:56:58',1,30005025,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(1624,'2015-03-14 14:56:58','2015-10-11 16:46:36',1,30004985,1,0,2,0,1,1,0,0,0,0,0,0,0,2,0,0,0,1,0,0,1,1,0,0),(1625,'2015-03-14 14:56:58','2015-03-14 14:56:58',1,30000816,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(1626,'2015-03-14 14:56:58','2015-03-14 14:56:58',1,30001557,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(1627,'2015-03-14 14:56:58','2015-10-11 16:46:36',1,30000441,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,1,0,0,0,0,1,0,0),(1628,'2015-03-14 14:56:58','2015-10-11 16:46:36',1,30004016,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,0,0,0,0),(1629,'2015-03-14 14:56:58','2015-03-14 14:56:58',1,30003187,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(1630,'2015-03-14 14:56:58','2015-03-14 14:56:58',1,30005229,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(1631,'2015-03-14 14:56:58','2015-03-14 14:56:58',1,30003156,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(1632,'2015-03-14 14:56:58','2015-10-11 16:46:36',1,30002967,1,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(1633,'2015-03-14 14:56:58','2015-03-14 14:56:58',1,30003924,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(1634,'2015-03-14 14:56:58','2015-03-14 14:56:58',1,30002646,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(1635,'2015-03-14 14:56:58','2015-03-14 14:56:58',1,30003461,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(1636,'2015-03-14 14:56:58','2015-10-11 16:46:36',1,30002968,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,3,0,0,0),(1637,'2015-03-14 14:56:58','2015-10-11 16:46:36',1,30001781,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,0,0),(1638,'2015-03-14 14:56:58','2015-03-14 14:56:58',1,30005262,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(1639,'2015-03-14 14:56:58','2015-03-14 14:56:58',1,30004903,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(1640,'2015-03-14 14:56:58','2015-10-11 16:46:36',1,30001994,0,0,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(1641,'2015-03-14 14:56:58','2015-03-14 14:56:58',1,30004207,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(1642,'2015-03-14 14:56:58','2015-03-14 14:56:58',1,30001960,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(1643,'2015-03-14 14:56:58','2015-03-14 14:56:58',1,30002920,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(1644,'2015-03-14 14:56:58','2015-03-14 14:56:58',1,30003170,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(1645,'2015-03-14 14:56:58','2015-03-14 14:56:58',1,30000879,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(1646,'2015-03-14 14:56:58','2015-03-14 14:56:58',1,30001632,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(1647,'2015-03-14 14:56:58','2015-10-11 16:46:36',1,30004195,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(1648,'2015-03-14 14:56:58','2015-03-14 14:56:58',1,30003157,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(1649,'2015-03-14 14:56:58','2015-10-11 16:46:36',1,30003762,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,1,0,0,0),(1650,'2015-03-14 14:56:58','2015-10-11 16:46:36',1,30003681,0,0,0,0,0,0,7,0,0,0,0,0,0,1,1,1,0,0,0,0,0,0,0,0),(1651,'2015-03-14 14:56:58','2015-03-14 14:56:58',1,30001130,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(1652,'2015-03-14 14:56:58','2015-03-14 14:56:58',1,30002685,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(1653,'2015-03-14 14:56:58','2015-10-11 16:46:36',1,30002659,0,4,7,3,0,0,2,2,4,6,6,2,5,5,11,10,10,3,3,4,4,6,9,2),(1654,'2015-03-14 14:56:58','2015-03-14 14:56:58',1,30005226,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(1655,'2015-03-14 14:56:58','2015-03-14 14:56:58',1,30000038,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(1656,'2015-03-14 14:56:58','2015-10-11 16:46:36',1,30001047,2,0,2,0,5,3,0,1,0,9,3,3,0,3,2,3,4,0,2,1,1,0,0,0),(1657,'2015-03-14 14:56:58','2015-10-11 16:46:36',1,30003807,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(1658,'2015-03-14 14:56:58','2015-03-14 14:56:58',1,30002706,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(1659,'2015-03-14 14:56:58','2015-03-14 14:56:58',1,30005293,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(1660,'2015-03-14 14:56:58','2015-03-14 14:56:58',1,30002014,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(1661,'2015-03-14 14:56:58','2015-03-14 14:56:58',1,30001912,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(1662,'2015-03-14 14:56:58','2015-10-11 16:46:36',1,30003721,1,0,0,0,0,0,0,0,0,0,0,0,0,0,2,2,0,0,0,0,0,0,0,0),(1663,'2015-03-14 14:56:58','2015-10-11 16:46:36',1,30003314,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0),(1664,'2015-03-14 14:56:58','2015-10-11 16:46:36',1,30002184,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0),(1665,'2015-03-14 14:56:58','2015-10-11 16:46:36',1,30004078,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(1666,'2015-03-14 14:56:58','2015-10-11 16:46:36',1,30005011,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1),(1667,'2015-03-14 14:56:58','2015-03-14 14:56:58',1,30003992,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(1668,'2015-03-14 14:56:58','2015-03-14 14:56:58',1,30003193,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(1669,'2015-03-14 14:56:58','2015-10-11 16:46:36',1,30001831,0,1,0,0,0,0,0,1,0,0,0,0,1,0,1,1,0,0,0,1,0,9,0,1),(1670,'2015-03-14 14:56:58','2015-03-14 14:56:58',1,30001610,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(1671,'2015-03-14 14:56:58','2015-03-14 14:56:58',1,30004806,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(1672,'2015-03-14 14:56:58','2015-03-14 14:56:58',1,30002041,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(1673,'2015-03-14 14:56:58','2015-03-14 14:56:58',1,30003108,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(1674,'2015-03-14 14:56:58','2015-10-11 16:46:36',1,30002633,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,0,0,0,0,0),(1675,'2015-03-14 14:56:58','2015-03-14 14:56:58',1,30002076,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(1676,'2015-03-14 14:56:58','2015-03-14 14:56:58',1,30000396,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(1677,'2015-03-14 14:56:58','2015-03-14 14:56:58',1,30002520,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(1678,'2015-03-14 14:56:58','2015-03-14 14:56:58',1,30002670,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(1679,'2015-03-14 14:56:58','2015-03-14 14:56:58',1,30000595,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(1680,'2015-03-14 14:56:58','2015-10-11 16:46:36',1,30004971,0,0,0,1,0,0,2,0,1,1,0,1,0,0,0,0,0,1,0,1,0,0,1,1),(1681,'2015-03-14 14:56:58','2015-10-11 16:46:36',1,30004418,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0),(1682,'2015-03-14 14:56:58','2015-03-14 14:56:58',1,30003359,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(1683,'2015-03-14 14:56:58','2015-03-14 14:56:58',1,30001504,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(1684,'2015-03-14 14:56:58','2015-03-14 14:56:58',1,30001581,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(1685,'2015-03-14 14:56:58','2015-03-14 14:56:58',1,30000518,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(1686,'2015-03-14 14:56:58','2015-03-14 14:56:58',1,30002146,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(1687,'2015-03-14 14:56:58','2015-03-14 14:56:58',1,30003682,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(1688,'2015-03-14 14:56:58','2015-03-14 14:56:58',1,30000516,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(1689,'2015-03-14 14:56:58','2015-03-14 14:56:58',1,30000490,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(1690,'2015-03-14 14:56:58','2015-03-14 14:56:58',1,30002599,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(1691,'2015-03-14 14:56:58','2015-10-11 16:46:36',1,30004042,0,1,0,0,0,0,0,0,0,3,3,0,0,0,0,0,0,0,0,1,1,0,0,0),(1692,'2015-03-14 14:56:58','2015-10-11 16:46:36',1,30002119,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,0,0,0,0,0,0,0),(1693,'2015-03-14 14:56:58','2015-03-14 14:56:58',1,30002378,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(1694,'2015-03-14 14:56:58','2015-03-14 14:56:58',1,30003196,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(1695,'2015-03-14 14:56:58','2015-03-14 14:56:58',1,30000102,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(1696,'2015-03-14 14:56:58','2015-03-14 14:56:58',1,30004852,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(1697,'2015-03-14 14:56:58','2015-03-14 14:56:58',1,30000502,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(1698,'2015-03-14 14:56:58','2015-03-14 14:56:58',1,30001294,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(1699,'2015-03-14 14:56:58','2015-10-11 16:46:36',1,30002477,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0),(1700,'2015-03-14 14:56:58','2015-10-11 16:46:36',1,30003677,0,0,0,0,0,0,0,1,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(1701,'2015-03-14 14:56:58','2015-03-14 14:56:58',1,30000503,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(1702,'2015-03-14 14:56:58','2015-03-14 14:56:58',1,30004186,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(1703,'2015-03-14 14:56:58','2015-03-14 14:56:58',1,30001530,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(1704,'2015-03-14 14:56:58','2015-03-14 14:56:58',1,30004567,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(1705,'2015-03-14 14:56:58','2015-03-14 14:56:58',1,30004181,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(1706,'2015-03-14 14:56:58','2015-03-14 14:56:58',1,30001834,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(1707,'2015-03-14 14:56:58','2015-03-14 14:56:58',1,30000257,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(1708,'2015-03-14 14:56:58','2015-03-14 14:56:58',1,30004948,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(1709,'2015-03-14 14:56:58','2015-03-14 14:56:58',1,30004217,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(1710,'2015-03-14 14:56:58','2015-10-11 16:46:36',1,30002922,0,0,0,1,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1),(1711,'2015-03-14 14:56:58','2015-03-14 14:56:58',1,30004546,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(1712,'2015-03-14 14:56:58','2015-03-14 14:56:58',1,30000531,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(1713,'2015-03-14 14:56:58','2015-10-11 16:46:36',1,30000846,0,0,2,0,0,0,0,0,0,0,5,37,12,4,1,1,0,0,0,1,0,1,0,1),(1714,'2015-03-14 14:56:58','2015-10-11 16:46:36',1,30004451,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,1,0,0,1),(1715,'2015-03-14 14:56:58','2015-03-14 14:56:58',1,30001620,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(1716,'2015-03-14 14:56:58','2015-10-11 16:46:36',1,30000283,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(1717,'2015-03-14 14:56:58','2015-03-14 14:56:58',1,30004028,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(1718,'2015-03-14 14:56:58','2015-10-11 16:46:36',1,30005100,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(1719,'2015-03-14 14:56:58','2015-03-14 14:56:58',1,30003732,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(1720,'2015-03-14 14:56:58','2015-10-11 16:46:36',1,30001229,0,0,0,0,1,0,1,0,0,0,0,0,0,0,2,0,0,1,0,0,0,0,0,0),(1721,'2015-03-14 14:56:58','2015-10-11 16:46:36',1,30002032,0,0,0,0,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(1722,'2015-03-14 14:56:58','2015-10-11 16:46:36',1,30000903,0,1,0,0,0,0,0,0,0,0,1,0,0,0,0,1,1,0,0,3,0,0,0,1),(1723,'2015-03-14 14:56:58','2015-10-11 16:46:36',1,30004208,1,0,0,0,0,0,0,0,0,0,1,2,0,0,0,0,0,0,0,1,1,0,0,0),(1724,'2015-03-14 14:56:58','2015-10-11 16:46:36',1,30001214,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,1,0,1,0,1,0),(1725,'2015-03-14 14:56:58','2015-03-14 14:56:58',1,30001334,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(1726,'2015-03-14 14:56:58','2015-03-14 14:56:58',1,30002136,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(1727,'2015-03-14 14:56:58','2015-03-14 14:56:58',1,30003136,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(1728,'2015-03-14 14:56:58','2015-10-11 16:46:36',1,30000612,1,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0),(1729,'2015-03-14 14:56:58','2015-10-11 16:46:36',1,30004959,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1),(1730,'2015-03-14 14:56:58','2015-03-14 14:56:58',1,30001462,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(1731,'2015-03-14 14:56:58','2015-10-11 16:46:36',1,30001217,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0),(1732,'2015-03-14 14:56:58','2015-03-14 14:56:58',1,30004725,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(1733,'2015-03-14 14:56:58','2015-10-11 16:46:36',1,30002931,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,1,0),(1734,'2015-03-14 14:56:58','2015-03-14 14:56:58',1,30001527,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(1735,'2015-03-14 14:56:58','2015-03-14 14:56:58',1,30000524,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(1736,'2015-03-14 14:56:58','2015-03-14 14:56:58',1,30000634,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(1737,'2015-03-14 14:56:58','2015-03-14 14:56:58',1,30003242,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(1738,'2015-03-14 14:56:58','2015-03-14 14:56:58',1,30001909,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(1739,'2015-03-14 14:56:58','2015-03-14 14:56:58',1,30002605,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(1740,'2015-03-14 14:56:58','2015-03-14 14:56:58',1,30002349,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(1741,'2015-03-14 14:56:58','2015-03-14 14:56:58',1,30002163,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(1742,'2015-03-14 14:56:58','2015-03-14 14:56:58',1,30004499,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(1743,'2015-03-14 14:56:58','2015-03-14 14:56:58',1,30003694,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(1744,'2015-03-14 14:56:58','2015-03-14 14:56:58',1,30002124,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(1745,'2015-03-14 14:56:58','2015-03-14 14:56:58',1,30003476,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(1746,'2015-03-14 14:56:58','2015-10-11 16:46:36',1,30003438,0,0,1,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(1747,'2015-03-14 14:56:58','2015-03-14 14:56:58',1,30003441,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(1748,'2015-03-14 14:56:58','2015-10-11 16:46:36',1,30001933,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(1749,'2015-03-14 14:56:58','2015-03-14 14:56:58',1,30002281,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(1750,'2015-03-14 14:56:58','2015-03-14 14:56:58',1,30005291,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(1751,'2015-03-14 14:56:58','2015-03-14 14:56:58',1,30002535,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(1752,'2015-03-14 14:56:58','2015-03-14 14:56:58',1,30002196,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(1753,'2015-03-14 14:56:58','2015-10-11 16:46:36',1,30002269,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(1754,'2015-03-14 14:56:58','2015-03-14 14:56:58',1,30002536,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(1755,'2015-03-14 14:56:58','2015-10-11 16:46:36',1,30002094,0,0,0,0,0,0,0,0,0,1,0,0,1,0,1,1,0,0,0,0,1,0,0,0),(1756,'2015-03-14 14:56:58','2015-03-14 14:56:58',1,30002277,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(1757,'2015-03-14 14:56:58','2015-10-11 16:46:36',1,30001984,4,1,0,7,7,11,0,5,0,5,0,1,2,3,4,2,4,3,25,3,6,0,8,2),(1758,'2015-03-14 14:56:58','2015-10-11 16:46:36',1,30004020,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,0,0,0),(1759,'2015-03-14 14:56:58','2015-03-14 14:56:58',1,30003911,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(1760,'2015-03-14 14:56:58','2015-03-14 14:56:58',1,30002552,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(1761,'2015-03-14 14:56:58','2015-03-14 14:56:58',1,30004256,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(1762,'2015-03-14 14:56:58','2015-10-11 16:46:36',1,30002518,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(1763,'2015-03-14 14:56:58','2015-03-14 14:56:58',1,30000486,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(1764,'2015-03-14 14:56:58','2015-10-11 16:46:36',1,30003355,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0),(1765,'2015-03-14 14:56:58','2015-10-11 16:46:36',1,30005104,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0),(1766,'2015-03-14 14:56:58','2015-10-11 16:46:36',1,30003892,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(1767,'2015-03-14 14:56:58','2015-10-11 16:46:36',1,30000783,0,0,1,0,0,0,2,0,0,0,0,0,0,0,2,1,0,0,1,1,0,0,0,0),(1768,'2015-03-14 14:56:58','2015-10-11 16:46:36',1,30004297,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(1769,'2015-03-14 14:56:58','2015-10-11 16:46:36',1,30002420,0,0,0,0,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0),(1770,'2015-03-14 14:56:58','2015-03-14 14:56:58',1,30003401,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(1771,'2015-03-14 14:56:58','2015-10-11 16:46:36',1,30002693,4,1,1,0,1,1,0,0,1,1,0,0,2,3,0,0,0,0,1,2,0,2,1,2),(1772,'2015-03-14 14:56:58','2015-10-11 16:46:36',1,30003605,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0),(1773,'2015-03-14 14:56:58','2015-10-11 16:46:36',1,30002660,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(1774,'2015-03-14 14:56:58','2015-10-11 16:46:36',1,30002099,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,1,2,0,0,1),(1775,'2015-03-14 14:56:58','2015-03-14 14:56:58',1,30002563,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(1776,'2015-03-14 14:56:58','2015-03-14 14:56:58',1,30000373,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(1777,'2015-03-14 14:56:58','2015-10-11 16:46:36',1,30005108,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(1778,'2015-03-14 14:56:58','2015-10-11 16:46:36',1,30045319,1,0,0,0,0,0,0,1,0,1,0,0,0,1,0,0,0,0,0,0,0,1,0,1),(1779,'2015-03-14 14:56:58','2015-10-11 16:46:36',1,30002997,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,0,0,0),(1780,'2015-03-14 14:56:58','2015-03-14 14:56:58',1,30004586,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(1781,'2015-03-14 14:56:58','2015-10-11 16:46:36',1,30000249,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0),(1782,'2015-03-14 14:56:58','2015-10-11 16:46:36',1,30002555,0,1,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(1783,'2015-03-14 14:56:58','2015-03-14 14:56:58',1,30000577,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(1784,'2015-03-14 14:56:58','2015-03-14 14:56:58',1,30003393,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(1785,'2015-03-14 14:56:58','2015-03-14 14:56:58',1,30004946,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(1786,'2015-03-14 14:56:58','2015-10-11 16:46:36',1,30000655,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(1787,'2015-03-14 14:56:58','2015-03-14 14:56:58',1,30002740,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(1788,'2015-03-14 14:56:58','2015-03-14 14:56:58',1,30001307,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(1789,'2015-03-14 14:56:58','2015-03-14 14:56:58',1,30004204,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(1790,'2015-03-14 14:56:58','2015-10-11 16:46:36',1,30000814,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0),(1791,'2015-03-14 14:56:58','2015-03-14 14:56:58',1,30000083,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(1792,'2015-03-14 14:56:58','2015-03-14 14:56:58',1,30001313,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(1793,'2015-03-14 14:56:58','2015-03-14 14:56:58',1,30003494,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(1794,'2015-03-14 14:56:58','2015-03-14 14:56:58',1,30000740,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(1795,'2015-03-14 14:56:58','2015-03-14 14:56:58',1,30005317,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(1796,'2015-03-14 14:56:58','2015-10-11 16:46:36',1,30001378,0,0,0,1,1,1,1,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0),(1797,'2015-03-14 14:56:58','2015-03-14 14:56:58',1,30001970,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(1798,'2015-03-14 14:56:58','2015-10-11 16:46:36',1,30001434,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1),(1799,'2015-03-14 14:56:58','2015-10-11 16:46:36',1,30003044,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,2,0,0,0,2,0,0),(1800,'2015-03-14 14:56:58','2015-03-14 14:56:58',1,30003462,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(1801,'2015-03-14 14:56:58','2015-10-11 16:46:36',1,30002398,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(1802,'2015-03-14 14:56:58','2015-10-11 16:46:36',1,30005315,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(1803,'2015-03-14 14:56:58','2015-03-14 14:56:58',1,30003412,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(1804,'2015-03-14 14:56:58','2015-03-14 14:56:58',1,30005313,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(1805,'2015-03-14 14:56:58','2015-03-14 14:56:58',1,30004149,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(1806,'2015-03-14 14:56:58','2015-10-11 16:46:36',1,30001399,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,1,0,0,1,0,0,0),(1807,'2015-03-14 14:56:58','2015-10-11 16:46:36',1,30003570,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(1808,'2015-03-14 14:56:58','2015-10-11 16:46:36',1,30045336,2,1,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,0,0,0),(1809,'2015-03-14 14:56:58','2015-03-14 14:56:58',1,30023410,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(1810,'2015-03-14 14:56:58','2015-03-14 14:56:58',1,30004880,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(1811,'2015-03-14 14:56:58','2015-03-14 14:56:58',1,30002548,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(1812,'2015-03-14 14:56:58','2015-10-11 16:46:36',1,30001672,1,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0),(1813,'2015-03-14 14:56:58','2015-03-14 14:56:58',1,30005202,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(1814,'2015-03-14 14:56:58','2015-03-14 14:56:58',1,30003662,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(1815,'2015-03-14 14:56:58','2015-03-14 14:56:58',1,30003337,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(1816,'2015-03-14 14:56:58','2015-03-14 14:56:58',1,30005082,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(1817,'2015-03-14 14:56:58','2015-10-11 16:46:36',1,30045339,0,0,0,0,0,0,0,1,0,1,0,1,1,2,1,0,0,0,0,0,0,0,0,0),(1818,'2015-03-14 14:56:58','2015-03-14 14:56:58',1,30001430,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(1819,'2015-03-14 14:56:58','2015-03-14 14:56:58',1,30003424,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(1820,'2015-03-14 14:56:58','2015-10-11 16:46:36',1,30002769,0,0,0,0,2,1,1,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,1),(1821,'2015-03-14 14:56:58','2015-03-14 14:56:58',1,30002558,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(1822,'2015-03-14 14:56:58','2015-03-14 14:56:58',1,30003045,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(1823,'2015-03-14 14:56:58','2015-03-14 14:56:58',1,30003454,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(1824,'2015-03-14 14:56:58','2015-10-11 16:46:36',1,30002412,0,0,0,1,0,0,0,0,0,0,0,1,0,0,1,0,0,1,0,0,0,0,0,0),(1825,'2015-03-14 14:56:58','2015-10-11 16:46:36',1,30002475,0,0,0,0,0,0,0,0,0,1,0,0,0,1,0,0,0,0,0,0,0,0,0,3),(1826,'2015-03-14 14:56:58','2015-03-14 14:56:58',1,30000980,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(1827,'2015-03-14 14:56:58','2015-03-14 14:56:58',1,30001942,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(1828,'2015-03-14 14:56:58','2015-03-14 14:56:58',1,30003612,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(1829,'2015-03-14 14:56:58','2015-03-14 14:56:58',1,30002845,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(1830,'2015-03-14 14:56:58','2015-03-14 14:56:58',1,30004388,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(1831,'2015-03-14 14:56:58','2015-03-14 14:56:58',1,30004835,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(1832,'2015-03-14 14:56:58','2015-03-14 14:56:58',1,30001035,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(1833,'2015-03-14 14:56:58','2015-03-14 14:56:58',1,30000676,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(1834,'2015-03-14 14:56:58','2015-03-14 14:56:58',1,30003413,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(1835,'2015-03-14 14:56:58','2015-10-11 16:46:36',1,30002810,0,0,0,0,2,1,0,0,0,1,0,0,0,0,0,0,0,0,1,0,0,0,0,1),(1836,'2015-03-14 14:56:58','2015-03-14 14:56:58',1,30002969,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(1837,'2015-03-14 14:56:58','2015-03-14 14:56:58',1,30033410,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(1838,'2015-03-14 14:56:58','2015-03-14 14:56:58',1,30001371,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(1839,'2015-03-14 14:56:58','2015-10-11 16:46:36',1,30002742,1,0,0,0,0,0,0,0,0,0,0,0,0,2,0,0,0,0,0,0,0,0,0,0),(1840,'2015-03-14 14:56:58','2015-03-14 14:56:58',1,30003472,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(1841,'2015-03-14 14:56:58','2015-10-11 16:46:36',1,30003078,0,0,0,2,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(1842,'2015-03-14 14:56:58','2015-03-14 14:56:58',1,30003463,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(1843,'2015-03-14 14:56:58','2015-10-11 16:46:36',1,30002640,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,0,0),(1844,'2015-03-14 14:56:58','2015-10-11 16:46:36',1,30003425,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(1845,'2015-03-14 14:56:58','2015-03-14 14:56:58',1,30003419,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(1846,'2015-03-14 14:56:58','2015-03-14 14:56:58',1,30004259,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(1847,'2015-03-14 14:56:58','2015-10-11 16:46:36',1,30000203,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(1848,'2015-03-14 14:56:58','2015-03-14 14:56:58',1,30003867,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(1849,'2015-03-14 14:56:58','2015-10-11 16:46:36',1,30001233,0,2,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0),(1850,'2015-03-14 14:56:58','2015-03-14 14:56:58',1,30003537,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(1851,'2015-03-14 14:56:58','2015-03-14 14:56:58',1,30004033,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(1852,'2015-03-14 14:56:58','2015-03-14 14:56:58',1,30001029,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(1853,'2015-03-14 14:56:58','2015-10-11 16:46:36',1,30001736,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0),(1854,'2015-03-14 14:56:58','2015-03-14 14:56:58',1,30004305,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(1855,'2015-03-14 14:56:58','2015-10-11 16:46:36',1,30004603,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,0,0,0),(1856,'2015-03-14 14:56:58','2015-10-11 16:46:36',1,30002964,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(1857,'2015-03-14 14:56:58','2015-10-11 16:46:36',1,30003842,0,0,0,0,0,0,0,0,0,2,2,2,0,0,0,0,0,1,1,0,1,0,0,2),(1858,'2015-03-14 14:56:58','2015-03-14 14:56:58',1,30000028,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(1859,'2015-03-14 14:56:58','2015-03-14 14:56:58',1,30000091,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(1860,'2015-03-14 14:56:58','2015-03-14 14:56:58',1,30000137,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(1861,'2015-03-14 14:56:58','2015-10-11 16:46:36',1,30002730,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0),(1862,'2015-03-14 14:56:58','2015-03-14 14:56:58',1,30003822,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(1863,'2015-03-14 14:56:58','2015-03-14 14:56:58',1,30004986,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(1864,'2015-03-14 14:56:58','2015-10-11 16:46:36',1,30002260,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0),(1865,'2015-03-14 14:56:58','2015-03-14 14:56:58',1,30002673,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(1866,'2015-03-14 14:56:58','2015-10-11 16:46:36',1,30004287,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,2,0,0,0,0),(1867,'2015-03-14 14:56:58','2015-10-11 16:46:36',1,30002095,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,1,0,1,1),(1868,'2015-03-14 14:56:58','2015-03-14 14:56:58',1,30003517,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(1869,'2015-03-14 14:56:58','2015-10-11 16:46:36',1,30003033,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0),(1870,'2015-03-14 14:56:58','2015-10-11 16:46:36',1,30001535,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,1,0),(1871,'2015-03-14 14:56:58','2015-03-14 14:56:58',1,30004182,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(1872,'2015-03-14 14:56:58','2015-03-14 14:56:58',1,30001571,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(1873,'2015-03-14 14:56:58','2015-03-14 14:56:58',1,30003365,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(1874,'2015-03-14 14:56:58','2015-03-14 14:56:58',1,30000437,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(1875,'2015-03-14 14:56:58','2015-10-11 16:46:36',1,30003825,0,1,0,0,0,0,1,0,0,0,0,0,0,1,0,0,0,0,0,0,0,1,3,0),(1876,'2015-03-14 14:56:58','2015-03-14 14:56:58',1,30003466,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(1877,'2015-03-14 14:56:58','2015-03-14 14:56:58',1,30003381,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(1878,'2015-03-14 14:56:58','2015-03-14 14:56:58',1,30000796,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(1879,'2015-03-14 14:56:58','2015-10-11 16:46:36',1,30002060,1,1,2,0,1,1,0,0,0,1,0,0,0,1,1,1,0,1,0,2,1,0,2,0),(1880,'2015-03-14 14:56:58','2015-10-11 16:46:36',1,30003839,0,0,2,1,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1),(1881,'2015-03-14 14:56:58','2015-10-11 16:46:36',1,30003408,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0),(1882,'2015-03-14 14:56:58','2015-03-14 14:56:58',1,30003385,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(1883,'2015-03-14 14:56:58','2015-03-14 14:56:58',1,30001023,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(1884,'2015-03-14 14:56:58','2015-03-14 14:56:58',1,30004314,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(1885,'2015-03-14 14:56:58','2015-10-11 16:46:36',1,30001985,1,2,0,3,0,0,0,0,2,1,0,0,0,2,0,0,0,0,16,0,0,0,1,3),(1886,'2015-03-14 14:56:58','2015-10-11 16:46:36',1,30001181,0,0,0,1,0,0,0,0,0,1,0,0,0,1,1,0,0,0,1,0,0,1,0,0),(1887,'2015-03-14 14:56:58','2015-10-11 16:46:36',1,30002369,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0),(1888,'2015-03-14 14:56:58','2015-10-11 16:46:36',1,30001252,0,1,0,1,0,0,0,0,1,0,1,1,0,0,0,0,0,0,0,1,0,1,0,1),(1889,'2015-03-14 14:56:58','2015-03-14 14:56:58',1,30005281,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(1890,'2015-03-14 14:56:58','2015-03-14 14:56:58',1,30003392,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(1891,'2015-03-14 14:56:58','2015-10-11 16:46:36',1,30002543,0,1,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0),(1892,'2015-03-14 14:56:58','2015-10-11 16:46:36',1,30002085,0,0,0,0,0,0,0,0,0,0,0,1,0,1,1,1,0,0,0,0,0,0,0,0),(1893,'2015-03-14 14:56:58','2015-10-11 16:46:36',1,30003281,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0),(1894,'2015-03-14 14:56:58','2015-10-11 16:46:36',1,30001769,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0),(1895,'2015-03-14 14:56:58','2015-10-11 16:46:36',1,30002962,1,1,3,0,2,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0),(1896,'2015-03-14 14:56:58','2015-03-14 14:56:58',1,30000559,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(1897,'2015-03-14 14:56:58','2015-03-14 14:56:58',1,30002598,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(1898,'2015-03-14 14:56:58','2015-10-11 16:46:36',1,30000666,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(1899,'2015-03-14 14:56:58','2015-03-14 14:56:58',1,30005103,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(1900,'2015-03-14 14:56:58','2015-03-14 14:56:58',1,30000856,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(1901,'2015-03-14 14:56:58','2015-10-11 16:46:36',1,30003192,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(1902,'2015-03-14 14:56:58','2015-10-11 16:46:36',1,30004653,1,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,1,2,0,0,0,0,0,0),(1903,'2015-03-14 14:56:58','2015-03-14 14:56:58',1,30004414,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(1904,'2015-03-14 14:56:58','2015-10-11 16:46:36',1,30004327,0,0,0,0,1,1,0,0,0,0,0,0,0,0,2,0,0,0,0,0,0,0,0,0),(1905,'2015-03-14 14:56:58','2015-03-14 14:56:58',1,30004784,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(1906,'2015-03-14 14:56:58','2015-03-14 14:56:58',1,30005184,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(1907,'2015-03-14 14:56:58','2015-10-11 16:46:36',1,30000279,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(1908,'2015-03-14 14:56:58','2015-10-11 16:46:36',1,30003737,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0),(1909,'2015-03-14 14:56:58','2015-03-14 14:56:58',1,30000578,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(1910,'2015-03-14 14:56:58','2015-10-11 16:46:36',1,30000897,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0),(1911,'2015-03-14 14:56:58','2015-03-14 14:56:58',1,30005183,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(1912,'2015-03-14 14:56:58','2015-03-14 14:56:58',1,30000416,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(1913,'2015-03-14 14:56:58','2015-03-14 14:56:58',1,30001635,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(1914,'2015-03-14 14:56:58','2015-03-14 14:56:58',1,30004929,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(1915,'2015-03-14 14:56:58','2015-03-14 14:56:58',1,30000934,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(1916,'2015-03-14 14:56:58','2015-03-14 14:56:58',1,30002019,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(1917,'2015-03-14 14:56:58','2015-10-11 16:46:36',1,30004032,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,0,0,0),(1918,'2015-03-14 14:56:58','2015-10-11 16:46:36',1,30000572,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(1919,'2015-03-14 14:56:58','2015-03-14 14:56:58',1,30000853,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(1920,'2015-03-14 14:56:58','2015-03-14 14:56:58',1,30004757,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(1921,'2015-03-14 14:56:58','2015-03-14 14:56:58',1,30001064,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(1922,'2015-03-14 14:56:58','2015-03-14 14:56:58',1,30001906,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(1923,'2015-03-14 14:56:58','2015-10-11 16:46:36',1,30003126,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(1924,'2015-03-14 14:56:58','2015-03-14 14:56:58',1,30001801,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(1925,'2015-03-14 14:56:58','2015-03-14 14:56:58',1,30001087,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(1926,'2015-03-14 14:56:58','2015-10-11 16:46:36',1,30004503,0,0,0,0,0,0,1,0,0,0,2,2,0,2,0,0,0,0,0,0,0,0,0,0),(1927,'2015-03-14 14:56:58','2015-10-11 16:46:36',1,30003751,14,0,0,0,0,1,0,0,0,0,0,0,0,0,3,1,24,0,2,0,64,1,27,1),(1928,'2015-03-14 14:56:58','2015-03-14 14:56:58',1,30004867,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(1929,'2015-03-14 14:56:58','2015-10-11 16:46:36',1,30005187,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(1930,'2015-03-14 14:56:58','2015-03-14 14:56:58',1,30004652,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(1931,'2015-03-14 14:56:58','2015-10-11 16:46:36',1,30000695,0,0,1,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(1932,'2015-03-14 14:56:58','2015-03-14 14:56:58',1,30000804,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(1933,'2015-03-14 14:56:58','2015-10-11 16:46:36',1,30004013,1,0,0,0,0,0,0,0,0,0,0,0,1,1,2,2,1,0,0,1,1,0,0,0),(1934,'2015-03-14 14:56:58','2015-03-14 14:56:58',1,30000497,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(1935,'2015-03-14 14:56:58','2015-10-11 16:46:36',1,30000810,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(1936,'2015-03-14 14:56:58','2015-03-14 14:56:58',1,30000754,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(1937,'2015-03-14 14:56:58','2015-03-14 14:56:58',1,30000332,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(1938,'2015-03-14 14:56:58','2015-03-14 14:56:58',1,30002826,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(1939,'2015-03-14 14:56:58','2015-10-11 16:46:36',1,30001171,0,0,0,0,1,0,2,0,0,0,2,2,0,0,0,0,0,0,0,1,3,0,0,1),(1940,'2015-03-14 14:56:58','2015-10-11 16:46:36',1,30000959,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(1941,'2015-03-14 14:56:58','2015-03-14 14:56:58',1,30004507,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(1942,'2015-03-14 14:56:58','2015-10-11 16:46:36',1,30000600,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,0,0,0),(1943,'2015-03-14 14:56:58','2015-10-11 16:46:36',1,30003269,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0),(1944,'2015-03-14 14:56:58','2015-03-14 14:56:58',1,30002381,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(1945,'2015-03-14 14:56:58','2015-03-14 14:56:58',1,30001957,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(1946,'2015-03-14 14:56:58','2015-03-14 14:56:58',1,30002152,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(1947,'2015-03-14 14:56:58','2015-03-14 14:56:58',1,30000981,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(1948,'2015-03-14 14:56:58','2015-10-11 16:46:36',1,30004046,2,0,0,1,1,1,4,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0),(1949,'2015-03-14 14:56:58','2015-03-14 14:56:58',1,30000913,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(1950,'2015-03-14 14:56:58','2015-03-14 14:56:58',1,30002320,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(1951,'2015-03-14 14:56:58','2015-10-11 16:46:36',1,30001153,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,7,0,0,1,0),(1952,'2015-03-14 14:56:58','2015-03-14 14:56:58',1,30000500,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(1953,'2015-03-14 14:56:58','2015-10-11 16:46:36',1,30001888,0,0,0,0,0,0,0,0,1,2,0,1,3,0,0,0,1,0,0,0,0,0,0,0),(1954,'2015-03-14 14:56:58','2015-03-14 14:56:58',1,30000233,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(1955,'2015-03-14 14:56:58','2015-03-14 14:56:58',1,30002221,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(1956,'2015-03-14 14:56:58','2015-03-14 14:56:58',1,30003505,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(1957,'2015-03-14 14:56:58','2015-03-14 14:56:58',1,30004276,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(1958,'2015-03-14 14:56:58','2015-03-14 14:56:58',1,30003473,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(1959,'2015-03-14 14:56:58','2015-03-14 14:56:58',1,30003002,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(1960,'2015-03-14 14:56:58','2015-03-14 14:56:58',1,30003938,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(1961,'2015-03-14 14:56:58','2015-03-14 14:56:58',1,30001049,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(1962,'2015-03-14 14:56:58','2015-03-14 14:56:58',1,30000044,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(1963,'2015-03-14 14:56:58','2015-03-14 14:56:58',1,30002651,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(1964,'2015-03-14 14:56:58','2015-10-11 16:46:36',1,30003541,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,2,0,0,0,0,0,0,1),(1965,'2015-03-14 14:56:58','2015-10-11 16:46:36',1,30001256,0,0,1,0,0,0,0,0,0,1,0,0,0,1,0,0,0,0,0,0,0,0,0,0),(1966,'2015-03-14 14:56:58','2015-10-11 16:46:36',1,30002643,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0),(1967,'2015-03-14 14:56:58','2015-03-14 14:56:58',1,30003599,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(1968,'2015-03-14 14:56:58','2015-03-14 14:56:58',1,30002321,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(1969,'2015-03-14 14:56:58','2015-10-11 16:46:36',1,30002881,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0),(1970,'2015-03-14 14:56:58','2015-03-14 14:56:58',1,30002827,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(1971,'2015-03-14 14:56:58','2015-10-11 16:46:36',1,30003718,2,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(1972,'2015-03-14 14:56:58','2015-10-11 16:46:36',1,30003276,0,1,3,3,3,5,1,1,0,12,2,3,2,1,0,0,0,0,1,5,1,0,1,2),(1973,'2015-03-14 14:56:58','2015-10-11 16:46:36',1,30004043,0,0,0,0,0,0,0,0,0,0,1,0,2,0,0,0,0,0,0,0,0,0,0,0),(1974,'2015-03-14 14:56:58','2015-10-11 16:46:36',1,30002423,0,0,0,0,0,0,1,1,0,0,0,1,0,0,0,0,0,0,0,0,1,0,2,0),(1975,'2015-03-14 14:56:58','2015-03-14 14:56:58',1,30004821,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(1976,'2015-03-14 14:56:58','2015-03-14 14:56:58',1,30002408,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(1977,'2015-03-14 14:56:58','2015-10-11 16:46:36',1,30005030,0,1,0,0,0,0,0,0,1,0,0,1,0,0,0,0,0,0,1,0,0,0,1,0),(1978,'2015-03-14 14:56:58','2015-03-14 14:56:58',1,30000050,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(1979,'2015-03-14 14:56:58','2015-10-11 16:46:36',1,30001709,0,1,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(1980,'2015-03-14 14:56:58','2015-03-14 14:56:58',1,30004263,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(1981,'2015-03-14 14:56:58','2015-03-14 14:56:58',1,30002628,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(1982,'2015-03-14 14:56:58','2015-03-14 14:56:58',1,30002345,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(1983,'2015-03-14 14:56:58','2015-10-11 16:46:36',1,30000226,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(1984,'2015-03-14 14:56:58','2015-10-11 16:46:36',1,30001344,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(1985,'2015-03-14 14:56:58','2015-03-14 14:56:58',1,30000418,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(1986,'2015-03-14 14:56:58','2015-03-14 14:56:58',1,30000495,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(1987,'2015-03-14 14:56:58','2015-10-11 16:46:36',1,30004254,0,0,0,1,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0),(1988,'2015-03-14 14:56:58','2015-03-14 14:56:58',1,30043410,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(1989,'2015-03-14 14:56:58','2015-03-14 14:56:58',1,30003442,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(1990,'2015-03-14 14:56:58','2015-03-14 14:56:58',1,30004110,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(1991,'2015-03-14 14:56:58','2015-10-11 16:46:36',1,30003691,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(1992,'2015-03-14 14:56:58','2015-03-14 14:56:58',1,30003906,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(1993,'2015-03-14 14:56:58','2015-03-14 14:56:58',1,30002335,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(1994,'2015-03-14 14:56:58','2015-03-14 14:56:58',1,30003234,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(1995,'2015-03-14 14:56:58','2015-03-14 14:56:58',1,30002316,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(1996,'2015-03-14 14:56:58','2015-10-11 16:46:36',1,30004980,5,0,1,2,0,0,0,0,0,0,1,1,0,0,0,0,0,0,5,0,1,1,1,0),(1997,'2015-03-14 14:56:58','2015-03-14 14:56:58',1,30005101,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(1998,'2015-03-14 14:56:58','2015-10-11 16:46:36',1,30002082,1,0,0,1,1,1,0,0,0,0,1,0,0,1,1,1,0,2,0,0,0,0,0,0),(1999,'2015-03-14 14:56:58','2015-03-14 14:56:58',1,30003382,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(2000,'2015-03-14 14:56:58','2015-03-14 14:56:58',1,30002677,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(2001,'2015-03-14 14:56:58','2015-03-14 14:56:58',1,30004732,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(2002,'2015-03-14 14:56:58','2015-10-11 16:46:36',1,30002898,0,0,0,0,0,0,12,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0),(2003,'2015-03-14 14:56:58','2015-03-14 14:56:58',1,30000227,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(2004,'2015-03-14 14:56:58','2015-10-11 16:46:36',1,30000484,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,1,0,0),(2005,'2015-03-14 14:56:58','2015-03-14 14:56:58',1,30002156,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(2006,'2015-03-14 14:56:58','2015-03-14 14:56:58',1,30003118,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(2007,'2015-03-14 14:56:58','2015-03-14 14:56:58',1,30000809,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(2008,'2015-03-14 14:56:58','2015-03-14 14:56:58',1,30001638,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(2009,'2015-03-14 14:56:58','2015-03-14 14:56:58',1,30001487,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(2010,'2015-03-14 14:56:58','2015-03-14 14:56:58',1,30001544,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(2011,'2015-03-14 14:56:58','2015-10-11 16:46:36',1,30002891,0,0,0,0,0,0,0,0,0,0,0,0,0,0,4,1,0,0,0,0,1,0,0,0),(2012,'2015-03-14 14:56:58','2015-03-14 14:56:58',1,30001148,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(2013,'2015-03-14 14:56:58','2015-10-11 16:46:36',1,30004303,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0),(2014,'2015-03-14 14:56:58','2015-03-14 14:56:58',1,30023489,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(2015,'2015-03-14 14:56:58','2015-10-11 16:46:36',1,30002663,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0),(2016,'2015-03-14 14:56:58','2015-03-14 14:56:58',1,30000023,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(2017,'2015-03-14 14:56:58','2015-03-14 14:56:58',1,30004058,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(2018,'2015-03-14 14:56:58','2015-10-11 16:46:36',1,30002630,0,0,2,0,0,0,0,0,0,6,2,0,0,0,0,0,0,0,0,0,0,0,0,0),(2019,'2015-03-14 14:56:58','2015-03-14 14:56:58',1,30001637,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(2020,'2015-03-14 14:56:58','2015-03-14 14:56:58',1,30000478,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(2021,'2015-03-14 14:56:58','2015-10-11 16:46:36',1,30003826,0,1,0,0,1,0,0,0,0,0,0,0,0,1,1,0,0,2,0,0,0,4,1,0),(2022,'2015-03-14 14:56:58','2015-10-11 16:46:36',1,30002526,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,1,0,0,0,0,1),(2023,'2015-03-14 14:56:58','2015-03-14 14:56:58',1,30003036,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(2024,'2015-03-14 14:56:58','2015-10-11 16:46:36',1,30003394,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0),(2025,'2015-03-14 14:56:58','2015-03-14 14:56:58',1,30003420,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(2026,'2015-03-14 14:56:58','2015-10-11 16:46:36',1,30002090,0,0,0,0,0,0,0,0,0,1,2,3,3,0,0,1,1,0,2,3,0,1,0,1),(2027,'2015-03-14 14:56:58','2015-10-11 16:46:36',1,30002734,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0),(2028,'2015-03-14 14:56:58','2015-10-11 16:46:36',1,30000168,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0),(2029,'2015-03-14 14:56:58','2015-10-11 16:46:36',1,30002180,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0),(2030,'2015-03-14 14:56:58','2015-10-11 16:46:36',1,30003467,6,1,0,0,0,0,1,2,1,1,4,6,1,0,0,0,2,4,1,0,0,4,4,2),(2031,'2015-03-14 14:56:58','2015-03-14 14:56:58',1,30000398,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(2032,'2015-03-14 14:56:58','2015-03-14 14:56:58',1,30000219,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(2033,'2015-03-14 14:56:58','2015-10-11 16:46:36',1,30003710,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,3),(2034,'2015-03-14 14:56:58','2015-10-11 16:46:36',1,30001364,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,0,0),(2035,'2015-03-14 14:56:58','2015-03-14 14:56:58',1,30003095,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(2036,'2015-03-14 14:56:58','2015-10-11 16:46:36',1,30000199,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,1,0),(2037,'2015-03-14 14:56:58','2015-10-11 16:46:36',1,30000017,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0),(2038,'2015-03-14 14:56:58','2015-10-11 16:46:36',1,30001852,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,1,3,1,0,0),(2039,'2015-03-14 14:56:58','2015-03-14 14:56:58',1,30004161,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(2040,'2015-03-14 14:56:58','2015-03-14 14:56:58',1,30004197,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(2041,'2015-03-14 14:56:58','2015-03-14 14:56:58',1,30001775,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(2042,'2015-03-14 14:56:58','2015-03-14 14:56:58',1,30000906,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(2043,'2015-03-14 14:56:58','2015-10-11 16:46:36',1,30002021,0,0,0,0,3,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(2044,'2015-03-14 14:56:58','2015-10-11 16:46:36',1,30004718,0,0,0,0,0,0,2,4,1,0,1,1,0,0,0,0,0,0,0,0,0,0,0,0),(2045,'2015-03-14 14:56:58','2015-10-11 16:46:36',1,30003711,0,0,0,0,0,0,0,0,0,0,0,0,2,0,0,0,0,0,0,0,0,0,0,1),(2046,'2015-03-14 14:56:58','2015-03-14 14:56:58',1,30001606,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(2047,'2015-03-14 14:56:58','2015-03-14 14:56:58',1,30000835,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(2048,'2015-03-14 14:56:58','2015-03-14 14:56:58',1,30000850,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(2049,'2015-03-14 14:56:58','2015-03-14 14:56:58',1,30000675,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(2050,'2015-03-14 14:56:58','2015-03-14 14:56:58',1,30002128,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(2051,'2015-03-14 14:56:58','2015-10-11 16:46:36',1,30001186,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0),(2052,'2015-03-14 14:56:58','2015-10-11 16:46:36',1,30003213,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0),(2053,'2015-03-14 14:56:58','2015-10-11 16:46:36',1,30001853,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,1),(2054,'2015-03-14 14:56:58','2015-03-14 14:56:58',1,30002878,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(2055,'2015-03-14 14:56:58','2015-10-11 16:46:36',1,30001041,0,2,1,0,0,0,0,2,0,1,1,1,2,5,0,0,0,1,0,0,0,0,0,2),(2056,'2015-03-14 14:56:58','2015-03-14 14:56:58',1,30003949,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(2057,'2015-03-14 14:56:58','2015-03-14 14:56:58',1,30003161,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(2058,'2015-03-14 14:56:58','2015-10-11 16:46:36',1,30003703,0,0,0,0,0,0,0,0,0,1,3,1,0,1,4,2,0,0,1,0,0,1,3,7),(2059,'2015-03-14 14:56:58','2015-03-14 14:56:58',1,30003367,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(2060,'2015-03-14 14:56:58','2015-03-14 14:56:58',1,30002476,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(2061,'2015-03-14 14:56:58','2015-10-11 16:46:36',1,30001183,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0),(2062,'2015-03-14 14:56:58','2015-10-11 16:46:36',1,30001227,0,0,0,0,0,0,0,0,1,0,0,0,1,0,3,1,0,2,0,0,0,1,1,0),(2063,'2015-03-14 14:56:58','2015-03-14 14:56:58',1,30003772,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(2064,'2015-03-14 14:56:58','2015-10-11 16:46:36',1,30004892,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,0,1,0,0,1),(2065,'2015-03-14 14:56:58','2015-03-14 14:56:58',1,30004945,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(2066,'2015-03-14 14:56:58','2015-10-11 16:46:36',1,30004876,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(2067,'2015-03-14 14:56:58','2015-03-14 14:56:58',1,30000338,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(2068,'2015-03-14 14:56:58','2015-03-14 14:56:58',1,30000778,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(2069,'2015-03-14 14:56:58','2015-10-11 16:46:36',1,30001002,0,0,0,0,0,0,0,0,0,0,0,1,0,0,2,1,1,1,0,0,2,0,0,2),(2070,'2015-03-14 14:56:58','2015-03-14 14:56:58',1,30005113,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(2071,'2015-03-14 14:56:58','2015-03-14 14:56:58',1,30001802,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(2072,'2015-03-14 14:56:58','2015-03-14 14:56:58',1,30003155,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(2073,'2015-03-14 14:56:58','2015-03-14 14:56:58',1,30002853,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(2074,'2015-03-14 14:56:58','2015-10-11 16:46:36',1,30000213,0,0,0,0,0,1,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(2075,'2015-03-14 14:56:58','2015-10-11 16:46:36',1,30004696,0,0,0,0,0,0,0,1,0,0,0,0,0,0,4,0,0,1,0,0,1,0,0,1),(2076,'2015-03-14 14:56:58','2015-10-11 16:46:36',1,30001987,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,2,0),(2077,'2015-03-14 14:56:58','2015-10-11 16:46:36',1,30004793,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,1,0),(2078,'2015-03-14 14:56:58','2015-10-11 16:46:36',1,30001848,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,1,1,1,0,0,6,1,4,1),(2079,'2015-03-14 14:56:58','2015-03-14 14:56:58',1,30001607,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(2080,'2015-03-14 14:56:58','2015-10-11 16:46:36',1,30004962,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,0,0),(2081,'2015-03-14 14:56:58','2015-10-11 16:46:36',1,30002301,2,0,0,0,0,0,0,0,3,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0),(2082,'2015-03-14 14:56:58','2015-03-14 14:56:58',1,30001036,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(2083,'2015-03-14 14:56:58','2015-10-11 16:46:36',1,30004721,0,0,0,0,0,0,3,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(2084,'2015-03-14 14:56:58','2015-03-14 14:56:58',1,30004631,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(2085,'2015-03-14 14:56:58','2015-10-11 16:46:36',1,30001569,0,0,0,0,0,0,0,0,0,0,0,0,0,4,1,0,0,0,0,0,0,0,0,0),(2086,'2015-03-14 14:56:58','2015-03-14 14:56:58',1,30003184,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(2087,'2015-03-14 14:56:58','2015-03-14 14:56:58',1,30004534,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(2088,'2015-03-14 14:56:58','2015-10-11 16:46:36',1,30003133,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(2089,'2015-03-14 14:56:58','2015-03-14 14:56:58',1,30003636,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(2090,'2015-03-14 14:56:58','2015-03-14 14:56:58',1,30000537,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(2091,'2015-03-14 14:56:58','2015-10-11 16:46:36',1,30004854,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(2092,'2015-03-14 14:56:58','2015-03-14 14:56:58',1,30000690,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(2093,'2015-03-14 14:56:58','2015-03-14 14:56:58',1,30004664,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(2094,'2015-03-14 14:56:58','2015-03-14 14:56:58',1,30004697,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(2095,'2015-03-14 14:56:58','2015-03-14 14:56:58',1,30001501,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(2096,'2015-03-14 14:56:58','2015-03-14 14:56:58',1,30003101,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(2097,'2015-03-14 14:56:58','2015-10-11 16:46:36',1,30000460,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,0,0,0,0,0,0,0),(2098,'2015-03-14 14:56:58','2015-03-14 14:56:58',1,30002861,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(2099,'2015-03-14 14:56:58','2015-03-14 14:56:58',1,30004536,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(2100,'2015-03-14 14:56:58','2015-10-11 16:46:36',1,30000310,0,0,0,0,0,0,0,0,0,0,1,1,2,0,0,0,0,0,0,0,0,0,0,0),(2101,'2015-03-14 14:56:58','2015-03-14 14:56:58',1,30001517,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(2102,'2015-03-14 14:56:58','2015-10-11 16:46:36',1,30003713,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0),(2103,'2015-03-14 14:56:58','2015-03-14 14:56:58',1,30004061,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(2104,'2015-03-14 14:56:58','2015-10-11 16:46:36',1,30001982,0,0,0,1,0,0,0,0,0,0,1,1,0,0,1,0,0,0,0,1,0,0,0,0),(2105,'2015-03-14 14:56:58','2015-10-11 16:46:36',1,30004598,0,0,0,1,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0),(2106,'2015-03-14 14:56:58','2015-10-11 16:46:36',1,30000305,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0),(2107,'2015-03-14 14:56:58','2015-10-11 16:46:36',1,30001348,0,0,0,0,0,0,0,2,3,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(2108,'2015-03-14 14:56:58','2015-10-11 16:46:36',1,30000545,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,0,0,0,0,0,0,0),(2109,'2015-03-14 14:56:58','2015-03-14 14:56:58',1,30000570,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(2110,'2015-03-14 14:56:58','2015-03-14 14:56:58',1,30004523,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(2111,'2015-03-14 14:56:58','2015-03-14 14:56:58',1,30002020,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(2112,'2015-03-14 14:56:58','2015-10-11 16:46:36',1,30001811,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(2113,'2015-03-14 14:56:58','2015-10-11 16:46:36',1,30003777,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1),(2114,'2015-03-14 14:56:58','2015-10-11 16:46:36',1,30005072,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0),(2115,'2015-03-14 14:56:58','2015-03-14 14:56:58',1,30002204,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(2116,'2015-03-14 14:56:58','2015-03-14 14:56:58',1,30001698,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(2117,'2015-03-14 14:56:58','2015-10-11 16:46:36',1,30003544,1,0,0,0,0,0,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(2118,'2015-03-14 14:56:58','2015-03-14 14:56:58',1,30002674,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(2119,'2015-03-14 14:56:58','2015-10-11 16:46:36',1,30003844,0,0,1,1,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(2120,'2015-03-14 14:56:58','2015-10-11 16:46:36',1,30005273,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2),(2121,'2015-03-14 14:56:58','2015-03-14 14:56:58',1,30004085,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(2122,'2015-03-14 14:56:58','2015-03-14 14:56:58',1,30000107,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(2123,'2015-03-14 14:56:58','2015-10-11 16:46:36',1,30003076,0,0,0,0,0,0,0,0,0,3,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(2124,'2015-03-14 14:56:58','2015-03-14 14:56:58',1,30003805,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(2125,'2015-03-14 14:56:58','2015-03-14 14:56:58',1,30004123,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(2126,'2015-03-14 14:56:58','2015-03-14 14:56:58',1,30004119,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(2127,'2015-03-14 14:56:58','2015-03-14 14:56:58',1,30005282,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(2128,'2015-03-14 14:56:58','2015-03-14 14:56:58',1,30005240,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(2129,'2015-03-14 14:56:58','2015-10-11 16:46:36',1,30000839,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0),(2130,'2015-03-14 14:56:58','2015-03-14 14:56:58',1,30002620,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(2131,'2015-03-14 14:56:58','2015-03-14 14:56:58',1,30000464,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(2132,'2015-03-14 14:56:58','2015-03-14 14:56:58',1,30001862,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(2133,'2015-03-14 14:56:58','2015-03-14 14:56:58',1,30000792,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(2134,'2015-03-14 14:56:58','2015-10-11 16:46:36',1,30001873,0,1,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(2135,'2015-03-14 14:56:58','2015-10-11 16:46:36',1,30001198,1,0,1,0,0,0,0,0,0,10,50,6,4,8,16,21,15,16,3,8,91,64,9,37),(2136,'2015-03-14 14:56:58','2015-10-11 16:46:36',1,30001177,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1),(2137,'2015-03-14 14:56:58','2015-03-14 14:56:58',1,30002093,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(2138,'2015-03-14 14:56:58','2015-03-14 14:56:58',1,30003433,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(2139,'2015-03-14 14:56:58','2015-03-14 14:56:58',1,30003429,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(2140,'2015-03-14 14:56:58','2015-10-11 16:46:36',1,30003897,0,1,0,0,0,0,1,0,0,0,0,0,0,1,1,0,0,0,0,0,0,0,0,0),(2141,'2015-03-14 14:56:58','2015-03-14 14:56:58',1,30000234,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(2142,'2015-03-14 14:56:58','2015-03-14 14:56:58',1,30000149,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(2143,'2015-03-14 14:56:58','2015-10-11 16:46:36',1,30002386,0,0,0,0,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(2144,'2015-03-14 14:56:58','2015-10-11 16:46:36',1,30000087,0,0,0,0,0,0,0,0,0,1,0,0,2,0,0,0,0,0,0,0,0,1,0,0),(2145,'2015-03-14 14:56:58','2015-10-11 16:46:36',1,30001663,0,0,0,0,0,0,1,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0),(2146,'2015-03-14 14:56:58','2015-03-14 14:56:58',1,30004238,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(2147,'2015-03-14 14:56:58','2015-03-14 14:56:58',1,30004083,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(2148,'2015-03-14 14:56:58','2015-10-11 16:46:36',1,30000126,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0),(2149,'2015-03-14 14:56:58','2015-03-14 14:56:58',1,30002533,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(2150,'2015-03-14 14:56:58','2015-10-11 16:46:36',1,30002531,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,0,0,0,0,0,0,0),(2151,'2015-03-14 14:56:58','2015-03-14 14:56:58',1,30003586,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(2152,'2015-03-14 14:56:58','2015-10-11 16:46:36',1,30005244,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0),(2153,'2015-03-14 14:56:58','2015-10-11 16:46:36',1,30003023,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0),(2154,'2015-03-14 14:56:58','2015-03-14 14:56:58',1,30004266,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(2155,'2015-03-14 14:56:58','2015-03-14 14:56:58',1,30004282,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(2156,'2015-03-14 14:56:58','2015-10-11 16:46:36',1,30003871,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(2157,'2015-03-14 14:56:58','2015-03-14 14:56:58',1,30000936,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(2158,'2015-03-14 14:56:58','2015-03-14 14:56:58',1,30001580,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(2159,'2015-03-14 14:56:58','2015-10-11 16:46:36',1,30000553,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(2160,'2015-03-14 14:56:58','2015-03-14 14:56:58',1,30003202,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(2161,'2015-03-14 14:56:58','2015-10-11 16:46:36',1,30004288,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0),(2162,'2015-03-14 14:56:58','2015-03-14 14:56:58',1,30004084,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(2163,'2015-03-14 14:56:58','2015-03-14 14:56:58',1,30002972,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(2164,'2015-03-14 14:56:58','2015-03-14 14:56:58',1,30001714,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(2165,'2015-03-14 14:56:58','2015-03-14 14:56:58',1,30004474,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(2166,'2015-03-14 14:56:58','2015-03-14 14:56:58',1,30003035,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(2167,'2015-03-14 14:56:58','2015-03-14 14:56:58',1,30002232,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(2168,'2015-03-14 14:56:58','2015-03-14 14:56:58',1,30003877,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(2169,'2015-03-14 14:56:58','2015-10-11 16:46:36',1,30000887,0,0,0,0,0,0,0,0,0,1,0,0,0,1,0,0,0,0,0,0,0,0,0,0),(2170,'2015-03-14 14:56:58','2015-10-11 16:46:36',1,30005288,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,0,0),(2171,'2015-03-14 14:56:58','2015-10-11 16:46:36',1,30005312,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0),(2172,'2015-03-14 14:56:58','2015-10-11 16:46:36',1,30001192,0,0,0,0,0,0,0,0,0,1,0,0,0,0,1,2,1,0,1,0,0,5,2,1),(2173,'2015-03-14 14:56:58','2015-03-14 14:56:58',1,30003232,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(2174,'2015-03-14 14:56:58','2015-03-14 14:56:58',1,30000789,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(2175,'2015-03-14 14:56:58','2015-03-14 14:56:58',1,30000859,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(2176,'2015-03-14 14:56:58','2015-03-14 14:56:58',1,30001122,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(2177,'2015-03-14 14:56:58','2015-10-11 16:46:36',1,30002133,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,0,0,0,0,0,0,0),(2178,'2015-03-14 14:56:58','2015-10-11 16:46:36',1,30000544,0,1,0,0,0,0,0,0,0,3,2,2,1,0,0,0,0,0,0,0,2,2,0,0),(2179,'2015-03-14 14:56:58','2015-10-11 16:46:36',1,30003698,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(2180,'2015-03-14 14:56:58','2015-10-11 16:46:36',1,30001178,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2),(2181,'2015-03-14 14:56:58','2015-03-14 14:56:58',1,30000671,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(2182,'2015-03-14 14:56:58','2015-10-11 16:46:36',1,30002306,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1),(2183,'2015-03-14 14:56:58','2015-10-11 16:46:36',1,30003736,2,0,0,0,0,0,0,0,0,0,1,1,0,0,2,2,0,0,0,0,1,2,0,0),(2184,'2015-03-14 14:56:58','2015-10-11 16:46:36',1,30002725,0,0,0,0,1,0,0,1,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0),(2185,'2015-03-14 14:56:58','2015-03-14 14:56:58',1,30000070,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(2186,'2015-03-14 14:56:58','2015-03-14 14:56:58',1,30004087,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(2187,'2015-03-14 14:56:58','2015-10-11 16:46:36',1,30005268,4,0,1,0,0,0,0,0,0,5,4,4,0,0,2,1,0,0,0,1,1,0,0,0),(2188,'2015-03-14 14:56:58','2015-10-11 16:46:36',1,30002403,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0),(2189,'2015-03-14 14:56:58','2015-03-14 14:56:58',1,30001716,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(2190,'2015-03-14 14:56:58','2015-03-14 14:56:58',1,30003963,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(2191,'2015-03-14 14:56:58','2015-10-11 16:46:36',1,30001646,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(2192,'2015-03-14 14:56:58','2015-03-14 14:56:58',1,30003509,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(2193,'2015-03-14 14:56:58','2015-03-14 14:56:58',1,30003930,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(2194,'2015-03-14 14:56:58','2015-03-14 14:56:58',1,30003858,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(2195,'2015-03-14 14:56:58','2015-10-11 16:46:36',1,30000598,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,1,0,0,0,0),(2196,'2015-03-14 14:56:58','2015-03-14 14:56:58',1,30000552,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(2197,'2015-03-14 14:56:58','2015-10-11 16:46:36',1,30004465,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(2198,'2015-03-14 14:56:58','2015-03-14 14:56:58',1,30002875,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(2199,'2015-03-14 14:56:58','2015-03-14 14:56:58',1,30004694,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(2200,'2015-03-14 14:56:58','2015-03-14 14:56:58',1,30004167,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(2201,'2015-03-14 14:56:58','2015-03-14 14:56:58',1,30004957,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(2202,'2015-03-14 14:56:58','2015-03-14 14:56:58',1,30000456,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(2203,'2015-03-14 14:56:58','2015-10-11 16:46:36',1,30002653,0,0,0,0,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(2204,'2015-03-14 14:56:58','2015-03-14 14:56:58',1,30000593,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(2205,'2015-03-14 14:56:58','2015-10-11 16:46:36',1,30002636,0,0,0,0,0,1,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0),(2206,'2015-03-14 14:56:58','2015-03-14 14:56:58',1,30003808,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(2207,'2015-03-14 14:56:58','2015-10-11 16:46:36',1,30003360,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(2208,'2015-03-14 14:56:58','2015-10-11 16:46:36',1,30003057,0,0,0,0,0,0,0,1,0,0,0,0,0,1,0,1,1,1,0,0,0,0,0,0),(2209,'2015-03-14 14:56:58','2015-03-14 14:56:58',1,30002859,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(2210,'2015-03-14 14:56:58','2015-03-14 14:56:58',1,30001573,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(2211,'2015-03-14 14:56:58','2015-03-14 14:56:58',1,30003199,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(2212,'2015-03-14 14:56:58','2015-03-14 14:56:58',1,30002328,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(2213,'2015-03-14 14:56:58','2015-03-14 14:56:58',1,30001883,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(2214,'2015-03-14 14:56:58','2015-03-14 14:56:58',1,30002627,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(2215,'2015-03-14 14:56:58','2015-10-11 16:46:36',1,30002102,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1),(2216,'2015-03-14 14:56:58','2015-10-11 16:46:36',1,30002384,0,0,0,0,0,0,0,0,0,0,0,0,0,0,3,2,0,0,0,0,0,0,0,1),(2217,'2015-03-14 14:56:58','2015-10-11 16:46:36',1,30002517,0,0,1,0,0,0,0,0,0,1,2,1,0,0,0,2,2,0,2,2,1,1,0,1),(2218,'2015-03-14 14:56:58','2015-03-14 14:56:58',1,30002560,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(2219,'2015-03-14 14:56:58','2015-10-11 16:46:36',1,30002556,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0),(2220,'2015-03-14 14:56:58','2015-03-14 14:56:58',1,30001347,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(2221,'2015-03-14 14:56:58','2015-03-14 14:56:58',1,30003653,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(2222,'2015-03-14 14:56:58','2015-10-11 16:46:36',1,30002123,0,0,0,0,2,1,0,0,0,1,0,0,0,0,1,1,0,0,0,0,0,0,0,0),(2223,'2015-03-14 14:56:58','2015-10-11 16:46:36',1,30002947,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0),(2224,'2015-03-14 14:56:58','2015-03-14 14:56:58',1,30004778,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(2225,'2015-03-14 14:56:58','2015-03-14 14:56:58',1,30001661,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(2226,'2015-03-14 14:56:58','2015-03-14 14:56:58',1,30000344,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(2227,'2015-03-14 14:56:58','2015-03-14 14:56:58',1,30002529,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(2228,'2015-03-14 14:56:58','2015-10-11 16:46:36',1,30002621,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1),(2229,'2015-03-14 14:56:58','2015-10-11 16:46:36',1,30001531,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1),(2230,'2015-03-14 14:56:58','2015-10-11 16:46:36',1,30000276,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0),(2231,'2015-03-14 14:56:58','2015-10-11 16:46:36',1,30005123,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1),(2232,'2015-03-14 14:56:58','2015-03-14 14:56:58',1,30003986,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(2233,'2015-03-14 14:56:58','2015-03-14 14:56:58',1,30000225,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(2234,'2015-03-14 14:56:58','2015-03-14 14:56:58',1,30002588,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(2235,'2015-03-14 14:56:58','2015-03-14 14:56:58',1,30000974,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(2236,'2015-03-14 14:56:58','2015-03-14 14:56:58',1,30000523,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(2237,'2015-03-14 14:56:58','2015-10-11 16:46:36',1,30001001,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,1,1,0,0),(2238,'2015-03-14 14:56:58','2015-03-14 14:56:58',1,30001331,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(2239,'2015-03-14 14:56:58','2015-03-14 14:56:58',1,30001129,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(2240,'2015-03-14 14:56:58','2015-03-14 14:56:58',1,30001513,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(2241,'2015-03-14 14:56:58','2015-03-14 14:56:58',1,30000281,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(2242,'2015-03-14 14:56:58','2015-03-14 14:56:58',1,30000444,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(2243,'2015-03-14 14:56:58','2015-03-14 14:56:58',1,30005116,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(2244,'2015-03-14 14:56:58','2015-10-11 16:46:36',1,30003752,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0),(2245,'2015-03-14 14:56:58','2015-03-14 14:56:58',1,30005090,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(2246,'2015-03-14 14:56:58','2015-03-14 14:56:58',1,30000547,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(2247,'2015-03-14 14:56:58','2015-03-14 14:56:58',1,30004814,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(2248,'2015-03-14 14:56:58','2015-03-14 14:56:58',1,30004512,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(2249,'2015-03-14 14:56:58','2015-03-14 14:56:58',1,30003261,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(2250,'2015-03-14 14:56:58','2015-03-14 14:56:58',1,30000268,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(2251,'2015-03-14 14:56:58','2015-03-14 14:56:58',1,30004592,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(2252,'2015-03-14 14:56:58','2015-03-14 14:56:58',1,30004446,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(2253,'2015-03-14 14:56:58','2015-10-11 16:46:36',1,30001269,1,0,0,0,2,1,0,0,1,0,1,0,0,0,0,0,0,0,0,1,1,1,1,0),(2254,'2015-03-14 14:56:58','2015-03-14 14:56:58',1,30002120,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(2255,'2015-03-14 14:56:58','2015-03-14 14:56:58',1,30001343,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(2256,'2015-03-14 14:56:58','2015-03-14 14:56:58',1,30004606,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(2257,'2015-03-14 14:56:58','2015-03-14 14:56:58',1,30003144,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(2258,'2015-03-14 14:56:58','2015-03-14 14:56:58',1,30000223,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(2259,'2015-03-14 14:56:58','2015-10-11 16:46:36',1,30000865,0,0,0,2,0,0,0,1,0,0,4,2,1,0,0,0,0,0,0,0,1,2,6,2),(2260,'2015-03-14 14:56:58','2015-03-14 14:56:58',1,30003160,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(2261,'2015-03-14 14:56:58','2015-03-14 14:56:58',1,30003608,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(2262,'2015-03-14 14:56:58','2015-03-14 14:56:58',1,30002043,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(2263,'2015-03-14 14:56:58','2015-03-14 14:56:58',1,30004178,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(2264,'2015-03-14 14:56:58','2015-03-14 14:56:58',1,30000426,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(2265,'2015-03-14 14:56:58','2015-03-14 14:56:58',1,30001575,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(2266,'2015-03-14 14:56:58','2015-03-14 14:56:58',1,30000410,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(2267,'2015-03-14 14:56:58','2015-10-11 16:46:36',1,30000685,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(2268,'2015-03-14 14:56:58','2015-10-11 16:46:36',1,30003723,1,0,0,1,0,0,0,0,0,5,8,6,0,84,0,0,0,0,0,0,1,2,5,2),(2269,'2015-03-14 14:56:58','2015-10-11 16:46:36',1,30000574,0,0,1,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0),(2270,'2015-03-14 14:56:58','2015-03-14 14:56:58',1,30004443,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(2271,'2015-03-14 14:56:58','2015-10-11 16:46:36',1,30004034,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,0,0,0,0,0,0,0,1,0),(2272,'2015-03-14 14:56:58','2015-03-14 14:56:58',1,30000973,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(2273,'2015-03-14 14:56:58','2015-03-14 14:56:58',1,30001518,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(2274,'2015-03-14 14:56:58','2015-03-14 14:56:58',1,30002857,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(2275,'2015-03-14 14:56:58','2015-03-14 14:56:58',1,30004678,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(2276,'2015-03-14 14:56:58','2015-10-11 16:46:36',1,30003775,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1),(2277,'2015-03-14 14:56:58','2015-03-14 14:56:58',1,30004916,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(2278,'2015-03-14 14:56:58','2015-03-14 14:56:58',1,30000960,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(2279,'2015-03-14 14:56:58','2015-03-14 14:56:58',1,30001424,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(2280,'2015-03-14 14:56:58','2015-10-11 16:46:36',1,30002800,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1),(2281,'2015-03-14 14:56:58','2015-03-14 14:56:58',1,30005250,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(2282,'2015-03-14 14:56:58','2015-10-11 16:46:36',1,30012547,0,0,0,0,0,0,0,0,1,0,0,0,0,0,2,1,0,0,0,0,1,0,0,0),(2283,'2015-03-14 14:56:58','2015-03-14 14:56:58',1,30005223,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(2284,'2015-03-14 14:56:58','2015-03-14 14:56:58',1,30002264,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(2285,'2015-03-14 14:56:58','2015-10-11 16:46:36',1,30002057,0,0,1,0,0,0,4,0,0,1,0,0,2,2,0,2,3,2,3,2,1,0,1,1),(2286,'2015-03-14 14:56:58','2015-10-11 16:46:36',1,30001367,0,0,0,0,1,0,0,0,0,0,0,0,0,2,0,0,0,1,0,0,0,0,1,0),(2287,'2015-03-14 14:56:58','2015-10-11 16:46:36',1,30002050,0,1,0,0,0,0,0,0,0,3,0,0,0,0,1,1,0,0,4,0,0,0,1,0),(2288,'2015-03-14 14:56:58','2015-03-14 14:56:58',1,30003533,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(2289,'2015-03-14 14:56:58','2015-10-11 16:46:36',1,30000094,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0),(2290,'2015-03-14 14:56:58','2015-03-14 14:56:58',1,30002250,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(2291,'2015-03-14 14:56:58','2015-10-11 16:46:36',1,30004248,0,0,0,0,0,0,1,0,1,0,0,1,0,0,0,0,0,0,1,0,0,0,0,0),(2292,'2015-03-14 14:56:58','2015-10-11 16:46:36',1,30005012,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(2293,'2015-03-14 14:56:58','2015-10-11 16:46:36',1,30003106,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0),(2294,'2015-03-14 14:56:58','2015-03-14 14:56:58',1,30003918,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(2295,'2015-03-14 14:56:58','2015-03-14 14:56:58',1,30004257,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(2296,'2015-03-14 14:56:58','2015-03-14 14:56:58',1,30003449,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(2297,'2015-03-14 14:56:58','2015-03-14 14:56:58',1,30002077,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(2298,'2015-03-14 14:56:58','2015-03-14 14:56:58',1,30003085,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(2299,'2015-03-14 14:56:58','2015-10-11 16:46:36',1,30001448,11,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(2300,'2015-03-14 14:56:58','2015-03-14 14:56:58',1,30002990,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(2301,'2015-03-14 14:56:58','2015-10-11 16:46:36',1,30002781,0,0,0,0,0,0,0,0,2,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0),(2302,'2015-03-14 14:56:58','2015-03-14 14:56:58',1,30003003,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(2303,'2015-03-14 14:56:58','2015-03-14 14:56:58',1,30002404,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(2304,'2015-03-14 14:56:58','2015-03-14 14:56:58',1,30004100,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(2305,'2015-03-14 14:56:58','2015-10-11 16:46:36',1,30045341,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,0,0),(2306,'2015-03-14 14:56:58','2015-03-14 14:56:58',1,30003010,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(2307,'2015-03-14 14:56:58','2015-10-11 16:46:36',1,30002981,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1),(2308,'2015-03-14 14:56:58','2015-03-14 14:56:58',1,30003900,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(2309,'2015-03-14 14:56:58','2015-03-14 14:56:58',1,30003523,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(2310,'2015-03-14 14:56:58','2015-03-14 14:56:58',1,30000152,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(2311,'2015-03-14 14:56:58','2015-03-14 14:56:58',1,30003547,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(2312,'2015-03-14 14:56:58','2015-03-14 14:56:58',1,30033489,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(2313,'2015-03-14 14:56:58','2015-03-14 14:56:58',1,30005265,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(2314,'2015-03-14 14:56:58','2015-03-14 14:56:58',1,30004145,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(2315,'2015-03-14 14:56:58','2015-10-11 16:46:36',1,30003087,0,0,0,0,0,0,0,0,0,2,0,0,0,0,0,0,0,1,1,0,1,0,0,0),(2316,'2015-03-14 14:56:58','2015-03-14 14:56:58',1,30003418,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(2317,'2015-03-14 14:56:58','2015-10-11 16:46:36',1,30003597,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0),(2318,'2015-03-14 14:56:58','2015-10-11 16:46:36',1,30003017,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0),(2319,'2015-03-14 14:56:58','2015-10-11 16:46:36',1,30003587,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,0,0),(2320,'2015-03-14 14:56:58','2015-10-11 16:46:36',1,30003793,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0),(2321,'2015-03-14 14:56:58','2015-03-14 14:56:58',1,30002225,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(2322,'2015-03-14 14:56:58','2015-10-11 16:46:36',1,30002758,0,0,0,1,1,1,0,1,0,0,0,1,1,1,0,0,1,0,0,1,0,0,0,5),(2323,'2015-03-14 14:56:58','2015-10-11 16:46:36',1,30000074,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0),(2324,'2015-03-14 14:56:58','2015-03-14 14:56:58',1,30000032,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(2325,'2015-03-14 14:56:58','2015-10-11 16:46:36',1,30002806,0,1,1,0,2,1,0,0,0,0,2,2,0,3,0,0,0,2,0,1,0,1,1,0),(2326,'2015-03-14 14:56:58','2015-10-11 16:46:36',1,30002764,0,0,1,0,0,0,0,1,0,2,0,0,0,0,2,1,0,3,1,1,0,0,0,0),(2327,'2015-03-14 14:56:58','2015-03-14 14:56:58',1,30001737,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(2328,'2015-03-14 14:56:58','2015-10-11 16:46:36',1,30002994,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(2329,'2015-03-14 14:56:58','2015-03-14 14:56:58',1,30003082,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(2330,'2015-03-14 14:56:58','2015-03-14 14:56:58',1,30003542,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(2331,'2015-03-14 14:56:58','2015-03-14 14:56:58',1,30000979,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(2332,'2015-03-14 14:56:58','2015-03-14 14:56:58',1,30004228,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(2333,'2015-03-14 14:56:58','2015-03-14 14:56:58',1,30003633,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(2334,'2015-03-14 14:56:58','2015-03-14 14:56:58',1,30005107,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(2335,'2015-03-14 14:56:58','2015-03-14 14:56:58',1,30004325,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(2336,'2015-03-14 14:56:58','2015-03-14 14:56:58',1,30001292,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(2337,'2015-03-14 14:56:58','2015-03-14 14:56:58',1,30000569,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(2338,'2015-03-14 14:56:58','2015-03-14 14:56:58',1,30002863,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(2339,'2015-03-14 14:56:58','2015-03-14 14:56:58',1,30001330,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(2340,'2015-03-14 14:56:58','2015-03-14 14:56:58',1,30001482,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(2341,'2015-03-14 14:56:58','2015-10-11 16:46:36',1,30000214,0,0,0,0,0,0,1,0,0,0,0,0,1,0,1,0,0,0,0,0,0,0,0,0),(2342,'2015-03-14 14:56:58','2015-03-14 14:56:58',1,30003649,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(2343,'2015-03-14 14:56:58','2015-03-14 14:56:58',1,30003435,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(2344,'2015-03-14 14:56:58','2015-03-14 14:56:58',1,30024971,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(2345,'2015-03-14 14:56:58','2015-10-11 16:46:36',1,30001161,0,3,6,7,3,8,1,1,1,10,5,3,1,2,0,2,5,5,7,13,10,9,12,5),(2346,'2015-03-14 14:56:58','2015-10-11 16:46:36',1,30002406,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(2347,'2015-03-14 14:56:58','2015-03-14 14:56:58',1,30002579,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(2348,'2015-03-14 14:56:58','2015-10-11 16:46:36',1,30002189,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0),(2349,'2015-03-14 14:56:58','2015-10-11 16:46:36',1,30003846,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,1,0,0,0,0,0,0,0,0),(2350,'2015-03-14 14:56:58','2015-03-14 14:56:58',1,30002418,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(2351,'2015-03-14 14:56:58','2015-10-11 16:46:36',1,30002390,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(2352,'2015-03-14 14:56:58','2015-10-11 16:46:36',1,30002053,1,3,6,0,3,1,2,2,4,2,1,2,2,7,9,9,5,1,1,2,6,1,4,5),(2353,'2015-03-14 14:56:58','2015-10-11 16:46:36',1,30002063,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(2354,'2015-03-14 14:56:58','2015-10-11 16:46:36',1,30003594,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(2355,'2015-03-14 14:56:58','2015-10-11 16:46:36',1,30001044,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,1,0),(2356,'2015-03-14 14:56:58','2015-03-14 14:56:58',1,30003902,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(2357,'2015-03-14 14:56:58','2015-03-14 14:56:58',1,30034971,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(2358,'2015-03-14 14:56:58','2015-03-14 14:56:58',1,30000188,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(2359,'2015-03-14 14:56:58','2015-10-11 16:46:36',1,30005290,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0),(2360,'2015-03-14 14:56:58','2015-03-14 14:56:58',1,30003528,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(2361,'2015-03-14 14:56:58','2015-03-14 14:56:58',1,30005213,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(2362,'2015-03-14 14:56:58','2015-10-11 16:46:36',1,30005320,0,2,0,1,2,1,0,0,1,0,1,1,0,1,0,0,0,0,1,0,0,0,0,0),(2363,'2015-03-14 14:56:58','2015-10-11 16:46:36',1,30004979,5,8,1,5,4,4,2,1,0,4,0,3,2,0,8,8,2,2,1,1,3,8,7,3),(2364,'2015-03-14 14:56:58','2015-03-14 14:56:58',1,30003937,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(2365,'2015-03-14 14:56:58','2015-10-11 16:46:36',1,30003220,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(2366,'2015-03-14 14:56:58','2015-03-14 14:56:58',1,30000837,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(2367,'2015-03-14 14:56:58','2015-03-14 14:56:58',1,30001135,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(2368,'2015-03-14 14:56:58','2015-03-14 14:56:58',1,30001509,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(2369,'2015-03-14 14:56:58','2015-10-11 16:46:36',1,30003162,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(2370,'2015-03-14 14:56:58','2015-03-14 14:56:58',1,30004686,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(2371,'2015-03-14 14:56:58','2015-10-11 16:46:36',1,30003679,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(2372,'2015-03-14 14:56:58','2015-03-14 14:56:58',1,30001612,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(2373,'2015-03-14 14:56:58','2015-10-11 16:46:36',1,30003099,0,0,0,0,0,0,0,0,0,0,1,0,2,0,1,0,0,0,0,0,1,2,0,1),(2374,'2015-03-14 14:56:58','2015-03-14 14:56:58',1,30001662,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(2375,'2015-03-14 14:56:58','2015-03-14 14:56:58',1,30004240,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(2376,'2015-03-14 14:56:58','2015-10-11 16:46:36',1,30001528,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(2377,'2015-03-14 14:56:58','2015-03-14 14:56:58',1,30004142,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(2378,'2015-03-14 14:56:58','2015-10-11 16:46:36',1,30045338,1,0,0,0,0,0,0,0,1,2,1,2,1,6,0,1,1,0,1,1,2,2,0,1),(2379,'2015-03-14 14:56:58','2015-03-14 14:56:58',1,30001674,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(2380,'2015-03-14 14:56:58','2015-03-14 14:56:58',1,30003428,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(2381,'2015-03-14 14:56:58','2015-03-14 14:56:58',1,30004133,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(2382,'2015-03-14 14:56:58','2015-03-14 14:56:58',1,30002214,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(2383,'2015-03-14 14:56:58','2015-03-14 14:56:58',1,30004141,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(2384,'2015-03-14 14:56:58','2015-03-14 14:56:58',1,30005248,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(2385,'2015-03-14 14:56:58','2015-03-14 14:56:58',1,30004077,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(2386,'2015-03-14 14:56:58','2015-10-11 16:46:36',1,30045345,0,0,0,1,1,0,0,1,0,0,0,0,0,0,0,0,0,1,0,0,0,1,1,0),(2387,'2015-03-14 14:56:58','2015-03-14 14:56:58',1,30000133,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(2388,'2015-03-14 14:56:58','2015-03-14 14:56:58',1,30003875,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(2389,'2015-03-14 14:56:58','2015-03-14 14:56:58',1,30003531,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(2390,'2015-03-14 14:56:58','2015-03-14 14:56:58',1,30031407,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(2391,'2015-03-14 14:56:58','2015-10-11 16:46:36',1,30004956,0,0,0,0,0,0,0,0,2,0,0,0,0,0,0,0,1,0,0,0,1,0,0,0),(2392,'2015-03-14 14:56:58','2015-10-11 16:46:36',1,30002245,0,0,0,0,0,0,0,0,0,1,1,0,2,0,0,0,0,0,0,0,0,0,0,0),(2393,'2015-03-14 14:56:58','2015-10-11 16:46:36',1,30000721,0,0,0,0,0,0,0,1,0,2,0,2,0,2,0,0,0,0,0,1,0,0,0,1),(2394,'2015-03-14 14:56:58','2015-10-11 16:46:36',1,30002468,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0),(2395,'2015-03-14 14:56:58','2015-10-11 16:46:36',1,30002075,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0),(2396,'2015-03-14 14:56:58','2015-03-14 14:56:58',1,30003400,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(2397,'2015-03-14 14:56:58','2015-03-14 14:56:58',1,30002485,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(2398,'2015-03-14 14:56:58','2015-03-14 14:56:58',1,30000828,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(2399,'2015-03-14 14:56:58','2015-10-11 16:46:36',1,30001744,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,0,0),(2400,'2015-03-14 14:56:58','2015-10-11 16:46:36',1,30001016,0,3,0,1,1,0,1,0,0,0,1,0,2,2,1,0,0,0,0,2,4,0,0,0),(2401,'2015-03-14 14:56:58','2015-10-11 16:46:36',1,30001847,0,0,0,0,0,0,1,0,0,0,0,0,1,0,0,0,1,0,0,0,1,0,1,0),(2402,'2015-03-14 14:56:58','2015-03-14 14:56:58',1,30004715,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(2403,'2015-03-14 14:56:58','2015-03-14 14:56:58',1,30004615,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(2404,'2015-03-14 14:56:58','2015-03-14 14:56:58',1,30003243,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(2405,'2015-03-14 14:56:58','2015-03-14 14:56:58',1,30003469,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(2406,'2015-03-14 14:56:58','2015-10-11 16:46:36',1,30002096,0,0,0,1,0,0,0,0,0,0,0,1,0,1,2,2,1,0,0,0,0,2,0,0),(2407,'2015-03-14 14:56:58','2015-03-14 14:56:58',1,30002773,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(2408,'2015-03-14 14:56:58','2015-03-14 14:56:58',1,30002596,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(2409,'2015-03-14 14:56:58','2015-10-11 16:46:36',1,30001680,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(2410,'2015-03-14 14:56:58','2015-10-11 16:46:36',1,30004309,0,0,0,0,0,0,0,0,0,2,2,1,1,2,4,11,9,6,18,42,19,0,2,0),(2411,'2015-03-14 14:56:58','2015-10-11 16:46:36',1,30002397,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(2412,'2015-03-14 14:56:58','2015-03-14 14:56:58',1,30043489,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(2413,'2015-03-14 14:56:58','2015-03-14 14:56:58',1,30002741,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(2414,'2015-03-14 14:56:58','2015-03-14 14:56:58',1,30004264,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(2415,'2015-03-14 14:56:58','2015-03-14 14:56:58',1,30003560,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(2416,'2015-03-14 14:56:58','2015-03-14 14:56:58',1,30004130,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(2417,'2015-03-14 14:56:58','2015-03-14 14:56:58',1,30001690,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(2418,'2015-03-14 14:56:58','2015-10-11 16:46:36',1,30000111,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,1,0,0,0),(2419,'2015-03-14 14:56:58','2015-10-11 16:46:36',1,30003456,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(2420,'2015-03-14 14:56:58','2015-10-11 16:46:36',1,30001221,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(2421,'2015-03-14 14:56:58','2015-10-11 16:46:36',1,30003776,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,0,0,0,0,0),(2422,'2015-03-14 14:56:58','2015-03-14 14:56:58',1,30000370,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(2423,'2015-03-14 14:56:58','2015-03-14 14:56:58',1,30000592,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(2424,'2015-03-14 14:56:58','2015-03-14 14:56:58',1,30001463,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(2425,'2015-03-14 14:56:58','2015-03-14 14:56:58',1,30001583,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(2426,'2015-03-14 14:56:58','2015-03-14 14:56:58',1,30002040,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(2427,'2015-03-14 14:56:58','2015-10-11 16:46:36',1,30002856,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0),(2428,'2015-03-14 14:56:58','2015-03-14 14:56:58',1,30000686,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(2429,'2015-03-14 14:56:58','2015-10-11 16:46:36',1,30001871,0,0,0,0,0,0,0,0,0,0,19,21,0,0,0,0,0,0,0,0,0,0,0,0),(2430,'2015-03-14 14:56:58','2015-03-14 14:56:58',1,30002392,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(2431,'2015-03-14 14:56:58','2015-10-11 16:46:36',1,30003468,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0),(2432,'2015-03-14 14:56:58','2015-03-14 14:56:58',1,30002391,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(2433,'2015-03-14 14:56:58','2015-03-14 14:56:58',1,30002574,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(2434,'2015-03-14 14:56:58','2015-03-14 14:56:58',1,30002576,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(2435,'2015-03-14 14:56:58','2015-03-14 14:56:58',1,30002054,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(2436,'2015-03-14 14:56:58','2015-10-11 16:46:36',1,30003103,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,3,0),(2437,'2015-03-14 14:56:58','2015-03-14 14:56:58',1,30002505,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(2438,'2015-03-14 14:56:58','2015-10-11 16:46:36',1,30004988,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(2439,'2015-03-14 14:56:58','2015-03-14 14:56:58',1,30004304,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(2440,'2015-03-14 14:56:58','2015-10-11 16:46:36',1,30003067,1,2,2,0,3,1,9,3,1,4,1,2,0,4,1,1,0,0,9,2,0,0,0,1),(2441,'2015-03-14 14:56:58','2015-03-14 14:56:58',1,30002572,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(2442,'2015-03-14 14:56:58','2015-10-11 16:46:36',1,30000150,0,0,0,0,0,0,1,1,0,0,0,0,0,1,0,0,0,0,0,0,1,0,0,0),(2443,'2015-03-14 14:56:58','2015-03-14 14:56:58',1,30002217,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(2444,'2015-03-14 14:56:58','2015-03-14 14:56:58',1,30002774,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(2445,'2015-03-14 14:56:58','2015-10-11 16:46:36',1,30002356,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(2446,'2015-03-14 14:56:58','2015-10-11 16:46:36',1,30002871,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0),(2447,'2015-03-14 14:56:58','2015-03-14 14:56:58',1,30004205,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(2448,'2015-03-14 14:56:58','2015-10-11 16:46:36',1,30001159,0,1,0,2,0,0,0,1,0,0,0,0,0,0,0,0,0,2,0,0,0,0,0,3),(2449,'2015-03-14 14:56:58','2015-03-14 14:56:58',1,30045306,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(2450,'2015-03-14 14:56:58','2015-03-14 14:56:58',1,30000134,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(2451,'2015-03-14 14:56:58','2015-10-11 16:46:36',1,30004481,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0),(2452,'2015-03-14 14:56:58','2015-10-11 16:46:36',1,30002796,0,0,1,1,1,0,0,0,1,4,1,0,0,2,0,1,2,1,0,2,2,4,1,3),(2453,'2015-03-14 14:56:58','2015-03-14 14:56:58',1,30000825,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(2454,'2015-03-14 14:56:58','2015-10-11 16:46:36',1,30004767,2,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(2455,'2015-03-14 14:56:58','2015-03-14 14:56:58',1,30000482,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(2456,'2015-03-14 14:56:58','2015-03-14 14:56:58',1,30001767,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(2457,'2015-03-14 14:56:58','2015-03-14 14:56:58',1,30000689,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(2458,'2015-03-14 14:56:58','2015-10-11 16:46:36',1,30000788,0,0,2,0,0,0,8,0,0,0,0,0,0,0,0,0,0,1,0,0,0,1,1,1),(2459,'2015-03-14 14:56:58','2015-03-14 14:56:58',1,30000636,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(2460,'2015-03-14 14:56:58','2015-03-14 14:56:58',1,30001934,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(2461,'2015-03-14 14:56:58','2015-10-11 16:46:36',1,30004400,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0),(2462,'2015-03-14 14:56:58','2015-03-14 14:56:58',1,30004361,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(2463,'2015-03-14 14:56:58','2015-10-11 16:46:36',1,30001188,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(2464,'2015-03-14 14:56:58','2015-03-14 14:56:58',1,30000520,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(2465,'2015-03-14 14:56:58','2015-03-14 14:56:58',1,30004177,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(2466,'2015-03-14 14:56:58','2015-10-11 16:46:36',1,30004636,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,1,0,1,2),(2467,'2015-03-14 14:56:58','2015-03-14 14:56:58',1,30004775,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(2468,'2015-03-14 14:56:58','2015-03-14 14:56:58',1,30001752,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(2469,'2015-03-14 14:56:58','2015-10-11 16:46:36',1,30001914,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,1,1,0,0,0,1,0,0,0),(2470,'2015-03-14 14:56:58','2015-10-11 16:46:36',1,30003784,0,0,0,0,0,0,0,1,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(2471,'2015-03-14 14:56:58','2015-03-14 14:56:58',1,30002134,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(2472,'2015-03-14 14:56:58','2015-03-14 14:56:58',1,30000952,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(2473,'2015-03-14 14:56:58','2015-03-14 14:56:58',1,30001466,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(2474,'2015-03-14 14:56:58','2015-10-11 16:46:36',1,30003701,0,0,0,1,1,1,0,0,0,0,0,1,1,0,0,0,0,0,0,0,0,1,0,0),(2475,'2015-03-14 14:56:58','2015-03-14 14:56:58',1,30003308,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(2476,'2015-03-14 14:56:58','2015-10-11 16:46:36',1,30003317,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0),(2477,'2015-03-14 14:56:58','2015-10-11 16:46:36',1,30001782,0,0,0,0,0,0,0,0,0,0,0,0,0,4,0,0,0,0,0,0,0,0,0,0),(2478,'2015-03-14 14:56:58','2015-03-14 14:56:58',1,30003621,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(2479,'2015-03-14 14:56:58','2015-10-11 16:46:36',1,30004023,0,0,0,0,0,0,0,0,0,0,0,0,1,0,1,0,0,0,0,0,0,0,0,0),(2480,'2015-03-14 14:56:58','2015-03-14 14:56:58',1,30002877,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(2481,'2015-03-14 14:56:58','2015-10-11 16:46:36',1,30002908,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(2482,'2015-03-14 14:56:58','2015-03-14 14:56:58',1,30000758,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(2483,'2015-03-14 14:56:58','2015-03-14 14:56:58',1,30004723,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(2484,'2015-03-14 14:56:58','2015-03-14 14:56:58',1,30004430,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(2485,'2015-03-14 14:56:58','2015-10-11 16:46:36',1,30000626,4,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(2486,'2015-03-14 14:56:58','2015-03-14 14:56:58',1,30002343,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(2487,'2015-03-14 14:56:58','2015-10-11 16:46:36',1,30004933,0,1,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(2488,'2015-03-14 14:56:58','2015-10-11 16:46:36',1,30003716,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,1,0,0,0,0,0),(2489,'2015-03-14 14:56:58','2015-03-14 14:56:58',1,30001110,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(2490,'2015-03-14 14:56:58','2015-03-14 14:56:58',1,30004482,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(2491,'2015-03-14 14:56:58','2015-03-14 14:56:58',1,30001508,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(2492,'2015-03-14 14:56:58','2015-03-14 14:56:58',1,30000709,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(2493,'2015-03-14 14:56:58','2015-03-14 14:56:58',1,30003241,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(2494,'2015-03-14 14:56:58','2015-03-14 14:56:58',1,30001481,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(2495,'2015-03-14 14:56:58','2015-03-14 14:56:58',1,30004120,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(2496,'2015-03-14 14:56:58','2015-03-14 14:56:58',1,30000509,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(2497,'2015-03-14 14:56:58','2015-03-14 14:56:58',1,30001640,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(2498,'2015-03-14 14:56:58','2015-10-11 16:46:36',1,30003933,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0),(2499,'2015-03-14 14:56:58','2015-03-14 14:56:58',1,30000053,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(2500,'2015-03-14 14:56:58','2015-10-11 16:46:36',1,30002984,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0),(2501,'2015-03-14 14:56:58','2015-03-14 14:56:58',1,30001052,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(2502,'2015-03-14 14:56:58','2015-03-14 14:56:58',1,30001428,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(2503,'2015-03-14 14:56:58','2015-03-14 14:56:58',1,30041407,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(2504,'2015-03-14 14:56:58','2015-10-11 16:46:36',1,30045329,0,0,0,0,0,0,2,0,0,0,1,2,0,1,0,0,0,0,0,0,0,1,0,1),(2505,'2015-03-14 14:56:58','2015-03-14 14:56:58',1,30005227,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(2506,'2015-03-14 14:56:58','2015-03-14 14:56:58',1,30003513,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(2507,'2015-03-14 14:56:58','2015-03-14 14:56:58',1,30000400,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(2508,'2015-03-14 14:56:58','2015-10-11 16:46:36',1,30045313,0,0,0,0,0,0,0,0,0,1,0,0,0,1,0,0,1,2,0,0,0,0,0,3),(2509,'2015-03-14 14:56:58','2015-10-11 16:46:36',1,30003072,0,0,1,2,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,0,0),(2510,'2015-03-14 14:56:58','2015-03-14 14:56:58',1,30000422,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(2511,'2015-03-14 14:56:58','2015-03-14 14:56:58',1,30001056,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(2512,'2015-03-14 14:56:58','2015-03-14 14:56:58',1,30003815,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(2513,'2015-03-14 14:56:58','2015-10-11 16:46:36',1,30000254,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(2514,'2015-03-14 14:56:58','2015-03-14 14:56:58',1,30003203,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(2515,'2015-03-14 14:56:58','2015-03-14 14:56:58',1,30003614,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(2516,'2015-03-14 14:56:58','2015-03-14 14:56:58',1,30003987,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(2517,'2015-03-14 14:56:58','2015-10-11 16:46:36',1,30004583,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0),(2518,'2015-03-14 14:56:58','2015-10-11 16:46:36',1,30003796,1,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(2519,'2015-03-14 14:56:58','2015-10-11 16:46:36',1,30005005,0,0,0,0,0,0,1,0,1,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0),(2520,'2015-03-14 14:56:58','2015-10-11 16:46:36',1,30002647,0,0,0,0,0,0,0,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(2521,'2015-03-14 14:56:58','2015-10-11 16:46:36',1,30000169,1,0,0,0,0,0,0,0,0,1,0,0,0,0,2,2,0,0,0,0,0,0,0,0),(2522,'2015-03-14 14:56:58','2015-03-14 14:56:58',1,30000048,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(2523,'2015-03-14 14:56:58','2015-03-14 14:56:58',1,30001602,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(2524,'2015-03-14 14:56:58','2015-03-14 14:56:58',1,30002907,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(2525,'2015-03-14 14:56:58','2015-03-14 14:56:58',1,30001374,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(2526,'2015-03-14 14:56:58','2015-10-11 16:46:36',1,30003311,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(2527,'2015-03-14 14:56:58','2015-10-11 16:46:36',1,30001422,0,0,0,0,0,0,0,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(2528,'2015-03-14 14:56:58','2015-10-11 16:46:36',1,30002766,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1),(2529,'2015-03-14 14:56:58','2015-10-11 16:46:36',1,30000159,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,1,1,0),(2530,'2015-03-14 14:56:58','2015-10-11 16:46:36',1,30002786,0,0,1,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,2,2),(2531,'2015-03-14 14:56:58','2015-10-11 16:46:36',1,30045337,1,0,5,0,0,0,1,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0),(2532,'2015-03-14 14:56:58','2015-03-14 14:56:58',1,30003641,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(2533,'2015-03-14 14:56:58','2015-03-14 14:56:58',1,30000138,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(2534,'2015-03-14 14:56:58','2015-10-11 16:46:36',1,30002372,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(2535,'2015-03-14 14:56:58','2015-03-14 14:56:58',1,30001146,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(2536,'2015-03-14 14:56:58','2015-03-14 14:56:58',1,30004832,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(2537,'2015-03-14 14:56:58','2015-03-14 14:56:58',1,30000090,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(2538,'2015-03-14 14:56:58','2015-03-14 14:56:58',1,30001731,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(2539,'2015-03-14 14:56:58','2015-10-11 16:46:36',1,30002396,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0),(2540,'2015-03-14 14:56:58','2015-03-14 14:56:58',1,30004294,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(2541,'2015-03-14 14:56:58','2015-10-11 16:46:36',1,30002527,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0),(2542,'2015-03-14 14:56:58','2015-03-14 14:56:58',1,30003377,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(2543,'2015-03-14 14:56:58','2015-03-14 14:56:58',1,30002208,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(2544,'2015-03-14 14:56:58','2015-03-14 14:56:58',1,30003445,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(2545,'2015-03-14 14:56:58','2015-03-14 14:56:58',1,30003094,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(2546,'2015-03-14 14:56:58','2015-03-14 14:56:58',1,30001655,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(2547,'2015-03-14 14:56:58','2015-03-14 14:56:58',1,30005053,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(2548,'2015-03-14 14:56:58','2015-10-11 16:46:36',1,30000895,2,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(2549,'2015-03-14 14:56:58','2015-10-11 16:46:36',1,30045343,0,1,0,0,1,1,1,0,0,0,0,0,1,0,1,0,0,1,0,0,0,0,1,1),(2550,'2015-03-14 14:56:58','2015-10-11 16:46:36',1,30005246,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,0,0,0),(2551,'2015-03-14 14:56:58','2015-03-14 14:56:58',1,30002793,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(2552,'2015-03-14 14:56:58','2015-10-11 16:46:36',1,30002788,2,0,0,1,0,2,2,0,0,0,0,1,1,0,0,1,1,1,0,0,0,0,0,1),(2553,'2015-03-14 14:56:58','2015-10-11 16:46:36',1,30000182,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0),(2554,'2015-03-14 14:56:58','2015-03-14 14:56:58',1,30002072,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(2555,'2015-03-14 14:56:58','2015-10-11 16:46:36',1,30004982,0,0,0,1,0,0,0,0,0,1,0,0,0,1,0,1,1,1,0,0,0,0,2,0),(2556,'2015-03-14 14:56:58','2015-03-14 14:56:58',1,30002672,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(2557,'2015-03-14 14:56:58','2015-10-11 16:46:36',1,30002559,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0),(2558,'2015-03-14 14:56:58','2015-03-14 14:56:58',1,30004102,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(2559,'2015-03-14 14:56:58','2015-10-11 16:46:36',1,30045316,1,1,2,3,0,1,0,0,0,0,1,0,0,0,1,1,1,0,0,1,1,0,0,0),(2560,'2015-03-14 14:56:58','2015-03-14 14:56:58',1,30002738,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(2561,'2015-03-14 14:56:58','2015-10-11 16:46:36',1,30003740,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,2,0,0,0),(2562,'2015-03-14 14:56:58','2015-10-11 16:46:36',1,30003788,0,0,0,0,1,1,0,0,0,0,0,0,0,0,1,1,0,0,0,1,0,0,0,0),(2563,'2015-03-14 14:56:58','2015-03-14 14:56:58',1,30003219,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(2564,'2015-03-14 14:56:58','2015-03-14 14:56:58',1,30001991,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(2565,'2015-03-14 14:56:58','2015-10-11 16:46:36',1,30002439,0,0,0,1,0,0,0,0,0,0,0,0,0,0,3,0,0,1,2,0,3,1,0,0),(2566,'2015-03-14 14:56:58','2015-03-14 14:56:58',1,30000062,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(2567,'2015-03-14 14:56:58','2015-03-14 14:56:58',1,30001843,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(2568,'2015-03-14 14:56:58','2015-03-14 14:56:58',1,30004726,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(2569,'2015-03-14 14:56:58','2015-10-11 16:46:36',1,30000252,6,0,0,1,0,0,1,0,2,2,0,0,1,4,0,0,0,0,0,0,0,2,1,0),(2570,'2015-03-14 14:56:58','2015-10-11 16:46:36',1,30003861,0,0,0,0,0,0,0,0,0,0,1,0,0,1,0,0,0,0,0,0,0,0,0,0),(2571,'2015-03-14 14:56:58','2015-03-14 14:56:58',1,30003176,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(2572,'2015-03-14 14:56:58','2015-03-14 14:56:58',1,30000277,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(2573,'2015-03-14 14:56:58','2015-03-14 14:56:58',1,30003140,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(2574,'2015-03-14 14:56:58','2015-03-14 14:56:58',1,30004556,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(2575,'2015-03-14 14:56:58','2015-10-11 16:46:36',1,30045317,0,0,0,0,0,0,1,0,1,0,0,0,0,0,0,0,0,1,0,0,0,1,1,0),(2576,'2015-03-14 14:56:58','2015-03-14 14:56:58',1,30002333,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(2577,'2015-03-14 14:56:58','2015-03-14 14:56:58',1,30002595,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(2578,'2015-03-14 14:56:58','2015-03-14 14:56:58',1,30003452,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(2579,'2015-03-14 14:56:58','2015-03-14 14:56:58',1,30002792,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(2580,'2015-03-14 14:56:58','2015-03-14 14:56:58',1,30003935,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(2581,'2015-03-14 14:56:58','2015-03-14 14:56:58',1,30003524,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(2582,'2015-03-14 14:56:58','2015-10-11 16:46:36',1,30002192,0,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(2583,'2015-03-14 14:56:58','2015-03-14 14:56:58',1,30001696,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(2584,'2015-03-14 14:56:58','2015-10-11 16:46:36',1,30000073,0,0,0,0,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(2585,'2015-03-14 14:56:58','2015-10-11 16:46:36',1,30002331,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(2586,'2015-03-14 14:56:58','2015-10-11 16:46:36',1,30001236,0,0,0,0,0,0,0,0,0,0,2,0,0,1,0,0,0,0,0,0,0,0,0,0),(2587,'2015-03-14 14:56:58','2015-03-14 14:56:58',1,30002276,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(2588,'2015-03-14 14:56:58','2015-10-11 16:46:36',1,30001389,1,1,1,0,0,0,0,0,0,0,1,0,0,0,4,3,2,0,0,0,0,0,1,0),(2589,'2015-03-14 14:56:58','2015-03-14 14:56:58',1,30002739,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(2590,'2015-03-14 14:56:58','2015-10-11 16:46:36',1,30002087,0,0,0,0,0,0,1,0,0,0,1,0,0,0,0,0,1,0,0,0,2,0,2,0),(2591,'2015-03-14 14:56:58','2015-03-14 14:56:58',1,30002815,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(2592,'2015-03-14 14:56:58','2015-10-11 16:46:36',1,30005014,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(2593,'2015-03-14 14:56:58','2015-03-14 14:56:58',1,30002546,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(2594,'2015-03-14 14:56:58','2015-03-14 14:56:58',1,30000165,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(2595,'2015-03-14 14:56:58','2015-03-14 14:56:58',1,30000093,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(2596,'2015-03-14 14:56:58','2015-10-11 16:46:36',1,30002756,0,0,1,0,1,0,1,0,1,1,1,0,0,0,1,1,2,0,1,0,0,0,0,0),(2597,'2015-03-14 14:56:58','2015-03-14 14:56:58',1,30004243,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(2598,'2015-03-14 14:56:58','2015-10-11 16:46:36',1,30001436,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,1),(2599,'2015-03-14 14:56:58','2015-10-11 16:46:36',1,30001387,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0),(2600,'2015-03-14 14:56:58','2015-03-14 14:56:58',1,30001365,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(2601,'2015-03-14 14:56:58','2015-03-14 14:56:58',1,30002804,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(2602,'2015-03-14 14:56:58','2015-03-14 14:56:58',1,30001426,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(2603,'2015-03-14 14:56:58','2015-03-14 14:56:58',1,30001397,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(2604,'2015-03-14 14:56:58','2015-03-14 14:56:58',1,30002402,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(2605,'2015-03-14 14:56:58','2015-03-14 14:56:58',1,30002777,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(2606,'2015-03-14 14:56:58','2015-03-14 14:56:58',1,30001726,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(2607,'2015-03-14 14:56:58','2015-03-14 14:56:58',1,30000285,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(2608,'2015-03-14 14:56:58','2015-10-11 16:46:36',1,30000119,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0),(2609,'2015-03-14 14:56:58','2015-03-14 14:56:58',1,30004157,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(2610,'2015-03-14 14:56:58','2015-03-14 14:56:58',1,30005256,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(2611,'2015-03-14 14:56:58','2015-03-14 14:56:58',1,30002985,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(2612,'2015-03-14 14:56:58','2015-03-14 14:56:58',1,30005169,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(2613,'2015-03-14 14:56:58','2015-03-14 14:56:58',1,30002886,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(2614,'2015-03-14 14:56:58','2015-03-14 14:56:58',1,30002594,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(2615,'2015-03-14 14:56:58','2015-10-11 16:46:36',1,30002524,1,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0),(2616,'2015-03-14 14:56:58','2015-03-14 14:56:58',1,30001656,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(2617,'2015-03-14 14:56:58','2015-03-14 14:56:58',1,30003813,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(2618,'2015-03-14 14:56:58','2015-03-14 14:56:58',1,30000622,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(2619,'2015-03-14 14:56:58','2015-10-11 16:46:36',1,30045351,0,0,0,0,0,0,1,0,1,0,0,0,0,0,0,0,0,1,0,0,0,1,1,2),(2620,'2015-03-14 14:56:58','2015-03-14 14:56:58',1,30003765,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(2621,'2015-03-14 14:56:58','2015-03-14 14:56:58',1,30000956,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(2622,'2015-03-14 14:56:58','2015-10-11 16:46:36',1,30002642,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(2623,'2015-03-14 14:56:58','2015-03-14 14:56:58',1,30004535,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(2624,'2015-03-14 14:56:58','2015-10-11 16:46:36',1,30001812,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(2625,'2015-03-14 14:56:58','2015-03-14 14:56:58',1,30004905,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(2626,'2015-03-14 14:56:58','2015-03-14 14:56:58',1,30004162,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(2627,'2015-03-14 14:56:58','2015-03-14 14:56:58',1,30001920,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(2628,'2015-03-14 14:56:58','2015-10-11 16:46:36',1,30001977,0,0,0,0,0,0,1,0,0,0,0,0,0,1,1,0,0,0,0,0,0,1,0,0),(2629,'2015-03-14 14:56:58','2015-03-14 14:56:58',1,30003206,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(2630,'2015-03-14 14:56:58','2015-10-11 16:46:36',1,30000847,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(2631,'2015-03-14 14:56:58','2015-03-14 14:56:58',1,30001505,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(2632,'2015-03-14 14:56:58','2015-03-14 14:56:58',1,30000489,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(2633,'2015-03-14 14:56:58','2015-10-11 16:46:36',1,30004755,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(2634,'2015-03-14 14:56:58','2015-03-14 14:56:58',1,30002887,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(2635,'2015-03-14 14:56:58','2015-03-14 14:56:58',1,30001195,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(2636,'2015-03-14 14:56:58','2015-03-14 14:56:58',1,30002026,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(2637,'2015-03-14 14:56:58','2015-03-14 14:56:58',1,30002174,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(2638,'2015-03-14 14:56:58','2015-03-14 14:56:58',1,30004215,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(2639,'2015-03-14 14:56:58','2015-10-11 16:46:36',1,30004637,0,0,0,0,0,0,0,0,0,2,10,12,2,1,2,0,2,3,3,0,2,0,0,0),(2640,'2015-03-14 14:56:58','2015-10-11 16:46:36',1,30003142,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1),(2641,'2015-03-14 14:56:58','2015-03-14 14:56:58',1,30000594,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(2642,'2015-03-14 14:56:58','2015-03-14 14:56:58',1,30004410,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(2643,'2015-03-14 14:56:58','2015-03-14 14:56:58',1,30000390,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(2644,'2015-03-14 14:56:58','2015-03-14 14:56:58',1,30000366,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(2645,'2015-03-14 14:56:58','2015-03-14 14:56:58',1,30001112,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(2646,'2015-03-14 14:56:58','2015-03-14 14:56:58',1,30000843,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(2647,'2015-03-14 14:56:58','2015-03-14 14:56:58',1,30001456,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(2648,'2015-03-14 14:56:58','2015-03-14 14:56:58',1,30003634,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(2649,'2015-03-14 14:56:58','2015-03-14 14:56:58',1,30002942,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(2650,'2015-03-14 14:56:58','2015-03-14 14:56:58',1,30004513,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(2651,'2015-03-14 14:56:58','2015-10-11 16:46:37',1,30000677,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,1),(2652,'2015-03-14 14:56:58','2015-03-14 14:56:58',1,30000386,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(2653,'2015-03-14 14:56:58','2015-10-11 16:46:37',1,30001750,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(2654,'2015-03-14 14:56:58','2015-03-14 14:56:58',1,30001043,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(2655,'2015-03-14 14:56:58','2015-03-14 14:56:58',1,30004373,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(2656,'2015-03-14 14:56:58','2015-10-11 16:46:37',1,30004589,0,0,2,0,5,5,4,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0),(2657,'2015-03-14 14:56:58','2015-10-11 16:46:37',1,30001941,0,0,0,1,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(2658,'2015-03-14 14:56:58','2015-10-11 16:46:37',1,30001230,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,1,14,1,0,0,0),(2659,'2015-03-14 14:56:58','2015-03-14 14:56:58',1,30000538,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(2660,'2015-03-14 14:56:58','2015-10-11 16:46:37',1,30001013,4,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(2661,'2015-03-14 14:56:58','2015-03-14 14:56:58',1,30002285,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(2662,'2015-03-14 14:56:58','2015-03-14 14:56:58',1,30001800,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(2663,'2015-03-14 14:56:58','2015-03-14 14:56:58',1,30004312,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(2664,'2015-03-14 14:56:58','2015-10-11 16:46:37',1,30004385,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0),(2665,'2015-03-14 14:56:58','2015-03-14 14:56:58',1,30004460,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(2666,'2015-03-14 14:56:58','2015-03-14 14:56:58',1,30005158,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(2667,'2015-03-14 14:56:58','2015-03-14 14:56:58',1,30004514,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(2668,'2015-03-14 14:56:58','2015-03-14 14:56:58',1,30001055,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(2669,'2015-03-14 14:56:58','2015-10-11 16:46:37',1,30001225,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0),(2670,'2015-03-14 14:56:58','2015-03-14 14:56:58',1,30003864,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(2671,'2015-03-14 14:56:58','2015-10-11 16:46:37',1,30000148,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(2672,'2015-03-14 14:56:58','2015-03-14 14:56:58',1,30004125,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(2673,'2015-03-14 14:56:58','2015-10-11 16:46:37',1,30003554,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0),(2674,'2015-03-14 14:56:58','2015-03-14 14:56:58',1,30001050,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(2675,'2015-03-14 14:56:58','2015-10-11 16:46:37',1,30001385,1,0,0,1,1,1,0,11,0,1,0,0,0,1,0,0,0,0,0,0,1,0,0,0),(2676,'2015-03-14 14:56:58','2015-03-14 14:56:58',1,30000071,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(2677,'2015-03-14 14:56:58','2015-03-14 14:56:58',1,30000060,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(2678,'2015-03-14 14:56:58','2015-03-14 14:56:58',1,30000082,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(2679,'2015-03-14 14:56:58','2015-03-14 14:56:58',1,30000004,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(2680,'2015-03-14 14:56:58','2015-03-14 14:56:58',1,30003080,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(2681,'2015-03-14 14:56:58','2015-10-11 16:46:37',1,30002263,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1),(2682,'2015-03-14 14:56:58','2015-10-11 16:46:37',1,30001653,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0),(2683,'2015-03-14 14:56:58','2015-10-11 16:46:37',1,30003029,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0),(2684,'2015-03-14 14:56:58','2015-10-11 16:46:37',1,30004241,0,0,0,0,0,0,0,1,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0),(2685,'2015-03-14 14:56:58','2015-03-14 14:56:58',1,30003551,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(2686,'2015-03-14 14:56:58','2015-03-14 14:56:58',1,30000121,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(2687,'2015-03-14 14:56:58','2015-10-11 16:46:37',1,30003107,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,1,0,0,0,0,0,0),(2688,'2015-03-14 14:56:58','2015-03-14 14:56:58',1,30002564,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(2689,'2015-03-14 14:56:58','2015-03-14 14:56:58',1,30002336,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(2690,'2015-03-14 14:56:58','2015-03-14 14:56:58',1,30000045,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(2691,'2015-03-14 14:56:58','2015-03-14 14:56:58',1,30000022,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(2692,'2015-03-14 14:56:58','2015-03-14 14:56:58',1,30000381,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(2693,'2015-03-14 14:56:58','2015-03-14 14:56:58',1,30001777,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(2694,'2015-03-14 14:56:58','2015-10-11 16:46:37',1,30001185,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,0,0,0),(2695,'2015-03-14 14:56:58','2015-03-14 14:56:58',1,30001971,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(2696,'2015-03-14 14:56:58','2015-03-14 14:56:58',1,30003148,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(2697,'2015-03-14 14:56:58','2015-03-14 14:56:58',1,30002112,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(2698,'2015-03-14 14:56:58','2015-10-11 16:46:37',1,30002006,0,0,1,0,1,1,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(2699,'2015-03-14 14:56:58','2015-03-14 14:56:58',1,30004192,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(2700,'2015-03-14 14:56:58','2015-10-11 16:46:37',1,30002500,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(2701,'2015-03-14 14:56:58','2015-10-11 16:46:37',1,30005083,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0),(2702,'2015-03-14 14:56:58','2015-10-11 16:46:37',1,30003760,0,0,0,0,1,1,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0),(2703,'2015-03-14 14:56:58','2015-10-11 16:46:37',1,30002692,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0),(2704,'2015-03-14 14:56:58','2015-03-14 14:56:58',1,30005033,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(2705,'2015-03-14 14:56:58','2015-03-14 14:56:58',1,30004148,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(2706,'2015-03-14 14:56:58','2015-03-14 14:56:58',1,30000608,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(2707,'2015-03-14 14:56:58','2015-03-14 14:56:58',1,30002748,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(2708,'2015-03-14 14:56:58','2015-10-11 16:46:37',1,30004281,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0),(2709,'2015-03-14 14:56:58','2015-10-11 16:46:37',1,30002254,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,1,0,0,0,0,0,0,0),(2710,'2015-03-14 14:56:58','2015-03-14 14:56:58',1,30004132,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(2711,'2015-03-14 14:56:58','2015-10-11 16:46:37',1,30003532,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,0,0,0),(2712,'2015-03-14 14:56:58','2015-03-14 14:56:58',1,30000451,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(2713,'2015-03-14 14:56:58','2015-03-14 14:56:58',1,30001451,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(2714,'2015-03-14 14:56:58','2015-10-11 16:46:37',1,30004575,0,0,0,0,0,0,0,0,0,1,0,0,0,0,1,1,1,0,0,0,0,0,0,0),(2715,'2015-03-14 14:56:58','2015-03-14 14:56:58',1,30001243,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(2716,'2015-03-14 14:56:58','2015-10-11 16:46:37',1,30003285,0,0,2,5,0,2,0,1,0,0,0,0,0,2,0,0,0,0,0,0,0,0,0,1),(2717,'2015-03-14 14:56:58','2015-10-11 16:46:37',1,30003661,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,0,0,0,0,0,0,0),(2718,'2015-03-14 14:56:58','2015-10-11 16:46:37',1,30004667,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,0,0,0),(2719,'2015-03-14 14:56:58','2015-10-11 16:46:37',1,30004435,3,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(2720,'2015-03-14 14:56:58','2015-03-14 14:56:58',1,30004839,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(2721,'2015-03-14 14:56:58','2015-03-14 14:56:58',1,30001706,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(2722,'2015-03-14 14:56:58','2015-03-14 14:56:58',1,30005046,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(2723,'2015-03-14 14:56:58','2015-10-11 16:46:37',1,30000142,18,19,22,40,34,19,18,20,13,14,10,12,10,16,23,21,15,18,14,27,20,17,25,15),(2724,'2015-03-14 14:56:58','2015-10-11 16:46:37',1,30004684,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0),(2725,'2015-03-14 14:56:58','2015-03-14 14:56:58',1,30004836,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(2726,'2015-03-14 14:56:58','2015-03-14 14:56:58',1,30004515,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(2727,'2015-03-14 14:56:58','2015-03-14 14:56:58',1,30002150,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(2728,'2015-03-14 14:56:58','2015-03-14 14:56:58',1,30001636,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(2729,'2015-03-14 14:56:58','2015-03-14 14:56:58',1,30001593,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(2730,'2015-03-14 14:56:58','2015-03-14 14:56:58',1,30001556,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(2731,'2015-03-14 14:56:58','2015-10-11 16:46:37',1,30000708,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(2732,'2015-03-14 14:56:58','2015-03-14 14:56:58',1,30005161,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(2733,'2015-03-14 14:56:58','2015-03-14 14:56:58',1,30000662,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(2734,'2015-03-14 14:56:58','2015-03-14 14:56:58',1,30001542,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(2735,'2015-03-14 14:56:58','2015-10-11 16:46:37',1,30004462,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,3,0,0,0,0,0,0),(2736,'2015-03-14 14:56:58','2015-10-11 16:46:37',1,30004086,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,0,0,0),(2737,'2015-03-14 14:56:58','2015-03-14 14:56:58',1,30000078,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(2738,'2015-03-14 14:56:58','2015-03-14 14:56:58',1,30004974,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(2739,'2015-03-14 14:56:58','2015-03-14 14:56:58',1,30002679,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(2740,'2015-03-14 14:56:58','2015-03-14 14:56:58',1,30003387,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(2741,'2015-03-14 14:56:58','2015-10-11 16:46:37',1,30002210,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(2742,'2015-03-14 14:56:58','2015-03-14 14:56:58',1,30004088,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(2743,'2015-03-14 14:56:58','2015-10-11 16:46:37',1,30001046,0,0,0,0,0,0,0,0,0,0,2,1,1,0,0,0,0,0,1,0,0,0,0,0),(2744,'2015-03-14 14:56:58','2015-03-14 14:56:58',1,30002567,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(2745,'2015-03-14 14:56:58','2015-10-11 16:46:37',1,30000156,0,0,0,0,0,0,0,0,0,0,0,0,1,1,1,2,1,8,0,1,0,3,2,3),(2746,'2015-03-14 14:56:58','2015-03-14 14:56:58',1,30003447,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(2747,'2015-03-14 14:56:58','2015-10-11 16:46:37',1,30001423,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0),(2748,'2015-03-14 14:56:58','2015-10-11 16:46:37',1,30011392,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0),(2749,'2015-03-14 14:56:58','2015-10-11 16:46:37',1,30005321,0,1,0,0,0,0,0,0,0,1,0,1,1,0,0,0,0,0,0,0,0,1,0,0),(2750,'2015-03-14 14:56:58','2015-10-11 16:46:37',1,30004731,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(2751,'2015-03-14 14:56:58','2015-03-14 14:56:58',1,30005136,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(2752,'2015-03-14 14:56:58','2015-10-11 16:46:37',1,30000901,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,2,0),(2753,'2015-03-14 14:56:58','2015-03-14 14:56:58',1,30000363,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(2754,'2015-03-14 14:56:58','2015-10-11 16:46:37',1,30000548,1,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(2755,'2015-03-14 14:56:58','2015-03-14 14:56:58',1,30004330,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(2756,'2015-03-14 14:56:58','2015-03-14 14:56:58',1,30001851,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(2757,'2015-03-14 14:56:58','2015-03-14 14:56:58',1,30001494,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(2758,'2015-03-14 14:56:58','2015-03-14 14:56:58',1,30003664,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(2759,'2015-03-14 14:56:58','2015-03-14 14:56:58',1,30002821,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(2760,'2015-03-14 14:56:58','2015-03-14 14:56:58',1,30002323,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(2761,'2015-03-14 14:56:58','2015-10-11 16:46:37',1,30004324,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(2762,'2015-03-14 14:56:58','2015-10-11 16:46:37',1,30002911,0,0,0,0,1,1,0,0,1,0,0,0,0,1,1,1,0,0,0,1,0,1,0,0),(2763,'2015-03-14 14:56:58','2015-03-14 14:56:58',1,30001937,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(2764,'2015-03-14 14:56:58','2015-10-11 16:46:37',1,30000051,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0),(2765,'2015-03-14 14:56:58','2015-03-14 14:56:58',1,30001738,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(2766,'2015-03-14 14:56:58','2015-10-11 16:46:37',1,30001743,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(2767,'2015-03-14 14:56:58','2015-10-11 16:46:37',1,30005308,2,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,3,0),(2768,'2015-03-14 14:56:58','2015-10-11 16:46:37',1,30000987,0,0,0,0,1,2,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(2769,'2015-03-14 14:56:58','2015-03-14 14:56:58',1,30003083,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(2770,'2015-03-14 14:56:58','2015-10-11 16:46:37',1,30003016,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(2771,'2015-03-14 14:56:58','2015-10-11 16:46:37',1,30003013,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(2772,'2015-03-14 14:56:58','2015-10-11 16:46:37',1,30001315,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(2773,'2015-03-14 14:56:58','2015-10-11 16:46:37',1,30002803,0,0,2,1,0,0,0,1,3,0,0,0,1,0,0,0,0,0,0,0,0,0,0,1),(2774,'2015-03-14 14:56:58','2015-03-14 14:56:58',1,30004883,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(2775,'2015-03-14 14:56:58','2015-10-11 16:46:37',1,30001567,0,0,0,0,0,0,0,0,0,0,1,0,0,0,1,2,2,0,0,0,0,0,0,0),(2776,'2015-03-14 14:56:58','2015-10-11 16:46:37',1,30001948,0,0,1,0,0,0,0,0,0,0,0,0,2,0,1,0,0,0,0,0,0,0,0,0),(2777,'2015-03-14 14:56:58','2015-10-11 16:46:37',1,30001007,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(2778,'2015-03-14 14:56:58','2015-10-11 16:46:37',1,30001190,0,0,0,0,0,0,0,0,0,0,2,2,0,0,1,0,0,0,0,0,0,0,0,0),(2779,'2015-03-14 14:56:58','2015-03-14 14:56:58',1,30001793,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(2780,'2015-03-14 14:56:58','2015-03-14 14:56:58',1,30001495,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(2781,'2015-03-14 14:56:58','2015-03-14 14:56:58',1,30003264,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(2782,'2015-03-14 14:56:58','2015-03-14 14:56:58',1,30000640,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(2783,'2015-03-14 14:56:58','2015-03-14 14:56:58',1,30005135,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(2784,'2015-03-14 14:56:58','2015-03-14 14:56:58',1,30004952,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(2785,'2015-03-14 14:56:58','2015-03-14 14:56:58',1,30000325,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(2786,'2015-03-14 14:56:58','2015-10-11 16:46:37',1,30004912,0,0,0,0,0,0,0,0,0,1,0,0,0,0,4,3,0,0,0,2,1,0,0,0),(2787,'2015-03-14 14:56:58','2015-03-14 14:56:58',1,30005120,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(2788,'2015-03-14 14:56:58','2015-10-11 16:46:37',1,30004751,2,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0),(2789,'2015-03-14 14:56:58','2015-03-14 14:56:58',1,30000890,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(2790,'2015-03-14 14:56:58','2015-03-14 14:56:58',1,30004379,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(2791,'2015-03-14 14:56:58','2015-03-14 14:56:58',1,30004490,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(2792,'2015-03-14 14:56:58','2015-10-11 16:46:37',1,30001011,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0),(2793,'2015-03-14 14:56:58','2015-03-14 14:56:58',1,30003969,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(2794,'2015-03-14 14:56:58','2015-03-14 14:56:58',1,30001550,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(2795,'2015-03-14 14:56:58','2015-10-11 16:46:37',1,30001000,2,0,6,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(2796,'2015-03-14 14:56:58','2015-03-14 14:56:58',1,30004475,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(2797,'2015-03-14 14:56:58','2015-10-11 16:46:37',1,30003982,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0),(2798,'2015-03-14 14:56:58','2015-10-11 16:46:37',1,30001006,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(2799,'2015-03-14 14:56:58','2015-10-11 16:46:37',1,30001026,1,1,2,2,0,0,0,0,0,0,2,2,1,2,2,6,6,7,0,1,1,3,7,6),(2800,'2015-03-14 14:56:58','2015-03-14 14:56:58',1,30000631,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(2801,'2015-03-14 14:56:58','2015-03-14 14:56:58',1,30004421,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(2802,'2015-03-14 14:56:58','2015-03-14 14:56:58',1,30001543,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(2803,'2015-03-14 14:56:58','2015-03-14 14:56:58',1,30003998,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(2804,'2015-03-14 14:56:58','2015-03-14 14:56:58',1,30001572,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(2805,'2015-03-14 14:56:58','2015-10-11 16:46:37',1,30003972,3,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(2806,'2015-03-14 14:56:58','2015-03-14 14:56:58',1,30001172,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(2807,'2015-03-14 14:56:58','2015-10-11 16:46:37',1,30003758,0,0,0,1,0,0,0,0,0,0,0,0,0,1,4,3,2,0,0,0,0,0,1,0),(2808,'2015-03-14 14:56:58','2015-10-11 16:46:37',1,30003764,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,0,0,0),(2809,'2015-03-14 14:56:58','2015-03-14 14:56:58',1,30000665,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(2810,'2015-03-14 14:56:58','2015-10-11 16:46:37',1,30002464,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(2811,'2015-03-14 14:56:58','2015-10-11 16:46:37',1,30001274,0,0,0,3,0,0,1,1,0,1,0,0,0,0,1,1,1,0,0,1,2,0,2,0),(2812,'2015-03-14 14:56:58','2015-10-11 16:46:37',1,30004017,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1),(2813,'2015-03-14 14:56:58','2015-10-11 16:46:37',1,30002447,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,1),(2814,'2015-03-14 14:56:58','2015-10-11 16:46:37',1,30001762,0,0,0,0,1,2,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(2815,'2015-03-14 14:56:58','2015-03-14 14:56:58',1,30003687,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(2816,'2015-03-14 14:56:58','2015-10-11 16:46:37',1,30003279,0,0,3,0,1,1,0,0,0,0,5,7,1,4,7,6,4,0,0,0,0,0,0,0),(2817,'2015-03-14 14:56:58','2015-03-14 14:56:58',1,30002900,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(2818,'2015-03-14 14:56:58','2015-10-11 16:46:37',1,30000659,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0),(2819,'2015-03-14 14:56:58','2015-03-14 14:56:58',1,30001238,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(2820,'2015-03-14 14:56:58','2015-10-11 16:46:37',1,30002872,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(2821,'2015-03-14 14:56:58','2015-03-14 14:56:58',1,30000369,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(2822,'2015-03-14 14:56:58','2015-10-11 16:46:37',1,30003950,0,1,13,0,2,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(2823,'2015-03-14 14:56:58','2015-03-14 14:56:58',1,30000510,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(2824,'2015-03-14 14:56:58','2015-10-11 16:46:37',1,30000653,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(2825,'2015-03-14 14:56:58','2015-03-14 14:56:58',1,30001040,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(2826,'2015-03-14 14:56:58','2015-03-14 14:56:58',1,30004572,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(2827,'2015-03-14 14:56:58','2015-03-14 14:56:58',1,30000244,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(2828,'2015-03-14 14:56:58','2015-03-14 14:56:58',1,30002873,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(2829,'2015-03-14 14:56:58','2015-10-11 16:46:37',1,30001231,0,0,0,0,0,0,1,0,0,1,0,0,0,0,0,0,0,0,1,1,0,0,0,2),(2830,'2015-03-14 14:56:58','2015-10-11 16:46:37',1,30002789,1,1,2,2,2,4,1,1,0,0,0,0,0,0,0,0,0,1,1,0,0,1,1,1),(2831,'2015-03-14 14:56:58','2015-03-14 14:56:58',1,30002417,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(2832,'2015-03-14 14:56:58','2015-03-14 14:56:58',1,30004095,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(2833,'2015-03-14 14:56:58','2015-03-14 14:56:58',1,30003873,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(2834,'2015-03-14 14:56:58','2015-03-14 14:56:58',1,30002751,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(2835,'2015-03-14 14:56:58','2015-03-14 14:56:58',1,30003887,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(2836,'2015-03-14 14:56:58','2015-10-11 16:46:37',1,30001405,0,0,0,0,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0),(2837,'2015-03-14 14:56:58','2015-03-14 14:56:58',1,30002747,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(2838,'2015-03-14 14:56:58','2015-03-14 14:56:58',1,30004115,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(2839,'2015-03-14 14:56:58','2015-10-11 16:46:37',1,30003069,3,0,2,0,0,4,2,3,1,0,1,1,0,1,1,1,0,0,0,0,0,0,0,0),(2840,'2015-03-14 14:56:58','2015-10-11 16:46:37',1,30004239,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0),(2841,'2015-03-14 14:56:58','2015-10-11 16:46:37',1,30002782,1,1,1,1,1,0,0,0,1,1,0,0,0,2,1,0,0,0,0,0,4,1,0,0),(2842,'2015-03-14 14:56:58','2015-10-11 16:46:37',1,30001406,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(2843,'2015-03-14 14:56:58','2015-03-14 14:56:58',1,30021392,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(2844,'2015-03-14 14:56:58','2015-10-11 16:46:37',1,30004306,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,1,1,0,0,0),(2845,'2015-03-14 14:56:58','2015-10-11 16:46:37',1,30001742,0,0,1,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0),(2846,'2015-03-14 14:56:58','2015-10-11 16:46:37',1,30001440,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0),(2847,'2015-03-14 14:56:58','2015-03-14 14:56:58',1,30004134,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(2848,'2015-03-14 14:56:58','2015-10-11 16:46:37',1,30000030,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(2849,'2015-03-14 14:56:58','2015-10-11 16:46:37',1,30002761,0,0,0,0,0,0,0,0,1,0,0,0,0,1,2,1,0,0,0,0,0,0,0,0),(2850,'2015-03-14 14:56:58','2015-03-14 14:56:58',1,30002416,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(2851,'2015-03-14 14:56:58','2015-10-11 16:46:37',1,30002580,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0),(2852,'2015-03-14 14:56:58','2015-03-14 14:56:58',1,30002797,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(2853,'2015-03-14 14:56:58','2015-03-14 14:56:58',1,30002749,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(2854,'2015-03-14 14:56:58','2015-10-11 16:46:37',1,30000018,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0),(2855,'2015-03-14 14:56:58','2015-03-14 14:56:58',1,30001242,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(2856,'2015-03-14 14:56:58','2015-10-11 16:46:37',1,30004794,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(2857,'2015-03-14 14:56:58','2015-10-11 16:46:37',1,30003729,1,0,0,0,0,3,1,1,2,0,0,1,1,0,0,0,0,1,1,1,12,1,0,0),(2858,'2015-03-14 14:56:58','2015-10-11 16:46:37',1,30002178,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,7,0,0,0),(2859,'2015-03-14 14:56:58','2015-03-14 14:56:58',1,30004579,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(2860,'2015-03-14 14:56:58','2015-10-11 16:46:37',1,30000737,0,0,2,0,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(2861,'2015-03-14 14:56:58','2015-10-11 16:46:37',1,30001164,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(2862,'2015-03-14 14:56:58','2015-03-14 14:56:58',1,30000736,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(2863,'2015-03-14 14:56:58','2015-03-14 14:56:58',1,30002027,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(2864,'2015-03-14 14:56:58','2015-03-14 14:56:58',1,30000519,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(2865,'2015-03-14 14:56:58','2015-03-14 14:56:58',1,30004295,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(2866,'2015-03-14 14:56:58','2015-10-11 16:46:37',1,30003883,0,0,0,0,0,0,0,0,0,2,0,0,0,0,0,0,0,0,2,1,1,0,0,0),(2867,'2015-03-14 14:56:58','2015-03-14 14:56:58',1,30003239,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(2868,'2015-03-14 14:56:58','2015-10-11 16:46:37',1,30045346,1,6,2,2,1,2,3,5,1,2,0,0,1,0,4,2,2,1,2,2,2,3,0,7),(2869,'2015-03-14 14:56:58','2015-03-14 14:56:58',1,30004772,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(2870,'2015-03-14 14:56:58','2015-10-11 16:46:37',1,30045308,0,1,1,3,1,2,2,0,0,0,0,0,0,0,0,0,0,0,1,2,0,0,1,2),(2871,'2015-03-14 14:56:58','2015-03-14 14:56:58',1,30002193,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(2872,'2015-03-14 14:56:58','2015-03-14 14:56:58',1,30000098,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(2873,'2015-03-14 14:56:58','2015-03-14 14:56:58',1,30000176,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(2874,'2015-03-14 14:56:58','2015-03-14 14:56:58',1,30003999,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(2875,'2015-03-14 14:56:58','2015-10-11 16:46:37',1,30005206,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(2876,'2015-03-14 14:56:58','2015-03-14 14:56:58',1,30004237,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(2877,'2015-03-14 14:56:58','2015-03-14 14:56:58',1,30003823,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(2878,'2015-03-14 14:56:58','2015-03-14 14:56:58',1,30000116,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(2879,'2015-03-14 14:56:58','2015-10-11 16:46:37',1,30005078,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0),(2880,'2015-03-14 14:56:58','2015-03-14 14:56:58',1,30001623,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(2881,'2015-03-14 14:56:58','2015-03-14 14:56:58',1,30011672,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(2882,'2015-03-14 14:56:58','2015-10-11 16:46:37',1,30005260,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(2883,'2015-03-14 14:56:58','2015-03-14 14:56:58',1,30005066,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(2884,'2015-03-14 14:56:58','2015-03-14 14:56:58',1,30005220,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(2885,'2015-03-14 14:56:58','2015-10-11 16:46:37',1,30001682,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0),(2886,'2015-03-14 14:56:58','2015-03-14 14:56:58',1,30001515,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(2887,'2015-03-14 14:56:58','2015-10-11 16:46:37',1,30004709,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(2888,'2015-03-14 14:56:58','2015-10-11 16:46:37',1,30003343,0,0,1,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(2889,'2015-03-14 14:56:58','2015-03-14 14:56:58',1,30001790,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(2890,'2015-03-14 14:56:58','2015-03-14 14:56:58',1,30002296,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(2891,'2015-03-14 14:56:58','2015-03-14 14:56:58',1,30003190,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(2892,'2015-03-14 14:56:58','2015-03-14 14:56:58',1,30001240,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(2893,'2015-03-14 14:56:58','2015-03-14 14:56:58',1,30005032,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(2894,'2015-03-14 14:56:58','2015-10-11 16:46:37',1,30000117,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,1,0),(2895,'2015-03-14 14:56:58','2015-03-14 14:56:58',1,30004096,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(2896,'2015-03-14 14:56:58','2015-10-11 16:46:37',1,30003863,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0),(2897,'2015-03-14 14:56:58','2015-10-11 16:46:37',1,30000056,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(2898,'2015-03-14 14:56:58','2015-10-11 16:46:37',1,30003486,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,0),(2899,'2015-03-14 14:56:58','2015-10-11 16:46:37',1,30004258,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0),(2900,'2015-03-14 14:56:58','2015-10-11 16:46:37',1,30003490,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1),(2901,'2015-03-14 14:56:58','2015-03-14 14:56:58',1,30001969,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(2902,'2015-03-14 14:56:58','2015-10-11 16:46:37',1,30004209,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0),(2903,'2015-03-14 14:56:58','2015-10-11 16:46:37',1,30000189,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,0,0),(2904,'2015-03-14 14:56:58','2015-03-14 14:56:58',1,30001692,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(2905,'2015-03-14 14:56:58','2015-03-14 14:56:58',1,30000024,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(2906,'2015-03-14 14:56:58','2015-03-14 14:56:58',1,30004176,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(2907,'2015-03-14 14:56:58','2015-03-14 14:56:58',1,30003860,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(2908,'2015-03-14 14:56:58','2015-10-11 16:46:37',1,30045314,5,0,7,0,1,0,1,1,0,1,1,2,2,3,2,0,0,4,0,0,1,0,2,1),(2909,'2015-03-14 14:56:58','2015-10-11 16:46:37',1,30001372,0,1,0,1,2,2,0,0,0,0,1,0,0,1,0,0,0,0,0,0,0,0,0,0),(2910,'2015-03-14 14:56:58','2015-03-14 14:56:58',1,30001410,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(2911,'2015-03-14 14:56:58','2015-03-14 14:56:58',1,30001360,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(2912,'2015-03-14 14:56:58','2015-10-11 16:46:37',1,30000141,1,1,0,0,1,1,0,1,0,0,0,0,0,3,0,0,0,0,0,0,0,0,0,0),(2913,'2015-03-14 14:56:58','2015-03-14 14:56:58',1,30005056,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(2914,'2015-03-14 14:56:58','2015-03-14 14:56:58',1,30004376,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(2915,'2015-03-14 14:56:58','2015-03-14 14:56:58',1,30004488,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(2916,'2015-03-14 14:56:58','2015-10-11 16:46:37',1,30001264,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,0,2),(2917,'2015-03-14 14:56:58','2015-03-14 14:56:58',1,30004340,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(2918,'2015-03-14 14:56:58','2015-03-14 14:56:58',1,30003458,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(2919,'2015-03-14 14:56:58','2015-03-14 14:56:58',1,30002414,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(2920,'2015-03-14 14:56:58','2015-03-14 14:56:58',1,30002566,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(2921,'2015-03-14 14:56:58','2015-10-11 16:46:37',1,30001020,0,0,0,0,0,0,0,0,0,0,1,1,0,3,0,0,0,0,1,1,1,0,0,0),(2922,'2015-03-14 14:56:58','2015-10-11 16:46:37',1,30002097,0,0,0,0,0,0,0,0,0,0,0,0,1,1,2,1,0,0,1,1,1,0,0,0),(2923,'2015-03-14 14:56:58','2015-10-11 16:46:37',1,30001980,0,3,1,0,2,0,0,0,0,0,0,0,0,2,0,0,0,0,0,0,0,0,1,1),(2924,'2015-03-14 14:56:58','2015-10-11 16:46:37',1,30003344,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,4,0,0,0),(2925,'2015-03-14 14:56:58','2015-03-14 14:56:58',1,30004316,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(2926,'2015-03-14 14:56:58','2015-03-14 14:56:58',1,30002311,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(2927,'2015-03-14 14:56:58','2015-03-14 14:56:58',1,30004375,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(2928,'2015-03-14 14:56:58','2015-03-14 14:56:58',1,30003625,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(2929,'2015-03-14 14:56:58','2015-03-14 14:56:58',1,30001485,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(2930,'2015-03-14 14:56:58','2015-03-14 14:56:58',1,30002248,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(2931,'2015-03-14 14:56:58','2015-03-14 14:56:58',1,30005247,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(2932,'2015-03-14 14:56:58','2015-03-14 14:56:58',1,30005124,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(2933,'2015-03-14 14:56:58','2015-03-14 14:56:58',1,30003092,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(2934,'2015-03-14 14:56:58','2015-03-14 14:56:58',1,30031392,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(2935,'2015-03-14 14:56:58','2015-10-11 16:46:37',1,30002737,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0),(2936,'2015-03-14 14:56:58','2015-10-11 16:46:37',1,30003471,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,0,0,0,0,0,0,1),(2937,'2015-03-14 14:56:58','2015-03-14 14:56:58',1,30004128,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(2938,'2015-03-14 14:56:58','2015-03-14 14:56:58',1,30004152,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(2939,'2015-03-14 14:56:58','2015-03-14 14:56:58',1,30005038,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(2940,'2015-03-14 14:56:58','2015-10-11 16:46:37',1,30001394,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0),(2941,'2015-03-14 14:56:58','2015-10-11 16:46:37',1,30045312,0,0,0,0,1,1,0,0,0,1,0,0,0,1,0,0,0,0,1,0,0,0,0,0),(2942,'2015-03-14 14:56:58','2015-10-11 16:46:37',1,30005258,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(2943,'2015-03-14 14:56:58','2015-10-11 16:46:37',1,30000181,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0),(2944,'2015-03-14 14:56:58','2015-03-14 14:56:58',1,30004103,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(2945,'2015-03-14 14:56:58','2015-10-11 16:46:37',1,30003068,1,1,0,0,6,4,3,2,0,1,3,3,0,2,2,2,1,7,0,0,2,1,1,1),(2946,'2015-03-14 14:56:58','2015-03-14 14:56:58',1,30001901,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(2947,'2015-03-14 14:56:58','2015-03-14 14:56:58',1,30001536,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(2948,'2015-03-14 14:56:58','2015-03-14 14:56:58',1,30001963,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(2949,'2015-03-14 14:56:58','2015-03-14 14:56:58',1,30002452,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(2950,'2015-03-14 14:56:58','2015-03-14 14:56:58',1,30004895,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(2951,'2015-03-14 14:56:58','2015-03-14 14:56:58',1,30022547,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(2952,'2015-03-14 14:56:58','2015-10-11 16:46:37',1,30002079,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(2953,'2015-03-14 14:56:58','2015-03-14 14:56:58',1,30002519,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(2954,'2015-03-14 14:56:58','2015-10-11 16:46:37',1,30002286,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0),(2955,'2015-03-14 14:56:58','2015-03-14 14:56:58',1,30000246,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(2956,'2015-03-14 14:56:58','2015-10-11 16:46:37',1,30000807,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(2957,'2015-03-14 14:56:58','2015-03-14 14:56:58',1,30001589,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(2958,'2015-03-14 14:56:58','2015-03-14 14:56:58',1,30003177,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(2959,'2015-03-14 14:56:58','2015-03-14 14:56:58',1,30003300,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(2960,'2015-03-14 14:56:58','2015-10-11 16:46:37',1,30004698,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(2961,'2015-03-14 14:56:58','2015-03-14 14:56:58',1,30002042,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(2962,'2015-03-14 14:56:58','2015-10-11 16:46:37',1,30002767,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0),(2963,'2015-03-14 14:56:58','2015-03-14 14:56:58',1,30003501,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(2964,'2015-03-14 14:56:58','2015-03-14 14:56:58',1,30000021,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(2965,'2015-03-14 14:56:58','2015-03-14 14:56:58',1,30003926,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(2966,'2015-03-14 14:56:58','2015-10-11 16:46:37',1,30002771,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0),(2967,'2015-03-14 14:56:58','2015-03-14 14:56:58',1,30005050,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(2968,'2015-03-14 14:56:58','2015-03-14 14:56:58',1,30001415,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(2969,'2015-03-14 14:56:58','2015-03-14 14:56:58',1,30003066,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(2970,'2015-03-14 14:56:58','2015-03-14 14:56:58',1,30003096,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(2971,'2015-03-14 14:56:58','2015-10-11 16:46:37',1,30003089,1,0,0,0,0,0,0,0,0,0,1,2,0,0,0,0,0,0,0,0,0,0,0,1),(2972,'2015-03-14 14:56:58','2015-10-11 16:46:37',1,30002802,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0),(2973,'2015-03-14 14:56:58','2015-03-14 14:56:58',1,30004348,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(2974,'2015-03-14 14:56:58','2015-10-11 16:46:37',1,30004642,6,0,0,0,0,0,0,0,0,1,6,5,0,0,0,0,1,0,2,0,3,0,0,0),(2975,'2015-03-14 14:56:58','2015-03-14 14:56:58',1,30003635,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(2976,'2015-03-14 14:56:58','2015-10-11 16:46:37',1,30001180,3,0,1,0,0,0,0,0,0,1,0,0,0,0,1,0,0,0,0,0,0,0,0,0),(2977,'2015-03-14 14:56:58','2015-10-11 16:46:37',1,30004833,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(2978,'2015-03-14 14:56:58','2015-03-14 14:56:58',1,30000269,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(2979,'2015-03-14 14:56:58','2015-03-14 14:56:58',1,30000347,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(2980,'2015-03-14 14:56:58','2015-03-14 14:56:58',1,30000124,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(2981,'2015-03-14 14:56:58','2015-10-11 16:46:37',1,30000498,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(2982,'2015-03-14 14:56:58','2015-10-11 16:46:37',1,30000710,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(2983,'2015-03-14 14:56:58','2015-10-11 16:46:37',1,30000874,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(2984,'2015-03-14 14:56:58','2015-10-11 16:46:37',1,30004593,0,0,0,0,0,0,0,0,0,0,2,0,0,1,0,0,0,0,0,0,0,0,0,0),(2985,'2015-03-14 14:56:58','2015-03-14 14:56:58',1,30002142,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(2986,'2015-03-14 14:56:58','2015-10-11 16:46:37',1,30003951,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(2987,'2015-03-14 14:56:58','2015-03-14 14:56:58',1,30003970,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(2988,'2015-03-14 14:56:58','2015-10-11 16:46:37',1,30004625,0,0,0,0,0,0,0,0,0,0,0,1,2,0,0,0,0,0,0,0,1,0,0,0),(2989,'2015-03-14 14:56:58','2015-10-11 16:46:37',1,30001945,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0),(2990,'2015-03-14 14:56:58','2015-10-11 16:46:37',1,30004910,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0),(2991,'2015-03-14 14:56:58','2015-03-14 14:56:58',1,30001223,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(2992,'2015-03-14 14:56:58','2015-10-11 16:46:37',1,30003689,0,0,1,1,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(2993,'2015-03-14 14:56:58','2015-03-14 14:56:58',1,30000357,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(2994,'2015-03-14 14:56:58','2015-10-11 16:46:37',1,30001592,0,0,0,0,0,0,0,0,0,1,3,0,0,0,0,0,0,0,0,0,0,0,0,0),(2995,'2015-03-14 14:56:58','2015-10-11 16:46:37',1,30000540,0,0,0,0,0,0,0,0,0,0,4,0,0,0,0,0,0,0,0,0,0,3,7,1),(2996,'2015-03-14 14:56:58','2015-03-14 14:56:58',1,30004018,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(2997,'2015-03-14 14:56:58','2015-10-11 16:46:37',1,30002847,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(2998,'2015-03-14 14:56:58','2015-03-14 14:56:58',1,30002434,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(2999,'2015-03-14 14:56:58','2015-03-14 14:56:58',1,30001350,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(3000,'2015-03-14 14:56:58','2015-03-14 14:56:58',1,30000528,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(3001,'2015-03-14 14:56:58','2015-03-14 14:56:58',1,30003168,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(3002,'2015-03-14 14:56:58','2015-03-14 14:56:58',1,30003643,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(3003,'2015-03-14 14:56:58','2015-03-14 14:56:58',1,30005163,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(3004,'2015-03-14 14:56:58','2015-03-14 14:56:58',1,30000467,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(3005,'2015-03-14 14:56:58','2015-10-11 16:46:37',1,30003684,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(3006,'2015-03-14 14:56:58','2015-03-14 14:56:58',1,30000430,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(3007,'2015-03-14 14:56:58','2015-03-14 14:56:58',1,30002842,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(3008,'2015-03-14 14:56:58','2015-10-11 16:46:37',1,30002470,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0),(3009,'2015-03-14 14:56:58','2015-03-14 14:56:58',1,30001499,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(3010,'2015-03-14 14:56:58','2015-10-11 16:46:37',1,30001989,0,0,0,0,0,0,0,2,0,0,0,1,1,0,0,0,0,0,0,0,0,0,0,0),(3011,'2015-03-14 14:56:58','2015-10-11 16:46:37',1,30000891,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(3012,'2015-03-14 14:56:58','2015-03-14 14:56:58',1,30001526,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(3013,'2015-03-14 14:56:58','2015-10-11 16:46:37',1,30004927,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,0,0,0),(3014,'2015-03-14 14:56:58','2015-03-14 14:56:58',1,30000605,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(3015,'2015-03-14 14:56:58','2015-03-14 14:56:58',1,30004203,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(3016,'2015-03-14 14:56:58','2015-03-14 14:56:58',1,30002300,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(3017,'2015-03-14 14:56:58','2015-10-11 16:46:37',1,30001876,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(3018,'2015-03-14 14:56:58','2015-03-14 14:56:58',1,30000968,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(3019,'2015-03-14 14:56:58','2015-03-14 14:56:58',1,30001809,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(3020,'2015-03-14 14:56:58','2015-10-11 16:46:37',1,30004827,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(3021,'2015-03-14 14:56:58','2015-10-11 16:46:37',1,30004003,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0),(3022,'2015-03-14 14:56:58','2015-03-14 14:56:58',1,30004526,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(3023,'2015-03-14 14:56:58','2015-10-11 16:46:37',1,30002376,0,0,3,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(3024,'2015-03-14 14:56:58','2015-03-14 14:56:58',1,30002435,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(3025,'2015-03-14 14:56:58','2015-10-11 16:46:37',1,30000786,0,0,0,0,0,0,1,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0),(3026,'2015-03-14 14:56:58','2015-03-14 14:56:58',1,30004944,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(3027,'2015-03-14 14:56:58','2015-03-14 14:56:58',1,30005179,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(3028,'2015-03-14 14:56:58','2015-03-14 14:56:58',1,30001928,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(3029,'2015-03-14 14:56:58','2015-03-14 14:56:58',1,30002607,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(3030,'2015-03-14 14:56:58','2015-03-14 14:56:58',1,30000354,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(3031,'2015-03-14 14:56:58','2015-03-14 14:56:58',1,30004659,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(3032,'2015-03-14 14:56:58','2015-03-14 14:56:58',1,30001560,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(3033,'2015-03-14 14:56:58','2015-10-11 16:46:37',1,30001174,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0),(3034,'2015-03-14 14:56:58','2015-03-14 14:56:58',1,30000462,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(3035,'2015-03-14 14:56:58','2015-10-11 16:46:37',1,30003255,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(3036,'2015-03-14 14:56:58','2015-03-14 14:56:58',1,30041392,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(3037,'2015-03-14 14:56:58','2015-10-11 16:46:37',1,30002976,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0),(3038,'2015-03-14 14:56:58','2015-03-14 14:56:58',1,30000029,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(3039,'2015-03-14 14:56:58','2015-10-11 16:46:37',1,30002989,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,0,0),(3040,'2015-03-14 14:56:58','2015-10-11 16:46:37',1,30004999,1,0,1,0,5,4,0,0,0,0,1,1,1,0,1,0,2,0,0,1,0,0,0,2),(3041,'2015-03-14 14:56:58','2015-03-14 14:56:58',1,30003519,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(3042,'2015-03-14 14:56:58','2015-03-14 14:56:58',1,30003049,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(3043,'2015-03-14 14:56:58','2015-10-11 16:46:37',1,30003063,1,1,0,1,0,0,0,2,0,5,1,0,1,4,6,6,7,0,2,9,1,6,3,1),(3044,'2015-03-14 14:56:58','2015-10-11 16:46:37',1,30002722,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,0,0,0),(3045,'2015-03-14 14:56:58','2015-10-11 16:46:37',1,30002074,0,1,0,1,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0),(3046,'2015-03-14 14:56:58','2015-10-11 16:46:37',1,30003882,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,1,0,0,0,0),(3047,'2015-03-14 14:56:58','2015-10-11 16:46:37',1,30002540,0,0,0,0,0,0,0,0,0,1,1,3,0,0,1,1,1,0,0,0,2,0,1,0),(3048,'2015-03-14 14:56:58','2015-03-14 14:56:58',1,30001712,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(3049,'2015-03-14 14:56:58','2015-03-14 14:56:58',1,30032547,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(3050,'2015-03-14 14:56:58','2015-03-14 14:56:58',1,30003579,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(3051,'2015-03-14 14:56:58','2015-03-14 14:56:58',1,30000002,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(3052,'2015-03-14 14:56:58','2015-03-14 14:56:58',1,30003549,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(3053,'2015-03-14 14:56:58','2015-10-11 16:46:37',1,30002065,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,1,0,0,0,0,0,0,0),(3054,'2015-03-14 14:56:58','2015-03-14 14:56:58',1,30005075,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(3055,'2015-03-14 14:56:58','2015-10-11 16:46:37',1,30005002,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0),(3056,'2015-03-14 14:56:58','2015-03-14 14:56:58',1,30004159,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(3057,'2015-03-14 14:56:58','2015-03-14 14:56:58',1,30003592,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(3058,'2015-03-14 14:56:58','2015-03-14 14:56:58',1,30001917,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(3059,'2015-03-14 14:56:58','2015-03-14 14:56:58',1,30002161,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(3060,'2015-03-14 14:56:58','2015-10-11 16:46:37',1,30000683,0,0,1,0,1,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(3061,'2015-03-14 14:56:58','2015-10-11 16:46:37',1,30004663,0,0,0,0,0,0,0,0,0,0,1,0,0,1,0,0,0,0,0,0,0,0,0,0),(3062,'2015-03-14 14:56:58','2015-03-14 14:56:58',1,30004541,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(3063,'2015-03-14 14:56:58','2015-03-14 14:56:58',1,30001923,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(3064,'2015-03-14 14:56:58','2015-03-14 14:56:58',1,30001605,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(3065,'2015-03-14 14:56:58','2015-03-14 14:56:58',1,30004700,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(3066,'2015-03-14 14:56:58','2015-03-14 14:56:58',1,30002849,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(3067,'2015-03-14 14:56:58','2015-10-11 16:46:37',1,30002932,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0),(3068,'2015-03-14 14:56:58','2015-03-14 14:56:58',1,30005259,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(3069,'2015-03-14 14:56:58','2015-10-11 16:46:37',1,30002865,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0),(3070,'2015-03-14 14:56:58','2015-03-14 14:56:58',1,30005233,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(3071,'2015-03-14 14:56:58','2015-10-11 16:46:37',1,30003039,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(3072,'2015-03-14 14:56:58','2015-10-11 16:46:37',1,30002728,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(3073,'2015-03-14 14:56:58','2015-03-14 14:56:58',1,30003409,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(3074,'2015-03-14 14:56:58','2015-03-14 14:56:58',1,30005039,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(3075,'2015-03-14 14:56:58','2015-10-11 16:46:37',1,30003759,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,2,0,0,0,0,0,14,0),(3076,'2015-03-14 14:56:58','2015-10-11 16:46:37',1,30003172,1,0,0,0,0,0,0,0,8,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0),(3077,'2015-03-14 14:56:58','2015-03-14 14:56:58',1,30004689,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(3078,'2015-03-14 14:56:58','2015-03-14 14:56:58',1,30001460,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(3079,'2015-03-14 14:56:58','2015-10-11 16:46:37',1,30001833,0,0,0,0,0,0,0,0,0,1,0,0,1,0,3,3,0,1,1,1,1,0,1,0),(3080,'2015-03-14 14:56:58','2015-03-14 14:56:58',1,30001953,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(3081,'2015-03-14 14:56:58','2015-03-14 14:56:58',1,30004505,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(3082,'2015-03-14 14:56:58','2015-03-14 14:56:58',1,30001507,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(3083,'2015-03-14 14:56:58','2015-03-14 14:56:58',1,30001587,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(3084,'2015-03-14 14:56:58','2015-10-11 16:46:37',1,30001069,0,0,1,0,0,0,0,0,0,0,0,0,0,2,0,0,0,0,0,0,0,0,0,0),(3085,'2015-03-14 14:56:58','2015-03-14 14:56:58',1,30002624,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(3086,'2015-03-14 14:56:58','2015-03-14 14:56:58',1,30001337,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(3087,'2015-03-14 14:56:58','2015-03-14 14:56:58',1,30003421,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(3088,'2015-03-14 14:56:58','2015-10-11 16:46:37',1,30000154,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,0,0,0,0,0,0,0,0,0),(3089,'2015-03-14 14:56:58','2015-10-11 16:46:37',1,30000020,0,2,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(3090,'2015-03-14 14:56:58','2015-03-14 14:56:58',1,30005087,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(3091,'2015-03-14 14:56:58','2015-03-14 14:56:58',1,30003459,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(3092,'2015-03-14 14:56:58','2015-03-14 14:56:58',1,30003025,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(3093,'2015-03-14 14:56:58','2015-10-11 16:46:37',1,30005007,0,0,0,0,0,0,0,0,0,1,0,0,0,2,0,0,4,7,1,2,1,1,1,9),(3094,'2015-03-14 14:56:58','2015-10-11 16:46:37',1,30002973,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,0,0,0),(3095,'2015-03-14 14:56:58','2015-10-11 16:46:37',1,30001400,2,0,3,1,0,0,6,2,2,1,0,3,3,1,0,0,2,0,0,0,2,1,0,1),(3096,'2015-03-14 14:56:58','2015-10-11 16:46:37',1,30001048,1,0,0,0,0,0,1,0,0,0,0,1,0,0,0,0,0,0,0,1,1,0,0,0),(3097,'2015-03-14 14:56:58','2015-03-14 14:56:58',1,30001416,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(3098,'2015-03-14 14:56:58','2015-10-11 16:46:37',1,30004630,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(3099,'2015-03-14 14:56:58','2015-03-14 14:56:58',1,30000647,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(3100,'2015-03-14 14:56:58','2015-03-14 14:56:58',1,30004641,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(3101,'2015-03-14 14:56:58','2015-10-11 16:46:37',1,30001038,0,0,0,0,0,0,0,0,0,1,0,0,0,10,0,0,0,0,0,0,1,0,1,0),(3102,'2015-03-14 14:56:58','2015-03-14 14:56:58',1,30002604,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(3103,'2015-03-14 14:56:58','2015-03-14 14:56:58',1,30002139,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(3104,'2015-03-14 14:56:58','2015-03-14 14:56:58',1,30000599,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(3105,'2015-03-14 14:56:58','2015-03-14 14:56:58',1,30000615,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(3106,'2015-03-14 14:56:58','2015-03-14 14:56:58',1,30002114,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(3107,'2015-03-14 14:56:58','2015-03-14 14:56:58',1,30003973,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(3108,'2015-03-14 14:56:58','2015-10-11 16:46:37',1,30001119,0,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(3109,'2015-03-14 14:56:58','2015-10-11 16:46:37',1,30005300,0,1,1,0,1,1,1,0,2,0,0,0,1,1,0,0,0,0,0,0,0,1,0,1),(3110,'2015-03-14 14:56:58','2015-03-14 14:56:58',1,30042547,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(3111,'2015-03-14 14:56:58','2015-03-14 14:56:58',1,30004897,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(3112,'2015-03-14 14:56:58','2015-03-14 14:56:58',1,30005193,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(3113,'2015-03-14 14:56:58','2015-03-14 14:56:58',1,30001687,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(3114,'2015-03-14 14:56:58','2015-03-14 14:56:58',1,30003575,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(3115,'2015-03-14 14:56:58','2015-10-11 16:46:37',1,30002996,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0),(3116,'2015-03-14 14:56:58','2015-10-11 16:46:37',1,30000533,0,0,0,0,0,0,0,0,0,0,0,0,0,2,0,0,0,0,7,0,0,0,0,0),(3117,'2015-03-14 14:56:58','2015-03-14 14:56:58',1,30000384,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(3118,'2015-03-14 14:56:58','2015-03-14 14:56:58',1,30002294,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(3119,'2015-03-14 14:56:58','2015-10-11 16:46:37',1,30000649,0,0,0,1,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0),(3120,'2015-03-14 14:56:58','2015-03-14 14:56:58',1,30004896,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(3121,'2015-03-14 14:56:58','2015-10-11 16:46:37',1,30000704,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0),(3122,'2015-03-14 14:56:58','2015-03-14 14:56:58',1,30001601,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(3123,'2015-03-14 14:56:58','2015-03-14 14:56:58',1,30000397,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(3124,'2015-03-14 14:56:58','2015-03-14 14:56:58',1,30003204,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(3125,'2015-03-14 14:56:58','2015-10-11 16:46:37',1,30002493,2,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(3126,'2015-03-14 14:56:58','2015-03-14 14:56:58',1,30004353,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(3127,'2015-03-14 14:56:58','2015-10-11 16:46:37',1,30000319,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0),(3128,'2015-03-14 14:56:58','2015-10-11 16:46:37',1,30004885,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0),(3129,'2015-03-14 14:56:58','2015-03-14 14:56:58',1,30004021,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(3130,'2015-03-14 14:56:58','2015-03-14 14:56:58',1,30002830,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(3131,'2015-03-14 14:56:58','2015-03-14 14:56:58',1,30000300,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(3132,'2015-03-14 14:56:58','2015-10-11 16:46:37',1,30003334,0,0,0,0,0,0,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(3133,'2015-03-14 14:56:58','2015-03-14 14:56:58',1,30002928,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(3134,'2015-03-14 14:56:58','2015-03-14 14:56:58',1,30000466,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(3135,'2015-03-14 14:56:58','2015-03-14 14:56:58',1,30001804,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(3136,'2015-03-14 14:56:58','2015-03-14 14:56:58',1,30002462,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(3137,'2015-03-14 14:56:58','2015-03-14 14:56:58',1,30004747,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(3138,'2015-03-14 14:56:58','2015-03-14 14:56:58',1,30004680,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(3139,'2015-03-14 14:56:58','2015-10-11 16:46:37',1,30002516,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,3,0,0,0,0,0,1),(3140,'2015-03-14 14:56:58','2015-03-14 14:56:58',1,30003432,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(3141,'2015-03-14 14:56:58','2015-10-11 16:46:37',1,30004967,0,0,0,0,0,0,0,0,0,1,0,0,0,1,1,1,1,0,0,0,0,1,0,0),(3142,'2015-03-14 14:56:58','2015-03-14 14:56:58',1,30002261,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(3143,'2015-03-14 14:56:58','2015-03-14 14:56:58',1,30005316,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(3144,'2015-03-14 14:56:58','2015-10-11 16:46:37',1,30002545,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(3145,'2015-03-14 14:56:58','2015-03-14 14:56:58',1,30000813,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(3146,'2015-03-14 14:56:58','2015-03-14 14:56:58',1,30005106,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(3147,'2015-03-14 14:56:58','2015-10-11 16:46:37',1,30004800,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,1,2),(3148,'2015-03-14 14:56:58','2015-03-14 14:56:58',1,30002458,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(3149,'2015-03-14 14:56:58','2015-10-11 16:46:37',1,30004705,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(3150,'2015-03-14 14:56:58','2015-10-11 16:46:37',1,30002355,0,0,0,0,0,0,0,0,0,3,3,1,1,14,4,0,1,0,0,0,1,1,2,2),(3151,'2015-03-14 14:56:58','2015-03-14 14:56:58',1,30000971,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(3152,'2015-03-14 14:56:58','2015-03-14 14:56:58',1,30004364,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(3153,'2015-03-14 14:56:58','2015-03-14 14:56:58',1,30001078,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(3154,'2015-03-14 14:56:58','2015-10-11 16:46:37',1,30000208,0,2,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,7,0,0,0,0),(3155,'2015-03-14 14:56:58','2015-10-11 16:46:37',1,30004823,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(3156,'2015-03-14 14:56:58','2015-03-14 14:56:58',1,30002869,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(3157,'2015-03-14 14:56:58','2015-03-14 14:56:58',1,30001995,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(3158,'2015-03-14 14:56:58','2015-03-14 14:56:58',1,30002601,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(3159,'2015-03-14 14:56:58','2015-03-14 14:56:58',1,30004449,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(3160,'2015-03-14 14:56:58','2015-03-14 14:56:58',1,30000620,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(3161,'2015-03-14 14:56:58','2015-03-14 14:56:58',1,30000922,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(3162,'2015-03-14 14:56:58','2015-03-14 14:56:58',1,30001479,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(3163,'2015-03-14 14:56:58','2015-03-14 14:56:58',1,30004356,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(3164,'2015-03-14 14:56:58','2015-03-14 14:56:58',1,30004633,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(3165,'2015-03-14 14:56:58','2015-10-11 16:46:37',1,30000591,0,0,1,0,0,0,0,0,0,0,0,0,0,1,1,1,0,0,1,0,0,0,0,0),(3166,'2015-03-14 14:56:58','2015-10-11 16:46:37',1,30000639,0,0,1,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0),(3167,'2015-03-14 14:56:58','2015-10-11 16:46:37',1,30002428,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0),(3168,'2015-03-14 14:56:58','2015-10-11 16:46:37',1,30000905,1,0,1,0,0,0,0,0,0,1,0,0,0,1,0,0,0,0,0,1,0,0,0,0),(3169,'2015-03-14 14:56:58','2015-03-14 14:56:58',1,30001032,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(3170,'2015-03-14 14:56:58','2015-03-14 14:56:58',1,30004511,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(3171,'2015-03-14 14:56:58','2015-10-11 16:46:37',1,30001597,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0),(3172,'2015-03-14 14:56:58','2015-03-14 14:56:58',1,30003200,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(3173,'2015-03-14 14:56:58','2015-10-11 16:46:37',1,30000848,1,3,4,3,2,3,2,1,0,2,2,12,2,2,0,0,0,0,0,1,10,3,2,1),(3174,'2015-03-14 14:56:58','2015-10-11 16:46:37',1,30004478,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(3175,'2015-03-14 14:56:58','2015-10-11 16:46:37',1,30004881,0,0,0,0,1,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,1,1),(3176,'2015-03-14 14:56:58','2015-03-14 14:56:58',1,30005140,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(3177,'2015-03-14 14:56:58','2015-03-14 14:56:58',1,30004795,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(3178,'2015-03-14 14:56:58','2015-03-14 14:56:58',1,30003665,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(3179,'2015-03-14 14:56:58','2015-03-14 14:56:58',1,30002377,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(3180,'2015-03-14 14:56:58','2015-03-14 14:56:58',1,30004213,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(3181,'2015-03-14 14:56:58','2015-10-11 16:46:37',1,30002603,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0),(3182,'2015-03-14 14:56:58','2015-03-14 14:56:58',1,30000471,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(3183,'2015-03-14 14:56:58','2015-10-11 16:46:37',1,30002000,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0),(3184,'2015-03-14 14:56:58','2015-03-14 14:56:58',1,30000953,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(3185,'2015-03-14 14:56:58','2015-03-14 14:56:58',1,30002181,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(3186,'2015-03-14 14:56:58','2015-03-14 14:56:58',1,30004802,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(3187,'2015-03-14 14:56:58','2015-03-14 14:56:58',1,30001747,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(3188,'2015-03-14 14:56:58','2015-03-14 14:56:58',1,30004010,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(3189,'2015-03-14 14:56:58','2015-03-14 14:56:58',1,30001332,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(3190,'2015-03-14 14:56:58','2015-10-11 16:46:37',1,30003284,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,1,1,0),(3191,'2015-03-14 14:56:58','2015-03-14 14:56:58',1,30004773,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(3192,'2015-03-14 14:56:58','2015-10-11 16:46:37',1,30004461,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,3,2,0,0,0),(3193,'2015-03-14 14:56:58','2015-03-14 14:56:58',1,30002852,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(3194,'2015-03-14 14:56:58','2015-03-14 14:56:58',1,30000556,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(3195,'2015-03-14 14:56:58','2015-03-14 14:56:58',1,30000761,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(3196,'2015-03-14 14:56:58','2015-03-14 14:56:58',1,30005153,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(3197,'2015-03-14 14:56:58','2015-03-14 14:56:58',1,30001754,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(3198,'2015-03-14 14:56:58','2015-10-11 16:46:37',1,30004739,0,0,0,0,0,0,0,0,0,5,1,0,0,6,0,0,2,0,0,0,2,1,0,0),(3199,'2015-03-14 14:56:58','2015-03-14 14:56:58',1,30000633,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(3200,'2015-03-14 14:56:58','2015-10-11 16:46:37',1,30005134,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1),(3201,'2015-03-14 14:56:58','2015-03-14 14:56:58',1,30004901,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(3202,'2015-03-14 14:56:58','2015-03-14 14:56:58',1,30002374,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(3203,'2015-03-14 14:56:58','2015-10-11 16:46:37',1,30000681,0,0,49,0,0,0,0,0,0,0,0,0,0,6,0,0,0,0,0,0,1,0,0,0),(3204,'2015-03-14 14:56:58','2015-03-14 14:56:58',1,30001625,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(3205,'2015-03-14 14:56:58','2015-10-11 16:46:37',1,30000998,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,0,0),(3206,'2015-03-14 14:56:58','2015-03-14 14:56:58',1,30004369,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(3207,'2015-03-14 14:56:58','2015-10-11 16:46:37',1,30000272,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0),(3208,'2015-03-14 14:56:58','2015-03-14 14:56:58',1,30004234,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(3209,'2015-03-14 14:56:58','2015-03-14 14:56:58',1,30002190,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(3210,'2015-03-14 14:56:58','2015-03-14 14:56:58',1,30003558,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(3211,'2015-03-14 14:56:58','2015-10-11 16:46:37',1,30003503,7,5,8,1,7,8,0,0,8,1,0,0,0,1,3,4,5,1,0,0,0,2,1,0),(3212,'2015-03-14 14:56:58','2015-10-11 16:46:37',1,30005243,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(3213,'2015-03-14 14:56:58','2015-03-14 14:56:58',1,30005064,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(3214,'2015-03-14 14:56:58','2015-03-14 14:56:58',1,30002570,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(3215,'2015-03-14 14:56:58','2015-10-11 16:46:37',1,30000096,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,0),(3216,'2015-03-14 14:56:58','2015-03-14 14:56:58',1,30003520,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(3217,'2015-03-14 14:56:58','2015-10-11 16:46:37',1,30000104,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1),(3218,'2015-03-14 14:56:58','2015-10-11 16:46:37',1,30000122,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(3219,'2015-03-14 14:56:58','2015-10-11 16:46:37',1,30003499,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0),(3220,'2015-03-14 14:56:58','2015-03-14 14:56:58',1,30003546,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(3221,'2015-03-14 14:56:58','2015-10-11 16:46:37',1,30000162,0,0,0,0,1,1,2,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0),(3222,'2015-03-14 14:56:58','2015-10-11 16:46:37',1,30003576,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(3223,'2015-03-14 14:56:58','2015-03-14 14:56:58',1,30000047,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(3224,'2015-03-14 14:56:58','2015-03-14 14:56:58',1,30005210,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(3225,'2015-03-14 14:56:58','2015-10-11 16:46:37',1,30001393,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0),(3226,'2015-03-14 14:56:58','2015-03-14 14:56:58',1,30005235,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(3227,'2015-03-14 14:56:58','2015-10-11 16:46:37',1,30003084,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(3228,'2015-03-14 14:56:58','2015-03-14 14:56:58',1,30012505,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(3229,'2015-03-14 14:56:58','2015-03-14 14:56:58',1,30002242,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(3230,'2015-03-14 14:56:58','2015-10-11 16:46:37',1,30003559,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,2,2,0,0,0,0,0,0,1),(3231,'2015-03-14 14:56:58','2015-10-11 16:46:37',1,30005201,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,0,0,0,0,0,0),(3232,'2015-03-14 14:56:58','2015-10-11 16:46:37',1,30005230,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0),(3233,'2015-03-14 14:56:58','2015-03-14 14:56:58',1,30004112,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(3234,'2015-03-14 14:56:58','2015-10-11 16:46:37',1,30001658,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1),(3235,'2015-03-14 14:56:58','2015-10-11 16:46:37',1,30002760,0,0,0,0,1,1,0,0,0,0,0,0,1,0,0,0,0,1,1,0,1,0,0,0),(3236,'2015-03-14 14:56:58','2015-10-11 16:46:37',1,30003060,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0),(3237,'2015-03-14 14:56:58','2015-03-14 14:56:58',1,30003855,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(3238,'2015-03-14 14:56:58','2015-10-11 16:46:37',1,30001388,0,0,0,0,0,0,1,0,1,0,2,1,0,0,0,1,2,0,0,0,0,0,0,0),(3239,'2015-03-14 14:56:58','2015-03-14 14:56:58',1,30004247,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(3240,'2015-03-14 14:56:58','2015-03-14 14:56:58',1,30003024,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(3241,'2015-03-14 14:56:58','2015-03-14 14:56:58',1,30002194,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(3242,'2015-03-14 14:56:58','2015-03-14 14:56:58',1,30001722,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(3243,'2015-03-14 14:56:58','2015-10-11 16:46:37',1,30045318,2,5,1,0,0,0,0,0,2,1,1,1,0,0,2,0,0,1,0,1,1,0,0,0),(3244,'2015-03-14 14:56:58','2015-10-11 16:46:37',1,30005325,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(3245,'2015-03-14 14:56:58','2015-03-14 14:56:58',1,30005041,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(3246,'2015-03-14 14:56:58','2015-03-14 14:56:58',1,30004235,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(3247,'2015-03-14 14:56:58','2015-03-14 14:56:58',1,30003868,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(3248,'2015-03-14 14:56:58','2015-10-11 16:46:37',1,30000052,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0),(3249,'2015-03-14 14:56:58','2015-03-14 14:56:58',1,30000202,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(3250,'2015-03-14 14:56:58','2015-10-11 16:46:37',1,30003444,0,0,0,1,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,0),(3251,'2015-03-14 14:56:58','2015-03-14 14:56:58',1,30003034,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(3252,'2015-03-14 14:56:58','2015-03-14 14:56:58',1,30003396,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(3253,'2015-03-14 14:56:58','2015-10-11 16:46:37',1,30001654,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(3254,'2015-03-14 14:56:58','2015-10-11 16:46:37',1,30000140,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,1,0,0),(3255,'2015-03-14 14:56:58','2015-10-11 16:46:37',1,30003835,0,0,1,0,1,0,0,0,0,0,0,0,0,0,0,1,1,2,0,0,0,0,0,0),(3256,'2015-03-14 14:56:58','2015-10-11 16:46:37',1,30002213,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0),(3257,'2015-03-14 14:56:58','2015-10-11 16:46:37',1,30001182,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,2,0,0,0),(3258,'2015-03-14 14:56:58','2015-10-11 16:46:37',1,30001832,0,0,1,0,0,0,0,0,0,0,0,0,0,1,7,0,0,0,1,0,0,0,0,0),(3259,'2015-03-14 14:56:58','2015-03-14 14:56:58',1,30001818,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(3260,'2015-03-14 14:56:58','2015-03-14 14:56:58',1,30001316,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(3261,'2015-03-14 14:56:58','2015-03-14 14:56:58',1,30000209,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(3262,'2015-03-14 14:56:58','2015-03-14 14:56:58',1,30000443,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(3263,'2015-03-14 14:56:58','2015-03-14 14:56:58',1,30001027,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(3264,'2015-03-14 14:56:58','2015-10-11 16:46:37',1,30004398,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0),(3265,'2015-03-14 14:56:58','2015-10-11 16:46:37',1,30002974,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1),(3266,'2015-03-14 14:56:58','2015-03-14 14:56:58',1,30002401,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(3267,'2015-03-14 14:56:58','2015-03-14 14:56:58',1,30003403,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(3268,'2015-03-14 14:56:58','2015-03-14 14:56:58',1,30002525,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(3269,'2015-03-14 14:56:58','2015-10-11 16:46:37',1,30005296,1,1,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,1),(3270,'2015-03-14 14:56:58','2015-03-14 14:56:58',1,30005238,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(3271,'2015-03-14 14:56:58','2015-10-11 16:46:37',1,30002986,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(3272,'2015-03-14 14:56:58','2015-10-11 16:46:37',1,30004121,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(3273,'2015-03-14 14:56:58','2015-10-11 16:46:37',1,30003853,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,1),(3274,'2015-03-14 14:56:58','2015-10-11 16:46:37',1,30005303,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(3275,'2015-03-14 14:56:58','2015-03-14 14:56:58',1,30003538,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(3276,'2015-03-14 14:56:58','2015-03-14 14:56:58',1,30044971,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(3277,'2015-03-14 14:56:58','2015-10-11 16:46:37',1,30000164,2,0,5,7,1,1,0,0,0,0,0,0,0,3,0,0,0,0,7,0,0,0,0,0),(3278,'2015-03-14 14:56:58','2015-10-11 16:46:37',1,30004975,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,0,0,0),(3279,'2015-03-14 14:56:58','2015-03-14 14:56:58',1,30002637,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(3280,'2015-03-14 14:56:58','2015-10-11 16:46:37',1,30003568,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0),(3281,'2015-03-14 14:56:58','2015-03-14 14:56:58',1,30003032,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(3282,'2015-03-14 14:56:58','2015-03-14 14:56:58',1,30002299,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(3283,'2015-03-14 14:56:58','2015-10-11 16:46:37',1,30004934,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0),(3284,'2015-03-14 14:56:58','2015-03-14 14:56:58',1,30000321,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(3285,'2015-03-14 14:56:58','2015-10-11 16:46:37',1,30003712,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,1,0,2,0,0,0,1),(3286,'2015-03-14 14:56:58','2015-10-11 16:46:37',1,30003268,0,1,1,0,0,0,0,1,4,0,0,0,0,0,0,0,0,2,1,1,1,1,1,1),(3287,'2015-03-14 14:56:58','2015-03-14 14:56:58',1,30001988,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(3288,'2015-03-14 14:56:58','2015-10-11 16:46:37',1,30004113,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(3289,'2015-03-14 14:56:58','2015-03-14 14:56:58',1,30003539,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(3290,'2015-03-14 14:56:58','2015-03-14 14:56:58',1,30004968,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(3291,'2015-03-14 14:56:58','2015-10-11 16:46:37',1,30000046,0,0,0,0,0,0,0,0,0,0,0,0,0,1,2,3,3,0,0,0,0,5,0,2),(3292,'2015-03-14 14:56:58','2015-03-14 14:56:58',1,30002198,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(3293,'2015-03-14 14:56:58','2015-03-14 14:56:58',1,30002236,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(3294,'2015-03-14 14:56:58','2015-03-14 14:56:58',1,30003001,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(3295,'2015-03-14 14:56:58','2015-10-11 16:46:37',1,30000079,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0),(3296,'2015-03-14 14:56:58','2015-03-14 14:56:58',1,30001676,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(3297,'2015-03-14 14:56:58','2015-03-14 14:56:58',1,30001691,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(3298,'2015-03-14 14:56:58','2015-10-11 16:46:37',1,30002410,0,1,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,1,0,0),(3299,'2015-03-14 14:56:58','2015-03-14 14:56:58',1,30004153,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(3300,'2015-03-14 14:56:58','2015-10-11 16:46:37',1,30002732,0,0,0,0,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0),(3301,'2015-03-14 14:56:58','2015-10-11 16:46:37',1,30002719,2,0,1,0,0,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(3302,'2015-03-14 14:56:58','2015-10-11 16:46:37',1,30005084,0,0,0,0,0,0,0,0,0,0,1,0,1,0,0,0,0,0,0,0,0,0,0,0),(3303,'2015-03-14 14:56:58','2015-10-11 16:46:37',1,30003563,0,1,0,0,1,2,0,0,0,1,1,2,0,0,1,0,0,0,0,0,0,0,1,8),(3304,'2015-03-14 14:56:58','2015-10-11 16:46:37',1,30005059,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0),(3305,'2015-03-14 14:56:58','2015-03-14 14:56:58',1,30004251,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(3306,'2015-03-14 14:56:58','2015-10-11 16:46:37',1,30002665,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0),(3307,'2015-03-14 14:56:58','2015-03-14 14:56:58',1,30003482,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(3308,'2015-03-14 14:56:58','2015-10-11 16:46:37',1,30000120,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,1),(3309,'2015-03-14 14:56:58','2015-03-14 14:56:58',1,30002255,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(3310,'2015-03-14 14:56:58','2015-03-14 14:56:58',1,30005133,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(3311,'2015-03-14 14:56:58','2015-10-11 16:46:37',1,30000803,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0),(3312,'2015-03-14 14:56:58','2015-03-14 14:56:58',1,30004899,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(3313,'2015-03-14 14:56:58','2015-10-11 16:46:37',1,30000851,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0),(3314,'2015-03-14 14:56:58','2015-10-11 16:46:37',1,30004743,0,0,0,0,0,0,0,0,0,0,0,0,1,2,4,4,0,0,0,0,0,0,0,0),(3315,'2015-03-14 14:56:58','2015-10-11 16:46:37',1,30004064,0,0,0,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(3316,'2015-03-14 14:56:58','2015-10-11 16:46:37',1,30004183,0,0,0,0,0,0,0,0,0,0,0,0,0,2,0,0,0,0,0,0,0,0,1,0),(3317,'2015-03-14 14:56:58','2015-10-11 16:46:37',1,30003962,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(3318,'2015-03-14 14:56:58','2015-03-14 14:56:58',1,30000529,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(3319,'2015-03-14 14:56:58','2015-03-14 14:56:58',1,30000539,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(3320,'2015-03-14 14:56:58','2015-03-14 14:56:58',1,30001913,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(3321,'2015-03-14 14:56:58','2015-03-14 14:56:58',1,30004913,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(3322,'2015-03-14 14:56:58','2015-10-11 16:46:37',1,30000580,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,3,0,0,2,1,1,1),(3323,'2015-03-14 14:56:58','2015-10-11 16:46:37',1,30004618,0,0,6,1,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(3324,'2015-03-14 14:56:58','2015-03-14 14:56:58',1,30002840,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(3325,'2015-03-14 14:56:58','2015-03-14 14:56:58',1,30000270,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(3326,'2015-03-14 14:56:58','2015-03-14 14:56:58',1,30004765,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(3327,'2015-03-14 14:56:58','2015-03-14 14:56:58',1,30002359,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(3328,'2015-03-14 14:56:58','2015-10-11 16:46:37',1,30004223,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0),(3329,'2015-03-14 14:56:58','2015-10-11 16:46:37',1,30003828,0,0,0,0,0,0,0,0,0,1,0,0,0,3,0,0,0,1,3,1,8,0,0,0),(3330,'2015-03-14 14:56:58','2015-10-11 16:46:37',1,30000801,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,0,0,0,0),(3331,'2015-03-14 14:56:58','2015-10-11 16:46:37',1,30004136,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0),(3332,'2015-03-14 14:56:58','2015-03-14 14:56:58',1,30001720,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(3333,'2015-03-14 14:56:58','2015-03-14 14:56:58',1,30000042,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(3334,'2015-03-14 14:56:58','2015-03-14 14:56:58',1,30000031,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(3335,'2015-03-14 14:56:58','2015-03-14 14:56:58',1,30003876,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(3336,'2015-03-14 14:56:58','2015-03-14 14:56:58',1,30003814,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(3337,'2015-03-14 14:56:58','2015-03-14 14:56:58',1,30003881,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(3338,'2015-03-14 14:56:58','2015-03-14 14:56:58',1,30005037,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(3339,'2015-03-14 14:56:58','2015-03-14 14:56:58',1,30003061,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(3340,'2015-03-14 14:56:58','2015-10-11 16:46:37',1,30003011,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,1,0),(3341,'2015-03-14 14:56:58','2015-03-14 14:56:58',1,30003893,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(3342,'2015-03-14 14:56:58','2015-03-14 14:56:58',1,30001554,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(3343,'2015-03-14 14:56:58','2015-03-14 14:56:58',1,30003443,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(3344,'2015-03-14 14:56:58','2015-03-14 14:56:58',1,30003021,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(3345,'2015-03-14 14:56:58','2015-03-14 14:56:58',1,30002819,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(3346,'2015-03-14 14:56:58','2015-03-14 14:56:58',1,30002257,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(3347,'2015-03-14 14:56:58','2015-10-11 16:46:37',1,30001715,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1),(3348,'2015-03-14 14:56:58','2015-03-14 14:56:58',1,30005263,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(3349,'2015-03-14 14:56:58','2015-03-14 14:56:58',1,30004702,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(3350,'2015-03-14 14:56:58','2015-10-11 16:46:37',1,30003699,0,0,0,0,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(3351,'2015-03-14 14:56:58','2015-10-11 16:46:37',1,30002035,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(3352,'2015-03-14 14:56:58','2015-10-11 16:46:37',1,30000280,0,0,0,0,0,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(3353,'2015-03-14 14:56:58','2015-03-14 14:56:58',1,30001278,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(3354,'2015-03-14 14:56:58','2015-10-11 16:46:37',1,30002421,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,1,0,0),(3355,'2015-03-14 14:56:58','2015-03-14 14:56:58',1,30005155,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(3356,'2015-03-14 14:56:58','2015-03-14 14:56:58',1,30004861,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(3357,'2015-03-14 14:56:58','2015-03-14 14:56:58',1,30003153,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(3358,'2015-03-14 14:56:58','2015-03-14 14:56:58',1,30000774,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(3359,'2015-03-14 14:56:58','2015-10-11 16:46:37',1,30000864,0,0,0,0,0,0,1,0,0,1,2,2,0,0,0,0,0,0,0,0,0,0,0,0),(3360,'2015-03-14 14:56:58','2015-03-14 14:56:58',1,30004464,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(3361,'2015-03-14 14:56:58','2015-03-14 14:56:58',1,30004519,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(3362,'2015-03-14 14:56:58','2015-03-14 14:56:58',1,30002028,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(3363,'2015-03-14 14:56:58','2015-03-14 14:56:58',1,30003197,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(3364,'2015-03-14 14:56:58','2015-10-11 16:46:37',1,30005189,1,0,0,0,0,0,13,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0),(3365,'2015-03-14 14:56:58','2015-03-14 14:56:58',1,30003056,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(3366,'2015-03-14 14:56:58','2015-10-11 16:46:37',1,30005299,1,2,0,0,0,0,1,0,0,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0),(3367,'2015-03-14 14:56:58','2015-03-14 14:56:58',1,30004129,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(3368,'2015-03-14 14:56:58','2015-03-14 14:56:58',1,30002206,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(3369,'2015-03-14 14:56:58','2015-10-11 16:46:37',1,30005295,3,0,2,1,0,1,0,0,1,0,0,0,1,0,1,3,2,1,0,0,0,0,2,1),(3370,'2015-03-14 14:56:58','2015-03-14 14:56:58',1,30004092,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(3371,'2015-03-14 14:56:58','2015-03-14 14:56:58',1,30003526,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(3372,'2015-03-14 14:56:58','2015-10-11 16:46:37',1,30045334,0,0,0,1,0,2,1,0,0,1,0,0,0,0,2,3,1,0,0,0,3,0,4,0),(3373,'2015-03-14 14:56:58','2015-03-14 14:56:58',1,30002394,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(3374,'2015-03-14 14:56:58','2015-03-14 14:56:58',1,30002780,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(3375,'2015-03-14 14:56:58','2015-10-11 16:46:37',1,30001213,0,0,0,0,0,0,0,0,0,10,4,3,0,0,1,4,3,1,0,3,3,0,0,0),(3376,'2015-03-14 14:56:58','2015-10-11 16:46:37',1,30003755,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0),(3377,'2015-03-14 14:56:58','2015-10-11 16:46:37',1,30004966,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,0,0),(3378,'2015-03-14 14:56:58','2015-03-14 14:56:58',1,30000546,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(3379,'2015-03-14 14:56:58','2015-10-11 16:46:37',1,30002913,0,0,0,0,0,1,1,0,0,0,0,0,0,0,0,0,0,0,3,0,0,0,0,0),(3380,'2015-03-14 14:56:58','2015-03-14 14:56:58',1,30003318,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(3381,'2015-03-14 14:56:58','2015-10-11 16:46:37',1,30000232,0,0,0,0,1,1,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(3382,'2015-03-14 14:56:58','2015-10-11 16:46:37',1,30001202,0,0,0,0,0,0,0,0,0,1,0,0,0,1,0,0,0,0,0,0,0,0,0,0),(3383,'2015-03-14 14:56:58','2015-10-11 16:46:37',1,30003022,0,0,1,0,0,0,0,0,0,1,0,0,0,0,0,0,0,1,0,0,0,0,1,0),(3384,'2015-03-14 14:56:58','2015-10-11 16:46:37',1,30003075,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,1,0,0,0),(3385,'2015-03-14 14:56:58','2015-03-14 14:56:58',1,30002940,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(3386,'2015-03-14 14:56:58','2015-03-14 14:56:58',1,30003185,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(3387,'2015-03-14 14:56:58','2015-03-14 14:56:58',1,30003659,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(3388,'2015-03-14 14:56:58','2015-03-14 14:56:58',1,30000405,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(3389,'2015-03-14 14:56:58','2015-03-14 14:56:58',1,30001309,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(3390,'2015-03-14 14:56:58','2015-03-14 14:56:58',1,30000236,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(3391,'2015-03-14 14:56:58','2015-03-14 14:56:58',1,30000915,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(3392,'2015-03-14 14:56:58','2015-03-14 14:56:58',1,30002612,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(3393,'2015-03-14 14:56:58','2015-03-14 14:56:58',1,30001209,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(3394,'2015-03-14 14:56:58','2015-03-14 14:56:58',1,30004762,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(3395,'2015-03-14 14:56:58','2015-03-14 14:56:58',1,30000401,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(3396,'2015-03-14 14:56:58','2015-10-11 16:46:37',1,30002583,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,0,0),(3397,'2015-03-14 14:56:58','2015-10-11 16:46:37',1,30000904,0,0,0,1,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,1,1,0,0,0),(3398,'2015-03-14 14:56:58','2015-03-14 14:56:58',1,30000348,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(3399,'2015-03-14 14:56:58','2015-10-11 16:46:37',1,30000862,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0),(3400,'2015-03-14 14:56:58','2015-03-14 14:56:58',1,30001489,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(3401,'2015-03-14 14:56:58','2015-10-11 16:46:37',1,30001974,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(3402,'2015-03-14 14:56:58','2015-03-14 14:56:58',1,30001060,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(3403,'2015-03-14 14:56:58','2015-03-14 14:56:58',1,30002492,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(3404,'2015-03-14 14:56:58','2015-10-11 16:46:37',1,30000215,0,0,1,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(3405,'2015-03-14 14:56:58','2015-10-11 16:46:37',1,30001827,0,0,1,2,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(3406,'2015-03-14 14:56:58','2015-03-14 14:56:58',1,30002820,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(3407,'2015-03-14 14:56:58','2015-10-11 16:46:37',1,30004011,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0),(3408,'2015-03-14 14:56:58','2015-03-14 14:56:58',1,30000824,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(3409,'2015-03-14 14:56:58','2015-03-14 14:56:58',1,30001549,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(3410,'2015-03-14 14:56:58','2015-10-11 16:46:37',1,30001267,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0),(3411,'2015-03-14 14:56:58','2015-10-11 16:46:37',1,30000999,1,0,2,4,3,2,1,0,0,0,0,0,0,5,1,1,1,0,0,0,6,3,1,1),(3412,'2015-03-14 14:56:58','2015-03-14 14:56:58',1,30003763,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(3413,'2015-03-14 14:56:58','2015-03-14 14:56:58',1,30002341,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(3414,'2015-03-14 14:56:58','2015-03-14 14:56:58',1,30002918,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(3415,'2015-03-14 14:56:58','2015-03-14 14:56:58',1,30001062,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(3416,'2015-03-14 14:56:58','2015-03-14 14:56:58',1,30002309,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(3417,'2015-03-14 14:56:58','2015-03-14 14:56:58',1,30001302,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(3418,'2015-03-14 14:56:58','2015-03-14 14:56:58',1,30004580,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(3419,'2015-03-14 14:56:58','2015-10-11 16:46:37',1,30002945,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(3420,'2015-03-14 14:56:58','2015-10-11 16:46:37',1,30000669,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,10),(3421,'2015-03-14 14:56:58','2015-10-11 16:46:37',1,30001277,0,0,0,0,0,0,0,0,0,1,0,0,0,2,0,0,0,0,0,1,0,0,0,1),(3422,'2015-03-14 14:56:58','2015-10-11 16:46:37',1,30001280,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,4,1),(3423,'2015-03-14 14:56:58','2015-10-11 16:46:37',1,30001126,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(3424,'2015-03-14 14:56:58','2015-03-14 14:56:58',1,30000811,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(3425,'2015-03-14 14:56:58','2015-03-14 14:56:58',1,30000841,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(3426,'2015-03-14 14:56:58','2015-03-14 14:56:58',1,30004783,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(3427,'2015-03-14 14:56:58','2015-10-11 16:46:37',1,30003767,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0),(3428,'2015-03-14 14:56:58','2015-03-14 14:56:58',1,30002258,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(3429,'2015-03-14 14:56:58','2015-03-14 14:56:58',1,30002995,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(3430,'2015-03-14 14:56:58','2015-03-14 14:56:58',1,30001651,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(3431,'2015-03-14 14:56:58','2015-03-14 14:56:58',1,30001702,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(3432,'2015-03-14 14:56:58','2015-10-11 16:46:37',1,30004300,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0),(3433,'2015-03-14 14:56:58','2015-10-11 16:46:37',1,30002807,4,2,2,1,1,1,1,0,2,5,0,2,1,7,0,4,5,1,0,4,10,7,0,3),(3434,'2015-03-14 14:56:58','2015-10-11 16:46:37',1,30003475,0,0,0,0,0,0,0,0,1,0,0,0,0,2,1,0,1,0,0,0,0,1,0,0),(3435,'2015-03-14 14:56:58','2015-03-14 14:56:58',1,30005069,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(3436,'2015-03-14 14:56:58','2015-03-14 14:56:58',1,30003922,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(3437,'2015-03-14 14:56:58','2015-03-14 14:56:58',1,30005045,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(3438,'2015-03-14 14:56:58','2015-10-11 16:46:37',1,30005242,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0),(3439,'2015-03-14 14:56:58','2015-10-11 16:46:37',1,30000072,0,1,0,1,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,2,1,2,0,0),(3440,'2015-03-14 14:56:58','2015-10-11 16:46:37',1,30002988,0,0,1,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(3441,'2015-03-14 14:56:58','2015-03-14 14:56:58',1,30003936,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(3442,'2015-03-14 14:56:58','2015-10-11 16:46:37',1,30005043,0,0,1,0,0,0,0,0,0,0,1,0,0,0,0,1,1,0,0,0,0,0,0,0),(3443,'2015-03-14 14:56:58','2015-10-11 16:46:37',1,30003496,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(3444,'2015-03-14 14:56:58','2015-10-11 16:46:37',1,30002068,0,0,1,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(3445,'2015-03-14 14:56:58','2015-10-11 16:46:37',1,30004280,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,5,7,0,0,1,0,0,0),(3446,'2015-03-14 14:56:58','2015-03-14 14:56:58',1,30002262,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(3447,'2015-03-14 14:56:58','2015-10-11 16:46:37',1,30001445,0,12,0,0,5,5,0,0,11,2,0,0,0,1,0,0,0,0,0,0,1,0,0,0),(3448,'2015-03-14 14:56:58','2015-03-14 14:56:58',1,30003534,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(3449,'2015-03-14 14:56:58','2015-10-11 16:46:37',1,30003923,0,0,0,0,0,2,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0),(3450,'2015-03-14 14:56:58','2015-03-14 14:56:58',1,30001413,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(3451,'2015-03-14 14:56:58','2015-03-14 14:56:58',1,30001438,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(3452,'2015-03-14 14:56:58','2015-03-14 14:56:58',1,30002202,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(3453,'2015-03-14 14:56:58','2015-10-11 16:46:37',1,30005207,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0),(3454,'2015-03-14 14:56:58','2015-10-11 16:46:37',1,30005054,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0),(3455,'2015-03-14 14:56:58','2015-10-11 16:46:37',1,30001683,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(3456,'2015-03-14 14:56:58','2015-03-14 14:56:58',1,30005289,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(3457,'2015-03-14 14:56:58','2015-10-11 16:46:37',1,30002671,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(3458,'2015-03-14 14:56:58','2015-03-14 14:56:58',1,30000016,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(3459,'2015-03-14 14:56:58','2015-03-14 14:56:58',1,30000465,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(3460,'2015-03-14 14:56:58','2015-03-14 14:56:58',1,30001063,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(3461,'2015-03-14 14:56:58','2015-10-11 16:46:37',1,30002433,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0),(3462,'2015-03-14 14:56:58','2015-10-11 16:46:37',1,30001117,0,0,1,2,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(3463,'2015-03-14 14:56:58','2015-10-11 16:46:37',1,30002910,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(3464,'2015-03-14 14:56:58','2015-03-14 14:56:58',1,30003616,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(3465,'2015-03-14 14:56:58','2015-03-14 14:56:58',1,30000212,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(3466,'2015-03-14 14:56:58','2015-03-14 14:56:58',1,30002867,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(3467,'2015-03-14 14:56:58','2015-03-14 14:56:58',1,30003186,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(3468,'2015-03-14 14:56:58','2015-03-14 14:56:58',1,30004609,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(3469,'2015-03-14 14:56:58','2015-10-11 16:46:37',1,30003980,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(3470,'2015-03-14 14:56:58','2015-03-14 14:56:58',1,30000917,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(3471,'2015-03-14 14:56:58','2015-03-14 14:56:58',1,30005031,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(3472,'2015-03-14 14:56:58','2015-03-14 14:56:58',1,30004089,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(3473,'2015-03-14 14:56:58','2015-03-14 14:56:58',1,30004308,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(3474,'2015-03-14 14:56:58','2015-03-14 14:56:58',1,30003929,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(3475,'2015-03-14 14:56:58','2015-03-14 14:56:58',1,30003378,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(3476,'2015-03-14 14:56:58','2015-10-11 16:46:37',1,30005058,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0),(3477,'2015-03-14 14:56:58','2015-03-14 14:56:58',1,30004383,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(3478,'2015-03-14 14:56:58','2015-03-14 14:56:58',1,30001695,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(3479,'2015-03-14 14:56:58','2015-03-14 14:56:58',1,30003423,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(3480,'2015-03-14 14:56:58','2015-03-14 14:56:58',1,30004267,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(3481,'2015-03-14 14:56:58','2015-10-11 16:46:37',1,30045344,0,1,0,2,2,2,3,0,1,1,2,0,2,0,3,1,0,1,10,0,0,0,0,0),(3482,'2015-03-14 14:56:58','2015-03-14 14:56:58',1,30002228,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(3483,'2015-03-14 14:56:58','2015-03-14 14:56:58',1,30003073,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(3484,'2015-03-14 14:56:58','2015-03-14 14:56:58',1,30001826,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(3485,'2015-03-14 14:56:58','2015-10-11 16:46:37',1,30000145,1,1,0,0,0,0,0,0,0,1,0,0,0,0,0,1,1,0,0,0,0,2,1,0),(3486,'2015-03-14 14:56:58','2015-10-11 16:46:37',1,30005286,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0),(3487,'2015-03-14 14:56:58','2015-03-14 14:56:58',1,30002650,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(3488,'2015-03-14 14:56:58','2015-03-14 14:56:58',1,30003859,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(3489,'2015-03-14 14:56:58','2015-10-11 16:46:37',1,30002246,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,2,1),(3490,'2015-03-14 14:56:58','2015-03-14 14:56:58',1,30000230,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(3491,'2015-03-14 14:56:58','2015-10-11 16:46:37',1,30003325,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1),(3492,'2015-03-14 14:56:58','2015-10-11 16:46:37',1,30000650,0,0,1,0,1,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(3493,'2015-03-14 14:56:58','2015-03-14 14:56:58',1,30005170,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(3494,'2015-03-14 14:56:58','2015-03-14 14:56:58',1,30001239,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(3495,'2015-03-14 14:56:58','2015-03-14 14:56:58',1,30003117,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(3496,'2015-03-14 14:56:58','2015-03-14 14:56:58',1,30001789,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(3497,'2015-03-14 14:56:58','2015-10-11 16:46:37',1,30002185,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0),(3498,'2015-03-14 14:56:58','2015-10-11 16:46:37',1,30003504,4,4,5,2,4,3,0,0,1,2,0,0,3,1,1,1,0,1,1,0,0,0,2,1),(3499,'2015-03-14 14:56:58','2015-10-11 16:46:37',1,30005047,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0),(3500,'2015-03-14 14:56:58','2015-10-11 16:46:37',1,30003580,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,1,0,0,0),(3501,'2015-03-14 14:56:58','2015-03-14 14:56:58',1,30003006,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(3502,'2015-03-14 14:56:58','2015-03-14 14:56:58',1,30004769,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(3503,'2015-03-14 14:56:58','2015-03-14 14:56:58',1,30004126,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(3504,'2015-03-14 14:56:58','2015-03-14 14:56:58',1,30004274,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(3505,'2015-03-14 14:56:58','2015-03-14 14:56:58',1,30000108,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(3506,'2015-03-14 14:56:58','2015-03-14 14:56:58',1,30000642,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(3507,'2015-03-14 14:56:58','2015-03-14 14:56:58',1,30003448,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(3508,'2015-03-14 14:56:58','2015-10-11 16:46:37',1,30002234,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0),(3509,'2015-03-14 14:56:58','2015-10-11 16:46:37',1,30000900,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0),(3510,'2015-03-14 14:56:58','2015-03-14 14:56:58',1,30000057,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(3511,'2015-03-14 14:56:58','2015-10-11 16:46:37',1,30002757,2,0,0,1,0,0,0,3,0,1,0,1,0,0,1,1,0,1,0,0,0,0,0,1),(3512,'2015-03-14 14:56:58','2015-03-14 14:56:58',1,30001082,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(3513,'2015-03-14 14:56:58','2015-03-14 14:56:58',1,30000035,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(3514,'2015-03-14 14:56:58','2015-03-14 14:56:58',1,30000008,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(3515,'2015-03-14 14:56:58','2015-03-14 14:56:58',1,30005040,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(3516,'2015-03-14 14:56:58','2015-10-11 16:46:37',1,30045352,1,1,1,0,1,1,1,0,0,0,0,1,4,0,0,0,0,1,0,0,1,0,0,0),(3517,'2015-03-14 14:56:58','2015-10-11 16:46:37',1,30000143,0,0,0,0,0,0,0,0,1,0,0,0,0,0,1,1,0,0,0,0,0,0,0,0),(3518,'2015-03-14 14:56:58','2015-03-14 14:56:58',1,30003141,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(3519,'2015-03-14 14:56:58','2015-10-11 16:46:37',1,30000896,1,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0),(3520,'2015-03-14 14:56:58','2015-10-11 16:46:37',1,30000902,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,0,0,0,0),(3521,'2015-03-14 14:56:58','2015-03-14 14:56:58',1,30002303,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(3522,'2015-03-14 14:56:58','2015-03-14 14:56:58',1,30000855,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(3523,'2015-03-14 14:56:58','2015-10-11 16:46:37',1,30004476,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,0,0,0,0,0,0,1),(3524,'2015-03-14 14:56:58','2015-03-14 14:56:58',1,30004338,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(3525,'2015-03-14 14:56:58','2015-10-11 16:46:37',1,30004518,2,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1),(3526,'2015-03-14 14:56:58','2015-03-14 14:56:58',1,30005018,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(3527,'2015-03-14 14:56:58','2015-10-11 16:46:37',1,30004712,0,0,0,0,0,0,0,0,0,0,3,2,0,0,0,0,0,0,0,0,0,0,0,0),(3528,'2015-03-14 14:56:58','2015-03-14 14:56:58',1,30002218,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(3529,'2015-03-14 14:56:58','2015-03-14 14:56:58',1,30000131,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(3530,'2015-03-14 14:56:58','2015-10-11 16:46:37',1,30002219,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0),(3531,'2015-03-14 14:56:58','2015-10-11 16:46:37',1,30001401,1,2,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(3532,'2015-03-14 14:56:58','2015-03-14 14:56:58',1,30005236,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(3533,'2015-03-14 14:56:58','2015-03-14 14:56:58',1,30004094,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(3534,'2015-03-14 14:56:58','2015-03-14 14:56:58',1,30001725,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(3535,'2015-03-14 14:56:58','2015-10-11 16:46:37',1,30045348,0,0,1,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,1,0,0,1,0),(3536,'2015-03-14 14:56:58','2015-03-14 14:56:58',1,30003884,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(3537,'2015-03-14 14:56:58','2015-10-11 16:46:37',1,30001376,1,0,4,3,1,1,0,2,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0),(3538,'2015-03-14 14:56:58','2015-03-14 14:56:58',1,30004307,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(3539,'2015-03-14 14:56:58','2015-03-14 14:56:58',1,30004533,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(3540,'2015-03-14 14:56:58','2015-03-14 14:56:58',1,30004479,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(3541,'2015-03-14 14:56:58','2015-03-14 14:56:58',1,30002451,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(3542,'2015-03-14 14:56:58','2015-03-14 14:56:58',1,30001822,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(3543,'2015-03-14 14:56:58','2015-03-14 14:56:58',1,30000368,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(3544,'2015-03-14 14:56:58','2015-03-14 14:56:58',1,30004919,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(3545,'2015-03-14 14:56:58','2015-03-14 14:56:58',1,30004866,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(3546,'2015-03-14 14:56:58','2015-03-14 14:56:58',1,30001094,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(3547,'2015-03-14 14:56:58','2015-10-11 16:46:37',1,30001962,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0),(3548,'2015-03-14 14:56:58','2015-03-14 14:56:58',1,30002103,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(3549,'2015-03-14 14:56:58','2015-10-11 16:46:37',1,30000696,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,1,0,0,0,0,0,0,1),(3550,'2015-03-14 14:56:58','2015-03-14 14:56:58',1,30001622,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(3551,'2015-03-14 14:56:58','2015-03-14 14:56:58',1,30001061,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(3552,'2015-03-14 14:56:58','2015-03-14 14:56:58',1,30004318,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(3553,'2015-03-14 14:56:58','2015-10-11 16:46:37',1,30004035,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(3554,'2015-03-14 14:56:58','2015-10-11 16:46:37',1,30002606,0,0,0,0,0,0,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(3555,'2015-03-14 14:56:58','2015-10-11 16:46:37',1,30000183,0,0,0,0,0,0,0,0,0,0,0,0,2,0,0,0,0,0,0,0,0,0,0,0),(3556,'2015-03-14 14:56:58','2015-03-14 14:56:58',1,30001665,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(3557,'2015-03-14 14:56:58','2015-03-14 14:56:58',1,30003627,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(3558,'2015-03-14 14:56:58','2015-03-14 14:56:58',1,30000350,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(3559,'2015-03-14 14:56:58','2015-03-14 14:56:58',1,30004438,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(3560,'2015-03-14 14:56:58','2015-03-14 14:56:58',1,30002340,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(3561,'2015-03-14 14:56:58','2015-03-14 14:56:58',1,30004440,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(3562,'2015-03-14 14:56:58','2015-03-14 14:56:58',1,30004612,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(3563,'2015-03-14 14:56:58','2015-10-11 16:46:37',1,30001874,0,0,0,1,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0),(3564,'2015-03-14 14:56:58','2015-10-11 16:46:37',1,30004911,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,0,0,0,0),(3565,'2015-03-14 14:56:58','2015-03-14 14:56:58',1,30004863,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(3566,'2015-03-14 14:56:58','2015-10-11 16:46:37',1,30000870,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0),(3567,'2015-03-14 14:56:58','2015-03-14 14:56:58',1,30004050,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(3568,'2015-03-14 14:56:58','2015-10-11 16:46:37',1,30002935,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1),(3569,'2015-03-14 14:56:58','2015-03-14 14:56:58',1,30000627,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(3570,'2015-03-14 14:56:58','2015-03-14 14:56:58',1,30000744,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(3571,'2015-03-14 14:56:58','2015-03-14 14:56:58',1,30000982,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(3572,'2015-03-14 14:56:58','2015-03-14 14:56:58',1,30004692,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(3573,'2015-03-14 14:56:58','2015-03-14 14:56:58',1,30000831,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(3574,'2015-03-14 14:56:58','2015-03-14 14:56:58',1,30002034,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(3575,'2015-03-14 14:56:58','2015-10-11 16:46:37',1,30004060,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0),(3576,'2015-03-14 14:56:58','2015-10-11 16:46:37',1,30001964,0,0,1,0,0,0,1,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(3577,'2015-03-14 14:56:58','2015-03-14 14:56:58',1,30003683,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(3578,'2015-03-14 14:56:58','2015-03-14 14:56:58',1,30001955,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(3579,'2015-03-14 14:56:58','2015-03-14 14:56:58',1,30002358,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(3580,'2015-03-14 14:56:58','2015-03-14 14:56:58',1,30004199,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(3581,'2015-03-14 14:56:58','2015-03-14 14:56:58',1,30001938,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(3582,'2015-03-14 14:56:58','2015-10-11 16:46:37',1,30004713,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0),(3583,'2015-03-14 14:56:58','2015-03-14 14:56:58',1,30004049,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(3584,'2015-03-14 14:56:58','2015-03-14 14:56:58',1,30004326,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(3585,'2015-03-14 14:56:58','2015-03-14 14:56:58',1,30002351,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(3586,'2015-03-14 14:56:58','2015-03-14 14:56:58',1,30000309,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(3587,'2015-03-14 14:56:58','2015-03-14 14:56:58',1,30004671,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(3588,'2015-03-14 14:56:58','2015-10-11 16:46:37',1,30004703,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,2,0),(3589,'2015-03-14 14:56:58','2015-10-11 16:46:37',1,30001986,2,0,1,0,0,1,0,0,0,2,0,0,0,1,0,0,1,0,0,0,0,0,0,0),(3590,'2015-03-14 14:56:58','2015-03-14 14:56:58',1,30001751,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(3591,'2015-03-14 14:56:58','2015-03-14 14:56:58',1,30000993,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(3592,'2015-03-14 14:56:58','2015-10-11 16:46:37',1,30004649,0,0,2,0,1,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(3593,'2015-03-14 14:56:58','2015-10-11 16:46:37',1,30005171,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(3594,'2015-03-14 14:56:58','2015-10-11 16:46:37',1,30004543,0,0,0,1,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(3595,'2015-03-14 14:56:58','2015-03-14 14:56:58',1,30000975,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(3596,'2015-03-14 14:56:58','2015-03-14 14:56:58',1,30001297,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(3597,'2015-03-14 14:56:58','2015-03-14 14:56:58',1,30002457,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(3598,'2015-03-14 14:56:58','2015-10-11 16:46:37',1,30003761,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(3599,'2015-03-14 14:56:58','2015-10-11 16:46:37',1,30004044,2,0,0,0,1,1,2,0,0,0,0,0,0,0,1,1,1,3,0,3,1,1,0,1),(3600,'2015-03-14 14:56:58','2015-10-11 16:46:37',1,30002425,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,1,1),(3601,'2015-03-14 14:56:58','2015-10-11 16:46:37',1,30004699,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,3,0,0,0),(3602,'2015-03-14 14:56:58','2015-10-11 16:46:37',1,30003686,1,0,3,0,1,1,0,0,1,0,0,0,0,0,1,1,1,0,0,1,0,1,0,0),(3603,'2015-03-14 14:56:58','2015-03-14 14:56:58',1,30002602,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(3604,'2015-03-14 14:56:58','2015-03-14 14:56:58',1,30002499,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(3605,'2015-03-14 14:56:58','2015-10-11 16:46:37',1,30000492,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0),(3606,'2015-03-14 14:56:58','2015-03-14 14:56:58',1,30002851,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(3607,'2015-03-14 14:56:58','2015-03-14 14:56:58',1,30003645,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(3608,'2015-03-14 14:56:58','2015-03-14 14:56:58',1,30003946,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(3609,'2015-03-14 14:56:58','2015-03-14 14:56:58',1,30002153,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(3610,'2015-03-14 14:56:58','2015-10-11 16:46:37',1,30004691,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,0,0),(3611,'2015-03-14 14:56:58','2015-10-11 16:46:37',1,30002884,0,0,0,0,0,0,0,0,0,0,1,1,0,0,1,0,0,2,0,0,0,0,0,0),(3612,'2015-03-14 14:56:58','2015-10-11 16:46:37',1,30000512,1,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(3613,'2015-03-14 14:56:58','2015-10-11 16:46:37',1,30001855,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0),(3614,'2015-03-14 14:56:58','2015-03-14 14:56:58',1,30002116,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(3615,'2015-03-14 14:56:58','2015-03-14 14:56:58',1,30001099,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(3616,'2015-03-14 14:56:58','2015-10-11 16:46:37',1,30002179,0,0,0,0,0,0,2,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0),(3617,'2015-03-14 14:56:58','2015-03-14 14:56:58',1,30001068,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(3618,'2015-03-14 14:56:58','2015-10-11 16:46:37',1,30004381,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0),(3619,'2015-03-14 14:56:58','2015-03-14 14:56:58',1,30002879,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(3620,'2015-03-14 14:56:58','2015-03-14 14:56:58',1,30004424,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(3621,'2015-03-14 14:56:58','2015-03-14 14:56:58',1,30000560,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(3622,'2015-03-14 14:56:58','2015-03-14 14:56:58',1,30000679,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(3623,'2015-03-14 14:56:58','2015-10-11 16:46:37',1,30004996,0,0,1,0,0,0,0,0,1,1,2,0,0,0,1,1,1,2,0,0,0,0,0,0),(3624,'2015-03-14 14:56:58','2015-10-11 16:46:37',1,30000155,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(3625,'2015-03-14 14:56:58','2015-10-11 16:46:37',1,30000205,0,0,0,0,0,0,0,0,1,1,3,1,0,0,0,0,3,0,0,0,1,0,0,0),(3626,'2015-03-14 14:56:58','2015-03-14 14:56:58',1,30004109,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(3627,'2015-03-14 14:56:58','2015-03-14 14:56:58',1,30004487,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(3628,'2015-03-14 14:56:58','2015-03-14 14:56:58',1,30002522,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(3629,'2015-03-14 14:56:58','2015-03-14 14:56:58',1,30005181,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(3630,'2015-03-14 14:56:58','2015-10-11 16:46:37',1,30003578,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,1,0,1,1,0,0,0),(3631,'2015-03-14 14:56:58','2015-03-14 14:56:58',1,30004426,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(3632,'2015-03-14 14:56:58','2015-10-11 16:46:37',1,30003857,0,1,0,0,0,0,0,0,0,1,0,0,0,1,0,1,1,0,0,0,1,0,0,0),(3633,'2015-03-14 14:56:58','2015-10-11 16:46:37',1,30002509,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0),(3634,'2015-03-14 14:56:58','2015-10-11 16:46:37',1,30002388,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(3635,'2015-03-14 14:56:58','2015-03-14 14:56:58',1,30003470,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(3636,'2015-03-14 14:56:58','2015-03-14 14:56:58',1,30002694,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(3637,'2015-03-14 14:56:58','2015-10-11 16:46:37',1,30002963,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(3638,'2015-03-14 14:56:58','2015-03-14 14:56:58',1,30003582,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(3639,'2015-03-14 14:56:58','2015-10-11 16:46:37',1,30003050,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(3640,'2015-03-14 14:56:58','2015-03-14 14:56:58',1,30000077,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(3641,'2015-03-14 14:56:58','2015-03-14 14:56:58',1,30012715,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(3642,'2015-03-14 14:56:58','2015-10-11 16:46:37',1,30003657,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(3643,'2015-03-14 14:56:58','2015-03-14 14:56:58',1,30002008,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(3644,'2015-03-14 14:56:58','2015-03-14 14:56:58',1,30000439,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(3645,'2015-03-14 14:56:58','2015-03-14 14:56:58',1,30003577,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(3646,'2015-03-14 14:56:58','2015-03-14 14:56:58',1,30002427,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(3647,'2015-03-14 14:56:58','2015-10-11 16:46:37',1,30003446,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1),(3648,'2015-03-14 14:56:58','2015-10-11 16:46:37',1,30003460,0,0,0,0,0,0,0,0,0,0,1,2,0,0,0,0,0,0,0,0,0,0,0,0),(3649,'2015-03-14 14:56:58','2015-03-14 14:56:58',1,30002549,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(3650,'2015-03-14 14:56:58','2015-10-11 16:46:37',1,30002061,0,0,0,0,0,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(3651,'2015-03-14 14:56:58','2015-03-14 14:56:58',1,30000472,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(3652,'2015-03-14 14:56:58','2015-03-14 14:56:58',1,30003598,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(3653,'2015-03-14 14:56:58','2015-10-11 16:46:37',1,30001191,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(3654,'2015-03-14 14:56:58','2015-03-14 14:56:58',1,30003437,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(3655,'2015-03-14 14:56:58','2015-03-14 14:56:58',1,30005068,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(3656,'2015-03-14 14:56:58','2015-10-11 16:46:37',1,30002045,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(3657,'2015-03-14 14:56:58','2015-10-11 16:46:37',1,30003984,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(3658,'2015-03-14 14:56:58','2015-03-14 14:56:58',1,30001435,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(3659,'2015-03-14 14:56:58','2015-03-14 14:56:58',1,30002970,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(3660,'2015-03-14 14:56:58','2015-10-11 16:46:37',1,30000204,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(3661,'2015-03-14 14:56:58','2015-10-11 16:46:37',1,30000136,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(3662,'2015-03-14 14:56:58','2015-10-11 16:46:37',1,30002743,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(3663,'2015-03-14 14:56:58','2015-03-14 14:56:58',1,30002818,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(3664,'2015-03-14 14:56:58','2015-10-11 16:46:37',1,30003838,0,0,0,1,0,0,1,0,0,0,0,0,1,0,0,0,0,1,0,0,0,0,0,0),(3665,'2015-03-14 14:56:58','2015-03-14 14:56:58',1,30002746,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(3666,'2015-03-14 14:56:58','2015-10-11 16:46:37',1,30000186,10,2,0,6,8,2,4,2,1,1,2,0,3,0,0,0,1,1,0,0,0,1,0,0),(3667,'2015-03-14 14:56:58','2015-03-14 14:56:58',1,30001444,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(3668,'2015-03-14 14:56:58','2015-10-11 16:46:37',1,30045347,0,0,2,0,0,1,1,0,1,2,1,2,0,4,0,0,1,1,0,0,0,0,1,1),(3669,'2015-03-14 14:56:58','2015-03-14 14:56:58',1,30002750,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(3670,'2015-03-14 14:56:58','2015-03-14 14:56:58',1,30003132,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(3671,'2015-03-14 14:56:58','2015-03-14 14:56:58',1,30001425,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(3672,'2015-03-14 14:56:58','2015-03-14 14:56:58',1,30022715,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(3673,'2015-03-14 14:56:58','2015-10-11 16:46:37',1,30001433,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,0,0,0,0,0,0,0),(3674,'2015-03-14 14:56:58','2015-03-14 14:56:58',1,30002799,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(3675,'2015-03-14 14:56:58','2015-03-14 14:56:58',1,30004334,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(3676,'2015-03-14 14:56:58','2015-03-14 14:56:58',1,30001341,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(3677,'2015-03-14 14:56:58','2015-03-14 14:56:58',1,30000983,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(3678,'2015-03-14 14:56:58','2015-10-11 16:46:37',1,30005091,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0),(3679,'2015-03-14 14:56:58','2015-10-11 16:46:37',1,30000945,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,0,0,0),(3680,'2015-03-14 14:56:58','2015-10-11 16:46:37',1,30045307,0,0,0,0,0,0,0,0,0,1,1,1,0,0,0,0,0,0,0,0,1,0,0,0),(3681,'2015-03-14 14:56:58','2015-03-14 14:56:58',1,30004924,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(3682,'2015-03-14 14:56:58','2015-10-11 16:46:37',1,30045330,0,3,2,0,0,0,0,0,1,1,3,3,1,3,2,0,1,2,0,0,2,2,0,1),(3683,'2015-03-14 14:56:58','2015-03-14 14:56:58',1,30004645,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(3684,'2015-03-14 14:56:58','2015-03-14 14:56:58',1,30003388,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(3685,'2015-03-14 14:56:58','2015-10-11 16:46:37',1,30005000,1,0,1,1,2,3,4,1,0,1,1,0,1,4,3,3,6,0,0,0,1,1,0,1),(3686,'2015-03-14 14:56:58','2015-03-14 14:56:58',1,30032715,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(3687,'2015-03-14 14:56:58','2015-10-11 16:46:37',1,30002686,0,0,0,0,0,0,0,1,1,0,0,1,0,0,0,0,0,0,0,1,0,0,0,0),(3688,'2015-03-14 14:56:58','2015-10-11 16:46:37',1,30002515,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0),(3689,'2015-03-14 14:56:58','2015-10-11 16:46:37',1,30003058,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0),(3690,'2015-03-14 14:56:58','2015-10-11 16:46:37',1,30005272,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0),(3691,'2015-03-14 14:56:58','2015-10-11 16:46:37',1,30000158,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,0,0,0,0,0),(3692,'2015-03-14 14:56:58','2015-03-14 14:56:58',1,30004137,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(3693,'2015-03-14 14:56:58','2015-03-14 14:56:58',1,30004302,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(3694,'2015-03-14 14:56:58','2015-03-14 14:56:58',1,30003817,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(3695,'2015-03-14 14:56:58','2015-03-14 14:56:58',1,30005027,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(3696,'2015-03-14 14:56:58','2015-10-11 16:46:37',1,30004244,0,1,2,1,1,1,1,4,2,0,1,4,1,0,0,0,0,7,0,0,0,1,3,1),(3697,'2015-03-14 14:56:58','2015-10-11 16:46:37',1,30002811,1,0,0,1,0,0,1,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2),(3698,'2015-03-14 14:56:58','2015-03-14 14:56:58',1,30001688,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(3699,'2015-03-14 14:56:58','2015-03-14 14:56:58',1,30003603,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(3700,'2015-03-14 14:56:58','2015-03-14 14:56:58',1,30002568,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(3701,'2015-03-14 14:56:58','2015-10-11 16:46:37',1,30003386,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(3702,'2015-03-14 14:56:58','2015-10-11 16:46:37',1,30045324,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(3703,'2015-03-14 14:56:58','2015-10-11 16:46:37',1,30004990,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,1,0,0,0,0,0,0),(3704,'2015-03-14 14:56:58','2015-03-14 14:56:58',1,30002779,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(3705,'2015-03-14 14:56:58','2015-03-14 14:56:58',1,30000013,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(3706,'2015-03-14 14:56:58','2015-10-11 16:46:37',1,30002091,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0),(3707,'2015-03-14 14:56:58','2015-03-14 14:56:58',1,30000174,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(3708,'2015-03-14 14:56:58','2015-03-14 14:56:58',1,30001946,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(3709,'2015-03-14 14:56:58','2015-10-11 16:46:37',1,30005109,0,0,0,0,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(3710,'2015-03-14 14:56:58','2015-10-11 16:46:37',1,30002173,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0),(3711,'2015-03-14 14:56:58','2015-03-14 14:56:58',1,30003430,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(3712,'2015-03-14 14:56:58','2015-03-14 14:56:58',1,30004858,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(3713,'2015-03-14 14:56:58','2015-03-14 14:56:58',1,30000607,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(3714,'2015-03-14 14:56:58','2015-03-14 14:56:58',1,30003450,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(3715,'2015-03-14 14:56:58','2015-03-14 14:56:58',1,30003201,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(3716,'2015-03-14 14:56:58','2015-03-14 14:56:58',1,30001685,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(3717,'2015-03-14 14:56:58','2015-10-11 16:46:37',1,30005060,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,1,0,0,0,0,0,0),(3718,'2015-03-14 14:56:58','2015-03-14 14:56:58',1,30000026,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(3719,'2015-03-14 14:56:58','2015-03-14 14:56:58',1,30003453,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(3720,'2015-03-14 14:56:58','2015-03-14 14:56:58',1,30002571,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(3721,'2015-03-14 14:56:58','2015-10-11 16:46:37',1,30002098,0,0,0,0,0,0,0,0,0,1,0,0,0,1,0,0,0,1,0,0,0,1,0,0),(3722,'2015-03-14 14:56:58','2015-03-14 14:56:58',1,30022505,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(3723,'2015-03-14 14:56:58','2015-03-14 14:56:58',1,30002399,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(3724,'2015-03-14 14:56:58','2015-03-14 14:56:58',1,30003492,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(3725,'2015-03-14 14:56:58','2015-03-14 14:56:58',1,30003596,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(3726,'2015-03-14 14:56:58','2015-10-11 16:46:37',1,30000063,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0),(3727,'2015-03-14 14:56:58','2015-10-11 16:46:37',1,30003830,0,0,0,0,0,0,0,0,2,3,2,1,1,2,0,0,0,0,0,0,1,5,1,0),(3728,'2015-03-14 14:56:58','2015-03-14 14:56:58',1,30000374,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(3729,'2015-03-14 14:56:58','2015-10-11 16:46:37',1,30000207,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0),(3730,'2015-03-14 14:56:58','2015-03-14 14:56:58',1,30002569,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(3731,'2015-03-14 14:56:58','2015-10-11 16:46:37',1,30002795,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0),(3732,'2015-03-14 14:56:58','2015-03-14 14:56:58',1,30003870,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(3733,'2015-03-14 14:56:58','2015-03-14 14:56:58',1,30003812,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(3734,'2015-03-14 14:56:58','2015-10-11 16:46:37',1,30003831,0,0,0,0,0,0,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,0,2,0),(3735,'2015-03-14 14:56:58','2015-10-11 16:46:37',1,30005332,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0),(3736,'2015-03-14 14:56:58','2015-10-11 16:46:37',1,30000180,6,1,1,1,0,0,1,0,0,0,0,1,0,0,0,0,0,0,0,0,0,1,0,0),(3737,'2015-03-14 14:56:58','2015-10-11 16:46:37',1,30002506,1,0,0,0,0,0,0,0,0,1,0,0,0,1,0,0,0,0,0,0,0,0,0,0),(3738,'2015-03-14 14:56:58','2015-03-14 14:56:58',1,30001358,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(3739,'2015-03-14 14:56:58','2015-10-11 16:46:37',1,30003792,4,0,2,0,1,1,0,0,2,1,0,1,4,0,0,0,3,3,1,0,0,1,2,1),(3740,'2015-03-14 14:56:58','2015-10-11 16:46:37',1,30003427,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1),(3741,'2015-03-14 14:56:58','2015-03-14 14:56:58',1,30002409,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(3742,'2015-03-14 14:56:58','2015-03-14 14:56:58',1,30001579,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(3743,'2015-03-14 14:56:58','2015-10-11 16:46:37',1,30001005,1,0,0,0,1,1,0,0,0,0,1,1,1,0,0,0,0,0,0,0,0,1,0,0),(3744,'2015-03-14 14:56:58','2015-10-11 16:46:37',1,30005274,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,0,1,0,0,0,0,1),(3745,'2015-03-14 14:56:58','2015-03-14 14:56:58',1,30001421,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(3746,'2015-03-14 14:56:58','2015-03-14 14:56:58',1,30000192,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(3747,'2015-03-14 14:56:58','2015-10-11 16:46:37',1,30000157,0,0,0,0,1,1,1,0,0,1,0,0,1,2,0,0,0,0,0,0,0,0,0,0),(3748,'2015-03-14 14:56:58','2015-03-14 14:56:58',1,30003065,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(3749,'2015-03-14 14:56:58','2015-03-14 14:56:58',1,30000171,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(3750,'2015-03-14 14:56:58','2015-03-14 14:56:58',1,30001538,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(3751,'2015-03-14 14:56:58','2015-03-14 14:56:58',1,30001586,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(3752,'2015-03-14 14:56:58','2015-10-11 16:46:37',1,30002808,0,0,0,0,1,0,1,1,1,1,1,0,2,1,0,0,0,1,2,0,1,0,0,0),(3753,'2015-03-14 14:56:58','2015-10-11 16:46:37',1,30000172,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0),(3754,'2015-03-14 14:56:58','2015-10-11 16:46:37',1,30000196,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,1),(3755,'2015-03-14 14:56:58','2015-10-11 16:46:37',1,30002723,0,1,0,0,1,1,1,0,0,5,4,2,1,0,0,0,0,0,1,1,0,0,0,1),(3756,'2015-03-14 14:56:58','2015-10-11 16:46:37',1,30002578,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0),(3757,'2015-03-14 14:56:58','2015-03-14 14:56:58',1,30001446,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(3758,'2015-03-14 14:56:58','2015-10-11 16:46:37',1,30000194,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,1,2,0,0,0),(3759,'2015-03-14 14:56:58','2015-03-14 14:56:58',1,30001476,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(3760,'2015-03-14 14:56:58','2015-03-14 14:56:58',1,30004052,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(3761,'2015-03-14 14:56:58','2015-10-11 16:46:37',1,30005297,1,1,0,0,2,1,0,0,0,1,1,0,0,1,0,0,2,0,1,0,0,0,1,0),(3762,'2015-03-14 14:56:58','2015-10-11 16:46:37',1,30003833,0,0,8,0,16,8,2,6,1,0,14,10,0,0,0,0,0,0,0,1,0,0,0,1),(3763,'2015-03-14 14:56:58','2015-03-14 14:56:58',1,30001370,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(3764,'2015-03-14 14:56:58','2015-10-11 16:46:37',1,30005203,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0),(3765,'2015-03-14 14:56:58','2015-10-11 16:46:37',1,30004969,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,0,1,0,0,0,1,0),(3766,'2015-03-14 14:56:58','2015-03-14 14:56:58',1,30000135,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(3767,'2015-03-14 14:56:58','2015-03-14 14:56:58',1,30000335,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(3768,'2015-03-14 14:56:58','2015-03-14 14:56:58',1,30001819,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(3769,'2015-03-14 14:56:58','2015-03-14 14:56:58',1,30004581,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(3770,'2015-03-14 14:56:58','2015-10-11 16:46:37',1,30002936,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(3771,'2015-03-14 14:56:58','2015-03-14 14:56:58',1,30004521,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(3772,'2015-03-14 14:56:58','2015-10-11 16:46:37',1,30000735,0,0,0,1,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(3773,'2015-03-14 14:56:58','2015-10-11 16:46:37',1,30004413,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(3774,'2015-03-14 14:56:58','2015-10-11 16:46:37',1,30003722,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,0,0,0,0,0),(3775,'2015-03-14 14:56:58','2015-03-14 14:56:58',1,30000885,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(3776,'2015-03-14 14:56:58','2015-10-11 16:46:37',1,30004958,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0),(3777,'2015-03-14 14:56:58','2015-10-11 16:46:37',1,30002961,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0),(3778,'2015-03-14 14:56:58','2015-10-11 16:46:37',1,30003088,0,1,0,0,0,0,1,1,0,0,1,0,0,0,2,2,0,0,0,0,0,0,0,1),(3779,'2015-03-14 14:56:58','2015-10-11 16:46:37',1,30003254,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0),(3780,'2015-03-14 14:56:58','2015-03-14 14:56:58',1,30001282,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(3781,'2015-03-14 14:56:58','2015-10-11 16:46:37',1,30002030,0,0,6,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(3782,'2015-03-14 14:56:58','2015-10-11 16:46:37',1,30003680,0,0,0,1,0,0,0,0,2,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0),(3783,'2015-03-14 14:56:58','2015-03-14 14:56:58',1,30003137,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(3784,'2015-03-14 14:56:58','2015-03-14 14:56:58',1,30002482,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(3785,'2015-03-14 14:56:58','2015-03-14 14:56:58',1,30001823,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(3786,'2015-03-14 14:56:58','2015-03-14 14:56:58',1,30002467,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(3787,'2015-03-14 14:56:58','2015-10-11 16:46:37',1,30001268,2,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,0,0,0,0,0,1,1),(3788,'2015-03-14 14:56:58','2015-03-14 14:56:58',1,30001293,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(3789,'2015-03-14 14:56:58','2015-10-11 16:46:37',1,30004187,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(3790,'2015-03-14 14:56:58','2015-03-14 14:56:58',1,30000365,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(3791,'2015-03-14 14:56:58','2015-10-11 16:46:37',1,30000661,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,0,0,0,0,0,0,0,0,0),(3792,'2015-03-14 14:56:58','2015-03-14 14:56:58',1,30001547,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(3793,'2015-03-14 14:56:58','2015-03-14 14:56:58',1,30004170,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(3794,'2015-03-14 14:56:58','2015-03-14 14:56:58',1,30004497,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(3795,'2015-03-14 14:56:58','2015-03-14 14:56:58',1,30001795,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(3796,'2015-03-14 14:56:58','2015-03-14 14:56:58',1,30003674,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(3797,'2015-03-14 14:56:58','2015-10-11 16:46:37',1,30001329,0,0,0,0,2,2,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0),(3798,'2015-03-14 14:56:58','2015-10-11 16:46:37',1,30003978,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(3799,'2015-03-14 14:56:58','2015-10-11 16:46:37',1,30003248,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0),(3800,'2015-03-14 14:56:58','2015-03-14 14:56:58',1,30000949,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(3801,'2015-03-14 14:56:58','2015-10-11 16:46:37',1,30000250,0,0,1,0,0,0,0,0,0,6,1,0,1,1,1,3,2,0,0,2,0,1,1,0),(3802,'2015-03-14 14:56:58','2015-03-14 14:56:58',1,30001604,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(3803,'2015-03-14 14:56:58','2015-03-14 14:56:58',1,30001125,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(3804,'2015-03-14 14:56:58','2015-10-11 16:46:37',1,30003971,0,0,1,0,0,0,1,1,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(3805,'2015-03-14 14:56:58','2015-03-14 14:56:58',1,30004624,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(3806,'2015-03-14 14:56:58','2015-03-14 14:56:58',1,30004076,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(3807,'2015-03-14 14:56:58','2015-03-14 14:56:58',1,30000411,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(3808,'2015-03-14 14:56:58','2015-10-11 16:46:37',1,30001568,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0),(3809,'2015-03-14 14:56:58','2015-03-14 14:56:58',1,30000638,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(3810,'2015-03-14 14:56:58','2015-03-14 14:56:58',1,30000450,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(3811,'2015-03-14 14:56:58','2015-03-14 14:56:58',1,30000977,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(3812,'2015-03-14 14:56:58','2015-03-14 14:56:58',1,30004362,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(3813,'2015-03-14 14:56:58','2015-03-14 14:56:58',1,30004471,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(3814,'2015-03-14 14:56:58','2015-03-14 14:56:58',1,30003163,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(3815,'2015-03-14 14:56:58','2015-03-14 14:56:58',1,30005185,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(3816,'2015-03-14 14:56:58','2015-10-11 16:46:37',1,30004961,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(3817,'2015-03-14 14:56:58','2015-10-11 16:46:37',1,30000198,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0),(3818,'2015-03-14 14:56:58','2015-10-11 16:46:37',1,30002775,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(3819,'2015-03-14 14:56:58','2015-03-14 14:56:58',1,30004253,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(3820,'2015-03-14 14:56:58','2015-10-11 16:46:37',1,30003804,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0),(3821,'2015-03-14 14:56:58','2015-10-11 16:46:37',1,30005198,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,1),(3822,'2015-03-14 14:56:58','2015-10-11 16:46:37',1,30001390,0,1,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0),(3823,'2015-03-14 14:56:58','2015-10-11 16:46:37',1,30003878,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1),(3824,'2015-03-14 14:56:58','2015-03-14 14:56:58',1,30004992,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(3825,'2015-03-14 14:56:58','2015-03-14 14:56:58',1,30003008,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(3826,'2015-03-14 14:56:58','2015-10-11 16:46:37',1,30005232,0,0,0,0,0,0,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(3827,'2015-03-14 14:56:58','2015-10-11 16:46:37',1,30005073,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,1,0,0,0,0,0,0),(3828,'2015-03-14 14:56:58','2015-03-14 14:56:58',1,30002676,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(3829,'2015-03-14 14:56:58','2015-03-14 14:56:58',1,30004255,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(3830,'2015-03-14 14:56:58','2015-10-11 16:46:37',1,30003909,0,1,0,0,0,0,1,0,0,0,1,0,1,0,0,0,0,0,1,0,0,0,0,0),(3831,'2015-03-14 14:56:58','2015-10-11 16:46:37',1,30005280,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1),(3832,'2015-03-14 14:56:58','2015-10-11 16:46:37',1,30004998,0,0,2,1,1,0,0,0,0,0,4,3,0,0,1,3,4,1,1,1,0,0,0,0),(3833,'2015-03-14 14:56:58','2015-10-11 16:46:37',1,30021672,0,0,0,0,0,0,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(3834,'2015-03-14 14:56:58','2015-03-14 14:56:58',1,30005231,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(3835,'2015-03-14 14:56:58','2015-10-11 16:46:37',1,30001402,0,0,2,0,0,0,1,0,0,0,0,1,0,0,1,0,0,0,0,0,0,0,1,1),(3836,'2015-03-14 14:56:58','2015-10-11 16:46:37',1,30002544,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(3837,'2015-03-14 14:56:58','2015-03-14 14:56:58',1,30002223,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(3838,'2015-03-14 14:56:58','2015-10-11 16:46:37',1,30045320,0,1,5,1,0,0,1,1,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,1),(3839,'2015-03-14 14:56:58','2015-10-11 16:46:37',1,30001718,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0),(3840,'2015-03-14 14:56:58','2015-03-14 14:56:58',1,30004657,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(3841,'2015-03-14 14:56:58','2015-03-14 14:56:58',1,30000873,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(3842,'2015-03-14 14:56:58','2015-03-14 14:56:58',1,30001483,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(3843,'2015-03-14 14:56:58','2015-10-11 16:46:37',1,30003286,0,0,0,1,1,1,0,0,0,18,1,0,6,0,0,0,1,0,1,0,0,0,2,1),(3844,'2015-03-14 14:56:58','2015-03-14 14:56:58',1,30004733,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(3845,'2015-03-14 14:56:58','2015-10-11 16:46:37',1,30004825,0,0,0,0,0,0,0,7,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(3846,'2015-03-14 14:56:58','2015-03-14 14:56:58',1,30003159,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(3847,'2015-03-14 14:56:58','2015-03-14 14:56:58',1,30005118,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(3848,'2015-03-14 14:56:58','2015-03-14 14:56:58',1,30000379,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(3849,'2015-03-14 14:56:58','2015-03-14 14:56:58',1,30003516,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(3850,'2015-03-14 14:56:58','2015-03-14 14:56:58',1,30004829,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(3851,'2015-03-14 14:56:58','2015-10-11 16:46:37',1,30003806,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0),(3852,'2015-03-14 14:56:58','2015-10-11 16:46:37',1,30002211,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0),(3853,'2015-03-14 14:56:58','2015-03-14 14:56:58',1,30004906,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(3854,'2015-03-14 14:56:58','2015-03-14 14:56:58',1,30004978,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(3855,'2015-03-14 14:56:58','2015-03-14 14:56:58',1,30004262,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(3856,'2015-03-14 14:56:58','2015-03-14 14:56:58',1,30003488,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(3857,'2015-03-14 14:56:58','2015-03-14 14:56:58',1,30001666,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(3858,'2015-03-14 14:56:58','2015-03-14 14:56:58',1,30005061,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(3859,'2015-03-14 14:56:58','2015-03-14 14:56:58',1,30005013,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(3860,'2015-03-14 14:56:58','2015-03-14 14:56:58',1,30001693,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(3861,'2015-03-14 14:56:58','2015-10-11 16:46:37',1,30000144,5,1,0,1,2,2,1,0,0,0,1,1,1,1,1,2,2,0,0,0,0,0,0,1),(3862,'2015-03-14 14:56:58','2015-10-11 16:46:37',1,30003573,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(3863,'2015-03-14 14:56:58','2015-03-14 14:56:58',1,30005241,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(3864,'2015-03-14 14:56:58','2015-03-14 14:56:58',1,30002632,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(3865,'2015-03-14 14:56:58','2015-03-14 14:56:58',1,30004114,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(3866,'2015-03-14 14:56:58','2015-10-11 16:46:37',1,30003277,0,4,0,0,2,3,0,0,0,0,2,2,0,7,2,1,0,5,6,4,15,4,0,1),(3867,'2015-03-14 14:56:58','2015-03-14 14:56:58',1,30004782,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(3868,'2015-03-14 14:56:58','2015-10-11 16:46:37',1,30001324,2,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0),(3869,'2015-03-14 14:56:58','2015-10-11 16:46:37',1,30003295,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,0,0,0),(3870,'2015-03-14 14:56:58','2015-03-14 14:56:58',1,30002009,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(3871,'2015-03-14 14:56:58','2015-03-14 14:56:58',1,30005178,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(3872,'2015-03-14 14:56:58','2015-03-14 14:56:58',1,30002145,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(3873,'2015-03-14 14:56:58','2015-03-14 14:56:58',1,30001707,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(3874,'2015-03-14 14:56:58','2015-10-11 16:46:37',1,30003735,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,1,0,0,0,0,0,0),(3875,'2015-03-14 14:56:58','2015-10-11 16:46:37',1,30001403,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,0,1),(3876,'2015-03-14 14:56:58','2015-10-11 16:46:37',1,30001391,0,0,0,0,0,0,0,1,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0),(3877,'2015-03-14 14:56:58','2015-03-14 14:56:58',1,30001669,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(3878,'2015-03-14 14:56:58','2015-03-14 14:56:58',1,30001652,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(3879,'2015-03-14 14:56:58','2015-03-14 14:56:58',1,30005081,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(3880,'2015-03-14 14:56:58','2015-03-14 14:56:58',1,30005277,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(3881,'2015-03-14 14:56:58','2015-03-14 14:56:58',1,30000066,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(3882,'2015-03-14 14:56:58','2015-03-14 14:56:58',1,30003167,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(3883,'2015-03-14 14:56:58','2015-10-11 16:46:37',1,30004313,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(3884,'2015-03-14 14:56:58','2015-03-14 14:56:58',1,30000654,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(3885,'2015-03-14 14:56:58','2015-03-14 14:56:58',1,30000243,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(3886,'2015-03-14 14:56:58','2015-10-11 16:46:37',1,30004411,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(3887,'2015-03-14 14:56:58','2015-03-14 14:56:58',1,30003262,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(3888,'2015-03-14 14:56:58','2015-10-11 16:46:37',1,30000866,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,0,0,0,0,0,0,0),(3889,'2015-03-14 14:56:58','2015-03-14 14:56:58',1,30002870,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(3890,'2015-03-14 14:56:58','2015-10-11 16:46:37',1,30004559,0,0,0,0,0,0,0,0,0,0,0,0,0,22,0,0,0,0,0,0,2,0,0,0),(3891,'2015-03-14 14:56:58','2015-10-11 16:46:37',1,30003613,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(3892,'2015-03-14 14:56:58','2015-03-14 14:56:58',1,30004431,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(3893,'2015-03-14 14:56:58','2015-10-11 16:46:37',1,30001012,0,1,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0),(3894,'2015-03-14 14:56:58','2015-03-14 14:56:58',1,30003604,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(3895,'2015-03-14 14:56:58','2015-10-11 16:46:37',1,30000019,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0),(3896,'2015-03-14 14:56:58','2015-10-11 16:46:37',1,30000153,0,0,1,1,3,1,0,0,0,0,0,0,1,0,0,0,0,0,0,1,1,0,0,0),(3897,'2015-03-14 14:56:58','2015-10-11 16:46:37',1,30003271,0,0,0,1,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0),(3898,'2015-03-14 14:56:58','2015-03-14 14:56:58',1,30000380,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(3899,'2015-03-14 14:56:58','2015-03-14 14:56:58',1,30005048,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(3900,'2015-03-14 14:56:58','2015-03-14 14:56:58',1,30003434,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(3901,'2015-03-14 14:56:58','2015-03-14 14:56:58',1,30001147,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(3902,'2015-03-14 14:56:58','2015-03-14 14:56:58',1,30002273,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(3903,'2015-03-14 14:56:58','2015-03-14 14:56:58',1,30003581,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(3904,'2015-03-14 14:56:58','2015-03-14 14:56:58',1,30003940,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(3905,'2015-03-14 14:56:58','2015-03-14 14:56:58',1,30002714,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(3906,'2015-03-14 14:56:58','2015-03-14 14:56:58',1,30002106,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(3907,'2015-03-14 14:56:58','2015-03-14 14:56:58',1,30004065,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(3908,'2015-03-14 14:56:58','2015-03-14 14:56:58',1,30001470,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(3909,'2015-03-14 14:56:58','2015-10-11 16:46:37',1,30000438,0,0,0,0,0,0,0,6,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(3910,'2015-03-14 14:56:58','2015-03-14 14:56:58',1,30001628,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(3911,'2015-03-14 14:56:58','2015-10-11 16:46:37',1,30004711,0,0,1,0,0,0,1,1,0,5,0,0,4,2,0,1,1,0,1,0,1,4,7,14),(3912,'2015-03-14 14:56:58','2015-10-11 16:46:37',1,30045333,0,0,0,0,0,0,1,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(3913,'2015-03-14 14:56:58','2015-03-14 14:56:58',1,30005284,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(3914,'2015-03-14 14:56:58','2015-03-14 14:56:58',1,30004770,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(3915,'2015-03-14 14:56:58','2015-03-14 14:56:58',1,30000027,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(3916,'2015-03-14 14:56:58','2015-03-14 14:56:58',1,30004293,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(3917,'2015-03-14 14:56:58','2015-10-11 16:46:37',1,30001863,1,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,1),(3918,'2015-03-14 14:56:58','2015-03-14 14:56:58',1,30000738,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(3919,'2015-03-14 14:56:58','2015-03-14 14:56:58',1,30005162,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(3920,'2015-03-14 14:56:58','2015-03-14 14:56:58',1,30000421,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(3921,'2015-03-14 14:56:58','2015-03-14 14:56:58',1,30000727,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(3922,'2015-03-14 14:56:58','2015-03-14 14:56:58',1,30000990,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(3923,'2015-03-14 14:56:58','2015-03-14 14:56:58',1,30002733,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(3924,'2015-03-14 14:56:58','2015-10-11 16:46:37',1,30004754,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,2,3,0,2),(3925,'2015-03-14 14:56:58','2015-03-14 14:56:58',1,30002662,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(3926,'2015-03-14 14:56:58','2015-03-14 14:56:58',1,30000161,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(3927,'2015-03-14 14:56:58','2015-03-14 14:56:58',1,30004395,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(3928,'2015-03-14 14:56:58','2015-10-11 16:46:37',1,30000978,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0),(3929,'2015-03-14 14:56:58','2015-10-11 16:46:37',1,30005147,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(3930,'2015-03-14 14:56:58','2015-10-11 16:46:37',1,30003283,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(3931,'2015-03-14 14:56:58','2015-03-14 14:56:58',1,30001106,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(3932,'2015-03-14 14:56:58','2015-10-11 16:46:37',1,30002370,0,0,1,0,1,0,1,0,0,0,3,2,0,0,3,0,4,0,0,0,0,0,0,0),(3933,'2015-03-14 14:56:58','2015-03-14 14:56:58',1,30000316,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(3934,'2015-03-14 14:56:58','2015-10-11 16:46:37',1,30002290,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(3935,'2015-03-14 14:56:58','2015-10-11 16:46:37',1,30004647,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(3936,'2015-03-14 14:56:58','2015-10-11 16:46:37',1,30045353,1,1,0,0,4,3,1,2,1,0,5,3,4,0,1,1,1,0,2,0,4,1,1,2),(3937,'2015-03-14 14:56:58','2015-03-14 14:56:58',1,30002490,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(3938,'2015-03-14 14:56:58','2015-10-11 16:46:37',1,30002615,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0),(3939,'2015-03-14 14:56:58','2015-03-14 14:56:58',1,30001310,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(3940,'2015-03-14 14:56:58','2015-03-14 14:56:58',1,30001449,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(3941,'2015-03-14 14:56:58','2015-03-14 14:56:58',1,30004787,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(3942,'2015-03-14 14:56:58','2015-10-11 16:46:37',1,30000797,2,0,1,0,0,0,0,3,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(3943,'2015-03-14 14:56:58','2015-03-14 14:56:58',1,30004389,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(3944,'2015-03-14 14:56:58','2015-10-11 16:46:37',1,30002001,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0),(3945,'2015-03-14 14:56:58','2015-03-14 14:56:58',1,30001326,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(3946,'2015-03-14 14:56:58','2015-10-11 16:46:37',1,30000872,1,0,0,0,0,0,1,0,0,1,0,0,0,0,1,0,0,0,0,0,0,0,0,0),(3947,'2015-03-14 14:56:58','2015-03-14 14:56:58',1,30000274,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(3948,'2015-03-14 14:56:58','2015-03-14 14:56:58',1,30004321,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(3949,'2015-03-14 14:56:58','2015-03-14 14:56:58',1,30002844,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(3950,'2015-03-14 14:56:58','2015-10-11 16:46:37',1,30000586,2,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,4,0,0,0,1,0,0),(3951,'2015-03-14 14:56:58','2015-03-14 14:56:58',1,30004737,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(3952,'2015-03-14 14:56:58','2015-10-11 16:46:37',1,30002132,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0),(3953,'2015-03-14 14:56:58','2015-03-14 14:56:58',1,30003222,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(3954,'2015-03-14 14:56:58','2015-03-14 14:56:58',1,30004749,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(3955,'2015-03-14 14:56:58','2015-10-11 16:46:37',1,30000682,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(3956,'2015-03-14 14:56:58','2015-03-14 14:56:58',1,30000432,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(3957,'2015-03-14 14:56:58','2015-10-11 16:46:37',1,30000256,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,1,0,0,0,0,0,0,0),(3958,'2015-03-14 14:56:58','2015-10-11 16:46:37',1,30000717,0,0,1,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,0,1,0),(3959,'2015-03-14 14:56:58','2015-03-14 14:56:58',1,30004337,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(3960,'2015-03-14 14:56:58','2015-10-11 16:46:37',1,30001838,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0),(3961,'2015-03-14 14:56:58','2015-03-14 14:56:58',1,30000235,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(3962,'2015-03-14 14:56:58','2015-03-14 14:56:58',1,30001196,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(3963,'2015-03-14 14:56:58','2015-03-14 14:56:58',1,30002471,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(3964,'2015-03-14 14:56:58','2015-10-11 16:46:37',1,30001248,0,0,0,0,0,0,0,0,0,0,5,5,1,0,0,0,0,0,0,1,0,0,1,0),(3965,'2015-03-14 14:56:58','2015-03-14 14:56:58',1,30004054,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(3966,'2015-03-14 14:56:58','2015-03-14 14:56:58',1,30000618,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(3967,'2015-03-14 14:56:58','2015-10-11 16:46:37',1,30001562,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0),(3968,'2015-03-14 14:56:58','2015-03-14 14:56:58',1,30004229,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(3969,'2015-03-14 14:56:58','2015-03-14 14:56:58',1,30004571,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(3970,'2015-03-14 14:56:58','2015-10-11 16:46:37',1,30004845,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(3971,'2015-03-14 14:56:58','2015-03-14 14:56:58',1,30000507,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(3972,'2015-03-14 14:56:58','2015-10-11 16:46:37',1,30003112,0,0,0,1,0,0,0,0,0,2,0,0,0,0,0,0,0,2,0,0,1,0,0,0),(3973,'2015-03-14 14:56:58','2015-03-14 14:56:58',1,30003146,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(3974,'2015-03-14 14:56:58','2015-03-14 14:56:58',1,30003669,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(3975,'2015-03-14 14:56:58','2015-03-14 14:56:58',1,30003975,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(3976,'2015-03-14 14:56:58','2015-03-14 14:56:58',1,30000946,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(3977,'2015-03-14 14:56:58','2015-10-11 16:46:37',1,30000324,0,0,0,0,0,0,0,0,0,0,0,3,0,0,0,0,0,0,1,0,0,0,0,0),(3978,'2015-03-14 14:56:58','2015-10-11 16:46:37',1,30000715,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0),(3979,'2015-03-14 14:56:58','2015-03-14 14:56:58',1,30004846,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(3980,'2015-03-14 14:56:58','2015-03-14 14:56:58',1,30001323,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(3981,'2015-03-14 14:56:58','2015-10-11 16:46:37',1,30000785,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(3982,'2015-03-14 14:56:58','2015-10-11 16:46:37',1,30001763,0,0,0,1,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(3983,'2015-03-14 14:56:58','2015-03-14 14:56:58',1,30000413,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(3984,'2015-03-14 14:56:58','2015-03-14 14:56:58',1,30004066,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(3985,'2015-03-14 14:56:58','2015-03-14 14:56:58',1,30003183,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(3986,'2015-03-14 14:56:58','2015-03-14 14:56:58',1,30004408,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(3987,'2015-03-14 14:56:58','2015-10-11 16:46:37',1,30003714,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,1,0,0,0),(3988,'2015-03-14 14:56:58','2015-03-14 14:56:58',1,30001165,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(3989,'2015-03-14 14:56:58','2015-10-11 16:46:37',1,30002363,0,0,0,0,5,5,0,0,0,0,1,1,0,0,0,0,0,1,0,0,0,0,0,0),(3990,'2015-03-14 14:56:58','2015-03-14 14:56:58',1,30004744,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(3991,'2015-03-14 14:56:58','2015-03-14 14:56:58',1,30004855,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(3992,'2015-03-14 14:56:58','2015-03-14 14:56:58',1,30001080,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(3993,'2015-03-14 14:56:58','2015-03-14 14:56:58',1,30001935,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(3994,'2015-03-14 14:56:58','2015-10-11 16:46:37',1,30004343,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,1),(3995,'2015-03-14 14:56:58','2015-03-14 14:56:58',1,30002138,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(3996,'2015-03-14 14:56:58','2015-03-14 14:56:58',1,30003221,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(3997,'2015-03-14 14:56:58','2015-10-11 16:46:37',1,30001246,0,0,0,0,0,0,0,0,0,0,1,0,0,0,24,0,0,0,0,0,0,0,0,0),(3998,'2015-03-14 14:56:58','2015-10-11 16:46:37',1,30001033,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(3999,'2015-03-14 14:56:58','2015-03-14 14:56:58',1,30000899,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(4000,'2015-03-14 14:56:58','2015-10-11 16:46:37',1,30003164,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0),(4001,'2015-03-14 14:56:58','2015-03-14 14:56:58',1,30003181,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(4002,'2015-03-14 14:56:58','2015-03-14 14:56:58',1,30001766,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(4003,'2015-03-14 14:56:58','2015-03-14 14:56:58',1,30001564,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(4004,'2015-03-14 14:56:58','2015-03-14 14:56:58',1,30001772,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(4005,'2015-03-14 14:56:58','2015-03-14 14:56:58',1,30001749,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(4006,'2015-03-14 14:56:58','2015-10-11 16:46:37',1,30001305,0,0,0,0,0,0,0,0,0,1,0,0,0,1,0,0,0,0,0,0,0,0,0,0),(4007,'2015-03-14 14:56:58','2015-03-14 14:56:58',1,30002364,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(4008,'2015-03-14 14:56:58','2015-10-11 16:46:37',1,30005144,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0),(4009,'2015-03-14 14:56:58','2015-10-11 16:46:37',1,30002104,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0),(4010,'2015-03-14 14:56:58','2015-03-14 14:56:58',1,30004837,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(4011,'2015-03-14 14:56:58','2015-10-11 16:46:37',1,30000505,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0),(4012,'2015-03-14 14:56:58','2015-03-14 14:56:58',1,30001467,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(4013,'2015-03-14 14:56:58','2015-03-14 14:56:58',1,30004448,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(4014,'2015-03-14 14:56:58','2015-03-14 14:56:58',1,30002307,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(4015,'2015-03-14 14:56:58','2015-03-14 14:56:58',1,30005172,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(4016,'2015-03-14 14:56:58','2015-03-14 14:56:58',1,30002431,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(4017,'2015-03-14 14:56:58','2015-03-14 14:56:58',1,30000475,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(4018,'2015-03-14 14:56:58','2015-03-14 14:56:58',1,30004857,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(4019,'2015-03-14 14:56:58','2015-03-14 14:56:58',1,30000941,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(4020,'2015-03-14 14:56:58','2015-10-11 16:46:37',1,30001903,0,0,0,1,0,0,0,0,0,0,0,0,0,0,1,1,1,0,0,0,0,0,1,0),(4021,'2015-03-14 14:56:58','2015-03-14 14:56:58',1,30002186,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(4022,'2015-03-14 14:56:58','2015-03-14 14:56:58',1,30002288,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(4023,'2015-03-14 14:56:58','2015-03-14 14:56:58',1,30001473,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(4024,'2015-03-14 14:56:58','2015-03-14 14:56:58',1,30003739,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(4025,'2015-03-14 14:56:58','2015-10-11 16:46:37',1,30001783,0,0,0,0,0,0,0,0,0,0,1,1,0,1,2,2,0,0,0,0,0,0,0,0),(4026,'2015-03-14 14:56:58','2015-03-14 14:56:58',1,30002479,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(4027,'2015-03-14 14:56:58','2015-10-11 16:46:37',1,30002893,0,0,0,0,0,0,0,0,0,0,2,1,2,1,3,2,1,0,0,0,0,0,0,0),(4028,'2015-03-14 14:56:58','2015-10-11 16:46:37',1,30000722,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,1),(4029,'2015-03-14 14:56:58','2015-03-14 14:56:58',1,30000938,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(4030,'2015-03-14 14:56:58','2015-10-11 16:46:37',1,30001565,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0),(4031,'2015-03-14 14:56:58','2015-10-11 16:46:37',1,30003719,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0),(4032,'2015-03-14 14:56:58','2015-03-14 14:56:58',1,30004815,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(4033,'2015-03-14 14:56:58','2015-03-14 14:56:58',1,30000481,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(4034,'2015-03-14 14:56:58','2015-10-11 16:46:37',1,30001596,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(4035,'2015-03-14 14:56:58','2015-03-14 14:56:58',1,30003174,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(4036,'2015-03-14 14:56:58','2015-10-11 16:46:37',1,30001137,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(4037,'2015-03-14 14:56:58','2015-03-14 14:56:58',1,30004909,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(4038,'2015-03-14 14:56:58','2015-10-11 16:46:37',1,30001163,0,0,0,0,0,0,0,0,0,1,0,1,0,0,0,0,0,0,0,0,0,0,0,0),(4039,'2015-03-14 14:56:58','2015-03-14 14:56:58',1,30004198,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(4040,'2015-03-14 14:56:58','2015-10-11 16:46:37',1,30000793,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,1,1,0),(4041,'2015-03-14 14:56:58','2015-03-14 14:56:58',1,30001617,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(4042,'2015-03-14 14:56:58','2015-10-11 16:46:37',1,30003037,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,2,0,0,0,1),(4043,'2015-03-14 14:56:58','2015-03-14 14:56:58',1,30004610,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(4044,'2015-03-14 14:56:58','2015-03-14 14:56:58',1,30003292,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(4045,'2015-03-14 14:56:58','2015-03-14 14:56:58',1,30002829,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(4046,'2015-03-14 14:56:58','2015-10-11 16:46:37',1,30004714,0,0,0,0,0,0,0,0,0,1,0,3,0,0,0,0,0,0,0,0,0,0,0,0),(4047,'2015-03-14 14:56:58','2015-03-14 14:56:58',1,30000526,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(4048,'2015-03-14 14:56:58','2015-10-11 16:46:37',1,30004354,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0),(4049,'2015-03-14 14:56:58','2015-03-14 14:56:58',1,30004002,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(4050,'2015-03-14 14:56:58','2015-10-11 16:46:37',1,30004041,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0),(4051,'2015-03-14 14:56:58','2015-10-11 16:46:37',1,30004027,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,0,0,0),(4052,'2015-03-14 14:56:58','2015-03-14 14:56:58',1,30003244,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(4053,'2015-03-14 14:56:58','2015-03-14 14:56:58',1,30004752,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(4054,'2015-03-14 14:56:58','2015-03-14 14:56:58',1,30000767,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(4055,'2015-03-14 14:56:58','2015-10-11 16:46:37',1,30003266,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(4056,'2015-03-14 14:56:58','2015-10-11 16:46:37',1,30004402,0,0,0,0,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(4057,'2015-03-14 14:56:58','2015-03-14 14:56:58',1,30003236,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(4058,'2015-03-14 14:56:58','2015-10-11 16:46:37',1,30001107,0,0,1,0,0,0,0,0,0,0,0,0,2,0,0,0,0,0,0,0,0,0,0,0),(4059,'2015-03-14 14:56:58','2015-03-14 14:56:58',1,30002330,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(4060,'2015-03-14 14:56:58','2015-03-14 14:56:58',1,30002837,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(4061,'2015-03-14 14:56:58','2015-03-14 14:56:58',1,30002002,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(4062,'2015-03-14 14:56:58','2015-10-11 16:46:37',1,30000658,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,0,0,0,0,0,0,0,0,0),(4063,'2015-03-14 14:56:58','2015-03-14 14:56:58',1,30002324,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(4064,'2015-03-14 14:56:58','2015-10-11 16:46:37',1,30005099,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0),(4065,'2015-03-14 14:56:58','2015-03-14 14:56:58',1,30003151,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(4066,'2015-03-14 14:56:58','2015-10-11 16:46:37',1,30005112,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(4067,'2015-03-14 14:56:58','2015-10-11 16:46:37',1,30004648,0,0,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(4068,'2015-03-14 14:56:58','2015-03-14 14:56:58',1,30000950,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(4069,'2015-03-14 14:56:58','2015-03-14 14:56:58',1,30003127,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(4070,'2015-03-14 14:56:58','2015-03-14 14:56:58',1,30001491,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(4071,'2015-03-14 14:56:58','2015-10-11 16:46:37',1,30001189,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0),(4072,'2015-03-14 14:56:58','2015-10-11 16:46:37',1,30001265,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0),(4073,'2015-03-14 14:56:58','2015-03-14 14:56:58',1,30002013,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(4074,'2015-03-14 14:56:58','2015-03-14 14:56:58',1,30004522,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(4075,'2015-03-14 14:56:58','2015-10-11 16:46:37',1,30002182,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,0,0,0),(4076,'2015-03-14 14:56:58','2015-03-14 14:56:58',1,30000291,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(4077,'2015-03-14 14:56:58','2015-03-14 14:56:58',1,30001577,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(4078,'2015-03-14 14:56:58','2015-03-14 14:56:58',1,30001102,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(4079,'2015-03-14 14:56:58','2015-03-14 14:56:58',1,30000320,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(4080,'2015-03-14 14:56:58','2015-03-14 14:56:58',1,30004853,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(4081,'2015-03-14 14:56:58','2015-10-11 16:46:37',1,30003631,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0),(4082,'2015-03-14 14:56:58','2015-10-11 16:46:37',1,30003218,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(4083,'2015-03-14 14:56:58','2015-03-14 14:56:58',1,30002135,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(4084,'2015-03-14 14:56:58','2015-10-11 16:46:37',1,30000563,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(4085,'2015-03-14 14:56:58','2015-10-11 16:46:37',1,30004871,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,4,1,0,0,0),(4086,'2015-03-14 14:56:58','2015-03-14 14:56:58',1,30001450,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(4087,'2015-03-14 14:56:58','2015-03-14 14:56:58',1,30002874,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(4088,'2015-03-14 14:56:58','2015-03-14 14:56:58',1,30004891,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(4089,'2015-03-14 14:56:58','2015-10-11 16:46:37',1,30003769,0,0,0,0,0,0,0,0,0,0,2,0,0,2,1,1,0,0,0,0,0,0,0,0),(4090,'2015-03-14 14:56:58','2015-03-14 14:56:58',1,30001806,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(4091,'2015-03-14 14:56:58','2015-03-14 14:56:58',1,30004566,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(4092,'2015-03-14 14:56:58','2015-03-14 14:56:58',1,30004473,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(4093,'2015-03-14 14:56:58','2015-03-14 14:56:58',1,30000589,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(4094,'2015-03-14 14:56:58','2015-03-14 14:56:58',1,30004339,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(4095,'2015-03-14 14:56:58','2015-10-11 16:46:37',1,30004727,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(4096,'2015-03-14 14:56:58','2015-10-11 16:46:37',1,30002010,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0),(4097,'2015-03-14 14:56:58','2015-03-14 14:56:58',1,30001619,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(4098,'2015-03-14 14:56:58','2015-03-14 14:56:58',1,30001859,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(4099,'2015-03-14 14:56:58','2015-03-14 14:56:58',1,30002894,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(4100,'2015-03-14 14:56:58','2015-03-14 14:56:58',1,30003209,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(4101,'2015-03-14 14:56:58','2015-03-14 14:56:58',1,30000768,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(4102,'2015-03-14 14:56:58','2015-03-14 14:56:58',1,30004485,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(4103,'2015-03-14 14:56:58','2015-10-11 16:46:37',1,30001018,0,2,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0),(4104,'2015-03-14 14:56:58','2015-10-11 16:46:37',1,30002958,0,0,0,0,0,0,1,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0),(4105,'2015-03-14 14:56:58','2015-03-14 14:56:58',1,30000033,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(4106,'2015-03-14 14:56:58','2015-10-11 16:46:37',1,30002726,0,0,0,0,0,1,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(4107,'2015-03-14 14:56:58','2015-03-14 14:56:58',1,30003941,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(4108,'2015-03-14 14:56:58','2015-03-14 14:56:58',1,30002052,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(4109,'2015-03-14 14:56:58','2015-03-14 14:56:58',1,30003914,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(4110,'2015-03-14 14:56:58','2015-10-11 16:46:37',1,30002982,4,0,1,0,1,0,0,2,0,0,0,0,0,0,1,1,0,0,0,1,1,0,0,0),(4111,'2015-03-14 14:56:58','2015-03-14 14:56:58',1,30002839,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(4112,'2015-03-14 14:56:58','2015-10-11 16:46:37',1,30045315,0,1,0,1,0,0,1,0,1,0,0,0,0,0,0,0,0,0,1,0,1,1,0,0),(4113,'2015-03-14 14:56:58','2015-10-11 16:46:37',1,30002772,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0),(4114,'2015-03-14 14:56:58','2015-10-11 16:46:37',1,30045349,1,0,0,1,2,1,3,1,0,1,1,1,0,0,0,0,1,0,0,2,0,1,0,1),(4115,'2015-03-14 14:56:58','2015-03-14 14:56:58',1,30002239,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(4116,'2015-03-14 14:56:58','2015-10-11 16:46:37',1,30002718,1,0,8,5,15,5,0,6,5,18,19,18,0,15,25,5,7,4,0,8,21,26,17,3),(4117,'2015-03-14 14:56:58','2015-03-14 14:56:58',1,30001727,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(4118,'2015-03-14 14:56:58','2015-10-11 16:46:37',1,30005319,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,0,0,0,0,0,0,0),(4119,'2015-03-14 14:56:58','2015-03-14 14:56:58',1,30005085,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(4120,'2015-03-14 14:56:58','2015-03-14 14:56:58',1,30005080,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(4121,'2015-03-14 14:56:58','2015-10-11 16:46:37',1,30003530,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0),(4122,'2015-03-14 14:56:58','2015-03-14 14:56:58',1,30003495,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(4123,'2015-03-14 14:56:58','2015-03-14 14:56:58',1,30002212,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(4124,'2015-03-14 14:56:58','2015-10-11 16:46:37',1,30004269,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(4125,'2015-03-14 14:56:58','2015-03-14 14:56:58',1,30000025,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(4126,'2015-03-14 14:56:58','2015-03-14 14:56:58',1,30002227,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(4127,'2015-03-14 14:56:58','2015-10-11 16:46:37',1,30003602,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(4128,'2015-03-14 14:56:58','2015-03-14 14:56:58',1,30001417,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(4129,'2015-03-14 14:56:58','2015-03-14 14:56:58',1,30001373,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(4130,'2015-03-14 14:56:58','2015-10-11 16:46:37',1,30002697,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1),(4131,'2015-03-14 14:56:58','2015-03-14 14:56:58',1,30004116,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(4132,'2015-03-14 14:56:58','2015-10-11 16:46:37',1,30002271,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1),(4133,'2015-03-14 14:56:58','2015-03-14 14:56:58',1,30000406,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(4134,'2015-03-14 14:56:58','2015-03-14 14:56:58',1,30003104,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(4135,'2015-03-14 14:56:58','2015-10-11 16:46:37',1,30004742,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,1,0,0),(4136,'2015-03-14 14:56:58','2015-03-14 14:56:58',1,30000805,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(4137,'2015-03-14 14:56:58','2015-03-14 14:56:58',1,30002023,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(4138,'2015-03-14 14:56:58','2015-10-11 16:46:37',1,30004577,0,0,0,0,0,0,0,0,0,1,1,0,0,1,2,1,2,2,0,0,0,4,3,1),(4139,'2015-03-14 14:56:58','2015-03-14 14:56:58',1,30002140,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(4140,'2015-03-14 14:56:58','2015-10-11 16:46:37',1,30005328,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,1,1,1,0,0,2,1,0),(4141,'2015-03-14 14:56:58','2015-10-11 16:46:37',1,30000160,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,1,0,0),(4142,'2015-03-14 14:56:58','2015-10-11 16:46:37',1,30045354,1,0,2,0,0,1,1,2,3,2,0,0,1,1,2,0,0,2,3,0,2,1,2,1),(4143,'2015-03-14 14:56:58','2015-03-14 14:56:58',1,30001700,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(4144,'2015-03-14 14:56:58','2015-10-11 16:46:37',1,30003829,1,1,3,0,1,0,0,1,0,0,0,0,0,1,0,0,1,0,0,2,1,0,0,0),(4145,'2015-03-14 14:56:58','2015-10-11 16:46:37',1,30002510,2,2,1,2,3,1,3,1,1,1,0,1,1,1,4,1,4,3,3,3,19,3,3,1),(4146,'2015-03-14 14:56:58','2015-10-11 16:46:37',1,30004970,0,0,0,0,1,1,0,0,0,0,0,1,2,0,0,0,0,1,0,2,2,0,0,1),(4147,'2015-03-14 14:56:58','2015-03-14 14:56:58',1,30003564,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(4148,'2015-03-14 14:56:58','2015-03-14 14:56:58',1,30000780,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(4149,'2015-03-14 14:56:58','2015-10-11 16:46:37',1,30002056,2,0,0,0,1,1,0,0,0,0,0,0,0,5,4,0,0,0,0,0,0,0,0,0),(4150,'2015-03-14 14:56:58','2015-10-11 16:46:37',1,30003851,1,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0),(4151,'2015-03-14 14:56:58','2015-03-14 14:56:58',1,30003391,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(4152,'2015-03-14 14:56:58','2015-03-14 14:56:58',1,30003880,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(4153,'2015-03-14 14:56:58','2015-03-14 14:56:58',1,30001686,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(4154,'2015-03-14 14:56:58','2015-10-11 16:46:37',1,30002256,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(4155,'2015-03-14 14:56:58','2015-10-11 16:46:37',1,30003803,0,0,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(4156,'2015-03-14 14:56:58','2015-03-14 14:56:58',1,30001475,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(4157,'2015-03-14 14:56:58','2015-03-14 14:56:58',1,30000385,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(4158,'2015-03-14 14:56:58','2015-10-11 16:46:37',1,30003994,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(4159,'2015-03-14 14:56:58','2015-10-11 16:46:37',1,30003333,0,0,0,0,0,0,3,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(4160,'2015-03-14 14:56:58','2015-03-14 14:56:58',1,30004724,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(4161,'2015-03-14 14:56:58','2015-03-14 14:56:58',1,30003229,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(4162,'2015-03-14 14:56:58','2015-03-14 14:56:58',1,30002129,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(4163,'2015-03-14 14:56:58','2015-03-14 14:56:58',1,30002491,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(4164,'2015-03-14 14:56:58','2015-10-11 16:46:37',1,30002954,0,0,0,1,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1),(4165,'2015-03-14 14:56:58','2015-03-14 14:56:58',1,30004225,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(4166,'2015-03-14 14:56:58','2015-03-14 14:56:58',1,30004812,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(4167,'2015-03-14 14:56:58','2015-03-14 14:56:58',1,30002151,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(4168,'2015-03-14 14:56:58','2015-03-14 14:56:58',1,30004918,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(4169,'2015-03-14 14:56:58','2015-10-11 16:46:37',1,30002993,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0),(4170,'2015-03-14 14:56:58','2015-03-14 14:56:58',1,30003457,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(4171,'2015-03-14 14:56:58','2015-10-11 16:46:37',1,30003916,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0),(4172,'2015-03-14 14:56:58','2015-03-14 14:56:58',1,30002241,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(4173,'2015-03-14 14:56:58','2015-03-14 14:56:58',1,30001650,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(4174,'2015-03-14 14:56:58','2015-10-11 16:46:37',1,30004472,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,0,0,0,0,0,0,1),(4175,'2015-03-14 14:56:58','2015-03-14 14:56:58',1,30001090,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(4176,'2015-03-14 14:56:58','2015-03-14 14:56:58',1,30004953,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(4177,'2015-03-14 14:56:58','2015-10-11 16:46:37',1,30003260,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(4178,'2015-03-14 14:56:58','2015-03-14 14:56:58',1,30002380,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(4179,'2015-03-14 14:56:58','2015-03-14 14:56:58',1,30003626,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(4180,'2015-03-14 14:56:58','2015-03-14 14:56:58',1,30004015,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(4181,'2015-03-14 14:56:58','2015-03-14 14:56:58',1,30004494,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(4182,'2015-03-14 14:56:58','2015-10-11 16:46:37',1,30001902,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(4183,'2015-03-14 14:56:58','2015-03-14 14:56:58',1,30003353,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(4184,'2015-03-14 14:56:58','2015-03-14 14:56:58',1,30002443,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(4185,'2015-03-14 14:56:58','2015-03-14 14:56:58',1,30003610,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(4186,'2015-03-14 14:56:58','2015-10-11 16:46:37',1,30001028,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,1,2,0,1,1,0),(4187,'2015-03-14 14:56:58','2015-03-14 14:56:58',1,30001520,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(4188,'2015-03-14 14:56:58','2015-10-11 16:46:37',1,30001187,0,0,0,1,0,0,0,0,0,0,1,0,0,0,1,1,0,0,0,0,0,0,0,0),(4189,'2015-03-14 14:56:58','2015-10-11 16:46:37',1,30000673,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(4190,'2015-03-14 14:56:58','2015-03-14 14:56:58',1,30002322,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(4191,'2015-03-14 14:56:58','2015-10-11 16:46:37',1,30003246,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0),(4192,'2015-03-14 14:56:58','2015-10-11 16:46:37',1,30002926,0,0,0,1,0,0,0,0,0,0,0,1,0,0,1,0,0,0,0,0,0,0,0,0),(4193,'2015-03-14 14:56:58','2015-03-14 14:56:58',1,30004370,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(4194,'2015-03-14 14:56:58','2015-03-14 14:56:58',1,30045325,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(4195,'2015-03-14 14:56:58','2015-10-11 16:46:37',1,30001983,1,0,0,0,1,0,1,0,1,2,7,7,0,1,3,2,1,2,0,0,16,1,1,3),(4196,'2015-03-14 14:56:58','2015-03-14 14:56:58',1,30000815,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(4197,'2015-03-14 14:56:58','2015-03-14 14:56:58',1,30002534,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(4198,'2015-03-14 14:56:58','2015-03-14 14:56:58',1,30003395,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(4199,'2015-03-14 14:56:58','2015-10-11 16:46:37',1,30004080,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,1,0,1),(4200,'2015-03-14 14:56:58','2015-03-14 14:56:58',1,30002550,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(4201,'2015-03-14 14:56:58','2015-03-14 14:56:58',1,30003081,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(4202,'2015-03-14 14:56:58','2015-10-11 16:46:37',1,30002721,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(4203,'2015-03-14 14:56:58','2015-03-14 14:56:58',1,30002033,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(4204,'2015-03-14 14:56:58','2015-03-14 14:56:58',1,30002426,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(4205,'2015-03-14 14:56:58','2015-10-11 16:46:37',1,30002975,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1),(4206,'2015-03-14 14:56:58','2015-03-14 14:56:58',1,30001936,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(4207,'2015-03-14 14:56:58','2015-10-11 16:46:37',1,30004560,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0),(4208,'2015-03-14 14:56:58','2015-10-11 16:46:37',1,30001924,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0),(4209,'2015-03-14 14:56:58','2015-03-14 14:56:58',1,30001320,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(4210,'2015-03-14 14:56:58','2015-03-14 14:56:58',1,30000359,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(4211,'2015-03-14 14:56:58','2015-10-11 16:46:37',1,30002039,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(4212,'2015-03-14 14:56:58','2015-10-11 16:46:37',1,30000790,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0),(4213,'2015-03-14 14:56:58','2015-10-11 16:46:37',1,30001830,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(4214,'2015-03-14 14:56:58','2015-03-14 14:56:58',1,30002880,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(4215,'2015-03-14 14:56:58','2015-10-11 16:46:37',1,30001259,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,1,0,0,0),(4216,'2015-03-14 14:56:58','2015-03-14 14:56:58',1,30001931,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(4217,'2015-03-14 14:56:58','2015-03-14 14:56:58',1,30001511,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(4218,'2015-03-14 14:56:58','2015-03-14 14:56:58',1,30001139,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(4219,'2015-03-14 14:56:58','2015-10-11 16:46:37',1,30003362,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0),(4220,'2015-03-14 14:56:58','2015-10-11 16:46:37',1,30000511,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(4221,'2015-03-14 14:56:58','2015-03-14 14:56:58',1,30001773,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(4222,'2015-03-14 14:56:58','2015-03-14 14:56:58',1,30004516,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(4223,'2015-03-14 14:56:58','2015-03-14 14:56:58',1,30000377,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(4224,'2015-03-14 14:56:58','2015-10-11 16:46:37',1,30002183,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0),(4225,'2015-03-14 14:56:58','2015-03-14 14:56:58',1,30002249,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(4226,'2015-03-14 14:56:58','2015-03-14 14:56:58',1,30003845,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(4227,'2015-03-14 14:56:58','2015-03-14 14:56:58',1,30001123,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(4228,'2015-03-14 14:56:58','2015-03-14 14:56:58',1,30001724,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(4229,'2015-03-14 14:56:58','2015-10-11 16:46:37',1,30001408,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0),(4230,'2015-03-14 14:56:58','2015-03-14 14:56:58',1,30002326,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(4231,'2015-03-14 14:56:58','2015-10-11 16:46:37',1,30001900,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,0,0,0,0,0,0),(4232,'2015-03-14 14:56:58','2015-10-11 16:46:37',1,30000651,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(4233,'2015-03-14 14:56:58','2015-03-14 14:56:58',1,30000298,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(4234,'2015-03-14 14:56:58','2015-03-14 14:56:58',1,30001943,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(4235,'2015-03-14 14:56:58','2015-03-14 14:56:58',1,30001142,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(4236,'2015-03-14 14:56:58','2015-03-14 14:56:58',1,30001563,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(4237,'2015-03-14 14:56:58','2015-03-14 14:56:58',1,30001138,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(4238,'2015-03-14 14:56:58','2015-03-14 14:56:58',1,30005119,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(4239,'2015-03-14 14:56:58','2015-03-14 14:56:58',1,30000712,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(4240,'2015-03-14 14:56:58','2015-10-11 16:46:37',1,30003410,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,1,0,0,0,0,0),(4241,'2015-03-14 14:56:58','2015-03-14 14:56:58',1,30004963,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(4242,'2015-03-14 14:56:58','2015-03-14 14:56:58',1,30000477,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(4243,'2015-03-14 14:56:58','2015-03-14 14:56:58',1,30000834,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(4244,'2015-03-14 14:56:58','2015-03-14 14:56:58',1,30005105,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(4245,'2015-03-14 14:56:58','2015-10-11 16:46:37',1,30005188,0,0,0,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(4246,'2015-03-14 14:56:58','2015-10-11 16:46:37',1,30002022,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(4247,'2015-03-14 14:56:58','2015-03-14 14:56:58',1,30003628,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(4248,'2015-03-14 14:56:58','2015-03-14 14:56:58',1,30001308,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(4249,'2015-03-14 14:56:58','2015-03-14 14:56:58',1,30000501,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(4250,'2015-03-14 14:56:58','2015-03-14 14:56:58',1,30004776,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(4251,'2015-03-14 14:56:58','2015-03-14 14:56:58',1,30004819,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(4252,'2015-03-14 14:56:58','2015-03-14 14:56:58',1,30004332,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(4253,'2015-03-14 14:56:58','2015-10-11 16:46:37',1,30001918,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0),(4254,'2015-03-14 14:56:58','2015-10-11 16:46:37',1,30001591,0,0,0,0,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(4255,'2015-03-14 14:56:58','2015-03-14 14:56:58',1,30001893,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(4256,'2015-03-14 14:56:58','2015-10-11 16:46:37',1,30002912,1,0,0,0,0,0,0,0,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(4257,'2015-03-14 14:56:58','2015-10-11 16:46:37',1,30000657,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0),(4258,'2015-03-14 14:56:58','2015-10-11 16:46:37',1,30003611,0,1,0,0,0,0,1,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,0,1),(4259,'2015-03-14 14:56:58','2015-03-14 14:56:58',1,30003340,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(4260,'2015-03-14 14:56:58','2015-03-14 14:56:58',1,30003629,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(4261,'2015-03-14 14:56:58','2015-03-14 14:56:58',1,30004683,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(4262,'2015-03-14 14:56:58','2015-03-14 14:56:58',1,30002888,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(4263,'2015-03-14 14:56:58','2015-03-14 14:56:58',1,30002017,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(4264,'2015-03-14 14:56:58','2015-03-14 14:56:58',1,30000260,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(4265,'2015-03-14 14:56:58','2015-03-14 14:56:58',1,30000388,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(4266,'2015-03-14 14:56:58','2015-10-11 16:46:37',1,30001088,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(4267,'2015-03-14 14:56:58','2015-03-14 14:56:58',1,30001176,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(4268,'2015-03-14 14:56:58','2015-03-14 14:56:58',1,30003368,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(4269,'2015-03-14 14:56:58','2015-03-14 14:56:58',1,30004172,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(4270,'2015-03-14 14:56:58','2015-03-14 14:56:58',1,30004886,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(4271,'2015-03-14 14:56:58','2015-03-14 14:56:58',1,30000753,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(4272,'2015-03-14 14:56:58','2015-03-14 14:56:58',1,30000667,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(4273,'2015-03-14 14:56:58','2015-03-14 14:56:58',1,30001030,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(4274,'2015-03-14 14:56:58','2015-10-11 16:46:37',1,30001237,1,0,0,1,0,0,0,0,1,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0),(4275,'2015-03-14 14:56:58','2015-03-14 14:56:58',1,30004805,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(4276,'2015-03-14 14:56:58','2015-03-14 14:56:58',1,30001471,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(4277,'2015-03-14 14:56:58','2015-03-14 14:56:58',1,30001145,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(4278,'2015-03-14 14:56:58','2015-10-11 16:46:37',1,30000284,1,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0),(4279,'2015-03-14 14:56:58','2015-03-14 14:56:58',1,30003257,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(4280,'2015-03-14 14:56:58','2015-10-11 16:46:37',1,30000886,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0),(4281,'2015-03-14 14:56:58','2015-03-14 14:56:58',1,30001891,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(4282,'2015-03-14 14:56:58','2015-03-14 14:56:58',1,30000389,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(4283,'2015-03-14 14:56:58','2015-10-11 16:46:37',1,30003741,0,1,0,0,0,0,0,0,0,0,0,1,0,2,0,0,0,0,0,0,0,0,0,1),(4284,'2015-03-14 14:56:58','2015-10-11 16:46:37',1,30003506,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(4285,'2015-03-14 14:56:58','2015-03-14 14:56:58',1,30001386,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(4286,'2015-03-14 14:56:58','2015-10-11 16:46:37',1,30003894,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0),(4287,'2015-03-14 14:56:58','2015-10-11 16:46:37',1,30001675,0,0,0,0,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(4288,'2015-03-14 14:56:58','2015-10-11 16:46:37',1,30004242,0,3,1,0,1,3,0,1,0,0,1,1,0,0,0,0,0,0,0,1,4,0,0,2),(4289,'2015-03-14 14:56:58','2015-03-14 14:56:58',1,30002251,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(4290,'2015-03-14 14:56:58','2015-03-14 14:56:58',1,30031672,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(4291,'2015-03-14 14:56:58','2015-03-14 14:56:58',1,30002279,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(4292,'2015-03-14 14:56:58','2015-03-14 14:56:58',1,30003879,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(4293,'2015-03-14 14:56:58','2015-10-11 16:46:37',1,30001719,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,1),(4294,'2015-03-14 14:56:58','2015-10-11 16:46:37',1,30002298,0,0,0,0,0,1,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(4295,'2015-03-14 14:56:58','2015-10-11 16:46:37',1,30003474,0,0,0,0,0,0,6,0,0,0,1,1,0,2,2,1,0,1,1,2,1,0,1,1),(4296,'2015-03-14 14:56:58','2015-03-14 14:56:58',1,30002259,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(4297,'2015-03-14 14:56:58','2015-03-14 14:56:58',1,30003518,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(4298,'2015-03-14 14:56:58','2015-10-11 16:46:37',1,30003086,0,0,0,0,2,1,0,0,0,0,0,0,0,0,1,0,1,0,0,0,0,0,1,0),(4299,'2015-03-14 14:56:58','2015-03-14 14:56:58',1,30000508,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(4300,'2015-03-14 14:56:58','2015-10-11 16:46:37',1,30003090,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0),(4301,'2015-03-14 14:56:58','2015-10-11 16:46:37',1,30003079,1,0,0,0,0,0,0,0,0,0,0,2,2,0,0,0,0,0,0,0,2,0,0,0),(4302,'2015-03-14 14:56:58','2015-03-14 14:56:58',1,30002745,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(4303,'2015-03-14 14:56:58','2015-03-14 14:56:58',1,30002816,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(4304,'2015-03-14 14:56:58','2015-03-14 14:56:58',1,30000146,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(4305,'2015-03-14 14:56:58','2015-03-14 14:56:58',1,30010141,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(4306,'2015-03-14 14:56:58','2015-10-11 16:46:37',1,30004299,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,1,1,1),(4307,'2015-03-14 14:56:58','2015-03-14 14:56:58',1,30002215,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(4308,'2015-03-14 14:56:58','2015-03-14 14:56:58',1,30000167,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(4309,'2015-03-14 14:56:58','2015-10-11 16:46:37',1,30002405,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(4310,'2015-03-14 14:56:58','2015-03-14 14:56:58',1,30004146,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(4311,'2015-03-14 14:56:58','2015-10-11 16:46:37',1,30000059,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(4312,'2015-03-14 14:56:58','2015-03-14 14:56:58',1,30003874,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(4313,'2015-03-14 14:56:58','2015-10-11 16:46:37',1,30045322,0,1,1,0,0,0,0,0,0,1,0,0,2,0,0,0,0,0,0,0,0,1,0,0),(4314,'2015-03-14 14:56:58','2015-10-11 16:46:37',1,30001721,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,0,0),(4315,'2015-03-14 14:56:58','2015-03-14 14:56:58',1,30002783,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(4316,'2015-03-14 14:56:58','2015-03-14 14:56:58',1,30002785,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(4317,'2015-03-14 14:56:58','2015-03-14 14:56:58',1,30005255,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(4318,'2015-03-14 14:56:58','2015-10-11 16:46:37',1,30001442,1,0,0,3,1,1,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(4319,'2015-03-14 14:56:58','2015-10-11 16:46:37',1,30001377,0,1,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0),(4320,'2015-03-14 14:56:58','2015-10-11 16:46:37',1,30045310,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(4321,'2015-03-14 14:56:58','2015-03-14 14:56:58',1,30000043,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(4322,'2015-03-14 14:56:58','2015-10-11 16:46:37',1,30003584,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0),(4323,'2015-03-14 14:56:58','2015-10-11 16:46:37',1,30003522,0,0,2,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0),(4324,'2015-03-14 14:56:58','2015-10-11 16:46:37',1,30003074,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,0,0,0,1,1,1),(4325,'2015-03-14 14:56:58','2015-03-14 14:56:58',1,30002971,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(4326,'2015-03-14 14:56:58','2015-03-14 14:56:58',1,30003931,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(4327,'2015-03-14 14:56:58','2015-03-14 14:56:58',1,30000005,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(4328,'2015-03-14 14:56:58','2015-03-14 14:56:58',1,30003097,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(4329,'2015-03-14 14:56:58','2015-10-11 16:46:37',1,30003508,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1),(4330,'2015-03-14 14:56:58','2015-03-14 14:56:58',1,30004270,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(4331,'2015-03-14 14:56:58','2015-03-14 14:56:58',1,30003865,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(4332,'2015-03-14 14:56:58','2015-03-14 14:56:58',1,30000991,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(4333,'2015-03-14 14:56:58','2015-03-14 14:56:58',1,30004218,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(4334,'2015-03-14 14:56:58','2015-03-14 14:56:58',1,30001296,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(4335,'2015-03-14 14:56:58','2015-10-11 16:46:37',1,30005310,0,0,0,0,0,0,0,0,0,0,1,1,1,1,0,0,0,1,0,0,0,0,0,0),(4336,'2015-03-14 14:56:58','2015-10-11 16:46:37',1,30005063,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0),(4337,'2015-03-14 14:56:58','2015-03-14 14:56:58',1,30002654,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(4338,'2015-03-14 14:56:58','2015-10-11 16:46:37',1,30005322,0,0,0,0,0,1,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0),(4339,'2015-03-14 14:56:58','2015-10-11 16:46:37',1,30003054,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,1),(4340,'2015-03-14 14:56:58','2015-10-11 16:46:37',1,30000692,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(4341,'2015-03-14 14:56:58','2015-03-14 14:56:58',1,30001314,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(4342,'2015-03-14 14:56:58','2015-10-11 16:46:37',1,30004139,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(4343,'2015-03-14 14:56:58','2015-10-11 16:46:37',1,30001659,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0),(4344,'2015-03-14 14:56:58','2015-03-14 14:56:58',1,30005042,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(4345,'2015-03-14 14:56:58','2015-03-14 14:56:58',1,30003869,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(4346,'2015-03-14 14:56:58','2015-10-11 16:46:37',1,30001657,0,0,0,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(4347,'2015-03-14 14:56:58','2015-03-14 14:56:58',1,30002243,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(4348,'2015-03-14 14:56:58','2015-03-14 14:56:58',1,30041672,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(4349,'2015-03-14 14:56:58','2015-03-14 14:56:58',1,30001359,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(4350,'2015-03-14 14:56:58','2015-10-11 16:46:37',1,30020141,0,0,1,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(4351,'2015-03-14 14:56:58','2015-10-11 16:46:37',1,30000015,0,0,0,0,0,1,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,0,0,0),(4352,'2015-03-14 14:56:58','2015-03-14 14:56:58',1,30000103,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(4353,'2015-03-14 14:56:58','2015-10-11 16:46:37',1,30004623,1,0,1,0,0,0,0,0,0,0,1,1,0,0,1,0,0,0,0,0,0,0,0,0),(4354,'2015-03-14 14:56:58','2015-10-11 16:46:37',1,30005222,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0),(4355,'2015-03-14 14:56:58','2015-03-14 14:56:58',1,30003898,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(4356,'2015-03-14 14:56:58','2015-03-14 14:56:58',1,30005278,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(4357,'2015-03-14 14:56:58','2015-10-11 16:46:37',1,30005020,0,0,0,1,0,0,1,0,0,0,1,1,0,0,1,2,1,0,2,1,0,1,0,0),(4358,'2015-03-14 14:56:58','2015-03-14 14:56:58',1,30003654,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(4359,'2015-03-14 14:56:58','2015-03-14 14:56:58',1,30002833,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(4360,'2015-03-14 14:56:58','2015-10-11 16:46:37',1,30000670,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0),(4361,'2015-03-14 14:56:58','2015-03-14 14:56:58',1,30001098,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(4362,'2015-03-14 14:56:58','2015-10-11 16:46:37',1,30000868,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,2,0,0,0,0,0,0,0,0),(4363,'2015-03-14 14:56:58','2015-03-14 14:56:58',1,30002831,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(4364,'2015-03-14 14:56:58','2015-10-11 16:46:37',1,30002267,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(4365,'2015-03-14 14:56:58','2015-10-11 16:46:37',1,30000097,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0),(4366,'2015-03-14 14:56:58','2015-10-11 16:46:37',1,30004283,0,0,1,0,0,0,0,0,0,6,3,1,0,5,0,1,3,1,0,0,0,0,0,0),(4367,'2015-03-14 14:56:58','2015-03-14 14:56:58',1,30004150,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(4368,'2015-03-14 14:56:58','2015-03-14 14:56:58',1,30005057,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(4369,'2015-03-14 14:56:58','2015-10-11 16:46:37',1,30003477,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1),(4370,'2015-03-14 14:56:58','2015-03-14 14:56:58',1,30004231,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(4371,'2015-03-14 14:56:58','2015-03-14 14:56:58',1,30000054,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(4372,'2015-03-14 14:56:58','2015-10-11 16:46:37',1,30005270,0,0,0,0,1,1,0,0,0,2,1,1,0,0,0,0,0,0,0,0,0,0,0,0),(4373,'2015-03-14 14:56:58','2015-03-14 14:56:58',1,30000014,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(4374,'2015-03-14 14:56:58','2015-10-11 16:46:37',1,30005271,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1),(4375,'2015-03-14 14:56:58','2015-10-11 16:46:37',1,30003498,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,2,0,1,0,0),(4376,'2015-03-14 14:56:58','2015-03-14 14:56:58',1,30001739,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(4377,'2015-03-14 14:56:58','2015-03-14 14:56:58',1,30000067,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(4378,'2015-03-14 14:56:58','2015-03-14 14:56:58',1,30003500,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(4379,'2015-03-14 14:56:58','2015-10-11 16:46:37',1,30002638,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0),(4380,'2015-03-14 14:56:58','2015-03-14 14:56:58',1,30005276,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(4381,'2015-03-14 14:56:58','2015-10-11 16:46:37',1,30002999,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,0,0),(4382,'2015-03-14 14:56:58','2015-03-14 14:56:58',1,30000779,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(4383,'2015-03-14 14:56:58','2015-03-14 14:56:58',1,30000106,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(4384,'2015-03-14 14:56:58','2015-03-14 14:56:58',1,30004155,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(4385,'2015-03-14 14:56:58','2015-03-14 14:56:58',1,30004268,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(4386,'2015-03-14 14:56:58','2015-03-14 14:56:58',1,30000011,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(4387,'2015-03-14 14:56:58','2015-03-14 14:56:58',1,30005192,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(4388,'2015-03-14 14:56:58','2015-03-14 14:56:58',1,30004278,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(4389,'2015-03-14 14:56:58','2015-10-11 16:46:37',1,30005217,0,0,4,0,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,1,0),(4390,'2015-03-14 14:56:58','2015-03-14 14:56:58',1,30001673,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(4391,'2015-03-14 14:56:58','2015-03-14 14:56:58',1,30000130,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(4392,'2015-03-14 14:56:58','2015-03-14 14:56:58',1,30003725,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(4393,'2015-03-14 14:56:58','2015-03-14 14:56:58',1,30004233,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(4394,'2015-03-14 14:56:58','2015-03-14 14:56:58',1,30001338,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(4395,'2015-03-14 14:56:58','2015-03-14 14:56:58',1,30005076,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(4396,'2015-03-14 14:56:58','2015-10-11 16:46:37',1,30001667,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,0,0,0,0,0,0,0),(4397,'2015-03-14 14:56:58','2015-03-14 14:56:58',1,30002235,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(4398,'2015-03-14 14:56:58','2015-03-14 14:56:58',1,30004135,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(4399,'2015-03-14 14:56:58','2015-03-14 14:56:58',1,30002201,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(4400,'2015-03-14 14:56:58','2015-10-11 16:46:37',1,30003728,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,4,0,1,1),(4401,'2015-03-14 14:56:58','2015-03-14 14:56:58',1,30005209,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(4402,'2015-03-14 14:56:58','2015-03-14 14:56:58',1,30003484,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(4403,'2015-03-14 14:56:58','2015-03-14 14:56:58',1,30003557,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(4404,'2015-03-14 14:56:58','2015-10-11 16:46:37',1,30002959,0,0,0,0,0,0,1,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0),(4405,'2015-03-14 14:56:58','2015-10-11 16:46:37',1,30005219,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0),(4406,'2015-03-14 14:56:58','2015-10-11 16:46:37',1,30000179,0,0,0,0,0,0,0,0,5,0,1,0,0,0,0,0,0,0,0,0,0,2,2,0),(4407,'2015-03-14 14:56:58','2015-03-14 14:56:58',1,30002689,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(4408,'2015-03-14 14:56:58','2015-03-14 14:56:58',1,30002195,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(4409,'2015-03-14 14:56:58','2015-10-11 16:46:37',1,30005269,0,0,1,1,1,0,0,0,0,0,0,0,0,1,2,1,0,0,0,0,1,0,0,1),(4410,'2015-03-14 14:56:58','2015-10-11 16:46:37',1,30001729,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(4411,'2015-03-14 14:56:58','2015-10-11 16:46:37',1,30002092,0,0,0,0,0,0,0,0,0,7,0,0,0,0,0,0,1,0,1,0,0,0,0,0),(4412,'2015-03-14 14:56:58','2015-03-14 14:56:58',1,30003540,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(4413,'2015-03-14 14:56:58','2015-10-11 16:46:37',1,30002791,1,0,0,1,1,1,1,0,0,0,0,0,0,0,2,1,1,0,0,0,0,1,2,1),(4414,'2015-03-14 14:56:58','2015-10-11 16:46:37',1,30000127,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0),(4415,'2015-03-14 14:56:58','2015-10-11 16:46:37',1,30002539,0,1,5,0,6,8,1,0,0,0,2,1,0,3,1,0,0,0,1,2,3,5,3,1),(4416,'2015-03-14 14:56:58','2015-03-14 14:56:58',1,30002521,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(4417,'2015-03-14 14:56:58','2015-03-14 14:56:58',1,30002229,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(4418,'2015-03-14 14:56:58','2015-03-14 14:56:58',1,30003406,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(4419,'2015-03-14 14:56:58','2015-10-11 16:46:37',1,30002765,4,5,1,0,0,0,0,1,1,0,0,1,0,6,1,1,1,2,0,1,1,0,0,2),(4420,'2015-03-14 14:56:58','2015-03-14 14:56:58',1,30001699,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(4421,'2015-03-14 14:56:58','2015-03-14 14:56:58',1,30001728,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(4422,'2015-03-14 14:56:58','2015-03-14 14:56:58',1,30000571,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(4423,'2015-03-14 14:56:58','2015-03-14 14:56:58',1,30000436,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(4424,'2015-03-14 14:56:58','2015-03-14 14:56:58',1,30004164,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(4425,'2015-03-14 14:56:58','2015-03-14 14:56:58',1,30002411,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(4426,'2015-03-14 14:56:58','2015-03-14 14:56:58',1,30003964,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(4427,'2015-03-14 14:56:58','2015-10-11 16:46:37',1,30000964,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0),(4428,'2015-03-14 14:56:58','2015-03-14 14:56:58',1,30003798,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(4429,'2015-03-14 14:56:58','2015-03-14 14:56:58',1,30000479,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(4430,'2015-03-14 14:56:58','2015-03-14 14:56:58',1,30001780,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(4431,'2015-03-14 14:56:58','2015-03-14 14:56:58',1,30001808,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(4432,'2015-03-14 14:56:58','2015-03-14 14:56:58',1,30000763,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(4433,'2015-03-14 14:56:58','2015-03-14 14:56:58',1,30003152,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(4434,'2015-03-14 14:56:58','2015-10-11 16:46:37',1,30001220,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0),(4435,'2015-03-14 14:56:58','2015-03-14 14:56:58',1,30000584,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(4436,'2015-03-14 14:56:58','2015-10-11 16:46:37',1,30001363,1,0,0,0,1,0,0,0,0,1,0,0,2,0,0,0,0,0,0,0,0,0,0,0),(4437,'2015-03-14 14:56:58','2015-03-14 14:56:58',1,30002237,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(4438,'2015-03-14 14:56:58','2015-03-14 14:56:58',1,30004273,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(4439,'2015-03-14 14:56:58','2015-03-14 14:56:58',1,30003511,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(4440,'2015-03-14 14:56:58','2015-10-11 16:46:37',1,30003225,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0),(4441,'2015-03-14 14:56:58','2015-10-11 16:46:37',1,30004099,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1),(4442,'2015-03-14 14:56:58','2015-03-14 14:56:58',1,30000009,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(4443,'2015-03-14 14:56:58','2015-03-14 14:56:58',1,30002983,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(4444,'2015-03-14 14:56:58','2015-10-11 16:46:37',1,30005323,0,1,0,0,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(4445,'2015-03-14 14:56:58','2015-03-14 14:56:58',1,30003510,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(4446,'2015-03-14 14:56:58','2015-03-14 14:56:58',1,30000089,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(4447,'2015-03-14 14:56:58','2015-10-11 16:46:37',1,30003070,0,1,1,1,0,0,1,0,0,0,1,0,0,1,1,1,0,1,0,0,0,2,1,1),(4448,'2015-03-14 14:56:58','2015-10-11 16:46:37',1,30002980,0,0,0,1,1,0,1,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0),(4449,'2015-03-14 14:56:58','2015-03-14 14:56:58',1,30005218,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(4450,'2015-03-14 14:56:58','2015-03-14 14:56:58',1,30000175,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(4451,'2015-03-14 14:56:58','2015-03-14 14:56:58',1,30004272,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(4452,'2015-03-14 14:56:58','2015-10-11 16:46:37',1,30001369,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0),(4453,'2015-03-14 14:56:58','2015-03-14 14:56:58',1,30002575,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(4454,'2015-03-14 14:56:58','2015-03-14 14:56:58',1,30005052,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(4455,'2015-03-14 14:56:58','2015-03-14 14:56:58',1,30004292,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(4456,'2015-03-14 14:56:58','2015-10-11 16:46:37',1,30002111,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0),(4457,'2015-03-14 14:56:58','2015-03-14 14:56:58',1,30004570,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(4458,'2015-03-14 14:56:58','2015-03-14 14:56:58',1,30001453,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(4459,'2015-03-14 14:56:58','2015-03-14 14:56:58',1,30001630,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(4460,'2015-03-14 14:56:58','2015-10-11 16:46:37',1,30005141,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(4461,'2015-03-14 14:56:58','2015-03-14 14:56:58',1,30000565,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(4462,'2015-03-14 14:56:58','2015-03-14 14:56:58',1,30002422,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(4463,'2015-03-14 14:56:58','2015-03-14 14:56:58',1,30001288,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(4464,'2015-03-14 14:56:58','2015-10-11 16:46:37',1,30003794,1,1,1,0,0,0,0,2,2,0,3,0,0,1,0,0,0,0,0,1,1,0,0,0),(4465,'2015-03-14 14:56:58','2015-03-14 14:56:58',1,30002675,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(4466,'2015-03-14 14:56:58','2015-10-11 16:46:37',1,30002696,0,1,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(4467,'2015-03-14 14:56:58','2015-03-14 14:56:58',1,30002711,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(4468,'2015-03-14 14:56:58','2015-03-14 14:56:58',1,30003376,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(4469,'2015-03-14 14:56:58','2015-03-14 14:56:58',1,30005333,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(4470,'2015-03-14 14:56:58','2015-03-14 14:56:58',1,30003593,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(4471,'2015-03-14 14:56:58','2015-10-11 16:46:37',1,30003607,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0),(4472,'2015-03-14 14:56:58','2015-03-14 14:56:58',1,30000086,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(4473,'2015-03-14 14:56:58','2015-10-11 16:46:37',1,30002809,0,1,2,2,1,2,0,5,0,1,1,1,0,1,1,1,0,0,1,1,1,0,0,2),(4474,'2015-03-14 14:56:58','2015-03-14 14:56:58',1,30002200,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(4475,'2015-03-14 14:56:58','2015-03-14 14:56:58',1,30004101,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(4476,'2015-03-14 14:56:58','2015-10-11 16:46:37',1,30000944,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,1,0),(4477,'2015-03-14 14:56:58','2015-10-11 16:46:37',1,30002801,0,0,0,0,0,0,0,1,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0),(4478,'2015-03-14 14:56:58','2015-03-14 14:56:58',1,30002445,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(4479,'2015-03-14 14:56:58','2015-10-11 16:46:37',1,30001158,6,2,2,5,1,0,0,0,2,0,6,0,0,0,3,1,4,0,19,3,5,0,1,1),(4480,'2015-03-14 14:56:58','2015-03-14 14:56:58',1,30004377,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(4481,'2015-03-14 14:56:58','2015-10-11 16:46:37',1,30004758,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(4482,'2015-03-14 14:56:58','2015-03-14 14:56:58',1,30004484,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(4483,'2015-03-14 14:56:58','2015-03-14 14:56:58',1,30002835,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(4484,'2015-03-14 14:56:58','2015-03-14 14:56:58',1,30005174,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(4485,'2015-03-14 14:56:58','2015-03-14 14:56:58',1,30000515,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(4486,'2015-03-14 14:56:58','2015-03-14 14:56:58',1,30003667,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(4487,'2015-03-14 14:56:58','2015-03-14 14:56:58',1,30005015,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(4488,'2015-03-14 14:56:58','2015-03-14 14:56:58',1,30004143,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(4489,'2015-03-14 14:56:58','2015-03-14 14:56:58',1,30003639,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(4490,'2015-03-14 14:56:58','2015-03-14 14:56:58',1,30000488,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(4491,'2015-03-14 14:56:58','2015-03-14 14:56:58',1,30001096,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(4492,'2015-03-14 14:56:58','2015-03-14 14:56:58',1,30004211,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(4493,'2015-03-14 14:56:58','2015-03-14 14:56:58',1,30001151,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(4494,'2015-03-14 14:56:58','2015-10-11 16:46:37',1,30001911,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(4495,'2015-03-14 14:56:58','2015-03-14 14:56:58',1,30002890,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(4496,'2015-03-14 14:56:58','2015-10-11 16:46:37',1,30004877,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0),(4497,'2015-03-14 14:56:58','2015-03-14 14:56:58',1,30001633,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(4498,'2015-03-14 14:56:58','2015-10-11 16:46:37',1,30000261,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2),(4499,'2015-03-14 14:56:58','2015-03-14 14:56:58',1,30003195,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(4500,'2015-03-14 14:56:58','2015-03-14 14:56:58',1,30002382,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(4501,'2015-03-14 14:56:58','2015-10-11 16:46:37',1,30004748,0,1,0,0,0,0,0,1,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(4502,'2015-03-14 14:56:58','2015-03-14 14:56:58',1,30004729,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(4503,'2015-03-14 14:56:58','2015-03-14 14:56:58',1,30003673,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(4504,'2015-03-14 14:56:58','2015-03-14 14:56:58',1,30003299,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(4505,'2015-03-14 14:56:58','2015-03-14 14:56:58',1,30004745,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(4506,'2015-03-14 14:56:58','2015-10-11 16:46:37',1,30001959,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,2,1,0,0,0,2,1,1,0),(4507,'2015-03-14 14:56:58','2015-03-14 14:56:58',1,30000330,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(4508,'2015-03-14 14:56:58','2015-03-14 14:56:58',1,30004352,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(4509,'2015-03-14 14:56:58','2015-10-11 16:46:37',1,30003715,0,0,0,0,0,0,0,0,1,8,15,3,0,6,13,0,0,0,0,0,0,0,0,0),(4510,'2015-03-14 14:56:58','2015-03-14 14:56:58',1,30001631,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(4511,'2015-03-14 14:56:58','2015-03-14 14:56:58',1,30004529,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(4512,'2015-03-14 14:56:58','2015-03-14 14:56:58',1,30004676,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(4513,'2015-03-14 14:56:58','2015-10-11 16:46:37',1,30000303,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0),(4514,'2015-03-14 14:56:58','2015-03-14 14:56:58',1,30001771,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(4515,'2015-03-14 14:56:58','2015-03-14 14:56:58',1,30004842,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(4516,'2015-03-14 14:56:58','2015-03-14 14:56:58',1,30003287,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(4517,'2015-03-14 14:56:58','2015-03-14 14:56:58',1,30004735,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(4518,'2015-03-14 14:56:58','2015-10-11 16:46:37',1,30004870,0,0,0,0,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,0,5,0,0,0),(4519,'2015-03-14 14:56:58','2015-03-14 14:56:58',1,30001548,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(4520,'2015-03-14 14:56:58','2015-03-14 14:56:58',1,30001916,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(4521,'2015-03-14 14:56:58','2015-10-11 16:46:37',1,30003943,2,0,0,0,0,0,1,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0),(4522,'2015-03-14 14:56:58','2015-10-11 16:46:37',1,30003966,0,1,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0),(4523,'2015-03-14 14:56:58','2015-10-11 16:46:37',1,30001228,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,1,0,0,1),(4524,'2015-03-14 14:56:58','2015-03-14 14:56:58',1,30002841,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(4525,'2015-03-14 14:56:58','2015-10-11 16:46:37',1,30003465,0,1,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,0,0,0,0,0,0,0),(4526,'2015-03-14 14:56:58','2015-03-14 14:56:58',1,30005070,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(4527,'2015-03-14 14:56:58','2015-10-11 16:46:37',1,30002100,0,0,0,0,0,0,3,0,0,0,1,1,0,0,1,1,0,0,0,1,1,0,0,0),(4528,'2015-03-14 14:56:58','2015-03-14 14:56:58',1,30005245,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(4529,'2015-03-14 14:56:58','2015-10-11 16:46:37',1,30001447,3,1,0,0,3,1,0,0,0,0,0,0,0,0,0,1,3,5,0,0,0,0,0,0),(4530,'2015-03-14 14:56:58','2015-03-14 14:56:58',1,30005143,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(4531,'2015-03-14 14:56:58','2015-03-14 14:56:58',1,30003889,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(4532,'2015-03-14 14:56:58','2015-10-11 16:46:37',1,30002813,1,7,15,1,3,4,0,11,8,1,12,20,25,3,21,15,9,7,6,16,4,9,49,21),(4533,'2015-03-14 14:56:58','2015-03-14 14:56:58',1,30003407,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(4534,'2015-03-14 14:56:58','2015-03-14 14:56:58',1,30001437,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(4535,'2015-03-14 14:56:58','2015-10-11 16:46:37',1,30003091,0,0,1,0,0,0,0,0,0,0,1,1,0,0,1,1,0,0,0,1,0,0,0,1),(4536,'2015-03-14 14:56:58','2015-10-11 16:46:37',1,30002812,1,0,0,0,1,1,0,1,0,1,1,1,0,0,0,0,0,0,0,0,0,0,0,0),(4537,'2015-03-14 14:56:58','2015-10-11 16:46:37',1,30000001,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,1,0,0),(4538,'2015-03-14 14:56:58','2015-10-11 16:46:37',1,30005199,0,0,0,1,0,0,0,0,0,0,0,0,0,3,0,0,0,0,1,2,1,0,5,3),(4539,'2015-03-14 14:56:58','2015-10-11 16:46:37',1,30002979,0,0,0,1,1,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,0,0,0,0),(4540,'2015-03-14 14:56:58','2015-10-11 16:46:37',1,30005205,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(4541,'2015-03-14 14:56:58','2015-03-14 14:56:58',1,30001441,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(4542,'2015-03-14 14:56:58','2015-03-14 14:56:58',1,30001703,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(4543,'2015-03-14 14:56:58','2015-03-14 14:56:58',1,30002778,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(4544,'2015-03-14 14:56:58','2015-10-11 16:46:37',1,30001671,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,3,0,0,0,1),(4545,'2015-03-14 14:56:58','2015-03-14 14:56:58',1,30002274,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(4546,'2015-03-14 14:56:58','2015-10-11 16:46:37',1,30000195,0,0,0,0,0,0,0,0,0,0,1,1,0,0,2,2,1,1,0,0,0,0,0,1),(4547,'2015-03-14 14:56:58','2015-10-11 16:46:37',1,30004937,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,3,1,0,0,0,0,0,0,0),(4548,'2015-03-14 14:56:58','2015-03-14 14:56:58',1,30001051,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(4549,'2015-03-14 14:56:58','2015-10-11 16:46:37',1,30002502,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1),(4550,'2015-03-14 14:56:58','2015-10-11 16:46:37',1,30005089,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,3,0,0,0),(4551,'2015-03-14 14:56:58','2015-10-11 16:46:37',1,30004638,0,0,2,0,0,0,0,0,0,18,2,2,0,8,5,18,20,2,8,2,10,1,2,1),(4552,'2015-03-14 14:56:58','2015-10-11 16:46:37',1,30003907,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,0,0,0,0,0,0,0,0,0),(4553,'2015-03-14 14:56:58','2015-10-11 16:46:37',1,30045350,0,0,0,0,0,0,0,0,1,0,0,0,1,0,2,1,0,1,1,0,0,0,0,0),(4554,'2015-03-14 14:56:58','2015-03-14 14:56:58',1,30003128,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(4555,'2015-03-14 14:56:58','2015-03-14 14:56:58',1,30005200,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(4556,'2015-03-14 14:56:58','2015-03-14 14:56:58',1,30004158,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(4557,'2015-03-14 14:56:58','2015-03-14 14:56:58',1,30001645,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(4558,'2015-03-14 14:56:58','2015-10-11 16:46:37',1,30002763,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(4559,'2015-03-14 14:56:58','2015-10-11 16:46:37',1,30002385,0,0,1,0,2,0,0,0,0,0,1,0,1,0,1,2,1,0,0,0,0,0,0,0),(4560,'2015-03-14 14:56:58','2015-10-11 16:46:37',1,30003507,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0),(4561,'2015-03-14 14:56:58','2015-10-11 16:46:37',1,30001681,0,0,0,0,0,0,0,0,0,0,0,1,0,4,0,0,0,0,1,1,1,0,0,3),(4562,'2015-03-14 14:56:58','2015-10-11 16:46:37',1,30045335,0,0,0,0,0,0,0,0,0,0,0,2,1,0,1,1,0,1,0,0,0,0,0,0),(4563,'2015-03-14 14:56:58','2015-03-14 14:56:58',1,30000926,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(4564,'2015-03-14 14:56:58','2015-03-14 14:56:58',1,30001733,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(4565,'2015-03-14 14:56:58','2015-03-14 14:56:58',1,30002038,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(4566,'2015-03-14 14:56:58','2015-03-14 14:56:58',1,30001760,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(4567,'2015-03-14 14:56:58','2015-10-11 16:46:37',1,30001842,0,0,0,1,1,1,1,0,1,1,2,1,2,0,0,0,0,0,0,1,2,3,3,0),(4568,'2015-03-14 14:56:58','2015-10-11 16:46:37',1,30003000,0,1,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0),(4569,'2015-03-14 14:56:58','2015-03-14 14:56:58',1,30001677,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(4570,'2015-03-14 14:56:58','2015-03-14 14:56:58',1,30002966,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(4571,'2015-03-14 14:56:58','2015-03-14 14:56:58',1,30002226,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(4572,'2015-03-14 14:56:58','2015-10-11 16:46:37',1,30002720,0,0,0,0,0,0,0,0,0,0,1,1,0,1,1,1,0,1,2,0,2,0,1,2),(4573,'2015-03-14 14:56:58','2015-03-14 14:56:58',1,30005314,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(4574,'2015-03-14 14:56:58','2015-10-11 16:46:37',1,30000069,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0),(4575,'2015-03-14 14:56:58','2015-03-14 14:56:58',1,30001464,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(4576,'2015-03-14 14:56:58','2015-03-14 14:56:58',1,30000352,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(4577,'2015-03-14 14:56:58','2015-03-14 14:56:58',1,30000076,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(4578,'2015-03-14 14:56:58','2015-03-14 14:56:58',1,30005334,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(4579,'2015-03-14 14:56:58','2015-03-14 14:56:58',1,30000100,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(4580,'2015-03-14 14:56:58','2015-10-11 16:46:37',1,30003932,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0),(4581,'2015-03-14 14:56:58','2015-03-14 14:56:58',1,30002784,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(4582,'2015-03-14 14:56:58','2015-10-11 16:46:37',1,30001684,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0),(4583,'2015-03-14 14:56:58','2015-03-14 14:56:58',1,30004298,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(4584,'2015-03-14 14:56:58','2015-03-14 14:56:58',1,30001644,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(4585,'2015-03-14 14:56:58','2015-10-11 16:46:37',1,30002474,1,0,0,0,1,1,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0),(4586,'2015-03-14 14:56:58','2015-03-14 14:56:58',1,30000742,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(4587,'2015-03-14 14:56:58','2015-03-14 14:56:58',1,30001908,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(4588,'2015-03-14 14:56:58','2015-03-14 14:56:58',1,30002584,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(4589,'2015-03-14 14:56:58','2015-03-14 14:56:58',1,30004047,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(4590,'2015-03-14 14:56:58','2015-03-14 14:56:58',1,30004960,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(4591,'2015-03-14 14:56:58','2015-03-14 14:56:58',1,30001461,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(4592,'2015-03-14 14:56:58','2015-03-14 14:56:58',1,30001519,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(4593,'2015-03-14 14:56:58','2015-10-11 16:46:37',1,30001407,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,1,1,1,0,0,0,0,0,0),(4594,'2015-03-14 14:56:58','2015-03-14 14:56:58',1,30032505,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(4595,'2015-03-14 14:56:58','2015-10-11 16:46:37',1,30002062,0,0,0,0,0,0,1,0,0,0,0,0,1,0,1,0,0,0,0,3,0,0,2,1),(4596,'2015-03-14 14:56:58','2015-03-14 14:56:58',1,30003383,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(4597,'2015-03-14 14:56:58','2015-10-11 16:46:37',1,30003052,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,1),(4598,'2015-03-14 14:56:58','2015-10-11 16:46:37',1,30003436,0,0,5,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(4599,'2015-03-14 14:56:58','2015-03-14 14:56:58',1,30002532,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(4600,'2015-03-14 14:56:58','2015-10-11 16:46:37',1,30005212,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1),(4601,'2015-03-14 14:56:58','2015-10-11 16:46:37',1,30001429,0,0,0,1,0,0,1,1,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0),(4602,'2015-03-14 14:56:58','2015-03-14 14:56:58',1,30003020,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(4603,'2015-03-14 14:56:58','2015-03-14 14:56:58',1,30002191,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(4604,'2015-03-14 14:56:58','2015-03-14 14:56:58',1,30003402,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(4605,'2015-03-14 14:56:58','2015-03-14 14:56:58',1,30005301,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(4606,'2015-03-14 14:56:58','2015-03-14 14:56:58',1,30003606,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(4607,'2015-03-14 14:56:58','2015-03-14 14:56:58',1,30001127,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(4608,'2015-03-14 14:56:58','2015-03-14 14:56:58',1,30002327,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(4609,'2015-03-14 14:56:58','2015-03-14 14:56:58',1,30000588,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(4610,'2015-03-14 14:56:58','2015-10-11 16:46:37',1,30004935,0,0,0,0,0,0,0,0,2,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0),(4611,'2015-03-14 14:56:58','2015-03-14 14:56:58',1,30000641,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(4612,'2015-03-14 14:56:58','2015-03-14 14:56:58',1,30004500,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(4613,'2015-03-14 14:56:58','2015-10-11 16:46:37',1,30004452,0,0,0,0,0,0,0,0,0,0,0,0,0,4,0,0,0,0,0,0,15,0,0,0),(4614,'2015-03-14 14:56:58','2015-03-14 14:56:58',1,30005071,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(4615,'2015-03-14 14:56:58','2015-03-14 14:56:58',1,30003431,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(4616,'2015-03-14 14:56:58','2015-10-11 16:46:37',1,30002069,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(4617,'2015-03-14 14:56:58','2015-03-14 14:56:58',1,30002562,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(4618,'2015-03-14 14:56:58','2015-03-14 14:56:58',1,30000869,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(4619,'2015-03-14 14:56:58','2015-03-14 14:56:58',1,30002668,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(4620,'2015-03-14 14:56:58','2015-10-11 16:46:37',1,30042715,0,0,0,0,0,0,0,0,0,0,0,0,0,2,0,0,0,0,0,0,0,0,0,0),(4621,'2015-03-14 14:56:58','2015-10-11 16:46:37',1,30002508,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0),(4622,'2015-03-14 14:56:58','2015-10-11 16:46:37',1,30004423,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,0,0,0,0,0),(4623,'2015-03-14 14:56:58','2015-03-14 14:56:58',1,30001375,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(4624,'2015-03-14 14:56:58','2015-03-14 14:56:58',1,30001412,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(4625,'2015-03-14 14:56:58','2015-03-14 14:56:58',1,30045327,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(4626,'2015-03-14 14:56:58','2015-10-11 16:46:37',1,30000812,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(4627,'2015-03-14 14:56:58','2015-03-14 14:56:58',1,30003733,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(4628,'2015-03-14 14:56:58','2015-10-11 16:46:37',1,30003742,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1),(4629,'2015-03-14 14:56:58','2015-10-11 16:46:37',1,30004634,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0),(4630,'2015-03-14 14:56:58','2015-03-14 14:56:58',1,30004275,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(4631,'2015-03-14 14:56:58','2015-03-14 14:56:58',1,30001379,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(4632,'2015-03-14 14:56:58','2015-10-11 16:46:37',1,30002770,0,1,0,0,0,0,0,0,0,0,0,0,0,1,0,0,1,0,0,0,0,0,0,0),(4633,'2015-03-14 14:56:58','2015-03-14 14:56:58',1,30003064,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(4634,'2015-03-14 14:56:58','2015-03-14 14:56:58',1,30004098,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(4635,'2015-03-14 14:56:58','2015-10-11 16:46:37',1,30002086,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,1,1,1,0,0,0),(4636,'2015-03-14 14:56:58','2015-03-14 14:56:58',1,30000128,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(4637,'2015-03-14 14:56:58','2015-03-14 14:56:58',1,30003958,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(4638,'2015-03-14 14:56:58','2015-03-14 14:56:58',1,30002073,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(4639,'2015-03-14 14:56:58','2015-10-11 16:46:37',1,30000263,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,1,0,0,0,0),(4640,'2015-03-14 14:56:58','2015-10-11 16:46:37',1,30002614,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0),(4641,'2015-03-14 14:56:58','2015-10-11 16:46:37',1,30003779,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1),(4642,'2015-03-14 14:56:58','2015-10-11 16:46:37',1,30002901,0,0,0,0,0,0,3,0,0,2,0,0,0,3,0,0,1,0,0,0,7,0,0,0),(4643,'2015-03-14 14:56:58','2015-10-11 16:46:37',1,30003323,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,1,3),(4644,'2015-03-14 14:56:58','2015-10-11 16:46:37',1,30004844,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(4645,'2015-03-14 14:56:58','2015-03-14 14:56:58',1,30000485,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(4646,'2015-03-14 14:56:58','2015-03-14 14:56:58',1,30002353,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(4647,'2015-03-14 14:56:58','2015-03-14 14:56:58',1,30003891,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(4648,'2015-03-14 14:56:58','2015-10-11 16:46:37',1,30000601,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0),(4649,'2015-03-14 14:56:58','2015-10-11 16:46:37',1,30002494,0,1,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(4650,'2015-03-14 14:56:58','2015-03-14 14:56:58',1,30000747,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(4651,'2015-03-14 14:56:58','2015-10-11 16:46:37',1,30002957,0,1,0,0,0,0,2,0,0,0,0,1,0,1,1,0,0,0,0,0,0,0,0,0),(4652,'2015-03-14 14:56:58','2015-03-14 14:56:58',1,30005156,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(4653,'2015-03-14 14:56:58','2015-03-14 14:56:58',1,30004436,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(4654,'2015-03-14 14:56:58','2015-03-14 14:56:58',1,30001788,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(4655,'2015-03-14 14:56:58','2015-10-11 16:46:37',1,30000575,0,0,3,1,3,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(4656,'2015-03-14 14:56:58','2015-10-11 16:46:37',1,30003717,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,3,0,0,1,0,0,0),(4657,'2015-03-14 14:56:58','2015-03-14 14:56:58',1,30004024,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(4658,'2015-03-14 14:56:58','2015-10-11 16:46:37',1,30001997,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0),(4659,'2015-03-14 14:56:58','2015-03-14 14:56:58',1,30000404,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(4660,'2015-03-14 14:56:58','2015-03-14 14:56:58',1,30000660,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(4661,'2015-03-14 14:56:58','2015-03-14 14:56:58',1,30000394,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(4662,'2015-03-14 14:56:58','2015-03-14 14:56:58',1,30004439,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(4663,'2015-03-14 14:56:58','2015-10-11 16:46:37',1,30002463,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0),(4664,'2015-03-14 14:56:58','2015-03-14 14:56:58',1,30000493,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(4665,'2015-03-14 14:56:58','2015-03-14 14:56:58',1,30003637,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(4666,'2015-03-14 14:56:58','2015-03-14 14:56:58',1,30000459,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(4667,'2015-03-14 14:56:58','2015-03-14 14:56:58',1,30000629,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(4668,'2015-03-14 14:56:58','2015-10-11 16:46:37',1,30001155,0,2,0,1,1,0,0,0,0,1,0,3,1,2,0,2,2,0,3,0,1,0,2,0),(4669,'2015-03-14 14:56:58','2015-03-14 14:56:58',1,30003240,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(4670,'2015-03-14 14:56:58','2015-03-14 14:56:58',1,30004594,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(4671,'2015-03-14 14:56:58','2015-03-14 14:56:58',1,30002951,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(4672,'2015-03-14 14:56:58','2015-03-14 14:56:58',1,30000765,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(4673,'2015-03-14 14:56:58','2015-03-14 14:56:58',1,30000878,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(4674,'2015-03-14 14:56:58','2015-03-14 14:56:58',1,30005131,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(4675,'2015-03-14 14:56:58','2015-10-11 16:46:37',1,30001865,0,0,0,0,0,0,0,0,0,0,2,0,1,1,0,0,0,0,0,0,0,2,0,0),(4676,'2015-03-14 14:56:58','2015-03-14 14:56:58',1,30003347,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(4677,'2015-03-14 14:56:58','2015-03-14 14:56:58',1,30000514,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(4678,'2015-03-14 14:56:58','2015-03-14 14:56:58',1,30004441,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(4679,'2015-03-14 14:56:58','2015-03-14 14:56:58',1,30001585,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(4680,'2015-03-14 14:56:58','2015-03-14 14:56:58',1,30000555,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(4681,'2015-03-14 14:56:58','2015-03-14 14:56:58',1,30000329,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(4682,'2015-03-14 14:56:58','2015-03-14 14:56:58',1,30003623,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(4683,'2015-03-14 14:56:58','2015-10-11 16:46:37',1,30000703,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0),(4684,'2015-03-14 14:56:58','2015-10-11 16:46:37',1,30001898,0,0,0,0,0,0,0,0,0,0,0,0,0,2,0,0,0,0,0,0,0,0,0,0),(4685,'2015-03-14 14:56:58','2015-10-11 16:46:37',1,30004834,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,1,0,0),(4686,'2015-03-14 14:56:58','2015-03-14 14:56:58',1,30000948,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(4687,'2015-03-14 14:56:58','2015-03-14 14:56:58',1,30002608,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(4688,'2015-03-14 14:56:58','2015-10-11 16:46:37',1,30003372,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0),(4689,'2015-03-14 14:56:58','2015-03-14 14:56:58',1,30005126,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(4690,'2015-03-14 14:56:58','2015-03-14 14:56:58',1,30003663,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(4691,'2015-03-14 14:56:58','2015-10-11 16:46:37',1,30000210,2,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(4692,'2015-03-14 14:56:58','2015-03-14 14:56:58',1,30001927,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(4693,'2015-03-14 14:56:58','2015-03-14 14:56:58',1,30004074,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(4694,'2015-03-14 14:56:58','2015-10-11 16:46:37',1,30000527,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0),(4695,'2015-03-14 14:56:58','2015-03-14 14:56:58',1,30002488,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(4696,'2015-03-14 14:56:58','2015-03-14 14:56:58',1,30000693,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(4697,'2015-03-14 14:56:58','2015-03-14 14:56:58',1,30004202,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(4698,'2015-03-14 14:56:58','2015-10-11 16:46:37',1,30002164,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0),(4699,'2015-03-14 14:56:58','2015-03-14 14:56:58',1,30000427,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(4700,'2015-03-14 14:56:58','2015-03-14 14:56:58',1,30000644,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(4701,'2015-03-14 14:56:58','2015-03-14 14:56:58',1,30003227,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(4702,'2015-03-14 14:56:58','2015-03-14 14:56:58',1,30002166,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(4703,'2015-03-14 14:56:58','2015-03-14 14:56:58',1,30000419,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(4704,'2015-03-14 14:56:58','2015-03-14 14:56:58',1,30004685,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(4705,'2015-03-14 14:56:58','2015-10-11 16:46:37',1,30002991,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1),(4706,'2015-03-14 14:56:58','2015-03-14 14:56:58',1,30001797,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(4707,'2015-03-14 14:56:58','2015-10-11 16:46:37',1,30002101,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0),(4708,'2015-03-14 14:56:58','2015-03-14 14:56:58',1,30004807,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(4709,'2015-03-14 14:56:58','2015-10-11 16:46:37',1,30004091,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(4710,'2015-03-14 14:56:58','2015-10-11 16:46:37',1,30000118,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(4711,'2015-03-14 14:56:58','2015-03-14 14:56:58',1,30002361,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(4712,'2015-03-14 14:56:58','2015-03-14 14:56:58',1,30004602,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(4713,'2015-03-14 14:56:58','2015-03-14 14:56:58',1,30004349,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(4714,'2015-03-14 14:56:58','2015-03-14 14:56:58',1,30004463,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(4715,'2015-03-14 14:56:58','2015-03-14 14:56:58',1,30001465,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(4716,'2015-03-14 14:56:58','2015-10-11 16:46:37',1,30000114,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0),(4717,'2015-03-14 14:56:58','2015-10-11 16:46:37',1,30002473,0,0,0,0,0,0,0,0,0,0,0,0,0,2,0,1,2,0,0,0,1,0,0,1),(4718,'2015-03-14 14:56:58','2015-03-14 14:56:58',1,30001813,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(4719,'2015-03-14 14:56:58','2015-03-14 14:56:58',1,30001618,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(4720,'2015-03-14 14:56:58','2015-03-14 14:56:58',1,30002024,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(4721,'2015-03-14 14:56:58','2015-03-14 14:56:58',1,30001244,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(4722,'2015-03-14 14:56:58','2015-03-14 14:56:58',1,30002209,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(4723,'2015-03-14 14:56:58','2015-03-14 14:56:58',1,30045321,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(4724,'2015-03-14 14:56:58','2015-03-14 14:56:58',1,30000201,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(4725,'2015-03-14 14:56:58','2015-10-11 16:46:38',1,30000997,0,0,0,2,0,0,0,0,1,0,0,0,0,0,1,1,0,0,0,0,0,0,0,0),(4726,'2015-03-14 14:56:58','2015-10-11 16:46:38',1,30004404,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,1,0),(4727,'2015-03-14 14:56:58','2015-03-14 14:56:58',1,30000819,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(4728,'2015-03-14 14:56:58','2015-10-11 16:46:38',1,30004245,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0),(4729,'2015-03-14 14:56:58','2015-10-11 16:46:38',1,30002825,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0),(4730,'2015-03-14 14:56:58','2015-10-11 16:46:38',1,30002768,2,2,2,11,3,2,4,1,5,0,0,0,1,2,4,5,2,2,0,0,2,2,0,1),(4731,'2015-03-14 14:56:58','2015-03-14 14:56:58',1,30002956,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(4732,'2015-03-14 14:56:58','2015-10-11 16:46:38',1,30001368,0,0,0,0,0,0,0,0,1,2,0,0,0,1,1,0,0,0,0,0,1,0,0,0),(4733,'2015-03-14 14:56:58','2015-10-11 16:46:38',1,30000197,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,1,1,0,0,0),(4734,'2015-03-14 14:56:58','2015-03-14 14:56:58',1,30004922,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(4735,'2015-03-14 14:56:58','2015-03-14 14:56:58',1,30001821,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(4736,'2015-03-14 14:56:58','2015-10-11 16:46:38',1,30002503,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(4737,'2015-03-14 14:56:58','2015-03-14 14:56:58',1,30001432,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(4738,'2015-03-14 14:56:58','2015-03-14 14:56:58',1,30004779,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(4739,'2015-03-14 14:56:58','2015-10-11 16:46:38',1,30001854,3,0,1,2,0,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,2),(4740,'2015-03-14 14:56:58','2015-03-14 14:56:58',1,30003352,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(4741,'2015-03-14 14:56:58','2015-10-11 16:46:38',1,30002504,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(4742,'2015-03-14 14:56:58','2015-03-14 14:56:58',1,30003235,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(4743,'2015-03-14 14:56:58','2015-03-14 14:56:58',1,30000229,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(4744,'2015-03-14 14:56:58','2015-10-11 16:46:38',1,30004706,0,0,1,1,0,0,0,0,3,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(4745,'2015-03-14 14:56:58','2015-03-14 14:56:58',1,30001735,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(4746,'2015-03-14 14:56:58','2015-10-11 16:46:38',1,30000101,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,0,0,0),(4747,'2015-03-14 14:56:58','2015-03-14 14:56:58',1,30002047,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(4748,'2015-03-14 14:56:58','2015-10-11 16:46:38',1,30002083,0,0,0,1,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,1,0,0,0),(4749,'2015-03-14 14:56:58','2015-10-11 16:46:38',1,30030141,1,0,0,0,0,0,0,0,0,1,0,0,0,0,1,1,0,0,0,0,0,0,0,0),(4750,'2015-03-14 14:56:58','2015-03-14 14:56:58',1,30001875,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(4751,'2015-03-14 14:56:58','2015-03-14 14:56:58',1,30002824,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(4752,'2015-03-14 14:56:58','2015-10-11 16:46:38',1,30002955,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0),(4753,'2015-03-14 14:56:58','2015-03-14 14:56:58',1,30002610,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(4754,'2015-03-14 14:56:58','2015-03-14 14:56:58',1,30000177,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(4755,'2015-03-14 14:56:58','2015-10-11 16:46:38',1,30003005,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(4756,'2015-03-14 14:56:58','2015-03-14 14:56:58',1,30001899,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(4757,'2015-03-14 14:56:58','2015-03-14 14:56:58',1,30000313,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(4758,'2015-03-14 14:56:58','2015-10-11 16:46:38',1,30001234,0,0,0,0,0,0,1,0,0,0,1,1,4,0,1,1,0,0,0,0,1,0,0,0),(4759,'2015-03-14 14:56:58','2015-03-14 14:56:58',1,30003004,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(4760,'2015-03-14 14:56:58','2015-10-11 16:46:38',1,30003298,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0),(4761,'2015-03-14 14:56:58','2015-10-11 16:46:38',1,30000558,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0),(4762,'2015-03-14 14:56:58','2015-03-14 14:56:58',1,30000911,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(4763,'2015-03-14 14:56:58','2015-10-11 16:46:38',1,30000858,1,0,0,0,0,0,0,0,0,2,1,1,1,0,1,1,0,1,0,0,0,0,0,0),(4764,'2015-03-14 14:56:58','2015-03-14 14:56:58',1,30000184,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(4765,'2015-03-14 14:56:58','2015-10-11 16:46:38',1,30001409,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,1,0,0),(4766,'2015-03-14 14:56:58','2015-03-14 14:56:58',1,30000282,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(4767,'2015-03-14 14:56:58','2015-03-14 14:56:58',1,30003481,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(4768,'2015-03-14 14:56:58','2015-10-11 16:46:38',1,30002707,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1),(4769,'2015-03-14 14:56:58','2015-03-14 14:56:58',1,30002413,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(4770,'2015-03-14 14:56:58','2015-03-14 14:56:58',1,30000965,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(4771,'2015-03-14 14:56:58','2015-03-14 14:56:58',1,30001679,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(4772,'2015-03-14 14:56:58','2015-10-11 16:46:38',1,30000129,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,0,0,0),(4773,'2015-03-14 14:56:58','2015-03-14 14:56:58',1,30001816,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(4774,'2015-03-14 14:56:58','2015-10-11 16:46:38',1,30004495,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(4775,'2015-03-14 14:56:58','2015-03-14 14:56:58',1,30001366,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(4776,'2015-03-14 14:56:58','2015-03-14 14:56:58',1,30002814,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(4777,'2015-03-14 14:56:58','2015-10-11 16:46:38',1,30000151,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0),(4778,'2015-03-14 14:56:58','2015-03-14 14:56:58',1,30001634,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(4779,'2015-03-14 14:56:58','2015-10-11 16:46:38',1,30003799,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,1,0,0,0,0,0,0),(4780,'2015-03-14 14:56:58','2015-10-11 16:46:38',1,30003043,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0),(4781,'2015-03-14 14:56:58','2015-10-11 16:46:38',1,30000037,0,0,0,0,0,0,0,0,0,2,0,0,0,0,0,0,0,0,0,0,1,0,0,0),(4782,'2015-03-14 14:56:58','2015-03-14 14:56:58',1,30002998,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(4783,'2015-03-14 14:56:58','2015-03-14 14:56:58',1,30003901,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(4784,'2015-03-14 14:56:58','2015-10-11 16:46:38',1,30001208,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0),(4785,'2015-03-14 14:56:58','2015-03-14 14:56:58',1,30004310,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(4786,'2015-03-14 14:56:58','2015-03-14 14:56:58',1,30003955,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(4787,'2015-03-14 14:56:58','2015-10-11 16:46:38',1,30004938,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,1,0,0,0,1,0),(4788,'2015-03-14 14:56:58','2015-10-11 16:46:38',1,30001966,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(4789,'2015-03-14 14:56:58','2015-03-14 14:56:58',1,30040141,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(4790,'2015-03-14 14:56:58','2015-03-14 14:56:58',1,30002070,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(4791,'2015-03-14 14:56:58','2015-10-11 16:46:38',1,30000139,1,0,1,0,1,1,0,0,0,1,0,0,0,0,1,0,1,1,0,0,0,0,1,0),(4792,'2015-03-14 14:56:58','2015-03-14 14:56:58',1,30003417,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(4793,'2015-03-14 14:56:58','2015-10-11 16:46:38',1,30002755,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,1,0,1),(4794,'2015-03-14 14:56:58','2015-03-14 14:56:58',1,30000382,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(4795,'2015-03-14 14:56:58','2015-03-14 14:56:58',1,30000068,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(4796,'2015-03-14 14:56:58','2015-10-11 16:46:38',1,30002987,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0),(4797,'2015-03-14 14:56:58','2015-03-14 14:56:58',1,30042505,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(4798,'2015-03-14 14:56:58','2015-03-14 14:56:58',1,30004151,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(4799,'2015-03-14 14:56:58','2015-10-11 16:46:38',1,30000921,0,0,0,1,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(4800,'2015-03-14 14:56:58','2015-10-11 16:46:38',1,30004468,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1),(4801,'2015-03-14 14:56:58','2015-03-14 14:56:58',1,30003306,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(4802,'2015-03-14 14:56:58','2015-10-11 16:46:38',1,30001045,0,0,1,0,0,0,0,0,0,0,0,0,3,1,3,1,2,1,0,3,7,4,3,1),(4803,'2015-03-14 14:56:58','2015-10-11 16:46:38',1,30002049,0,1,0,1,1,1,0,0,0,3,0,3,1,7,3,0,0,0,0,0,0,0,0,1),(4804,'2015-03-14 14:56:58','2015-03-14 14:56:58',1,30045326,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(4805,'2015-03-14 14:56:58','2015-10-11 16:46:38',1,30002759,0,0,0,0,1,0,1,1,1,1,0,1,0,0,1,1,0,0,0,1,2,0,0,0),(4806,'2015-03-14 14:56:58','2015-10-11 16:46:38',1,30003077,1,0,2,0,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,1,2,0,0,0),(4807,'2015-03-14 14:56:58','2015-10-11 16:46:38',1,30003988,0,0,0,0,0,0,0,0,1,0,0,0,0,0,1,1,0,0,0,0,0,0,0,0),(4808,'2015-03-14 14:56:58','2015-03-14 14:56:58',1,30001152,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(4809,'2015-03-14 14:56:58','2015-10-11 16:46:38',1,30001003,0,0,0,0,0,0,0,0,0,0,0,0,1,0,3,3,0,0,0,0,0,1,0,0),(4810,'2015-03-14 14:56:58','2015-03-14 14:56:58',1,30000549,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(4811,'2015-03-14 14:56:58','2015-03-14 14:56:58',1,30001121,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(4812,'2015-03-14 14:56:58','2015-03-14 14:56:58',1,30005150,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(4813,'2015-03-14 14:56:58','2015-03-14 14:56:58',1,30003981,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(4814,'2015-03-14 14:56:58','2015-03-14 14:56:58',1,30000561,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(4815,'2015-03-14 14:56:58','2015-03-14 14:56:58',1,30003536,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(4816,'2015-03-14 14:56:58','2015-10-11 16:46:38',1,30000040,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,0,0),(4817,'2015-03-14 14:56:58','2015-03-14 14:56:58',1,30000930,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(4818,'2015-03-14 14:56:58','2015-03-14 14:56:58',1,30005097,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(4819,'2015-03-14 14:56:58','2015-03-14 14:56:58',1,30003965,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(4820,'2015-03-14 14:56:58','2015-10-11 16:46:38',1,30001162,0,0,0,0,0,0,0,1,0,22,9,9,2,18,3,5,4,3,2,18,19,46,2,1),(4821,'2015-03-14 14:56:58','2015-03-14 14:56:58',1,30000434,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(4822,'2015-03-14 14:56:58','2015-03-14 14:56:58',1,30000393,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(4823,'2015-03-14 14:56:58','2015-03-14 14:56:58',1,30000732,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(4824,'2015-03-14 14:56:58','2015-10-11 16:46:38',1,30000988,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(4825,'2015-03-14 14:56:58','2015-03-14 14:56:58',1,30001008,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(4826,'2015-03-14 14:56:58','2015-03-14 14:56:58',1,30001143,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(4827,'2015-03-14 14:56:58','2015-03-14 14:56:58',1,30000674,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(4828,'2015-03-14 14:56:58','2015-10-11 16:46:38',1,30003672,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0),(4829,'2015-03-14 14:56:58','2015-10-11 16:46:38',1,30003953,0,0,0,1,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(4830,'2015-03-14 14:56:58','2015-10-11 16:46:38',1,30002437,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0),(4831,'2015-03-14 14:56:58','2015-10-11 16:46:38',1,30000264,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0),(4832,'2015-03-14 14:56:58','2015-03-14 14:56:58',1,30000248,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(4833,'2015-03-14 14:56:58','2015-10-11 16:46:38',1,30002379,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(4834,'2015-03-14 14:56:58','2015-03-14 14:56:58',1,30000755,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(4835,'2015-03-14 14:56:58','2015-03-14 14:56:58',1,30000694,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(4836,'2015-03-14 14:56:58','2015-03-14 14:56:58',1,30001787,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(4837,'2015-03-14 14:56:58','2015-03-14 14:56:58',1,30004406,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(4838,'2015-03-14 14:56:58','2015-03-14 14:56:58',1,30003226,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(4839,'2015-03-14 14:56:58','2015-03-14 14:56:58',1,30003130,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(4840,'2015-03-14 14:56:58','2015-10-11 16:46:38',1,30003194,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(4841,'2015-03-14 14:56:58','2015-10-11 16:46:38',1,30000849,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(4842,'2015-03-14 14:56:58','2015-03-14 14:56:58',1,30001892,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(4843,'2015-03-14 14:56:58','2015-03-14 14:56:58',1,30003143,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(4844,'2015-03-14 14:56:58','2015-03-14 14:56:58',1,30002862,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(4845,'2015-03-14 14:56:58','2015-10-11 16:46:38',1,30001222,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0),(4846,'2015-03-14 14:56:58','2015-10-11 16:46:38',1,30001084,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(4847,'2015-03-14 14:56:58','2015-03-14 14:56:58',1,30001301,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(4848,'2015-03-14 14:56:58','2015-03-14 14:56:58',1,30000375,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(4849,'2015-03-14 14:56:58','2015-03-14 14:56:58',1,30003294,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(4850,'2015-03-14 14:56:58','2015-03-14 14:56:58',1,30004644,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(4851,'2015-03-14 14:56:58','2015-03-14 14:56:58',1,30000888,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(4852,'2015-03-14 14:56:58','2015-10-11 16:46:38',1,30003666,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(4853,'2015-03-14 14:56:58','2015-10-11 16:46:38',1,30001015,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(4854,'2015-03-14 14:56:58','2015-03-14 14:56:58',1,30000603,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(4855,'2015-03-14 14:56:58','2015-03-14 14:56:58',1,30000984,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(4856,'2015-03-14 14:56:58','2015-03-14 14:56:58',1,30004329,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(4857,'2015-03-14 14:56:58','2015-03-14 14:56:58',1,30001175,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(4858,'2015-03-14 14:56:58','2015-03-14 14:56:58',1,30001383,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(4859,'2015-03-14 14:56:58','2015-03-14 14:56:58',1,30000123,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(4860,'2015-03-14 14:56:58','2015-10-11 16:46:38',1,30045331,0,1,0,0,0,0,0,0,0,0,1,1,0,0,2,1,1,0,0,0,0,0,0,1),(4861,'2015-03-14 14:56:58','2015-03-14 14:56:58',1,30005306,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(4862,'2015-03-14 14:56:58','2015-03-14 14:56:58',1,30004196,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(4863,'2015-03-14 14:56:58','2015-10-11 16:46:38',1,30000170,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(4864,'2015-03-14 14:56:58','2015-03-14 14:56:58',1,30004289,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(4865,'2015-03-14 14:56:58','2015-03-14 14:56:58',1,30005029,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(4866,'2015-03-14 14:56:58','2015-10-11 16:46:38',1,30003483,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0),(4867,'2015-03-14 14:56:58','2015-10-11 16:46:38',1,30004230,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,1,0,0,0,0,0),(4868,'2015-03-14 14:56:58','2015-10-11 16:46:38',1,30002538,1,0,0,0,0,0,0,2,2,0,3,2,0,0,3,1,0,0,1,0,1,1,0,2),(4869,'2015-03-14 14:56:58','2015-03-14 14:56:58',1,30002400,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(4870,'2015-03-14 14:56:58','2015-10-11 16:46:38',1,30000190,0,0,0,0,0,0,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(4871,'2015-03-14 14:56:58','2015-10-11 16:46:38',1,30002230,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0),(4872,'2015-03-14 14:56:58','2015-10-11 16:46:38',1,30000173,0,0,0,0,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(4873,'2015-03-14 14:56:58','2015-03-14 14:56:58',1,30003027,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(4874,'2015-03-14 14:56:58','2015-10-11 16:46:38',1,30005318,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(4875,'2015-03-14 14:56:58','2015-10-11 16:46:38',1,30004547,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(4876,'2015-03-14 14:56:58','2015-10-11 16:46:38',1,30000806,0,0,1,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0),(4877,'2015-03-14 14:56:58','2015-03-14 14:56:58',1,30000842,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(4878,'2015-03-14 14:56:58','2015-03-14 14:56:58',1,30001824,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(4879,'2015-03-14 14:56:58','2015-10-11 16:46:38',1,30005195,0,1,0,0,0,0,1,0,0,0,0,0,0,0,1,1,1,0,0,0,0,0,0,0),(4880,'2015-03-14 14:56:58','2015-10-11 16:46:38',1,30003589,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(4881,'2015-03-14 14:56:58','2015-10-11 16:46:38',1,30004246,0,1,0,0,0,0,0,0,0,0,0,0,0,0,2,0,0,5,0,0,0,0,0,0),(4882,'2015-03-14 14:56:58','2015-03-14 14:56:58',1,30001362,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(4883,'2015-03-14 14:56:58','2015-10-11 16:46:38',1,30001380,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,1),(4884,'2015-03-14 14:56:58','2015-03-14 14:56:58',1,30002798,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(4885,'2015-03-14 14:56:58','2015-03-14 14:56:58',1,30004220,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(4886,'2015-03-14 14:56:58','2015-10-11 16:46:38',1,30003820,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0),(4887,'2015-03-14 14:56:58','2015-10-11 16:46:38',1,30003572,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(4888,'2015-03-14 14:56:58','2015-10-11 16:46:38',1,30003790,3,0,1,0,0,1,0,0,0,0,0,0,0,0,0,0,1,0,0,0,1,0,1,0),(4889,'2015-03-14 14:56:58','2015-10-11 16:46:38',1,30003899,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(4890,'2015-03-14 14:56:58','2015-03-14 14:56:58',1,30004433,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(4891,'2015-03-14 14:56:58','2015-10-11 16:46:38',1,30002904,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1),(4892,'2015-03-14 14:56:58','2015-10-11 16:46:38',1,30001303,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,0,1,0,1,0),(4893,'2015-03-14 14:56:58','2015-03-14 14:56:58',1,30001351,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(4894,'2015-03-14 14:56:58','2015-03-14 14:56:58',1,30001794,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(4895,'2015-03-14 14:56:58','2015-03-14 14:56:58',1,30000295,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(4896,'2015-03-14 14:56:58','2015-10-11 16:46:38',1,30004997,0,0,0,0,1,1,2,2,5,1,1,1,0,0,0,0,1,1,0,0,1,1,0,0),(4897,'2015-03-14 14:56:58','2015-03-14 14:56:58',1,30000346,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(4898,'2015-03-14 14:56:58','2015-03-14 14:56:58',1,30003816,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(4899,'2015-03-14 14:56:58','2015-10-11 16:46:38',1,30045309,0,0,0,0,0,0,1,0,0,0,0,0,1,0,0,0,0,1,0,0,0,1,0,0),(4900,'2015-03-14 14:56:58','2015-10-11 16:46:38',1,30004993,6,2,2,2,3,2,1,1,0,7,3,3,0,1,1,3,4,1,4,1,0,14,5,1),(4901,'2015-03-14 14:56:58','2015-03-14 14:56:58',1,30003390,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(4902,'2015-03-14 14:56:58','2015-10-11 16:46:38',1,30002088,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,1,2,0),(4903,'2015-03-14 14:56:58','2015-03-14 14:56:58',1,30004991,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(4904,'2015-03-14 14:56:58','2015-03-14 14:56:58',1,30002731,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(4905,'2015-03-14 14:56:58','2015-03-14 14:56:58',1,30003810,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(4906,'2015-03-14 14:56:58','2015-03-14 14:56:58',1,30002487,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(4907,'2015-03-14 14:56:58','2015-03-14 14:56:58',1,30004551,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(4908,'2015-03-14 14:56:58','2015-03-14 14:56:58',1,30000625,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(4909,'2015-03-14 14:56:58','2015-03-14 14:56:58',1,30001566,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(4910,'2015-03-14 14:56:58','2015-10-11 16:46:38',1,30003749,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(4911,'2015-03-14 14:56:58','2015-10-11 16:46:38',1,30000927,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0),(4912,'2015-03-14 14:56:58','2015-10-11 16:46:38',1,30004315,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0),(4913,'2015-03-14 14:56:58','2015-03-14 14:56:58',1,30003116,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(4914,'2015-03-14 14:56:58','2015-10-11 16:46:38',1,30003339,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0),(4915,'2015-03-14 14:56:58','2015-10-11 16:46:38',1,30003836,0,0,2,0,0,0,0,0,0,0,0,0,0,2,3,1,0,0,1,0,1,0,0,0),(4916,'2015-03-14 14:56:58','2015-03-14 14:56:58',1,30000420,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(4917,'2015-03-14 14:56:58','2015-03-14 14:56:58',1,30004453,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(4918,'2015-03-14 14:56:58','2015-03-14 14:56:58',1,30001925,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(4919,'2015-03-14 14:56:58','2015-10-11 16:46:38',1,30001019,0,0,0,1,1,1,0,0,0,1,0,0,0,2,1,1,0,0,1,2,1,0,0,0),(4920,'2015-03-14 14:56:58','2015-03-14 14:56:58',1,30000322,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(4921,'2015-03-14 14:56:58','2015-03-14 14:56:58',1,30003399,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(4922,'2015-03-14 14:56:58','2015-03-14 14:56:58',1,30000193,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(4923,'2015-03-14 14:56:58','2015-10-11 16:46:38',1,30002948,0,0,0,0,1,1,0,0,1,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0),(4924,'2015-03-14 14:56:58','2015-10-11 16:46:38',1,30004943,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(4925,'2015-03-14 14:56:58','2015-03-14 14:56:58',1,30004931,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(4926,'2015-03-14 14:56:58','2015-03-14 14:56:58',1,30003175,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(4927,'2015-03-14 14:56:58','2015-03-14 14:56:58',1,30001506,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(4928,'2015-03-14 14:56:58','2015-10-11 16:46:38',1,30003685,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(4929,'2015-03-14 14:56:58','2015-10-11 16:46:38',1,30003361,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(4930,'2015-03-14 14:56:58','2015-03-14 14:56:58',1,30002448,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(4931,'2015-03-14 14:56:58','2015-03-14 14:56:58',1,30003959,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(4932,'2015-03-14 14:56:58','2015-03-14 14:56:58',1,30001836,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(4933,'2015-03-14 14:56:58','2015-03-14 14:56:58',1,30003129,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(4934,'2015-03-14 14:56:58','2015-10-11 16:46:38',1,30004890,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0),(4935,'2015-03-14 14:56:58','2015-03-14 14:56:58',1,30002573,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(4936,'2015-03-14 14:56:58','2015-10-11 16:46:38',1,30001443,0,0,0,1,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(4937,'2015-03-14 14:56:58','2015-03-14 14:56:58',1,30003309,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(4938,'2015-03-14 14:56:58','2015-10-11 16:46:38',1,30001073,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0),(4939,'2015-03-14 14:56:58','2015-03-14 14:56:58',1,30001327,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(4940,'2015-03-14 14:56:58','2015-03-14 14:56:58',1,30004457,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(4941,'2015-03-14 14:56:58','2015-03-14 14:56:58',1,30001054,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(4942,'2015-03-14 14:56:58','2015-10-11 16:46:38',1,30005173,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0),(4943,'2015-03-14 14:56:58','2015-03-14 14:56:58',1,30001541,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(4944,'2015-03-14 14:56:58','2015-03-14 14:56:58',1,30000924,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(4945,'2015-03-14 14:56:58','2015-03-14 14:56:58',1,30004227,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(4946,'2015-03-14 14:56:58','2015-10-11 16:46:38',1,30003098,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,2,0,0,1,1,0,0),(4947,'2015-03-14 14:56:58','2015-10-11 16:46:38',1,30002655,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,1,0,0,0,0,0,0,0,0),(4948,'2015-03-14 14:56:58','2015-10-11 16:46:38',1,30004936,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(4949,'2015-03-14 14:56:58','2015-03-14 14:56:58',1,30001477,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(4950,'2015-03-14 14:56:58','2015-03-14 14:56:58',1,30003247,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(4951,'2015-03-14 14:56:58','2015-10-11 16:46:38',1,30004822,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(4952,'2015-03-14 14:56:58','2015-03-14 14:56:58',1,30002497,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(4953,'2015-03-14 14:56:58','2015-10-11 16:46:38',1,30004392,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0),(4954,'2015-03-14 14:56:58','2015-10-11 16:46:38',1,30004055,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(4955,'2015-03-14 14:56:58','2015-03-14 14:56:58',1,30000751,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(4956,'2015-03-14 14:56:58','2015-03-14 14:56:58',1,30000345,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(4957,'2015-03-14 14:56:58','2015-03-14 14:56:58',1,30005177,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(4958,'2015-03-14 14:56:58','2015-03-14 14:56:58',1,30002147,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(4959,'2015-03-14 14:56:58','2015-03-14 14:56:58',1,30004005,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(4960,'2015-03-14 14:56:58','2015-10-11 16:46:38',1,30003968,0,0,2,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,1,0,0,0),(4961,'2015-03-14 14:56:58','2015-03-14 14:56:58',1,30004753,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(4962,'2015-03-14 14:56:58','2015-03-14 14:56:58',1,30005142,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(4963,'2015-03-14 14:56:58','2015-03-14 14:56:58',1,30000830,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(4964,'2015-03-14 14:56:58','2015-10-11 16:46:38',1,30001250,0,0,0,0,0,0,0,0,0,1,7,6,0,0,1,2,1,0,0,0,2,1,0,0),(4965,'2015-03-14 14:56:58','2015-03-14 14:56:58',1,30001939,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(4966,'2015-03-14 14:56:58','2015-03-14 14:56:58',1,30000532,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(4967,'2015-03-14 14:56:58','2015-03-14 14:56:58',1,30000932,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(4968,'2015-03-14 14:56:58','2015-03-14 14:56:58',1,30000893,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(4969,'2015-03-14 14:56:58','2015-10-11 16:46:38',1,30001897,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,1,0),(4970,'2015-03-14 14:56:58','2015-03-14 14:56:58',1,30001516,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(4971,'2015-03-14 14:56:58','2015-10-11 16:46:38',1,30001105,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0),(4972,'2015-03-14 14:56:58','2015-03-14 14:56:58',1,30004537,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(4973,'2015-03-14 14:56:58','2015-03-14 14:56:58',1,30003660,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(4974,'2015-03-14 14:56:58','2015-03-14 14:56:58',1,30004538,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(4975,'2015-03-14 14:56:58','2015-03-14 14:56:58',1,30000617,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(4976,'2015-03-14 14:56:58','2015-03-14 14:56:58',1,30001311,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(4977,'2015-03-14 14:56:58','2015-03-14 14:56:58',1,30000367,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(4978,'2015-03-14 14:56:58','2015-03-14 14:56:58',1,30000635,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(4979,'2015-03-14 14:56:58','2015-10-11 16:46:38',1,30002172,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(4980,'2015-03-14 14:56:58','2015-03-14 14:56:58',1,30001095,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(4981,'2015-03-14 14:56:58','2015-03-14 14:56:58',1,30001522,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(4982,'2015-03-14 14:56:58','2015-03-14 14:56:58',1,30003205,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(4983,'2015-03-14 14:56:58','2015-03-14 14:56:58',1,30001502,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(4984,'2015-03-14 14:56:58','2015-03-14 14:56:58',1,30000521,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(4985,'2015-03-14 14:56:58','2015-03-14 14:56:58',1,30003983,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(4986,'2015-03-14 14:56:58','2015-10-11 16:46:38',1,30000894,0,1,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(4987,'2015-03-14 14:56:58','2015-03-14 14:56:58',1,30003622,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(4988,'2015-03-14 14:56:58','2015-10-11 16:46:38',1,30001179,0,0,0,0,0,0,0,0,0,2,2,0,0,0,0,0,0,0,0,0,0,0,0,0),(4989,'2015-03-14 14:56:58','2015-03-14 14:56:58',1,30001748,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(4990,'2015-03-14 14:56:58','2015-03-14 14:56:58',1,30003102,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(4991,'2015-03-14 14:56:58','2015-03-14 14:56:58',1,30002787,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(4992,'2015-03-14 14:56:58','2015-10-11 16:46:38',1,30000191,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0),(4993,'2015-03-14 14:56:58','2015-10-11 16:46:38',1,30003553,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0),(4994,'2015-03-14 14:56:58','2015-10-11 16:46:38',1,30002790,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0),(4995,'2015-03-14 14:56:58','2015-03-14 14:56:58',1,30004803,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(4996,'2015-03-14 14:56:58','2015-03-14 14:56:58',1,30001872,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(4997,'2015-03-14 14:56:58','2015-10-11 16:46:38',1,30000238,0,0,0,0,1,1,0,0,0,0,0,0,0,1,0,0,0,1,0,0,0,1,0,0),(4998,'2015-03-14 14:56:58','2015-10-11 16:46:38',1,30001160,0,0,1,2,0,1,0,2,8,0,6,2,0,0,0,0,0,0,0,1,4,2,3,0),(4999,'2015-03-14 14:56:58','2015-03-14 14:56:58',1,30001493,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(5000,'2015-03-14 14:56:58','2015-10-11 16:46:38',1,30004847,0,0,0,0,0,0,0,0,0,1,0,0,0,1,0,0,0,0,0,0,0,0,0,0),(5001,'2015-03-14 14:56:58','2015-03-14 14:56:58',1,30000972,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(5002,'2015-03-14 14:56:58','2015-03-14 14:56:58',1,30002415,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(5003,'2015-03-14 14:56:58','2015-10-11 16:46:38',1,30001878,0,0,1,0,0,0,0,0,0,0,0,0,1,0,1,1,0,0,0,0,0,0,0,0),(5004,'2015-03-14 14:56:58','2015-03-14 14:56:58',1,30003583,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(5005,'2015-03-14 14:56:58','2015-03-14 14:56:58',1,30000326,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(5006,'2015-03-14 14:56:58','2015-03-14 14:56:58',1,30000746,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(5007,'2015-03-14 14:56:58','2015-10-11 16:46:38',1,30001247,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0),(5008,'2015-03-14 14:56:58','2015-03-14 14:56:58',1,30000725,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(5009,'2015-03-14 14:56:58','2015-03-14 14:56:58',1,30002629,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(5010,'2015-03-14 14:56:58','2015-03-14 14:56:58',1,30002429,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(5011,'2015-03-14 14:56:58','2015-10-11 16:46:38',1,30000871,0,0,0,2,1,1,1,0,0,0,0,0,0,2,1,1,0,0,0,0,0,0,0,0),(5012,'2015-03-14 14:56:58','2015-10-11 16:46:38',1,30001839,1,1,1,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(5013,'2015-03-14 14:56:58','2015-03-14 14:56:58',1,30000687,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(5014,'2015-03-14 14:56:58','2015-10-11 16:46:38',1,30001756,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,0,0,0),(5015,'2015-03-14 14:56:58','2015-03-14 14:56:58',1,30000206,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(5016,'2015-03-14 14:56:58','2015-03-14 14:56:58',1,30003422,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(5017,'2015-03-14 14:56:58','2015-03-14 14:56:58',1,30002554,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(5018,'2015-03-14 14:56:58','2015-10-11 16:46:38',1,30001595,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1),(5019,'2015-03-14 14:56:58','2015-10-11 16:46:38',1,30001207,1,0,0,0,0,0,0,0,1,4,1,1,0,2,0,0,0,0,1,1,0,0,1,1),(5020,'2015-03-14 14:56:58','2015-03-14 14:56:58',1,30001890,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(5021,'2015-03-14 14:56:58','2015-03-14 14:56:58',1,30001755,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(5022,'2015-03-14 14:56:58','2015-10-11 16:46:38',1,30001173,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1),(5023,'2015-03-14 14:56:58','2015-03-14 14:56:58',1,30000372,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(5024,'2015-03-14 14:56:58','2015-03-14 14:56:58',1,30001336,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(5025,'2015-03-14 14:56:58','2015-03-14 14:56:58',1,30001468,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(5026,'2015-03-14 14:56:58','2015-03-14 14:56:58',1,30000315,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(5027,'2015-03-14 14:56:58','2015-03-14 14:56:58',1,30004662,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(5028,'2015-03-14 14:56:58','2015-10-11 16:46:38',1,30002854,0,0,0,2,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0),(5029,'2015-03-14 14:56:58','2015-10-11 16:46:38',1,30001849,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0),(5030,'2015-03-14 14:56:58','2015-03-14 14:56:58',1,30004368,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(5031,'2015-03-14 14:56:58','2015-03-14 14:56:58',1,30000711,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(5032,'2015-03-14 14:56:58','2015-03-14 14:56:58',1,30000928,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(5033,'2015-03-14 14:56:58','2015-10-11 16:46:38',1,30002371,0,0,0,0,0,0,0,0,0,0,0,0,1,0,1,1,0,0,0,0,0,0,0,0),(5034,'2015-03-14 14:56:58','2015-10-11 16:46:38',1,30001194,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0),(5035,'2015-03-14 14:56:58','2015-10-11 16:46:38',1,30003696,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1),(5036,'2015-03-14 14:56:58','2015-03-14 14:56:58',1,30000602,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(5037,'2015-03-14 14:56:58','2015-03-14 14:56:58',1,30004864,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(5038,'2015-03-14 14:56:58','2015-03-14 14:56:58',1,30003166,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(5039,'2015-03-14 14:56:58','2015-03-14 14:56:58',1,30000957,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(5040,'2015-03-14 14:56:58','2015-10-11 16:46:38',1,30000433,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0),(5041,'2015-03-14 14:56:58','2015-03-14 14:56:58',1,30002348,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(5042,'2015-03-14 14:56:58','2015-03-14 14:56:58',1,30000187,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(5043,'2015-03-14 14:56:58','2015-03-14 14:56:58',1,30002939,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(5044,'2015-03-14 14:56:58','2015-10-11 16:46:38',1,30003638,0,0,0,0,0,0,0,0,3,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(5045,'2015-03-14 14:56:58','2015-10-11 16:46:38',1,30000698,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,0,0,0),(5046,'2015-03-14 14:56:58','2015-03-14 14:56:58',1,30001140,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(5047,'2015-03-14 14:56:58','2015-10-11 16:46:38',1,30003216,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(5048,'2015-03-14 14:56:58','2015-03-14 14:56:58',1,30001998,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(5049,'2015-03-14 14:56:58','2015-03-14 14:56:58',1,30003256,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(5050,'2015-03-14 14:56:58','2015-10-11 16:46:38',1,30003120,0,0,0,0,0,0,0,0,0,1,0,0,0,1,0,0,0,0,0,0,0,0,0,0),(5051,'2015-03-14 14:56:58','2015-03-14 14:56:58',1,30000337,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(5052,'2015-03-14 14:56:58','2015-10-11 16:46:38',1,30004621,0,0,0,0,0,0,1,1,0,0,1,1,0,0,0,1,1,1,0,0,0,0,2,0),(5053,'2015-03-14 14:56:58','2015-03-14 14:56:58',1,30002126,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(5054,'2015-03-14 14:56:58','2015-10-11 16:46:38',1,30005016,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0),(5055,'2015-03-14 14:56:58','2015-10-11 16:46:38',1,30002622,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0),(5056,'2015-03-14 14:56:58','2015-03-14 14:56:58',1,30004840,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(5057,'2015-03-14 14:56:58','2015-03-14 14:56:58',1,30000517,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(5058,'2015-03-14 14:56:58','2015-03-14 14:56:58',1,30004915,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(5059,'2015-03-14 14:56:58','2015-03-14 14:56:58',1,30004173,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(5060,'2015-03-14 14:56:58','2015-10-11 16:46:38',1,30003744,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,0,0,1),(5061,'2015-03-14 14:56:58','2015-10-11 16:46:38',1,30002148,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0),(5062,'2015-03-14 14:56:58','2015-10-11 16:46:38',1,30003110,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0),(5063,'2015-03-14 14:56:58','2015-10-11 16:46:38',1,30001978,0,3,3,0,1,1,0,2,0,1,0,1,2,0,0,1,1,0,1,1,1,1,1,2),(5064,'2015-03-14 14:56:58','2015-03-14 14:56:58',1,30003245,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(5065,'2015-03-14 14:56:58','2015-10-11 16:46:38',1,30000541,0,0,0,0,0,0,0,0,0,1,0,0,0,1,0,0,0,0,0,0,0,0,0,0),(5066,'2015-03-14 14:56:58','2015-03-14 14:56:58',1,30003274,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(5067,'2015-03-14 14:56:58','2015-03-14 14:56:58',1,30000882,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(5068,'2015-03-14 14:56:58','2015-03-14 14:56:58',1,30003259,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(5069,'2015-03-14 14:56:58','2015-03-14 14:56:58',1,30004907,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(5070,'2015-03-14 14:56:58','2015-03-14 14:56:58',1,30003173,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(5071,'2015-03-14 14:56:58','2015-10-11 16:46:38',1,30001594,0,0,0,0,0,0,0,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,0),(5072,'2015-03-14 14:56:58','2015-03-14 14:56:58',1,30000339,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(5073,'2015-03-14 14:56:58','2015-10-11 16:46:38',1,30003278,0,0,2,0,0,0,0,0,0,1,0,0,0,1,0,0,0,0,0,0,0,0,0,0),(5074,'2015-03-14 14:56:58','2015-03-14 14:56:58',1,30004075,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(5075,'2015-03-14 14:56:58','2015-03-14 14:56:58',1,30001059,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(5076,'2015-03-14 14:56:58','2015-03-14 14:56:58',1,30003288,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(5077,'2015-03-14 14:56:58','2015-10-11 16:46:38',1,30003770,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,1),(5078,'2015-03-14 14:56:58','2015-03-14 14:56:58',1,30002916,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(5079,'2015-03-14 14:56:58','2015-03-14 14:56:58',1,30003208,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(5080,'2015-03-14 14:56:58','2015-03-14 14:56:58',1,30000808,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(5081,'2015-03-14 14:56:58','2015-03-14 14:56:58',1,30000358,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(5082,'2015-03-14 14:56:58','2015-03-14 14:56:58',1,30000833,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(5083,'2015-03-14 14:56:58','2015-10-11 16:46:38',1,30001835,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0),(5084,'2015-03-14 14:56:58','2015-03-14 14:56:58',1,30001086,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(5085,'2015-03-14 14:56:58','2015-10-11 16:46:38',1,30000713,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(5086,'2015-03-14 14:56:58','2015-03-14 14:56:58',1,30002943,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(5087,'2015-03-14 14:56:58','2015-10-11 16:46:38',1,30003688,0,0,2,1,1,1,0,1,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0),(5088,'2015-03-14 14:56:58','2015-03-14 14:56:58',1,30001211,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(5089,'2015-03-14 14:56:58','2015-10-11 16:46:38',1,30001249,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0),(5090,'2015-03-14 14:56:58','2015-03-14 14:56:58',1,30000496,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(5091,'2015-03-14 14:56:58','2015-03-14 14:56:58',1,30000245,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(5092,'2015-03-14 14:56:58','2015-10-11 16:46:38',1,30001967,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(5093,'2015-03-14 14:56:58','2015-03-14 14:56:58',1,30004331,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(5094,'2015-03-14 14:56:58','2015-10-11 16:46:38',1,30000777,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0),(5095,'2015-03-14 14:56:58','2015-03-14 14:56:58',1,30003700,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(5096,'2015-03-14 14:56:58','2015-10-11 16:46:38',1,30001905,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(5097,'2015-03-14 14:56:58','2015-10-11 16:46:38',1,30004416,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,0,0),(5098,'2015-03-14 14:56:58','2015-10-11 16:46:38',1,30003773,0,0,0,0,0,0,1,0,0,2,0,0,0,16,0,0,0,0,1,0,0,0,0,0),(5099,'2015-03-14 14:56:58','2015-03-14 14:56:58',1,30001490,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(5100,'2015-03-14 14:56:58','2015-03-14 14:56:58',1,30004355,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(5101,'2015-03-14 14:56:58','2015-03-14 14:56:58',1,30000221,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(5102,'2015-03-14 14:56:58','2015-03-14 14:56:58',1,30000664,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(5103,'2015-03-14 14:56:58','2015-10-11 16:46:38',1,30000470,0,0,0,0,0,0,0,0,0,0,0,0,0,0,3,0,0,0,0,0,0,0,0,0),(5104,'2015-03-14 14:56:58','2015-03-14 14:56:58',1,30002319,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(5105,'2015-03-14 14:56:58','2015-03-14 14:56:58',1,30000417,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(5106,'2015-03-14 14:56:58','2015-10-11 16:46:38',1,30002946,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(5107,'2015-03-14 14:56:58','2015-10-11 16:46:38',1,30002897,0,0,0,0,0,0,0,0,0,0,0,0,0,10,0,0,0,0,0,0,1,0,0,0),(5108,'2015-03-14 14:56:58','2015-03-14 14:56:58',1,30001093,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(5109,'2015-03-14 14:56:58','2015-10-11 16:46:38',1,30002118,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,0,0,0,0,0,0,1),(5110,'2015-03-14 14:56:58','2015-10-11 16:46:38',1,30000889,0,1,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0),(5111,'2015-03-14 14:56:58','2015-03-14 14:56:58',1,30001778,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(5112,'2015-03-14 14:56:58','2015-03-14 14:56:58',1,30003224,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(5113,'2015-03-14 14:56:58','2015-10-11 16:46:38',1,30000604,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0),(5114,'2015-03-14 14:56:58','2015-03-14 14:56:58',1,30000293,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(5115,'2015-03-14 14:56:58','2015-10-11 16:46:38',1,30004552,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0),(5116,'2015-03-14 14:56:58','2015-03-14 14:56:58',1,30001958,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(5117,'2015-03-14 14:56:58','2015-03-14 14:56:58',1,30004069,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(5118,'2015-03-14 14:56:58','2015-03-14 14:56:58',1,30004875,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(5119,'2015-03-14 14:56:58','2015-10-11 16:46:38',1,30003731,0,0,1,0,0,0,0,0,8,0,4,0,0,1,0,0,2,0,2,2,9,0,0,0),(5120,'2015-03-14 14:56:58','2015-03-14 14:56:58',1,30001973,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(5121,'2015-03-14 14:56:58','2015-10-11 16:46:38',1,30001798,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0),(5122,'2015-03-14 14:56:58','2015-03-14 14:56:58',1,30004613,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(5123,'2015-03-14 14:56:58','2015-03-14 14:56:58',1,30000752,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(5124,'2015-03-14 14:56:58','2015-10-11 16:46:38',1,30003263,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(5125,'2015-03-14 14:56:58','2015-10-11 16:46:38',1,30003119,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0),(5126,'2015-03-14 14:56:58','2015-03-14 14:56:58',1,30004342,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(5127,'2015-03-14 14:56:58','2015-03-14 14:56:58',1,30003252,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(5128,'2015-03-14 14:56:58','2015-03-14 14:56:58',1,30001792,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(5129,'2015-03-14 14:56:58','2015-03-14 14:56:58',1,30004894,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(5130,'2015-03-14 14:56:58','2015-03-14 14:56:58',1,30001999,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(5131,'2015-03-14 14:56:58','2015-03-14 14:56:58',1,30000750,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(5132,'2015-03-14 14:56:58','2015-10-11 16:46:38',1,30000585,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0),(5133,'2015-03-14 14:56:58','2015-03-14 14:56:58',1,30001584,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(5134,'2015-03-14 14:56:58','2015-10-11 16:46:38',1,30002155,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0),(5135,'2015-03-14 14:56:58','2015-03-14 14:56:58',1,30003313,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(5136,'2015-03-14 14:56:58','2015-03-14 14:56:58',1,30000275,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(5137,'2015-03-14 14:56:58','2015-03-14 14:56:58',1,30000447,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(5138,'2015-03-14 14:56:58','2015-03-14 14:56:58',1,30001552,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(5139,'2015-03-14 14:56:58','2015-10-11 16:46:38',1,30004038,0,0,0,0,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(5140,'2015-03-14 14:56:58','2015-03-14 14:56:58',1,30002822,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(5141,'2015-03-14 14:56:58','2015-03-14 14:56:58',1,30001113,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(5142,'2015-03-14 14:56:58','2015-03-14 14:56:58',1,30001089,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(5143,'2015-03-14 14:56:58','2015-03-14 14:56:58',1,30005095,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(5144,'2015-03-14 14:56:58','2015-03-14 14:56:58',1,30004856,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(5145,'2015-03-14 14:56:58','2015-03-14 14:56:58',1,30001753,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(5146,'2015-03-14 14:56:58','2015-10-11 16:46:38',1,30004655,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,2,3,0,1,1,2,0,0,0),(5147,'2015-03-14 14:56:58','2015-03-14 14:56:58',1,30000237,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(5148,'2015-03-14 14:56:58','2015-10-11 16:46:38',1,30000678,0,0,0,0,0,0,1,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(5149,'2015-03-14 14:56:58','2015-03-14 14:56:58',1,30002122,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(5150,'2015-03-14 14:56:58','2015-10-11 16:46:38',1,30004320,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0),(5151,'2015-03-14 14:56:58','2015-03-14 14:56:58',1,30001325,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(5152,'2015-03-14 14:56:58','2015-10-11 16:46:38',1,30004382,0,0,0,0,0,0,0,0,0,0,0,0,1,1,1,0,0,0,0,0,0,0,0,0),(5153,'2015-03-14 14:56:58','2015-03-14 14:56:58',1,30000499,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(5154,'2015-03-14 14:56:58','2015-03-14 14:56:58',1,30002600,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(5155,'2015-03-14 14:56:58','2015-10-11 16:46:38',1,30001021,0,0,0,0,0,0,0,1,0,1,0,0,1,0,2,3,3,1,0,0,0,0,1,2),(5156,'2015-03-14 14:56:58','2015-03-14 14:56:58',1,30003228,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(5157,'2015-03-14 14:56:58','2015-03-14 14:56:58',1,30005175,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(5158,'2015-03-14 14:56:58','2015-10-11 16:46:38',1,30003326,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,5),(5159,'2015-03-14 14:56:58','2015-10-11 16:46:38',1,30004932,0,0,1,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(5160,'2015-03-14 14:56:58','2015-10-11 16:46:38',1,30004062,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,1,0,0,0),(5161,'2015-03-14 14:56:58','2015-03-14 14:56:58',1,30003237,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(5162,'2015-03-14 14:56:58','2015-03-14 14:56:58',1,30004396,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(5163,'2015-03-14 14:56:58','2015-03-14 14:56:58',1,30004568,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(5164,'2015-03-14 14:56:58','2015-10-11 16:46:38',1,30004665,0,0,0,0,0,0,0,0,0,0,0,1,4,1,0,6,33,1,0,3,8,0,0,0),(5165,'2015-03-14 14:56:58','2015-10-11 16:46:38',1,30001291,0,0,0,0,0,0,0,0,0,1,0,0,0,0,1,0,0,0,0,2,2,0,0,0),(5166,'2015-03-14 14:56:58','2015-03-14 14:56:58',1,30001932,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(5167,'2015-03-14 14:56:58','2015-03-14 14:56:58',1,30001498,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(5168,'2015-03-14 14:56:58','2015-03-14 14:56:58',1,30002597,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(5169,'2015-03-14 14:56:58','2015-03-14 14:56:58',1,30003207,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(5170,'2015-03-14 14:56:58','2015-03-14 14:56:58',1,30001829,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(5171,'2015-03-14 14:56:58','2015-03-14 14:56:58',1,30003265,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(5172,'2015-03-14 14:56:58','2015-03-14 14:56:58',1,30002044,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(5173,'2015-03-14 14:56:58','2015-10-11 16:46:38',1,30002169,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,1,1,0,0,0,0),(5174,'2015-03-14 14:56:58','2015-10-11 16:46:38',1,30004941,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,0,0,1),(5175,'2015-03-14 14:56:58','2015-03-14 14:56:58',1,30000958,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(5176,'2015-03-14 14:56:58','2015-03-14 14:56:58',1,30001031,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(5177,'2015-03-14 14:56:58','2015-03-14 14:56:58',1,30004859,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(5178,'2015-03-14 14:56:58','2015-03-14 14:56:58',1,30002162,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(5179,'2015-03-14 14:56:58','2015-03-14 14:56:58',1,30002586,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(5180,'2015-03-14 14:56:58','2015-03-14 14:56:58',1,30001039,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(5181,'2015-03-14 14:56:58','2015-10-11 16:46:38',1,30003726,2,0,1,0,1,1,6,0,1,2,0,1,0,2,2,0,0,0,4,1,1,2,0,0),(5182,'2015-03-14 14:56:58','2015-03-14 14:56:58',1,30004898,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(5183,'2015-03-14 14:56:58','2015-10-11 16:46:38',1,30002176,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0),(5184,'2015-03-14 14:56:58','2015-10-11 16:46:38',1,30004763,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0),(5185,'2015-03-14 14:56:58','2015-03-14 14:56:58',1,30004809,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(5186,'2015-03-14 14:56:58','2015-10-11 16:46:38',1,30001255,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,0,0,0,0,0,0,0),(5187,'2015-03-14 14:56:58','2015-03-14 14:56:58',1,30000884,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(5188,'2015-03-14 14:56:58','2015-10-11 16:46:38',1,30004171,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0),(5189,'2015-03-14 14:56:58','2015-03-14 14:56:58',1,30000331,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(5190,'2015-03-14 14:56:58','2015-03-14 14:56:58',1,30001791,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(5191,'2015-03-14 14:56:58','2015-10-11 16:46:38',1,30001261,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,1,0,0,0),(5192,'2015-03-14 14:56:58','2015-03-14 14:56:58',1,30003342,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(5193,'2015-03-14 14:56:58','2015-10-11 16:46:38',1,30001108,0,0,0,1,0,0,0,0,0,3,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(5194,'2015-03-14 14:56:58','2015-03-14 14:56:58',1,30004428,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(5195,'2015-03-14 14:56:58','2015-03-14 14:56:58',1,30003651,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(5196,'2015-03-14 14:56:58','2015-10-11 16:46:38',1,30000306,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0),(5197,'2015-03-14 14:56:58','2015-10-11 16:46:38',1,30000220,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(5198,'2015-03-14 14:56:58','2015-10-11 16:46:38',1,30001846,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0),(5199,'2015-03-14 14:56:58','2015-03-14 14:56:58',1,30002109,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(5200,'2015-03-14 14:56:58','2015-03-14 14:56:58',1,30002037,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(5201,'2015-03-14 14:56:58','2015-03-14 14:56:58',1,30004456,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(5202,'2015-03-14 14:56:58','2015-03-14 14:56:58',1,30002115,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(5203,'2015-03-14 14:56:58','2015-03-14 14:56:58',1,30000918,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(5204,'2015-03-14 14:56:58','2015-03-14 14:56:58',1,30001570,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(5205,'2015-03-14 14:56:58','2015-03-14 14:56:58',1,30001546,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(5206,'2015-03-14 14:56:58','2015-03-14 14:56:58',1,30000729,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(5207,'2015-03-14 14:56:58','2015-10-11 16:46:38',1,30004785,1,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0),(5208,'2015-03-14 14:56:58','2015-03-14 14:56:58',1,30000308,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(5209,'2015-03-14 14:56:58','2015-03-14 14:56:58',1,30001058,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(5210,'2015-03-14 14:56:58','2015-03-14 14:56:58',1,30001262,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(5211,'2015-03-14 14:56:58','2015-10-11 16:46:38',1,30000947,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,1,0,0,0,0,0,0,0),(5212,'2015-03-14 14:56:58','2015-03-14 14:56:58',1,30001559,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(5213,'2015-03-14 14:56:58','2015-10-11 16:46:38',1,30002466,1,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,0,0,0,0,0,0),(5214,'2015-03-14 14:56:58','2015-10-11 16:46:38',1,30003734,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,2,0,0,0,0,0,0,0,0),(5215,'2015-03-14 14:56:58','2015-10-11 16:46:38',1,30003307,2,0,0,0,0,0,1,0,0,0,2,1,0,1,0,0,0,2,1,0,1,3,1,1),(5216,'2015-03-14 14:56:58','2015-10-11 16:46:38',1,30002902,0,0,0,0,0,0,4,0,0,6,7,10,6,21,5,1,2,1,6,0,0,14,1,1),(5217,'2015-03-14 14:56:58','2015-03-14 14:56:58',1,30000080,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(5218,'2015-03-14 14:56:58','2015-10-11 16:46:38',1,30004286,0,0,0,0,0,0,0,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,0),(5219,'2015-03-14 14:56:58','2015-03-14 14:56:58',1,30002592,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(5220,'2015-03-14 14:56:58','2015-03-14 14:56:58',1,30001701,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(5221,'2015-03-14 14:56:58','2015-03-14 14:56:58',1,30003158,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(5222,'2015-03-14 14:56:58','2015-10-11 16:46:38',1,30004111,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0),(5223,'2015-03-14 14:56:58','2015-10-11 16:46:38',1,30002762,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0),(5224,'2015-03-14 14:56:58','2015-03-14 14:56:58',1,30001713,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(5225,'2015-03-14 14:56:58','2015-03-14 14:56:58',1,30004797,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(5226,'2015-03-14 14:56:58','2015-03-14 14:56:58',1,30001525,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(5227,'2015-03-14 14:56:58','2015-03-14 14:56:58',1,30001803,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(5228,'2015-03-14 14:56:58','2015-03-14 14:56:58',1,30000621,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(5229,'2015-03-14 14:56:58','2015-03-14 14:56:58',1,30001915,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(5230,'2015-03-14 14:56:58','2015-03-14 14:56:58',1,30004144,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(5231,'2015-03-14 14:56:58','2015-03-14 14:56:58',1,30001710,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(5232,'2015-03-14 14:56:58','2015-03-14 14:56:58',1,30003514,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(5233,'2015-03-14 14:56:58','2015-10-11 16:46:38',1,30004236,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0),(5234,'2015-03-14 14:56:58','2015-03-14 14:56:58',1,30004154,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(5235,'2015-03-14 14:56:58','2015-03-14 14:56:58',1,30004265,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(5236,'2015-03-14 14:56:58','2015-03-14 14:56:58',1,30003872,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(5237,'2015-03-14 14:56:58','2015-10-11 16:46:38',1,30003997,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,0,0,0,0,0,0),(5238,'2015-03-14 14:56:58','2015-03-14 14:56:58',1,30004838,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(5239,'2015-03-14 14:56:58','2015-03-14 14:56:58',1,30004350,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(5240,'2015-03-14 14:56:58','2015-03-14 14:56:58',1,30000530,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(5241,'2015-03-14 14:56:58','2015-10-11 16:46:38',1,30001204,0,0,1,0,0,0,0,0,0,0,0,0,2,2,1,0,0,0,0,2,0,0,1,0),(5242,'2015-03-14 14:56:58','2015-03-14 14:56:58',1,30004459,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(5243,'2015-03-14 14:56:58','2015-10-11 16:46:38',1,30004051,1,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(5244,'2015-03-14 14:56:58','2015-10-11 16:46:38',1,30000583,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0),(5245,'2015-03-14 14:56:58','2015-10-11 16:46:38',1,30004260,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(5246,'2015-03-14 14:56:58','2015-10-11 16:46:38',1,30000036,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(5247,'2015-03-14 14:56:58','2015-03-14 14:56:58',1,30001353,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(5248,'2015-03-14 14:56:58','2015-10-11 16:46:38',1,30001024,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(5249,'2015-03-14 14:56:58','2015-10-11 16:46:38',1,30003690,0,0,2,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(5250,'2015-03-14 14:56:58','2015-03-14 14:56:58',1,30001395,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(5251,'2015-03-14 14:56:58','2015-03-14 14:56:58',1,30000880,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(5252,'2015-03-14 14:56:58','2015-03-14 14:56:58',1,30001118,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(5253,'2015-03-14 14:56:58','2015-03-14 14:56:58',1,30000241,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(5254,'2015-03-14 14:56:58','2015-10-11 16:46:38',1,30002432,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,1,1,0,0,0,1,0,0,0),(5255,'2015-03-14 14:56:58','2015-03-14 14:56:58',1,30001427,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(5256,'2015-03-14 14:56:58','2015-10-11 16:46:38',1,30005017,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,1,0,0,0),(5257,'2015-03-14 14:56:58','2015-10-11 16:46:38',1,30001668,0,0,0,0,0,0,0,0,0,0,0,1,0,0,1,1,0,0,0,0,0,0,0,0),(5258,'2015-03-14 14:56:58','2015-03-14 14:56:58',1,30004131,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(5259,'2015-03-14 14:56:58','2015-03-14 14:56:58',1,30003960,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(5260,'2015-03-14 14:56:58','2015-10-11 16:46:38',1,30003493,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(5261,'2015-03-14 14:56:58','2015-10-11 16:46:38',1,30001271,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1),(5262,'2015-03-14 14:56:58','2015-10-11 16:46:38',1,30000784,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(5263,'2015-03-14 14:56:58','2015-03-14 14:56:58',1,30003753,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(5264,'2015-03-14 14:56:58','2015-03-14 14:56:58',1,30001758,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(5265,'2015-03-14 14:56:58','2015-03-14 14:56:58',1,30003212,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(5266,'2015-03-14 14:56:58','2015-03-14 14:56:58',1,30004026,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(5267,'2015-03-14 14:56:58','2015-10-11 16:46:38',1,30002794,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,1,0,0,1),(5268,'2015-03-14 14:56:58','2015-10-11 16:46:38',1,30003414,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,0,0,0),(5269,'2015-03-14 14:56:58','2015-10-11 16:46:38',1,30004627,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(5270,'2015-03-14 14:56:58','2015-03-14 14:56:58',1,30003178,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(5271,'2015-03-14 14:56:58','2015-03-14 14:56:58',1,30000408,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(5272,'2015-03-14 14:56:58','2015-03-14 14:56:58',1,30003545,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(5273,'2015-03-14 14:56:58','2015-03-14 14:56:58',1,30005204,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(5274,'2015-03-14 14:56:58','2015-10-11 16:46:38',1,30000916,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(5275,'2015-03-14 14:56:58','2015-10-11 16:46:38',1,30000007,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0),(5276,'2015-03-14 14:56:58','2015-03-14 14:56:58',1,30004679,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(5277,'2015-03-14 14:56:58','2015-10-11 16:46:38',1,30004548,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0),(5278,'2015-03-14 14:56:58','2015-03-14 14:56:58',1,30003588,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(5279,'2015-03-14 14:56:58','2015-10-11 16:46:38',1,30004977,0,1,2,0,0,3,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,1,1),(5280,'2015-03-14 14:56:58','2015-03-14 14:56:58',1,30004561,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(5281,'2015-03-14 14:56:58','2015-03-14 14:56:58',1,30003591,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(5282,'2015-03-14 14:56:58','2015-03-14 14:56:58',1,30003567,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(5283,'2015-03-14 14:56:58','2015-03-14 14:56:58',1,30004174,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(5284,'2015-03-14 14:56:58','2015-03-14 14:56:58',1,30003990,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(5285,'2015-03-14 14:56:58','2015-10-11 16:46:38',1,30003705,0,0,0,0,0,0,0,0,2,0,1,0,0,1,0,0,0,0,0,0,0,0,0,0),(5286,'2015-03-14 14:56:58','2015-03-14 14:56:58',1,30002310,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(5287,'2015-03-14 14:56:58','2015-10-11 16:46:38',1,30000231,1,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0),(5288,'2015-03-14 14:56:58','2015-10-11 16:46:38',1,30004617,0,0,9,4,0,2,12,0,0,0,0,0,2,0,0,0,0,0,2,0,0,2,1,2),(5289,'2015-03-14 14:56:58','2015-10-11 16:46:38',1,30002925,0,1,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(5290,'2015-03-14 14:56:58','2015-10-11 16:46:38',1,30004719,0,1,0,0,0,0,0,0,0,0,1,2,0,5,0,1,2,1,0,1,1,1,0,0),(5291,'2015-03-14 14:56:58','2015-03-14 14:56:58',1,30004554,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(5292,'2015-03-14 14:56:58','2015-03-14 14:56:58',1,30000506,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(5293,'2015-03-14 14:56:58','2015-03-14 14:56:58',1,30004542,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(5294,'2015-03-14 14:56:58','2015-03-14 14:56:58',1,30001956,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(5295,'2015-03-14 14:56:58','2015-10-11 16:46:38',1,30004921,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,0,0,0,0,0,0,0,0,0),(5296,'2015-03-14 14:56:58','2015-03-14 14:56:58',1,30000266,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(5297,'2015-03-14 14:56:58','2015-03-14 14:56:58',1,30000597,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(5298,'2015-03-14 14:56:58','2015-03-14 14:56:58',1,30001486,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(5299,'2015-03-14 14:56:58','2015-03-14 14:56:58',1,30001074,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(5300,'2015-03-14 14:56:58','2015-03-14 14:56:58',1,30002292,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(5301,'2015-03-14 14:56:58','2015-03-14 14:56:58',1,30001097,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(5302,'2015-03-14 14:56:58','2015-03-14 14:56:58',1,30005132,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(5303,'2015-03-14 14:56:58','2015-03-14 14:56:58',1,30002368,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(5304,'2015-03-14 14:56:58','2015-03-14 14:56:58',1,30001454,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(5305,'2015-03-14 14:56:58','2015-03-14 14:56:58',1,30001263,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(5306,'2015-03-14 14:56:58','2015-10-11 16:46:38',1,30002141,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,1,1,0,0,0),(5307,'2015-03-14 14:56:58','2015-03-14 14:56:58',1,30000387,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(5308,'2015-03-14 14:56:58','2015-10-11 16:46:38',1,30004341,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(5309,'2015-03-14 14:56:58','2015-03-14 14:56:58',1,30001613,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(5310,'2015-03-14 14:56:58','2015-03-14 14:56:58',1,30003646,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(5311,'2015-03-14 14:56:58','2015-03-14 14:56:58',1,30004965,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(5312,'2015-03-14 14:56:58','2015-03-14 14:56:58',1,30003154,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(5313,'2015-03-14 14:56:58','2015-03-14 14:56:58',1,30002617,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(5314,'2015-03-14 14:56:58','2015-03-14 14:56:58',1,30004425,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(5315,'2015-03-14 14:56:58','2015-03-14 14:56:58',1,30003357,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(5316,'2015-03-14 14:56:58','2015-10-11 16:46:38',1,30001919,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0),(5317,'2015-03-14 14:56:58','2015-10-11 16:46:38',1,30003783,0,0,0,0,0,0,0,0,0,1,0,0,0,0,1,0,0,0,0,0,1,0,2,0),(5318,'2015-03-14 14:56:58','2015-03-14 14:56:58',1,30003652,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(5319,'2015-03-14 14:56:58','2015-10-11 16:46:38',1,30003991,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(5320,'2015-03-14 14:56:58','2015-03-14 14:56:58',1,30001929,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(5321,'2015-03-14 14:56:58','2015-03-14 14:56:58',1,30003989,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(5322,'2015-03-14 14:56:58','2015-10-11 16:46:38',1,30004063,0,0,0,0,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(5323,'2015-03-14 14:56:58','2015-03-14 14:56:58',1,30003124,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(5324,'2015-03-14 14:56:58','2015-03-14 14:56:58',1,30004666,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(5325,'2015-03-14 14:56:58','2015-03-14 14:56:58',1,30000414,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(5326,'2015-03-14 14:56:58','2015-10-11 16:46:38',1,30001304,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0),(5327,'2015-03-14 14:56:58','2015-03-14 14:56:58',1,30002337,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(5328,'2015-03-14 14:56:58','2015-03-14 14:56:58',1,30001091,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(5329,'2015-03-14 14:56:58','2015-03-14 14:56:58',1,30000739,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(5330,'2015-03-14 14:56:58','2015-03-14 14:56:58',1,30001582,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(5331,'2015-03-14 14:56:58','2015-10-11 16:46:38',1,30001861,0,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0),(5332,'2015-03-14 14:56:58','2015-10-11 16:46:38',1,30004607,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(5333,'2015-03-14 14:56:58','2015-10-11 16:46:38',1,30001345,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0),(5334,'2015-03-14 14:56:58','2015-10-11 16:46:38',1,30004707,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,1,0,0,0,0,1,1,0),(5335,'2015-03-14 14:56:58','2015-03-14 14:56:58',1,30002137,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(5336,'2015-03-14 14:56:58','2015-10-11 16:46:38',1,30002117,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,0,0),(5337,'2015-03-14 14:56:58','2015-03-14 14:56:58',1,30004584,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(5338,'2015-03-14 14:56:58','2015-10-11 16:46:38',1,30000304,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0),(5339,'2015-03-14 14:56:58','2015-03-14 14:56:58',1,30001455,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(5340,'2015-03-14 14:56:58','2015-03-14 14:56:58',1,30004741,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(5341,'2015-03-14 14:56:58','2015-03-14 14:56:58',1,30003927,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(5342,'2015-03-14 14:56:58','2015-03-14 14:56:58',1,30000006,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(5343,'2015-03-14 14:56:58','2015-03-14 14:56:58',1,30003497,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(5344,'2015-03-14 14:56:58','2015-03-14 14:56:58',1,30003543,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(5345,'2015-03-14 14:56:58','2015-03-14 14:56:58',1,30005211,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(5346,'2015-03-14 14:56:58','2015-03-14 14:56:58',1,30005079,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(5347,'2015-03-14 14:56:58','2015-03-14 14:56:58',1,30002280,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(5348,'2015-03-14 14:56:58','2015-03-14 14:56:58',1,30003996,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(5349,'2015-03-14 14:56:58','2015-03-14 14:56:58',1,30004290,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(5350,'2015-03-14 14:56:58','2015-03-14 14:56:58',1,30004232,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(5351,'2015-03-14 14:56:58','2015-10-11 16:46:38',1,30004285,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0),(5352,'2015-03-14 14:56:58','2015-03-14 14:56:58',1,30002121,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(5353,'2015-03-14 14:56:58','2015-03-14 14:56:58',1,30004701,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(5354,'2015-03-14 14:56:58','2015-03-14 14:56:58',1,30004817,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(5355,'2015-03-14 14:56:58','2015-10-11 16:46:38',1,30001354,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(5356,'2015-03-14 14:56:58','2015-10-11 16:46:38',1,30000719,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(5357,'2015-03-14 14:56:58','2015-10-11 16:46:38',1,30004704,0,0,0,0,0,0,0,0,0,0,3,0,0,0,0,0,0,0,0,0,0,0,0,0),(5358,'2015-03-14 14:56:58','2015-03-14 14:56:58',1,30001734,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(5359,'2015-03-14 14:56:58','2015-03-14 14:56:58',1,30000055,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(5360,'2015-03-14 14:56:58','2015-10-11 16:46:38',1,30003928,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(5361,'2015-03-14 14:56:58','2015-03-14 14:56:58',1,30000064,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(5362,'2015-03-14 14:56:58','2015-03-14 14:56:58',1,30001765,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(5363,'2015-03-14 14:56:58','2015-03-14 14:56:58',1,30000688,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(5364,'2015-03-14 14:56:58','2015-03-14 14:56:58',1,30001866,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(5365,'2015-03-14 14:56:58','2015-03-14 14:56:58',1,30000551,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(5366,'2015-03-14 14:56:58','2015-03-14 14:56:58',1,30001922,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(5367,'2015-03-14 14:56:58','2015-03-14 14:56:58',1,30003618,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(5368,'2015-03-14 14:56:58','2015-03-14 14:56:58',1,30003550,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(5369,'2015-03-14 14:56:58','2015-10-11 16:46:38',1,30005208,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0),(5370,'2015-03-14 14:56:58','2015-10-11 16:46:38',1,30004489,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1),(5371,'2015-03-14 14:56:58','2015-03-14 14:56:58',1,30004107,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(5372,'2015-03-14 14:56:58','2015-03-14 14:56:58',1,30004127,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(5373,'2015-03-14 14:56:58','2015-10-11 16:46:38',1,30005055,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(5374,'2015-03-14 14:56:58','2015-03-14 14:56:58',1,30004140,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(5375,'2015-03-14 14:56:58','2015-10-11 16:46:38',1,30002203,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,0),(5376,'2015-03-14 14:56:58','2015-03-14 14:56:58',1,30003562,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(5377,'2015-03-14 14:56:58','2015-03-14 14:56:58',1,30003939,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(5378,'2015-03-14 14:56:58','2015-03-14 14:56:58',1,30001732,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(5379,'2015-03-14 14:56:58','2015-03-14 14:56:58',1,30004363,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(5380,'2015-03-14 14:56:58','2015-03-14 14:56:58',1,30001810,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(5381,'2015-03-14 14:56:58','2015-03-14 14:56:58',1,30000937,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(5382,'2015-03-14 14:56:58','2015-03-14 14:56:58',1,30003619,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(5383,'2015-03-14 14:56:58','2015-10-11 16:46:38',1,30002130,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0),(5384,'2015-03-14 14:56:58','2015-03-14 14:56:58',1,30001996,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(5385,'2015-03-14 14:56:58','2015-10-11 16:46:38',1,30004888,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,0,0,0,0,0),(5386,'2015-03-14 14:56:58','2015-03-14 14:56:58',1,30004498,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(5387,'2015-03-14 14:56:58','2015-03-14 14:56:58',1,30003658,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(5388,'2015-03-14 14:56:58','2015-03-14 14:56:58',1,30000407,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(5389,'2015-03-14 14:56:58','2015-10-11 16:46:38',1,30002018,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(5390,'2015-03-14 14:56:58','2015-03-14 14:56:58',1,30000449,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(5391,'2015-03-14 14:56:58','2015-10-11 16:46:38',1,30000296,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(5392,'2015-03-14 14:56:58','2015-03-14 14:56:58',1,30000935,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(5393,'2015-03-14 14:56:58','2015-03-14 14:56:58',1,30004820,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(5394,'2015-03-14 14:56:58','2015-03-14 14:56:58',1,30003289,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(5395,'2015-03-14 14:56:58','2015-03-14 14:56:58',1,30000699,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(5396,'2015-03-14 14:56:58','2015-03-14 14:56:58',1,30000802,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(5397,'2015-03-14 14:56:58','2015-10-11 16:46:38',1,30004882,0,0,0,0,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(5398,'2015-03-14 14:56:58','2015-03-14 14:56:58',1,30001133,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(5399,'2015-03-14 14:56:58','2015-10-11 16:46:38',1,30005221,0,0,1,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(5400,'2015-03-14 14:56:58','2015-03-14 14:56:58',1,30001131,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(5401,'2015-03-14 14:56:58','2015-03-14 14:56:58',1,30005067,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(5402,'2015-03-14 14:56:58','2015-03-14 14:56:58',1,30004081,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(5403,'2015-03-14 14:56:58','2015-03-14 14:56:58',1,30004160,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(5404,'2015-03-14 14:56:58','2015-03-14 14:56:58',1,30002923,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(5405,'2015-03-14 14:56:58','2015-10-11 16:46:38',1,30001226,0,0,1,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,2),(5406,'2015-03-14 14:56:58','2015-10-11 16:46:38',1,30004496,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,2,0,0,0,0,0,0,0),(5407,'2015-03-14 14:56:58','2015-10-11 16:46:38',1,30004469,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,1,0,0,0,0,0,0,0,2),(5408,'2015-03-14 14:56:58','2015-03-14 14:56:58',1,30002352,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(5409,'2015-03-14 14:56:58','2015-03-14 14:56:58',1,30000328,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(5410,'2015-03-14 14:56:58','2015-10-11 16:46:38',1,30001072,0,0,0,0,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(5411,'2015-03-14 14:56:58','2015-03-14 14:56:58',1,30003747,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(5412,'2015-03-14 14:56:58','2015-03-14 14:56:58',1,30004660,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(5413,'2015-03-14 14:56:58','2015-03-14 14:56:58',1,30004955,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(5414,'2015-03-14 14:56:58','2015-10-11 16:46:38',1,30004658,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0),(5415,'2015-03-14 14:56:58','2015-10-11 16:46:38',1,30003369,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0),(5416,'2015-03-14 14:56:58','2015-03-14 14:56:58',1,30001621,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(5417,'2015-03-14 14:56:58','2015-10-11 16:46:38',1,30003272,0,0,3,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1),(5418,'2015-03-14 14:56:58','2015-03-14 14:56:58',1,30001590,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(5419,'2015-03-14 14:56:58','2015-03-14 14:56:58',1,30004687,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(5420,'2015-03-14 14:56:58','2015-03-14 14:56:58',1,30003620,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(5421,'2015-03-14 14:56:58','2015-10-11 16:46:38',1,30004777,0,0,0,0,0,0,0,0,0,1,3,4,10,22,8,7,6,6,1,3,10,0,0,0),(5422,'2015-03-14 14:56:58','2015-03-14 14:56:58',1,30004540,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(5423,'2015-03-14 14:56:58','2015-03-14 14:56:58',1,30004528,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(5424,'2015-03-14 14:56:58','2015-10-11 16:46:38',1,30001168,1,2,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,4,0,0,0),(5425,'2015-03-14 14:56:58','2015-10-11 16:46:38',1,30004031,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(5426,'2015-03-14 14:56:58','2015-03-14 14:56:58',1,30004437,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(5427,'2015-03-14 14:56:58','2015-03-14 14:56:58',1,30001004,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(5428,'2015-03-14 14:56:58','2015-10-11 16:46:38',1,30002360,0,0,0,1,0,0,0,4,1,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0),(5429,'2015-03-14 14:56:58','2015-03-14 14:56:58',1,30000356,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(5430,'2015-03-14 14:56:58','2015-03-14 14:56:58',1,30001807,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(5431,'2015-03-14 14:56:58','2015-03-14 14:56:58',1,30002914,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(8078,'2015-08-19 19:10:03','2015-08-19 19:10:03',1,31000001,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(8081,'2015-08-19 19:10:03','2015-08-19 19:10:03',1,31000002,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(8082,'2015-08-19 19:10:03','2015-08-19 19:10:03',1,31000003,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(8083,'2015-08-19 19:10:03','2015-08-19 19:10:03',1,31000006,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(8087,'2015-08-19 19:10:03','2015-08-19 19:10:03',1,31000004,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0); /*!40000 ALTER TABLE `system_kills_pods` ENABLE KEYS */; UNLOCK TABLES; @@ -771,7 +769,7 @@ CREATE TABLE `system_kills_ships` ( LOCK TABLES `system_kills_ships` WRITE; /*!40000 ALTER TABLE `system_kills_ships` DISABLE KEYS */; -INSERT INTO `system_kills_ships` VALUES (1,'2015-03-10 22:38:42','2015-08-29 14:46:02',1,30000995,0,1,0,0,0,0,0,3,0,0,0,0,0,0,0,0,0,0,0,0,0,1,2,0),(2,'2015-03-10 22:38:42','2015-03-10 22:38:42',1,30001779,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(3,'2015-03-10 22:38:42','2015-08-29 14:46:02',1,30000838,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0),(4,'2015-03-10 22:38:42','2015-08-29 14:46:02',1,30001904,0,0,0,0,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0),(5,'2015-03-10 22:38:42','2015-03-10 22:38:42',1,30004510,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(6,'2015-03-10 22:38:42','2015-08-29 14:46:02',1,30003693,0,0,2,1,1,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,1,0,0),(7,'2015-03-10 22:38:42','2015-08-29 14:46:02',1,30001287,0,0,0,0,0,0,0,0,0,0,0,0,0,2,0,0,0,0,0,0,0,0,0,0),(8,'2015-03-10 22:38:42','2015-03-10 22:38:42',1,30000480,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(9,'2015-03-10 22:38:42','2015-08-29 14:46:02',1,30002454,0,0,0,1,0,1,0,0,0,0,0,5,0,0,0,0,0,0,0,0,0,0,0,0),(10,'2015-03-10 22:38:42','2015-08-29 14:46:02',1,30004756,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,2,0,1,1,0,0),(11,'2015-03-10 22:38:42','2015-03-10 22:38:42',1,30004674,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(12,'2015-03-10 22:38:42','2015-03-10 22:38:42',1,30001150,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(13,'2015-03-10 22:38:42','2015-03-10 22:38:42',1,30004930,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(14,'2015-03-10 22:38:42','2015-08-29 14:46:02',1,30001322,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0),(15,'2015-03-10 22:38:42','2015-03-10 22:38:42',1,30003114,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(16,'2015-03-10 22:38:42','2015-03-10 22:38:42',1,30003198,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(17,'2015-03-10 22:38:42','2015-03-10 22:38:42',1,30000222,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(18,'2015-03-10 22:38:42','2015-03-10 22:38:42',1,30001065,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(19,'2015-03-10 22:38:42','2015-08-29 14:46:02',1,30005191,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0),(20,'2015-03-10 22:38:42','2015-03-10 22:38:42',1,30003615,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(21,'2015-03-10 22:38:42','2015-08-29 14:46:02',1,30000799,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,0,0,0,0,0,0,0),(22,'2015-03-10 22:38:42','2015-03-10 22:38:42',1,30000440,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(23,'2015-03-10 22:38:42','2015-08-29 14:46:02',1,30003947,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(24,'2015-03-10 22:38:42','2015-03-10 22:38:42',1,30004509,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(25,'2015-03-10 22:38:42','2015-03-10 22:38:42',1,30001295,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(26,'2015-03-10 22:38:42','2015-08-29 14:46:02',1,30000857,0,0,0,0,0,0,0,0,0,0,0,0,3,2,0,0,0,0,0,0,0,0,0,0),(27,'2015-03-10 22:38:42','2015-03-10 22:38:42',1,30004656,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(28,'2015-03-10 22:38:42','2015-08-29 14:46:02',1,30004596,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,1,0,0,0,0),(29,'2015-03-10 22:38:42','2015-08-29 14:46:02',1,30004068,1,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0),(30,'2015-03-10 22:38:42','2015-08-29 14:46:02',1,30005186,0,0,0,0,0,5,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(31,'2015-03-10 22:38:42','2015-03-10 22:38:42',1,30002609,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(32,'2015-03-10 22:38:42','2015-03-10 22:38:42',1,30003149,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(33,'2015-03-10 22:38:42','2015-03-10 22:38:42',1,30000707,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(34,'2015-03-10 22:38:42','2015-03-10 22:38:42',1,30000822,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(35,'2015-03-10 22:38:42','2015-08-29 14:46:02',1,30002460,0,0,0,0,0,0,0,1,5,0,0,1,0,0,0,0,0,0,0,0,1,0,0,0),(36,'2015-03-10 22:38:42','2015-03-10 22:38:42',1,30000623,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(37,'2015-03-10 22:38:42','2015-08-29 14:46:02',1,30000216,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(38,'2015-03-10 22:38:42','2015-08-29 14:46:02',1,30001120,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0),(39,'2015-03-10 22:38:42','2015-08-29 14:46:02',1,30000596,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0),(40,'2015-03-10 22:38:42','2015-08-29 14:46:02',1,30002168,0,1,0,0,0,0,0,0,0,1,2,0,0,2,2,0,0,1,1,0,2,1,0,0),(41,'2015-03-10 22:38:42','2015-08-29 14:46:02',1,30004954,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0),(42,'2015-03-10 22:38:42','2015-08-29 14:46:02',1,30003743,0,0,0,0,0,0,0,0,9,0,0,0,1,0,0,0,0,1,0,1,2,0,0,0),(43,'2015-03-10 22:38:42','2015-03-10 22:38:42',1,30000351,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(44,'2015-03-10 22:38:42','2015-08-29 14:46:02',1,30004947,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0),(45,'2015-03-10 22:38:42','2015-08-29 14:46:03',1,30003782,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0),(46,'2015-03-10 22:38:42','2015-03-10 22:38:42',1,30004214,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(47,'2015-03-10 22:38:42','2015-08-29 14:46:03',1,30004549,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(48,'2015-03-10 22:38:42','2015-03-10 22:38:42',1,30004917,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(49,'2015-03-10 22:38:42','2015-08-29 14:46:03',1,30003296,0,0,0,0,0,0,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(50,'2015-03-10 22:38:42','2015-03-10 22:38:42',1,30005102,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(51,'2015-03-10 22:38:42','2015-08-29 14:46:03',1,30001889,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,1,0,0,0,1,0),(52,'2015-03-10 22:38:42','2015-08-29 14:46:03',1,30001856,0,0,0,0,0,1,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0),(53,'2015-03-10 22:38:42','2015-03-10 22:38:42',1,30000522,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(54,'2015-03-10 22:38:42','2015-03-10 22:38:42',1,30001643,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(55,'2015-03-10 22:38:42','2015-08-29 14:46:03',1,30001551,0,0,0,0,0,0,0,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(56,'2015-03-10 22:38:42','2015-08-29 14:46:03',1,30000267,0,0,0,0,0,0,0,0,0,2,2,0,0,0,0,0,0,0,0,0,0,0,0,0),(57,'2015-03-10 22:38:42','2015-08-29 14:46:03',1,30003330,0,0,1,0,0,0,0,0,0,0,0,0,9,0,1,1,0,0,0,0,0,0,1,0),(58,'2015-03-10 22:38:42','2015-08-29 14:46:03',1,30000645,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0),(59,'2015-03-10 22:38:42','2015-03-10 22:38:42',1,30003647,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(60,'2015-03-10 22:38:42','2015-03-10 22:38:42',1,30002308,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(61,'2015-03-10 22:38:42','2015-03-10 22:38:42',1,30001521,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(62,'2015-03-10 22:38:42','2015-08-29 14:46:03',1,30000262,0,0,0,0,0,0,0,0,0,0,0,0,3,0,0,0,1,0,0,0,0,0,0,0),(63,'2015-03-10 22:38:42','2015-08-29 14:46:03',1,30004720,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0),(64,'2015-03-10 22:38:42','2015-03-10 22:38:42',1,30000929,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(65,'2015-03-10 22:38:42','2015-03-10 22:38:42',1,30004950,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(66,'2015-03-10 22:38:42','2015-03-10 22:38:42',1,30004483,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(67,'2015-03-10 22:38:42','2015-08-29 14:46:03',1,30002899,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0),(68,'2015-03-10 22:38:42','2015-08-29 14:46:03',1,30004874,0,1,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(69,'2015-03-10 22:38:42','2015-03-10 22:38:42',1,30004322,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(70,'2015-03-10 22:38:42','2015-03-10 22:38:42',1,30000966,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(71,'2015-03-10 22:38:42','2015-03-10 22:38:42',1,30003251,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(72,'2015-03-10 22:38:42','2015-08-29 14:46:03',1,30000290,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,0),(73,'2015-03-10 22:38:42','2015-03-10 22:38:42',1,30000940,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(74,'2015-03-10 22:38:42','2015-03-10 22:38:42',1,30000566,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(75,'2015-03-10 22:38:42','2015-03-10 22:38:42',1,30001458,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(76,'2015-03-10 22:38:42','2015-03-10 22:38:42',1,30002846,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(77,'2015-03-10 22:38:42','2015-08-29 14:46:03',1,30001009,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(78,'2015-03-10 22:38:42','2015-03-10 22:38:42',1,30004695,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(79,'2015-03-10 22:38:42','2015-08-29 14:46:03',1,30003349,0,0,0,0,0,0,1,0,1,4,1,1,1,0,0,0,0,1,1,0,0,2,1,0),(80,'2015-03-10 22:38:42','2015-08-29 14:46:03',1,30001961,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0),(81,'2015-03-10 22:38:42','2015-08-29 14:46:03',1,30003957,0,2,0,1,1,1,0,0,0,0,0,0,0,1,1,0,0,2,1,1,0,0,0,0),(82,'2015-03-10 22:38:42','2015-03-10 22:38:42',1,30000543,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(83,'2015-03-10 22:38:42','2015-03-10 22:38:42',1,30000781,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(84,'2015-03-10 22:38:42','2015-03-10 22:38:42',1,30002934,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(85,'2015-03-10 22:38:42','2015-08-29 14:46:03',1,30004843,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(86,'2015-03-10 22:38:42','2015-03-10 22:38:42',1,30005157,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(87,'2015-03-10 22:38:42','2015-08-29 14:46:03',1,30001837,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0),(88,'2015-03-10 22:38:42','2015-03-10 22:38:42',1,30001599,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(89,'2015-03-10 22:38:42','2015-08-29 14:46:03',1,30004677,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,2,0,0,0,0,0,0,0,0),(90,'2015-03-10 22:38:42','2015-03-10 22:38:42',1,30001757,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(91,'2015-03-10 22:38:42','2015-08-29 14:46:03',1,30003766,1,4,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(92,'2015-03-10 22:38:42','2015-03-10 22:38:42',1,30004801,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(93,'2015-03-10 22:38:42','2015-08-29 14:46:03',1,30004037,0,0,0,0,0,3,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0),(94,'2015-03-10 22:38:42','2015-08-29 14:46:03',1,30004650,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,1,0,0,0,1,0,0),(95,'2015-03-10 22:38:42','2015-08-29 14:46:03',1,30000573,0,4,0,1,1,2,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(96,'2015-03-10 22:38:42','2015-03-10 22:38:42',1,30000734,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(97,'2015-03-10 22:38:42','2015-08-29 14:46:03',1,30002581,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0),(98,'2015-03-10 22:38:42','2015-08-29 14:46:03',1,30003258,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0),(99,'2015-03-10 22:38:42','2015-08-29 14:46:03',1,30001109,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0),(100,'2015-03-10 22:38:42','2015-08-29 14:46:03',1,30000301,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,1,0),(101,'2015-03-10 22:38:42','2015-03-10 22:38:42',1,30000463,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(102,'2015-03-10 22:38:42','2015-03-10 22:38:42',1,30003215,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(103,'2015-03-10 22:38:42','2015-03-10 22:38:42',1,30002823,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(104,'2015-03-10 22:38:42','2015-08-29 14:46:03',1,30004940,0,3,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0),(105,'2015-03-10 22:38:42','2015-03-10 22:38:42',1,30003297,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(106,'2015-03-10 22:38:42','2015-03-10 22:38:42',1,30004048,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(107,'2015-03-10 22:38:42','2015-03-10 22:38:42',1,30000474,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(108,'2015-03-10 22:38:42','2015-08-29 14:46:03',1,30004738,0,1,0,0,0,0,2,0,9,8,1,0,11,1,0,2,1,1,3,5,5,0,4,0),(109,'2015-03-10 22:38:42','2015-03-10 22:38:42',1,30001270,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(110,'2015-03-10 22:38:42','2015-03-10 22:38:42',1,30003336,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(111,'2015-03-10 22:38:42','2015-03-10 22:38:42',1,30003147,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(112,'2015-03-10 22:38:42','2015-03-10 22:38:42',1,30001975,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(113,'2015-03-10 22:38:42','2015-03-10 22:38:42',1,30001066,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(114,'2015-03-10 22:38:42','2015-08-29 14:46:03',1,30004639,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(115,'2015-03-10 22:38:42','2015-03-10 22:38:42',1,30004611,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(116,'2015-03-10 22:38:42','2015-08-29 14:46:03',1,30000861,0,0,0,0,0,0,0,1,0,12,17,1,1,9,1,4,3,0,2,2,0,0,19,0),(117,'2015-03-10 22:38:42','2015-03-10 22:38:42',1,30000425,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(118,'2015-03-10 22:38:42','2015-03-10 22:38:42',1,30000931,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(119,'2015-03-10 22:38:42','2015-03-10 22:38:42',1,30004849,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(120,'2015-03-10 22:38:42','2015-08-29 14:46:03',1,30003122,0,0,0,0,0,0,0,0,0,0,0,0,2,0,0,0,1,1,0,0,0,0,0,0),(121,'2015-03-10 22:38:42','2015-08-29 14:46:03',1,30003768,0,0,0,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(122,'2015-03-10 22:38:42','2015-03-10 22:38:42',1,30000342,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(123,'2015-03-10 22:38:42','2015-08-29 14:46:03',1,30003785,0,0,0,0,0,0,0,0,0,0,0,1,0,2,2,0,0,0,0,1,0,0,0,0),(124,'2015-03-10 22:38:42','2015-03-10 22:38:42',1,30005117,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(125,'2015-03-10 22:38:42','2015-03-10 22:38:42',1,30002317,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(126,'2015-03-10 22:38:42','2015-03-10 22:38:42',1,30004728,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(127,'2015-03-10 22:38:42','2015-03-10 22:38:42',1,30003624,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(128,'2015-03-10 22:38:42','2015-08-29 14:46:03',1,30000963,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0),(129,'2015-03-10 22:38:42','2015-03-10 22:38:42',1,30001524,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(130,'2015-03-10 22:38:42','2015-03-10 22:38:42',1,30004688,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(131,'2015-03-10 22:38:42','2015-08-29 14:46:03',1,30004710,0,0,0,0,0,0,0,1,4,1,0,0,4,0,1,1,1,1,0,0,0,4,1,0),(132,'2015-03-10 22:38:42','2015-08-29 14:46:03',1,30004759,0,2,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(133,'2015-03-10 22:38:42','2015-03-10 22:38:42',1,30004964,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(134,'2015-03-10 22:38:42','2015-03-10 22:38:42',1,30003211,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(135,'2015-03-10 22:38:42','2015-08-29 14:46:03',1,30004367,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(136,'2015-03-10 22:38:42','2015-08-29 14:46:03',1,30002332,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0),(137,'2015-03-10 22:38:42','2015-03-10 22:38:42',1,30004226,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(138,'2015-03-10 22:38:42','2015-03-10 22:38:42',1,30001880,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(139,'2015-03-10 22:38:42','2015-03-10 22:38:42',1,30001952,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(140,'2015-03-10 22:38:42','2015-03-10 22:38:42',1,30002329,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(141,'2015-03-10 22:38:42','2015-03-10 22:38:42',1,30000395,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(142,'2015-03-10 22:38:42','2015-03-10 22:38:42',1,30001540,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(143,'2015-03-10 22:38:42','2015-08-29 14:46:03',1,30004920,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,0,0,0,0,0),(144,'2015-03-10 22:38:42','2015-08-29 14:46:03',1,30004393,0,0,0,0,1,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(145,'2015-03-10 22:38:42','2015-08-29 14:46:03',1,30000445,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,0,0,0,0,0,0,0),(146,'2015-03-10 22:38:42','2015-03-10 22:38:42',1,30000962,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(147,'2015-03-10 22:38:42','2015-03-10 22:38:42',1,30004501,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(148,'2015-03-10 22:38:42','2015-08-29 14:46:03',1,30000579,0,0,1,1,0,0,1,1,0,0,0,0,0,0,3,3,0,31,1,0,6,1,0,0),(149,'2015-03-10 22:38:42','2015-08-29 14:46:03',1,30003952,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0),(150,'2015-03-10 22:38:42','2015-08-29 14:46:03',1,30004189,0,0,0,0,0,0,0,0,0,2,0,0,2,0,0,0,1,0,0,0,0,0,1,0),(151,'2015-03-10 22:38:42','2015-08-29 14:46:03',1,30000294,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(152,'2015-03-10 22:38:42','2015-03-10 22:38:42',1,30001081,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(153,'2015-03-10 22:38:42','2015-03-10 22:38:42',1,30003233,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(154,'2015-03-10 22:38:42','2015-08-29 14:46:03',1,30001170,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0),(155,'2015-03-10 22:38:42','2015-03-10 22:38:42',1,30002365,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(156,'2015-03-10 22:38:42','2015-03-10 22:38:42',1,30000336,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(157,'2015-03-10 22:38:42','2015-03-10 22:38:42',1,30003617,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(158,'2015-03-10 22:38:42','2015-08-29 14:46:03',1,30000720,0,0,0,0,0,0,1,0,0,0,0,1,3,0,2,3,0,0,0,0,10,0,0,0),(159,'2015-03-10 22:38:42','2015-03-10 22:38:42',1,30000378,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(160,'2015-03-10 22:38:42','2015-08-29 14:46:03',1,30002866,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0),(161,'2015-03-10 22:38:42','2015-03-10 22:38:42',1,30001452,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(162,'2015-03-10 22:38:42','2015-03-10 22:38:42',1,30000766,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(163,'2015-03-10 22:38:42','2015-03-10 22:38:42',1,30000424,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(164,'2015-03-10 22:38:42','2015-08-29 14:46:03',1,30000680,1,5,0,2,1,1,0,0,0,0,0,0,1,3,3,0,0,0,2,13,0,0,0,0),(165,'2015-03-10 22:38:42','2015-03-10 22:38:42',1,30000286,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(166,'2015-03-10 22:38:42','2015-08-29 14:46:03',1,30000288,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(167,'2015-03-10 22:38:42','2015-08-29 14:46:03',1,30000836,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(168,'2015-03-10 22:38:42','2015-08-29 14:46:03',1,30000611,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0),(169,'2015-03-10 22:38:42','2015-03-10 22:38:42',1,30003668,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(170,'2015-03-10 22:38:42','2015-03-10 22:38:42',1,30000349,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(171,'2015-03-10 22:38:42','2015-08-29 14:46:03',1,30002007,0,0,0,0,2,0,0,0,0,0,0,0,3,0,0,0,0,0,0,0,0,0,0,0),(172,'2015-03-10 22:38:42','2015-08-29 14:46:03',1,30001786,0,0,0,0,0,0,0,0,0,0,0,0,0,4,4,0,0,0,0,0,1,0,0,0),(173,'2015-03-10 22:38:42','2015-03-10 22:38:42',1,30004184,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(174,'2015-03-10 22:38:42','2015-03-10 22:38:42',1,30004454,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(175,'2015-03-10 22:38:42','2015-08-29 14:46:03',1,30002903,0,0,1,0,0,1,0,0,0,0,0,0,0,1,1,0,0,0,0,0,0,0,0,0),(176,'2015-03-10 22:38:42','2015-03-10 22:38:42',1,30000684,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(177,'2015-03-10 22:38:42','2015-03-10 22:38:42',1,30001598,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(178,'2015-03-10 22:38:42','2015-03-10 22:38:42',1,30000756,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(179,'2015-03-10 22:38:42','2015-03-10 22:38:42',1,30004492,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(180,'2015-03-10 22:38:42','2015-08-29 14:46:03',1,30003754,0,0,0,0,1,0,0,0,0,1,1,0,3,0,0,0,0,0,0,0,0,0,0,0),(181,'2015-03-10 22:38:42','2015-08-29 14:46:03',1,30001864,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,1,0),(182,'2015-03-10 22:38:42','2015-03-10 22:38:42',1,30003188,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(183,'2015-03-10 22:38:42','2015-08-29 14:46:03',1,30000473,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,7,4,0,0,0,0),(184,'2015-03-10 22:38:42','2015-03-10 22:38:42',1,30005139,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(185,'2015-03-10 22:38:42','2015-03-10 22:38:42',1,30003238,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(186,'2015-03-10 22:38:42','2015-08-29 14:46:03',1,30004734,0,0,0,0,0,0,1,0,2,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(187,'2015-03-10 22:38:42','2015-03-10 22:38:42',1,30004467,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(188,'2015-03-10 22:38:42','2015-08-29 14:46:03',1,30001784,0,0,0,0,0,0,0,0,0,0,0,1,0,1,1,1,0,0,0,1,0,0,1,0),(189,'2015-03-10 22:38:42','2015-08-29 14:46:03',1,30001258,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,1,0,0,0,1,1,0,0,0),(190,'2015-03-10 22:38:42','2015-03-10 22:38:42',1,30000832,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(191,'2015-03-10 22:38:42','2015-08-29 14:46:03',1,30000996,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0),(192,'2015-03-10 22:38:42','2015-03-10 22:38:42',1,30004071,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(193,'2015-03-10 22:38:42','2015-08-29 14:46:03',1,30000714,0,2,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(194,'2015-03-10 22:38:42','2015-08-29 14:46:03',1,30003171,1,0,0,0,0,0,1,0,0,0,0,0,0,1,1,0,0,0,0,0,0,0,0,0),(195,'2015-03-10 22:38:42','2015-03-10 22:38:42',1,30005182,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(196,'2015-03-10 22:38:42','2015-03-10 22:38:42',1,30001949,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(197,'2015-03-10 22:38:42','2015-08-29 14:46:03',1,30002342,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(198,'2015-03-10 22:38:42','2015-03-10 22:38:42',1,30004394,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(199,'2015-03-10 22:38:42','2015-08-29 14:46:03',1,30000898,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(200,'2015-03-10 22:38:42','2015-08-29 14:46:03',1,30001965,3,1,0,0,0,0,1,0,0,4,4,0,0,1,1,1,0,0,0,0,0,0,0,0),(201,'2015-03-10 22:38:42','2015-08-29 14:46:03',1,30000292,1,0,0,0,0,0,0,0,6,2,0,2,0,2,0,0,1,0,0,0,0,0,0,0),(202,'2015-03-10 22:38:42','2015-08-29 14:46:03',1,30002424,0,0,0,0,0,0,0,0,3,0,0,0,0,0,0,0,1,0,0,0,2,0,0,0),(203,'2015-03-10 22:38:42','2015-03-10 22:38:42',1,30000403,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(204,'2015-03-10 22:38:42','2015-03-10 22:38:42',1,30001746,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(205,'2015-03-10 22:38:42','2015-03-10 22:38:42',1,30001136,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(206,'2015-03-10 22:38:42','2015-03-10 22:38:42',1,30002283,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(207,'2015-03-10 22:38:42','2015-03-10 22:38:42',1,30003370,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(208,'2015-03-10 22:38:42','2015-08-29 14:46:03',1,30002455,0,0,0,0,1,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(209,'2015-03-10 22:38:42','2015-08-29 14:46:03',1,30004693,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(210,'2015-03-10 22:38:42','2015-03-10 22:38:42',1,30001352,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(211,'2015-03-10 22:38:42','2015-08-29 14:46:03',1,30001774,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0),(212,'2015-03-10 22:38:42','2015-08-29 14:46:03',1,30001860,0,0,0,0,0,0,1,0,0,0,0,0,0,1,0,2,0,0,0,0,5,0,0,0),(213,'2015-03-10 22:38:42','2015-03-10 22:38:42',1,30000881,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(214,'2015-03-10 22:38:42','2015-03-10 22:38:42',1,30001169,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(215,'2015-03-10 22:38:42','2015-03-10 22:38:42',1,30004531,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(216,'2015-03-10 22:38:42','2015-03-10 22:38:42',1,30000757,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(217,'2015-03-10 22:38:42','2015-03-10 22:38:42',1,30001510,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(218,'2015-03-10 22:38:42','2015-03-10 22:38:42',1,30002175,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(219,'2015-03-10 22:38:42','2015-08-29 14:46:03',1,30002909,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0),(220,'2015-03-10 22:38:42','2015-08-29 14:46:03',1,30003332,0,2,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,0),(221,'2015-03-10 22:38:42','2015-08-29 14:46:03',1,30004830,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(222,'2015-03-10 22:38:42','2015-03-10 22:38:42',1,30001319,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(223,'2015-03-10 22:38:42','2015-03-10 22:38:42',1,30003304,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(224,'2015-03-10 22:38:42','2015-08-29 14:46:03',1,30002905,0,0,14,1,3,3,1,0,0,0,1,0,1,1,1,0,0,0,1,1,1,1,0,0),(225,'2015-03-10 22:38:42','2015-03-10 22:38:42',1,30003182,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(226,'2015-03-10 22:38:42','2015-03-10 22:38:42',1,30001615,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(227,'2015-03-10 22:38:42','2015-03-10 22:38:42',1,30001333,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(228,'2015-03-10 22:38:42','2015-03-10 22:38:42',1,30004447,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(229,'2015-03-10 22:38:42','2015-03-10 22:38:42',1,30001770,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(230,'2015-03-10 22:38:42','2015-08-29 14:46:03',1,30003774,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0),(231,'2015-03-10 22:38:42','2015-03-10 22:38:42',1,30005096,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(232,'2015-03-10 22:38:42','2015-08-29 14:46:03',1,30001799,0,0,0,0,0,0,0,0,1,0,0,0,5,0,0,1,0,0,0,0,0,0,0,0),(233,'2015-03-10 22:38:42','2015-08-29 14:46:03',1,30003275,0,0,0,0,0,1,0,1,0,0,0,3,0,0,0,0,0,0,0,2,2,0,0,0),(234,'2015-03-10 22:38:42','2015-03-10 22:38:42',1,30000909,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(235,'2015-03-10 22:38:42','2015-08-29 14:46:03',1,30001103,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(236,'2015-03-10 22:38:42','2015-03-10 22:38:42',1,30001116,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(237,'2015-03-10 22:38:42','2015-08-29 14:46:03',1,30000823,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,1,0,0),(238,'2015-03-10 22:38:42','2015-03-10 22:38:42',1,30000452,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(239,'2015-03-10 22:38:42','2015-03-10 22:38:42',1,30004466,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(240,'2015-03-10 22:38:42','2015-03-10 22:38:42',1,30001642,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(241,'2015-03-10 22:38:42','2015-08-29 14:46:03',1,30004764,0,1,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,1,0,0,3,0,0,0),(242,'2015-03-10 22:38:42','2015-08-29 14:46:03',1,30004019,0,6,0,0,1,2,4,2,0,0,0,1,1,0,1,1,1,2,0,0,0,0,1,0),(243,'2015-03-10 22:38:42','2015-03-10 22:38:42',1,30000341,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(244,'2015-03-10 22:38:42','2015-03-10 22:38:42',1,30003356,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(245,'2015-03-10 22:38:42','2015-03-10 22:38:42',1,30000343,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(246,'2015-03-10 22:38:42','2015-08-29 14:46:03',1,30004004,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,1,0,0,0),(247,'2015-03-10 22:38:42','2015-03-10 22:38:42',1,30003231,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(248,'2015-03-10 22:38:42','2015-08-29 14:46:03',1,30000448,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,0,0,0,1,0,3,1,0,0),(249,'2015-03-10 22:38:42','2015-03-10 22:38:42',1,30004358,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(250,'2015-03-10 22:38:42','2015-08-29 14:46:03',1,30001199,0,0,0,0,0,0,0,0,10,6,0,0,4,8,7,2,0,0,4,3,1,10,0,0),(251,'2015-03-10 22:38:42','2015-08-29 14:46:03',1,30001820,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0),(252,'2015-03-10 22:38:42','2015-03-10 22:38:42',1,30003675,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(253,'2015-03-10 22:38:42','2015-08-29 14:46:03',1,30001212,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(254,'2015-03-10 22:38:42','2015-03-10 22:38:42',1,30004336,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(255,'2015-03-10 22:38:42','2015-03-10 22:38:42',1,30002582,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(256,'2015-03-10 22:38:42','2015-03-10 22:38:42',1,30001500,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(257,'2015-03-10 22:38:42','2015-08-29 14:46:03',1,30004405,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(258,'2015-03-10 22:38:42','2015-08-29 14:46:03',1,30003632,1,0,0,0,0,2,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,2,0,0),(259,'2015-03-10 22:38:42','2015-08-29 14:46:03',1,30000534,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0),(260,'2015-03-10 22:38:42','2015-08-29 14:46:03',1,30003329,0,0,0,0,0,0,0,1,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0),(261,'2015-03-10 22:38:42','2015-08-29 14:46:03',1,30004387,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(262,'2015-03-10 22:38:42','2015-08-29 14:46:03',1,30004722,2,0,0,0,2,0,0,1,1,0,0,1,0,0,2,2,0,0,0,0,1,0,0,0),(263,'2015-03-10 22:38:42','2015-08-29 14:46:03',1,30004786,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0),(264,'2015-03-10 22:38:42','2015-08-29 14:46:03',1,30001841,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0),(265,'2015-03-10 22:38:42','2015-03-10 22:38:42',1,30004668,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(266,'2015-03-10 22:38:42','2015-08-29 14:46:03',1,30003642,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0),(267,'2015-03-10 22:38:42','2015-08-29 14:46:03',1,30004517,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,1,0),(268,'2015-03-10 22:38:42','2015-03-10 22:38:42',1,30002919,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(269,'2015-03-10 22:38:42','2015-08-29 14:46:03',1,30004928,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(270,'2015-03-10 22:38:42','2015-08-29 14:46:03',1,30003312,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0),(271,'2015-03-10 22:38:42','2015-08-29 14:46:03',1,30001157,2,0,0,0,0,0,0,0,4,0,0,3,0,0,1,2,2,0,0,2,3,0,2,0),(272,'2015-03-10 22:38:42','2015-03-10 22:38:42',1,30001947,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(273,'2015-03-10 22:38:42','2015-08-29 14:46:03',1,30001868,0,0,0,0,0,0,0,0,0,2,1,0,0,0,0,0,0,0,0,0,0,0,102,0),(274,'2015-03-10 22:38:42','2015-03-10 22:38:42',1,30000535,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(275,'2015-03-10 22:38:42','2015-03-10 22:38:42',1,30004632,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(276,'2015-03-10 22:38:42','2015-03-10 22:38:42',1,30000829,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(277,'2015-03-10 22:38:42','2015-03-10 22:38:42',1,30002444,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(278,'2015-03-10 22:38:42','2015-03-10 22:38:42',1,30004766,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(279,'2015-03-10 22:38:42','2015-08-29 14:46:03',1,30001281,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(280,'2015-03-10 22:38:42','2015-08-29 14:46:03',1,30000798,0,6,1,0,0,0,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(281,'2015-03-10 22:38:42','2015-03-10 22:38:42',1,30004000,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(282,'2015-03-10 22:38:42','2015-03-10 22:38:42',1,30000428,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(283,'2015-03-10 22:38:42','2015-08-29 14:46:03',1,30003786,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(284,'2015-03-10 22:38:42','2015-03-10 22:38:42',1,30004036,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(285,'2015-03-10 22:38:42','2015-03-10 22:38:42',1,30003609,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(286,'2015-03-10 22:38:42','2015-03-10 22:38:42',1,30001474,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(287,'2015-03-10 22:38:42','2015-03-10 22:38:42',1,30001553,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(288,'2015-03-10 22:38:42','2015-08-29 14:46:03',1,30004390,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,1,0,1,1,1,0,0,0,0),(289,'2015-03-10 22:38:42','2015-03-10 22:38:42',1,30004900,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(290,'2015-03-10 22:38:42','2015-03-10 22:38:42',1,30002302,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(291,'2015-03-10 22:38:42','2015-08-29 14:46:03',1,30000876,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,0,0,0,0,0,0,1,0),(292,'2015-03-10 22:38:42','2015-08-29 14:46:03',1,30001200,0,0,0,0,1,0,0,0,0,0,0,0,2,0,1,1,0,1,1,2,1,4,0,0),(293,'2015-03-10 22:38:42','2015-08-29 14:46:03',1,30003748,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,1,0,1,1,5,0,0,0,0),(294,'2015-03-10 22:38:42','2015-03-10 22:38:42',1,30002325,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(295,'2015-03-10 22:38:42','2015-03-10 22:38:42',1,30004520,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(296,'2015-03-10 22:38:42','2015-08-29 14:46:03',1,30000228,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(297,'2015-03-10 22:38:42','2015-03-10 22:38:42',1,30002357,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(298,'2015-03-10 22:38:42','2015-08-29 14:46:03',1,30002937,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0),(299,'2015-03-10 22:38:42','2015-08-29 14:46:03',1,30003781,0,0,0,0,0,0,0,0,3,0,0,0,2,8,1,0,3,0,2,1,0,0,0,0),(300,'2015-03-10 22:38:42','2015-08-29 14:46:03',1,30004403,0,0,0,0,0,9,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(301,'2015-03-10 22:38:42','2015-08-29 14:46:03',1,30003322,0,0,1,0,0,0,0,0,0,1,0,0,0,1,0,0,0,0,0,0,0,0,0,0),(302,'2015-03-10 22:38:42','2015-08-29 14:46:03',1,30004419,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(303,'2015-03-10 22:38:42','2015-03-10 22:38:42',1,30004808,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(304,'2015-03-10 22:38:42','2015-08-29 14:46:03',1,30005166,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,0,0,0),(305,'2015-03-10 22:38:42','2015-08-29 14:46:03',1,30003324,0,0,1,1,0,0,0,0,0,1,0,0,0,0,0,0,0,3,4,4,0,0,0,0),(306,'2015-03-10 22:38:42','2015-08-29 14:46:03',1,30002917,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0),(307,'2015-03-10 22:38:42','2015-03-10 22:38:42',1,30004951,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(308,'2015-03-10 22:38:42','2015-08-29 14:46:03',1,30004682,1,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,0,0,1,1,0,0,0,0),(309,'2015-03-10 22:38:42','2015-03-10 22:38:42',1,30000590,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(310,'2015-03-10 22:38:42','2015-03-10 22:38:42',1,30004868,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(311,'2015-03-10 22:38:42','2015-08-29 14:46:03',1,30002921,0,3,3,0,3,0,1,5,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0),(312,'2015-03-10 22:38:42','2015-03-10 22:38:42',1,30000733,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(313,'2015-03-10 22:38:42','2015-03-10 22:38:42',1,30002486,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(314,'2015-03-10 22:38:42','2015-08-29 14:46:03',1,30002938,0,0,17,0,0,0,2,1,3,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(315,'2015-03-10 22:38:42','2015-03-10 22:38:42',1,30000782,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(316,'2015-03-10 22:38:42','2015-03-10 22:38:42',1,30002449,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(317,'2015-03-10 22:38:42','2015-08-29 14:46:03',1,30002011,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(318,'2015-03-10 22:38:42','2015-03-10 22:38:42',1,30003191,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(319,'2015-03-10 22:38:42','2015-08-29 14:46:03',1,30004555,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,4,0,0,2,0,2,0,0),(320,'2015-03-10 22:38:42','2015-03-10 22:38:42',1,30004628,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(321,'2015-03-10 22:38:42','2015-08-29 14:46:03',1,30001260,1,0,0,0,0,1,0,0,0,0,5,1,1,0,0,0,4,0,0,9,0,1,2,0),(322,'2015-03-10 22:38:42','2015-03-10 22:38:42',1,30005149,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(323,'2015-03-10 22:38:42','2015-03-10 22:38:42',1,30004014,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(324,'2015-03-10 22:38:42','2015-08-29 14:46:03',1,30000730,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0),(325,'2015-03-10 22:38:42','2015-03-10 22:38:42',1,30004317,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(326,'2015-03-10 22:38:42','2015-03-10 22:38:42',1,30001318,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(327,'2015-03-10 22:38:42','2015-08-29 14:46:03',1,30002015,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0),(328,'2015-03-10 22:38:42','2015-08-29 14:46:03',1,30004360,0,0,1,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(329,'2015-03-10 22:38:42','2015-08-29 14:46:03',1,30000718,1,4,0,2,0,0,4,0,13,0,0,0,0,23,17,5,0,2,29,12,17,5,2,0),(330,'2015-03-10 22:38:42','2015-08-29 14:46:03',1,30002441,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,2,0,0,0,0,0,0),(331,'2015-03-10 22:38:42','2015-03-10 22:38:42',1,30000576,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(332,'2015-03-10 22:38:42','2015-08-29 14:46:03',1,30004553,0,1,0,0,0,0,0,0,6,0,1,0,0,0,0,0,0,19,3,3,0,0,0,0),(333,'2015-03-10 22:38:42','2015-03-10 22:38:42',1,30002144,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(334,'2015-03-10 22:38:42','2015-03-10 22:38:42',1,30004007,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(335,'2015-03-10 22:38:42','2015-03-10 22:38:42',1,30000240,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(336,'2015-03-10 22:38:42','2015-03-10 22:38:42',1,30000431,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(337,'2015-03-10 22:38:42','2015-08-29 14:46:03',1,30004828,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0),(338,'2015-03-10 22:38:42','2015-03-10 22:38:42',1,30003366,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(339,'2015-03-10 22:38:42','2015-03-10 22:38:42',1,30005121,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(340,'2015-03-10 22:38:42','2015-03-10 22:38:42',1,30002613,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(341,'2015-03-10 22:38:42','2015-03-10 22:38:42',1,30000582,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(342,'2015-03-10 22:38:42','2015-08-29 14:46:03',1,30003105,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,6,0,0,0,0),(343,'2015-03-10 22:38:42','2015-03-10 22:38:42',1,30004811,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(344,'2015-03-10 22:38:42','2015-03-10 22:38:42',1,30004165,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(345,'2015-03-10 22:38:42','2015-08-29 14:46:03',1,30002344,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0),(346,'2015-03-10 22:38:42','2015-08-29 14:46:03',1,30001867,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0),(347,'2015-03-10 22:38:42','2015-03-10 22:38:42',1,30001894,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(348,'2015-03-10 22:38:42','2015-08-29 14:46:03',1,30002864,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(349,'2015-03-10 22:38:42','2015-03-10 22:38:42',1,30004224,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(350,'2015-03-10 22:38:42','2015-03-10 22:38:42',1,30001349,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(351,'2015-03-10 22:38:42','2015-03-10 22:38:42',1,30002350,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(352,'2015-03-10 22:38:42','2015-03-10 22:38:42',1,30001340,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(353,'2015-03-10 22:38:42','2015-08-29 14:46:03',1,30002941,0,0,1,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(354,'2015-03-10 22:38:42','2015-03-10 22:38:42',1,30002616,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(355,'2015-03-10 22:38:42','2015-08-29 14:46:03',1,30003131,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0),(356,'2015-03-10 22:38:42','2015-08-29 14:46:03',1,30004878,1,0,0,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,4,0),(357,'2015-03-10 22:38:42','2015-03-10 22:38:42',1,30000255,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(358,'2015-03-10 22:38:42','2015-03-10 22:38:42',1,30004949,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(359,'2015-03-10 22:38:42','2015-08-29 14:46:03',1,30000251,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,1,0),(360,'2015-03-10 22:38:42','2015-08-29 14:46:03',1,30004009,0,0,0,0,0,1,0,0,0,0,0,0,1,0,0,2,0,0,0,0,0,0,0,0),(361,'2015-03-10 22:38:42','2015-08-29 14:46:03',1,30003708,0,0,0,0,0,0,0,16,0,2,4,0,2,0,0,5,0,4,2,2,0,0,0,0),(362,'2015-03-10 22:38:42','2015-03-10 22:38:42',1,30005165,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(363,'2015-03-10 22:38:42','2015-03-10 22:38:42',1,30004188,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(364,'2015-03-10 22:38:42','2015-08-29 14:46:03',1,30001882,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0),(365,'2015-03-10 22:38:42','2015-03-10 22:38:42',1,30004415,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(366,'2015-03-10 22:38:42','2015-08-29 14:46:03',1,30001815,0,0,0,0,0,0,0,0,0,1,1,0,0,1,1,0,0,0,0,0,0,0,0,0),(367,'2015-03-10 22:38:42','2015-08-29 14:46:03',1,30003706,0,0,0,0,0,0,0,0,2,1,0,0,0,3,3,0,1,0,4,1,0,1,2,0),(368,'2015-03-10 22:38:42','2015-08-29 14:46:03',1,30004504,1,0,1,0,1,1,0,3,1,1,2,0,1,2,0,3,3,0,1,0,1,0,1,0),(369,'2015-03-10 22:38:42','2015-03-10 22:38:42',1,30000376,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(370,'2015-03-10 22:38:42','2015-03-10 22:38:42',1,30000795,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(371,'2015-03-10 22:38:42','2015-03-10 22:38:42',1,30002469,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(372,'2015-03-10 22:38:42','2015-03-10 22:38:42',1,30001578,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(373,'2015-03-10 22:38:42','2015-03-10 22:38:42',1,30000749,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(374,'2015-03-10 22:38:42','2015-03-10 22:38:42',1,30004384,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(375,'2015-03-10 22:38:42','2015-03-10 22:38:42',1,30002154,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(376,'2015-03-10 22:38:42','2015-03-10 22:38:42',1,30000701,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(377,'2015-03-10 22:38:42','2015-03-10 22:38:42',1,30005159,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(378,'2015-03-10 22:38:42','2015-08-29 14:46:03',1,30000536,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0),(379,'2015-03-10 22:38:42','2015-03-10 22:38:42',1,30005154,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(380,'2015-03-10 22:38:42','2015-03-10 22:38:42',1,30000361,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(381,'2015-03-10 22:38:42','2015-08-29 14:46:03',1,30001858,0,0,0,0,0,0,1,0,1,1,0,0,0,2,2,3,4,2,0,3,5,1,1,0),(382,'2015-03-10 22:38:42','2015-03-10 22:38:42',1,30004216,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(383,'2015-03-10 22:38:42','2015-03-10 22:38:42',1,30000239,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(384,'2015-03-10 22:38:42','2015-03-10 22:38:42',1,30001785,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(385,'2015-03-10 22:38:42','2015-03-10 22:38:42',1,30001558,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(386,'2015-03-10 22:38:42','2015-03-10 22:38:42',1,30004661,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(387,'2015-03-10 22:38:42','2015-08-29 14:46:03',1,30001844,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0),(388,'2015-03-10 22:38:42','2015-03-10 22:38:42',1,30001869,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(389,'2015-03-10 22:38:42','2015-03-10 22:38:42',1,30004716,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(390,'2015-03-10 22:38:42','2015-08-29 14:46:03',1,30002495,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0),(391,'2015-03-10 22:38:42','2015-08-29 14:46:03',1,30003351,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,5,0,0),(392,'2015-03-10 22:38:42','2015-03-10 22:38:42',1,30000818,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(393,'2015-03-10 22:38:42','2015-03-10 22:38:42',1,30002297,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(394,'2015-03-10 22:38:42','2015-08-29 14:46:03',1,30004206,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0),(395,'2015-03-10 22:38:42','2015-03-10 22:38:42',1,30001201,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(396,'2015-03-10 22:38:42','2015-03-10 22:38:42',1,30000976,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(397,'2015-03-10 22:38:42','2015-03-10 22:38:42',1,30000776,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(398,'2015-03-10 22:38:42','2015-08-29 14:46:03',1,30002944,0,0,0,0,0,1,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(399,'2015-03-10 22:38:42','2015-03-10 22:38:42',1,30001251,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(400,'2015-03-10 22:38:42','2015-08-29 14:46:03',1,30000455,0,0,0,0,0,0,0,0,0,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0),(401,'2015-03-10 22:38:42','2015-08-29 14:46:03',1,30002456,1,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(402,'2015-03-10 22:38:42','2015-08-29 14:46:03',1,30004746,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(403,'2015-03-10 22:38:42','2015-08-29 14:46:03',1,30001828,1,0,0,1,1,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,0,0,0,0),(404,'2015-03-10 22:38:42','2015-03-10 22:38:42',1,30002585,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(405,'2015-03-10 22:38:42','2015-03-10 22:38:42',1,30001149,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(406,'2015-03-10 22:38:42','2015-03-10 22:38:42',1,30002625,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(407,'2015-03-10 22:38:42','2015-03-10 22:38:42',1,30001300,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(408,'2015-03-10 22:38:42','2015-08-29 14:46:03',1,30001335,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0),(409,'2015-03-10 22:38:42','2015-03-10 22:38:42',1,30000630,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(410,'2015-03-10 22:38:42','2015-03-10 22:38:42',1,30004221,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(411,'2015-03-10 22:38:42','2015-03-10 22:38:42',1,30000415,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(412,'2015-03-10 22:38:42','2015-03-10 22:38:42',1,30001512,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(413,'2015-03-10 22:38:42','2015-08-29 14:46:03',1,30002889,0,0,0,0,0,0,0,0,0,0,0,0,0,1,2,1,0,0,0,0,0,0,0,0),(414,'2015-03-10 22:38:42','2015-03-10 22:38:42',1,30002461,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(415,'2015-03-10 22:38:42','2015-08-29 14:46:03',1,30004736,0,0,0,0,0,0,0,0,0,1,2,0,0,0,1,1,0,0,1,0,0,0,0,0),(416,'2015-03-10 22:38:42','2015-03-10 22:38:42',1,30001940,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(417,'2015-03-10 22:38:42','2015-03-10 22:38:42',1,30004673,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(418,'2015-03-10 22:38:42','2015-03-10 22:38:42',1,30000646,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(419,'2015-03-10 22:38:42','2015-08-29 14:46:03',1,30004391,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,1,0,0,0,0,0,0),(420,'2015-03-10 22:38:42','2015-03-10 22:38:42',1,30000762,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(421,'2015-03-10 22:38:42','2015-03-10 22:38:42',1,30004166,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(422,'2015-03-10 22:38:42','2015-08-29 14:46:03',1,30004789,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0),(423,'2015-03-10 22:38:42','2015-03-10 22:38:42',1,30003310,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(424,'2015-03-10 22:38:42','2015-03-10 22:38:42',1,30003214,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(425,'2015-03-10 22:38:42','2015-03-10 22:38:42',1,30003111,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(426,'2015-03-10 22:38:42','2015-08-29 14:46:03',1,30001972,0,0,0,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(427,'2015-03-10 22:38:42','2015-03-10 22:38:42',1,30001101,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(428,'2015-03-10 22:38:42','2015-08-29 14:46:03',1,30004774,0,0,0,0,0,0,0,0,0,0,0,0,0,3,3,0,0,0,0,0,0,0,0,0),(429,'2015-03-10 22:38:42','2015-08-29 14:46:03',1,30004670,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,1,0),(430,'2015-03-10 22:38:42','2015-08-29 14:46:03',1,30004573,0,0,0,0,0,0,0,0,0,0,0,1,0,0,1,1,0,0,0,0,0,0,0,0),(431,'2015-03-10 22:38:42','2015-08-29 14:46:03',1,30003290,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,2,0),(432,'2015-03-10 22:38:42','2015-08-29 14:46:03',1,30003321,2,0,1,2,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,1,0,0),(433,'2015-03-10 22:38:42','2015-03-10 22:38:42',1,30003267,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(434,'2015-03-10 22:38:42','2015-03-10 22:38:42',1,30004412,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(435,'2015-03-10 22:38:42','2015-08-29 14:46:03',1,30004455,0,2,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(436,'2015-03-10 22:38:42','2015-08-29 14:46:03',1,30004039,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(437,'2015-03-10 22:38:42','2015-08-29 14:46:03',1,30000705,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0),(438,'2015-03-10 22:38:42','2015-08-29 14:46:03',1,30001241,0,0,0,0,0,0,0,0,1,0,0,0,0,0,1,1,0,0,1,0,0,0,1,0),(439,'2015-03-10 22:38:42','2015-03-10 22:38:42',1,30004865,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(440,'2015-03-10 22:38:42','2015-03-10 22:38:42',1,30003630,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(441,'2015-03-10 22:38:42','2015-03-10 22:38:42',1,30004374,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(442,'2015-03-10 22:38:42','2015-03-10 22:38:42',1,30001478,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(443,'2015-03-10 22:38:42','2015-03-10 22:38:42',1,30003302,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(444,'2015-03-10 22:38:42','2015-08-29 14:46:03',1,30005151,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0),(445,'2015-03-10 22:38:42','2015-08-29 14:46:03',1,30002883,0,0,0,0,0,0,0,0,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,0),(446,'2015-03-10 22:38:42','2015-03-10 22:38:42',1,30003346,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(447,'2015-03-10 22:38:42','2015-03-10 22:38:42',1,30001641,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(448,'2015-03-10 22:38:42','2015-03-10 22:38:42',1,30000912,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(449,'2015-03-10 22:38:42','2015-03-10 22:38:42',1,30003354,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(450,'2015-03-10 22:38:42','2015-08-29 14:46:03',1,30000453,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,0,0,0,0),(451,'2015-03-10 22:38:42','2015-08-29 14:46:03',1,30004344,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(452,'2015-03-10 22:38:42','2015-03-10 22:38:42',1,30000989,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(453,'2015-03-10 22:38:42','2015-03-10 22:38:42',1,30002480,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(454,'2015-03-10 22:38:42','2015-03-10 22:38:42',1,30001480,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(455,'2015-03-10 22:38:42','2015-03-10 22:38:42',1,30000908,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(456,'2015-03-10 22:38:42','2015-03-10 22:38:42',1,30004643,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(457,'2015-03-10 22:38:42','2015-08-29 14:46:03',1,30003350,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,0,0,0,0,0,0,0,0),(458,'2015-03-10 22:38:42','2015-03-10 22:38:42',1,30001850,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(459,'2015-03-10 22:38:42','2015-08-29 14:46:03',1,30004212,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0),(460,'2015-03-10 22:38:42','2015-08-29 14:46:03',1,30004675,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(461,'2015-03-10 22:38:42','2015-03-10 22:38:42',1,30001104,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(462,'2015-03-10 22:38:42','2015-08-29 14:46:03',1,30004761,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,0,0,0,0),(463,'2015-03-10 22:38:42','2015-03-10 22:38:42',1,30000844,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(464,'2015-03-10 22:38:42','2015-03-10 22:38:42',1,30000562,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(465,'2015-03-10 22:38:42','2015-08-29 14:46:03',1,30000554,0,0,0,0,0,0,0,0,1,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0),(466,'2015-03-10 22:38:42','2015-08-29 14:46:03',1,30004168,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,0,0,0,0),(467,'2015-03-10 22:38:42','2015-08-29 14:46:03',1,30001014,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,0,0,0,0,0),(468,'2015-03-10 22:38:42','2015-08-29 14:46:03',1,30004175,0,0,0,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(469,'2015-03-10 22:38:42','2015-08-29 14:46:03',1,30004193,0,0,0,0,0,0,0,1,0,0,0,1,0,1,1,0,0,0,0,1,0,0,0,0),(470,'2015-03-10 22:38:42','2015-03-10 22:38:42',1,30004445,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(471,'2015-03-10 22:38:42','2015-03-10 22:38:42',1,30000637,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(472,'2015-03-10 22:38:42','2015-03-10 22:38:42',1,30002501,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(473,'2015-03-10 22:38:42','2015-08-29 14:46:03',1,30000992,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(474,'2015-03-10 22:38:42','2015-03-10 22:38:42',1,30002591,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(475,'2015-03-10 22:38:42','2015-08-29 14:46:03',1,30000581,0,0,0,0,0,0,0,0,0,0,0,0,2,0,0,0,0,0,0,0,0,0,0,0),(476,'2015-03-10 22:38:42','2015-03-10 22:38:42',1,30004185,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(477,'2015-03-10 22:38:42','2015-03-10 22:38:42',1,30000820,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(478,'2015-03-10 22:38:42','2015-03-10 22:38:42',1,30003720,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(479,'2015-03-10 22:38:42','2015-08-29 14:46:03',1,30002291,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,15,0,0,0),(480,'2015-03-10 22:38:42','2015-03-10 22:38:42',1,30001951,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(481,'2015-03-10 22:38:42','2015-03-10 22:38:42',1,30000442,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(482,'2015-03-10 22:38:42','2015-03-10 22:38:42',1,30003223,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(483,'2015-03-10 22:38:42','2015-08-29 14:46:03',1,30003738,0,0,0,0,0,0,0,1,0,0,0,0,0,1,0,1,1,0,0,1,2,0,0,0),(484,'2015-03-10 22:38:42','2015-08-29 14:46:03',1,30003348,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,0,0,0,0),(485,'2015-03-10 22:38:42','2015-03-10 22:38:42',1,30001532,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(486,'2015-03-10 22:38:42','2015-03-10 22:38:42',1,30004345,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(487,'2015-03-10 22:38:42','2015-03-10 22:38:42',1,30000741,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(488,'2015-03-10 22:38:42','2015-03-10 22:38:42',1,30000609,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(489,'2015-03-10 22:38:42','2015-08-29 14:46:03',1,30000468,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(490,'2015-03-10 22:38:42','2015-03-10 22:38:42',1,30004477,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(491,'2015-03-10 22:38:42','2015-08-29 14:46:03',1,30000564,0,0,0,0,0,0,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(492,'2015-03-10 22:38:42','2015-03-10 22:38:42',1,30004067,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(493,'2015-03-10 22:38:42','2015-08-29 14:46:03',1,30002950,1,1,2,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(494,'2015-03-10 22:38:42','2015-03-10 22:38:42',1,30005115,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(495,'2015-03-10 22:38:42','2015-08-29 14:46:03',1,30000299,0,0,0,0,0,0,0,0,1,0,0,0,0,1,0,0,0,0,0,4,0,0,0,0),(496,'2015-03-10 22:38:42','2015-03-10 22:38:42',1,30002313,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(497,'2015-03-10 22:38:42','2015-03-10 22:38:42',1,30004008,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(498,'2015-03-10 22:38:42','2015-08-29 14:46:03',1,30005152,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0),(499,'2015-03-10 22:38:42','2015-03-10 22:38:42',1,30001626,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(500,'2015-03-10 22:38:42','2015-08-29 14:46:03',1,30002927,0,13,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(501,'2015-03-10 22:38:42','2015-03-10 22:38:42',1,30004508,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(502,'2015-03-10 22:38:42','2015-08-29 14:46:03',1,30004432,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0),(503,'2015-03-10 22:38:42','2015-03-10 22:38:42',1,30000218,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(504,'2015-03-10 22:38:42','2015-08-29 14:46:03',1,30005110,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(505,'2015-03-10 22:38:42','2015-08-29 14:46:03',1,30002005,0,6,2,0,0,0,3,3,0,0,0,1,2,0,1,1,5,0,1,1,5,7,3,0),(506,'2015-03-10 22:38:42','2015-03-10 22:38:42',1,30005111,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(507,'2015-03-10 22:38:42','2015-03-10 22:38:42',1,30001503,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(508,'2015-03-10 22:38:42','2015-03-10 22:38:42',1,30004053,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(509,'2015-03-10 22:38:42','2015-08-29 14:46:03',1,30005114,0,0,0,5,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(510,'2015-03-10 22:38:42','2015-03-10 22:38:42',1,30003640,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(511,'2015-03-10 22:38:42','2015-08-29 14:46:03',1,30003280,1,0,1,1,0,0,0,0,17,3,1,1,10,0,3,3,2,12,6,2,1,0,1,0),(512,'2015-03-10 22:38:42','2015-03-10 22:38:42',1,30004486,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(513,'2015-03-10 22:38:42','2015-03-10 22:38:42',1,30000706,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(514,'2015-03-10 22:38:42','2015-03-10 22:38:42',1,30001759,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(515,'2015-03-10 22:38:42','2015-03-10 22:38:42',1,30001603,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(516,'2015-03-10 22:38:42','2015-08-29 14:46:03',1,30002167,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,1,0,0,0,4,0,0,0,0),(517,'2015-03-10 22:38:42','2015-08-29 14:46:03',1,30004810,1,0,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(518,'2015-03-10 22:38:42','2015-08-29 14:46:03',1,30001167,0,0,0,0,0,0,0,0,1,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0),(519,'2015-03-10 22:38:42','2015-08-29 14:46:03',1,30000728,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(520,'2015-03-10 22:38:42','2015-08-29 14:46:03',1,30000557,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0),(521,'2015-03-10 22:38:42','2015-08-29 14:46:03',1,30001184,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,0,1,0,0,0,0,0),(522,'2015-03-10 22:38:42','2015-03-10 22:38:42',1,30001492,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(523,'2015-03-10 22:38:42','2015-08-29 14:46:03',1,30004347,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(524,'2015-03-10 22:38:42','2015-08-29 14:46:03',1,30003745,1,0,0,0,0,0,0,0,2,0,0,0,0,0,0,0,0,0,0,1,2,0,0,0),(525,'2015-03-10 22:38:42','2015-03-10 22:38:42',1,30001488,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(526,'2015-03-10 22:38:42','2015-03-10 22:38:42',1,30003145,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(527,'2015-03-10 22:38:42','2015-08-29 14:46:03',1,30003316,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,0,0,0),(528,'2015-03-10 22:38:42','2015-03-10 22:38:42',1,30001111,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(529,'2015-03-10 22:38:42','2015-03-10 22:38:42',1,30003956,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(530,'2015-03-10 22:38:42','2015-08-29 14:46:03',1,30003315,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0),(531,'2015-03-10 22:38:42','2015-08-29 14:46:03',1,30000513,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(532,'2015-03-10 22:38:42','2015-03-10 22:38:42',1,30001092,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(533,'2015-03-10 22:38:42','2015-08-29 14:46:03',1,30001317,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(534,'2015-03-10 22:38:42','2015-03-10 22:38:42',1,30004923,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(535,'2015-03-10 22:38:42','2015-08-29 14:46:03',1,30000289,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(536,'2015-03-10 22:38:42','2015-03-10 22:38:42',1,30000985,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(537,'2015-03-10 22:38:42','2015-08-29 14:46:03',1,30004604,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(538,'2015-03-10 22:38:42','2015-03-10 22:38:42',1,30000791,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(539,'2015-03-10 22:38:42','2015-03-10 22:38:42',1,30002593,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(540,'2015-03-10 22:38:42','2015-03-10 22:38:42',1,30001624,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(541,'2015-03-10 22:38:42','2015-03-10 22:38:42',1,30001134,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(542,'2015-03-10 22:38:42','2015-03-10 22:38:42',1,30002623,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(543,'2015-03-10 22:38:42','2015-03-10 22:38:42',1,30000764,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(544,'2015-03-10 22:38:42','2015-03-10 22:38:42',1,30000371,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(545,'2015-03-10 22:38:42','2015-08-29 14:46:03',1,30001257,0,0,0,0,0,0,0,0,0,0,1,1,5,0,2,2,3,4,0,0,0,0,0,0),(546,'2015-03-10 22:38:42','2015-08-29 14:46:03',1,30003270,0,1,1,0,0,1,0,0,0,0,0,0,0,3,0,0,0,0,0,2,4,0,0,0),(547,'2015-03-10 22:38:42','2015-08-29 14:46:03',1,30002619,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0),(548,'2015-03-10 22:38:42','2015-08-29 14:46:03',1,30000907,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(549,'2015-03-10 22:38:42','2015-03-10 22:38:42',1,30003139,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(550,'2015-03-10 22:38:42','2015-03-10 22:38:42',1,30004591,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(551,'2015-03-10 22:38:42','2015-03-10 22:38:42',1,30000402,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(552,'2015-03-10 22:38:42','2015-08-29 14:46:03',1,30002855,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,3,0,0,0,0),(553,'2015-03-10 22:38:42','2015-08-29 14:46:03',1,30002025,1,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0),(554,'2015-03-10 22:38:42','2015-08-29 14:46:03',1,30002459,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0),(555,'2015-03-10 22:38:42','2015-08-29 14:46:03',1,30001290,5,1,1,0,0,4,0,0,1,4,2,0,1,1,0,1,2,2,3,2,0,1,2,0),(556,'2015-03-10 22:38:42','2015-08-29 14:46:03',1,30004442,0,0,0,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(557,'2015-03-10 22:38:42','2015-03-10 22:38:42',1,30004073,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(558,'2015-03-10 22:38:42','2015-03-10 22:38:42',1,30000457,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(559,'2015-03-10 22:38:42','2015-03-10 22:38:42',1,30003648,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(560,'2015-03-10 22:38:42','2015-08-29 14:46:03',1,30004740,0,1,0,0,0,3,0,0,3,2,4,0,3,2,0,0,0,1,1,11,0,0,2,0),(561,'2015-03-10 22:38:42','2015-03-10 22:38:42',1,30005128,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(562,'2015-03-10 22:38:42','2015-03-10 22:38:42',1,30000364,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(563,'2015-03-10 22:38:42','2015-08-29 14:46:03',1,30001930,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0),(564,'2015-03-10 22:38:42','2015-03-10 22:38:42',1,30003303,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(565,'2015-03-10 22:38:42','2015-08-29 14:46:03',1,30004070,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0),(566,'2015-03-10 22:38:42','2015-08-29 14:46:03',1,30002446,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,0,0),(567,'2015-03-10 22:38:42','2015-03-10 22:38:42',1,30003179,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(568,'2015-03-10 22:38:42','2015-08-29 14:46:03',1,30004908,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0),(569,'2015-03-10 22:38:42','2015-03-10 22:38:42',1,30001545,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(570,'2015-03-10 22:38:42','2015-08-29 14:46:03',1,30003210,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0),(571,'2015-03-10 22:38:42','2015-03-10 22:38:42',1,30001339,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(572,'2015-03-10 22:38:42','2015-03-10 22:38:42',1,30001067,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(573,'2015-03-10 22:38:42','2015-03-10 22:38:42',1,30002832,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(574,'2015-03-10 22:38:42','2015-08-29 14:46:03',1,30004608,0,0,0,0,0,0,0,0,0,0,0,0,3,0,0,1,0,1,1,1,0,0,0,0),(575,'2015-03-10 22:38:42','2015-03-10 22:38:42',1,30001574,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(576,'2015-03-10 22:38:42','2015-08-29 14:46:03',1,30001276,0,0,0,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,0,0),(577,'2015-03-10 22:38:42','2015-08-29 14:46:03',1,30000967,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,3,0),(578,'2015-03-10 22:38:42','2015-03-10 22:38:42',1,30000258,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(579,'2015-03-10 22:38:42','2015-08-29 14:46:03',1,30001197,0,2,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0),(580,'2015-03-10 22:38:42','2015-08-29 14:46:03',1,30001907,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0),(581,'2015-03-10 22:38:42','2015-03-10 22:38:42',1,30000297,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(582,'2015-03-10 22:38:42','2015-03-10 22:38:42',1,30002465,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(583,'2015-03-10 22:38:42','2015-03-10 22:38:42',1,30004792,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(584,'2015-03-10 22:38:42','2015-03-10 22:38:42',1,30004057,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(585,'2015-03-10 22:38:42','2015-03-10 22:38:42',1,30001328,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(586,'2015-03-10 22:38:42','2015-03-10 22:38:42',1,30001075,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(587,'2015-03-10 22:38:42','2015-03-10 22:38:42',1,30004525,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(588,'2015-03-10 22:38:42','2015-08-29 14:46:03',1,30004925,0,0,0,0,0,5,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(589,'2015-03-10 22:38:42','2015-03-10 22:38:42',1,30004585,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(590,'2015-03-10 22:38:42','2015-03-10 22:38:42',1,30001608,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(591,'2015-03-10 22:38:42','2015-03-10 22:38:42',1,30000525,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(592,'2015-03-10 22:38:42','2015-03-10 22:38:42',1,30000919,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(593,'2015-03-10 22:38:42','2015-08-29 14:46:03',1,30000759,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(594,'2015-03-10 22:38:42','2015-03-10 22:38:42',1,30000224,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(595,'2015-03-10 22:38:42','2015-08-29 14:46:03',1,30004790,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,2,0,0),(596,'2015-03-10 22:38:42','2015-08-29 14:46:03',1,30000487,0,0,0,0,0,0,0,0,0,0,0,0,0,2,2,0,0,0,0,0,0,0,0,0),(597,'2015-03-10 22:38:42','2015-03-10 22:38:42',1,30000287,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(598,'2015-03-10 22:38:42','2015-03-10 22:38:42',1,30001588,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(599,'2015-03-10 22:38:42','2015-08-29 14:46:03',1,30000217,0,2,0,0,1,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0),(600,'2015-03-10 22:38:42','2015-03-10 22:38:42',1,30003217,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(601,'2015-03-10 22:38:42','2015-03-10 22:38:42',1,30001884,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(602,'2015-03-10 22:38:42','2015-08-29 14:46:03',1,30001057,0,0,0,0,0,0,0,0,0,2,2,1,0,0,0,0,0,0,0,0,0,0,0,0),(603,'2015-03-10 22:38:42','2015-03-10 22:38:42',1,30002158,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(604,'2015-03-10 22:38:42','2015-08-29 14:46:03',1,30000726,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0),(605,'2015-03-10 22:38:42','2015-03-10 22:38:42',1,30004893,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(606,'2015-03-10 22:38:42','2015-03-10 22:38:42',1,30002848,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(607,'2015-03-10 22:38:42','2015-08-29 14:46:03',1,30000787,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(608,'2015-03-10 22:38:42','2015-03-10 22:38:42',1,30000333,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(609,'2015-03-10 22:38:42','2015-03-10 22:38:42',1,30000827,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(610,'2015-03-10 22:38:42','2015-08-29 14:46:03',1,30004429,0,1,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0),(611,'2015-03-10 22:38:42','2015-08-29 14:46:03',1,30004620,0,0,0,0,0,0,0,0,0,0,0,4,4,0,1,2,3,0,0,0,1,3,3,0),(612,'2015-03-10 22:38:42','2015-08-29 14:46:03',1,30004045,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,1,0,0),(613,'2015-03-10 22:38:42','2015-03-10 22:38:42',1,30000483,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(614,'2015-03-10 22:38:42','2015-08-29 14:46:03',1,30000773,0,0,0,2,1,0,0,0,0,0,0,0,1,2,0,0,0,0,0,0,0,0,0,0),(615,'2015-03-10 22:38:42','2015-03-10 22:38:42',1,30004816,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(616,'2015-03-10 22:38:42','2015-08-29 14:46:03',1,30002125,0,2,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(617,'2015-03-10 22:38:42','2015-03-10 22:38:42',1,30005145,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(618,'2015-03-10 22:38:42','2015-03-10 22:38:42',1,30001639,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(619,'2015-03-10 22:38:42','2015-03-10 22:38:42',1,30004635,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(620,'2015-03-10 22:38:42','2015-08-29 14:46:03',1,30004616,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0),(621,'2015-03-10 22:38:42','2015-03-10 22:38:42',1,30000360,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(622,'2015-03-10 22:38:42','2015-08-29 14:46:03',1,30002046,0,0,0,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(623,'2015-03-10 22:38:42','2015-03-10 22:38:42',1,30003671,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(624,'2015-03-10 22:38:42','2015-08-29 14:46:03',1,30000840,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0),(625,'2015-03-10 22:38:42','2015-08-29 14:46:03',1,30001817,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0),(626,'2015-03-10 22:38:42','2015-08-29 14:46:03',1,30000323,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0),(627,'2015-03-10 22:38:42','2015-03-10 22:38:42',1,30004768,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(628,'2015-03-10 22:38:42','2015-03-10 22:38:42',1,30003948,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(629,'2015-03-10 22:38:42','2015-03-10 22:38:42',1,30001457,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(630,'2015-03-10 22:38:42','2015-03-10 22:38:42',1,30000955,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(631,'2015-03-10 22:38:42','2015-03-10 22:38:42',1,30005176,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(632,'2015-03-10 22:38:42','2015-03-10 22:38:42',1,30000606,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(633,'2015-03-10 22:38:42','2015-03-10 22:38:42',1,30004872,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(634,'2015-03-10 22:38:42','2015-08-29 14:46:03',1,30000745,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(635,'2015-03-10 22:38:42','2015-08-29 14:46:03',1,30004926,0,0,0,0,0,0,0,1,0,0,0,0,0,3,0,0,0,0,0,0,0,0,0,0),(636,'2015-03-10 22:38:42','2015-08-29 14:46:03',1,30001218,0,0,0,0,0,0,0,0,4,2,0,0,1,1,1,2,0,0,0,2,0,0,2,0),(637,'2015-03-10 22:38:42','2015-03-10 22:38:42',1,30000383,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(638,'2015-03-10 22:38:42','2015-03-10 22:38:42',1,30005138,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(639,'2015-03-10 22:38:42','2015-03-10 22:38:42',1,30004860,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(640,'2015-03-10 22:38:42','2015-08-29 14:46:03',1,30001232,0,0,1,0,0,0,0,0,0,0,0,0,0,1,0,0,2,0,2,0,0,0,1,0),(641,'2015-03-10 22:38:42','2015-03-10 22:38:42',1,30005146,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(642,'2015-03-10 22:38:42','2015-03-10 22:38:42',1,30000353,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(643,'2015-03-10 22:38:42','2015-03-10 22:38:42',1,30003165,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(644,'2015-03-10 22:38:42','2015-08-29 14:46:03',1,30000943,8,0,0,0,0,0,1,0,2,3,5,2,0,1,11,11,1,3,1,6,2,1,7,0),(645,'2015-03-10 22:38:42','2015-08-29 14:46:03',1,30001845,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,0,0,0,0,0,0,0),(646,'2015-03-10 22:38:42','2015-08-29 14:46:03',1,30002016,0,16,3,3,6,24,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,0),(647,'2015-03-10 22:38:42','2015-03-10 22:38:42',1,30001141,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(648,'2015-03-10 22:38:42','2015-03-10 22:38:42',1,30002929,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(649,'2015-03-10 22:38:42','2015-08-29 14:46:03',1,30004788,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,0,0,0,0),(650,'2015-03-10 22:38:42','2015-08-29 14:46:03',1,30003945,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(651,'2015-03-10 22:38:42','2015-03-10 22:38:42',1,30004587,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(652,'2015-03-10 22:38:42','2015-03-10 22:38:42',1,30002031,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(653,'2015-03-10 22:38:42','2015-08-29 14:46:03',1,30002177,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,1,0,0,0,0),(654,'2015-03-10 22:38:42','2015-03-10 22:38:42',1,30003778,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(655,'2015-03-10 22:38:42','2015-08-29 14:46:03',1,30001071,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,0,0,0,0),(656,'2015-03-10 22:38:42','2015-08-29 14:46:03',1,30004351,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(657,'2015-03-10 22:38:42','2015-03-10 22:38:42',1,30004869,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(658,'2015-03-10 22:38:42','2015-03-10 22:38:42',1,30001768,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(659,'2015-03-10 22:38:42','2015-03-10 22:38:42',1,30004862,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(660,'2015-03-10 22:38:42','2015-03-10 22:38:42',1,30000614,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(661,'2015-03-10 22:38:42','2015-03-10 22:38:42',1,30004001,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(662,'2015-03-10 22:38:42','2015-03-10 22:38:42',1,30003282,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(663,'2015-03-10 22:38:42','2015-08-29 14:46:03',1,30002484,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(664,'2015-03-10 22:38:42','2015-03-10 22:38:42',1,30002293,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(665,'2015-03-10 22:38:42','2015-03-10 22:38:42',1,30000542,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(666,'2015-03-10 22:38:42','2015-03-10 22:38:42',1,30000334,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(667,'2015-03-10 22:38:42','2015-08-29 14:46:03',1,30003985,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,0,0,0,0,1,1,0,0),(668,'2015-03-10 22:38:42','2015-08-29 14:46:03',1,30000628,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,1,0,0,0,0,0,0,0,0),(669,'2015-03-10 22:38:42','2015-08-29 14:46:03',1,30000312,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(670,'2015-03-10 22:38:42','2015-03-10 22:38:42',1,30001514,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(671,'2015-03-10 22:38:42','2015-03-10 22:38:42',1,30001627,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(672,'2015-03-10 22:38:42','2015-03-10 22:38:42',1,30000648,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(673,'2015-03-10 22:38:42','2015-03-10 22:38:42',1,30000775,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(674,'2015-03-10 22:38:42','2015-08-29 14:46:03',1,30004025,0,0,0,0,0,0,0,0,0,1,1,1,0,0,0,0,0,0,0,0,0,0,0,0),(675,'2015-03-10 22:38:42','2015-08-29 14:46:03',1,30001745,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0),(676,'2015-03-10 22:38:42','2015-03-10 22:38:42',1,30003189,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(677,'2015-03-10 22:38:42','2015-03-10 22:38:42',1,30002924,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(678,'2015-03-10 22:38:42','2015-03-10 22:38:42',1,30001132,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(679,'2015-03-10 22:38:42','2015-08-29 14:46:03',1,30002885,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0),(680,'2015-03-10 22:38:42','2015-08-29 14:46:03',1,30004190,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0),(681,'2015-03-10 22:38:42','2015-08-29 14:46:03',1,30004640,0,0,0,0,0,0,0,0,1,3,3,0,0,0,1,1,0,0,0,0,0,0,1,0),(682,'2015-03-10 22:38:42','2015-03-10 22:38:42',1,30000770,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(683,'2015-03-10 22:38:42','2015-08-29 14:46:03',1,30002346,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(684,'2015-03-10 22:38:42','2015-03-10 22:38:42',1,30002314,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(685,'2015-03-10 22:38:42','2015-03-10 22:38:42',1,30001053,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(686,'2015-03-10 22:38:42','2015-08-29 14:46:03',1,30001219,0,0,0,0,0,0,0,0,0,0,0,0,2,0,0,0,0,0,0,1,0,0,0,0),(687,'2015-03-10 22:38:42','2015-03-10 22:38:42',1,30005164,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(688,'2015-03-10 22:38:42','2015-03-10 22:38:42',1,30003974,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(689,'2015-03-10 22:38:42','2015-08-29 14:46:03',1,30003771,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(690,'2015-03-10 22:38:42','2015-08-29 14:46:03',1,30001144,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0),(691,'2015-03-10 22:38:42','2015-08-29 14:46:03',1,30001298,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(692,'2015-03-10 22:38:42','2015-08-29 14:46:03',1,30000731,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0),(693,'2015-03-10 22:38:42','2015-03-10 22:38:42',1,30000910,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(694,'2015-03-10 22:38:42','2015-03-10 22:38:42',1,30000748,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(695,'2015-03-10 22:38:42','2015-03-10 22:38:42',1,30004574,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(696,'2015-03-10 22:38:42','2015-08-29 14:46:03',1,30004781,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(697,'2015-03-10 22:38:42','2015-03-10 22:38:42',1,30000494,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(698,'2015-03-10 22:38:42','2015-08-29 14:46:03',1,30000771,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0),(699,'2015-03-10 22:38:42','2015-08-29 14:46:03',1,30001017,10,4,1,0,0,4,5,1,5,1,0,0,3,0,0,1,0,3,3,1,0,0,0,0),(700,'2015-03-10 22:38:42','2015-08-29 14:46:03',1,30001776,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(701,'2015-03-10 22:38:42','2015-08-29 14:46:03',1,30002354,1,0,0,0,0,0,0,0,0,2,1,0,0,0,0,0,1,0,0,0,1,0,0,0),(702,'2015-03-10 22:38:42','2015-08-29 14:46:03',1,30001887,0,0,0,0,0,0,0,0,1,2,1,0,0,0,0,0,0,0,0,0,2,0,0,0),(703,'2015-03-10 22:38:42','2015-03-10 22:38:42',1,30004942,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(704,'2015-03-10 22:38:42','2015-08-29 14:46:03',1,30002442,0,1,1,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,1,2,0,0,0,0),(705,'2015-03-10 22:38:42','2015-03-10 22:38:42',1,30000391,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(706,'2015-03-10 22:38:42','2015-08-29 14:46:03',1,30001879,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0),(707,'2015-03-10 22:38:42','2015-08-29 14:46:03',1,30000652,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0),(708,'2015-03-10 22:38:42','2015-03-10 22:38:42',1,30001561,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(709,'2015-03-10 22:38:42','2015-08-29 14:46:03',1,30003750,0,0,0,0,0,0,0,0,1,2,1,1,0,0,0,0,0,0,0,120,1,0,3,0),(710,'2015-03-10 22:38:42','2015-08-29 14:46:03',1,30000697,0,0,0,0,0,0,0,0,1,1,0,0,0,0,3,3,0,0,1,6,0,0,0,0),(711,'2015-03-10 22:38:42','2015-03-10 22:38:42',1,30004681,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(712,'2015-03-10 22:38:42','2015-08-29 14:46:03',1,30003702,0,0,5,6,6,0,1,0,0,1,1,0,0,1,1,1,0,0,0,0,0,0,0,0),(713,'2015-03-10 22:38:42','2015-08-29 14:46:03',1,30004012,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(714,'2015-03-10 22:38:42','2015-08-29 14:46:03',1,30004056,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(715,'2015-03-10 22:38:42','2015-03-10 22:38:42',1,30001805,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(716,'2015-03-10 22:38:42','2015-03-10 22:38:42',1,30004771,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(717,'2015-03-10 22:38:42','2015-03-10 22:38:42',1,30001523,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(718,'2015-03-10 22:38:42','2015-08-29 14:46:03',1,30002004,0,0,1,0,0,0,0,0,0,0,0,0,0,5,5,0,1,0,0,0,0,0,0,0),(719,'2015-03-10 22:38:42','2015-08-29 14:46:03',1,30002930,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0),(720,'2015-03-10 22:38:42','2015-08-29 14:46:03',1,30000242,0,0,0,2,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0),(721,'2015-03-10 22:38:42','2015-03-10 22:38:42',1,30001614,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(722,'2015-03-10 22:38:42','2015-08-29 14:46:03',1,30003320,0,0,1,0,0,0,0,0,2,2,0,3,6,0,2,3,0,0,0,0,0,0,0,0),(723,'2015-03-10 22:38:42','2015-08-29 14:46:03',1,30003695,0,0,0,0,0,0,0,0,0,0,0,0,0,2,1,0,1,0,0,1,0,0,0,0),(724,'2015-03-10 22:38:42','2015-08-29 14:46:03',1,30004760,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(725,'2015-03-10 22:38:42','2015-08-29 14:46:03',1,30002171,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0),(726,'2015-03-10 22:38:42','2015-08-29 14:46:03',1,30000942,0,0,0,0,0,0,0,0,1,1,0,0,2,0,0,0,0,0,0,3,2,0,0,0),(727,'2015-03-10 22:38:42','2015-08-29 14:46:03',1,30001877,0,0,0,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,0,0),(728,'2015-03-10 22:38:42','2015-03-10 22:38:42',1,30000469,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(729,'2015-03-10 22:38:42','2015-08-29 14:46:03',1,30002868,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,3,0,0,0),(730,'2015-03-10 22:38:42','2015-08-29 14:46:03',1,30001273,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,1,0,0,0,0,0,0,1,0),(731,'2015-03-10 22:38:42','2015-03-10 22:38:42',1,30000939,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(732,'2015-03-10 22:38:42','2015-03-10 22:38:42',1,30004059,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(733,'2015-03-10 22:38:42','2015-03-10 22:38:42',1,30004219,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(734,'2015-03-10 22:38:42','2015-08-29 14:46:03',1,30001279,1,0,0,0,0,0,0,1,1,0,0,0,1,0,0,0,0,0,0,2,0,0,0,0),(735,'2015-03-10 22:38:42','2015-08-29 14:46:03',1,30001166,0,0,0,1,1,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,1,1,0),(736,'2015-03-10 22:38:42','2015-08-29 14:46:03',1,30004879,0,0,0,0,0,1,0,0,0,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0),(737,'2015-03-10 22:38:42','2015-08-29 14:46:03',1,30004397,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0),(738,'2015-03-10 22:38:42','2015-03-10 22:38:42',1,30001600,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(739,'2015-03-10 22:38:42','2015-03-10 22:38:42',1,30001484,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(740,'2015-03-10 22:38:42','2015-08-29 14:46:03',1,30005148,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(741,'2015-03-10 22:38:42','2015-08-29 14:46:03',1,30003704,1,0,0,0,0,0,0,0,0,0,0,0,6,2,1,0,1,0,0,0,1,0,0,0),(742,'2015-03-10 22:38:42','2015-08-29 14:46:03',1,30000318,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,0,0,0,0),(743,'2015-03-10 22:38:42','2015-03-10 22:38:42',1,30003961,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(744,'2015-03-10 22:38:42','2015-08-29 14:46:03',1,30002590,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0),(745,'2015-03-10 22:38:42','2015-03-10 22:38:42',1,30002450,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(746,'2015-03-10 22:38:42','2015-08-29 14:46:03',1,30004826,0,0,0,0,0,0,22,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(747,'2015-03-10 22:38:42','2015-03-10 22:38:42',1,30000454,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(748,'2015-03-10 22:38:42','2015-08-29 14:46:03',1,30001266,0,0,0,0,0,0,0,0,0,0,0,1,0,1,6,8,1,0,0,0,0,5,0,0),(749,'2015-03-10 22:38:42','2015-08-29 14:46:03',1,30004557,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,0,0,0,0,0,0,2,0,0),(750,'2015-03-10 22:38:42','2015-08-29 14:46:03',1,30004201,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(751,'2015-03-10 22:38:42','2015-08-29 14:46:03',1,30002159,0,2,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(752,'2015-03-10 22:38:42','2015-03-10 22:38:42',1,30005168,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(753,'2015-03-10 22:38:42','2015-08-29 14:46:03',1,30004409,0,0,0,0,0,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(754,'2015-03-10 22:38:42','2015-08-29 14:46:03',1,30001814,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(755,'2015-03-10 22:38:42','2015-03-10 22:38:42',1,30001609,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(756,'2015-03-10 22:38:42','2015-03-10 22:38:42',1,30003253,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(757,'2015-03-10 22:38:42','2015-03-10 22:38:42',1,30000994,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(758,'2015-03-10 22:38:42','2015-08-29 14:46:03',1,30001312,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0),(759,'2015-03-10 22:38:42','2015-08-29 14:46:03',1,30001284,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(760,'2015-03-10 22:38:42','2015-08-29 14:46:03',1,30001990,1,0,2,3,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(761,'2015-03-10 22:38:42','2015-08-29 14:46:03',1,30002895,0,0,0,0,0,0,1,0,0,0,6,1,2,0,0,0,0,0,0,5,13,0,0,0),(762,'2015-03-10 22:38:42','2015-03-10 22:38:42',1,30002131,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(763,'2015-03-10 22:38:42','2015-08-29 14:46:03',1,30000271,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(764,'2015-03-10 22:38:42','2015-08-29 14:46:03',1,30005130,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0),(765,'2015-03-10 22:38:42','2015-08-29 14:46:03',1,30003301,0,5,0,0,0,3,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(766,'2015-03-10 22:38:42','2015-03-10 22:38:42',1,30000392,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(767,'2015-03-10 22:38:42','2015-08-29 14:46:03',1,30003373,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0),(768,'2015-03-10 22:38:42','2015-08-29 14:46:03',1,30004914,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(769,'2015-03-10 22:38:42','2015-08-29 14:46:03',1,30000616,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(770,'2015-03-10 22:38:42','2015-03-10 22:38:42',1,30000724,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(771,'2015-03-10 22:38:42','2015-08-29 14:46:03',1,30003979,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0),(772,'2015-03-10 22:38:42','2015-08-29 14:46:03',1,30002949,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(773,'2015-03-10 22:38:42','2015-03-10 22:38:42',1,30004629,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(774,'2015-03-10 22:38:42','2015-08-29 14:46:03',1,30004646,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0),(775,'2015-03-10 22:38:42','2015-03-10 22:38:42',1,30003954,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(776,'2015-03-10 22:38:42','2015-08-29 14:46:03',1,30002284,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0),(777,'2015-03-10 22:38:42','2015-08-29 14:46:03',1,30004366,0,0,0,0,1,0,2,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(778,'2015-03-10 22:38:42','2015-08-29 14:46:03',1,30001079,0,0,0,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(779,'2015-03-10 22:38:42','2015-03-10 22:38:42',1,30003249,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(780,'2015-03-10 22:38:42','2015-08-29 14:46:03',1,30000875,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(781,'2015-03-10 22:38:42','2015-03-10 22:38:42',1,30004796,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(782,'2015-03-10 22:38:42','2015-08-29 14:46:03',1,30003338,0,2,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(783,'2015-03-10 22:38:42','2015-08-29 14:46:03',1,30002589,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,1,1,0,0,0,0),(784,'2015-03-10 22:38:42','2015-03-10 22:38:42',1,30001306,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(785,'2015-03-10 22:38:42','2015-03-10 22:38:42',1,30005180,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(786,'2015-03-10 22:38:42','2015-03-10 22:38:42',1,30000429,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(787,'2015-03-10 22:38:42','2015-03-10 22:38:42',1,30004169,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(788,'2015-03-10 22:38:42','2015-08-29 14:46:03',1,30001154,0,0,0,0,0,0,3,6,25,4,12,6,1,5,9,4,0,5,5,10,3,11,4,0),(789,'2015-03-10 22:38:42','2015-03-10 22:38:42',1,30000723,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(790,'2015-03-10 22:38:42','2015-08-29 14:46:03',1,30004884,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,0,0,0,0,0,0),(791,'2015-03-10 22:38:42','2015-03-10 22:38:42',1,30000399,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(792,'2015-03-10 22:38:42','2015-08-29 14:46:03',1,30000458,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0),(793,'2015-03-10 22:38:42','2015-03-10 22:38:42',1,30001128,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(794,'2015-03-10 22:38:42','2015-03-10 22:38:42',1,30004780,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(795,'2015-03-10 22:38:42','2015-08-29 14:46:03',1,30004582,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,0,0,0,0),(796,'2015-03-10 22:38:42','2015-08-29 14:46:03',1,30001886,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,0,0,0,0,0,0),(797,'2015-03-10 22:38:42','2015-08-29 14:46:03',1,30000800,0,0,0,1,1,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(798,'2015-03-10 22:38:42','2015-03-10 22:38:42',1,30000247,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(799,'2015-03-10 22:38:42','2015-03-10 22:38:42',1,30002287,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(800,'2015-03-10 22:38:42','2015-08-29 14:46:03',1,30002472,0,0,0,0,0,0,0,0,0,0,0,0,5,0,0,0,1,0,0,0,0,2,0,0),(801,'2015-03-10 22:38:42','2015-08-29 14:46:03',1,30000668,0,0,1,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0),(802,'2015-03-10 22:38:42','2015-03-10 22:38:42',1,30002339,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(803,'2015-03-10 22:38:42','2015-08-29 14:46:03',1,30004569,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0),(804,'2015-03-10 22:38:42','2015-08-29 14:46:03',1,30001840,0,0,0,1,1,1,0,0,1,0,0,0,0,0,2,2,1,0,0,0,0,1,2,0),(805,'2015-03-10 22:38:42','2015-03-10 22:38:42',1,30001796,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(806,'2015-03-10 22:38:42','2015-03-10 22:38:42',1,30004022,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(807,'2015-03-10 22:38:42','2015-03-10 22:38:42',1,30000883,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(808,'2015-03-10 22:38:42','2015-08-29 14:46:03',1,30000969,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,1,0,2,1,2,0),(809,'2015-03-10 22:38:42','2015-03-10 22:38:42',1,30004672,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(810,'2015-03-10 22:38:42','2015-03-10 22:38:42',1,30003341,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(811,'2015-03-10 22:38:42','2015-08-29 14:46:03',1,30001857,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,0,1,0),(812,'2015-03-10 22:38:42','2015-08-29 14:46:03',1,30003707,5,5,2,0,1,0,0,0,2,0,1,0,88,11,16,6,2,9,14,2,0,2,6,0),(813,'2015-03-10 22:38:42','2015-08-29 14:46:03',1,30005137,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,0,0,0,0,0,0,0),(814,'2015-03-10 22:38:42','2015-03-10 22:38:42',1,30000412,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(815,'2015-03-10 22:38:42','2015-03-10 22:38:42',1,30001764,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(816,'2015-03-10 22:38:42','2015-08-29 14:46:03',1,30002618,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0),(817,'2015-03-10 22:38:42','2015-03-10 22:38:42',1,30004179,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(818,'2015-03-10 22:38:42','2015-08-29 14:46:03',1,30004619,0,0,0,1,2,0,1,0,0,0,0,0,0,0,0,0,1,0,0,0,1,0,0,0),(819,'2015-03-10 22:38:42','2015-03-10 22:38:42',1,30003650,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(820,'2015-03-10 22:38:42','2015-08-29 14:46:03',1,30003319,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,1,0),(821,'2015-03-10 22:38:42','2015-03-10 22:38:42',1,30000587,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(822,'2015-03-10 22:38:42','2015-03-10 22:38:42',1,30003977,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(823,'2015-03-10 22:38:42','2015-03-10 22:38:42',1,30004544,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(824,'2015-03-10 22:38:42','2015-03-10 22:38:42',1,30000491,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(825,'2015-03-10 22:38:42','2015-08-29 14:46:03',1,30001193,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0),(826,'2015-03-10 22:38:42','2015-08-29 14:46:03',1,30000702,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0),(827,'2015-03-10 22:38:42','2015-03-10 22:38:42',1,30001283,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(828,'2015-03-10 22:38:42','2015-08-29 14:46:03',1,30003967,0,0,0,0,0,0,0,3,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0),(829,'2015-03-10 22:38:42','2015-08-29 14:46:03',1,30000476,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0),(830,'2015-03-10 22:38:42','2015-03-10 22:38:42',1,30003100,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(831,'2015-03-10 22:38:42','2015-03-10 22:38:42',1,30000852,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(832,'2015-03-10 22:38:42','2015-03-10 22:38:42',1,30001954,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(833,'2015-03-10 22:38:42','2015-08-29 14:46:03',1,30004708,1,1,0,0,0,1,0,0,3,2,2,2,1,0,0,0,0,0,0,0,0,0,4,0),(834,'2015-03-10 22:38:42','2015-03-10 22:38:42',1,30004359,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(835,'2015-03-10 22:38:42','2015-03-10 22:38:42',1,30001870,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(836,'2015-03-10 22:38:42','2015-03-10 22:38:42',1,30004605,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(837,'2015-03-10 22:38:42','2015-08-29 14:46:03',1,30001537,0,7,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(838,'2015-03-10 22:38:42','2015-08-29 14:46:03',1,30000314,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0),(839,'2015-03-10 22:38:42','2015-08-29 14:46:03',1,30004850,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,1,0,0,0,0),(840,'2015-03-10 22:38:42','2015-08-29 14:46:03',1,30003335,7,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(841,'2015-03-10 22:38:42','2015-08-29 14:46:03',1,30000769,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(842,'2015-03-10 22:38:42','2015-08-29 14:46:03',1,30001210,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,0,0,1,0,0),(843,'2015-03-10 22:38:42','2015-03-10 22:38:42',1,30000362,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(844,'2015-03-10 22:38:42','2015-08-29 14:46:03',1,30001950,0,0,0,0,0,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(845,'2015-03-10 22:38:42','2015-03-10 22:38:42',1,30002836,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(846,'2015-03-10 22:38:42','2015-03-10 22:38:42',1,30003305,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(847,'2015-03-10 22:38:42','2015-08-29 14:46:03',1,30001077,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0),(848,'2015-03-10 22:38:42','2015-08-29 14:46:03',1,30003125,0,0,0,0,0,0,0,0,0,0,0,1,3,0,0,0,0,0,1,1,0,0,0,0),(849,'2015-03-10 22:38:42','2015-03-10 22:38:42',1,30002611,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(850,'2015-03-10 22:38:42','2015-03-10 22:38:42',1,30005167,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(851,'2015-03-10 22:38:42','2015-03-10 22:38:42',1,30003655,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(852,'2015-03-10 22:38:42','2015-08-29 14:46:03',1,30003942,2,0,0,0,0,0,0,0,0,2,3,0,0,1,0,0,1,0,0,0,0,0,0,0),(853,'2015-03-10 22:38:42','2015-08-29 14:46:03',1,30000794,0,0,0,0,0,2,0,0,0,0,0,0,0,7,2,0,0,0,1,0,1,0,0,0),(854,'2015-03-10 22:38:42','2015-08-29 14:46:03',1,30004550,0,0,0,0,0,0,1,0,0,0,0,0,1,1,0,0,0,0,0,0,0,0,0,0),(855,'2015-03-10 22:38:42','2015-08-29 14:46:03',1,30003944,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0),(856,'2015-03-10 22:38:42','2015-03-10 22:38:42',1,30000409,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(857,'2015-03-10 22:38:42','2015-03-10 22:38:42',1,30000317,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(858,'2015-03-10 22:38:42','2015-03-10 22:38:42',1,30002113,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(859,'2015-03-10 22:38:42','2015-08-29 14:46:03',1,30002952,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(860,'2015-03-10 22:38:42','2015-03-10 22:38:42',1,30001896,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(861,'2015-03-10 22:38:42','2015-03-10 22:38:42',1,30003150,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(862,'2015-03-10 22:38:42','2015-03-10 22:38:42',1,30004558,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(863,'2015-03-10 22:38:42','2015-08-29 14:46:03',1,30000259,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(864,'2015-03-10 22:38:42','2015-08-29 14:46:03',1,30001993,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0),(865,'2015-03-10 22:38:42','2015-08-29 14:46:03',1,30005092,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0),(866,'2015-03-10 22:38:42','2015-03-10 22:38:42',1,30001459,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(867,'2015-03-10 22:38:42','2015-03-10 22:38:42',1,30003331,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(868,'2015-03-10 22:38:42','2015-03-10 22:38:42',1,30004690,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(869,'2015-03-10 22:38:42','2015-08-29 14:46:03',1,30001285,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0),(870,'2015-03-10 22:38:42','2015-08-29 14:46:03',1,30001396,0,0,0,0,0,0,14,0,0,0,0,1,0,0,0,0,0,0,0,1,0,0,4,0),(871,'2015-03-10 22:38:42','2015-08-29 14:46:03',1,30001022,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0),(872,'2015-03-10 22:38:42','2015-08-29 14:46:03',1,30003293,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(873,'2015-03-10 22:38:42','2015-03-10 22:38:42',1,30000914,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(874,'2015-03-10 22:38:42','2015-08-29 14:46:03',1,30000147,0,0,2,0,0,0,0,0,0,2,1,0,0,0,1,2,0,0,0,0,0,0,0,0),(875,'2015-03-10 22:38:42','2015-08-29 14:46:03',1,30001694,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,1,2,1,0),(876,'2015-03-10 22:38:42','2015-08-29 14:46:03',1,30003512,0,0,0,0,1,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0),(877,'2015-03-10 22:38:42','2015-08-29 14:46:03',1,30004090,0,0,0,0,0,0,0,0,1,1,0,0,1,0,0,0,0,0,0,0,0,0,0,0),(878,'2015-03-10 22:38:42','2015-03-10 22:38:42',1,30005062,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(879,'2015-03-10 22:38:42','2015-03-10 22:38:42',1,30004831,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(880,'2015-03-10 22:38:42','2015-08-29 14:46:03',1,30002713,0,0,0,1,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,1,0),(881,'2015-03-10 22:38:42','2015-08-29 14:46:03',1,30000105,0,1,0,0,0,0,0,0,0,0,0,1,2,0,0,0,3,2,0,0,1,0,0,0),(882,'2015-03-10 22:38:42','2015-08-29 14:46:03',1,30005254,0,4,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0),(883,'2015-03-10 22:38:42','2015-08-29 14:46:03',1,30013410,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0),(884,'2015-03-10 22:38:42','2015-08-29 14:46:03',1,30002507,2,9,11,1,0,1,1,0,1,2,1,0,0,0,0,0,1,0,1,0,0,1,1,0),(885,'2015-03-10 22:38:42','2015-08-29 14:46:03',1,30004984,2,1,2,1,3,2,3,1,1,4,7,3,4,2,1,0,3,0,0,3,0,3,2,0),(886,'2015-03-10 22:38:42','2015-03-10 22:38:42',1,30002160,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(887,'2015-03-10 22:38:42','2015-03-10 22:38:42',1,30004563,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(888,'2015-03-10 22:38:42','2015-03-10 22:38:42',1,30005266,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(889,'2015-03-10 22:38:42','2015-08-29 14:46:03',1,30003028,0,0,0,0,0,0,0,0,0,0,1,0,0,3,3,0,0,1,0,0,0,0,0,0),(890,'2015-03-10 22:38:42','2015-08-29 14:46:03',1,30004981,0,0,0,0,0,0,0,0,0,2,2,0,1,0,0,0,0,0,0,0,1,0,0,0),(891,'2015-03-10 22:38:42','2015-08-29 14:46:03',1,30002478,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,1,16,0),(892,'2015-03-10 22:38:42','2015-03-10 22:38:42',1,30002892,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(893,'2015-03-10 22:38:42','2015-08-29 14:46:03',1,30003832,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(894,'2015-03-10 22:38:42','2015-08-29 14:46:03',1,30001648,0,0,0,0,0,0,0,0,0,0,0,0,4,0,1,1,0,0,0,0,0,0,4,0),(895,'2015-03-10 22:38:42','2015-08-29 14:46:03',1,30015305,0,0,0,6,3,0,3,4,3,0,0,1,0,0,0,0,1,0,0,3,1,0,0,0),(896,'2015-03-10 22:38:42','2015-03-10 22:38:42',1,30001717,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(897,'2015-03-10 22:38:42','2015-08-29 14:46:03',1,30003059,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0),(898,'2015-03-10 22:38:42','2015-08-29 14:46:03',1,30003439,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(899,'2015-03-10 22:38:42','2015-03-10 22:38:42',1,30002268,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(900,'2015-03-10 22:38:42','2015-08-29 14:46:03',1,30002710,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(901,'2015-03-10 22:38:42','2015-08-29 14:46:03',1,30005003,3,0,1,0,0,1,0,2,1,4,1,1,1,5,3,0,1,3,1,3,2,1,1,0),(902,'2015-03-10 22:38:42','2015-08-29 14:46:03',1,30002704,0,0,0,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(903,'2015-03-10 22:38:42','2015-08-29 14:46:03',1,30005021,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0),(904,'2015-03-10 22:38:42','2015-08-29 14:46:03',1,30002639,0,0,0,0,0,0,0,0,0,1,0,0,0,3,1,0,0,0,0,0,0,0,0,0),(905,'2015-03-10 22:38:42','2015-08-29 14:46:03',1,30002393,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,2,0,0,1,0),(906,'2015-03-10 22:38:42','2015-08-29 14:46:03',1,30002383,0,0,0,0,0,1,0,0,0,0,0,0,2,0,0,0,0,0,0,1,1,0,0,0),(907,'2015-03-10 22:38:42','2015-08-29 14:46:03',1,30002419,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(908,'2015-03-10 22:38:42','2015-08-29 14:46:03',1,30005006,0,0,0,0,0,1,0,1,0,0,0,0,0,0,0,2,0,0,0,0,0,1,0,0),(909,'2015-03-10 22:38:42','2015-08-29 14:46:03',1,30005008,2,1,1,1,4,1,0,2,6,3,4,5,10,2,2,1,2,1,1,1,6,1,1,0),(910,'2015-03-10 22:38:42','2015-03-10 22:38:42',1,30003585,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(911,'2015-03-10 22:38:42','2015-03-10 22:38:42',1,30002729,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(912,'2015-03-10 22:38:42','2015-08-29 14:46:03',1,30002107,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,0,0,0,0),(913,'2015-03-10 22:38:42','2015-08-29 14:46:03',1,30003535,0,4,0,1,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0),(914,'2015-03-10 22:38:42','2015-03-10 22:38:42',1,30002587,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(915,'2015-03-10 22:38:42','2015-03-10 22:38:42',1,30003903,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(916,'2015-03-10 22:38:42','2015-08-29 14:46:03',1,30004271,0,0,0,0,0,0,0,0,0,3,3,0,0,0,0,0,0,0,0,0,0,0,0,0),(917,'2015-03-10 22:38:42','2015-08-29 14:46:03',1,30001539,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(918,'2015-03-10 22:38:42','2015-03-10 22:38:42',1,30005292,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(919,'2015-03-10 22:38:42','2015-08-29 14:46:03',1,30003600,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0),(920,'2015-03-10 22:38:42','2015-03-10 22:38:42',1,30000760,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(921,'2015-03-10 22:38:42','2015-03-10 22:38:42',1,30002933,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(922,'2015-03-10 22:38:42','2015-08-29 14:46:03',1,30000061,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0),(923,'2015-03-10 22:38:42','2015-03-10 22:38:42',1,30002220,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(924,'2015-03-10 22:38:42','2015-08-29 14:46:03',1,30003862,0,0,0,0,0,2,0,0,0,0,0,0,5,0,4,7,2,0,0,4,8,3,0,0),(925,'2015-03-10 22:38:42','2015-08-29 14:46:03',1,30003787,2,6,1,2,2,1,2,2,0,5,13,1,2,6,10,8,3,4,5,17,0,4,6,0),(926,'2015-03-10 22:38:42','2015-08-29 14:46:03',1,30002658,0,1,0,0,0,0,1,0,1,1,0,2,0,1,1,0,0,1,0,1,0,0,0,0),(927,'2015-03-10 22:38:42','2015-08-29 14:46:03',1,30003404,0,0,0,0,0,0,0,0,0,1,1,0,0,0,1,1,0,0,0,0,0,0,0,0),(928,'2015-03-10 22:38:42','2015-08-29 14:46:03',1,30004323,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0),(929,'2015-03-10 22:38:42','2015-03-10 22:38:42',1,30000691,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(930,'2015-03-10 22:38:42','2015-08-29 14:46:03',1,30002247,0,0,6,0,0,0,0,0,0,0,5,0,1,0,0,0,0,0,0,0,0,1,0,0),(931,'2015-03-10 22:38:42','2015-08-29 14:46:03',1,30004082,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,1,0,0,0,0),(932,'2015-03-10 22:38:42','2015-08-29 14:46:03',1,30005196,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,2,0,3,1,0,0,0,0,0),(933,'2015-03-10 22:38:42','2015-08-29 14:46:03',1,30001697,0,0,0,0,0,0,1,0,0,0,0,0,1,0,0,0,0,0,0,0,2,0,0,0),(934,'2015-03-10 22:38:42','2015-08-29 14:46:03',1,30002266,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0),(935,'2015-03-10 22:38:42','2015-08-29 14:46:03',1,30004279,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(936,'2015-03-10 22:38:42','2015-08-29 14:46:03',1,30001649,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,1,1,0,0,0,1,0,0,0),(937,'2015-03-10 22:38:42','2015-03-10 22:38:42',1,30001741,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(938,'2015-03-10 22:38:42','2015-08-29 14:46:03',1,30045328,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0),(939,'2015-03-10 22:38:42','2015-08-29 14:46:03',1,30000125,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,8,0,0,0,0,0,0,0,0),(940,'2015-03-10 22:38:42','2015-08-29 14:46:03',1,30002752,1,0,0,0,2,0,0,0,0,0,0,0,0,0,0,1,0,0,1,1,0,0,0,0),(941,'2015-03-10 22:38:42','2015-03-10 22:38:42',1,30000933,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(942,'2015-03-10 22:38:42','2015-08-29 14:46:03',1,30003015,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0),(943,'2015-03-10 22:38:42','2015-03-10 22:38:42',1,30002289,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(944,'2015-03-10 22:38:42','2015-08-29 14:46:03',1,30005307,1,4,0,1,2,1,0,1,1,1,1,0,0,1,0,0,0,0,1,1,0,0,0,0),(945,'2015-03-10 22:38:42','2015-08-29 14:46:03',1,30001418,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0),(946,'2015-03-10 22:38:42','2015-08-29 14:46:03',1,30002753,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,0,0),(947,'2015-03-10 22:38:42','2015-08-29 14:46:03',1,30003566,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,1,0),(948,'2015-03-10 22:38:42','2015-08-29 14:46:03',1,30002736,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,1,1,0,0,0,0,2,1,0),(949,'2015-03-10 22:38:42','2015-03-10 22:38:42',1,30003895,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(950,'2015-03-10 22:38:42','2015-08-29 14:46:03',1,30000185,4,5,0,2,4,1,1,2,0,8,8,0,1,8,7,2,1,1,1,2,1,1,0,0),(951,'2015-03-10 22:38:42','2015-08-29 14:46:03',1,30001404,1,3,2,1,0,0,0,0,0,2,2,0,2,2,1,0,3,1,1,2,2,0,1,0),(952,'2015-03-10 22:38:42','2015-08-29 14:46:03',1,30000166,0,1,1,0,0,0,0,0,1,0,0,0,0,0,0,0,0,1,1,0,1,0,0,0),(953,'2015-03-10 22:38:42','2015-03-10 22:38:42',1,30002222,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(954,'2015-03-10 22:38:42','2015-08-29 14:46:03',1,30001431,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0),(955,'2015-03-10 22:38:42','2015-08-29 14:46:03',1,30045340,4,10,6,6,3,2,2,5,0,3,3,0,2,1,0,0,2,1,1,12,0,0,0,0),(956,'2015-03-10 22:38:42','2015-08-29 14:46:03',1,30001414,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,1,0),(957,'2015-03-10 22:38:42','2015-08-29 14:46:03',1,30001289,2,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0),(958,'2015-03-10 22:38:42','2015-08-29 14:46:03',1,30004717,0,0,0,0,0,0,0,1,0,1,0,0,0,1,1,0,0,0,0,0,0,0,0,0),(959,'2015-03-10 22:38:42','2015-03-10 22:38:42',1,30004277,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(960,'2015-03-10 22:38:42','2015-03-10 22:38:42',1,30005098,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(961,'2015-03-10 22:38:42','2015-03-10 22:38:42',1,30003291,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(962,'2015-03-10 22:38:42','2015-08-29 14:46:03',1,30002992,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0),(963,'2015-03-10 22:38:42','2015-08-29 14:46:03',1,30000088,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,3,0,0),(964,'2015-03-10 22:38:42','2015-03-10 22:38:42',1,30004147,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(965,'2015-03-10 22:38:42','2015-08-29 14:46:03',1,30000065,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0),(966,'2015-03-10 22:38:42','2015-08-29 14:46:03',1,30002197,0,0,4,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(967,'2015-03-10 22:38:42','2015-03-10 22:38:42',1,30015042,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(968,'2015-03-10 22:38:42','2015-08-29 14:46:03',1,30011407,4,16,12,14,15,9,2,4,13,18,21,17,11,26,18,21,12,10,16,11,21,18,7,0),(969,'2015-03-10 22:38:42','2015-08-29 14:46:03',1,30045342,3,25,9,2,0,4,4,9,1,8,2,10,16,10,11,3,1,0,8,12,16,5,10,0),(970,'2015-03-10 22:38:42','2015-08-29 14:46:03',1,30003479,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0),(971,'2015-03-10 22:38:42','2015-08-29 14:46:03',1,30000178,0,0,0,0,0,0,0,0,0,0,0,0,0,2,2,2,0,0,0,0,0,0,2,0),(972,'2015-03-10 22:38:42','2015-08-29 14:46:03',1,30000200,0,0,0,0,0,0,0,0,0,0,1,1,1,0,0,0,0,0,0,0,0,2,0,0),(973,'2015-03-10 22:38:42','2015-08-29 14:46:03',1,30001382,0,0,1,0,0,0,0,0,0,0,0,0,0,5,3,0,0,0,0,0,3,0,1,0),(974,'2015-03-10 22:38:42','2015-08-29 14:46:03',1,30000163,1,3,1,1,0,1,0,0,1,0,0,0,0,0,0,0,0,0,2,0,0,1,1,0),(975,'2015-03-10 22:38:42','2015-08-29 14:46:03',1,30000003,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,2,1,2,0,0),(976,'2015-03-10 22:38:42','2015-03-10 22:38:42',1,30001534,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(977,'2015-03-10 22:38:42','2015-08-29 14:46:03',1,30004578,0,0,0,0,0,0,0,0,12,0,0,0,0,1,1,0,0,0,0,0,0,0,0,0),(978,'2015-03-10 22:38:42','2015-08-29 14:46:03',1,30002652,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(979,'2015-03-10 22:38:42','2015-08-29 14:46:03',1,30003042,0,1,0,0,0,2,0,0,0,0,0,2,0,3,1,0,0,0,0,1,0,0,0,0),(980,'2015-03-10 22:38:42','2015-08-29 14:46:03',1,30002512,10,6,0,1,0,0,0,0,1,0,1,1,0,1,1,1,0,0,1,0,4,0,0,0),(981,'2015-03-10 22:38:42','2015-08-29 14:46:03',1,30005225,0,0,1,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,0,0,0,0,0),(982,'2015-03-10 22:38:42','2015-08-29 14:46:03',1,30003854,1,1,1,0,0,1,2,1,0,0,0,0,0,1,0,0,0,1,3,0,1,2,0,0),(983,'2015-03-10 22:38:42','2015-03-10 22:38:42',1,30002338,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(984,'2015-03-10 22:38:42','2015-08-29 14:46:03',1,30003415,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(985,'2015-03-10 22:38:42','2015-08-29 14:46:03',1,30002216,0,0,2,0,0,0,0,0,1,0,0,0,0,1,0,0,1,0,9,3,1,0,2,0),(986,'2015-03-10 22:38:42','2015-08-29 14:46:03',1,30003464,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,2,0,0,0,3,0),(987,'2015-03-10 22:38:42','2015-08-29 14:46:03',1,30003379,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0),(988,'2015-03-10 22:38:42','2015-08-29 14:46:03',1,30003837,0,5,12,6,9,0,0,3,1,4,2,1,6,3,1,5,1,0,2,3,4,5,1,0),(989,'2015-03-10 22:38:42','2015-08-29 14:46:03',1,30003416,0,0,0,1,1,0,0,0,0,0,0,0,1,1,0,0,0,0,0,0,0,0,0,0),(990,'2015-03-10 22:38:42','2015-08-29 14:46:03',1,30005302,2,1,2,0,0,0,0,2,1,0,0,0,1,0,0,0,0,0,0,0,1,2,0,0),(991,'2015-03-10 22:38:42','2015-08-29 14:46:03',1,30005304,2,2,0,0,0,1,1,0,1,0,0,0,1,0,0,0,1,0,0,0,3,1,0,0),(992,'2015-03-10 22:38:42','2015-08-29 14:46:03',1,30003380,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(993,'2015-03-10 22:38:42','2015-08-29 14:46:03',1,30003811,0,0,0,0,0,2,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0),(994,'2015-03-10 22:38:42','2015-08-29 14:46:03',1,30004972,0,7,2,0,0,0,1,1,1,1,2,1,3,4,2,2,0,2,3,3,1,0,1,0),(995,'2015-03-10 22:38:42','2015-08-29 14:46:03',1,30002698,1,0,1,0,0,0,1,0,1,0,0,1,0,0,0,0,0,1,0,1,0,0,0,0),(996,'2015-03-10 22:38:42','2015-08-29 14:46:03',1,30002754,8,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,2,0,0,0,0),(997,'2015-03-10 22:38:42','2015-08-29 14:46:03',1,30002712,0,0,0,0,0,0,0,0,0,1,0,0,1,0,0,0,0,0,1,0,1,0,0,0),(998,'2015-03-10 22:38:42','2015-08-29 14:46:03',1,30003521,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(999,'2015-03-10 22:38:42','2015-08-29 14:46:03',1,30000034,2,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0),(1000,'2015-03-10 22:38:42','2015-08-29 14:46:03',1,30004995,0,0,5,0,0,0,0,0,0,0,0,0,1,0,0,0,2,0,0,0,0,0,0,0),(1001,'2015-03-10 22:38:42','2015-08-29 14:46:03',1,30005009,0,0,0,0,0,0,0,0,0,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0),(1002,'2015-03-10 22:38:42','2015-08-29 14:46:03',1,30002664,0,1,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,1,0,0),(1003,'2015-03-10 22:38:42','2015-08-29 14:46:03',1,30002727,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0),(1004,'2015-03-10 22:38:42','2015-08-29 14:46:03',1,30003850,2,2,3,6,5,4,3,1,0,0,0,0,1,0,0,0,1,0,0,0,2,2,2,0),(1005,'2015-03-10 22:38:42','2015-08-29 14:46:03',1,30003800,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,1,0,0,0,0),(1006,'2015-03-10 22:38:42','2015-08-29 14:46:03',1,30001730,0,1,5,0,0,0,0,0,0,0,0,0,2,0,0,0,0,0,0,0,0,0,0,0),(1007,'2015-03-10 22:38:42','2015-08-29 14:46:03',1,30003841,1,0,1,0,0,2,0,0,1,0,0,0,1,1,0,0,1,2,0,0,0,0,0,0),(1008,'2015-03-10 22:38:42','2015-08-29 14:46:03',1,30002678,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(1009,'2015-03-10 22:38:42','2015-08-29 14:46:03',1,30002407,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(1010,'2015-03-10 22:38:42','2015-08-29 14:46:03',1,30003389,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0),(1011,'2015-03-10 22:38:42','2015-03-10 22:38:42',1,30003917,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(1012,'2015-03-10 22:38:42','2015-08-29 14:46:03',1,30002537,1,5,5,3,5,4,3,2,2,4,2,2,12,5,3,6,1,7,5,5,16,9,4,0),(1013,'2015-03-10 22:38:42','2015-08-29 14:46:03',1,30004983,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0),(1014,'2015-03-10 22:38:42','2015-08-29 14:46:03',1,30002187,14,35,28,12,10,20,13,11,4,17,19,16,13,10,20,20,5,11,25,15,11,13,9,0),(1015,'2015-03-10 22:38:42','2015-08-29 14:46:03',1,30003848,0,0,0,0,0,0,0,0,0,0,0,0,0,2,2,0,0,0,0,0,0,0,0,0),(1016,'2015-03-10 22:38:42','2015-08-29 14:46:03',1,30003012,0,0,0,0,0,2,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(1017,'2015-03-10 22:38:42','2015-08-29 14:46:03',1,30002644,0,0,0,0,0,0,0,0,0,0,0,2,0,1,0,0,0,0,1,0,0,0,0,0),(1018,'2015-03-10 22:38:42','2015-08-29 14:46:03',1,30005036,0,0,0,0,0,0,5,4,0,0,0,1,1,0,0,0,0,0,0,0,1,1,1,0),(1019,'2015-03-10 22:38:42','2015-08-29 14:46:03',1,30002511,0,0,1,0,0,0,0,0,0,0,0,1,0,1,1,0,0,0,0,1,0,0,0,0),(1020,'2015-03-10 22:38:42','2015-08-29 14:46:03',1,30005035,1,8,1,4,3,1,3,0,13,2,0,0,14,9,7,5,1,1,4,2,4,0,0,0),(1021,'2015-03-10 22:38:42','2015-08-29 14:46:03',1,30002547,5,1,1,0,0,1,4,0,1,3,3,2,1,0,0,0,0,1,1,1,0,3,1,0),(1022,'2015-03-10 22:38:42','2015-08-29 14:46:03',1,30002055,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0),(1023,'2015-03-10 22:38:42','2015-08-29 14:46:03',1,30003480,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0),(1024,'2015-03-10 22:38:42','2015-08-29 14:46:03',1,30005329,0,0,1,0,0,1,0,0,0,1,0,1,1,1,1,0,0,0,0,1,1,0,0,0),(1025,'2015-03-10 22:38:42','2015-03-10 22:38:42',1,30003847,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(1026,'2015-03-10 22:38:42','2015-03-10 22:38:42',1,30000058,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(1027,'2015-03-10 22:38:42','2015-08-29 14:46:03',1,30001392,2,0,0,1,0,0,0,0,7,3,4,1,3,0,1,2,1,0,0,0,0,2,1,0),(1028,'2015-03-10 22:38:42','2015-08-29 14:46:03',1,30005311,0,0,1,1,0,0,0,0,0,0,0,0,0,0,0,0,1,1,1,0,0,1,0,0),(1029,'2015-03-10 22:38:42','2015-03-10 22:38:42',1,30004527,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(1030,'2015-03-10 22:38:42','2015-08-29 14:46:03',1,30003552,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0),(1031,'2015-03-10 22:38:42','2015-03-10 22:38:42',1,30005279,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(1032,'2015-03-10 22:38:42','2015-03-10 22:38:42',1,30004301,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(1033,'2015-03-10 22:38:42','2015-08-29 14:46:03',1,30003398,0,0,0,0,0,0,0,0,1,4,4,1,0,0,0,0,0,0,0,1,0,0,0,0),(1034,'2015-03-10 22:38:42','2015-08-29 14:46:03',1,30003840,5,6,1,0,4,4,0,2,0,1,1,0,2,1,3,3,2,2,2,5,2,3,9,0),(1035,'2015-03-10 22:38:42','2015-08-29 14:46:03',1,30003571,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0),(1036,'2015-03-10 22:38:42','2015-08-29 14:46:03',1,30003485,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,1,0,0,0,0),(1037,'2015-03-10 22:38:42','2015-08-29 14:46:03',1,30005028,1,0,0,0,0,1,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(1038,'2015-03-10 22:38:42','2015-08-29 14:46:03',1,30005049,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,3,3,0,0,0,0),(1039,'2015-03-10 22:38:42','2015-08-29 14:46:03',1,30005022,0,0,0,0,0,0,0,0,0,2,0,0,0,0,0,0,2,0,0,0,0,0,0,0),(1040,'2015-03-10 22:38:42','2015-08-29 14:46:03',1,30003062,0,0,0,0,0,0,0,0,1,0,1,0,1,0,0,0,0,0,0,1,0,0,0,0),(1041,'2015-03-10 22:38:42','2015-08-29 14:46:03',1,30005264,1,0,0,0,0,0,0,1,1,0,0,0,0,0,0,0,0,0,0,0,2,1,1,0),(1042,'2015-03-10 22:38:42','2015-08-29 14:46:03',1,30003046,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,4,0,0,5,2,5,4,5,0),(1043,'2015-03-10 22:38:42','2015-08-29 14:46:03',1,30002051,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,1,0,0,0,0,0),(1044,'2015-03-10 22:38:42','2015-08-29 14:46:03',1,30003515,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0),(1045,'2015-03-10 22:38:42','2015-08-29 14:46:03',1,30001439,0,2,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,0,0),(1046,'2015-03-10 22:38:42','2015-08-29 14:46:03',1,30001647,0,0,0,0,0,0,0,0,0,0,0,0,0,0,4,9,0,0,1,0,16,0,2,0),(1047,'2015-03-10 22:38:42','2015-08-29 14:46:03',1,30003071,0,4,1,3,4,1,0,0,2,0,0,0,1,1,1,0,0,1,0,0,0,1,0,0),(1048,'2015-03-10 22:38:42','2015-08-29 14:46:03',1,30025042,0,1,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0),(1049,'2015-03-10 22:38:42','2015-08-29 14:46:03',1,30004989,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(1050,'2015-03-10 22:38:42','2015-08-29 14:46:03',1,30003791,0,0,1,1,0,1,2,0,0,0,2,0,0,1,1,0,0,0,1,0,1,1,1,0),(1051,'2015-03-10 22:38:42','2015-08-29 14:46:03',1,30002776,0,0,1,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,1,0,2,0),(1052,'2015-03-10 22:38:42','2015-08-29 14:46:03',1,30005326,1,0,0,0,0,0,0,0,0,1,0,1,0,1,0,0,0,1,0,0,0,0,0,0),(1053,'2015-03-10 22:38:42','2015-08-29 14:46:03',1,30004291,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(1054,'2015-03-10 22:38:42','2015-08-29 14:46:03',1,30005309,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,2,1,0,0,0,1,0,0,0),(1055,'2015-03-10 22:38:42','2015-08-29 14:46:03',1,30004104,1,0,0,0,0,0,0,0,1,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0),(1056,'2015-03-10 22:38:42','2015-08-29 14:46:03',1,30002081,0,0,0,0,0,0,0,0,3,0,2,1,0,0,0,0,0,0,0,0,0,0,0,0),(1057,'2015-03-10 22:38:42','2015-03-10 22:38:42',1,30003440,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(1058,'2015-03-10 22:38:42','2015-08-29 14:46:03',1,30000132,0,1,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,0,0,0,0,0),(1059,'2015-03-10 22:38:42','2015-08-29 14:46:03',1,30002669,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0),(1060,'2015-03-10 22:38:42','2015-03-10 22:38:42',1,30003426,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(1061,'2015-03-10 22:38:42','2015-08-29 14:46:03',1,30005261,0,1,4,4,2,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,6,0,1,0),(1062,'2015-03-10 22:38:42','2015-08-29 14:46:03',1,30001357,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0),(1063,'2015-03-10 22:38:42','2015-08-29 14:46:03',1,30003051,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,1,0,0,0),(1064,'2015-03-10 22:38:42','2015-08-29 14:46:03',1,30002805,0,1,0,3,3,0,0,1,0,0,0,0,0,12,11,0,1,0,0,0,0,1,1,0),(1065,'2015-03-10 22:38:42','2015-08-29 14:46:03',1,30005249,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,9,9,0,0,0),(1066,'2015-03-10 22:38:42','2015-08-29 14:46:03',1,30005252,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,1,0,0,0),(1067,'2015-03-10 22:38:42','2015-03-10 22:38:42',1,30004006,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(1068,'2015-03-10 22:38:42','2015-08-29 14:46:03',1,30001216,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,1,0,1,2,0,1,0,0),(1069,'2015-03-10 22:38:42','2015-03-10 22:38:42',1,30021407,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(1070,'2015-03-10 22:38:42','2015-08-29 14:46:03',1,30002453,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,2,0,0,0,0,0),(1071,'2015-03-10 22:38:42','2015-08-29 14:46:03',1,30005216,1,94,1,0,0,0,0,0,0,1,1,3,3,1,3,3,1,0,0,6,1,3,12,0),(1072,'2015-03-10 22:38:42','2015-03-10 22:38:42',1,30001114,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(1073,'2015-03-10 22:38:42','2015-08-29 14:46:03',1,30004079,0,0,0,0,0,1,1,0,0,1,1,0,1,0,0,2,0,1,0,1,0,0,2,0),(1074,'2015-03-10 22:38:42','2015-03-10 22:38:42',1,30004124,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(1075,'2015-03-10 22:38:42','2015-08-29 14:46:03',1,30004576,0,0,0,0,0,0,0,0,0,0,0,0,1,1,1,1,0,1,0,0,0,0,0,0),(1076,'2015-03-10 22:38:42','2015-08-29 14:46:03',1,30005019,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,1,0,0,1,0,0,0),(1077,'2015-03-10 22:38:42','2015-08-29 14:46:03',1,30002565,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,1,0,0,0,0,0,0,0,0),(1078,'2015-03-10 22:38:42','2015-03-10 22:38:42',1,30003656,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(1079,'2015-03-10 22:38:42','2015-08-29 14:46:03',1,30001740,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,0,0),(1080,'2015-03-10 22:38:42','2015-08-29 14:46:03',1,30002551,0,0,0,0,1,0,0,0,0,0,0,1,0,0,0,0,1,1,0,0,0,0,0,0),(1081,'2015-03-10 22:38:42','2015-03-10 22:38:42',1,30002817,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(1082,'2015-03-10 22:38:42','2015-08-29 14:46:03',1,30000092,0,0,0,0,0,0,1,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0),(1083,'2015-03-10 22:38:42','2015-08-29 14:46:03',1,30004994,1,0,0,0,2,0,0,5,0,0,0,1,0,0,1,4,1,0,1,0,1,0,0,0),(1084,'2015-03-10 22:38:42','2015-03-10 22:38:42',1,30003590,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(1085,'2015-03-10 22:38:42','2015-08-29 14:46:03',1,30002977,0,0,1,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0),(1086,'2015-03-10 22:38:42','2015-08-29 14:46:03',1,30003487,0,2,0,0,0,2,0,0,0,1,0,2,0,1,0,0,0,0,0,0,0,0,0,0),(1087,'2015-03-10 22:38:42','2015-03-10 22:38:42',1,30004669,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(1088,'2015-03-10 22:38:42','2015-03-10 22:38:42',1,30003824,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(1089,'2015-03-10 22:38:42','2015-08-29 14:46:03',1,30002702,0,0,0,1,1,1,0,0,2,1,0,0,0,1,1,0,0,1,0,0,1,0,2,0),(1090,'2015-03-10 22:38:42','2015-08-29 14:46:03',1,30003030,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0),(1091,'2015-03-10 22:38:42','2015-08-29 14:46:03',1,30002058,2,2,2,0,0,1,0,0,10,3,2,0,9,3,3,7,6,7,3,6,6,9,5,0),(1092,'2015-03-10 22:38:42','2015-08-29 14:46:03',1,30002648,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0),(1093,'2015-03-10 22:38:42','2015-08-29 14:46:03',1,30003852,3,2,2,1,0,1,1,0,1,0,0,0,4,1,0,1,0,0,1,0,0,1,1,0),(1094,'2015-03-10 22:38:42','2015-03-10 22:38:42',1,30004118,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(1095,'2015-03-10 22:38:42','2015-08-29 14:46:03',1,30002231,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,3,0,0),(1096,'2015-03-10 22:38:42','2015-08-29 14:46:03',1,30000099,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0),(1097,'2015-03-10 22:38:42','2015-08-29 14:46:03',1,30002244,0,0,0,0,0,0,0,0,2,3,0,0,1,0,0,0,0,0,0,0,0,1,0,0),(1098,'2015-03-10 22:38:42','2015-08-29 14:46:03',1,30000656,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0),(1099,'2015-03-10 22:38:42','2015-08-29 14:46:03',1,30002080,0,0,0,1,0,0,0,0,0,2,2,0,0,0,0,0,1,0,1,0,0,0,0,0),(1100,'2015-03-10 22:38:42','2015-03-10 22:38:42',1,30005239,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(1101,'2015-03-10 22:38:42','2015-08-29 14:46:03',1,30003595,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0),(1102,'2015-03-10 22:38:42','2015-08-29 14:46:03',1,30001704,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(1103,'2015-03-10 22:38:42','2015-08-29 14:46:03',1,30003411,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,1,0,0,0,0,0),(1104,'2015-03-10 22:38:42','2015-08-29 14:46:03',1,30003374,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0),(1105,'2015-03-10 22:38:42','2015-03-10 22:38:42',1,30002205,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(1106,'2015-03-10 22:38:42','2015-08-29 14:46:03',1,30003009,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0),(1107,'2015-03-10 22:38:42','2015-08-29 14:46:03',1,30002066,0,3,0,4,6,1,0,3,1,9,3,3,3,2,0,2,0,7,3,3,5,0,1,0),(1108,'2015-03-10 22:38:42','2015-08-29 14:46:03',1,30000112,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0),(1109,'2015-03-10 22:38:42','2015-08-29 14:46:03',1,30005001,4,5,4,5,3,14,6,1,4,14,11,8,9,27,15,12,7,7,10,11,4,11,10,0),(1110,'2015-03-10 22:38:42','2015-08-29 14:46:03',1,30002064,0,0,0,0,0,0,0,0,2,3,1,1,1,2,2,1,0,1,1,1,7,1,0,0),(1111,'2015-03-10 22:38:42','2015-08-29 14:46:03',1,30002240,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0),(1112,'2015-03-10 22:38:42','2015-08-29 14:46:03',1,30005330,0,0,0,2,0,0,0,0,0,0,0,0,1,2,3,2,0,0,0,0,0,0,0,0),(1113,'2015-03-10 22:38:42','2015-08-29 14:46:03',1,30002253,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,0,0,0,0),(1114,'2015-03-10 22:38:42','2015-08-29 14:46:03',1,30002687,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0),(1115,'2015-03-10 22:38:42','2015-08-29 14:46:03',1,30003556,0,0,0,0,0,1,0,0,0,1,0,1,1,0,0,0,3,0,0,0,1,0,2,0),(1116,'2015-03-10 22:38:42','2015-08-29 14:46:03',1,30002278,0,0,0,0,0,0,0,0,1,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0),(1117,'2015-03-10 22:38:42','2015-08-29 14:46:03',1,30001381,0,2,1,1,0,0,0,0,0,1,1,0,0,0,0,3,0,0,0,0,0,0,0,0),(1118,'2015-03-10 22:38:42','2015-08-29 14:46:03',1,30003007,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0),(1119,'2015-03-10 22:38:42','2015-08-29 14:46:03',1,30002078,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,1,0,0,0),(1120,'2015-03-10 22:38:42','2015-08-29 14:46:03',1,30005086,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0),(1121,'2015-03-10 22:38:42','2015-08-29 14:46:03',1,30002960,0,2,3,1,3,5,0,13,3,1,3,2,1,3,1,2,2,1,1,0,0,0,2,0),(1122,'2015-03-10 22:38:42','2015-03-10 22:38:42',1,30003885,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(1123,'2015-03-10 22:38:42','2015-08-29 14:46:03',1,30005065,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0),(1124,'2015-03-10 22:38:42','2015-08-29 14:46:03',1,30003921,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0),(1125,'2015-03-10 22:38:42','2015-08-29 14:46:03',1,30000012,0,0,0,0,1,0,0,1,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0),(1126,'2015-03-10 22:38:42','2015-08-29 14:46:03',1,30045332,0,3,1,0,0,0,0,0,1,1,1,2,1,1,1,2,1,1,0,0,6,5,1,0),(1127,'2015-03-10 22:38:42','2015-08-29 14:46:03',1,30005251,0,0,0,0,0,0,0,0,0,1,1,1,1,0,0,0,0,0,0,0,0,0,0,0),(1128,'2015-03-10 22:38:42','2015-08-29 14:46:03',1,30001689,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0),(1129,'2015-03-10 22:38:42','2015-08-29 14:46:03',1,30002084,1,0,0,1,0,0,1,0,1,6,4,2,8,5,0,1,6,1,0,0,0,0,1,0),(1130,'2015-03-10 22:38:42','2015-08-29 14:46:03',1,30001708,3,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,1,1,4,0,0,0),(1131,'2015-03-10 22:38:42','2015-03-10 22:38:42',1,30003384,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(1132,'2015-03-10 22:38:42','2015-08-29 14:46:03',1,30000084,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,2,0,0),(1133,'2015-03-10 22:38:42','2015-08-29 14:46:03',1,30002978,2,0,0,0,0,0,0,0,0,0,1,0,1,1,0,0,0,0,1,0,0,1,0,0),(1134,'2015-03-10 22:38:42','2015-08-29 14:46:03',1,30003491,6,0,1,0,1,1,0,7,1,1,4,0,2,1,0,0,3,0,0,0,1,0,3,0),(1135,'2015-03-10 22:38:42','2015-08-29 14:46:03',1,30003890,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,0,0,0,0,0,0,0),(1136,'2015-03-10 22:38:42','2015-08-29 14:46:03',1,30045311,0,1,4,1,1,0,0,1,0,0,0,0,0,0,0,0,0,0,0,1,1,1,0,0),(1137,'2015-03-10 22:38:42','2015-08-29 14:46:03',1,30003919,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,1,0,0,0,0,0,0,0),(1138,'2015-03-10 22:38:42','2015-08-29 14:46:03',1,30003886,0,0,0,0,0,0,2,0,1,1,3,0,0,0,0,0,0,0,0,0,0,0,0,0),(1139,'2015-03-10 22:38:42','2015-08-29 14:46:03',1,30005214,0,4,1,1,1,0,1,0,0,0,0,0,0,2,3,1,0,0,0,0,0,0,0,0),(1140,'2015-03-10 22:38:42','2015-03-10 22:38:42',1,30000095,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(1141,'2015-03-10 22:38:42','2015-08-29 14:46:03',1,30004093,1,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0),(1142,'2015-03-10 22:38:42','2015-08-29 14:46:03',1,30002272,1,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,2,0,1,0,0,0,0,0),(1143,'2015-03-10 22:38:42','2015-03-10 22:38:42',1,30004156,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(1144,'2015-03-10 22:38:42','2015-08-29 14:46:03',1,30000075,3,0,0,0,0,1,0,0,0,0,0,0,0,2,2,0,0,1,2,0,1,0,0,0),(1145,'2015-03-10 22:38:42','2015-08-29 14:46:03',1,30005224,0,0,0,0,0,0,1,0,0,0,1,1,1,0,0,0,0,0,0,0,0,0,0,0),(1146,'2015-03-10 22:38:42','2015-08-29 14:46:03',1,30001723,0,0,0,0,1,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(1147,'2015-03-10 22:38:42','2015-08-29 14:46:03',1,30002724,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(1148,'2015-03-10 22:38:42','2015-08-29 14:46:03',1,30000113,0,0,0,0,0,1,0,0,0,0,0,0,1,1,1,1,0,0,0,0,1,0,0,0),(1149,'2015-03-10 22:38:42','2015-08-29 14:46:03',1,30045323,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0),(1150,'2015-03-10 22:38:42','2015-03-10 22:38:42',1,30001419,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(1151,'2015-03-10 22:38:42','2015-08-29 14:46:03',1,30005077,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0),(1152,'2015-03-10 22:38:42','2015-03-10 22:38:42',1,30002557,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(1153,'2015-03-10 22:38:42','2015-08-29 14:46:03',1,30003031,0,1,0,2,2,0,0,0,1,2,1,0,0,0,0,0,0,1,0,0,0,0,1,0),(1154,'2015-03-10 22:38:42','2015-08-29 14:46:03',1,30003856,0,0,0,0,0,0,0,0,0,1,2,0,0,0,0,0,0,0,0,0,0,1,1,0),(1155,'2015-03-10 22:38:42','2015-03-10 22:38:42',1,30002701,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(1156,'2015-03-10 22:38:42','2015-08-29 14:46:03',1,30002695,0,0,0,0,0,2,0,0,3,0,1,0,0,0,0,0,0,0,1,0,1,0,0,0),(1157,'2015-03-10 22:38:42','2015-08-29 14:46:03',1,30002489,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,1,0,4,1,0,0),(1158,'2015-03-10 22:38:42','2015-03-10 22:38:42',1,30005024,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(1159,'2015-03-10 22:38:42','2015-08-29 14:46:03',1,30003038,0,0,0,0,0,5,0,0,0,0,0,1,1,0,0,0,0,1,2,0,0,0,0,0),(1160,'2015-03-10 22:38:42','2015-08-29 14:46:03',1,30002389,0,0,0,1,0,3,0,0,11,1,4,0,1,1,1,2,0,0,1,0,0,0,1,0),(1161,'2015-03-10 22:38:42','2015-08-29 14:46:03',1,30005010,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,1,0,0,0),(1162,'2015-03-10 22:38:42','2015-03-10 22:38:42',1,30003455,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(1163,'2015-03-10 22:38:42','2015-08-29 14:46:03',1,30001678,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,1,1,0,0,0,0),(1164,'2015-03-10 22:38:42','2015-03-10 22:38:42',1,30004654,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(1165,'2015-03-10 22:38:42','2015-08-29 14:46:03',1,30005197,0,0,0,0,0,0,0,0,0,0,0,0,2,0,0,0,0,0,0,0,0,1,0,0),(1166,'2015-03-10 22:38:42','2015-08-29 14:46:03',1,30005004,0,0,0,0,0,0,0,0,1,1,0,0,0,2,0,0,4,0,0,0,1,1,1,0),(1167,'2015-03-10 22:38:42','2015-08-29 14:46:03',1,30003273,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,0,0,0,0,0,1,0,0),(1168,'2015-03-10 22:38:42','2015-03-10 22:38:42',1,30002834,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(1169,'2015-03-10 22:38:42','2015-08-29 14:46:03',1,30003827,1,0,4,1,0,0,0,0,0,0,0,1,1,1,0,1,0,0,0,1,0,4,1,0),(1170,'2015-03-10 22:38:42','2015-03-10 22:38:42',1,30002709,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(1171,'2015-03-10 22:38:42','2015-08-29 14:46:03',1,30003849,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,0,0,0,0,0,0),(1172,'2015-03-10 22:38:42','2015-03-10 22:38:42',1,30002684,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(1173,'2015-03-10 22:38:42','2015-08-29 14:46:03',1,30002395,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0),(1174,'2015-03-10 22:38:42','2015-08-29 14:46:03',1,30002641,0,0,7,10,9,1,8,0,0,1,0,1,0,1,1,2,8,2,3,0,3,0,3,0),(1175,'2015-03-10 22:38:42','2015-08-29 14:46:03',1,30002542,1,9,3,0,1,3,1,0,11,10,1,1,8,2,1,1,1,4,6,9,17,5,14,0),(1176,'2015-03-10 22:38:42','2015-03-10 22:38:42',1,30002680,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(1177,'2015-03-10 22:38:42','2015-08-29 14:46:03',1,30003818,0,0,0,1,1,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(1178,'2015-03-10 22:38:42','2015-08-29 14:46:03',1,30001398,0,2,0,3,2,2,0,7,5,4,4,1,0,10,8,1,2,5,2,1,2,2,1,0),(1179,'2015-03-10 22:38:42','2015-08-29 14:46:03',1,30002059,1,0,0,0,0,1,0,0,0,0,0,2,1,0,0,0,0,0,0,3,0,2,0,0),(1180,'2015-03-10 22:38:42','2015-08-29 14:46:03',1,30002657,0,0,0,0,0,1,1,0,1,0,1,1,0,0,0,0,0,1,1,2,2,0,1,0),(1181,'2015-03-10 22:38:42','2015-08-29 14:46:03',1,30003801,12,1,5,2,0,5,3,6,0,0,0,0,2,0,0,1,0,0,0,0,0,1,1,0),(1182,'2015-03-10 22:38:42','2015-08-29 14:46:03',1,30002716,1,0,2,2,3,0,1,2,0,0,0,0,1,0,0,0,0,0,0,0,0,0,1,0),(1183,'2015-03-10 22:38:42','2015-08-29 14:46:03',1,30003915,0,0,0,0,0,0,0,0,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,0),(1184,'2015-03-10 22:38:42','2015-08-29 14:46:03',1,30002561,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0),(1185,'2015-03-10 22:38:42','2015-08-29 14:46:03',1,30001361,0,0,2,1,1,1,0,4,2,4,1,2,3,0,0,2,0,1,1,3,2,6,0,0),(1186,'2015-03-10 22:38:42','2015-08-29 14:46:03',1,30003821,0,0,0,0,0,0,0,0,0,0,0,0,2,0,0,0,0,0,0,0,0,0,0,0),(1187,'2015-03-10 22:38:42','2015-08-29 14:46:03',1,30002523,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,1,0,0,0,0,0,0,1,0),(1188,'2015-03-10 22:38:42','2015-08-29 14:46:03',1,30001411,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,1,0,0,0,0,0,0,0),(1189,'2015-03-10 22:38:42','2015-08-29 14:46:03',1,30001384,0,0,0,0,0,0,0,0,0,0,0,0,0,1,5,4,1,0,0,0,0,1,0,0),(1190,'2015-03-10 22:38:42','2015-08-29 14:46:03',1,30002656,1,1,0,0,0,0,1,1,0,1,0,0,3,0,0,0,0,0,0,0,0,0,0,0),(1191,'2015-03-10 22:38:42','2015-08-29 14:46:03',1,30002744,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0),(1192,'2015-03-10 22:38:42','2015-08-29 14:46:03',1,30004614,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0),(1193,'2015-03-10 22:38:42','2015-08-29 14:46:03',1,30004249,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0),(1194,'2015-03-10 22:38:42','2015-08-29 14:46:03',1,30002270,0,1,0,0,0,0,0,0,0,3,2,1,4,0,1,3,0,2,6,3,0,1,0,0),(1195,'2015-03-10 22:38:42','2015-08-29 14:46:03',1,30003843,0,0,1,0,0,0,0,0,0,0,0,1,0,2,1,0,0,1,0,4,0,0,0,0),(1196,'2015-03-10 22:38:42','2015-08-29 14:46:03',1,30003053,0,5,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0),(1197,'2015-03-10 22:38:42','2015-08-29 14:46:03',1,30002089,0,3,0,0,2,0,3,0,4,0,1,1,0,1,1,1,3,0,1,1,1,1,1,0),(1198,'2015-03-10 22:38:42','2015-08-29 14:46:03',1,30003047,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0),(1199,'2015-03-10 22:38:42','2015-08-29 14:46:03',1,30002530,0,0,1,0,0,0,1,1,0,0,0,0,0,1,1,0,0,0,0,0,0,0,0,0),(1200,'2015-03-10 22:38:42','2015-08-29 14:46:03',1,30005215,0,174,1,1,0,0,0,0,0,0,0,3,1,5,5,2,1,0,0,0,0,1,2,0),(1201,'2015-03-10 22:38:42','2015-03-10 22:38:42',1,30000860,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(1202,'2015-03-10 22:38:42','2015-08-29 14:46:03',1,30001203,0,0,0,0,0,1,0,0,12,2,1,1,5,6,10,8,3,0,6,21,10,30,11,0),(1203,'2015-03-10 22:38:42','2015-03-10 22:38:42',1,30004904,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(1204,'2015-03-10 22:38:42','2015-08-29 14:46:03',1,30003756,5,0,1,0,0,0,0,0,0,2,2,1,13,0,0,0,0,1,0,0,0,1,0,0),(1205,'2015-03-10 22:38:42','2015-08-29 14:46:03',1,30003746,0,1,2,0,1,0,0,1,2,0,0,2,1,0,2,2,0,4,0,2,3,1,1,0),(1206,'2015-03-10 22:38:42','2015-03-10 22:38:42',1,30005094,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(1207,'2015-03-10 22:38:42','2015-08-29 14:46:03',1,30003055,0,0,0,0,0,0,1,0,0,0,0,0,5,1,3,2,2,4,0,0,0,5,5,0),(1208,'2015-03-10 22:38:42','2015-08-29 14:46:03',1,30003093,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,2,0,0,0,0,0,0,0,0),(1209,'2015-03-10 22:38:42','2015-08-29 14:46:03',1,30002717,1,1,3,3,2,0,2,0,0,0,0,1,2,0,1,1,1,1,1,0,0,0,1,0),(1210,'2015-03-10 22:38:42','2015-03-10 22:38:42',1,30001342,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(1211,'2015-03-10 22:38:42','2015-03-10 22:38:42',1,30000672,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(1212,'2015-03-10 22:38:42','2015-03-10 22:38:42',1,30001070,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(1213,'2015-03-10 22:38:42','2015-03-10 22:38:42',1,30000265,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(1214,'2015-03-10 22:38:42','2015-08-29 14:46:03',1,30005275,0,0,0,0,0,0,0,0,0,0,0,1,0,1,1,0,1,0,0,0,0,0,2,0),(1215,'2015-03-10 22:38:42','2015-08-29 14:46:03',1,30003018,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(1216,'2015-03-10 22:38:42','2015-08-29 14:46:03',1,30001711,0,0,2,0,0,0,0,0,0,0,0,1,0,0,1,1,0,0,0,0,0,0,0,0),(1217,'2015-03-10 22:38:42','2015-03-10 22:38:42',1,30000920,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(1218,'2015-03-10 22:38:42','2015-08-29 14:46:03',1,30001705,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(1219,'2015-03-10 22:38:42','2015-08-29 14:46:03',1,30002265,0,0,0,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(1220,'2015-03-10 22:38:42','2015-08-29 14:46:03',1,30004450,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0),(1221,'2015-03-10 22:38:42','2015-03-10 22:38:42',1,30000716,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(1222,'2015-03-10 22:38:42','2015-03-10 22:38:42',1,30001944,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(1223,'2015-03-10 22:38:42','2015-03-10 22:38:42',1,30002334,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(1224,'2015-03-10 22:38:42','2015-08-29 14:46:03',1,30001156,0,1,0,0,0,0,1,1,0,4,34,5,2,11,6,15,3,6,1,5,3,0,1,0),(1225,'2015-03-10 22:38:42','2015-08-29 14:46:03',1,30000211,6,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0),(1226,'2015-03-10 22:38:42','2015-03-10 22:38:42',1,30000435,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(1227,'2015-03-10 22:38:42','2015-03-10 22:38:42',1,30004873,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(1228,'2015-03-10 22:38:42','2015-08-29 14:46:03',1,30004030,0,0,0,0,0,0,0,1,6,1,0,0,0,0,0,0,1,0,0,0,0,0,0,0),(1229,'2015-03-10 22:38:42','2015-08-29 14:46:03',1,30005160,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0),(1230,'2015-03-10 22:38:42','2015-08-29 14:46:03',1,30002029,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(1231,'2015-03-10 22:38:42','2015-03-10 22:38:42',1,30002108,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(1232,'2015-03-10 22:38:42','2015-03-10 22:38:42',1,30005088,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(1233,'2015-03-10 22:38:42','2015-03-10 22:38:42',1,30001321,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(1234,'2015-03-10 22:38:42','2015-08-29 14:46:03',1,30004040,1,0,1,1,1,2,0,1,1,3,3,0,0,0,0,0,0,0,0,0,0,0,0,0),(1235,'2015-03-10 22:38:42','2015-03-10 22:38:42',1,30000423,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(1236,'2015-03-10 22:38:42','2015-08-29 14:46:03',1,30000307,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(1237,'2015-03-10 22:38:42','2015-03-10 22:38:42',1,30003250,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(1238,'2015-03-10 22:38:42','2015-08-29 14:46:03',1,30002496,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(1239,'2015-03-10 22:38:42','2015-03-10 22:38:42',1,30001910,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(1240,'2015-03-10 22:38:42','2015-08-29 14:46:03',1,30004328,1,0,0,0,0,0,0,0,0,0,0,0,5,3,2,0,1,0,0,0,0,0,1,0),(1241,'2015-03-10 22:38:42','2015-08-29 14:46:03',1,30000817,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0),(1242,'2015-03-10 22:38:42','2015-08-29 14:46:03',1,30002143,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,2,0,0,0,0),(1243,'2015-03-10 22:38:42','2015-08-29 14:46:03',1,30002157,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0),(1244,'2015-03-10 22:38:42','2015-03-10 22:38:42',1,30000961,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(1245,'2015-03-10 22:38:42','2015-03-10 22:38:42',1,30002105,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(1246,'2015-03-10 22:38:42','2015-08-29 14:46:03',1,30000854,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0),(1247,'2015-03-10 22:38:42','2015-03-10 22:38:42',1,30000624,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(1248,'2015-03-10 22:38:42','2015-03-10 22:38:42',1,30004194,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(1249,'2015-03-10 22:38:42','2015-08-29 14:46:03',1,30001076,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(1250,'2015-03-10 22:38:42','2015-08-29 14:46:03',1,30000970,0,0,0,0,1,0,0,0,0,0,0,0,2,0,0,2,0,0,0,0,1,1,0,0),(1251,'2015-03-10 22:38:42','2015-08-29 14:46:03',1,30003730,0,1,0,0,0,2,0,2,0,0,0,0,0,0,0,0,0,0,0,0,1,1,5,0),(1252,'2015-03-10 22:38:42','2015-03-10 22:38:42',1,30000610,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(1253,'2015-03-10 22:38:42','2015-08-29 14:46:03',1,30001215,0,0,0,0,0,0,0,0,0,0,0,0,1,4,1,9,1,0,1,1,0,0,0,0),(1254,'2015-03-10 22:38:42','2015-03-10 22:38:42',1,30001611,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(1255,'2015-03-10 22:38:42','2015-03-10 22:38:42',1,30004532,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(1256,'2015-03-10 22:38:42','2015-03-10 22:38:42',1,30004590,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(1257,'2015-03-10 22:38:42','2015-03-10 22:38:42',1,30003180,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(1258,'2015-03-10 22:38:42','2015-08-29 14:46:03',1,30002850,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(1259,'2015-03-10 22:38:42','2015-03-10 22:38:42',1,30002165,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(1260,'2015-03-10 22:38:42','2015-03-10 22:38:42',1,30001115,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(1261,'2015-03-10 22:38:42','2015-03-10 22:38:42',1,30004599,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(1262,'2015-03-10 22:38:42','2015-03-10 22:38:42',1,30001346,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(1263,'2015-03-10 22:38:42','2015-03-10 22:38:42',1,30002860,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(1264,'2015-03-10 22:38:42','2015-08-29 14:46:03',1,30002436,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0),(1265,'2015-03-10 22:38:42','2015-03-10 22:38:42',1,30001555,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(1266,'2015-03-10 22:38:42','2015-03-10 22:38:42',1,30002012,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(1267,'2015-03-10 22:38:42','2015-03-10 22:38:42',1,30004848,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(1268,'2015-03-10 22:38:42','2015-03-10 22:38:42',1,30004346,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(1269,'2015-03-10 22:38:42','2015-03-10 22:38:42',1,30002110,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(1270,'2015-03-10 22:38:42','2015-03-10 22:38:42',1,30001529,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(1271,'2015-03-10 22:38:42','2015-08-29 14:46:03',1,30005127,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(1272,'2015-03-10 22:38:42','2015-08-29 14:46:03',1,30003601,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,8,0,0,0,0),(1273,'2015-03-10 22:38:42','2015-08-29 14:46:03',1,30003888,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0),(1274,'2015-03-10 22:38:42','2015-08-29 14:46:03',1,30003525,0,0,0,0,1,1,0,0,0,0,0,0,0,0,1,1,1,3,1,0,0,0,3,0),(1275,'2015-03-10 22:38:42','2015-08-29 14:46:03',1,30003502,0,2,0,0,0,4,3,0,0,1,0,0,0,0,3,5,0,0,0,1,0,0,1,0),(1276,'2015-03-10 22:38:42','2015-08-29 14:46:03',1,30000041,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,1,0,1,0,0,0,0,0,0),(1277,'2015-03-10 22:38:42','2015-08-29 14:46:03',1,30003910,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0),(1278,'2015-03-10 22:38:42','2015-08-29 14:46:03',1,30004261,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0),(1279,'2015-03-10 22:38:42','2015-08-29 14:46:03',1,30002528,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,3,1,0,1,1,0),(1280,'2015-03-10 22:38:42','2015-08-29 14:46:03',1,30002634,2,0,3,1,1,0,1,2,1,0,0,2,2,3,2,2,1,3,3,3,3,2,2,0),(1281,'2015-03-10 22:38:42','2015-08-29 14:46:03',1,30002690,0,0,0,0,0,0,0,0,0,1,1,0,1,0,0,0,0,0,0,0,0,0,0,0),(1282,'2015-03-10 22:38:42','2015-08-29 14:46:03',1,30005294,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,3,0),(1283,'2015-03-10 22:38:42','2015-08-29 14:46:03',1,30005257,0,0,0,0,2,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0),(1284,'2015-03-10 22:38:42','2015-08-29 14:46:03',1,30004296,0,0,0,0,0,0,0,0,1,0,0,1,1,0,0,0,0,0,0,0,0,0,0,0),(1285,'2015-03-10 22:38:42','2015-08-29 14:46:03',1,30000085,0,0,0,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(1286,'2015-03-10 22:38:42','2015-03-10 22:38:42',1,30003920,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(1287,'2015-03-10 22:38:42','2015-03-10 22:38:42',1,30003548,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(1288,'2015-03-10 22:38:42','2015-08-29 14:46:03',1,30002071,1,1,0,0,0,0,0,0,1,1,1,0,0,1,2,3,0,0,3,1,1,1,1,0),(1289,'2015-03-10 22:38:42','2015-08-29 14:46:03',1,30003819,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,2,0,0,0,0,0,0),(1290,'2015-03-10 22:38:42','2015-08-29 14:46:03',1,30002683,1,0,0,0,0,0,0,0,0,1,2,0,0,0,0,0,0,0,0,0,0,0,0,0),(1291,'2015-03-10 22:38:42','2015-08-29 14:46:03',1,30003478,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0),(1292,'2015-03-10 22:38:42','2015-08-29 14:46:03',1,30002666,0,1,0,0,0,0,0,0,2,1,0,1,1,3,3,1,0,0,1,3,0,0,0,0),(1293,'2015-03-10 22:38:42','2015-08-29 14:46:03',1,30002199,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,1,0,0),(1294,'2015-03-10 22:38:42','2015-03-10 22:38:42',1,30003908,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(1295,'2015-03-10 22:38:42','2015-08-29 14:46:03',1,30001670,0,3,1,2,0,0,0,0,0,1,1,0,0,1,1,0,0,0,1,0,0,0,1,0),(1296,'2015-03-10 22:38:42','2015-08-29 14:46:03',1,30002700,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0),(1297,'2015-03-10 22:38:42','2015-03-10 22:38:42',1,30000039,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(1298,'2015-03-10 22:38:42','2015-08-29 14:46:03',1,30004252,0,1,0,0,1,0,0,8,0,4,0,3,3,5,1,1,0,0,0,0,4,0,0,0),(1299,'2015-03-10 22:38:42','2015-03-10 22:38:42',1,30004851,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(1300,'2015-03-10 22:38:42','2015-03-10 22:38:42',1,30001976,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(1301,'2015-03-10 22:38:42','2015-08-29 14:46:03',1,30002498,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,3,0,0,0),(1302,'2015-03-10 22:38:42','2015-03-10 22:38:42',1,30005129,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(1303,'2015-03-10 22:38:42','2015-08-29 14:46:03',1,30002048,3,2,0,1,1,0,0,0,1,1,2,3,5,9,3,0,4,1,3,0,1,1,0,0),(1304,'2015-03-10 22:38:42','2015-08-29 14:46:03',1,30005234,0,1,0,0,0,0,0,0,0,0,0,0,3,0,0,0,4,0,1,3,1,0,1,0),(1305,'2015-03-10 22:38:42','2015-08-29 14:46:03',1,30000110,1,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(1306,'2015-03-10 22:38:42','2015-08-29 14:46:03',1,30003014,3,2,0,0,0,2,0,0,0,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0),(1307,'2015-03-10 22:38:42','2015-08-29 14:46:03',1,30004138,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(1308,'2015-03-10 22:38:42','2015-08-29 14:46:03',1,30000109,0,2,0,0,0,1,0,0,0,1,1,0,0,0,0,0,0,0,0,1,1,2,0,0),(1309,'2015-03-10 22:38:42','2015-03-10 22:38:42',1,30001885,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(1310,'2015-03-10 22:38:42','2015-08-29 14:46:03',1,30004506,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(1311,'2015-03-10 22:38:42','2015-03-10 22:38:42',1,30000355,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(1312,'2015-03-10 22:38:42','2015-03-10 22:38:42',1,30004427,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(1313,'2015-03-10 22:38:42','2015-03-10 22:38:42',1,30002876,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(1314,'2015-03-10 22:38:42','2015-08-29 14:46:03',1,30004417,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0),(1315,'2015-03-10 22:38:42','2015-08-29 14:46:03',1,30005267,2,2,0,0,0,1,1,1,0,1,3,0,2,4,5,2,1,1,1,3,1,1,1,0),(1316,'2015-03-10 22:38:42','2015-08-29 14:46:03',1,30002282,5,0,0,0,0,0,0,0,1,0,0,0,0,2,1,0,0,0,0,2,0,1,1,0),(1317,'2015-03-10 22:38:42','2015-08-29 14:46:03',1,30004163,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(1318,'2015-03-10 22:38:42','2015-08-29 14:46:03',1,30002252,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,3,0,0,0,0),(1319,'2015-03-10 22:38:42','2015-08-29 14:46:03',1,30003040,0,0,0,0,0,0,0,0,0,0,0,1,0,0,1,1,2,4,1,0,0,0,0,0),(1320,'2015-03-10 22:38:42','2015-08-29 14:46:03',1,30000115,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,0,0,0),(1321,'2015-03-10 22:38:42','2015-08-29 14:46:03',1,30003561,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(1322,'2015-03-10 22:38:42','2015-03-10 22:38:42',1,30003555,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(1323,'2015-03-10 22:38:42','2015-03-10 22:38:42',1,30004444,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(1324,'2015-03-10 22:38:42','2015-03-10 22:38:42',1,30001469,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(1325,'2015-03-10 22:38:42','2015-03-10 22:38:42',1,30004422,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(1326,'2015-03-10 22:38:42','2015-08-29 14:46:03',1,30003757,3,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,1,0,0,0),(1327,'2015-03-10 22:38:42','2015-08-29 14:46:03',1,30004333,0,0,0,2,2,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(1328,'2015-03-10 22:38:42','2015-03-10 22:38:42',1,30001497,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(1329,'2015-03-10 22:38:42','2015-08-29 14:46:03',1,30003026,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(1330,'2015-03-10 22:38:42','2015-03-10 22:38:42',1,30004420,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(1331,'2015-03-10 22:38:42','2015-03-10 22:38:42',1,30000619,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(1332,'2015-03-10 22:38:42','2015-03-10 22:38:42',1,30002843,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(1333,'2015-03-10 22:38:42','2015-08-29 14:46:03',1,30003327,0,1,0,0,0,0,0,4,0,0,0,1,0,0,0,0,0,0,0,2,0,0,0,0),(1334,'2015-03-10 22:38:42','2015-03-10 22:38:42',1,30004539,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(1335,'2015-03-10 22:38:42','2015-08-29 14:46:03',1,30002438,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,1,0,0,0),(1336,'2015-03-10 22:38:42','2015-03-10 22:38:42',1,30002318,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(1337,'2015-03-10 22:38:42','2015-03-10 22:38:42',1,30004545,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(1338,'2015-03-10 22:38:42','2015-08-29 14:46:03',1,30002553,0,0,1,0,0,0,0,1,0,0,0,0,1,1,0,0,0,0,0,0,0,0,0,0),(1339,'2015-03-10 22:38:42','2015-08-29 14:46:03',1,30002649,0,1,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,1,0,0,0,0,0,0),(1340,'2015-03-10 22:38:42','2015-03-10 22:38:42',1,30003913,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(1341,'2015-03-10 22:38:42','2015-08-29 14:46:03',1,30003397,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0),(1342,'2015-03-10 22:38:42','2015-08-29 14:46:03',1,30002188,0,0,1,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,0,0,1,0),(1343,'2015-03-10 22:38:42','2015-08-29 14:46:03',1,30004106,0,0,0,0,0,0,0,0,5,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(1344,'2015-03-10 22:38:42','2015-08-29 14:46:03',1,30002514,0,2,0,0,0,0,2,0,1,2,4,1,9,1,1,0,0,0,0,2,3,2,4,0),(1345,'2015-03-10 22:38:42','2015-08-29 14:46:03',1,30002387,0,1,0,1,0,0,0,0,0,0,0,0,0,0,4,7,0,0,0,1,0,0,1,0),(1346,'2015-03-10 22:38:42','2015-08-29 14:46:03',1,30002661,0,2,2,0,0,0,0,0,0,0,0,2,0,0,0,0,1,1,0,2,0,0,0,0),(1347,'2015-03-10 22:38:42','2015-08-29 14:46:03',1,30002238,0,0,0,1,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,2,0,0,0),(1348,'2015-03-10 22:38:42','2015-08-29 14:46:03',1,30002715,2,1,0,4,0,10,0,1,0,0,0,2,0,0,1,1,2,0,0,0,1,0,1,0),(1349,'2015-03-10 22:38:42','2015-08-29 14:46:03',1,30003574,0,0,0,0,0,0,0,0,0,0,0,0,2,0,0,0,0,0,0,1,0,0,0,0),(1350,'2015-03-10 22:38:42','2015-03-10 22:38:42',1,30000504,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(1351,'2015-03-10 22:38:42','2015-08-29 14:46:03',1,30001037,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0),(1352,'2015-03-10 22:38:42','2015-03-10 22:38:42',1,30003230,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(1353,'2015-03-10 22:38:42','2015-03-10 22:38:42',1,30000311,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(1354,'2015-03-10 22:38:42','2015-08-29 14:46:03',1,30001235,0,0,0,0,0,2,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(1355,'2015-03-10 22:38:42','2015-08-29 14:46:03',1,30002699,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,1,0,0,0,0,0,0,0),(1356,'2015-03-10 22:38:42','2015-08-29 14:46:03',1,30003789,2,1,1,0,0,0,2,0,0,1,1,1,0,0,0,2,1,0,0,0,0,1,0,0),(1357,'2015-03-10 22:38:42','2015-03-10 22:38:42',1,30003809,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(1358,'2015-03-10 22:38:42','2015-08-29 14:46:03',1,30005034,1,0,0,0,0,0,0,0,0,0,0,0,3,1,0,0,0,0,0,0,0,0,0,0),(1359,'2015-03-10 22:38:42','2015-08-29 14:46:03',1,30002067,0,0,0,1,1,1,1,0,0,0,0,1,0,1,1,0,0,0,0,0,0,0,0,0),(1360,'2015-03-10 22:38:42','2015-03-10 22:38:42',1,30000986,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(1361,'2015-03-10 22:38:42','2015-03-10 22:38:42',1,30003375,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(1362,'2015-03-10 22:38:42','2015-08-29 14:46:03',1,30002703,0,0,0,2,1,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,1,0),(1363,'2015-03-10 22:38:42','2015-08-29 14:46:03',1,30000643,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(1364,'2015-03-10 22:38:42','2015-08-29 14:46:03',1,30004399,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,0,0,0,0,0,0,0),(1365,'2015-03-10 22:38:42','2015-08-29 14:46:03',1,30000081,0,0,0,0,0,0,0,0,0,0,0,0,0,2,0,0,0,0,0,0,0,0,0,0),(1366,'2015-03-10 22:38:42','2015-08-29 14:46:03',1,30003866,0,0,0,0,0,0,0,1,1,0,0,0,0,0,1,4,0,1,0,1,3,4,0,0),(1367,'2015-03-10 22:38:42','2015-03-10 22:38:42',1,30002577,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(1368,'2015-03-10 22:38:42','2015-08-29 14:46:03',1,30004117,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(1369,'2015-03-10 22:38:42','2015-08-29 14:46:03',1,30001245,0,0,0,0,0,0,1,0,21,8,1,2,6,7,0,0,11,2,18,18,3,3,6,0),(1370,'2015-03-10 22:38:42','2015-03-10 22:38:42',1,30001286,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(1371,'2015-03-10 22:38:42','2015-03-10 22:38:42',1,30002828,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(1372,'2015-03-10 22:38:42','2015-03-10 22:38:42',1,30004804,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(1373,'2015-03-10 22:38:42','2015-08-29 14:46:03',1,30002440,13,5,1,0,0,1,0,0,7,16,18,0,7,2,0,2,3,6,2,4,1,2,3,0),(1374,'2015-03-10 22:38:42','2015-08-29 14:46:03',1,30004371,0,0,0,0,0,0,0,0,1,0,0,0,3,10,0,0,0,0,0,0,0,0,0,0),(1375,'2015-03-10 22:38:42','2015-03-10 22:38:42',1,30001629,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(1376,'2015-03-10 22:38:42','2015-08-29 14:46:03',1,30004029,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0),(1377,'2015-03-10 22:38:42','2015-03-10 22:38:42',1,30003993,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(1378,'2015-03-10 22:38:42','2015-03-10 22:38:42',1,30002305,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(1379,'2015-03-10 22:38:42','2015-08-29 14:46:03',1,30003138,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0),(1380,'2015-03-10 22:38:42','2015-08-29 14:46:03',1,30003328,0,0,0,1,1,0,0,0,0,0,0,0,0,0,1,1,1,0,0,0,0,0,0,0),(1381,'2015-03-10 22:38:42','2015-08-29 14:46:03',1,30000925,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0),(1382,'2015-03-10 22:38:42','2015-08-29 14:46:03',1,30004562,0,0,0,0,0,0,0,0,1,0,58,1,0,0,0,0,0,2,0,0,0,0,0,0),(1383,'2015-03-10 22:38:42','2015-08-29 14:46:03',1,30003121,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(1384,'2015-03-10 22:38:42','2015-03-10 22:38:42',1,30002882,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(1385,'2015-03-10 22:38:42','2015-08-29 14:46:03',1,30004434,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0),(1386,'2015-03-10 22:38:42','2015-08-29 14:46:03',1,30002375,0,0,0,0,0,0,1,0,0,0,0,0,0,2,3,1,0,0,0,0,0,0,0,0),(1387,'2015-03-10 22:38:42','2015-03-10 22:38:42',1,30004378,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(1388,'2015-03-10 22:38:42','2015-03-10 22:38:42',1,30000550,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(1389,'2015-03-10 22:38:42','2015-03-10 22:38:42',1,30000632,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(1390,'2015-03-10 22:38:42','2015-03-10 22:38:42',1,30003995,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(1391,'2015-03-10 22:38:42','2015-08-29 14:46:03',1,30003976,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(1392,'2015-03-10 22:38:42','2015-03-10 22:38:42',1,30001576,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(1393,'2015-03-10 22:38:42','2015-08-29 14:46:03',1,30004564,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,1,0,0,0,0,0,0,0),(1394,'2015-03-10 22:38:42','2015-03-10 22:38:42',1,30000278,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(1395,'2015-03-10 22:38:42','2015-03-10 22:38:42',1,30004818,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(1396,'2015-03-10 22:38:42','2015-03-10 22:38:42',1,30004651,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(1397,'2015-03-10 22:38:42','2015-08-29 14:46:03',1,30000302,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,0,1,0,0,0,0),(1398,'2015-03-10 22:38:42','2015-08-29 14:46:03',1,30001992,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0),(1399,'2015-03-10 22:38:42','2015-08-29 14:46:03',1,30004319,0,0,0,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(1400,'2015-03-10 22:38:42','2015-08-29 14:46:03',1,30000772,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(1401,'2015-03-10 22:38:42','2015-08-29 14:46:03',1,30000273,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(1402,'2015-03-10 22:38:42','2015-03-10 22:38:42',1,30001085,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(1403,'2015-03-10 22:38:42','2015-08-29 14:46:03',1,30004372,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0),(1404,'2015-03-10 22:38:42','2015-08-29 14:46:03',1,30004365,0,0,0,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(1405,'2015-03-10 22:38:42','2015-03-10 22:38:42',1,30000567,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(1406,'2015-03-10 22:38:42','2015-08-29 14:46:03',1,30004600,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,1,0,0,0,0,0,0,0,0),(1407,'2015-03-10 22:38:42','2015-08-29 14:46:03',1,30001124,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(1408,'2015-03-10 22:38:42','2015-08-29 14:46:03',1,30003692,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(1409,'2015-03-10 22:38:42','2015-08-29 14:46:03',1,30003169,0,1,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0),(1410,'2015-03-10 22:38:42','2015-03-10 22:38:42',1,30002367,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(1411,'2015-03-10 22:38:42','2015-08-29 14:46:03',1,30004380,0,2,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(1412,'2015-03-10 22:38:42','2015-03-10 22:38:42',1,30003113,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(1413,'2015-03-10 22:38:42','2015-03-10 22:38:42',1,30004889,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(1414,'2015-03-10 22:38:42','2015-03-10 22:38:42',1,30003670,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(1415,'2015-03-10 22:38:42','2015-03-10 22:38:42',1,30000568,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(1416,'2015-03-10 22:38:42','2015-08-29 14:46:03',1,30004493,0,0,0,0,0,0,0,0,0,0,1,0,0,1,0,0,0,0,0,1,0,0,1,0),(1417,'2015-03-10 22:38:42','2015-03-10 22:38:42',1,30003780,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(1418,'2015-03-10 22:38:42','2015-08-29 14:46:03',1,30000821,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(1419,'2015-03-10 22:38:42','2015-03-10 22:38:42',1,30004597,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(1420,'2015-03-10 22:38:42','2015-03-10 22:38:42',1,30004191,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(1421,'2015-03-10 22:38:42','2015-03-10 22:38:42',1,30001355,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(1422,'2015-03-10 22:38:42','2015-08-29 14:46:03',1,30000863,0,0,0,0,0,2,1,0,1,3,3,0,0,0,1,1,0,0,0,0,1,0,0,0),(1423,'2015-03-10 22:38:42','2015-08-29 14:46:03',1,30004824,0,0,0,0,0,0,3,0,0,0,0,0,0,3,3,0,0,0,0,1,1,0,0,0),(1424,'2015-03-10 22:38:42','2015-08-29 14:46:03',1,30005190,0,0,0,0,0,5,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(1425,'2015-03-10 22:38:42','2015-08-29 14:46:03',1,30002858,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0),(1426,'2015-03-10 22:38:42','2015-03-10 22:38:42',1,30004798,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(1427,'2015-03-10 22:38:42','2015-08-29 14:46:03',1,30003697,0,0,8,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0),(1428,'2015-03-10 22:38:42','2015-08-29 14:46:03',1,30000446,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0),(1429,'2015-03-10 22:38:42','2015-03-10 22:38:42',1,30001533,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(1430,'2015-03-10 22:38:42','2015-03-10 22:38:42',1,30005122,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(1431,'2015-03-10 22:38:42','2015-03-10 22:38:42',1,30004791,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(1432,'2015-03-10 22:38:42','2015-08-29 14:46:03',1,30002915,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(1433,'2015-03-10 22:38:42','2015-03-10 22:38:42',1,30000700,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(1434,'2015-03-10 22:38:42','2015-08-29 14:46:03',1,30003676,0,0,0,0,0,1,0,0,1,1,1,0,1,0,0,0,0,3,3,4,0,0,0,0),(1435,'2015-03-10 22:38:42','2015-03-10 22:38:42',1,30000743,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(1436,'2015-03-10 22:38:42','2015-03-10 22:38:42',1,30000892,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(1437,'2015-03-10 22:38:42','2015-08-29 14:46:03',1,30003109,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,1,0,0,0,3,0,0,0,0),(1438,'2015-03-10 22:38:42','2015-03-10 22:38:42',1,30002315,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(1439,'2015-03-10 22:38:43','2015-03-10 22:38:43',1,30003934,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(1440,'2015-03-10 22:38:43','2015-03-10 22:38:43',1,30003569,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(1441,'2015-03-10 22:38:43','2015-08-29 14:46:03',1,30002207,0,0,0,0,0,0,0,0,0,0,0,0,0,4,6,2,0,0,0,0,0,0,0,0),(1442,'2015-03-10 22:38:43','2015-08-29 14:46:03',1,30000049,0,0,0,0,0,0,0,0,0,0,0,0,0,1,2,1,0,0,0,0,0,0,1,0),(1443,'2015-03-10 22:38:43','2015-03-10 22:38:43',1,30005287,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(1444,'2015-03-10 22:38:43','2015-08-29 14:46:03',1,30002735,0,0,0,0,0,0,0,1,0,0,0,1,0,0,0,0,1,0,1,1,9,0,0,0),(1445,'2015-03-10 22:38:43','2015-08-29 14:46:03',1,30003048,0,0,0,0,0,0,0,0,0,0,0,0,6,7,3,7,0,0,0,1,0,1,6,0),(1446,'2015-03-10 22:38:43','2015-08-29 14:46:03',1,30002645,1,2,0,0,0,0,0,0,0,0,0,0,0,2,1,0,0,0,1,0,0,0,1,0),(1447,'2015-03-10 22:38:43','2015-08-29 14:46:03',1,30004973,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0),(1448,'2015-03-10 22:38:43','2015-08-29 14:46:03',1,30005026,0,0,0,0,1,0,0,7,0,0,0,0,0,1,1,0,0,0,0,0,0,0,1,0),(1449,'2015-03-10 22:38:43','2015-08-29 14:46:03',1,30001205,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,0,0,0,1,0,0,2,0,0),(1450,'2015-03-10 22:38:43','2015-08-29 14:46:03',1,30001895,0,0,0,0,0,0,0,0,0,0,0,0,2,0,0,0,0,0,0,0,0,0,0,0),(1451,'2015-03-10 22:38:43','2015-08-29 14:46:03',1,30001206,0,0,0,0,0,0,0,0,2,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0),(1452,'2015-03-10 22:38:43','2015-03-10 22:38:43',1,30004180,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(1453,'2015-03-10 22:38:43','2015-03-10 22:38:43',1,30004841,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(1454,'2015-03-10 22:38:43','2015-08-29 14:46:03',1,30002906,0,0,0,0,1,2,0,0,0,0,0,0,1,1,0,0,0,0,0,0,0,6,0,0),(1455,'2015-03-10 22:38:43','2015-03-10 22:38:43',1,30005283,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(1456,'2015-03-10 22:38:43','2015-03-10 22:38:43',1,30004407,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(1457,'2015-03-10 22:38:43','2015-03-10 22:38:43',1,30002483,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(1458,'2015-03-10 22:38:43','2015-08-29 14:46:03',1,30004401,0,0,0,0,0,18,0,0,0,1,0,0,1,0,0,0,1,0,0,1,1,0,0,0),(1459,'2015-03-10 22:38:43','2015-08-29 14:46:03',1,30004601,0,0,0,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(1460,'2015-03-10 22:38:43','2015-03-10 22:38:43',1,30002688,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(1461,'2015-03-10 22:38:43','2015-08-29 14:46:03',1,30035042,1,0,0,0,0,0,0,0,0,0,1,1,0,1,1,1,0,0,2,2,0,0,0,0),(1462,'2015-03-10 22:38:43','2015-08-29 14:46:03',1,30003905,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,1,0,3,2,0,0,1,0),(1463,'2015-03-10 22:38:43','2015-03-10 22:38:43',1,30005228,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(1464,'2015-03-10 22:38:43','2015-08-29 14:46:03',1,30001664,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0),(1465,'2015-03-10 22:38:43','2015-03-10 22:38:43',1,30004108,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(1466,'2015-03-10 22:38:43','2015-08-29 14:46:03',1,30025305,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,0,0),(1467,'2015-03-10 22:38:43','2015-08-29 14:46:03',1,30004122,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(1468,'2015-03-10 22:38:43','2015-08-29 14:46:03',1,30005331,1,0,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(1469,'2015-03-10 22:38:43','2015-08-29 14:46:03',1,30003834,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,3,0,0,1,0),(1470,'2015-03-10 22:38:43','2015-08-29 14:46:03',1,30004976,0,0,0,0,0,0,0,0,0,0,0,0,2,1,1,0,0,0,0,0,0,1,1,0),(1471,'2015-03-10 22:38:43','2015-08-29 14:46:03',1,30002224,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0),(1472,'2015-03-10 22:38:43','2015-08-29 14:46:03',1,30003489,4,1,6,0,0,1,3,4,0,3,3,1,1,1,1,0,0,0,0,1,3,3,1,0),(1473,'2015-03-10 22:38:43','2015-08-29 14:46:03',1,30005237,0,0,0,0,0,1,0,0,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(1474,'2015-03-10 22:38:43','2015-08-29 14:46:03',1,30002667,0,0,0,0,0,0,0,0,0,0,0,0,1,0,2,2,0,0,11,3,0,0,0,0),(1475,'2015-03-10 22:38:43','2015-08-29 14:46:03',1,30003529,3,1,0,0,1,0,0,0,0,0,0,1,0,0,0,1,0,0,0,0,0,0,0,0),(1476,'2015-03-10 22:38:43','2015-03-10 22:38:43',1,30003019,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(1477,'2015-03-10 22:38:43','2015-08-29 14:46:03',1,30005327,0,1,0,0,0,0,0,0,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(1478,'2015-03-10 22:38:43','2015-08-29 14:46:03',1,30003527,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(1479,'2015-03-10 22:38:43','2015-08-29 14:46:03',1,30004250,0,0,0,3,3,0,0,0,0,0,0,0,2,0,0,0,0,0,0,4,0,2,1,0),(1480,'2015-03-10 22:38:43','2015-03-10 22:38:43',1,30000010,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(1481,'2015-03-10 22:38:43','2015-08-29 14:46:03',1,30005253,0,0,0,0,0,0,0,0,0,4,4,0,0,0,0,0,0,0,0,0,0,0,1,0),(1482,'2015-03-10 22:38:43','2015-08-29 14:46:03',1,30003925,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,0,0,0,0,0,0,0),(1483,'2015-03-10 22:38:43','2015-08-29 14:46:03',1,30005051,0,0,0,0,0,1,0,2,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0),(1484,'2015-03-10 22:38:43','2015-08-29 14:46:03',1,30002965,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0),(1485,'2015-03-10 22:38:43','2015-03-10 22:38:43',1,30004210,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(1486,'2015-03-10 22:38:43','2015-03-10 22:38:43',1,30000951,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(1487,'2015-03-10 22:38:43','2015-08-29 14:46:03',1,30003363,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(1488,'2015-03-10 22:38:43','2015-08-29 14:46:03',1,30005305,0,3,1,1,0,0,1,6,0,1,3,0,0,0,3,3,3,2,3,0,0,1,1,0),(1489,'2015-03-10 22:38:43','2015-08-29 14:46:03',1,30001926,0,0,0,0,1,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,0,0,0,0),(1490,'2015-03-10 22:38:43','2015-03-10 22:38:43',1,30002127,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(1491,'2015-03-10 22:38:43','2015-08-29 14:46:03',1,30002170,0,0,0,0,1,0,0,0,1,0,1,0,0,1,0,0,0,1,21,3,0,1,0,0),(1492,'2015-03-10 22:38:43','2015-08-29 14:46:03',1,30001042,0,2,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,2,0),(1493,'2015-03-10 22:38:43','2015-08-29 14:46:03',1,30001025,4,1,0,0,0,0,0,0,0,2,3,0,3,1,1,0,2,1,0,0,1,1,3,0),(1494,'2015-03-10 22:38:43','2015-03-10 22:38:43',1,30004565,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(1495,'2015-03-10 22:38:43','2015-08-29 14:46:03',1,30002362,0,0,0,0,0,0,1,3,1,1,0,0,5,0,0,0,0,0,0,0,1,0,0,0),(1496,'2015-03-10 22:38:43','2015-03-10 22:38:43',1,30004458,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(1497,'2015-03-10 22:38:43','2015-03-10 22:38:43',1,30001981,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(1498,'2015-03-10 22:38:43','2015-08-29 14:46:03',1,30035305,0,0,0,1,1,2,0,0,0,0,0,0,0,0,0,0,1,1,0,2,0,0,0,0),(1499,'2015-03-10 22:38:43','2015-08-29 14:46:03',1,30003896,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(1500,'2015-03-10 22:38:43','2015-03-10 22:38:43',1,30002275,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(1501,'2015-03-10 22:38:43','2015-08-29 14:46:03',1,30005324,0,0,0,1,0,0,0,0,0,0,1,0,0,1,1,0,0,0,1,0,0,0,0,0),(1502,'2015-03-10 22:38:43','2015-03-10 22:38:43',1,30002708,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(1503,'2015-03-10 22:38:43','2015-03-10 22:38:43',1,30001616,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(1504,'2015-03-10 22:38:43','2015-08-29 14:46:03',1,30045305,10,13,17,10,8,8,13,6,22,10,17,17,24,21,12,11,17,8,20,12,18,14,15,0),(1505,'2015-03-10 22:38:43','2015-08-29 14:46:03',1,30005194,1,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0),(1506,'2015-03-10 22:38:43','2015-08-29 14:46:03',1,30005023,0,0,2,0,0,0,0,0,0,0,0,0,0,0,4,4,1,0,0,0,0,0,0,0),(1507,'2015-03-10 22:38:43','2015-03-10 22:38:43',1,30001100,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(1508,'2015-03-10 22:38:43','2015-08-29 14:46:03',1,30001254,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0),(1509,'2015-03-10 22:38:43','2015-03-10 22:38:43',1,30001825,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(1510,'2015-03-10 22:38:43','2015-08-29 14:46:03',1,30004887,0,0,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(1511,'2015-03-10 22:38:43','2015-03-10 22:38:43',1,30003904,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(1512,'2015-03-10 22:38:43','2015-08-29 14:46:03',1,30003041,0,2,0,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(1513,'2015-03-10 22:38:43','2015-08-29 14:46:03',1,30002682,1,0,0,0,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,2,2,1,0,0),(1514,'2015-03-10 22:38:43','2015-08-29 14:46:03',1,30045042,2,4,5,6,9,1,3,6,3,4,4,6,13,7,4,3,5,5,2,5,5,6,2,0),(1515,'2015-03-10 22:38:43','2015-08-29 14:46:03',1,30003565,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0),(1516,'2015-03-10 22:38:43','2015-08-29 14:46:03',1,30005298,0,0,0,0,0,1,1,1,2,1,0,0,0,0,0,0,0,0,0,2,0,0,0,0),(1517,'2015-03-10 22:38:43','2015-08-29 14:46:03',1,30014971,12,23,25,21,25,17,18,19,17,29,31,22,24,25,22,30,19,12,15,22,27,31,16,0),(1518,'2015-03-10 22:38:43','2015-08-29 14:46:03',1,30003795,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,2,0,0,0,1,1,1,1,0),(1519,'2015-03-10 22:38:43','2015-08-29 14:46:03',1,30003123,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,1,0),(1520,'2015-03-10 22:38:43','2015-08-29 14:46:03',1,30002003,0,2,2,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(1521,'2015-03-10 22:38:43','2015-08-29 14:46:03',1,30003678,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0),(1522,'2015-03-10 22:38:43','2015-03-10 22:38:43',1,30000845,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(1523,'2015-03-10 22:38:43','2015-08-29 14:46:03',1,30002691,2,0,2,3,3,1,0,0,0,0,1,3,2,0,2,2,1,0,0,2,0,0,1,0),(1524,'2015-03-10 22:38:43','2015-08-29 14:46:03',1,30002705,0,0,0,0,0,0,0,0,0,0,0,0,1,1,1,0,0,0,2,1,0,0,0,0),(1525,'2015-03-10 22:38:43','2015-08-29 14:46:03',1,30000923,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,1,0,0,0,0,0),(1526,'2015-03-10 22:38:43','2015-03-10 22:38:43',1,30004357,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(1527,'2015-03-10 22:38:43','2015-08-29 14:46:03',1,30001275,0,0,0,0,0,1,0,0,0,0,0,0,0,0,1,1,0,0,3,0,1,0,0,0),(1528,'2015-03-10 22:38:43','2015-03-10 22:38:43',1,30004530,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(1529,'2015-03-10 22:38:43','2015-08-29 14:46:03',1,30002373,0,0,0,0,0,0,0,0,0,0,0,0,0,2,3,1,1,0,0,0,0,0,0,0),(1530,'2015-03-10 22:38:43','2015-03-10 22:38:43',1,30002896,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(1531,'2015-03-10 22:38:43','2015-08-29 14:46:03',1,30003802,1,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,1,0,1,0),(1532,'2015-03-10 22:38:43','2015-08-29 14:46:03',1,30004200,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(1533,'2015-03-10 22:38:43','2015-03-10 22:38:43',1,30001034,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(1534,'2015-03-10 22:38:43','2015-03-10 22:38:43',1,30001472,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(1535,'2015-03-10 22:38:43','2015-08-29 14:46:03',1,30004939,0,0,0,0,0,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(1536,'2015-03-10 22:38:43','2015-03-10 22:38:43',1,30004335,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(1537,'2015-03-10 22:38:43','2015-08-29 14:46:03',1,30001224,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,1,0,0,0,0,0,0),(1538,'2015-03-10 22:38:43','2015-08-29 14:46:03',1,30004072,3,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(1539,'2015-03-10 22:38:43','2015-03-10 22:38:43',1,30004799,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(1540,'2015-03-10 22:38:43','2015-03-10 22:38:43',1,30001979,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(1541,'2015-03-10 22:38:43','2015-03-10 22:38:43',1,30003371,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(1542,'2015-03-10 22:38:43','2015-03-10 22:38:43',1,30002312,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(1543,'2015-03-10 22:38:43','2015-03-10 22:38:43',1,30001496,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(1544,'2015-03-10 22:38:43','2015-03-10 22:38:43',1,30003134,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(1545,'2015-03-10 22:38:43','2015-08-29 14:46:03',1,30002953,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(1546,'2015-03-10 22:38:43','2015-08-29 14:46:03',1,30001253,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,1,0,0,0,0,0),(1547,'2015-03-10 22:38:43','2015-08-29 14:46:03',1,30000461,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0),(1548,'2015-03-10 22:38:43','2015-08-29 14:46:03',1,30004750,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,0,0),(1549,'2015-03-10 22:38:43','2015-03-10 22:38:43',1,30000613,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(1550,'2015-03-10 22:38:43','2015-03-10 22:38:43',1,30002838,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(1551,'2015-03-10 22:38:43','2015-08-29 14:46:03',1,30003727,0,0,0,0,0,0,0,0,0,1,0,0,2,0,0,1,0,0,0,2,0,0,1,0),(1552,'2015-03-10 22:38:43','2015-08-29 14:46:03',1,30001272,0,0,3,0,0,3,0,0,0,0,0,0,0,5,1,4,0,0,0,0,0,0,0,0),(1553,'2015-03-10 22:38:43','2015-08-29 14:46:03',1,30004813,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0),(1554,'2015-03-10 22:38:43','2015-03-10 22:38:43',1,30003358,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(1555,'2015-03-10 22:38:43','2015-03-10 22:38:43',1,30002149,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(1556,'2015-03-10 22:38:43','2015-03-10 22:38:43',1,30002304,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(1557,'2015-03-10 22:38:43','2015-03-10 22:38:43',1,30003115,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(1558,'2015-03-10 22:38:43','2015-08-29 14:46:03',1,30003709,0,0,0,0,0,0,0,1,2,0,0,2,1,1,1,0,0,0,0,0,0,0,1,0),(1559,'2015-03-10 22:38:43','2015-08-29 14:46:03',1,30002481,0,0,0,0,0,0,0,1,1,0,0,0,0,1,0,0,0,0,0,0,1,0,0,0),(1560,'2015-03-10 22:38:43','2015-08-29 14:46:03',1,30002347,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(1561,'2015-03-10 22:38:43','2015-08-29 14:46:03',1,30001761,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(1562,'2015-03-10 22:38:43','2015-08-29 14:46:03',1,30002626,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(1563,'2015-03-10 22:38:43','2015-03-10 22:38:43',1,30002366,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(1564,'2015-03-10 22:38:43','2015-08-29 14:46:03',1,30000826,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,4,0,0),(1565,'2015-03-10 22:38:43','2015-03-10 22:38:43',1,30000340,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(1566,'2015-03-10 22:38:43','2015-08-29 14:46:03',1,30003135,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,0,0,0),(1567,'2015-03-10 22:38:43','2015-08-29 14:46:03',1,30004622,0,2,1,1,3,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(1568,'2015-03-10 22:38:43','2015-03-10 22:38:43',1,30005125,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(1569,'2015-03-10 22:38:43','2015-08-29 14:46:03',1,30001299,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(1570,'2015-03-10 22:38:43','2015-08-29 14:46:03',1,30004730,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,2,0,0,0,0),(1571,'2015-03-10 22:38:43','2015-03-10 22:38:43',1,30002430,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(1572,'2015-03-10 22:38:43','2015-08-29 14:46:03',1,30002036,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,1,0,0),(1573,'2015-03-10 22:38:43','2015-03-10 22:38:43',1,30004588,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(1574,'2015-03-10 22:38:43','2015-08-29 14:46:03',1,30004902,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0),(1575,'2015-03-10 22:38:43','2015-03-10 22:38:43',1,30002295,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(1576,'2015-03-10 22:38:43','2015-08-29 14:46:03',1,30004491,0,0,0,0,0,0,0,0,0,3,3,0,0,0,0,0,0,0,0,0,0,1,0,0),(1577,'2015-03-10 22:38:43','2015-08-29 14:46:03',1,30004626,0,0,0,0,0,0,0,0,0,0,0,3,0,0,0,0,0,0,0,0,0,0,1,0),(1578,'2015-03-10 22:38:43','2015-08-29 14:46:03',1,30004386,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0),(1579,'2015-03-10 22:38:43','2015-08-29 14:46:03',1,30004502,0,0,0,0,0,3,0,0,0,2,1,0,1,0,0,0,0,0,0,0,0,0,1,0),(1580,'2015-03-10 22:38:43','2015-08-29 14:46:03',1,30003724,0,4,2,1,2,1,0,0,0,1,0,0,1,0,0,0,0,1,17,0,1,0,1,0),(1581,'2015-03-10 22:38:43','2015-03-10 22:38:43',1,30004480,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(1582,'2015-03-10 22:38:43','2015-08-29 14:46:03',1,30000867,0,0,0,2,1,1,0,0,4,2,3,0,3,0,0,0,0,2,1,1,3,0,1,0),(1583,'2015-03-10 22:38:43','2015-03-10 22:38:43',1,30001968,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(1584,'2015-03-10 22:38:43','2015-08-29 14:46:03',1,30003345,1,0,1,0,0,0,0,0,0,0,1,0,1,0,0,0,0,0,0,0,0,0,1,0),(1585,'2015-03-10 22:38:43','2015-08-29 14:46:03',1,30001010,0,0,0,1,1,0,0,2,3,2,1,0,2,1,0,2,1,0,0,7,4,1,1,0),(1586,'2015-03-10 22:38:43','2015-03-10 22:38:43',1,30000327,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(1587,'2015-03-10 22:38:43','2015-03-10 22:38:43',1,30001881,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(1588,'2015-03-10 22:38:43','2015-03-10 22:38:43',1,30004222,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(1589,'2015-03-10 22:38:43','2015-08-29 14:46:03',1,30001660,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0),(1590,'2015-03-10 22:38:43','2015-08-29 14:46:03',1,30001921,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,3,0,0,0,0),(1591,'2015-03-10 22:38:43','2015-03-10 22:38:43',1,30001083,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(1592,'2015-03-10 22:38:43','2015-03-10 22:38:43',1,30002233,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(1593,'2015-03-10 22:38:43','2015-08-29 14:46:03',1,30002541,0,0,1,0,0,0,1,0,5,3,4,0,1,0,0,0,3,2,2,7,1,3,2,0),(1594,'2015-03-10 22:38:43','2015-08-29 14:46:03',1,30002513,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0),(1595,'2015-03-10 22:38:43','2015-08-29 14:46:03',1,30003912,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(1596,'2015-03-10 22:38:43','2015-08-29 14:46:03',1,30004097,0,0,0,0,0,0,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(1597,'2015-03-10 22:38:43','2015-03-10 22:38:43',1,30003451,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(1598,'2015-03-10 22:38:43','2015-08-29 14:46:03',1,30001356,0,0,0,0,0,0,0,0,3,0,1,0,1,0,0,0,0,1,1,1,0,4,0,0),(1599,'2015-03-10 22:38:43','2015-08-29 14:46:03',1,30005044,0,0,2,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,0,0,0,0,0,0),(1600,'2015-03-10 22:38:43','2015-08-29 14:46:03',1,30005074,0,0,0,0,0,1,0,0,1,2,1,0,0,0,0,0,1,1,0,0,0,2,1,0),(1601,'2015-03-10 22:38:43','2015-08-29 14:46:03',1,30001420,0,0,0,0,1,0,1,0,0,0,0,0,0,0,0,0,0,2,0,0,0,0,0,0),(1602,'2015-03-10 22:38:43','2015-08-29 14:46:03',1,30003797,0,0,0,1,1,1,0,0,4,1,2,1,1,9,2,2,1,0,2,0,4,0,1,0),(1603,'2015-03-10 22:38:43','2015-03-10 22:38:43',1,30003405,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(1604,'2015-03-10 22:38:43','2015-03-10 22:38:43',1,30000253,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(1605,'2015-03-10 22:38:43','2015-08-29 14:46:03',1,30004524,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(1606,'2015-03-10 22:38:43','2015-08-29 14:46:03',1,30004470,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0),(1607,'2015-03-10 22:38:43','2015-03-10 22:38:43',1,30004595,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(1608,'2015-03-10 22:38:43','2015-03-10 22:38:43',1,30000877,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(1609,'2015-03-10 22:38:43','2015-08-29 14:46:03',1,30003364,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0),(1610,'2015-03-10 22:38:43','2015-08-29 14:46:03',1,30004311,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(1611,'2015-03-10 22:38:43','2015-03-10 22:38:43',1,30003644,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(1612,'2015-03-10 22:38:43','2015-03-10 22:38:43',1,30002631,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(1613,'2015-03-10 22:38:43','2015-08-29 14:46:03',1,30000663,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,1,0,0,0),(1614,'2015-03-10 22:38:43','2015-03-10 22:38:43',1,30005093,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(1615,'2015-03-10 22:38:43','2015-03-10 22:38:43',1,30000954,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(1616,'2015-03-10 22:38:43','2015-03-10 22:38:43',1,30005285,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(1617,'2015-03-10 22:38:43','2015-08-29 14:46:03',1,30002635,0,6,2,2,1,5,2,1,1,3,4,2,0,3,5,3,3,0,6,3,4,2,1,0),(1618,'2015-03-10 22:38:43','2015-08-29 14:46:03',1,30013489,9,13,7,5,7,11,8,5,9,9,11,10,22,16,19,16,10,11,5,15,13,12,13,0),(1619,'2015-03-10 22:38:43','2015-08-29 14:46:03',1,30004284,0,0,0,0,0,0,0,0,0,1,0,0,10,0,0,1,0,0,0,0,0,0,0,0),(1620,'2015-03-10 22:38:43','2015-03-10 22:38:43',1,30004105,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(1621,'2015-03-10 22:38:43','2015-08-29 14:46:03',1,30002681,3,4,1,0,2,0,1,0,3,2,2,1,3,0,0,0,7,1,0,7,2,4,6,0),(1622,'2015-03-10 22:38:43','2015-03-10 22:38:43',1,30004987,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(1623,'2015-03-10 22:38:43','2015-08-29 14:46:03',1,30005025,2,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,1,0,1,0,0),(1624,'2015-03-10 22:38:43','2015-08-29 14:46:03',1,30004985,2,6,0,4,4,2,1,2,2,6,0,0,16,3,3,2,4,1,3,2,2,0,0,0),(1625,'2015-03-10 22:38:43','2015-03-10 22:38:43',1,30000816,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(1626,'2015-03-10 22:38:43','2015-03-10 22:38:43',1,30001557,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(1627,'2015-03-10 22:38:43','2015-08-29 14:46:03',1,30000441,0,0,0,0,0,0,0,0,0,2,1,0,2,0,0,0,2,0,0,0,1,0,1,0),(1628,'2015-03-10 22:38:43','2015-08-29 14:46:03',1,30004016,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0),(1629,'2015-03-10 22:38:43','2015-03-10 22:38:43',1,30003187,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(1630,'2015-03-10 22:38:43','2015-08-29 14:46:03',1,30005229,0,1,0,1,1,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,1,0,0,0),(1631,'2015-03-10 22:38:43','2015-03-10 22:38:43',1,30003156,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(1632,'2015-03-10 22:38:43','2015-08-29 14:46:03',1,30002967,0,0,0,0,1,0,0,0,0,0,0,0,0,0,4,4,0,0,0,0,0,0,0,0),(1633,'2015-03-10 22:38:43','2015-03-10 22:38:43',1,30003924,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(1634,'2015-03-10 22:38:43','2015-08-29 14:46:03',1,30002646,0,0,1,2,3,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0),(1635,'2015-03-10 22:38:43','2015-08-29 14:46:03',1,30003461,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(1636,'2015-03-10 22:38:43','2015-08-29 14:46:03',1,30002968,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,3,0,0,0,0),(1637,'2015-03-10 22:38:43','2015-03-10 22:38:43',1,30001781,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(1638,'2015-03-10 22:38:43','2015-08-29 14:46:03',1,30005262,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0),(1639,'2015-03-10 22:38:43','2015-03-10 22:38:43',1,30004903,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(1640,'2015-03-10 22:38:43','2015-08-29 14:46:03',1,30001994,0,1,0,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(1641,'2015-03-10 22:38:43','2015-08-29 14:46:03',1,30004207,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0),(1642,'2015-03-10 22:38:43','2015-03-10 22:38:43',1,30001960,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(1643,'2015-03-10 22:38:43','2015-03-10 22:38:43',1,30002920,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(1644,'2015-03-10 22:38:43','2015-08-29 14:46:03',1,30003170,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0),(1645,'2015-03-10 22:38:43','2015-03-10 22:38:43',1,30000879,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(1646,'2015-03-10 22:38:43','2015-03-10 22:38:43',1,30001632,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(1647,'2015-03-10 22:38:43','2015-08-29 14:46:03',1,30004195,0,0,0,0,0,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(1648,'2015-03-10 22:38:43','2015-03-10 22:38:43',1,30003157,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(1649,'2015-03-10 22:38:43','2015-08-29 14:46:03',1,30003762,0,1,0,0,0,1,0,0,0,2,0,2,0,2,0,0,0,0,0,2,1,1,0,0),(1650,'2015-03-10 22:38:43','2015-08-29 14:46:03',1,30003681,0,0,1,0,0,5,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(1651,'2015-03-10 22:38:43','2015-03-10 22:38:43',1,30001130,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(1652,'2015-03-10 22:38:43','2015-08-29 14:46:03',1,30002685,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0),(1653,'2015-03-10 22:38:43','2015-08-29 14:46:03',1,30002659,6,16,7,1,1,4,0,3,3,11,8,6,12,14,18,16,4,3,8,4,17,10,4,0),(1654,'2015-03-10 22:38:43','2015-03-10 22:38:43',1,30005226,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(1655,'2015-03-10 22:38:43','2015-03-10 22:38:43',1,30000038,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(1656,'2015-03-10 22:38:43','2015-08-29 14:46:03',1,30001047,1,2,1,4,4,0,1,0,13,3,1,0,4,4,4,4,0,2,2,1,0,0,0,0),(1657,'2015-03-10 22:38:43','2015-08-29 14:46:03',1,30003807,0,1,0,0,0,0,0,0,0,1,1,1,0,1,1,0,0,0,0,1,0,0,0,0),(1658,'2015-03-10 22:38:43','2015-08-29 14:46:03',1,30002706,1,0,0,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0),(1659,'2015-03-10 22:38:43','2015-03-10 22:38:43',1,30005293,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(1660,'2015-03-10 22:38:43','2015-08-29 14:46:03',1,30002014,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0),(1661,'2015-03-10 22:38:43','2015-03-10 22:38:43',1,30001912,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(1662,'2015-03-10 22:38:43','2015-08-29 14:46:03',1,30003721,0,0,0,0,0,0,0,0,0,0,0,0,0,2,2,0,0,0,0,0,0,2,0,0),(1663,'2015-03-10 22:38:43','2015-08-29 14:46:03',1,30003314,0,0,0,0,0,0,0,0,0,0,0,0,3,1,2,1,0,0,0,0,0,0,0,0),(1664,'2015-03-10 22:38:43','2015-08-29 14:46:03',1,30002184,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,4,0),(1665,'2015-03-10 22:38:43','2015-08-29 14:46:03',1,30004078,3,0,0,1,1,0,0,0,0,0,0,0,1,0,0,0,0,0,1,0,0,0,1,0),(1666,'2015-03-10 22:38:43','2015-03-10 22:38:43',1,30005011,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(1667,'2015-03-10 22:38:43','2015-03-10 22:38:43',1,30003992,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(1668,'2015-03-10 22:38:43','2015-03-10 22:38:43',1,30003193,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(1669,'2015-03-10 22:38:43','2015-08-29 14:46:03',1,30001831,0,0,0,0,0,0,1,0,0,0,0,1,0,1,1,0,0,0,0,0,4,0,1,0),(1670,'2015-03-10 22:38:43','2015-03-10 22:38:43',1,30001610,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(1671,'2015-03-10 22:38:43','2015-03-10 22:38:43',1,30004806,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(1672,'2015-03-10 22:38:43','2015-03-10 22:38:43',1,30002041,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(1673,'2015-03-10 22:38:43','2015-08-29 14:46:03',1,30003108,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0),(1674,'2015-03-10 22:38:43','2015-08-29 14:46:03',1,30002633,1,1,1,0,0,0,0,0,1,0,0,1,1,2,2,0,0,0,0,1,1,1,3,0),(1675,'2015-03-10 22:38:43','2015-08-29 14:46:03',1,30002076,1,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0),(1676,'2015-03-10 22:38:43','2015-03-10 22:38:43',1,30000396,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(1677,'2015-03-10 22:38:43','2015-08-29 14:46:03',1,30002520,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(1678,'2015-03-10 22:38:43','2015-08-29 14:46:03',1,30002670,0,0,1,0,0,0,0,1,0,0,2,0,0,1,1,0,0,0,0,0,1,0,0,0),(1679,'2015-03-10 22:38:43','2015-03-10 22:38:43',1,30000595,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(1680,'2015-03-10 22:38:43','2015-08-29 14:46:03',1,30004971,2,4,11,3,2,4,7,1,7,4,4,3,4,2,2,5,1,1,3,3,2,2,3,0),(1681,'2015-03-10 22:38:43','2015-08-29 14:46:03',1,30004418,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0),(1682,'2015-03-10 22:38:43','2015-08-29 14:46:03',1,30003359,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0),(1683,'2015-03-10 22:38:43','2015-03-10 22:38:43',1,30001504,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(1684,'2015-03-10 22:38:43','2015-08-29 14:46:03',1,30001581,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0),(1685,'2015-03-10 22:38:43','2015-03-10 22:38:43',1,30000518,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(1686,'2015-03-10 22:38:43','2015-08-29 14:46:03',1,30002146,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(1687,'2015-03-10 22:38:43','2015-08-29 14:46:03',1,30003682,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,0),(1688,'2015-03-10 22:38:43','2015-03-10 22:38:43',1,30000516,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(1689,'2015-03-10 22:38:43','2015-08-29 14:46:03',1,30000490,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0),(1690,'2015-03-10 22:38:43','2015-03-10 22:38:43',1,30002599,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(1691,'2015-03-10 22:38:43','2015-08-29 14:46:03',1,30004042,0,0,0,0,0,0,0,0,2,3,0,0,0,0,0,0,0,0,0,1,0,0,0,0),(1692,'2015-03-10 22:38:43','2015-08-29 14:46:03',1,30002119,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0),(1693,'2015-03-10 22:38:43','2015-03-10 22:38:43',1,30002378,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(1694,'2015-03-10 22:38:43','2015-03-10 22:38:43',1,30003196,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(1695,'2015-03-10 22:38:43','2015-08-29 14:46:03',1,30000102,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,4,0,2,0),(1696,'2015-03-10 22:38:43','2015-03-10 22:38:43',1,30004852,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(1697,'2015-03-10 22:38:43','2015-03-10 22:38:43',1,30000502,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(1698,'2015-03-10 22:38:43','2015-03-10 22:38:43',1,30001294,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(1699,'2015-03-10 22:38:43','2015-08-29 14:46:03',1,30002477,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0),(1700,'2015-03-10 22:38:43','2015-08-29 14:46:03',1,30003677,0,0,0,0,0,1,1,0,1,0,0,0,0,0,0,0,4,0,0,0,0,0,0,0),(1701,'2015-03-10 22:38:43','2015-03-10 22:38:43',1,30000503,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(1702,'2015-03-10 22:38:43','2015-03-10 22:38:43',1,30004186,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(1703,'2015-03-10 22:38:43','2015-03-10 22:38:43',1,30001530,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(1704,'2015-03-10 22:38:43','2015-03-10 22:38:43',1,30004567,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(1705,'2015-03-10 22:38:43','2015-03-10 22:38:43',1,30004181,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(1706,'2015-03-10 22:38:43','2015-08-29 14:46:03',1,30001834,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0),(1707,'2015-03-10 22:38:43','2015-03-10 22:38:43',1,30000257,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(1708,'2015-03-10 22:38:43','2015-03-10 22:38:43',1,30004948,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(1709,'2015-03-10 22:38:43','2015-03-10 22:38:43',1,30004217,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(1710,'2015-03-10 22:38:43','2015-08-29 14:46:03',1,30002922,0,0,3,0,1,0,0,3,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(1711,'2015-03-10 22:38:43','2015-03-10 22:38:43',1,30004546,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(1712,'2015-03-10 22:38:43','2015-03-10 22:38:43',1,30000531,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(1713,'2015-03-10 22:38:43','2015-08-29 14:46:03',1,30000846,0,2,0,0,0,0,0,0,0,6,68,37,3,1,1,0,0,0,2,0,1,0,2,0),(1714,'2015-03-10 22:38:43','2015-08-29 14:46:03',1,30004451,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,0,0,1,0,0,1,0),(1715,'2015-03-10 22:38:43','2015-03-10 22:38:43',1,30001620,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(1716,'2015-03-10 22:38:43','2015-03-10 22:38:43',1,30000283,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(1717,'2015-03-10 22:38:43','2015-03-10 22:38:43',1,30004028,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(1718,'2015-03-10 22:38:43','2015-08-29 14:46:03',1,30005100,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(1719,'2015-03-10 22:38:43','2015-03-10 22:38:43',1,30003732,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(1720,'2015-03-10 22:38:43','2015-08-29 14:46:03',1,30001229,0,0,0,0,0,1,0,0,0,0,0,0,0,3,0,0,1,0,1,1,0,1,0,0),(1721,'2015-03-10 22:38:43','2015-08-29 14:46:03',1,30002032,0,1,2,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(1722,'2015-03-10 22:38:43','2015-08-29 14:46:03',1,30000903,1,0,0,1,1,0,1,0,0,1,0,1,0,0,1,1,0,0,3,0,2,0,0,0),(1723,'2015-03-10 22:38:43','2015-08-29 14:46:03',1,30004208,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,3,3,0,0,0,0),(1724,'2015-03-10 22:38:43','2015-08-29 14:46:03',1,30001214,0,0,0,0,0,0,0,0,0,1,0,0,0,1,0,0,0,1,0,0,0,1,0,0),(1725,'2015-03-10 22:38:43','2015-08-29 14:46:03',1,30001334,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0),(1726,'2015-03-10 22:38:43','2015-08-29 14:46:03',1,30002136,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0),(1727,'2015-03-10 22:38:43','2015-03-10 22:38:43',1,30003136,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(1728,'2015-03-10 22:38:43','2015-03-10 22:38:43',1,30000612,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(1729,'2015-03-10 22:38:43','2015-08-29 14:46:03',1,30004959,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(1730,'2015-03-10 22:38:43','2015-03-10 22:38:43',1,30001462,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(1731,'2015-03-10 22:38:43','2015-08-29 14:46:03',1,30001217,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,2,0,0,0),(1732,'2015-03-10 22:38:43','2015-03-10 22:38:43',1,30004725,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(1733,'2015-03-10 22:38:43','2015-08-29 14:46:03',1,30002931,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0),(1734,'2015-03-10 22:38:43','2015-08-29 14:46:03',1,30001527,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0),(1735,'2015-03-10 22:38:43','2015-03-10 22:38:43',1,30000524,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(1736,'2015-03-10 22:38:43','2015-03-10 22:38:43',1,30000634,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(1737,'2015-03-10 22:38:43','2015-03-10 22:38:43',1,30003242,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(1738,'2015-03-10 22:38:43','2015-03-10 22:38:43',1,30001909,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(1739,'2015-03-10 22:38:43','2015-03-10 22:38:43',1,30002605,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(1740,'2015-03-10 22:38:43','2015-08-29 14:46:03',1,30002349,0,0,0,0,0,0,0,1,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,0),(1741,'2015-03-10 22:38:43','2015-03-10 22:38:43',1,30002163,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(1742,'2015-03-10 22:38:43','2015-08-29 14:46:03',1,30004499,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,1,0,0,0),(1743,'2015-03-10 22:38:43','2015-03-10 22:38:43',1,30003694,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(1744,'2015-03-10 22:38:43','2015-03-10 22:38:43',1,30002124,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(1745,'2015-03-10 22:38:43','2015-03-10 22:38:43',1,30003476,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(1746,'2015-03-10 22:38:43','2015-08-29 14:46:03',1,30003438,0,1,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,3,0,0),(1747,'2015-03-10 22:38:43','2015-08-29 14:46:03',1,30003441,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0),(1748,'2015-03-10 22:38:43','2015-08-29 14:46:03',1,30001933,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(1749,'2015-03-10 22:38:43','2015-08-29 14:46:03',1,30002281,0,0,0,0,2,0,2,1,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0),(1750,'2015-03-10 22:38:43','2015-08-29 14:46:03',1,30005291,1,0,0,0,0,0,1,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(1751,'2015-03-10 22:38:43','2015-03-10 22:38:43',1,30002535,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(1752,'2015-03-10 22:38:43','2015-08-29 14:46:03',1,30002196,0,0,1,1,1,1,0,1,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0),(1753,'2015-03-10 22:38:43','2015-08-29 14:46:03',1,30002269,0,0,0,0,0,0,1,0,1,2,2,0,0,1,1,0,0,0,2,0,0,0,0,0),(1754,'2015-03-10 22:38:43','2015-08-29 14:46:03',1,30002536,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0),(1755,'2015-03-10 22:38:43','2015-08-29 14:46:03',1,30002094,0,0,0,0,0,0,0,0,1,0,1,3,0,1,1,0,0,0,2,2,1,0,1,0),(1756,'2015-03-10 22:38:43','2015-08-29 14:46:03',1,30002277,1,1,0,0,0,0,0,0,0,2,2,0,1,2,1,0,0,0,0,0,0,0,0,0),(1757,'2015-03-10 22:38:43','2015-08-29 14:46:03',1,30001984,1,3,9,10,13,0,4,0,8,0,1,4,2,4,1,3,7,35,6,10,0,5,2,0),(1758,'2015-03-10 22:38:43','2015-08-29 14:46:03',1,30004020,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(1759,'2015-03-10 22:38:43','2015-08-29 14:46:03',1,30003911,0,0,0,0,0,0,0,0,1,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0),(1760,'2015-03-10 22:38:43','2015-03-10 22:38:43',1,30002552,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(1761,'2015-03-10 22:38:43','2015-03-10 22:38:43',1,30004256,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(1762,'2015-03-10 22:38:43','2015-08-29 14:46:03',1,30002518,0,1,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(1763,'2015-03-10 22:38:43','2015-03-10 22:38:43',1,30000486,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(1764,'2015-03-10 22:38:43','2015-08-29 14:46:03',1,30003355,2,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(1765,'2015-03-10 22:38:43','2015-08-29 14:46:03',1,30005104,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,0,0,0,0),(1766,'2015-03-10 22:38:43','2015-08-29 14:46:03',1,30003892,0,0,0,0,0,0,1,0,1,3,1,0,0,0,0,0,0,0,0,0,0,0,0,0),(1767,'2015-03-10 22:38:43','2015-08-29 14:46:03',1,30000783,1,1,0,0,0,1,0,0,0,0,0,1,0,2,1,0,0,0,0,0,0,0,0,0),(1768,'2015-03-10 22:38:43','2015-08-29 14:46:03',1,30004297,1,0,1,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,1,2,0,0),(1769,'2015-03-10 22:38:43','2015-08-29 14:46:03',1,30002420,0,0,0,1,1,0,0,0,0,0,0,0,0,1,1,3,0,0,0,1,0,0,0,0),(1770,'2015-03-10 22:38:43','2015-03-10 22:38:43',1,30003401,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(1771,'2015-03-10 22:38:43','2015-08-29 14:46:03',1,30002693,2,1,0,2,3,1,0,1,3,1,1,4,5,1,1,0,0,3,2,1,4,1,3,0),(1772,'2015-03-10 22:38:43','2015-08-29 14:46:03',1,30003605,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0),(1773,'2015-03-10 22:38:43','2015-08-29 14:46:03',1,30002660,1,1,0,1,7,2,1,0,1,0,1,1,4,1,1,1,0,1,1,0,0,0,2,0),(1774,'2015-03-10 22:38:43','2015-08-29 14:46:03',1,30002099,0,1,0,0,0,2,1,0,2,0,1,2,19,4,6,9,4,4,9,5,0,1,2,0),(1775,'2015-03-10 22:38:43','2015-08-29 14:46:03',1,30002563,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0),(1776,'2015-03-10 22:38:43','2015-03-10 22:38:43',1,30000373,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(1777,'2015-03-10 22:38:43','2015-08-29 14:46:03',1,30005108,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(1778,'2015-03-10 22:38:43','2015-08-29 14:46:03',1,30045319,0,2,5,5,8,1,7,0,4,0,0,1,3,1,0,0,0,1,2,0,1,1,1,0),(1779,'2015-03-10 22:38:43','2015-08-29 14:46:03',1,30002997,0,0,0,0,0,0,0,0,0,0,0,0,0,3,6,3,0,0,0,0,0,0,0,0),(1780,'2015-03-10 22:38:43','2015-03-10 22:38:43',1,30004586,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(1781,'2015-03-10 22:38:43','2015-08-29 14:46:03',1,30000249,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0),(1782,'2015-03-10 22:38:43','2015-08-29 14:46:03',1,30002555,1,0,0,0,0,0,0,0,1,0,0,0,2,0,1,1,0,0,0,0,0,0,0,0),(1783,'2015-03-10 22:38:43','2015-08-29 14:46:03',1,30000577,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(1784,'2015-03-10 22:38:43','2015-03-10 22:38:43',1,30003393,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(1785,'2015-03-10 22:38:43','2015-03-10 22:38:43',1,30004946,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(1786,'2015-03-10 22:38:43','2015-08-29 14:46:03',1,30000655,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(1787,'2015-03-10 22:38:43','2015-08-29 14:46:03',1,30002740,0,0,0,0,0,0,2,0,0,1,1,0,0,0,0,0,0,0,2,0,0,0,1,0),(1788,'2015-03-10 22:38:43','2015-03-10 22:38:43',1,30001307,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(1789,'2015-03-10 22:38:43','2015-03-10 22:38:43',1,30004204,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(1790,'2015-03-10 22:38:43','2015-03-10 22:38:43',1,30000814,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(1791,'2015-03-10 22:38:43','2015-08-29 14:46:03',1,30000083,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,7,0,0),(1792,'2015-03-10 22:38:43','2015-03-10 22:38:43',1,30001313,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(1793,'2015-03-10 22:38:43','2015-08-29 14:46:03',1,30003494,0,1,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,3,1,0,0,0,0),(1794,'2015-03-10 22:38:43','2015-03-10 22:38:43',1,30000740,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(1795,'2015-03-10 22:38:43','2015-08-29 14:46:03',1,30005317,0,0,0,0,0,0,0,0,0,0,1,0,1,0,0,0,1,0,0,0,0,0,0,0),(1796,'2015-03-10 22:38:43','2015-08-29 14:46:03',1,30001378,0,0,1,1,2,1,0,0,0,0,1,0,2,0,0,1,0,1,0,0,0,1,6,0),(1797,'2015-03-10 22:38:43','2015-08-29 14:46:03',1,30001970,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0),(1798,'2015-03-10 22:38:43','2015-03-10 22:38:43',1,30001434,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(1799,'2015-03-10 22:38:43','2015-08-29 14:46:03',1,30003044,0,0,0,0,0,0,0,0,1,3,1,0,2,0,1,1,3,1,0,2,4,1,0,0),(1800,'2015-03-10 22:38:43','2015-03-10 22:38:43',1,30003462,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(1801,'2015-03-10 22:38:43','2015-08-29 14:46:03',1,30002398,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,2,0,0,0,0,0,0,0),(1802,'2015-03-10 22:38:43','2015-08-29 14:46:03',1,30005315,1,1,0,0,0,0,0,0,0,0,0,0,0,0,2,2,0,1,0,0,0,0,0,0),(1803,'2015-03-10 22:38:43','2015-08-29 14:46:03',1,30003412,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0),(1804,'2015-03-10 22:38:43','2015-08-29 14:46:03',1,30005313,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,2,0,0,0,1,0,0,0,0),(1805,'2015-03-10 22:38:43','2015-03-10 22:38:43',1,30004149,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(1806,'2015-03-10 22:38:43','2015-08-29 14:46:03',1,30001399,0,1,0,0,0,0,1,2,0,1,0,1,0,0,0,0,2,1,0,1,1,0,0,0),(1807,'2015-03-10 22:38:43','2015-08-29 14:46:03',1,30003570,0,0,0,1,0,0,0,1,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0),(1808,'2015-03-10 22:38:43','2015-08-29 14:46:03',1,30045336,1,0,1,0,1,0,0,1,0,0,0,0,0,2,1,0,0,0,0,4,0,0,1,0),(1809,'2015-03-10 22:38:43','2015-08-29 14:46:03',1,30023410,4,3,7,3,1,5,1,5,2,8,9,4,4,11,5,1,4,1,6,12,8,6,5,0),(1810,'2015-03-10 22:38:43','2015-03-10 22:38:43',1,30004880,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(1811,'2015-03-10 22:38:43','2015-08-29 14:46:03',1,30002548,0,0,0,1,1,4,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0),(1812,'2015-03-10 22:38:43','2015-08-29 14:46:03',1,30001672,0,4,2,3,0,0,1,0,0,0,0,0,0,1,1,0,1,0,0,0,2,1,0,0),(1813,'2015-03-10 22:38:43','2015-03-10 22:38:43',1,30005202,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(1814,'2015-03-10 22:38:43','2015-03-10 22:38:43',1,30003662,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(1815,'2015-03-10 22:38:43','2015-08-29 14:46:03',1,30003337,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0),(1816,'2015-03-10 22:38:43','2015-08-29 14:46:03',1,30005082,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,2,0,0,0,0,0,0,0),(1817,'2015-03-10 22:38:43','2015-08-29 14:46:03',1,30045339,0,0,0,0,0,0,0,0,0,0,6,3,9,3,3,21,1,0,0,6,2,2,6,0),(1818,'2015-03-10 22:38:43','2015-03-10 22:38:43',1,30001430,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(1819,'2015-03-10 22:38:43','2015-08-29 14:46:03',1,30003424,0,1,0,0,0,0,0,0,1,0,0,0,0,1,0,0,0,0,0,0,1,0,0,0),(1820,'2015-03-10 22:38:43','2015-08-29 14:46:03',1,30002769,0,0,0,3,2,1,0,0,0,0,1,0,3,0,0,0,1,0,1,1,1,0,1,0),(1821,'2015-03-10 22:38:43','2015-08-29 14:46:03',1,30002558,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0),(1822,'2015-03-10 22:38:43','2015-03-10 22:38:43',1,30003045,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(1823,'2015-03-10 22:38:43','2015-03-10 22:38:43',1,30003454,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(1824,'2015-03-10 22:38:43','2015-08-29 14:46:03',1,30002412,0,0,1,0,0,0,0,0,0,0,2,0,0,1,0,0,1,0,1,1,0,0,0,0),(1825,'2015-03-10 22:38:43','2015-08-29 14:46:03',1,30002475,0,0,0,0,0,0,0,0,2,1,0,0,1,1,1,0,0,0,0,0,0,0,3,0),(1826,'2015-03-10 22:38:43','2015-03-10 22:38:43',1,30000980,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(1827,'2015-03-10 22:38:43','2015-03-10 22:38:43',1,30001942,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(1828,'2015-03-10 22:38:43','2015-03-10 22:38:43',1,30003612,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(1829,'2015-03-10 22:38:43','2015-03-10 22:38:43',1,30002845,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(1830,'2015-03-10 22:38:43','2015-08-29 14:46:03',1,30004388,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0),(1831,'2015-03-10 22:38:43','2015-03-10 22:38:43',1,30004835,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(1832,'2015-03-10 22:38:43','2015-08-29 14:46:03',1,30001035,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0),(1833,'2015-03-10 22:38:43','2015-03-10 22:38:43',1,30000676,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(1834,'2015-03-10 22:38:43','2015-08-29 14:46:03',1,30003413,0,0,0,1,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,0,0,0),(1835,'2015-03-10 22:38:43','2015-08-29 14:46:03',1,30002810,0,0,0,3,3,0,0,0,1,1,2,10,4,4,1,0,3,1,2,1,2,0,3,0),(1836,'2015-03-10 22:38:43','2015-03-10 22:38:43',1,30002969,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(1837,'2015-03-10 22:38:43','2015-03-10 22:38:43',1,30033410,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(1838,'2015-03-10 22:38:43','2015-08-29 14:46:03',1,30001371,0,0,0,0,0,1,0,0,0,0,0,0,1,0,0,1,0,0,1,1,0,0,0,0),(1839,'2015-03-10 22:38:43','2015-08-29 14:46:03',1,30002742,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,0,1,0,0,0,0),(1840,'2015-03-10 22:38:43','2015-08-29 14:46:03',1,30003472,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,1,0,0,0,0),(1841,'2015-03-10 22:38:43','2015-03-10 22:38:43',1,30003078,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(1842,'2015-03-10 22:38:43','2015-08-29 14:46:03',1,30003463,0,0,2,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,1,0,0,0,0),(1843,'2015-03-10 22:38:43','2015-08-29 14:46:03',1,30002640,0,0,0,0,0,1,0,0,0,2,0,0,2,1,0,0,1,0,0,0,2,0,0,0),(1844,'2015-03-10 22:38:43','2015-08-29 14:46:03',1,30003425,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0),(1845,'2015-03-10 22:38:43','2015-08-29 14:46:03',1,30003419,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0),(1846,'2015-03-10 22:38:43','2015-03-10 22:38:43',1,30004259,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(1847,'2015-03-10 22:38:43','2015-08-29 14:46:03',1,30000203,0,0,0,0,0,0,1,0,0,0,0,0,1,1,1,0,0,0,0,0,0,0,0,0),(1848,'2015-03-10 22:38:43','2015-03-10 22:38:43',1,30003867,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(1849,'2015-03-10 22:38:43','2015-08-29 14:46:03',1,30001233,2,6,0,0,0,1,0,0,1,3,1,0,0,1,1,0,0,0,0,0,1,0,0,0),(1850,'2015-03-10 22:38:43','2015-08-29 14:46:03',1,30003537,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0),(1851,'2015-03-10 22:38:43','2015-03-10 22:38:43',1,30004033,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(1852,'2015-03-10 22:38:43','2015-08-29 14:46:03',1,30001029,0,0,0,0,0,0,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(1853,'2015-03-10 22:38:43','2015-08-29 14:46:03',1,30001736,0,0,0,0,0,0,0,0,0,1,0,1,0,0,0,0,0,0,0,0,0,0,0,0),(1854,'2015-03-10 22:38:43','2015-08-29 14:46:03',1,30004305,0,0,0,0,0,0,0,0,1,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0),(1855,'2015-03-10 22:38:43','2015-08-29 14:46:03',1,30004603,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,1,0,0,0,0,0,0),(1856,'2015-03-10 22:38:43','2015-08-29 14:46:03',1,30002964,0,2,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0),(1857,'2015-03-10 22:38:43','2015-08-29 14:46:03',1,30003842,1,9,0,0,0,0,0,0,2,2,2,0,0,0,0,0,1,2,0,2,0,0,4,0),(1858,'2015-03-10 22:38:43','2015-03-10 22:38:43',1,30000028,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(1859,'2015-03-10 22:38:43','2015-08-29 14:46:03',1,30000091,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(1860,'2015-03-10 22:38:43','2015-08-29 14:46:03',1,30000137,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,0,0,0),(1861,'2015-03-10 22:38:43','2015-08-29 14:46:03',1,30002730,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,1,0,0,0),(1862,'2015-03-10 22:38:43','2015-08-29 14:46:03',1,30003822,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(1863,'2015-03-10 22:38:43','2015-08-29 14:46:03',1,30004986,0,1,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0),(1864,'2015-03-10 22:38:43','2015-03-10 22:38:43',1,30002260,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(1865,'2015-03-10 22:38:43','2015-03-10 22:38:43',1,30002673,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(1866,'2015-03-10 22:38:43','2015-08-29 14:46:03',1,30004287,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,0,1,0,0,0,0,0,0),(1867,'2015-03-10 22:38:43','2015-08-29 14:46:03',1,30002095,0,0,0,0,0,0,0,1,2,3,4,3,2,9,6,1,1,6,1,3,2,1,10,0),(1868,'2015-03-10 22:38:43','2015-08-29 14:46:03',1,30003517,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,2,0,0,0),(1869,'2015-03-10 22:38:43','2015-08-29 14:46:03',1,30003033,0,0,0,0,0,1,0,0,0,0,0,0,1,0,0,1,0,0,0,0,0,0,0,0),(1870,'2015-03-10 22:38:43','2015-08-29 14:46:03',1,30001535,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,2,0,0),(1871,'2015-03-10 22:38:43','2015-03-10 22:38:43',1,30004182,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(1872,'2015-03-10 22:38:43','2015-03-10 22:38:43',1,30001571,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(1873,'2015-03-10 22:38:43','2015-03-10 22:38:43',1,30003365,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(1874,'2015-03-10 22:38:43','2015-03-10 22:38:43',1,30000437,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(1875,'2015-03-10 22:38:43','2015-08-29 14:46:03',1,30003825,1,1,5,2,7,2,0,0,0,0,0,0,3,1,1,1,0,0,1,0,6,10,2,0),(1876,'2015-03-10 22:38:43','2015-08-29 14:46:03',1,30003466,0,0,0,0,0,0,0,1,0,0,0,0,0,0,1,1,0,0,1,1,0,0,0,0),(1877,'2015-03-10 22:38:43','2015-08-29 14:46:03',1,30003381,0,3,3,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(1878,'2015-03-10 22:38:43','2015-03-10 22:38:43',1,30000796,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(1879,'2015-03-10 22:38:43','2015-08-29 14:46:03',1,30002060,7,6,5,1,2,0,1,1,3,6,4,2,0,6,1,1,3,4,4,1,1,6,1,0),(1880,'2015-03-10 22:38:43','2015-08-29 14:46:03',1,30003839,2,2,3,3,1,2,0,1,0,0,0,0,1,0,1,2,1,0,0,0,0,0,1,0),(1881,'2015-03-10 22:38:43','2015-08-29 14:46:03',1,30003408,2,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,1,1,0,0,0,0),(1882,'2015-03-10 22:38:43','2015-08-29 14:46:03',1,30003385,0,0,0,1,1,0,0,0,0,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0),(1883,'2015-03-10 22:38:43','2015-03-10 22:38:43',1,30001023,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(1884,'2015-03-10 22:38:43','2015-03-10 22:38:43',1,30004314,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(1885,'2015-03-10 22:38:43','2015-08-29 14:46:03',1,30001985,2,0,3,2,2,0,0,3,0,0,0,0,2,0,0,0,0,24,0,0,0,2,2,0),(1886,'2015-03-10 22:38:43','2015-08-29 14:46:03',1,30001181,0,0,1,0,0,0,0,0,1,1,0,0,1,1,0,0,0,0,0,0,1,1,0,0),(1887,'2015-03-10 22:38:43','2015-08-29 14:46:03',1,30002369,0,0,0,0,0,0,0,1,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0),(1888,'2015-03-10 22:38:43','2015-08-29 14:46:03',1,30001252,0,0,1,0,0,0,0,0,0,2,2,0,1,0,0,0,0,0,1,0,1,0,1,0),(1889,'2015-03-10 22:38:43','2015-03-10 22:38:43',1,30005281,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(1890,'2015-03-10 22:38:43','2015-08-29 14:46:03',1,30003392,0,0,0,0,0,0,0,5,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(1891,'2015-03-10 22:38:43','2015-08-29 14:46:03',1,30002543,1,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,50,44,2,0,0,0,0),(1892,'2015-03-10 22:38:43','2015-08-29 14:46:03',1,30002085,0,0,0,0,0,0,0,0,2,2,1,0,1,2,2,3,1,0,0,1,1,0,2,0),(1893,'2015-03-10 22:38:43','2015-08-29 14:46:03',1,30003281,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,0,0),(1894,'2015-03-10 22:38:43','2015-08-29 14:46:03',1,30001769,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0),(1895,'2015-03-10 22:38:43','2015-08-29 14:46:03',1,30002962,4,18,4,14,1,4,0,0,1,0,0,2,0,0,4,5,0,2,1,0,0,0,0,0),(1896,'2015-03-10 22:38:43','2015-08-29 14:46:03',1,30000559,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(1897,'2015-03-10 22:38:43','2015-03-10 22:38:43',1,30002598,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(1898,'2015-03-10 22:38:43','2015-08-29 14:46:03',1,30000666,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(1899,'2015-03-10 22:38:43','2015-03-10 22:38:43',1,30005103,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(1900,'2015-03-10 22:38:43','2015-03-10 22:38:43',1,30000856,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(1901,'2015-03-10 22:38:43','2015-08-29 14:46:03',1,30003192,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(1902,'2015-03-10 22:38:43','2015-08-29 14:46:03',1,30004653,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0),(1903,'2015-03-10 22:38:43','2015-08-29 14:46:03',1,30004414,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0),(1904,'2015-03-10 22:38:43','2015-08-29 14:46:03',1,30004327,0,0,0,1,1,0,0,0,0,0,0,0,0,2,0,0,0,0,0,0,0,0,0,0),(1905,'2015-03-10 22:38:43','2015-08-29 14:46:03',1,30004784,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,0,0,0,0),(1906,'2015-03-10 22:38:43','2015-08-29 14:46:03',1,30005184,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0),(1907,'2015-03-10 22:38:43','2015-08-29 14:46:03',1,30000279,0,0,0,0,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(1908,'2015-03-10 22:38:43','2015-08-29 14:46:03',1,30003737,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0),(1909,'2015-03-10 22:38:43','2015-08-29 14:46:03',1,30000578,3,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0),(1910,'2015-03-10 22:38:43','2015-03-10 22:38:43',1,30000897,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(1911,'2015-03-10 22:38:43','2015-03-10 22:38:43',1,30005183,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(1912,'2015-03-10 22:38:43','2015-03-10 22:38:43',1,30000416,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(1913,'2015-03-10 22:38:43','2015-03-10 22:38:43',1,30001635,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(1914,'2015-03-10 22:38:43','2015-03-10 22:38:43',1,30004929,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(1915,'2015-03-10 22:38:43','2015-03-10 22:38:43',1,30000934,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(1916,'2015-03-10 22:38:43','2015-08-29 14:46:03',1,30002019,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(1917,'2015-03-10 22:38:43','2015-08-29 14:46:03',1,30004032,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,0,2,0,0),(1918,'2015-03-10 22:38:43','2015-08-29 14:46:03',1,30000572,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(1919,'2015-03-10 22:38:43','2015-03-10 22:38:43',1,30000853,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(1920,'2015-03-10 22:38:43','2015-08-29 14:46:03',1,30004757,0,0,1,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0),(1921,'2015-03-10 22:38:43','2015-03-10 22:38:43',1,30001064,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(1922,'2015-03-10 22:38:43','2015-03-10 22:38:43',1,30001906,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(1923,'2015-03-10 22:38:43','2015-08-29 14:46:03',1,30003126,0,0,1,1,1,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0),(1924,'2015-03-10 22:38:43','2015-03-10 22:38:43',1,30001801,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(1925,'2015-03-10 22:38:43','2015-03-10 22:38:43',1,30001087,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(1926,'2015-03-10 22:38:43','2015-08-29 14:46:03',1,30004503,0,0,0,0,0,1,0,0,0,2,2,0,1,0,0,0,0,0,0,0,0,0,0,0),(1927,'2015-03-10 22:38:43','2015-08-29 14:46:03',1,30003751,0,0,1,0,1,2,0,0,0,0,0,0,2,5,2,31,0,13,0,100,1,37,1,0),(1928,'2015-03-10 22:38:43','2015-03-10 22:38:43',1,30004867,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(1929,'2015-03-10 22:38:43','2015-08-29 14:46:03',1,30005187,0,0,0,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(1930,'2015-03-10 22:38:43','2015-03-10 22:38:43',1,30004652,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(1931,'2015-03-10 22:38:43','2015-08-29 14:46:03',1,30000695,0,2,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(1932,'2015-03-10 22:38:43','2015-03-10 22:38:43',1,30000804,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(1933,'2015-03-10 22:38:43','2015-08-29 14:46:03',1,30004013,0,0,0,0,0,0,0,0,0,1,1,1,0,0,0,0,1,0,0,0,0,0,0,0),(1934,'2015-03-10 22:38:43','2015-03-10 22:38:43',1,30000497,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(1935,'2015-03-10 22:38:43','2015-08-29 14:46:03',1,30000810,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0),(1936,'2015-03-10 22:38:43','2015-03-10 22:38:43',1,30000754,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(1937,'2015-03-10 22:38:43','2015-03-10 22:38:43',1,30000332,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(1938,'2015-03-10 22:38:43','2015-03-10 22:38:43',1,30002826,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(1939,'2015-03-10 22:38:43','2015-08-29 14:46:03',1,30001171,0,1,0,0,0,2,0,0,0,2,3,0,0,0,0,0,0,0,2,4,0,0,1,0),(1940,'2015-03-10 22:38:43','2015-08-29 14:46:03',1,30000959,0,0,0,0,0,0,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(1941,'2015-03-10 22:38:43','2015-03-10 22:38:43',1,30004507,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(1942,'2015-03-10 22:38:43','2015-08-29 14:46:03',1,30000600,0,0,0,0,0,0,0,0,0,0,0,0,0,2,2,0,0,0,0,0,0,0,0,0),(1943,'2015-03-10 22:38:43','2015-08-29 14:46:03',1,30003269,0,0,1,0,0,1,0,0,0,0,0,0,2,0,0,0,0,0,0,0,0,0,0,0),(1944,'2015-03-10 22:38:43','2015-03-10 22:38:43',1,30002381,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(1945,'2015-03-10 22:38:43','2015-03-10 22:38:43',1,30001957,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(1946,'2015-03-10 22:38:43','2015-03-10 22:38:43',1,30002152,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(1947,'2015-03-10 22:38:43','2015-08-29 14:46:03',1,30000981,0,1,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0),(1948,'2015-03-10 22:38:43','2015-08-29 14:46:03',1,30004046,0,1,1,0,1,4,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0),(1949,'2015-03-10 22:38:43','2015-03-10 22:38:43',1,30000913,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(1950,'2015-03-10 22:38:43','2015-03-10 22:38:43',1,30002320,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(1951,'2015-03-10 22:38:43','2015-08-29 14:46:03',1,30001153,0,0,1,0,0,0,0,0,0,2,2,1,0,0,0,0,0,1,6,0,0,1,1,0),(1952,'2015-03-10 22:38:43','2015-03-10 22:38:43',1,30000500,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(1953,'2015-03-10 22:38:43','2015-08-29 14:46:03',1,30001888,0,0,0,0,0,0,0,0,2,0,1,0,0,0,0,0,0,0,0,0,0,0,1,0),(1954,'2015-03-10 22:38:43','2015-08-29 14:46:03',1,30000233,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0),(1955,'2015-03-10 22:38:43','2015-08-29 14:46:03',1,30002221,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(1956,'2015-03-10 22:38:43','2015-03-10 22:38:43',1,30003505,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(1957,'2015-03-10 22:38:43','2015-08-29 14:46:03',1,30004276,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0),(1958,'2015-03-10 22:38:43','2015-08-29 14:46:03',1,30003473,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0),(1959,'2015-03-10 22:38:43','2015-03-10 22:38:43',1,30003002,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(1960,'2015-03-10 22:38:43','2015-03-10 22:38:43',1,30003938,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(1961,'2015-03-10 22:38:43','2015-03-10 22:38:43',1,30001049,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(1962,'2015-03-10 22:38:43','2015-08-29 14:46:03',1,30000044,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(1963,'2015-03-10 22:38:43','2015-08-29 14:46:03',1,30002651,0,0,0,0,0,0,0,1,0,1,0,0,0,0,0,0,0,0,0,0,0,1,0,0),(1964,'2015-03-10 22:38:43','2015-08-29 14:46:03',1,30003541,1,0,1,0,0,0,0,0,0,0,2,1,0,0,1,2,0,0,0,1,0,0,1,0),(1965,'2015-03-10 22:38:43','2015-08-29 14:46:03',1,30001256,0,1,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0),(1966,'2015-03-10 22:38:43','2015-08-29 14:46:03',1,30002643,0,0,0,0,0,0,0,0,0,0,0,1,2,0,0,0,0,1,1,1,0,0,0,0),(1967,'2015-03-10 22:38:43','2015-03-10 22:38:43',1,30003599,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(1968,'2015-03-10 22:38:43','2015-03-10 22:38:43',1,30002321,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(1969,'2015-03-10 22:38:43','2015-08-29 14:46:03',1,30002881,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0),(1970,'2015-03-10 22:38:43','2015-03-10 22:38:43',1,30002827,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(1971,'2015-03-10 22:38:43','2015-08-29 14:46:03',1,30003718,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(1972,'2015-03-10 22:38:43','2015-08-29 14:46:03',1,30003276,1,7,5,4,6,2,2,1,21,3,2,1,1,0,0,1,0,0,15,0,0,0,3,0),(1973,'2015-03-10 22:38:43','2015-08-29 14:46:03',1,30004043,0,0,0,0,0,0,0,0,0,1,0,2,0,0,0,0,0,0,0,0,0,0,0,0),(1974,'2015-03-10 22:38:43','2015-08-29 14:46:03',1,30002423,0,0,0,0,0,1,1,0,0,0,1,0,0,1,1,0,1,2,0,1,0,0,0,0),(1975,'2015-03-10 22:38:43','2015-03-10 22:38:43',1,30004821,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(1976,'2015-03-10 22:38:43','2015-08-29 14:46:03',1,30002408,0,0,1,0,0,0,0,0,0,0,0,0,2,0,0,0,0,0,0,0,0,0,0,0),(1977,'2015-03-10 22:38:43','2015-08-29 14:46:03',1,30005030,1,0,0,0,0,0,0,1,1,0,1,0,0,1,1,0,0,2,0,0,0,1,0,0),(1978,'2015-03-10 22:38:43','2015-03-10 22:38:43',1,30000050,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(1979,'2015-03-10 22:38:43','2015-08-29 14:46:03',1,30001709,0,0,1,0,0,5,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(1980,'2015-03-10 22:38:43','2015-03-10 22:38:43',1,30004263,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(1981,'2015-03-10 22:38:43','2015-08-29 14:46:03',1,30002628,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(1982,'2015-03-10 22:38:43','2015-08-29 14:46:03',1,30002345,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(1983,'2015-03-10 22:38:43','2015-08-29 14:46:03',1,30000226,0,0,0,0,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(1984,'2015-03-10 22:38:43','2015-03-10 22:38:43',1,30001344,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(1985,'2015-03-10 22:38:43','2015-03-10 22:38:43',1,30000418,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(1986,'2015-03-10 22:38:43','2015-03-10 22:38:43',1,30000495,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(1987,'2015-03-10 22:38:43','2015-08-29 14:46:03',1,30004254,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0),(1988,'2015-03-10 22:38:43','2015-08-29 14:46:03',1,30043410,0,0,0,0,0,0,0,0,0,0,0,0,0,2,3,1,0,0,1,0,0,0,0,0),(1989,'2015-03-10 22:38:43','2015-03-10 22:38:43',1,30003442,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(1990,'2015-03-10 22:38:43','2015-08-29 14:46:03',1,30004110,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,4,0,0,1,0),(1991,'2015-03-10 22:38:43','2015-08-29 14:46:03',1,30003691,0,1,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,1,0,0,0,0,0),(1992,'2015-03-10 22:38:43','2015-03-10 22:38:43',1,30003906,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(1993,'2015-03-10 22:38:43','2015-03-10 22:38:43',1,30002335,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(1994,'2015-03-10 22:38:43','2015-08-29 14:46:03',1,30003234,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(1995,'2015-03-10 22:38:43','2015-03-10 22:38:43',1,30002316,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(1996,'2015-03-10 22:38:43','2015-08-29 14:46:03',1,30004980,1,2,5,3,4,1,0,0,2,3,1,0,1,5,3,2,0,15,1,3,11,3,0,0),(1997,'2015-03-10 22:38:43','2015-03-10 22:38:43',1,30005101,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(1998,'2015-03-10 22:38:43','2015-08-29 14:46:03',1,30002082,1,0,1,0,0,0,0,0,11,1,0,0,4,2,2,0,6,0,1,2,0,1,3,0),(1999,'2015-03-10 22:38:43','2015-08-29 14:46:03',1,30003382,5,0,1,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,0,0,0),(2000,'2015-03-10 22:38:43','2015-08-29 14:46:03',1,30002677,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0),(2001,'2015-03-10 22:38:43','2015-03-10 22:38:43',1,30004732,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(2002,'2015-03-10 22:38:43','2015-08-29 14:46:03',1,30002898,0,0,0,0,1,22,0,0,0,0,1,0,0,0,1,1,0,0,0,0,0,0,1,0),(2003,'2015-03-10 22:38:43','2015-08-29 14:46:03',1,30000227,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(2004,'2015-03-10 22:38:43','2015-08-29 14:46:03',1,30000484,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0),(2005,'2015-03-10 22:38:43','2015-03-10 22:38:43',1,30002156,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(2006,'2015-03-10 22:38:43','2015-03-10 22:38:43',1,30003118,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(2007,'2015-03-10 22:38:43','2015-03-10 22:38:43',1,30000809,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(2008,'2015-03-10 22:38:43','2015-03-10 22:38:43',1,30001638,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(2009,'2015-03-10 22:38:43','2015-03-10 22:38:43',1,30001487,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(2010,'2015-03-10 22:38:43','2015-08-29 14:46:03',1,30001544,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(2011,'2015-03-10 22:38:43','2015-08-29 14:46:03',1,30002891,0,0,0,0,0,0,0,0,0,0,0,0,0,4,1,0,0,0,0,0,0,1,0,0),(2012,'2015-03-10 22:38:43','2015-08-29 14:46:03',1,30001148,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0),(2013,'2015-03-10 22:38:43','2015-08-29 14:46:03',1,30004303,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0),(2014,'2015-03-10 22:38:43','2015-08-29 14:46:03',1,30023489,0,0,1,0,0,0,0,0,1,1,0,0,0,0,1,1,0,0,0,0,0,0,0,0),(2015,'2015-03-10 22:38:43','2015-08-29 14:46:03',1,30002663,0,1,0,0,0,0,0,0,0,1,1,0,0,0,0,0,0,0,3,2,0,0,0,0),(2016,'2015-03-10 22:38:43','2015-08-29 14:46:03',1,30000023,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,3,0,0,0,0),(2017,'2015-03-10 22:38:43','2015-03-10 22:38:43',1,30004058,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(2018,'2015-03-10 22:38:43','2015-08-29 14:46:03',1,30002630,0,3,0,2,3,0,0,0,13,7,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(2019,'2015-03-10 22:38:43','2015-03-10 22:38:43',1,30001637,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(2020,'2015-03-10 22:38:43','2015-03-10 22:38:43',1,30000478,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(2021,'2015-03-10 22:38:43','2015-08-29 14:46:03',1,30003826,1,3,0,1,2,0,0,2,0,1,0,0,2,3,2,0,3,1,0,5,37,1,2,0),(2022,'2015-03-10 22:38:43','2015-08-29 14:46:03',1,30002526,0,0,0,0,0,0,0,0,0,0,0,2,0,0,0,0,0,1,0,0,1,0,2,0),(2023,'2015-03-10 22:38:43','2015-08-29 14:46:03',1,30003036,1,0,0,0,0,0,0,4,1,0,0,1,0,1,1,0,0,1,1,0,1,1,0,0),(2024,'2015-03-10 22:38:43','2015-08-29 14:46:03',1,30003394,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0),(2025,'2015-03-10 22:38:43','2015-08-29 14:46:03',1,30003420,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(2026,'2015-03-10 22:38:43','2015-08-29 14:46:03',1,30002090,0,0,0,1,1,0,0,0,4,15,9,19,1,14,7,9,6,4,7,5,6,5,9,0),(2027,'2015-03-10 22:38:43','2015-08-29 14:46:03',1,30002734,0,0,1,0,0,0,0,0,0,0,0,1,0,1,1,1,0,0,0,0,0,0,0,0),(2028,'2015-03-10 22:38:43','2015-08-29 14:46:03',1,30000168,0,0,0,0,0,4,0,0,0,0,0,1,0,0,0,0,0,0,1,1,0,0,0,0),(2029,'2015-03-10 22:38:43','2015-08-29 14:46:03',1,30002180,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(2030,'2015-03-10 22:38:43','2015-08-29 14:46:03',1,30003467,2,0,0,0,0,2,3,1,1,7,7,3,0,0,1,3,5,2,0,0,4,6,2,0),(2031,'2015-03-10 22:38:43','2015-03-10 22:38:43',1,30000398,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(2032,'2015-03-10 22:38:43','2015-03-10 22:38:43',1,30000219,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(2033,'2015-03-10 22:38:43','2015-08-29 14:46:03',1,30003710,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,3,0),(2034,'2015-03-10 22:38:43','2015-08-29 14:46:03',1,30001364,0,0,1,2,2,0,0,1,2,1,0,0,3,0,0,0,1,0,0,0,1,0,0,0),(2035,'2015-03-10 22:38:43','2015-08-29 14:46:03',1,30003095,0,0,0,0,0,0,0,0,0,0,0,0,0,6,0,0,0,0,0,0,0,0,0,0),(2036,'2015-03-10 22:38:43','2015-08-29 14:46:03',1,30000199,0,0,1,1,1,0,0,0,1,0,1,0,0,1,0,0,0,0,1,0,1,1,0,0),(2037,'2015-03-10 22:38:43','2015-08-29 14:46:03',1,30000017,0,1,0,0,0,0,1,0,0,0,0,0,2,1,0,0,0,0,0,0,2,0,0,0),(2038,'2015-03-10 22:38:43','2015-08-29 14:46:03',1,30001852,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,1,0,0,3,4,1,0,0),(2039,'2015-03-10 22:38:43','2015-03-10 22:38:43',1,30004161,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(2040,'2015-03-10 22:38:43','2015-03-10 22:38:43',1,30004197,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(2041,'2015-03-10 22:38:43','2015-03-10 22:38:43',1,30001775,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(2042,'2015-03-10 22:38:43','2015-03-10 22:38:43',1,30000906,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(2043,'2015-03-10 22:38:43','2015-08-29 14:46:03',1,30002021,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(2044,'2015-03-10 22:38:43','2015-08-29 14:46:03',1,30004718,2,0,0,0,0,1,5,1,0,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0),(2045,'2015-03-10 22:38:43','2015-08-29 14:46:03',1,30003711,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,1,0),(2046,'2015-03-10 22:38:43','2015-03-10 22:38:43',1,30001606,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(2047,'2015-03-10 22:38:43','2015-03-10 22:38:43',1,30000835,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(2048,'2015-03-10 22:38:43','2015-08-29 14:46:03',1,30000850,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(2049,'2015-03-10 22:38:43','2015-03-10 22:38:43',1,30000675,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(2050,'2015-03-10 22:38:43','2015-03-10 22:38:43',1,30002128,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(2051,'2015-03-10 22:38:43','2015-08-29 14:46:03',1,30001186,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0),(2052,'2015-03-10 22:38:43','2015-03-10 22:38:43',1,30003213,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(2053,'2015-03-10 22:38:43','2015-08-29 14:46:03',1,30001853,0,0,0,0,0,0,0,1,0,2,0,0,0,0,0,0,0,0,1,0,0,0,1,0),(2054,'2015-03-10 22:38:43','2015-03-10 22:38:43',1,30002878,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(2055,'2015-03-10 22:38:43','2015-08-29 14:46:03',1,30001041,1,1,1,0,0,1,1,1,1,1,1,1,7,1,1,3,2,0,4,4,0,1,1,0),(2056,'2015-03-10 22:38:43','2015-08-29 14:46:03',1,30003949,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(2057,'2015-03-10 22:38:43','2015-03-10 22:38:43',1,30003161,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(2058,'2015-03-10 22:38:43','2015-08-29 14:46:03',1,30003703,0,0,0,0,0,0,0,0,2,3,1,1,2,4,2,0,0,1,0,0,2,0,9,0),(2059,'2015-03-10 22:38:43','2015-03-10 22:38:43',1,30003367,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(2060,'2015-03-10 22:38:43','2015-03-10 22:38:43',1,30002476,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(2061,'2015-03-10 22:38:43','2015-08-29 14:46:03',1,30001183,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,1,0,0,0,0,0,0,1,0),(2062,'2015-03-10 22:38:43','2015-08-29 14:46:03',1,30001227,0,0,0,0,0,0,0,1,1,0,1,2,0,9,7,2,3,0,1,0,4,1,0,0),(2063,'2015-03-10 22:38:43','2015-08-29 14:46:03',1,30003772,0,0,0,0,0,0,0,0,0,2,0,0,0,1,1,0,0,0,0,0,0,0,0,0),(2064,'2015-03-10 22:38:43','2015-08-29 14:46:03',1,30004892,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,1,0,5,0,1,0,0,0,0),(2065,'2015-03-10 22:38:43','2015-03-10 22:38:43',1,30004945,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(2066,'2015-03-10 22:38:43','2015-03-10 22:38:43',1,30004876,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(2067,'2015-03-10 22:38:43','2015-03-10 22:38:43',1,30000338,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(2068,'2015-03-10 22:38:43','2015-03-10 22:38:43',1,30000778,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(2069,'2015-03-10 22:38:43','2015-08-29 14:46:03',1,30001002,0,0,0,0,0,0,0,0,0,1,3,0,0,6,1,1,3,1,2,3,1,1,3,0),(2070,'2015-03-10 22:38:43','2015-03-10 22:38:43',1,30005113,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(2071,'2015-03-10 22:38:43','2015-03-10 22:38:43',1,30001802,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(2072,'2015-03-10 22:38:43','2015-03-10 22:38:43',1,30003155,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(2073,'2015-03-10 22:38:43','2015-08-29 14:46:03',1,30002853,0,0,0,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(2074,'2015-03-10 22:38:43','2015-08-29 14:46:03',1,30000213,0,0,1,0,0,2,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(2075,'2015-03-10 22:38:43','2015-08-29 14:46:03',1,30004696,0,0,0,0,0,0,0,0,0,0,0,0,0,4,0,0,0,0,0,1,0,0,1,0),(2076,'2015-03-10 22:38:43','2015-08-29 14:46:03',1,30001987,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0),(2077,'2015-03-10 22:38:43','2015-08-29 14:46:03',1,30004793,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,4,5,0,0),(2078,'2015-03-10 22:38:43','2015-08-29 14:46:03',1,30001848,0,0,3,0,0,0,0,0,2,1,0,0,0,0,0,0,1,0,0,7,0,5,0,0),(2079,'2015-03-10 22:38:43','2015-03-10 22:38:43',1,30001607,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(2080,'2015-03-10 22:38:43','2015-08-29 14:46:03',1,30004962,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,1,1,0,0,0,0),(2081,'2015-03-10 22:38:43','2015-08-29 14:46:03',1,30002301,0,0,0,0,0,0,0,2,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0),(2082,'2015-03-10 22:38:43','2015-08-29 14:46:03',1,30001036,0,0,0,0,0,1,0,0,1,0,0,0,0,0,1,1,0,0,0,0,0,0,0,0),(2083,'2015-03-10 22:38:43','2015-08-29 14:46:03',1,30004721,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(2084,'2015-03-10 22:38:43','2015-08-29 14:46:03',1,30004631,0,1,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0),(2085,'2015-03-10 22:38:43','2015-08-29 14:46:03',1,30001569,0,0,0,0,0,0,0,0,0,0,0,0,5,1,0,0,0,0,0,0,0,0,0,0),(2086,'2015-03-10 22:38:43','2015-08-29 14:46:03',1,30003184,0,0,0,0,0,0,0,0,0,0,0,0,4,1,0,0,0,0,0,0,0,0,0,0),(2087,'2015-03-10 22:38:43','2015-03-10 22:38:43',1,30004534,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(2088,'2015-03-10 22:38:43','2015-08-29 14:46:03',1,30003133,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(2089,'2015-03-10 22:38:43','2015-03-10 22:38:43',1,30003636,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(2090,'2015-03-10 22:38:43','2015-03-10 22:38:43',1,30000537,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(2091,'2015-03-10 22:38:43','2015-08-29 14:46:03',1,30004854,0,0,0,0,0,0,1,0,0,0,0,0,0,2,0,0,0,0,0,0,0,0,0,0),(2092,'2015-03-10 22:38:43','2015-03-10 22:38:43',1,30000690,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(2093,'2015-03-10 22:38:43','2015-03-10 22:38:43',1,30004664,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(2094,'2015-03-10 22:38:43','2015-03-10 22:38:43',1,30004697,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(2095,'2015-03-10 22:38:43','2015-03-10 22:38:43',1,30001501,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(2096,'2015-03-10 22:38:43','2015-03-10 22:38:43',1,30003101,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(2097,'2015-03-10 22:38:43','2015-08-29 14:46:03',1,30000460,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0),(2098,'2015-03-10 22:38:43','2015-03-10 22:38:43',1,30002861,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(2099,'2015-03-10 22:38:43','2015-03-10 22:38:43',1,30004536,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(2100,'2015-03-10 22:38:43','2015-08-29 14:46:03',1,30000310,0,0,0,0,0,0,0,0,1,1,1,2,0,0,0,0,0,0,0,0,0,0,0,0),(2101,'2015-03-10 22:38:43','2015-03-10 22:38:43',1,30001517,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(2102,'2015-03-10 22:38:43','2015-08-29 14:46:03',1,30003713,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,1,0,0,0,0),(2103,'2015-03-10 22:38:43','2015-03-10 22:38:43',1,30004061,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(2104,'2015-03-10 22:38:43','2015-08-29 14:46:03',1,30001982,0,0,0,3,0,0,0,0,0,1,1,0,1,1,0,0,0,0,1,1,0,0,0,0),(2105,'2015-03-10 22:38:43','2015-03-10 22:38:43',1,30004598,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(2106,'2015-03-10 22:38:43','2015-08-29 14:46:03',1,30000305,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,1,0),(2107,'2015-03-10 22:38:43','2015-08-29 14:46:03',1,30001348,0,0,0,0,0,0,2,4,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(2108,'2015-03-10 22:38:43','2015-08-29 14:46:03',1,30000545,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,0,0,0,0,0,1,0,0),(2109,'2015-03-10 22:38:43','2015-03-10 22:38:43',1,30000570,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(2110,'2015-03-10 22:38:43','2015-03-10 22:38:43',1,30004523,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(2111,'2015-03-10 22:38:43','2015-08-29 14:46:03',1,30002020,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(2112,'2015-03-10 22:38:43','2015-08-29 14:46:03',1,30001811,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(2113,'2015-03-10 22:38:43','2015-08-29 14:46:03',1,30003777,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,0),(2114,'2015-03-10 22:38:43','2015-08-29 14:46:03',1,30005072,0,0,1,0,0,0,0,0,0,1,1,0,1,0,0,0,0,0,0,0,0,0,0,0),(2115,'2015-03-10 22:38:43','2015-08-29 14:46:03',1,30002204,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0),(2116,'2015-03-10 22:38:43','2015-08-29 14:46:03',1,30001698,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0),(2117,'2015-03-10 22:38:43','2015-08-29 14:46:03',1,30003544,0,0,0,0,0,0,0,3,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0),(2118,'2015-03-10 22:38:43','2015-08-29 14:46:03',1,30002674,0,0,0,0,0,0,0,1,0,1,0,1,0,1,0,0,0,0,0,0,0,0,1,0),(2119,'2015-03-10 22:38:43','2015-08-29 14:46:03',1,30003844,0,2,1,2,2,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,6,0),(2120,'2015-03-10 22:38:43','2015-08-29 14:46:03',1,30005273,0,0,0,1,1,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,2,0),(2121,'2015-03-10 22:38:43','2015-08-29 14:46:03',1,30004085,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,0,0,0,2,0,0),(2122,'2015-03-10 22:38:43','2015-08-29 14:46:03',1,30000107,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,5,0,2,0,0),(2123,'2015-03-10 22:38:43','2015-03-10 22:38:43',1,30003076,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(2124,'2015-03-10 22:38:43','2015-08-29 14:46:03',1,30003805,4,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0),(2125,'2015-03-10 22:38:43','2015-08-29 14:46:03',1,30004123,0,0,0,0,0,0,0,2,0,0,0,0,0,0,0,0,0,0,1,0,0,6,0,0),(2126,'2015-03-10 22:38:43','2015-03-10 22:38:43',1,30004119,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(2127,'2015-03-10 22:38:43','2015-03-10 22:38:43',1,30005282,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(2128,'2015-03-10 22:38:43','2015-03-10 22:38:43',1,30005240,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(2129,'2015-03-10 22:38:43','2015-08-29 14:46:03',1,30000839,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,8,5,2,1,0,0),(2130,'2015-03-10 22:38:43','2015-08-29 14:46:03',1,30002620,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0),(2131,'2015-03-10 22:38:43','2015-03-10 22:38:43',1,30000464,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(2132,'2015-03-10 22:38:43','2015-03-10 22:38:43',1,30001862,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(2133,'2015-03-10 22:38:43','2015-03-10 22:38:43',1,30000792,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(2134,'2015-03-10 22:38:43','2015-08-29 14:46:03',1,30001873,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,0),(2135,'2015-03-10 22:38:43','2015-08-29 14:46:03',1,30001198,0,0,0,0,0,0,0,0,17,106,11,15,18,39,37,24,40,6,13,153,111,24,38,0),(2136,'2015-03-10 22:38:43','2015-08-29 14:46:03',1,30001177,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0),(2137,'2015-03-10 22:38:43','2015-08-29 14:46:03',1,30002093,0,1,0,0,0,0,0,0,1,1,0,0,5,0,1,2,0,0,0,0,1,1,0,0),(2138,'2015-03-10 22:38:43','2015-03-10 22:38:43',1,30003433,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(2139,'2015-03-10 22:38:43','2015-08-29 14:46:03',1,30003429,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,0,0,0),(2140,'2015-03-10 22:38:43','2015-08-29 14:46:03',1,30003897,0,1,0,0,0,2,0,0,0,0,0,0,1,1,1,0,0,0,0,0,2,1,0,0),(2141,'2015-03-10 22:38:43','2015-08-29 14:46:03',1,30000234,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0),(2142,'2015-03-10 22:38:43','2015-08-29 14:46:03',1,30000149,0,0,0,0,0,0,0,0,1,0,0,0,0,2,1,0,0,0,0,0,0,0,1,0),(2143,'2015-03-10 22:38:43','2015-08-29 14:46:03',1,30002386,0,1,0,0,0,0,0,2,0,0,0,0,1,1,1,0,0,0,0,0,0,0,0,0),(2144,'2015-03-10 22:38:43','2015-08-29 14:46:03',1,30000087,0,0,0,0,0,0,0,0,1,0,0,3,1,1,1,1,0,0,0,0,5,2,0,0),(2145,'2015-03-10 22:38:43','2015-08-29 14:46:03',1,30001663,0,0,1,0,0,1,1,0,0,0,0,0,1,0,0,0,0,0,0,0,2,1,0,0),(2146,'2015-03-10 22:38:43','2015-03-10 22:38:43',1,30004238,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(2147,'2015-03-10 22:38:43','2015-08-29 14:46:03',1,30004083,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,3,0,0),(2148,'2015-03-10 22:38:43','2015-08-29 14:46:03',1,30000126,0,0,0,0,1,0,0,0,0,0,0,0,0,0,3,9,0,1,0,0,0,0,0,0),(2149,'2015-03-10 22:38:43','2015-03-10 22:38:43',1,30002533,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(2150,'2015-03-10 22:38:43','2015-08-29 14:46:03',1,30002531,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,0,0,0,0,1,0,0,0),(2151,'2015-03-10 22:38:43','2015-08-29 14:46:03',1,30003586,0,0,0,1,1,0,0,0,0,0,0,0,0,2,5,4,0,0,0,0,0,0,0,0),(2152,'2015-03-10 22:38:43','2015-08-29 14:46:03',1,30005244,0,4,0,0,0,0,1,1,0,2,1,0,1,1,2,1,1,0,1,0,2,1,0,0),(2153,'2015-03-10 22:38:43','2015-08-29 14:46:03',1,30003023,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,1,0,0),(2154,'2015-03-10 22:38:43','2015-03-10 22:38:43',1,30004266,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(2155,'2015-03-10 22:38:43','2015-08-29 14:46:03',1,30004282,0,0,0,0,0,0,0,0,1,1,1,0,0,0,0,0,0,1,0,0,0,0,0,0),(2156,'2015-03-10 22:38:43','2015-08-29 14:46:03',1,30003871,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0),(2157,'2015-03-10 22:38:43','2015-03-10 22:38:43',1,30000936,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(2158,'2015-03-10 22:38:43','2015-03-10 22:38:43',1,30001580,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(2159,'2015-03-10 22:38:43','2015-08-29 14:46:03',1,30000553,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(2160,'2015-03-10 22:38:43','2015-03-10 22:38:43',1,30003202,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(2161,'2015-03-10 22:38:43','2015-08-29 14:46:03',1,30004288,0,0,0,0,0,0,0,0,0,0,0,0,0,2,0,0,0,0,0,0,0,0,0,0),(2162,'2015-03-10 22:38:43','2015-08-29 14:46:03',1,30004084,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,2,0,2,0,0,0),(2163,'2015-03-10 22:38:43','2015-03-10 22:38:43',1,30002972,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(2164,'2015-03-10 22:38:43','2015-08-29 14:46:03',1,30001714,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0),(2165,'2015-03-10 22:38:43','2015-03-10 22:38:43',1,30004474,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(2166,'2015-03-10 22:38:43','2015-08-29 14:46:03',1,30003035,2,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0),(2167,'2015-03-10 22:38:43','2015-03-10 22:38:43',1,30002232,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(2168,'2015-03-10 22:38:43','2015-08-29 14:46:03',1,30003877,0,0,0,0,0,0,0,0,0,2,2,1,0,0,0,0,0,0,0,0,0,0,0,0),(2169,'2015-03-10 22:38:43','2015-08-29 14:46:03',1,30000887,0,0,0,0,0,0,0,0,1,0,0,0,1,1,0,0,0,0,0,0,0,0,0,0),(2170,'2015-03-10 22:38:43','2015-08-29 14:46:03',1,30005288,0,0,0,0,0,0,0,0,0,1,0,0,0,0,3,3,0,0,0,0,0,1,0,0),(2171,'2015-03-10 22:38:43','2015-08-29 14:46:03',1,30005312,5,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,19,0,0,1,0,2,0),(2172,'2015-03-10 22:38:43','2015-08-29 14:46:03',1,30001192,0,0,0,0,0,0,0,0,1,0,0,0,0,3,3,0,0,1,0,0,0,2,0,0),(2173,'2015-03-10 22:38:43','2015-03-10 22:38:43',1,30003232,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(2174,'2015-03-10 22:38:43','2015-08-29 14:46:03',1,30000789,0,0,0,0,0,1,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,0,0,0),(2175,'2015-03-10 22:38:43','2015-03-10 22:38:43',1,30000859,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(2176,'2015-03-10 22:38:43','2015-03-10 22:38:43',1,30001122,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(2177,'2015-03-10 22:38:43','2015-08-29 14:46:03',1,30002133,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0),(2178,'2015-03-10 22:38:43','2015-08-29 14:46:03',1,30000544,1,0,0,0,0,0,0,0,5,2,4,1,0,0,0,0,0,0,0,1,1,0,0,0),(2179,'2015-03-10 22:38:43','2015-08-29 14:46:03',1,30003698,0,0,1,0,1,0,0,0,0,0,0,0,0,1,1,1,0,0,0,0,0,0,0,0),(2180,'2015-03-10 22:38:43','2015-08-29 14:46:03',1,30001178,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,0),(2181,'2015-03-10 22:38:43','2015-03-10 22:38:43',1,30000671,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(2182,'2015-03-10 22:38:43','2015-08-29 14:46:03',1,30002306,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0),(2183,'2015-03-10 22:38:43','2015-08-29 14:46:03',1,30003736,0,0,0,0,0,0,0,0,0,0,0,0,0,10,10,0,0,0,1,4,2,0,0,0),(2184,'2015-03-10 22:38:43','2015-08-29 14:46:03',1,30002725,0,1,0,1,0,0,1,0,1,1,1,0,0,0,0,0,1,0,0,0,0,0,0,0),(2185,'2015-03-10 22:38:43','2015-08-29 14:46:03',1,30000070,0,0,0,0,0,0,0,0,0,6,7,0,0,0,0,0,0,0,0,0,0,0,0,0),(2186,'2015-03-10 22:38:43','2015-08-29 14:46:03',1,30004087,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0),(2187,'2015-03-10 22:38:43','2015-08-29 14:46:03',1,30005268,0,2,2,6,5,0,0,0,7,8,8,0,0,4,1,1,2,0,1,0,0,1,1,0),(2188,'2015-03-10 22:38:43','2015-08-29 14:46:03',1,30002403,0,0,0,0,0,1,0,0,0,0,0,0,2,0,0,0,0,2,0,0,0,2,4,0),(2189,'2015-03-10 22:38:43','2015-08-29 14:46:03',1,30001716,0,0,1,0,0,0,0,0,0,2,1,0,0,0,0,0,0,0,0,0,0,0,0,0),(2190,'2015-03-10 22:38:43','2015-03-10 22:38:43',1,30003963,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(2191,'2015-03-10 22:38:43','2015-08-29 14:46:03',1,30001646,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0),(2192,'2015-03-10 22:38:43','2015-08-29 14:46:03',1,30003509,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0),(2193,'2015-03-10 22:38:43','2015-08-29 14:46:03',1,30003930,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0),(2194,'2015-03-10 22:38:43','2015-08-29 14:46:03',1,30003858,0,0,1,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(2195,'2015-03-10 22:38:43','2015-08-29 14:46:03',1,30000598,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,1,0,1,1,0,0,0,0,0),(2196,'2015-03-10 22:38:43','2015-03-10 22:38:43',1,30000552,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(2197,'2015-03-10 22:38:43','2015-08-29 14:46:03',1,30004465,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0),(2198,'2015-03-10 22:38:43','2015-03-10 22:38:43',1,30002875,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(2199,'2015-03-10 22:38:43','2015-03-10 22:38:43',1,30004694,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(2200,'2015-03-10 22:38:43','2015-03-10 22:38:43',1,30004167,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(2201,'2015-03-10 22:38:43','2015-08-29 14:46:03',1,30004957,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0),(2202,'2015-03-10 22:38:43','2015-03-10 22:38:43',1,30000456,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(2203,'2015-03-10 22:38:43','2015-08-29 14:46:03',1,30002653,0,0,0,1,5,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,0,1,0,0),(2204,'2015-03-10 22:38:43','2015-03-10 22:38:43',1,30000593,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(2205,'2015-03-10 22:38:43','2015-08-29 14:46:03',1,30002636,0,1,1,0,1,3,0,1,1,2,0,0,0,1,1,0,1,0,0,0,0,0,0,0),(2206,'2015-03-10 22:38:43','2015-08-29 14:46:03',1,30003808,0,0,0,2,3,0,0,0,0,0,1,0,0,2,0,0,0,1,0,0,0,0,0,0),(2207,'2015-03-10 22:38:43','2015-08-29 14:46:03',1,30003360,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0),(2208,'2015-03-10 22:38:43','2015-08-29 14:46:03',1,30003057,0,0,0,0,0,0,1,1,0,0,0,0,1,1,1,2,1,0,0,0,0,2,0,0),(2209,'2015-03-10 22:38:43','2015-03-10 22:38:43',1,30002859,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(2210,'2015-03-10 22:38:43','2015-03-10 22:38:43',1,30001573,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(2211,'2015-03-10 22:38:43','2015-03-10 22:38:43',1,30003199,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(2212,'2015-03-10 22:38:43','2015-03-10 22:38:43',1,30002328,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(2213,'2015-03-10 22:38:43','2015-03-10 22:38:43',1,30001883,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(2214,'2015-03-10 22:38:43','2015-03-10 22:38:43',1,30002627,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(2215,'2015-03-10 22:38:43','2015-08-29 14:46:03',1,30002102,0,0,0,0,1,2,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,2,0),(2216,'2015-03-10 22:38:43','2015-08-29 14:46:03',1,30002384,4,0,0,1,1,1,1,3,4,0,0,5,0,13,6,2,0,0,2,0,2,0,2,0),(2217,'2015-03-10 22:38:43','2015-08-29 14:46:03',1,30002517,1,1,2,0,0,0,0,1,7,8,7,0,4,1,3,3,2,11,7,5,2,5,2,0),(2218,'2015-03-10 22:38:43','2015-08-29 14:46:03',1,30002560,0,0,0,0,0,0,0,0,0,0,0,0,2,0,0,0,0,0,0,0,0,0,0,0),(2219,'2015-03-10 22:38:43','2015-08-29 14:46:03',1,30002556,0,0,0,0,0,0,0,0,0,1,0,0,1,1,1,1,0,1,0,0,2,0,0,0),(2220,'2015-03-10 22:38:43','2015-03-10 22:38:43',1,30001347,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(2221,'2015-03-10 22:38:43','2015-03-10 22:38:43',1,30003653,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(2222,'2015-03-10 22:38:43','2015-08-29 14:46:03',1,30002123,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0),(2223,'2015-03-10 22:38:43','2015-08-29 14:46:03',1,30002947,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0),(2224,'2015-03-10 22:38:43','2015-03-10 22:38:43',1,30004778,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(2225,'2015-03-10 22:38:43','2015-08-29 14:46:03',1,30001661,0,1,0,0,0,2,0,0,1,0,0,0,4,1,0,1,0,0,0,1,0,0,0,0),(2226,'2015-03-10 22:38:43','2015-03-10 22:38:43',1,30000344,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(2227,'2015-03-10 22:38:43','2015-08-29 14:46:03',1,30002529,0,0,0,0,0,0,0,0,0,3,1,0,0,0,0,0,0,0,0,0,0,1,0,0),(2228,'2015-03-10 22:38:43','2015-08-29 14:46:03',1,30002621,0,0,0,0,0,0,0,0,1,0,1,0,0,0,0,0,0,0,1,0,0,0,1,0),(2229,'2015-03-10 22:38:43','2015-08-29 14:46:03',1,30001531,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,0,0,2,1,0,0,3,0),(2230,'2015-03-10 22:38:43','2015-08-29 14:46:03',1,30000276,0,0,0,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0),(2231,'2015-03-10 22:38:43','2015-03-10 22:38:43',1,30005123,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(2232,'2015-03-10 22:38:43','2015-08-29 14:46:03',1,30003986,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0),(2233,'2015-03-10 22:38:43','2015-08-29 14:46:03',1,30000225,0,0,0,0,0,2,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0),(2234,'2015-03-10 22:38:43','2015-03-10 22:38:43',1,30002588,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(2235,'2015-03-10 22:38:43','2015-03-10 22:38:43',1,30000974,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(2236,'2015-03-10 22:38:43','2015-03-10 22:38:43',1,30000523,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(2237,'2015-03-10 22:38:43','2015-08-29 14:46:03',1,30001001,0,0,0,0,0,0,6,0,0,0,1,2,0,1,0,0,0,0,0,2,2,3,0,0),(2238,'2015-03-10 22:38:43','2015-03-10 22:38:43',1,30001331,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(2239,'2015-03-10 22:38:43','2015-03-10 22:38:43',1,30001129,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(2240,'2015-03-10 22:38:43','2015-03-10 22:38:43',1,30001513,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(2241,'2015-03-10 22:38:43','2015-03-10 22:38:43',1,30000281,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(2242,'2015-03-10 22:38:43','2015-03-10 22:38:43',1,30000444,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(2243,'2015-03-10 22:38:43','2015-03-10 22:38:43',1,30005116,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(2244,'2015-03-10 22:38:43','2015-08-29 14:46:03',1,30003752,0,0,0,1,1,0,0,0,0,0,1,0,0,2,0,0,0,0,0,0,0,0,0,0),(2245,'2015-03-10 22:38:43','2015-08-29 14:46:03',1,30005090,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(2246,'2015-03-10 22:38:43','2015-03-10 22:38:43',1,30000547,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(2247,'2015-03-10 22:38:43','2015-03-10 22:38:43',1,30004814,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(2248,'2015-03-10 22:38:43','2015-03-10 22:38:43',1,30004512,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(2249,'2015-03-10 22:38:43','2015-03-10 22:38:43',1,30003261,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(2250,'2015-03-10 22:38:43','2015-03-10 22:38:43',1,30000268,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(2251,'2015-03-10 22:38:43','2015-03-10 22:38:43',1,30004592,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(2252,'2015-03-10 22:38:43','2015-03-10 22:38:43',1,30004446,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(2253,'2015-03-10 22:38:43','2015-08-29 14:46:03',1,30001269,0,0,0,2,1,1,2,0,0,2,0,0,0,0,0,1,0,0,1,1,2,3,1,0),(2254,'2015-03-10 22:38:43','2015-03-10 22:38:43',1,30002120,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(2255,'2015-03-10 22:38:43','2015-03-10 22:38:43',1,30001343,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(2256,'2015-03-10 22:38:43','2015-08-29 14:46:03',1,30004606,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(2257,'2015-03-10 22:38:43','2015-08-29 14:46:03',1,30003144,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(2258,'2015-03-10 22:38:43','2015-03-10 22:38:43',1,30000223,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(2259,'2015-03-10 22:38:43','2015-08-29 14:46:03',1,30000865,0,0,2,1,1,1,1,0,1,20,13,3,0,0,0,0,0,0,0,1,2,5,3,0),(2260,'2015-03-10 22:38:43','2015-03-10 22:38:43',1,30003160,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(2261,'2015-03-10 22:38:43','2015-08-29 14:46:03',1,30003608,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(2262,'2015-03-10 22:38:43','2015-03-10 22:38:43',1,30002043,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(2263,'2015-03-10 22:38:43','2015-03-10 22:38:43',1,30004178,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(2264,'2015-03-10 22:38:43','2015-03-10 22:38:43',1,30000426,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(2265,'2015-03-10 22:38:43','2015-03-10 22:38:43',1,30001575,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(2266,'2015-03-10 22:38:43','2015-03-10 22:38:43',1,30000410,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(2267,'2015-03-10 22:38:43','2015-08-29 14:46:03',1,30000685,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(2268,'2015-03-10 22:38:43','2015-08-29 14:46:03',1,30003723,0,1,2,0,0,0,0,0,8,8,6,2,116,0,1,1,0,0,0,2,2,6,2,0),(2269,'2015-03-10 22:38:43','2015-08-29 14:46:03',1,30000574,0,2,0,0,0,2,1,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0),(2270,'2015-03-10 22:38:43','2015-03-10 22:38:43',1,30004443,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(2271,'2015-03-10 22:38:43','2015-08-29 14:46:03',1,30004034,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0),(2272,'2015-03-10 22:38:43','2015-03-10 22:38:43',1,30000973,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(2273,'2015-03-10 22:38:43','2015-03-10 22:38:43',1,30001518,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(2274,'2015-03-10 22:38:43','2015-03-10 22:38:43',1,30002857,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(2275,'2015-03-10 22:38:43','2015-03-10 22:38:43',1,30004678,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(2276,'2015-03-10 22:38:43','2015-08-29 14:46:03',1,30003775,0,0,0,0,0,0,0,0,0,0,0,0,2,0,0,1,0,0,0,0,0,0,1,0),(2277,'2015-03-10 22:38:43','2015-08-29 14:46:03',1,30004916,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0),(2278,'2015-03-10 22:38:43','2015-08-29 14:46:03',1,30000960,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0),(2279,'2015-03-10 22:38:43','2015-03-10 22:38:43',1,30001424,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(2280,'2015-03-10 22:38:43','2015-08-29 14:46:03',1,30002800,0,0,8,0,0,1,0,0,0,0,0,1,1,0,0,0,8,0,0,0,0,0,4,0),(2281,'2015-03-10 22:38:43','2015-03-10 22:38:43',1,30005250,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(2282,'2015-03-10 22:38:43','2015-08-29 14:46:03',1,30012547,4,13,7,4,4,3,0,3,12,13,14,13,16,16,15,18,5,5,10,13,4,9,15,0),(2283,'2015-03-10 22:38:43','2015-08-29 14:46:03',1,30005223,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0),(2284,'2015-03-10 22:38:43','2015-03-10 22:38:43',1,30002264,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(2285,'2015-03-10 22:38:43','2015-08-29 14:46:03',1,30002057,0,2,0,0,0,4,0,0,2,0,0,2,11,2,12,16,10,2,7,8,5,16,1,0),(2286,'2015-03-10 22:38:43','2015-08-29 14:46:03',1,30001367,0,1,1,1,2,0,0,0,1,0,0,0,21,3,1,1,1,0,1,0,0,3,4,0),(2287,'2015-03-10 22:38:43','2015-08-29 14:46:03',1,30002050,3,0,0,0,0,0,0,0,5,0,0,0,1,1,1,0,0,9,1,1,8,4,0,0),(2288,'2015-03-10 22:38:43','2015-08-29 14:46:03',1,30003533,0,1,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(2289,'2015-03-10 22:38:43','2015-03-10 22:38:43',1,30000094,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(2290,'2015-03-10 22:38:43','2015-03-10 22:38:43',1,30002250,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(2291,'2015-03-10 22:38:43','2015-08-29 14:46:03',1,30004248,0,1,0,0,0,0,0,1,0,3,3,0,0,0,0,0,0,0,0,0,0,0,0,0),(2292,'2015-03-10 22:38:43','2015-08-29 14:46:03',1,30005012,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0),(2293,'2015-03-10 22:38:43','2015-08-29 14:46:03',1,30003106,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(2294,'2015-03-10 22:38:43','2015-03-10 22:38:43',1,30003918,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(2295,'2015-03-10 22:38:43','2015-03-10 22:38:43',1,30004257,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(2296,'2015-03-10 22:38:43','2015-08-29 14:46:03',1,30003449,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,5,1,0),(2297,'2015-03-10 22:38:43','2015-08-29 14:46:03',1,30002077,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,2,0),(2298,'2015-03-10 22:38:43','2015-03-10 22:38:43',1,30003085,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(2299,'2015-03-10 22:38:43','2015-08-29 14:46:03',1,30001448,0,0,1,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0),(2300,'2015-03-10 22:38:43','2015-08-29 14:46:03',1,30002990,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(2301,'2015-03-10 22:38:43','2015-08-29 14:46:03',1,30002781,0,0,0,1,1,2,0,3,0,1,0,0,0,0,0,0,0,12,1,1,0,1,1,0),(2302,'2015-03-10 22:38:43','2015-03-10 22:38:43',1,30003003,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(2303,'2015-03-10 22:38:43','2015-03-10 22:38:43',1,30002404,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(2304,'2015-03-10 22:38:43','2015-08-29 14:46:03',1,30004100,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0),(2305,'2015-03-10 22:38:43','2015-08-29 14:46:03',1,30045341,2,3,0,0,1,0,1,0,0,0,0,0,0,2,0,1,0,0,0,0,0,0,0,0),(2306,'2015-03-10 22:38:43','2015-08-29 14:46:03',1,30003010,0,0,0,1,1,0,0,0,0,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0),(2307,'2015-03-10 22:38:43','2015-08-29 14:46:03',1,30002981,2,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,1,0),(2308,'2015-03-10 22:38:43','2015-03-10 22:38:43',1,30003900,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(2309,'2015-03-10 22:38:43','2015-03-10 22:38:43',1,30003523,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(2310,'2015-03-10 22:38:43','2015-03-10 22:38:43',1,30000152,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(2311,'2015-03-10 22:38:43','2015-03-10 22:38:43',1,30003547,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(2312,'2015-03-10 22:38:43','2015-03-10 22:38:43',1,30033489,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(2313,'2015-03-10 22:38:43','2015-03-10 22:38:43',1,30005265,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(2314,'2015-03-10 22:38:43','2015-03-10 22:38:43',1,30004145,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(2315,'2015-03-10 22:38:43','2015-08-29 14:46:03',1,30003087,0,0,0,1,1,0,0,0,3,0,0,0,0,0,0,0,1,1,0,3,0,1,0,0),(2316,'2015-03-10 22:38:43','2015-03-10 22:38:43',1,30003418,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(2317,'2015-03-10 22:38:43','2015-08-29 14:46:03',1,30003597,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,4,0,0,0,0),(2318,'2015-03-10 22:38:43','2015-08-29 14:46:03',1,30003017,0,0,0,0,0,0,0,0,1,0,0,1,1,1,2,2,2,0,1,0,1,2,3,0),(2319,'2015-03-10 22:38:43','2015-08-29 14:46:03',1,30003587,0,0,0,0,0,0,0,0,0,0,0,1,0,0,1,1,1,0,0,0,0,0,0,0),(2320,'2015-03-10 22:38:43','2015-08-29 14:46:03',1,30003793,0,0,0,2,0,1,0,0,2,3,3,0,0,0,1,1,3,0,0,0,0,0,1,0),(2321,'2015-03-10 22:38:43','2015-03-10 22:38:43',1,30002225,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(2322,'2015-03-10 22:38:43','2015-08-29 14:46:03',1,30002758,3,1,1,3,1,2,5,5,0,2,10,2,5,0,1,2,1,0,3,2,0,1,7,0),(2323,'2015-03-10 22:38:43','2015-08-29 14:46:03',1,30000074,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,1,1,0,0),(2324,'2015-03-10 22:38:43','2015-08-29 14:46:03',1,30000032,0,0,0,0,0,0,0,0,0,1,1,0,0,1,0,0,0,0,0,0,0,0,0,0),(2325,'2015-03-10 22:38:43','2015-08-29 14:46:03',1,30002806,1,1,4,2,1,0,0,1,2,4,2,0,5,1,0,0,13,1,1,2,4,1,2,0),(2326,'2015-03-10 22:38:43','2015-08-29 14:46:03',1,30002764,1,0,0,0,0,0,31,0,2,1,1,0,0,5,5,6,5,1,2,0,0,3,0,0),(2327,'2015-03-10 22:38:43','2015-08-29 14:46:03',1,30001737,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(2328,'2015-03-10 22:38:43','2015-08-29 14:46:03',1,30002994,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(2329,'2015-03-10 22:38:43','2015-08-29 14:46:03',1,30003082,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0),(2330,'2015-03-10 22:38:43','2015-03-10 22:38:43',1,30003542,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(2331,'2015-03-10 22:38:43','2015-03-10 22:38:43',1,30000979,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(2332,'2015-03-10 22:38:43','2015-03-10 22:38:43',1,30004228,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(2333,'2015-03-10 22:38:43','2015-08-29 14:46:03',1,30003633,1,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(2334,'2015-03-10 22:38:43','2015-03-10 22:38:43',1,30005107,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(2335,'2015-03-10 22:38:43','2015-03-10 22:38:43',1,30004325,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(2336,'2015-03-10 22:38:43','2015-03-10 22:38:43',1,30001292,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(2337,'2015-03-10 22:38:43','2015-03-10 22:38:43',1,30000569,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(2338,'2015-03-10 22:38:43','2015-03-10 22:38:43',1,30002863,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(2339,'2015-03-10 22:38:43','2015-03-10 22:38:43',1,30001330,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(2340,'2015-03-10 22:38:43','2015-03-10 22:38:43',1,30001482,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(2341,'2015-03-10 22:38:43','2015-08-29 14:46:03',1,30000214,0,0,0,0,0,1,0,0,0,0,1,1,0,1,1,0,0,0,0,0,0,0,0,0),(2342,'2015-03-10 22:38:43','2015-08-29 14:46:03',1,30003649,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0),(2343,'2015-03-10 22:38:43','2015-03-10 22:38:43',1,30003435,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(2344,'2015-03-10 22:38:43','2015-08-29 14:46:03',1,30024971,0,0,0,0,0,1,0,0,0,0,1,0,0,1,0,0,0,0,0,0,0,0,0,0),(2345,'2015-03-10 22:38:43','2015-08-29 14:46:03',1,30001161,3,8,5,3,8,2,2,3,28,9,7,3,8,2,7,11,4,15,16,12,13,19,6,0),(2346,'2015-03-10 22:38:43','2015-08-29 14:46:03',1,30002406,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0),(2347,'2015-03-10 22:38:43','2015-03-10 22:38:43',1,30002579,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(2348,'2015-03-10 22:38:43','2015-08-29 14:46:03',1,30002189,0,0,1,0,0,1,0,0,1,0,1,0,0,3,3,2,0,1,0,0,0,0,0,0),(2349,'2015-03-10 22:38:43','2015-08-29 14:46:03',1,30003846,0,0,0,0,0,0,0,0,0,0,0,0,0,2,1,0,0,0,0,0,0,0,1,0),(2350,'2015-03-10 22:38:43','2015-08-29 14:46:03',1,30002418,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0),(2351,'2015-03-10 22:38:43','2015-08-29 14:46:03',1,30002390,0,0,0,0,0,0,0,1,1,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0),(2352,'2015-03-10 22:38:43','2015-08-29 14:46:03',1,30002053,5,14,3,4,3,4,7,6,6,2,9,4,15,14,16,13,5,2,3,9,9,12,4,0),(2353,'2015-03-10 22:38:43','2015-08-29 14:46:03',1,30002063,0,0,0,0,0,0,1,0,0,0,0,0,0,0,1,1,0,0,2,0,0,0,1,0),(2354,'2015-03-10 22:38:43','2015-08-29 14:46:03',1,30003594,0,2,0,0,0,0,4,0,0,0,0,0,10,0,0,0,0,0,0,0,2,1,0,0),(2355,'2015-03-10 22:38:43','2015-08-29 14:46:03',1,30001044,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,1,0,0,1,0,0),(2356,'2015-03-10 22:38:43','2015-03-10 22:38:43',1,30003902,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(2357,'2015-03-10 22:38:43','2015-08-29 14:46:03',1,30034971,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0),(2358,'2015-03-10 22:38:43','2015-08-29 14:46:03',1,30000188,0,0,8,0,0,1,0,0,0,0,0,0,2,0,0,0,0,0,0,0,0,0,0,0),(2359,'2015-03-10 22:38:43','2015-08-29 14:46:03',1,30005290,0,0,1,0,0,1,3,0,0,2,2,0,1,0,1,1,0,0,1,0,0,0,2,0),(2360,'2015-03-10 22:38:43','2015-03-10 22:38:43',1,30003528,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(2361,'2015-03-10 22:38:43','2015-08-29 14:46:03',1,30005213,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(2362,'2015-03-10 22:38:43','2015-08-29 14:46:03',1,30005320,3,0,2,2,1,1,0,1,0,1,2,0,1,0,2,2,0,4,1,1,0,0,1,0),(2363,'2015-03-10 22:38:43','2015-08-29 14:46:03',1,30004979,16,10,19,10,19,6,5,9,11,5,13,5,3,4,8,8,9,17,7,6,42,22,15,0),(2364,'2015-03-10 22:38:43','2015-03-10 22:38:43',1,30003937,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(2365,'2015-03-10 22:38:43','2015-08-29 14:46:03',1,30003220,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(2366,'2015-03-10 22:38:43','2015-03-10 22:38:43',1,30000837,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(2367,'2015-03-10 22:38:43','2015-03-10 22:38:43',1,30001135,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(2368,'2015-03-10 22:38:43','2015-03-10 22:38:43',1,30001509,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(2369,'2015-03-10 22:38:43','2015-08-29 14:46:03',1,30003162,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(2370,'2015-03-10 22:38:43','2015-03-10 22:38:43',1,30004686,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(2371,'2015-03-10 22:38:43','2015-03-10 22:38:43',1,30003679,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(2372,'2015-03-10 22:38:43','2015-03-10 22:38:43',1,30001612,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(2373,'2015-03-10 22:38:43','2015-08-29 14:46:03',1,30003099,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,1,1,0,0,0,0),(2374,'2015-03-10 22:38:43','2015-08-29 14:46:03',1,30001662,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,0,0,0,0,0,0,1,0),(2375,'2015-03-10 22:38:43','2015-08-29 14:46:03',1,30004240,2,0,0,0,0,0,0,0,0,2,2,0,0,0,0,0,0,0,0,0,0,0,0,0),(2376,'2015-03-10 22:38:43','2015-08-29 14:46:03',1,30001528,1,0,0,0,0,0,0,0,1,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0),(2377,'2015-03-10 22:38:43','2015-08-29 14:46:03',1,30004142,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(2378,'2015-03-10 22:38:43','2015-08-29 14:46:03',1,30045338,2,2,5,0,0,0,2,0,11,8,7,2,22,0,7,8,2,6,2,16,3,4,4,0),(2379,'2015-03-10 22:38:43','2015-08-29 14:46:03',1,30001674,0,0,0,3,1,1,0,0,1,0,0,1,0,2,3,2,0,0,1,0,0,0,0,0),(2380,'2015-03-10 22:38:43','2015-08-29 14:46:03',1,30003428,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0),(2381,'2015-03-10 22:38:43','2015-08-29 14:46:03',1,30004133,0,0,0,2,2,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(2382,'2015-03-10 22:38:43','2015-03-10 22:38:43',1,30002214,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(2383,'2015-03-10 22:38:43','2015-03-10 22:38:43',1,30004141,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(2384,'2015-03-10 22:38:43','2015-08-29 14:46:03',1,30005248,0,0,0,0,0,0,1,2,0,0,0,0,0,0,0,1,0,0,0,0,1,1,0,0),(2385,'2015-03-10 22:38:43','2015-08-29 14:46:03',1,30004077,0,0,0,0,0,0,0,0,3,0,0,0,0,0,0,0,2,0,1,4,0,0,1,0),(2386,'2015-03-10 22:38:43','2015-08-29 14:46:03',1,30045345,3,5,5,1,0,5,3,0,0,0,0,0,0,1,2,3,6,0,1,1,0,1,6,0),(2387,'2015-03-10 22:38:43','2015-08-29 14:46:03',1,30000133,0,0,1,0,0,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(2388,'2015-03-10 22:38:43','2015-08-29 14:46:03',1,30003875,0,0,0,0,0,0,0,0,0,0,0,1,0,1,1,0,0,0,0,0,0,0,0,0),(2389,'2015-03-10 22:38:43','2015-08-29 14:46:03',1,30003531,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0),(2390,'2015-03-10 22:38:43','2015-08-29 14:46:03',1,30031407,0,0,0,0,0,0,0,0,0,0,0,0,0,2,3,2,0,1,0,1,0,0,1,0),(2391,'2015-03-10 22:38:43','2015-08-29 14:46:03',1,30004956,0,0,0,0,0,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(2392,'2015-03-10 22:38:43','2015-08-29 14:46:03',1,30002245,0,0,5,1,1,0,0,0,5,3,1,9,2,0,0,0,1,0,0,0,0,1,1,0),(2393,'2015-03-10 22:38:43','2015-08-29 14:46:03',1,30000721,0,0,0,0,0,0,0,0,6,1,3,3,7,0,0,0,0,1,1,1,0,0,1,0),(2394,'2015-03-10 22:38:43','2015-08-29 14:46:03',1,30002468,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,9,0,0,0,0,0),(2395,'2015-03-10 22:38:43','2015-08-29 14:46:03',1,30002075,0,0,1,0,1,0,1,0,0,0,0,0,1,0,0,0,0,0,4,2,1,0,0,0),(2396,'2015-03-10 22:38:43','2015-03-10 22:38:43',1,30003400,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(2397,'2015-03-10 22:38:43','2015-03-10 22:38:43',1,30002485,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(2398,'2015-03-10 22:38:43','2015-03-10 22:38:43',1,30000828,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(2399,'2015-03-10 22:38:43','2015-08-29 14:46:03',1,30001744,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,0,0,0),(2400,'2015-03-10 22:38:43','2015-08-29 14:46:03',1,30001016,3,0,1,1,2,1,0,0,0,2,1,4,3,1,0,0,1,0,1,5,0,0,1,0),(2401,'2015-03-10 22:38:43','2015-08-29 14:46:03',1,30001847,0,0,1,0,0,0,0,0,0,0,0,1,0,0,0,1,0,0,0,0,4,1,0,0),(2402,'2015-03-10 22:38:43','2015-08-29 14:46:03',1,30004715,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0),(2403,'2015-03-10 22:38:43','2015-08-29 14:46:03',1,30004615,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0),(2404,'2015-03-10 22:38:43','2015-03-10 22:38:43',1,30003243,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(2405,'2015-03-10 22:38:43','2015-08-29 14:46:03',1,30003469,1,0,0,1,1,0,0,1,0,0,0,1,0,0,0,0,0,0,0,0,2,0,1,0),(2406,'2015-03-10 22:38:43','2015-08-29 14:46:03',1,30002096,0,0,1,0,0,0,0,1,0,0,2,1,1,3,3,2,0,0,0,0,2,0,1,0),(2407,'2015-03-10 22:38:43','2015-08-29 14:46:03',1,30002773,0,0,0,0,0,0,0,0,0,0,0,0,2,0,0,0,0,0,0,0,0,0,1,0),(2408,'2015-03-10 22:38:43','2015-03-10 22:38:43',1,30002596,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(2409,'2015-03-10 22:38:43','2015-08-29 14:46:03',1,30001680,0,0,0,0,0,3,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(2410,'2015-03-10 22:38:43','2015-08-29 14:46:03',1,30004309,0,0,0,0,0,0,0,0,0,5,1,3,6,3,0,1,0,0,3,2,1,1,0,0),(2411,'2015-03-10 22:38:43','2015-08-29 14:46:03',1,30002397,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,1,0,0,0,0,0,0,0),(2412,'2015-03-10 22:38:43','2015-08-29 14:46:03',1,30043489,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(2413,'2015-03-10 22:38:43','2015-08-29 14:46:03',1,30002741,3,0,0,0,1,0,0,0,0,1,1,0,0,0,0,0,1,1,0,0,1,0,1,0),(2414,'2015-03-10 22:38:43','2015-08-29 14:46:03',1,30004264,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0),(2415,'2015-03-10 22:38:43','2015-03-10 22:38:43',1,30003560,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(2416,'2015-03-10 22:38:43','2015-08-29 14:46:03',1,30004130,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,0,0,0,0),(2417,'2015-03-10 22:38:43','2015-08-29 14:46:03',1,30001690,0,0,0,1,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,0,0,0,0),(2418,'2015-03-10 22:38:43','2015-08-29 14:46:03',1,30000111,0,0,0,0,0,1,0,0,1,1,1,0,0,0,1,1,0,0,1,1,0,0,0,0),(2419,'2015-03-10 22:38:43','2015-08-29 14:46:03',1,30003456,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0),(2420,'2015-03-10 22:38:43','2015-08-29 14:46:03',1,30001221,0,0,0,0,0,0,0,0,3,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0),(2421,'2015-03-10 22:38:43','2015-08-29 14:46:03',1,30003776,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,0,0,0,1,0,0),(2422,'2015-03-10 22:38:43','2015-03-10 22:38:43',1,30000370,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(2423,'2015-03-10 22:38:43','2015-03-10 22:38:43',1,30000592,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(2424,'2015-03-10 22:38:43','2015-03-10 22:38:43',1,30001463,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(2425,'2015-03-10 22:38:43','2015-03-10 22:38:43',1,30001583,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(2426,'2015-03-10 22:38:43','2015-03-10 22:38:43',1,30002040,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(2427,'2015-03-10 22:38:43','2015-08-29 14:46:03',1,30002856,0,3,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(2428,'2015-03-10 22:38:43','2015-03-10 22:38:43',1,30000686,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(2429,'2015-03-10 22:38:43','2015-08-29 14:46:03',1,30001871,0,1,0,0,0,0,0,0,0,50,53,0,0,0,0,0,0,0,0,0,0,0,0,0),(2430,'2015-03-10 22:38:43','2015-03-10 22:38:43',1,30002392,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(2431,'2015-03-10 22:38:43','2015-08-29 14:46:03',1,30003468,0,0,0,0,0,1,0,0,0,0,0,1,1,0,0,0,0,0,0,0,0,0,0,0),(2432,'2015-03-10 22:38:43','2015-08-29 14:46:03',1,30002391,0,0,0,0,0,0,0,0,2,0,0,1,0,0,0,0,0,0,0,0,1,0,0,0),(2433,'2015-03-10 22:38:43','2015-08-29 14:46:03',1,30002574,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,0,0,0,0,1,0,0,0),(2434,'2015-03-10 22:38:43','2015-03-10 22:38:43',1,30002576,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(2435,'2015-03-10 22:38:43','2015-08-29 14:46:03',1,30002054,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,0,0,0,0,0,2,0,0),(2436,'2015-03-10 22:38:43','2015-08-29 14:46:03',1,30003103,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,2,0,3,0,0),(2437,'2015-03-10 22:38:43','2015-08-29 14:46:03',1,30002505,1,0,0,2,1,0,1,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0),(2438,'2015-03-10 22:38:43','2015-08-29 14:46:03',1,30004988,1,0,0,0,0,0,0,0,1,0,0,0,1,1,1,0,0,0,0,1,0,0,1,0),(2439,'2015-03-10 22:38:43','2015-08-29 14:46:03',1,30004304,0,0,0,0,0,0,3,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0),(2440,'2015-03-10 22:38:43','2015-08-29 14:46:03',1,30003067,5,2,5,4,3,14,10,4,11,6,6,0,5,2,3,2,1,4,3,2,2,0,2,0),(2441,'2015-03-10 22:38:43','2015-08-29 14:46:03',1,30002572,0,0,1,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,2,0,0,0,0),(2442,'2015-03-10 22:38:43','2015-08-29 14:46:03',1,30000150,0,0,0,0,0,0,0,0,0,0,0,0,2,1,1,0,0,0,0,0,0,0,0,0),(2443,'2015-03-10 22:38:43','2015-08-29 14:46:03',1,30002217,0,0,0,0,0,0,0,0,0,0,0,2,0,0,0,0,0,0,0,1,0,0,0,0),(2444,'2015-03-10 22:38:43','2015-08-29 14:46:03',1,30002774,0,2,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,1,0),(2445,'2015-03-10 22:38:43','2015-03-10 22:38:43',1,30002356,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(2446,'2015-03-10 22:38:43','2015-08-29 14:46:03',1,30002871,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0),(2447,'2015-03-10 22:38:43','2015-03-10 22:38:43',1,30004205,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(2448,'2015-03-10 22:38:43','2015-08-29 14:46:03',1,30001159,1,0,2,0,0,0,1,0,0,0,0,1,0,0,0,0,2,0,0,0,0,1,6,0),(2449,'2015-03-10 22:38:43','2015-08-29 14:46:03',1,30045306,0,0,0,0,0,0,1,1,1,1,1,0,1,0,0,0,0,0,2,1,1,0,0,0),(2450,'2015-03-10 22:38:43','2015-08-29 14:46:03',1,30000134,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0),(2451,'2015-03-10 22:38:43','2015-08-29 14:46:03',1,30004481,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0),(2452,'2015-03-10 22:38:43','2015-08-29 14:46:03',1,30002796,0,1,1,3,0,0,0,4,6,2,2,1,4,0,0,3,2,1,2,4,9,3,9,0),(2453,'2015-03-10 22:38:43','2015-03-10 22:38:43',1,30000825,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(2454,'2015-03-10 22:38:43','2015-03-10 22:38:43',1,30004767,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(2455,'2015-03-10 22:38:43','2015-03-10 22:38:43',1,30000482,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(2456,'2015-03-10 22:38:43','2015-03-10 22:38:43',1,30001767,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(2457,'2015-03-10 22:38:43','2015-03-10 22:38:43',1,30000689,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(2458,'2015-03-10 22:38:43','2015-08-29 14:46:03',1,30000788,0,3,0,0,0,9,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,1,1,0),(2459,'2015-03-10 22:38:43','2015-03-10 22:38:43',1,30000636,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(2460,'2015-03-10 22:38:43','2015-03-10 22:38:43',1,30001934,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(2461,'2015-03-10 22:38:43','2015-08-29 14:46:03',1,30004400,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0),(2462,'2015-03-10 22:38:43','2015-03-10 22:38:43',1,30004361,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(2463,'2015-03-10 22:38:43','2015-08-29 14:46:03',1,30001188,0,0,0,0,0,0,0,0,1,0,0,0,0,0,1,1,0,0,0,0,0,0,0,0),(2464,'2015-03-10 22:38:43','2015-03-10 22:38:43',1,30000520,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(2465,'2015-03-10 22:38:43','2015-03-10 22:38:43',1,30004177,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(2466,'2015-03-10 22:38:43','2015-08-29 14:46:03',1,30004636,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,1,0,6,3,0),(2467,'2015-03-10 22:38:43','2015-03-10 22:38:43',1,30004775,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(2468,'2015-03-10 22:38:43','2015-08-29 14:46:03',1,30001752,0,0,0,0,0,0,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0),(2469,'2015-03-10 22:38:43','2015-08-29 14:46:03',1,30001914,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,1,0,0,0,0,0),(2470,'2015-03-10 22:38:43','2015-08-29 14:46:03',1,30003784,0,0,0,0,0,0,1,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(2471,'2015-03-10 22:38:43','2015-03-10 22:38:43',1,30002134,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(2472,'2015-03-10 22:38:43','2015-03-10 22:38:43',1,30000952,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(2473,'2015-03-10 22:38:43','2015-03-10 22:38:43',1,30001466,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(2474,'2015-03-10 22:38:43','2015-08-29 14:46:03',1,30003701,0,0,3,2,3,0,0,0,0,0,1,1,0,0,0,0,0,0,0,0,0,0,0,0),(2475,'2015-03-10 22:38:43','2015-03-10 22:38:43',1,30003308,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(2476,'2015-03-10 22:38:43','2015-03-10 22:38:43',1,30003317,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(2477,'2015-03-10 22:38:43','2015-08-29 14:46:03',1,30001782,0,0,0,1,1,0,0,0,0,0,0,0,4,0,0,0,0,0,0,0,0,0,1,0),(2478,'2015-03-10 22:38:43','2015-08-29 14:46:03',1,30003621,0,1,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0),(2479,'2015-03-10 22:38:43','2015-08-29 14:46:03',1,30004023,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,1,0,0,0,0),(2480,'2015-03-10 22:38:43','2015-03-10 22:38:43',1,30002877,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(2481,'2015-03-10 22:38:43','2015-08-29 14:46:03',1,30002908,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,0,0,0,0,2,1,0,0),(2482,'2015-03-10 22:38:43','2015-03-10 22:38:43',1,30000758,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(2483,'2015-03-10 22:38:43','2015-08-29 14:46:03',1,30004723,0,0,0,2,1,0,0,1,0,0,0,0,0,1,1,0,0,0,0,0,0,0,0,0),(2484,'2015-03-10 22:38:43','2015-03-10 22:38:43',1,30004430,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(2485,'2015-03-10 22:38:43','2015-03-10 22:38:43',1,30000626,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(2486,'2015-03-10 22:38:43','2015-03-10 22:38:43',1,30002343,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(2487,'2015-03-10 22:38:43','2015-08-29 14:46:03',1,30004933,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0),(2488,'2015-03-10 22:38:43','2015-08-29 14:46:03',1,30003716,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,1,0),(2489,'2015-03-10 22:38:43','2015-08-29 14:46:03',1,30001110,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0),(2490,'2015-03-10 22:38:43','2015-03-10 22:38:43',1,30004482,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(2491,'2015-03-10 22:38:43','2015-03-10 22:38:43',1,30001508,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(2492,'2015-03-10 22:38:43','2015-08-29 14:46:03',1,30000709,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0),(2493,'2015-03-10 22:38:43','2015-03-10 22:38:43',1,30003241,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(2494,'2015-03-10 22:38:43','2015-03-10 22:38:43',1,30001481,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(2495,'2015-03-10 22:38:43','2015-03-10 22:38:43',1,30004120,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(2496,'2015-03-10 22:38:43','2015-03-10 22:38:43',1,30000509,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(2497,'2015-03-10 22:38:43','2015-03-10 22:38:43',1,30001640,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(2498,'2015-03-10 22:38:43','2015-08-29 14:46:03',1,30003933,0,0,0,0,0,1,0,0,0,0,2,1,0,0,0,0,0,0,0,0,0,0,0,0),(2499,'2015-03-10 22:38:43','2015-08-29 14:46:03',1,30000053,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,0,0),(2500,'2015-03-10 22:38:43','2015-08-29 14:46:03',1,30002984,0,0,0,0,0,0,0,0,1,3,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(2501,'2015-03-10 22:38:43','2015-03-10 22:38:43',1,30001052,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(2502,'2015-03-10 22:38:43','2015-08-29 14:46:03',1,30001428,0,0,0,0,0,1,0,0,1,2,3,0,0,0,0,0,0,0,0,0,0,0,0,0),(2503,'2015-03-10 22:38:43','2015-08-29 14:46:03',1,30041407,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0),(2504,'2015-03-10 22:38:43','2015-08-29 14:46:03',1,30045329,0,0,0,1,0,2,1,0,0,0,0,0,4,0,0,0,1,1,1,0,1,1,1,0),(2505,'2015-03-10 22:38:43','2015-08-29 14:46:03',1,30005227,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,0,0,0,0,0),(2506,'2015-03-10 22:38:43','2015-08-29 14:46:03',1,30003513,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,1,0,0,0,0,1,0,0,0),(2507,'2015-03-10 22:38:43','2015-03-10 22:38:43',1,30000400,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(2508,'2015-03-10 22:38:43','2015-08-29 14:46:03',1,30045313,0,0,0,0,0,0,0,0,1,2,2,1,3,1,1,2,3,2,2,5,2,2,5,0),(2509,'2015-03-10 22:38:43','2015-08-29 14:46:03',1,30003072,0,5,3,1,1,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,0,0,0),(2510,'2015-03-10 22:38:43','2015-03-10 22:38:43',1,30000422,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(2511,'2015-03-10 22:38:43','2015-03-10 22:38:43',1,30001056,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(2512,'2015-03-10 22:38:43','2015-08-29 14:46:03',1,30003815,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,1,0,0,0,0,0,0,0,0),(2513,'2015-03-10 22:38:43','2015-08-29 14:46:03',1,30000254,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(2514,'2015-03-10 22:38:43','2015-03-10 22:38:43',1,30003203,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(2515,'2015-03-10 22:38:43','2015-08-29 14:46:03',1,30003614,0,0,0,1,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(2516,'2015-03-10 22:38:43','2015-03-10 22:38:43',1,30003987,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(2517,'2015-03-10 22:38:43','2015-08-29 14:46:03',1,30004583,2,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,1,0,0,0,0),(2518,'2015-03-10 22:38:43','2015-08-29 14:46:03',1,30003796,0,0,0,2,2,2,0,0,0,1,1,0,2,1,1,2,2,0,2,0,0,0,0,0),(2519,'2015-03-10 22:38:43','2015-08-29 14:46:03',1,30005005,0,0,0,0,0,6,0,3,0,2,0,0,3,2,0,0,5,0,0,4,0,0,0,0),(2520,'2015-03-10 22:38:43','2015-08-29 14:46:03',1,30002647,6,12,2,1,3,1,0,1,0,0,0,0,3,0,0,0,3,0,1,0,0,1,1,0),(2521,'2015-03-10 22:38:43','2015-08-29 14:46:03',1,30000169,2,0,0,1,0,0,0,0,2,0,0,0,0,5,3,2,0,1,2,2,1,1,2,0),(2522,'2015-03-10 22:38:43','2015-08-29 14:46:03',1,30000048,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0),(2523,'2015-03-10 22:38:43','2015-03-10 22:38:43',1,30001602,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(2524,'2015-03-10 22:38:43','2015-03-10 22:38:43',1,30002907,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(2525,'2015-03-10 22:38:43','2015-08-29 14:46:03',1,30001374,0,0,1,1,1,0,1,0,1,0,1,1,1,3,1,1,0,0,2,0,1,0,0,0),(2526,'2015-03-10 22:38:43','2015-03-10 22:38:43',1,30003311,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(2527,'2015-03-10 22:38:43','2015-08-29 14:46:03',1,30001422,0,5,0,0,0,0,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(2528,'2015-03-10 22:38:43','2015-08-29 14:46:03',1,30002766,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,1,0),(2529,'2015-03-10 22:38:43','2015-08-29 14:46:03',1,30000159,0,0,0,1,0,0,1,0,1,1,1,2,0,0,0,1,0,0,2,1,1,3,1,0),(2530,'2015-03-10 22:38:43','2015-08-29 14:46:03',1,30002786,0,3,0,0,0,3,0,0,0,1,1,0,0,1,4,4,0,0,0,0,6,4,3,0),(2531,'2015-03-10 22:38:43','2015-08-29 14:46:03',1,30045337,1,39,1,1,1,6,0,0,3,2,3,0,1,2,0,1,3,0,1,0,4,1,3,0),(2532,'2015-03-10 22:38:43','2015-03-10 22:38:43',1,30003641,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(2533,'2015-03-10 22:38:43','2015-08-29 14:46:03',1,30000138,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,3,0,1,0,0,0),(2534,'2015-03-10 22:38:43','2015-08-29 14:46:03',1,30002372,0,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(2535,'2015-03-10 22:38:43','2015-03-10 22:38:43',1,30001146,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(2536,'2015-03-10 22:38:43','2015-03-10 22:38:43',1,30004832,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(2537,'2015-03-10 22:38:43','2015-03-10 22:38:43',1,30000090,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(2538,'2015-03-10 22:38:43','2015-08-29 14:46:03',1,30001731,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(2539,'2015-03-10 22:38:43','2015-08-29 14:46:03',1,30002396,1,0,0,0,0,2,0,2,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0),(2540,'2015-03-10 22:38:43','2015-03-10 22:38:43',1,30004294,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(2541,'2015-03-10 22:38:43','2015-08-29 14:46:03',1,30002527,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,1,0,0,0,0,0,1,0,0),(2542,'2015-03-10 22:38:43','2015-03-10 22:38:43',1,30003377,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(2543,'2015-03-10 22:38:43','2015-08-29 14:46:03',1,30002208,0,0,0,0,0,0,0,1,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0),(2544,'2015-03-10 22:38:43','2015-03-10 22:38:43',1,30003445,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(2545,'2015-03-10 22:38:43','2015-03-10 22:38:43',1,30003094,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(2546,'2015-03-10 22:38:43','2015-08-29 14:46:03',1,30001655,0,0,0,1,2,1,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0),(2547,'2015-03-10 22:38:43','2015-08-29 14:46:03',1,30005053,0,0,0,0,0,0,0,1,0,0,0,0,0,1,1,1,0,1,0,0,0,1,0,0),(2548,'2015-03-10 22:38:43','2015-03-10 22:38:43',1,30000895,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(2549,'2015-03-10 22:38:43','2015-08-29 14:46:03',1,30045343,1,0,0,1,1,1,2,0,0,6,0,2,0,3,0,1,1,0,0,0,1,1,4,0),(2550,'2015-03-10 22:38:43','2015-08-29 14:46:03',1,30005246,0,0,0,0,0,0,0,0,1,0,0,1,0,0,0,0,0,0,0,0,1,0,0,0),(2551,'2015-03-10 22:38:43','2015-08-29 14:46:03',1,30002793,0,1,1,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,1,2,0,0,0),(2552,'2015-03-10 22:38:43','2015-08-29 14:46:03',1,30002788,0,0,4,0,1,2,0,1,0,5,5,7,0,0,7,9,4,3,1,3,0,0,5,0),(2553,'2015-03-10 22:38:43','2015-08-29 14:46:03',1,30000182,0,0,2,3,2,1,0,2,1,15,0,1,0,1,0,1,2,0,0,1,1,1,0,0),(2554,'2015-03-10 22:38:43','2015-08-29 14:46:03',1,30002072,0,0,1,0,1,0,0,0,0,1,1,0,0,3,1,0,0,0,0,0,1,1,1,0),(2555,'2015-03-10 22:38:43','2015-08-29 14:46:03',1,30004982,3,1,2,1,1,1,0,0,3,1,0,0,1,0,1,1,3,0,0,0,1,3,1,0),(2556,'2015-03-10 22:38:43','2015-03-10 22:38:43',1,30002672,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(2557,'2015-03-10 22:38:43','2015-08-29 14:46:03',1,30002559,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0),(2558,'2015-03-10 22:38:43','2015-03-10 22:38:43',1,30004102,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(2559,'2015-03-10 22:38:43','2015-08-29 14:46:03',1,30045316,2,3,5,3,3,0,1,2,1,1,1,1,1,0,0,2,4,2,8,4,0,3,0,0),(2560,'2015-03-10 22:38:43','2015-08-29 14:46:03',1,30002738,1,1,0,0,0,0,0,0,0,0,0,0,0,1,2,1,0,0,1,1,0,0,0,0),(2561,'2015-03-10 22:38:43','2015-08-29 14:46:03',1,30003740,0,0,0,0,0,0,0,0,1,0,0,0,0,2,1,0,1,0,0,0,0,0,0,0),(2562,'2015-03-10 22:38:43','2015-08-29 14:46:03',1,30003788,0,0,1,1,1,0,0,0,0,1,1,1,1,1,1,0,0,2,1,2,0,0,0,0),(2563,'2015-03-10 22:38:43','2015-08-29 14:46:03',1,30003219,0,0,0,0,0,0,0,0,0,0,0,0,0,2,0,0,0,0,0,0,0,0,0,0),(2564,'2015-03-10 22:38:43','2015-03-10 22:38:43',1,30001991,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(2565,'2015-03-10 22:38:43','2015-08-29 14:46:03',1,30002439,0,0,1,0,0,0,0,0,0,1,1,0,0,3,0,0,2,3,0,3,0,0,1,0),(2566,'2015-03-10 22:38:43','2015-08-29 14:46:03',1,30000062,0,0,0,2,1,0,0,3,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(2567,'2015-03-10 22:38:43','2015-03-10 22:38:43',1,30001843,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(2568,'2015-03-10 22:38:43','2015-03-10 22:38:43',1,30004726,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(2569,'2015-03-10 22:38:43','2015-08-29 14:46:03',1,30000252,1,0,1,0,0,2,0,2,2,0,0,1,3,0,0,0,0,0,0,0,1,1,0,0),(2570,'2015-03-10 22:38:43','2015-08-29 14:46:03',1,30003861,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,0,0,0,0),(2571,'2015-03-10 22:38:43','2015-08-29 14:46:03',1,30003176,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(2572,'2015-03-10 22:38:43','2015-08-29 14:46:03',1,30000277,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0),(2573,'2015-03-10 22:38:43','2015-03-10 22:38:43',1,30003140,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(2574,'2015-03-10 22:38:43','2015-08-29 14:46:03',1,30004556,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(2575,'2015-03-10 22:38:43','2015-08-29 14:46:03',1,30045317,0,0,2,0,0,1,0,0,0,1,0,0,0,0,0,0,1,1,4,1,1,2,1,0),(2576,'2015-03-10 22:38:43','2015-03-10 22:38:43',1,30002333,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(2577,'2015-03-10 22:38:43','2015-03-10 22:38:43',1,30002595,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(2578,'2015-03-10 22:38:43','2015-08-29 14:46:03',1,30003452,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(2579,'2015-03-10 22:38:43','2015-08-29 14:46:03',1,30002792,0,0,0,0,0,1,5,0,3,0,0,0,1,0,0,0,1,0,1,1,0,2,2,0),(2580,'2015-03-10 22:38:43','2015-08-29 14:46:03',1,30003935,0,0,0,0,0,0,0,0,0,2,1,0,1,0,0,0,1,0,0,0,0,0,0,0),(2581,'2015-03-10 22:38:43','2015-03-10 22:38:43',1,30003524,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(2582,'2015-03-10 22:38:43','2015-08-29 14:46:03',1,30002192,1,1,0,3,3,0,3,0,0,0,0,0,0,0,1,1,7,1,0,0,0,1,0,0),(2583,'2015-03-10 22:38:43','2015-08-29 14:46:03',1,30001696,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,2,0,1,0),(2584,'2015-03-10 22:38:43','2015-08-29 14:46:03',1,30000073,0,0,0,0,0,3,1,0,0,0,1,0,1,1,1,0,0,4,0,0,0,0,2,0),(2585,'2015-03-10 22:38:43','2015-03-10 22:38:43',1,30002331,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(2586,'2015-03-10 22:38:43','2015-08-29 14:46:03',1,30001236,0,0,0,0,0,0,0,0,0,4,0,0,0,0,1,1,0,0,0,0,0,0,0,0),(2587,'2015-03-10 22:38:43','2015-08-29 14:46:03',1,30002276,0,0,0,0,0,0,0,0,1,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0),(2588,'2015-03-10 22:38:43','2015-08-29 14:46:03',1,30001389,3,6,0,2,0,1,0,0,0,5,2,0,0,6,8,5,2,2,4,6,0,1,2,0),(2589,'2015-03-10 22:38:43','2015-08-29 14:46:03',1,30002739,0,1,0,0,0,1,0,0,0,0,0,0,0,1,1,0,0,0,0,0,0,0,0,0),(2590,'2015-03-10 22:38:43','2015-08-29 14:46:03',1,30002087,0,0,1,0,0,0,2,0,1,2,1,0,2,1,0,1,0,0,0,13,0,3,3,0),(2591,'2015-03-10 22:38:43','2015-08-29 14:46:03',1,30002815,0,0,0,0,0,1,0,0,0,0,0,0,0,1,1,0,0,0,0,0,1,0,0,0),(2592,'2015-03-10 22:38:43','2015-08-29 14:46:03',1,30005014,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(2593,'2015-03-10 22:38:43','2015-08-29 14:46:03',1,30002546,0,0,0,0,0,0,0,0,0,0,0,0,1,3,3,0,0,0,1,1,0,0,1,0),(2594,'2015-03-10 22:38:43','2015-08-29 14:46:03',1,30000165,0,0,0,3,3,3,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0),(2595,'2015-03-10 22:38:43','2015-08-29 14:46:03',1,30000093,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0),(2596,'2015-03-10 22:38:43','2015-08-29 14:46:03',1,30002756,4,5,3,2,2,3,0,2,2,2,0,3,4,6,8,5,1,4,9,4,1,3,1,0),(2597,'2015-03-10 22:38:43','2015-03-10 22:38:43',1,30004243,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(2598,'2015-03-10 22:38:43','2015-08-29 14:46:03',1,30001436,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0),(2599,'2015-03-10 22:38:43','2015-08-29 14:46:03',1,30001387,0,0,0,1,1,0,0,0,0,0,2,1,0,0,0,0,1,1,0,0,0,1,1,0),(2600,'2015-03-10 22:38:43','2015-08-29 14:46:03',1,30001365,0,0,1,0,0,1,0,0,0,0,0,1,0,0,0,0,2,0,0,1,1,0,1,0),(2601,'2015-03-10 22:38:43','2015-08-29 14:46:03',1,30002804,0,0,0,1,1,0,0,0,4,0,0,0,0,0,0,0,0,1,0,0,0,0,1,0),(2602,'2015-03-10 22:38:43','2015-08-29 14:46:03',1,30001426,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,1,0,1,0),(2603,'2015-03-10 22:38:43','2015-08-29 14:46:03',1,30001397,0,0,0,0,0,1,0,1,1,0,0,1,1,0,0,0,2,0,0,0,0,0,0,0),(2604,'2015-03-10 22:38:43','2015-08-29 14:46:03',1,30002402,0,0,0,0,0,0,0,0,0,5,5,0,0,0,1,1,0,0,0,0,0,0,0,0),(2605,'2015-03-10 22:38:43','2015-08-29 14:46:03',1,30002777,1,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(2606,'2015-03-10 22:38:43','2015-08-29 14:46:03',1,30001726,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,0,0,0,0),(2607,'2015-03-10 22:38:43','2015-03-10 22:38:43',1,30000285,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(2608,'2015-03-10 22:38:43','2015-08-29 14:46:03',1,30000119,1,0,1,0,0,3,0,0,2,0,0,0,0,0,0,0,0,3,1,1,0,0,1,0),(2609,'2015-03-10 22:38:43','2015-08-29 14:46:03',1,30004157,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(2610,'2015-03-10 22:38:43','2015-08-29 14:46:03',1,30005256,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0),(2611,'2015-03-10 22:38:43','2015-03-10 22:38:43',1,30002985,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(2612,'2015-03-10 22:38:43','2015-03-10 22:38:43',1,30005169,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(2613,'2015-03-10 22:38:43','2015-08-29 14:46:03',1,30002886,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(2614,'2015-03-10 22:38:43','2015-03-10 22:38:43',1,30002594,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(2615,'2015-03-10 22:38:43','2015-08-29 14:46:03',1,30002524,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,1,0,0),(2616,'2015-03-10 22:38:43','2015-08-29 14:46:03',1,30001656,0,0,0,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(2617,'2015-03-10 22:38:43','2015-03-10 22:38:43',1,30003813,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(2618,'2015-03-10 22:38:43','2015-03-10 22:38:43',1,30000622,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(2619,'2015-03-10 22:38:43','2015-08-29 14:46:03',1,30045351,0,0,0,0,0,2,1,1,0,0,0,0,1,0,1,1,1,0,2,3,2,1,2,0),(2620,'2015-03-10 22:38:43','2015-08-29 14:46:03',1,30003765,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(2621,'2015-03-10 22:38:43','2015-03-10 22:38:43',1,30000956,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(2622,'2015-03-10 22:38:43','2015-08-29 14:46:03',1,30002642,1,1,0,0,0,1,1,1,1,2,2,1,0,0,0,1,0,0,0,0,0,0,1,0),(2623,'2015-03-10 22:38:43','2015-03-10 22:38:43',1,30004535,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(2624,'2015-03-10 22:38:43','2015-08-29 14:46:03',1,30001812,0,4,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,0,0,0,0,0),(2625,'2015-03-10 22:38:43','2015-03-10 22:38:43',1,30004905,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(2626,'2015-03-10 22:38:43','2015-03-10 22:38:43',1,30004162,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(2627,'2015-03-10 22:38:43','2015-08-29 14:46:03',1,30001920,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0),(2628,'2015-03-10 22:38:43','2015-08-29 14:46:03',1,30001977,0,0,0,0,0,1,0,1,0,0,0,1,1,2,0,0,0,0,1,1,1,0,1,0),(2629,'2015-03-10 22:38:43','2015-03-10 22:38:43',1,30003206,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(2630,'2015-03-10 22:38:43','2015-08-29 14:46:03',1,30000847,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(2631,'2015-03-10 22:38:43','2015-03-10 22:38:43',1,30001505,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(2632,'2015-03-10 22:38:43','2015-03-10 22:38:43',1,30000489,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(2633,'2015-03-10 22:38:43','2015-08-29 14:46:03',1,30004755,0,0,0,0,0,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0),(2634,'2015-03-10 22:38:43','2015-03-10 22:38:43',1,30002887,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(2635,'2015-03-10 22:38:43','2015-03-10 22:38:43',1,30001195,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(2636,'2015-03-10 22:38:43','2015-03-10 22:38:43',1,30002026,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(2637,'2015-03-10 22:38:43','2015-03-10 22:38:43',1,30002174,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(2638,'2015-03-10 22:38:43','2015-03-10 22:38:43',1,30004215,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(2639,'2015-03-10 22:38:43','2015-08-29 14:46:03',1,30004637,0,0,0,0,0,0,0,0,3,10,7,2,2,2,0,2,7,3,0,4,0,0,0,0),(2640,'2015-03-10 22:38:43','2015-03-10 22:38:43',1,30003142,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(2641,'2015-03-10 22:38:43','2015-03-10 22:38:43',1,30000594,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(2642,'2015-03-10 22:38:43','2015-03-10 22:38:43',1,30004410,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(2643,'2015-03-10 22:38:43','2015-03-10 22:38:43',1,30000390,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(2644,'2015-03-10 22:38:43','2015-03-10 22:38:43',1,30000366,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(2645,'2015-03-10 22:38:43','2015-03-10 22:38:43',1,30001112,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(2646,'2015-03-10 22:38:43','2015-08-29 14:46:03',1,30000843,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(2647,'2015-03-10 22:38:43','2015-03-10 22:38:43',1,30001456,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(2648,'2015-03-10 22:38:43','2015-08-29 14:46:03',1,30003634,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0),(2649,'2015-03-10 22:38:43','2015-03-10 22:38:43',1,30002942,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(2650,'2015-03-10 22:38:43','2015-03-10 22:38:43',1,30004513,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(2651,'2015-03-10 22:38:43','2015-08-29 14:46:04',1,30000677,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0),(2652,'2015-03-10 22:38:43','2015-03-10 22:38:43',1,30000386,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(2653,'2015-03-10 22:38:43','2015-08-29 14:46:04',1,30001750,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(2654,'2015-03-10 22:38:43','2015-08-29 14:46:04',1,30001043,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(2655,'2015-03-10 22:38:43','2015-03-10 22:38:43',1,30004373,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(2656,'2015-03-10 22:38:43','2015-08-29 14:46:04',1,30004589,0,1,0,5,5,3,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0),(2657,'2015-03-10 22:38:43','2015-08-29 14:46:04',1,30001941,0,0,1,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(2658,'2015-03-10 22:38:43','2015-08-29 14:46:04',1,30001230,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,34,18,0,0,0,0),(2659,'2015-03-10 22:38:43','2015-03-10 22:38:43',1,30000538,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(2660,'2015-03-10 22:38:43','2015-08-29 14:46:04',1,30001013,0,0,0,1,1,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(2661,'2015-03-10 22:38:43','2015-03-10 22:38:43',1,30002285,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(2662,'2015-03-10 22:38:43','2015-03-10 22:38:43',1,30001800,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(2663,'2015-03-10 22:38:43','2015-08-29 14:46:04',1,30004312,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(2664,'2015-03-10 22:38:43','2015-08-29 14:46:04',1,30004385,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0),(2665,'2015-03-10 22:38:43','2015-03-10 22:38:43',1,30004460,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(2666,'2015-03-10 22:38:43','2015-03-10 22:38:43',1,30005158,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(2667,'2015-03-10 22:38:43','2015-03-10 22:38:43',1,30004514,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(2668,'2015-03-10 22:38:43','2015-03-10 22:38:43',1,30001055,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(2669,'2015-03-10 22:38:43','2015-08-29 14:46:04',1,30001225,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0),(2670,'2015-03-10 22:38:43','2015-03-10 22:38:43',1,30003864,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(2671,'2015-03-10 22:38:43','2015-08-29 14:46:04',1,30000148,0,0,0,1,1,0,0,0,1,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0),(2672,'2015-03-10 22:38:43','2015-03-10 22:38:43',1,30004125,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(2673,'2015-03-10 22:38:43','2015-08-29 14:46:04',1,30003554,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,2,0,0,0,0),(2674,'2015-03-10 22:38:43','2015-03-10 22:38:43',1,30001050,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(2675,'2015-03-10 22:38:43','2015-08-29 14:46:04',1,30001385,1,1,2,1,1,1,11,2,4,1,1,0,1,0,0,0,0,1,0,2,0,2,2,0),(2676,'2015-03-10 22:38:43','2015-08-29 14:46:04',1,30000071,0,0,1,0,0,0,0,0,0,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0),(2677,'2015-03-10 22:38:43','2015-03-10 22:38:43',1,30000060,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(2678,'2015-03-10 22:38:43','2015-08-29 14:46:04',1,30000082,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,3,0,0),(2679,'2015-03-10 22:38:43','2015-03-10 22:38:43',1,30000004,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(2680,'2015-03-10 22:38:43','2015-03-10 22:38:43',1,30003080,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(2681,'2015-03-10 22:38:43','2015-08-29 14:46:04',1,30002263,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,1,1,0),(2682,'2015-03-10 22:38:43','2015-08-29 14:46:04',1,30001653,0,0,0,0,0,0,5,0,0,0,0,0,0,0,0,0,0,0,0,0,58,0,1,0),(2683,'2015-03-10 22:38:43','2015-08-29 14:46:04',1,30003029,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,1,0,2,0,0,0,0,0,0),(2684,'2015-03-10 22:38:43','2015-08-29 14:46:04',1,30004241,1,0,0,0,0,0,1,2,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0),(2685,'2015-03-10 22:38:43','2015-03-10 22:38:43',1,30003551,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(2686,'2015-03-10 22:38:43','2015-08-29 14:46:04',1,30000121,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,1,0,0,0,0,0,0,0),(2687,'2015-03-10 22:38:43','2015-08-29 14:46:04',1,30003107,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0),(2688,'2015-03-10 22:38:43','2015-03-10 22:38:43',1,30002564,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(2689,'2015-03-10 22:38:43','2015-03-10 22:38:43',1,30002336,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(2690,'2015-03-10 22:38:43','2015-08-29 14:46:04',1,30000045,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0),(2691,'2015-03-10 22:38:43','2015-08-29 14:46:04',1,30000022,1,2,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(2692,'2015-03-10 22:38:43','2015-03-10 22:38:43',1,30000381,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(2693,'2015-03-10 22:38:43','2015-03-10 22:38:43',1,30001777,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(2694,'2015-03-10 22:38:43','2015-08-29 14:46:04',1,30001185,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,1,1,0,0,0,0),(2695,'2015-03-10 22:38:43','2015-08-29 14:46:04',1,30001971,0,0,0,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(2696,'2015-03-10 22:38:43','2015-08-29 14:46:04',1,30003148,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0),(2697,'2015-03-10 22:38:43','2015-03-10 22:38:43',1,30002112,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(2698,'2015-03-10 22:38:43','2015-08-29 14:46:04',1,30002006,0,1,0,0,0,0,1,0,1,0,0,0,0,0,0,1,0,0,0,0,0,1,0,0),(2699,'2015-03-10 22:38:43','2015-03-10 22:38:43',1,30004192,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(2700,'2015-03-10 22:38:43','2015-03-10 22:38:43',1,30002500,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(2701,'2015-03-10 22:38:43','2015-08-29 14:46:04',1,30005083,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,1,0),(2702,'2015-03-10 22:38:43','2015-08-29 14:46:04',1,30003760,0,0,0,1,1,0,0,0,1,0,0,0,0,3,0,0,0,0,0,0,0,1,0,0),(2703,'2015-03-10 22:38:43','2015-08-29 14:46:04',1,30002692,0,0,0,0,0,0,0,0,1,1,0,0,2,3,0,0,0,0,0,0,0,0,0,0),(2704,'2015-03-10 22:38:43','2015-08-29 14:46:04',1,30005033,0,0,0,0,0,0,1,1,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0),(2705,'2015-03-10 22:38:43','2015-03-10 22:38:43',1,30004148,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(2706,'2015-03-10 22:38:43','2015-03-10 22:38:43',1,30000608,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(2707,'2015-03-10 22:38:43','2015-08-29 14:46:04',1,30002748,1,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(2708,'2015-03-10 22:38:43','2015-03-10 22:38:43',1,30004281,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(2709,'2015-03-10 22:38:43','2015-08-29 14:46:04',1,30002254,0,0,0,0,1,0,0,0,0,0,0,1,0,0,0,1,0,0,6,2,0,0,0,0),(2710,'2015-03-10 22:38:43','2015-08-29 14:46:04',1,30004132,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0),(2711,'2015-03-10 22:38:43','2015-08-29 14:46:04',1,30003532,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,0,0,0,0),(2712,'2015-03-10 22:38:43','2015-03-10 22:38:43',1,30000451,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(2713,'2015-03-10 22:38:43','2015-03-10 22:38:43',1,30001451,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(2714,'2015-03-10 22:38:43','2015-03-10 22:38:43',1,30004575,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(2715,'2015-03-10 22:38:43','2015-08-29 14:46:04',1,30001243,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,0,0,0),(2716,'2015-03-10 22:38:43','2015-08-29 14:46:04',1,30003285,0,6,6,0,2,0,1,0,0,0,0,0,11,0,0,0,2,0,1,0,0,1,1,0),(2717,'2015-03-10 22:38:43','2015-03-10 22:38:43',1,30003661,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(2718,'2015-03-10 22:38:43','2015-08-29 14:46:04',1,30004667,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,0,0,0,0),(2719,'2015-03-10 22:38:43','2015-03-10 22:38:43',1,30004435,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(2720,'2015-03-10 22:38:43','2015-03-10 22:38:43',1,30004839,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(2721,'2015-03-10 22:38:43','2015-08-29 14:46:04',1,30001706,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,0,0,0,0,0,0),(2722,'2015-03-10 22:38:43','2015-08-29 14:46:04',1,30005046,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(2723,'2015-03-10 22:38:43','2015-08-29 14:46:04',1,30000142,32,116,63,49,29,28,25,15,22,18,18,13,23,36,34,23,21,44,41,26,30,37,24,0),(2724,'2015-03-10 22:38:43','2015-08-29 14:46:04',1,30004684,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0),(2725,'2015-03-10 22:38:43','2015-03-10 22:38:43',1,30004836,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(2726,'2015-03-10 22:38:43','2015-03-10 22:38:43',1,30004515,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(2727,'2015-03-10 22:38:43','2015-08-29 14:46:04',1,30002150,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0),(2728,'2015-03-10 22:38:43','2015-03-10 22:38:43',1,30001636,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(2729,'2015-03-10 22:38:43','2015-03-10 22:38:43',1,30001593,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(2730,'2015-03-10 22:38:43','2015-08-29 14:46:04',1,30001556,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0),(2731,'2015-03-10 22:38:43','2015-08-29 14:46:04',1,30000708,1,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(2732,'2015-03-10 22:38:43','2015-03-10 22:38:43',1,30005161,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(2733,'2015-03-10 22:38:43','2015-08-29 14:46:04',1,30000662,0,0,0,3,2,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(2734,'2015-03-10 22:38:43','2015-03-10 22:38:43',1,30001542,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(2735,'2015-03-10 22:38:43','2015-08-29 14:46:04',1,30004462,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,3,0,0,0,0,0,0,0),(2736,'2015-03-10 22:38:43','2015-08-29 14:46:04',1,30004086,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0),(2737,'2015-03-10 22:38:43','2015-03-10 22:38:43',1,30000078,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(2738,'2015-03-10 22:38:43','2015-08-29 14:46:04',1,30004974,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,1,0),(2739,'2015-03-10 22:38:43','2015-08-29 14:46:04',1,30002679,0,0,0,0,0,0,0,0,1,1,0,0,1,0,0,0,0,0,0,0,0,0,0,0),(2740,'2015-03-10 22:38:43','2015-08-29 14:46:04',1,30003387,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,0,0,0,0,0,0,0,0),(2741,'2015-03-10 22:38:43','2015-08-29 14:46:04',1,30002210,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(2742,'2015-03-10 22:38:43','2015-08-29 14:46:04',1,30004088,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0),(2743,'2015-03-10 22:38:43','2015-08-29 14:46:04',1,30001046,0,0,0,0,0,0,0,0,0,2,1,1,2,0,0,0,0,1,1,0,0,0,1,0),(2744,'2015-03-10 22:38:43','2015-08-29 14:46:04',1,30002567,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0),(2745,'2015-03-10 22:38:43','2015-08-29 14:46:04',1,30000156,0,2,0,2,4,2,5,1,27,6,5,11,11,4,12,19,26,9,16,22,18,31,33,0),(2746,'2015-03-10 22:38:43','2015-08-29 14:46:04',1,30003447,0,0,0,0,0,0,0,0,0,0,0,0,2,0,0,0,0,0,0,0,0,0,0,0),(2747,'2015-03-10 22:38:43','2015-08-29 14:46:04',1,30001423,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0),(2748,'2015-03-10 22:38:43','2015-08-29 14:46:04',1,30011392,3,15,9,8,6,7,4,7,10,8,11,7,14,11,11,15,11,10,10,16,10,14,7,0),(2749,'2015-03-10 22:38:43','2015-08-29 14:46:04',1,30005321,3,0,1,0,0,0,0,0,0,1,0,1,0,1,3,2,1,0,0,1,1,0,0,0),(2750,'2015-03-10 22:38:43','2015-08-29 14:46:04',1,30004731,0,0,0,0,0,0,0,0,0,1,0,1,0,0,0,0,0,0,0,0,0,0,0,0),(2751,'2015-03-10 22:38:43','2015-03-10 22:38:43',1,30005136,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(2752,'2015-03-10 22:38:43','2015-08-29 14:46:04',1,30000901,0,0,0,1,0,0,0,0,0,0,2,1,0,1,0,0,0,0,1,0,0,2,0,0),(2753,'2015-03-10 22:38:43','2015-03-10 22:38:43',1,30000363,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(2754,'2015-03-10 22:38:43','2015-03-10 22:38:43',1,30000548,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(2755,'2015-03-10 22:38:43','2015-03-10 22:38:43',1,30004330,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(2756,'2015-03-10 22:38:43','2015-08-29 14:46:04',1,30001851,0,0,1,1,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0),(2757,'2015-03-10 22:38:43','2015-03-10 22:38:43',1,30001494,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(2758,'2015-03-10 22:38:43','2015-08-29 14:46:04',1,30003664,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0),(2759,'2015-03-10 22:38:43','2015-03-10 22:38:43',1,30002821,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(2760,'2015-03-10 22:38:43','2015-03-10 22:38:43',1,30002323,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(2761,'2015-03-10 22:38:43','2015-08-29 14:46:04',1,30004324,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(2762,'2015-03-10 22:38:43','2015-08-29 14:46:04',1,30002911,0,0,0,1,1,1,0,1,0,0,0,1,1,1,2,1,0,0,1,1,0,0,0,0),(2763,'2015-03-10 22:38:43','2015-03-10 22:38:43',1,30001937,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(2764,'2015-03-10 22:38:43','2015-08-29 14:46:04',1,30000051,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,2,0,0),(2765,'2015-03-10 22:38:43','2015-03-10 22:38:43',1,30001738,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(2766,'2015-03-10 22:38:43','2015-08-29 14:46:04',1,30001743,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(2767,'2015-03-10 22:38:43','2015-08-29 14:46:04',1,30005308,0,0,2,0,0,1,0,1,1,2,1,0,1,0,1,1,0,1,0,0,1,4,0,0),(2768,'2015-03-10 22:38:43','2015-08-29 14:46:04',1,30000987,0,0,0,1,2,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(2769,'2015-03-10 22:38:43','2015-03-10 22:38:43',1,30003083,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(2770,'2015-03-10 22:38:43','2015-08-29 14:46:04',1,30003016,0,0,0,0,0,0,3,0,0,2,1,0,0,0,0,0,0,0,0,0,1,0,0,0),(2771,'2015-03-10 22:38:43','2015-08-29 14:46:04',1,30003013,0,0,0,0,0,0,0,0,0,0,0,2,0,0,0,0,0,0,0,0,0,0,1,0),(2772,'2015-03-10 22:38:43','2015-03-10 22:38:43',1,30001315,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(2773,'2015-03-10 22:38:43','2015-08-29 14:46:04',1,30002803,0,5,3,0,0,1,4,9,0,1,0,0,2,2,2,3,5,1,3,0,3,1,0,0),(2774,'2015-03-10 22:38:43','2015-08-29 14:46:04',1,30004883,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,1,0),(2775,'2015-03-10 22:38:43','2015-08-29 14:46:04',1,30001567,0,0,0,0,0,0,0,0,0,1,1,0,0,0,2,2,0,0,0,0,0,0,0,0),(2776,'2015-03-10 22:38:43','2015-08-29 14:46:04',1,30001948,0,2,0,0,0,0,0,1,1,0,0,3,0,1,0,0,0,0,0,0,0,0,0,0),(2777,'2015-03-10 22:38:43','2015-08-29 14:46:04',1,30001007,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(2778,'2015-03-10 22:38:43','2015-08-29 14:46:04',1,30001190,0,0,0,0,0,0,0,0,0,2,2,0,0,3,1,1,0,0,1,0,0,1,1,0),(2779,'2015-03-10 22:38:43','2015-03-10 22:38:43',1,30001793,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(2780,'2015-03-10 22:38:43','2015-03-10 22:38:43',1,30001495,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(2781,'2015-03-10 22:38:43','2015-03-10 22:38:43',1,30003264,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(2782,'2015-03-10 22:38:43','2015-03-10 22:38:43',1,30000640,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(2783,'2015-03-10 22:38:43','2015-03-10 22:38:43',1,30005135,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(2784,'2015-03-10 22:38:43','2015-03-10 22:38:43',1,30004952,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(2785,'2015-03-10 22:38:43','2015-03-10 22:38:43',1,30000325,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(2786,'2015-03-10 22:38:43','2015-08-29 14:46:04',1,30004912,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,2,2,0,0,0,0),(2787,'2015-03-10 22:38:43','2015-03-10 22:38:43',1,30005120,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(2788,'2015-03-10 22:38:43','2015-08-29 14:46:04',1,30004751,0,0,0,0,0,0,0,1,0,1,1,0,0,0,0,0,0,0,0,1,0,0,0,0),(2789,'2015-03-10 22:38:43','2015-03-10 22:38:43',1,30000890,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(2790,'2015-03-10 22:38:43','2015-08-29 14:46:04',1,30004379,0,0,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0),(2791,'2015-03-10 22:38:43','2015-08-29 14:46:04',1,30004490,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,0,0,0,0),(2792,'2015-03-10 22:38:43','2015-08-29 14:46:04',1,30001011,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0),(2793,'2015-03-10 22:38:43','2015-03-10 22:38:43',1,30003969,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(2794,'2015-03-10 22:38:43','2015-03-10 22:38:43',1,30001550,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(2795,'2015-03-10 22:38:43','2015-08-29 14:46:04',1,30001000,0,5,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(2796,'2015-03-10 22:38:43','2015-03-10 22:38:43',1,30004475,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(2797,'2015-03-10 22:38:43','2015-08-29 14:46:04',1,30003982,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0),(2798,'2015-03-10 22:38:43','2015-08-29 14:46:04',1,30001006,0,0,0,0,0,0,0,0,1,0,0,0,0,1,0,0,2,0,0,0,0,0,0,0),(2799,'2015-03-10 22:38:43','2015-08-29 14:46:04',1,30001026,1,3,2,0,0,1,0,0,1,3,3,2,1,4,8,7,6,0,0,1,3,6,6,0),(2800,'2015-03-10 22:38:43','2015-03-10 22:38:43',1,30000631,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(2801,'2015-03-10 22:38:43','2015-08-29 14:46:04',1,30004421,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,0,0,0,0),(2802,'2015-03-10 22:38:43','2015-03-10 22:38:43',1,30001543,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(2803,'2015-03-10 22:38:43','2015-03-10 22:38:43',1,30003998,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(2804,'2015-03-10 22:38:43','2015-03-10 22:38:43',1,30001572,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(2805,'2015-03-10 22:38:43','2015-03-10 22:38:43',1,30003972,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(2806,'2015-03-10 22:38:43','2015-03-10 22:38:43',1,30001172,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(2807,'2015-03-10 22:38:43','2015-08-29 14:46:04',1,30003758,0,0,1,0,0,0,0,0,0,0,0,0,0,3,10,8,0,0,0,0,0,1,0,0),(2808,'2015-03-10 22:38:43','2015-08-29 14:46:04',1,30003764,1,0,0,0,0,2,0,0,0,2,2,0,0,4,10,7,0,0,0,0,1,0,0,0),(2809,'2015-03-10 22:38:43','2015-03-10 22:38:43',1,30000665,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(2810,'2015-03-10 22:38:43','2015-08-29 14:46:04',1,30002464,0,0,0,0,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(2811,'2015-03-10 22:38:43','2015-08-29 14:46:04',1,30001274,0,0,6,0,0,2,1,0,2,2,2,1,0,0,0,0,0,1,4,0,0,2,1,0),(2812,'2015-03-10 22:38:43','2015-08-29 14:46:04',1,30004017,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(2813,'2015-03-10 22:38:43','2015-08-29 14:46:04',1,30002447,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,2,1,0),(2814,'2015-03-10 22:38:43','2015-08-29 14:46:04',1,30001762,0,0,0,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(2815,'2015-03-10 22:38:43','2015-08-29 14:46:04',1,30003687,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(2816,'2015-03-10 22:38:43','2015-08-29 14:46:04',1,30003279,0,4,0,1,1,1,0,2,1,7,7,1,7,6,4,3,0,0,0,0,0,0,0,0),(2817,'2015-03-10 22:38:43','2015-08-29 14:46:04',1,30002900,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0),(2818,'2015-03-10 22:38:43','2015-08-29 14:46:04',1,30000659,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0),(2819,'2015-03-10 22:38:43','2015-08-29 14:46:04',1,30001238,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,0,0,0,0),(2820,'2015-03-10 22:38:43','2015-08-29 14:46:04',1,30002872,0,0,3,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(2821,'2015-03-10 22:38:43','2015-03-10 22:38:43',1,30000369,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(2822,'2015-03-10 22:38:43','2015-08-29 14:46:04',1,30003950,1,16,0,2,0,0,0,0,0,1,1,0,0,1,0,0,0,0,0,0,0,0,0,0),(2823,'2015-03-10 22:38:43','2015-03-10 22:38:43',1,30000510,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(2824,'2015-03-10 22:38:43','2015-03-10 22:38:43',1,30000653,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(2825,'2015-03-10 22:38:43','2015-03-10 22:38:43',1,30001040,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(2826,'2015-03-10 22:38:43','2015-03-10 22:38:43',1,30004572,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(2827,'2015-03-10 22:38:43','2015-08-29 14:46:04',1,30000244,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(2828,'2015-03-10 22:38:43','2015-03-10 22:38:43',1,30002873,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(2829,'2015-03-10 22:38:43','2015-08-29 14:46:04',1,30001231,0,0,0,0,0,1,0,0,0,0,0,0,2,0,1,1,0,3,0,0,0,0,4,0),(2830,'2015-03-10 22:38:43','2015-08-29 14:46:04',1,30002789,1,4,3,2,5,2,15,0,0,1,0,0,0,0,0,0,1,1,0,0,1,2,1,0),(2831,'2015-03-10 22:38:43','2015-03-10 22:38:43',1,30002417,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(2832,'2015-03-10 22:38:43','2015-08-29 14:46:04',1,30004095,0,0,0,0,0,0,2,1,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0),(2833,'2015-03-10 22:38:43','2015-03-10 22:38:43',1,30003873,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(2834,'2015-03-10 22:38:43','2015-08-29 14:46:04',1,30002751,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0),(2835,'2015-03-10 22:38:43','2015-08-29 14:46:04',1,30003887,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(2836,'2015-03-10 22:38:43','2015-08-29 14:46:04',1,30001405,1,1,3,0,1,2,1,2,0,0,0,0,0,0,0,0,0,1,0,0,3,3,1,0),(2837,'2015-03-10 22:38:43','2015-03-10 22:38:43',1,30002747,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(2838,'2015-03-10 22:38:43','2015-08-29 14:46:04',1,30004115,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,4,0,0,0,0,0,1,0),(2839,'2015-03-10 22:38:43','2015-08-29 14:46:04',1,30003069,7,15,10,5,8,5,6,12,0,0,3,4,2,1,1,0,0,0,5,4,1,0,0,0),(2840,'2015-03-10 22:38:43','2015-08-29 14:46:04',1,30004239,0,0,1,0,0,1,0,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(2841,'2015-03-10 22:38:43','2015-08-29 14:46:04',1,30002782,1,2,3,1,0,3,2,2,3,0,0,1,2,1,3,5,1,0,0,7,2,0,1,0),(2842,'2015-03-10 22:38:43','2015-08-29 14:46:04',1,30001406,5,0,1,1,1,0,2,2,1,1,0,1,2,2,2,0,0,1,0,3,0,1,2,0),(2843,'2015-03-10 22:38:43','2015-08-29 14:46:04',1,30021392,0,0,0,0,0,0,0,0,1,0,0,0,0,2,1,0,0,0,0,1,0,1,0,0),(2844,'2015-03-10 22:38:43','2015-08-29 14:46:04',1,30004306,0,0,0,0,0,0,0,0,0,0,0,0,0,38,0,0,0,0,0,0,0,0,0,0),(2845,'2015-03-10 22:38:43','2015-08-29 14:46:04',1,30001742,0,0,0,1,1,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0),(2846,'2015-03-10 22:38:43','2015-08-29 14:46:04',1,30001440,0,1,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0),(2847,'2015-03-10 22:38:43','2015-08-29 14:46:04',1,30004134,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(2848,'2015-03-10 22:38:43','2015-08-29 14:46:04',1,30000030,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0),(2849,'2015-03-10 22:38:43','2015-08-29 14:46:04',1,30002761,0,0,0,0,1,0,1,3,6,0,0,1,1,4,4,2,0,0,1,0,1,3,0,0),(2850,'2015-03-10 22:38:43','2015-03-10 22:38:43',1,30002416,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(2851,'2015-03-10 22:38:43','2015-08-29 14:46:04',1,30002580,0,0,0,0,0,1,0,0,0,0,0,0,0,0,1,1,0,0,0,0,1,1,0,0),(2852,'2015-03-10 22:38:43','2015-08-29 14:46:04',1,30002797,0,3,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,0,0,0,0,0),(2853,'2015-03-10 22:38:43','2015-03-10 22:38:43',1,30002749,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(2854,'2015-03-10 22:38:43','2015-08-29 14:46:04',1,30000018,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(2855,'2015-03-10 22:38:43','2015-03-10 22:38:43',1,30001242,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(2856,'2015-03-10 22:38:43','2015-03-10 22:38:43',1,30004794,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(2857,'2015-03-10 22:38:43','2015-08-29 14:46:04',1,30003729,0,0,0,0,7,1,1,1,5,0,1,1,1,2,3,4,7,1,3,17,1,2,1,0),(2858,'2015-03-10 22:38:43','2015-08-29 14:46:04',1,30002178,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,5,0,0,0,0),(2859,'2015-03-10 22:38:43','2015-08-29 14:46:04',1,30004579,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,0,0,0),(2860,'2015-03-10 22:38:43','2015-08-29 14:46:04',1,30000737,0,5,0,1,1,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0),(2861,'2015-03-10 22:38:43','2015-08-29 14:46:04',1,30001164,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(2862,'2015-03-10 22:38:43','2015-03-10 22:38:43',1,30000736,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(2863,'2015-03-10 22:38:43','2015-03-10 22:38:43',1,30002027,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(2864,'2015-03-10 22:38:43','2015-03-10 22:38:43',1,30000519,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(2865,'2015-03-10 22:38:43','2015-03-10 22:38:43',1,30004295,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(2866,'2015-03-10 22:38:43','2015-08-29 14:46:04',1,30003883,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,3,0,0,0,2,0,0),(2867,'2015-03-10 22:38:43','2015-03-10 22:38:43',1,30003239,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(2868,'2015-03-10 22:38:43','2015-08-29 14:46:04',1,30045346,11,3,14,3,7,7,6,11,3,0,1,0,2,10,3,3,7,4,7,6,4,2,8,0),(2869,'2015-03-10 22:38:43','2015-03-10 22:38:43',1,30004772,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(2870,'2015-03-10 22:38:43','2015-08-29 14:46:04',1,30045308,3,7,1,2,1,1,0,0,1,0,0,1,0,0,0,0,1,4,4,3,8,5,6,0),(2871,'2015-03-10 22:38:43','2015-08-29 14:46:04',1,30002193,1,1,0,0,0,0,1,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0),(2872,'2015-03-10 22:38:43','2015-03-10 22:38:43',1,30000098,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(2873,'2015-03-10 22:38:43','2015-08-29 14:46:04',1,30000176,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0),(2874,'2015-03-10 22:38:43','2015-03-10 22:38:43',1,30003999,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(2875,'2015-03-10 22:38:43','2015-08-29 14:46:04',1,30005206,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(2876,'2015-03-10 22:38:43','2015-08-29 14:46:04',1,30004237,0,0,1,0,0,0,1,0,1,0,0,1,0,1,2,2,0,0,0,0,0,0,0,0),(2877,'2015-03-10 22:38:43','2015-08-29 14:46:04',1,30003823,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0),(2878,'2015-03-10 22:38:43','2015-08-29 14:46:04',1,30000116,0,0,0,3,3,0,0,0,2,0,0,0,0,0,0,0,7,2,2,0,0,0,1,0),(2879,'2015-03-10 22:38:43','2015-08-29 14:46:04',1,30005078,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0),(2880,'2015-03-10 22:38:43','2015-03-10 22:38:43',1,30001623,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(2881,'2015-03-10 22:38:43','2015-03-10 22:38:43',1,30011672,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(2882,'2015-03-10 22:38:43','2015-08-29 14:46:04',1,30005260,0,0,0,0,0,0,0,0,0,0,0,1,0,0,1,1,0,0,0,0,1,0,0,0),(2883,'2015-03-10 22:38:43','2015-03-10 22:38:43',1,30005066,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(2884,'2015-03-10 22:38:43','2015-08-29 14:46:04',1,30005220,0,0,1,0,1,0,0,0,1,0,1,0,0,1,0,0,0,0,0,0,0,0,0,0),(2885,'2015-03-10 22:38:43','2015-08-29 14:46:04',1,30001682,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,4,2,0,1,0),(2886,'2015-03-10 22:38:43','2015-03-10 22:38:43',1,30001515,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(2887,'2015-03-10 22:38:43','2015-03-10 22:38:43',1,30004709,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(2888,'2015-03-10 22:38:43','2015-08-29 14:46:04',1,30003343,0,1,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,3,0,0,0,0,0,0),(2889,'2015-03-10 22:38:43','2015-03-10 22:38:43',1,30001790,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(2890,'2015-03-10 22:38:43','2015-03-10 22:38:43',1,30002296,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(2891,'2015-03-10 22:38:43','2015-03-10 22:38:43',1,30003190,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(2892,'2015-03-10 22:38:43','2015-03-10 22:38:43',1,30001240,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(2893,'2015-03-10 22:38:43','2015-08-29 14:46:04',1,30005032,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(2894,'2015-03-10 22:38:43','2015-08-29 14:46:04',1,30000117,3,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,1,1,0),(2895,'2015-03-10 22:38:43','2015-03-10 22:38:43',1,30004096,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(2896,'2015-03-10 22:38:43','2015-03-10 22:38:43',1,30003863,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(2897,'2015-03-10 22:38:43','2015-08-29 14:46:04',1,30000056,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,0,0),(2898,'2015-03-10 22:38:43','2015-08-29 14:46:04',1,30003486,0,0,0,0,0,0,0,0,1,1,1,0,0,0,0,0,0,0,0,0,1,11,0,0),(2899,'2015-03-10 22:38:43','2015-08-29 14:46:04',1,30004258,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0),(2900,'2015-03-10 22:38:43','2015-08-29 14:46:04',1,30003490,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,3,0,0,0,0,0,0,1,0),(2901,'2015-03-10 22:38:43','2015-03-10 22:38:43',1,30001969,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(2902,'2015-03-10 22:38:43','2015-08-29 14:46:04',1,30004209,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0),(2903,'2015-03-10 22:38:43','2015-08-29 14:46:04',1,30000189,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(2904,'2015-03-10 22:38:43','2015-03-10 22:38:43',1,30001692,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(2905,'2015-03-10 22:38:43','2015-08-29 14:46:04',1,30000024,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0),(2906,'2015-03-10 22:38:43','2015-03-10 22:38:43',1,30004176,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(2907,'2015-03-10 22:38:43','2015-03-10 22:38:43',1,30003860,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(2908,'2015-03-10 22:38:43','2015-08-29 14:46:04',1,30045314,0,8,1,3,3,5,2,7,1,13,13,3,5,4,3,2,4,3,3,2,5,4,2,0),(2909,'2015-03-10 22:38:43','2015-08-29 14:46:04',1,30001372,5,0,0,41,63,0,0,0,0,1,1,0,1,0,0,0,0,0,3,0,0,0,4,0),(2910,'2015-03-10 22:38:43','2015-08-29 14:46:04',1,30001410,0,1,0,1,0,0,0,0,1,5,4,0,0,0,0,0,0,1,0,0,0,0,0,0),(2911,'2015-03-10 22:38:43','2015-08-29 14:46:04',1,30001360,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,1,0,1,0,0,0,2,0,0),(2912,'2015-03-10 22:38:43','2015-08-29 14:46:04',1,30000141,2,6,5,4,4,3,5,2,4,2,2,6,6,2,1,1,3,1,4,1,0,0,1,0),(2913,'2015-03-10 22:38:43','2015-08-29 14:46:04',1,30005056,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0),(2914,'2015-03-10 22:38:43','2015-03-10 22:38:43',1,30004376,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(2915,'2015-03-10 22:38:43','2015-08-29 14:46:04',1,30004488,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(2916,'2015-03-10 22:38:43','2015-08-29 14:46:04',1,30001264,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,0,0,0,3,0,1,0),(2917,'2015-03-10 22:38:43','2015-08-29 14:46:04',1,30004340,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(2918,'2015-03-10 22:38:43','2015-08-29 14:46:04',1,30003458,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(2919,'2015-03-10 22:38:43','2015-08-29 14:46:04',1,30002414,0,0,1,0,0,0,0,0,0,0,0,0,0,1,0,0,2,0,0,1,2,1,0,0),(2920,'2015-03-10 22:38:43','2015-03-10 22:38:43',1,30002566,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(2921,'2015-03-10 22:38:43','2015-08-29 14:46:04',1,30001020,0,0,1,0,0,0,0,0,0,1,1,0,6,0,0,0,0,1,4,1,0,0,0,0),(2922,'2015-03-10 22:38:43','2015-08-29 14:46:04',1,30002097,0,0,0,0,0,0,0,0,2,1,0,3,2,3,2,1,2,2,1,1,2,1,0,0),(2923,'2015-03-10 22:38:43','2015-08-29 14:46:04',1,30001980,3,1,0,2,0,0,0,1,0,0,0,0,4,0,0,0,0,0,0,0,0,1,1,0),(2924,'2015-03-10 22:38:43','2015-08-29 14:46:04',1,30003344,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,8,0,0,0,0),(2925,'2015-03-10 22:38:43','2015-03-10 22:38:43',1,30004316,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(2926,'2015-03-10 22:38:43','2015-08-29 14:46:04',1,30002311,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,1,1,0,0,0,0),(2927,'2015-03-10 22:38:43','2015-03-10 22:38:43',1,30004375,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(2928,'2015-03-10 22:38:43','2015-03-10 22:38:43',1,30003625,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(2929,'2015-03-10 22:38:43','2015-03-10 22:38:43',1,30001485,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(2930,'2015-03-10 22:38:43','2015-08-29 14:46:04',1,30002248,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0),(2931,'2015-03-10 22:38:43','2015-08-29 14:46:04',1,30005247,0,0,0,0,0,1,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,3,2,0),(2932,'2015-03-10 22:38:43','2015-08-29 14:46:04',1,30005124,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(2933,'2015-03-10 22:38:43','2015-08-29 14:46:04',1,30003092,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0),(2934,'2015-03-10 22:38:43','2015-08-29 14:46:04',1,30031392,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,1,0),(2935,'2015-03-10 22:38:43','2015-08-29 14:46:04',1,30002737,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,1,0,0,0,0,0,0),(2936,'2015-03-10 22:38:43','2015-08-29 14:46:04',1,30003471,0,1,1,1,1,2,0,0,0,1,1,0,0,0,0,0,0,0,0,1,0,0,1,0),(2937,'2015-03-10 22:38:43','2015-03-10 22:38:43',1,30004128,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(2938,'2015-03-10 22:38:43','2015-03-10 22:38:43',1,30004152,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(2939,'2015-03-10 22:38:43','2015-08-29 14:46:04',1,30005038,0,0,1,0,0,1,1,0,0,0,0,0,0,0,1,2,1,0,0,1,1,5,1,0),(2940,'2015-03-10 22:38:43','2015-08-29 14:46:04',1,30001394,1,0,1,0,0,0,1,0,0,0,0,0,0,0,0,0,1,0,3,5,0,0,1,0),(2941,'2015-03-10 22:38:43','2015-08-29 14:46:04',1,30045312,0,0,1,2,3,0,0,0,1,0,0,0,1,0,0,0,0,3,2,1,1,0,0,0),(2942,'2015-03-10 22:38:43','2015-08-29 14:46:04',1,30005258,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(2943,'2015-03-10 22:38:43','2015-08-29 14:46:04',1,30000181,2,0,0,2,1,0,1,2,1,6,12,0,0,0,0,0,2,0,0,2,0,0,3,0),(2944,'2015-03-10 22:38:43','2015-08-29 14:46:04',1,30004103,0,0,0,0,0,5,0,0,0,8,0,0,0,1,1,0,0,0,0,0,0,0,0,0),(2945,'2015-03-10 22:38:43','2015-08-29 14:46:04',1,30003068,5,4,19,21,22,14,8,1,9,7,8,4,7,4,3,5,23,5,5,9,7,11,21,0),(2946,'2015-03-10 22:38:43','2015-03-10 22:38:43',1,30001901,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(2947,'2015-03-10 22:38:43','2015-03-10 22:38:43',1,30001536,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(2948,'2015-03-10 22:38:43','2015-08-29 14:46:04',1,30001963,0,0,0,0,0,0,0,0,0,2,0,0,0,0,1,1,0,0,0,0,0,0,0,0),(2949,'2015-03-10 22:38:43','2015-03-10 22:38:43',1,30002452,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(2950,'2015-03-10 22:38:43','2015-03-10 22:38:43',1,30004895,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(2951,'2015-03-10 22:38:43','2015-08-29 14:46:04',1,30022547,0,0,0,0,0,0,0,0,0,1,0,0,1,0,0,0,0,0,1,1,0,0,0,0),(2952,'2015-03-10 22:38:43','2015-08-29 14:46:04',1,30002079,0,0,0,0,0,0,0,1,1,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0),(2953,'2015-03-10 22:38:43','2015-08-29 14:46:04',1,30002519,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0),(2954,'2015-03-10 22:38:43','2015-08-29 14:46:04',1,30002286,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0),(2955,'2015-03-10 22:38:43','2015-03-10 22:38:43',1,30000246,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(2956,'2015-03-10 22:38:43','2015-08-29 14:46:04',1,30000807,0,0,0,0,0,0,2,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(2957,'2015-03-10 22:38:43','2015-03-10 22:38:43',1,30001589,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(2958,'2015-03-10 22:38:43','2015-03-10 22:38:43',1,30003177,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(2959,'2015-03-10 22:38:43','2015-08-29 14:46:04',1,30003300,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0),(2960,'2015-03-10 22:38:43','2015-08-29 14:46:04',1,30004698,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(2961,'2015-03-10 22:38:43','2015-03-10 22:38:43',1,30002042,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(2962,'2015-03-10 22:38:43','2015-08-29 14:46:04',1,30002767,0,4,0,0,0,0,0,0,0,3,1,1,2,3,1,0,1,0,0,1,1,0,0,0),(2963,'2015-03-10 22:38:43','2015-08-29 14:46:04',1,30003501,1,3,0,0,0,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(2964,'2015-03-10 22:38:43','2015-08-29 14:46:04',1,30000021,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0),(2965,'2015-03-10 22:38:43','2015-08-29 14:46:04',1,30003926,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0),(2966,'2015-03-10 22:38:43','2015-08-29 14:46:04',1,30002771,1,0,0,3,1,0,0,0,0,2,1,0,0,0,0,0,0,0,1,1,1,4,1,0),(2967,'2015-03-10 22:38:43','2015-08-29 14:46:04',1,30005050,0,0,0,0,0,0,1,2,1,1,2,0,0,0,0,0,0,0,0,0,0,0,0,0),(2968,'2015-03-10 22:38:43','2015-08-29 14:46:04',1,30001415,0,0,0,0,0,0,0,0,1,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0),(2969,'2015-03-10 22:38:43','2015-08-29 14:46:04',1,30003066,0,0,1,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(2970,'2015-03-10 22:38:43','2015-03-10 22:38:43',1,30003096,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(2971,'2015-03-10 22:38:43','2015-08-29 14:46:04',1,30003089,0,0,1,0,0,0,0,0,2,4,3,0,2,0,2,6,0,2,3,1,1,3,1,0),(2972,'2015-03-10 22:38:43','2015-08-29 14:46:04',1,30002802,2,0,1,0,1,0,0,0,0,0,0,1,0,2,0,0,0,0,1,0,0,3,0,0),(2973,'2015-03-10 22:38:43','2015-03-10 22:38:43',1,30004348,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(2974,'2015-03-10 22:38:43','2015-08-29 14:46:04',1,30004642,0,0,0,0,0,0,0,0,0,7,7,1,0,0,0,1,0,1,0,5,0,1,0,0),(2975,'2015-03-10 22:38:43','2015-03-10 22:38:43',1,30003635,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(2976,'2015-03-10 22:38:43','2015-08-29 14:46:04',1,30001180,0,0,0,0,0,1,0,0,1,1,0,0,0,1,0,0,0,1,0,0,0,0,0,0),(2977,'2015-03-10 22:38:43','2015-08-29 14:46:04',1,30004833,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(2978,'2015-03-10 22:38:43','2015-03-10 22:38:43',1,30000269,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(2979,'2015-03-10 22:38:43','2015-03-10 22:38:43',1,30000347,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(2980,'2015-03-10 22:38:43','2015-03-10 22:38:43',1,30000124,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(2981,'2015-03-10 22:38:43','2015-08-29 14:46:04',1,30000498,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0),(2982,'2015-03-10 22:38:43','2015-08-29 14:46:04',1,30000710,0,0,0,1,0,0,1,0,0,0,0,0,0,0,1,1,0,0,0,0,0,0,0,0),(2983,'2015-03-10 22:38:43','2015-08-29 14:46:04',1,30000874,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(2984,'2015-03-10 22:38:43','2015-08-29 14:46:04',1,30004593,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(2985,'2015-03-10 22:38:43','2015-03-10 22:38:43',1,30002142,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(2986,'2015-03-10 22:38:43','2015-08-29 14:46:04',1,30003951,0,0,0,0,0,0,0,0,1,0,0,0,0,2,0,1,0,0,0,0,0,0,0,0),(2987,'2015-03-10 22:38:43','2015-03-10 22:38:43',1,30003970,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(2988,'2015-03-10 22:38:43','2015-08-29 14:46:04',1,30004625,0,0,0,0,0,0,0,0,0,0,1,2,1,0,0,0,4,0,0,0,0,0,0,0),(2989,'2015-03-10 22:38:43','2015-08-29 14:46:04',1,30001945,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0),(2990,'2015-03-10 22:38:43','2015-08-29 14:46:04',1,30004910,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0),(2991,'2015-03-10 22:38:43','2015-03-10 22:38:43',1,30001223,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(2992,'2015-03-10 22:38:43','2015-08-29 14:46:04',1,30003689,0,1,2,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(2993,'2015-03-10 22:38:43','2015-03-10 22:38:43',1,30000357,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(2994,'2015-03-10 22:38:43','2015-08-29 14:46:04',1,30001592,0,0,0,0,0,0,0,0,1,6,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(2995,'2015-03-10 22:38:43','2015-08-29 14:46:04',1,30000540,0,4,1,0,0,0,0,0,2,4,0,1,0,0,0,0,0,0,0,0,6,12,1,0),(2996,'2015-03-10 22:38:43','2015-03-10 22:38:43',1,30004018,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(2997,'2015-03-10 22:38:43','2015-08-29 14:46:04',1,30002847,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(2998,'2015-03-10 22:38:43','2015-08-29 14:46:04',1,30002434,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,0,0,0,0),(2999,'2015-03-10 22:38:43','2015-03-10 22:38:43',1,30001350,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(3000,'2015-03-10 22:38:43','2015-03-10 22:38:43',1,30000528,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(3001,'2015-03-10 22:38:43','2015-08-29 14:46:04',1,30003168,0,0,0,0,0,0,0,3,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(3002,'2015-03-10 22:38:43','2015-03-10 22:38:43',1,30003643,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(3003,'2015-03-10 22:38:43','2015-03-10 22:38:43',1,30005163,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(3004,'2015-03-10 22:38:43','2015-03-10 22:38:43',1,30000467,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(3005,'2015-03-10 22:38:43','2015-08-29 14:46:04',1,30003684,0,2,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(3006,'2015-03-10 22:38:43','2015-03-10 22:38:43',1,30000430,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(3007,'2015-03-10 22:38:43','2015-08-29 14:46:04',1,30002842,1,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(3008,'2015-03-10 22:38:43','2015-08-29 14:46:04',1,30002470,0,0,0,0,0,0,0,0,0,0,7,0,0,0,0,0,1,0,0,0,1,0,0,0),(3009,'2015-03-10 22:38:43','2015-03-10 22:38:43',1,30001499,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(3010,'2015-03-10 22:38:43','2015-08-29 14:46:04',1,30001989,0,0,0,0,0,0,3,0,0,0,1,2,0,0,0,1,0,0,0,0,0,0,2,0),(3011,'2015-03-10 22:38:43','2015-08-29 14:46:04',1,30000891,0,0,0,0,0,0,0,0,3,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(3012,'2015-03-10 22:38:43','2015-03-10 22:38:43',1,30001526,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(3013,'2015-03-10 22:38:43','2015-03-10 22:38:43',1,30004927,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(3014,'2015-03-10 22:38:43','2015-03-10 22:38:43',1,30000605,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(3015,'2015-03-10 22:38:43','2015-03-10 22:38:43',1,30004203,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(3016,'2015-03-10 22:38:43','2015-03-10 22:38:43',1,30002300,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(3017,'2015-03-10 22:38:43','2015-03-10 22:38:43',1,30001876,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(3018,'2015-03-10 22:38:43','2015-03-10 22:38:43',1,30000968,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(3019,'2015-03-10 22:38:43','2015-03-10 22:38:43',1,30001809,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(3020,'2015-03-10 22:38:43','2015-03-10 22:38:43',1,30004827,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(3021,'2015-03-10 22:38:43','2015-08-29 14:46:04',1,30004003,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0),(3022,'2015-03-10 22:38:43','2015-03-10 22:38:43',1,30004526,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(3023,'2015-03-10 22:38:43','2015-08-29 14:46:04',1,30002376,0,3,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(3024,'2015-03-10 22:38:43','2015-03-10 22:38:43',1,30002435,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(3025,'2015-03-10 22:38:43','2015-08-29 14:46:04',1,30000786,0,0,0,0,0,4,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0),(3026,'2015-03-10 22:38:43','2015-03-10 22:38:43',1,30004944,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(3027,'2015-03-10 22:38:43','2015-03-10 22:38:43',1,30005179,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(3028,'2015-03-10 22:38:43','2015-03-10 22:38:43',1,30001928,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(3029,'2015-03-10 22:38:43','2015-03-10 22:38:43',1,30002607,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(3030,'2015-03-10 22:38:43','2015-03-10 22:38:43',1,30000354,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(3031,'2015-03-10 22:38:43','2015-08-29 14:46:04',1,30004659,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0),(3032,'2015-03-10 22:38:43','2015-03-10 22:38:43',1,30001560,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(3033,'2015-03-10 22:38:43','2015-08-29 14:46:04',1,30001174,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0),(3034,'2015-03-10 22:38:43','2015-03-10 22:38:43',1,30000462,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(3035,'2015-03-10 22:38:43','2015-08-29 14:46:04',1,30003255,1,0,2,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(3036,'2015-03-10 22:38:43','2015-08-29 14:46:04',1,30041392,0,1,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(3037,'2015-03-10 22:38:43','2015-08-29 14:46:04',1,30002976,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,1,0,0,2,1,0,0,0,0),(3038,'2015-03-10 22:38:43','2015-03-10 22:38:43',1,30000029,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(3039,'2015-03-10 22:38:43','2015-08-29 14:46:04',1,30002989,0,0,0,0,0,0,0,0,0,0,0,0,0,0,4,4,0,0,0,0,0,0,0,0),(3040,'2015-03-10 22:38:43','2015-08-29 14:46:04',1,30004999,7,4,1,6,4,1,2,1,0,3,1,2,1,1,0,2,0,3,0,1,1,1,2,0),(3041,'2015-03-10 22:38:43','2015-08-29 14:46:04',1,30003519,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,1,0,0,0,0),(3042,'2015-03-10 22:38:43','2015-08-29 14:46:04',1,30003049,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0),(3043,'2015-03-10 22:38:43','2015-08-29 14:46:04',1,30003063,5,0,7,1,1,0,9,1,15,7,7,6,5,46,51,52,2,11,47,24,23,9,2,0),(3044,'2015-03-10 22:38:43','2015-08-29 14:46:04',1,30002722,0,0,0,0,0,0,0,0,0,0,0,0,2,3,2,0,0,0,1,0,1,2,0,0),(3045,'2015-03-10 22:38:43','2015-08-29 14:46:04',1,30002074,1,0,1,1,0,1,0,0,1,0,0,0,0,4,2,0,0,3,0,0,5,0,2,0),(3046,'2015-03-10 22:38:43','2015-08-29 14:46:04',1,30003882,0,0,0,2,2,0,0,0,0,0,0,0,0,0,1,1,0,1,0,0,0,0,1,0),(3047,'2015-03-10 22:38:43','2015-08-29 14:46:04',1,30002540,0,0,0,0,0,0,0,0,2,1,3,6,1,3,0,2,3,1,0,4,0,2,0,0),(3048,'2015-03-10 22:38:43','2015-08-29 14:46:04',1,30001712,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,0,0,0),(3049,'2015-03-10 22:38:43','2015-08-29 14:46:04',1,30032547,0,2,0,0,0,0,0,0,0,0,0,0,2,0,0,0,0,0,0,0,0,1,1,0),(3050,'2015-03-10 22:38:43','2015-03-10 22:38:43',1,30003579,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(3051,'2015-03-10 22:38:43','2015-08-29 14:46:04',1,30000002,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,2,0,0),(3052,'2015-03-10 22:38:43','2015-03-10 22:38:43',1,30003549,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(3053,'2015-03-10 22:38:43','2015-08-29 14:46:04',1,30002065,0,0,0,0,0,0,1,0,0,0,0,1,0,1,0,1,0,1,1,0,2,0,0,0),(3054,'2015-03-10 22:38:43','2015-08-29 14:46:04',1,30005075,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(3055,'2015-03-10 22:38:43','2015-08-29 14:46:04',1,30005002,0,0,0,0,0,0,0,0,0,0,0,0,0,3,0,0,0,0,0,0,0,0,0,0),(3056,'2015-03-10 22:38:43','2015-03-10 22:38:43',1,30004159,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(3057,'2015-03-10 22:38:43','2015-08-29 14:46:04',1,30003592,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(3058,'2015-03-10 22:38:43','2015-03-10 22:38:43',1,30001917,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(3059,'2015-03-10 22:38:43','2015-03-10 22:38:43',1,30002161,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(3060,'2015-03-10 22:38:43','2015-08-29 14:46:04',1,30000683,0,2,0,2,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(3061,'2015-03-10 22:38:43','2015-08-29 14:46:04',1,30004663,0,0,0,0,0,0,0,0,0,1,1,2,1,0,0,0,0,0,0,0,0,0,0,0),(3062,'2015-03-10 22:38:43','2015-03-10 22:38:43',1,30004541,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(3063,'2015-03-10 22:38:43','2015-03-10 22:38:43',1,30001923,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(3064,'2015-03-10 22:38:43','2015-03-10 22:38:43',1,30001605,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(3065,'2015-03-10 22:38:43','2015-03-10 22:38:43',1,30004700,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(3066,'2015-03-10 22:38:43','2015-03-10 22:38:43',1,30002849,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(3067,'2015-03-10 22:38:43','2015-08-29 14:46:04',1,30002932,0,1,0,0,0,0,0,0,0,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0),(3068,'2015-03-10 22:38:43','2015-08-29 14:46:04',1,30005259,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(3069,'2015-03-10 22:38:43','2015-08-29 14:46:04',1,30002865,0,0,1,0,0,1,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,2,0,0),(3070,'2015-03-10 22:38:43','2015-08-29 14:46:04',1,30005233,0,0,0,0,0,1,0,0,1,1,1,0,1,0,0,0,1,1,1,0,1,0,0,0),(3071,'2015-03-10 22:38:43','2015-08-29 14:46:04',1,30003039,0,3,0,0,0,3,0,0,0,0,0,0,0,0,0,0,0,0,1,0,1,0,0,0),(3072,'2015-03-10 22:38:43','2015-08-29 14:46:04',1,30002728,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(3073,'2015-03-10 22:38:43','2015-08-29 14:46:04',1,30003409,0,0,0,0,0,1,0,1,0,1,1,0,0,0,0,0,1,0,0,1,0,0,1,0),(3074,'2015-03-10 22:38:43','2015-08-29 14:46:04',1,30005039,0,0,0,0,0,0,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0),(3075,'2015-03-10 22:38:43','2015-08-29 14:46:04',1,30003759,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,1,0,0,0,1,0,17,0,0),(3076,'2015-03-10 22:38:43','2015-08-29 14:46:04',1,30003172,0,0,0,0,0,0,0,8,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0),(3077,'2015-03-10 22:38:43','2015-03-10 22:38:43',1,30004689,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(3078,'2015-03-10 22:38:43','2015-03-10 22:38:43',1,30001460,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(3079,'2015-03-10 22:38:43','2015-08-29 14:46:04',1,30001833,0,0,0,0,0,0,0,0,1,2,2,0,0,5,4,0,2,3,2,1,0,1,0,0),(3080,'2015-03-10 22:38:43','2015-03-10 22:38:43',1,30001953,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(3081,'2015-03-10 22:38:43','2015-08-29 14:46:04',1,30004505,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,2,0,0,0,0,0,0,0,0),(3082,'2015-03-10 22:38:43','2015-03-10 22:38:43',1,30001507,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(3083,'2015-03-10 22:38:43','2015-03-10 22:38:43',1,30001587,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(3084,'2015-03-10 22:38:43','2015-08-29 14:46:04',1,30001069,0,1,0,0,0,0,0,0,0,0,0,0,3,0,0,0,0,0,0,0,0,0,0,0),(3085,'2015-03-10 22:38:43','2015-03-10 22:38:43',1,30002624,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(3086,'2015-03-10 22:38:43','2015-03-10 22:38:43',1,30001337,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(3087,'2015-03-10 22:38:43','2015-08-29 14:46:04',1,30003421,0,0,0,0,0,0,0,0,3,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(3088,'2015-03-10 22:38:43','2015-08-29 14:46:04',1,30000154,1,0,2,2,2,4,0,2,2,2,0,2,7,6,4,9,9,2,8,15,2,3,5,0),(3089,'2015-03-10 22:38:43','2015-08-29 14:46:04',1,30000020,2,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0),(3090,'2015-03-10 22:38:43','2015-08-29 14:46:04',1,30005087,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,1,1,0,0,0,0),(3091,'2015-03-10 22:38:43','2015-08-29 14:46:04',1,30003459,0,0,0,0,0,0,0,0,0,3,3,0,0,0,0,0,0,0,0,0,0,0,0,0),(3092,'2015-03-10 22:38:43','2015-08-29 14:46:04',1,30003025,0,45,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0),(3093,'2015-03-10 22:38:43','2015-08-29 14:46:04',1,30005007,0,1,1,0,0,0,0,0,1,0,0,0,3,0,0,5,7,1,2,1,1,1,10,0),(3094,'2015-03-10 22:38:43','2015-08-29 14:46:04',1,30002973,1,1,2,0,0,1,0,1,0,0,0,0,0,1,2,1,0,0,0,0,0,1,1,0),(3095,'2015-03-10 22:38:43','2015-08-29 14:46:04',1,30001400,3,5,1,1,0,5,5,2,2,1,6,2,1,0,0,4,1,0,6,2,2,1,2,0),(3096,'2015-03-10 22:38:43','2015-08-29 14:46:04',1,30001048,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,0,1,1,0,0,0,0),(3097,'2015-03-10 22:38:43','2015-08-29 14:46:04',1,30001416,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,0,1,0,0,1,0,0,0),(3098,'2015-03-10 22:38:43','2015-08-29 14:46:04',1,30004630,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0),(3099,'2015-03-10 22:38:43','2015-03-10 22:38:43',1,30000647,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(3100,'2015-03-10 22:38:43','2015-03-10 22:38:43',1,30004641,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(3101,'2015-03-10 22:38:43','2015-08-29 14:46:04',1,30001038,0,0,0,0,0,0,0,0,2,0,0,1,39,2,1,0,0,0,0,2,0,0,0,0),(3102,'2015-03-10 22:38:43','2015-03-10 22:38:43',1,30002604,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(3103,'2015-03-10 22:38:43','2015-08-29 14:46:04',1,30002139,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,0,0,0,0),(3104,'2015-03-10 22:38:43','2015-03-10 22:38:43',1,30000599,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(3105,'2015-03-10 22:38:43','2015-03-10 22:38:43',1,30000615,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(3106,'2015-03-10 22:38:43','2015-08-29 14:46:04',1,30002114,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0),(3107,'2015-03-10 22:38:43','2015-08-29 14:46:04',1,30003973,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,2,0),(3108,'2015-03-10 22:38:43','2015-08-29 14:46:04',1,30001119,0,0,1,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(3109,'2015-03-10 22:38:43','2015-08-29 14:46:04',1,30005300,3,2,0,1,1,1,2,2,0,0,2,3,1,0,0,2,0,0,0,2,2,1,2,0),(3110,'2015-03-10 22:38:43','2015-08-29 14:46:04',1,30042547,0,0,0,1,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(3111,'2015-03-10 22:38:43','2015-08-29 14:46:04',1,30004897,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0),(3112,'2015-03-10 22:38:43','2015-08-29 14:46:04',1,30005193,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0),(3113,'2015-03-10 22:38:43','2015-08-29 14:46:04',1,30001687,0,0,0,1,1,2,0,0,0,1,0,1,0,0,1,1,0,0,0,4,1,0,0,0),(3114,'2015-03-10 22:38:43','2015-08-29 14:46:04',1,30003575,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0),(3115,'2015-03-10 22:38:43','2015-08-29 14:46:04',1,30002996,0,1,1,0,0,0,0,0,0,0,0,0,0,0,3,3,0,0,0,0,0,0,0,0),(3116,'2015-03-10 22:38:43','2015-08-29 14:46:04',1,30000533,0,0,0,1,0,0,0,0,0,0,0,0,1,0,0,0,0,16,1,0,0,0,0,0),(3117,'2015-03-10 22:38:43','2015-03-10 22:38:43',1,30000384,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(3118,'2015-03-10 22:38:43','2015-03-10 22:38:43',1,30002294,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(3119,'2015-03-10 22:38:43','2015-08-29 14:46:04',1,30000649,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0),(3120,'2015-03-10 22:38:43','2015-03-10 22:38:43',1,30004896,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(3121,'2015-03-10 22:38:43','2015-08-29 14:46:04',1,30000704,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,1,1,0,0,0,0),(3122,'2015-03-10 22:38:43','2015-03-10 22:38:43',1,30001601,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(3123,'2015-03-10 22:38:43','2015-03-10 22:38:43',1,30000397,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(3124,'2015-03-10 22:38:43','2015-03-10 22:38:43',1,30003204,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(3125,'2015-03-10 22:38:43','2015-08-29 14:46:04',1,30002493,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0),(3126,'2015-03-10 22:38:43','2015-03-10 22:38:43',1,30004353,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(3127,'2015-03-10 22:38:43','2015-08-29 14:46:04',1,30000319,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0),(3128,'2015-03-10 22:38:43','2015-08-29 14:46:04',1,30004885,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,2,0,0,0,0),(3129,'2015-03-10 22:38:43','2015-03-10 22:38:43',1,30004021,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(3130,'2015-03-10 22:38:43','2015-03-10 22:38:43',1,30002830,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(3131,'2015-03-10 22:38:43','2015-08-29 14:46:04',1,30000300,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,1,1,0),(3132,'2015-03-10 22:38:43','2015-08-29 14:46:04',1,30003334,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(3133,'2015-03-10 22:38:43','2015-08-29 14:46:04',1,30002928,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0),(3134,'2015-03-10 22:38:43','2015-08-29 14:46:04',1,30000466,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(3135,'2015-03-10 22:38:43','2015-03-10 22:38:43',1,30001804,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(3136,'2015-03-10 22:38:43','2015-03-10 22:38:43',1,30002462,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(3137,'2015-03-10 22:38:43','2015-03-10 22:38:43',1,30004747,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(3138,'2015-03-10 22:38:43','2015-03-10 22:38:43',1,30004680,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(3139,'2015-03-10 22:38:43','2015-08-29 14:46:04',1,30002516,1,0,0,0,0,0,0,1,11,3,1,0,0,0,0,2,4,1,0,0,0,1,3,0),(3140,'2015-03-10 22:38:43','2015-08-29 14:46:04',1,30003432,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0),(3141,'2015-03-10 22:38:43','2015-08-29 14:46:04',1,30004967,0,1,0,1,1,0,2,0,0,0,0,1,5,2,1,1,2,0,2,0,7,0,0,0),(3142,'2015-03-10 22:38:43','2015-08-29 14:46:04',1,30002261,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(3143,'2015-03-10 22:38:43','2015-08-29 14:46:04',1,30005316,1,2,0,0,0,0,0,0,0,2,1,0,1,0,0,0,1,1,0,0,0,0,1,0),(3144,'2015-03-10 22:38:43','2015-08-29 14:46:04',1,30002545,1,0,0,0,0,0,0,0,1,0,0,2,0,3,4,2,0,0,0,0,0,0,1,0),(3145,'2015-03-10 22:38:43','2015-08-29 14:46:04',1,30000813,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(3146,'2015-03-10 22:38:43','2015-03-10 22:38:43',1,30005106,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(3147,'2015-03-10 22:38:43','2015-08-29 14:46:04',1,30004800,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,1,2,0),(3148,'2015-03-10 22:38:43','2015-08-29 14:46:04',1,30002458,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(3149,'2015-03-10 22:38:43','2015-08-29 14:46:04',1,30004705,1,0,0,0,0,1,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0),(3150,'2015-03-10 22:38:43','2015-08-29 14:46:04',1,30002355,1,0,1,0,0,0,0,0,2,5,3,3,30,3,1,4,2,0,0,1,2,1,1,0),(3151,'2015-03-10 22:38:43','2015-08-29 14:46:04',1,30000971,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(3152,'2015-03-10 22:38:43','2015-08-29 14:46:04',1,30004364,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0),(3153,'2015-03-10 22:38:43','2015-08-29 14:46:04',1,30001078,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0),(3154,'2015-03-10 22:38:43','2015-08-29 14:46:04',1,30000208,2,1,0,0,0,2,0,0,0,3,1,0,0,0,0,0,0,0,11,0,0,0,0,0),(3155,'2015-03-10 22:38:43','2015-08-29 14:46:04',1,30004823,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0),(3156,'2015-03-10 22:38:43','2015-03-10 22:38:43',1,30002869,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(3157,'2015-03-10 22:38:43','2015-08-29 14:46:04',1,30001995,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0),(3158,'2015-03-10 22:38:43','2015-03-10 22:38:43',1,30002601,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(3159,'2015-03-10 22:38:43','2015-03-10 22:38:43',1,30004449,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(3160,'2015-03-10 22:38:43','2015-03-10 22:38:43',1,30000620,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(3161,'2015-03-10 22:38:43','2015-03-10 22:38:43',1,30000922,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(3162,'2015-03-10 22:38:43','2015-03-10 22:38:43',1,30001479,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(3163,'2015-03-10 22:38:43','2015-03-10 22:38:43',1,30004356,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(3164,'2015-03-10 22:38:43','2015-08-29 14:46:04',1,30004633,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(3165,'2015-03-10 22:38:43','2015-08-29 14:46:04',1,30000591,0,1,0,0,0,0,0,0,0,0,0,0,1,5,2,0,0,0,0,0,0,0,0,0),(3166,'2015-03-10 22:38:43','2015-08-29 14:46:04',1,30000639,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(3167,'2015-03-10 22:38:43','2015-08-29 14:46:04',1,30002428,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0),(3168,'2015-03-10 22:38:43','2015-08-29 14:46:04',1,30000905,0,2,0,0,0,0,0,2,1,0,1,0,1,0,1,1,0,1,1,1,0,0,0,0),(3169,'2015-03-10 22:38:43','2015-08-29 14:46:04',1,30001032,0,1,2,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,2,0,0,0,0),(3170,'2015-03-10 22:38:43','2015-03-10 22:38:43',1,30004511,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(3171,'2015-03-10 22:38:43','2015-08-29 14:46:04',1,30001597,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0),(3172,'2015-03-10 22:38:43','2015-03-10 22:38:43',1,30003200,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(3173,'2015-03-10 22:38:43','2015-08-29 14:46:04',1,30000848,3,4,3,4,3,3,4,2,4,2,14,3,2,0,0,1,0,0,1,13,3,2,1,0),(3174,'2015-03-10 22:38:43','2015-08-29 14:46:04',1,30004478,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(3175,'2015-03-10 22:38:43','2015-08-29 14:46:04',1,30004881,1,0,3,0,0,0,0,0,0,0,1,0,0,0,0,0,0,1,0,0,0,1,4,0),(3176,'2015-03-10 22:38:43','2015-03-10 22:38:43',1,30005140,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(3177,'2015-03-10 22:38:43','2015-08-29 14:46:04',1,30004795,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(3178,'2015-03-10 22:38:43','2015-03-10 22:38:43',1,30003665,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(3179,'2015-03-10 22:38:43','2015-03-10 22:38:43',1,30002377,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(3180,'2015-03-10 22:38:43','2015-03-10 22:38:43',1,30004213,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(3181,'2015-03-10 22:38:43','2015-08-29 14:46:04',1,30002603,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0),(3182,'2015-03-10 22:38:43','2015-03-10 22:38:43',1,30000471,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(3183,'2015-03-10 22:38:43','2015-03-10 22:38:43',1,30002000,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(3184,'2015-03-10 22:38:43','2015-03-10 22:38:43',1,30000953,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(3185,'2015-03-10 22:38:43','2015-03-10 22:38:43',1,30002181,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(3186,'2015-03-10 22:38:43','2015-03-10 22:38:43',1,30004802,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(3187,'2015-03-10 22:38:43','2015-03-10 22:38:43',1,30001747,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(3188,'2015-03-10 22:38:43','2015-03-10 22:38:43',1,30004010,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(3189,'2015-03-10 22:38:43','2015-03-10 22:38:43',1,30001332,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(3190,'2015-03-10 22:38:43','2015-08-29 14:46:04',1,30003284,0,0,0,0,0,0,0,0,0,0,0,0,0,2,2,1,0,0,0,0,0,1,0,0),(3191,'2015-03-10 22:38:43','2015-03-10 22:38:43',1,30004773,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(3192,'2015-03-10 22:38:43','2015-08-29 14:46:04',1,30004461,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,2,1,0,0,0),(3193,'2015-03-10 22:38:43','2015-03-10 22:38:43',1,30002852,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(3194,'2015-03-10 22:38:43','2015-03-10 22:38:43',1,30000556,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(3195,'2015-03-10 22:38:43','2015-03-10 22:38:43',1,30000761,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(3196,'2015-03-10 22:38:43','2015-03-10 22:38:43',1,30005153,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(3197,'2015-03-10 22:38:43','2015-08-29 14:46:04',1,30001754,0,0,1,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0),(3198,'2015-03-10 22:38:43','2015-08-29 14:46:04',1,30004739,0,0,0,0,0,0,1,0,9,1,1,0,7,0,0,2,1,0,0,9,1,0,0,0),(3199,'2015-03-10 22:38:43','2015-03-10 22:38:43',1,30000633,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(3200,'2015-03-10 22:38:43','2015-08-29 14:46:04',1,30005134,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0),(3201,'2015-03-10 22:38:43','2015-03-10 22:38:43',1,30004901,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(3202,'2015-03-10 22:38:43','2015-03-10 22:38:43',1,30002374,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(3203,'2015-03-10 22:38:43','2015-08-29 14:46:04',1,30000681,0,67,0,0,0,0,0,0,0,0,0,0,28,0,0,0,0,0,0,1,0,0,0,0),(3204,'2015-03-10 22:38:43','2015-03-10 22:38:43',1,30001625,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(3205,'2015-03-10 22:38:43','2015-08-29 14:46:04',1,30000998,0,2,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,4,2,0,0,0),(3206,'2015-03-10 22:38:43','2015-03-10 22:38:43',1,30004369,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(3207,'2015-03-10 22:38:43','2015-08-29 14:46:04',1,30000272,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0),(3208,'2015-03-10 22:38:43','2015-03-10 22:38:43',1,30004234,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(3209,'2015-03-10 22:38:43','2015-08-29 14:46:04',1,30002190,0,1,0,0,0,0,0,0,1,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0),(3210,'2015-03-10 22:38:43','2015-08-29 14:46:04',1,30003558,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(3211,'2015-03-10 22:38:43','2015-08-29 14:46:04',1,30003503,16,17,2,14,13,0,6,36,9,0,0,0,11,9,9,13,4,2,1,4,3,1,0,0),(3212,'2015-03-10 22:38:43','2015-08-29 14:46:04',1,30005243,0,0,0,0,0,0,1,1,0,0,0,0,0,0,1,1,0,0,0,0,2,0,1,0),(3213,'2015-03-10 22:38:43','2015-08-29 14:46:04',1,30005064,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(3214,'2015-03-10 22:38:43','2015-08-29 14:46:04',1,30002570,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0),(3215,'2015-03-10 22:38:43','2015-08-29 14:46:04',1,30000096,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,3,0,0),(3216,'2015-03-10 22:38:43','2015-03-10 22:38:43',1,30003520,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(3217,'2015-03-10 22:38:43','2015-08-29 14:46:04',1,30000104,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0),(3218,'2015-03-10 22:38:43','2015-08-29 14:46:04',1,30000122,0,0,0,0,0,0,0,0,1,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0),(3219,'2015-03-10 22:38:43','2015-08-29 14:46:04',1,30003499,2,0,0,0,0,0,0,0,0,0,0,0,2,0,0,0,0,1,1,1,0,0,0,0),(3220,'2015-03-10 22:38:43','2015-03-10 22:38:43',1,30003546,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(3221,'2015-03-10 22:38:43','2015-08-29 14:46:04',1,30000162,0,2,0,2,2,2,0,0,0,0,0,0,1,0,0,0,3,0,0,1,0,1,0,0),(3222,'2015-03-10 22:38:43','2015-08-29 14:46:04',1,30003576,0,0,0,0,0,0,0,0,0,0,0,0,0,5,0,0,0,0,0,0,0,0,0,0),(3223,'2015-03-10 22:38:43','2015-08-29 14:46:04',1,30000047,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0),(3224,'2015-03-10 22:38:43','2015-08-29 14:46:04',1,30005210,0,0,2,0,0,0,1,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,1,0),(3225,'2015-03-10 22:38:43','2015-08-29 14:46:04',1,30001393,0,0,2,2,1,0,1,0,0,0,0,1,0,1,1,1,0,0,1,0,0,1,1,0),(3226,'2015-03-10 22:38:43','2015-03-10 22:38:43',1,30005235,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(3227,'2015-03-10 22:38:43','2015-08-29 14:46:04',1,30003084,0,0,0,0,0,0,0,0,0,0,0,5,0,0,0,0,0,0,0,0,0,0,0,0),(3228,'2015-03-10 22:38:43','2015-08-29 14:46:04',1,30012505,2,3,6,4,8,6,1,8,3,5,2,1,8,9,8,5,1,7,1,10,2,10,5,0),(3229,'2015-03-10 22:38:43','2015-08-29 14:46:04',1,30002242,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(3230,'2015-03-10 22:38:43','2015-08-29 14:46:04',1,30003559,0,1,0,0,0,0,0,1,1,1,1,0,0,3,2,1,0,0,0,0,0,0,2,0),(3231,'2015-03-10 22:38:43','2015-08-29 14:46:04',1,30005201,0,0,0,1,0,0,0,0,0,0,2,2,0,0,0,0,0,0,1,1,0,0,1,0),(3232,'2015-03-10 22:38:43','2015-08-29 14:46:04',1,30005230,1,0,1,0,0,0,1,0,0,0,0,0,0,0,0,0,2,0,0,0,1,0,0,0),(3233,'2015-03-10 22:38:43','2015-08-29 14:46:04',1,30004112,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,2,0,2,0,1,0,0,0),(3234,'2015-03-10 22:38:43','2015-08-29 14:46:04',1,30001658,2,0,0,0,0,0,0,0,0,2,3,1,0,0,0,0,0,1,0,1,0,0,0,0),(3235,'2015-03-10 22:38:43','2015-08-29 14:46:04',1,30002760,0,0,4,3,1,0,1,0,1,0,0,1,1,1,1,0,5,1,2,1,0,1,0,0),(3236,'2015-03-10 22:38:43','2015-08-29 14:46:04',1,30003060,0,1,0,0,0,1,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0),(3237,'2015-03-10 22:38:43','2015-08-29 14:46:04',1,30003855,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,6,0,0),(3238,'2015-03-10 22:38:43','2015-08-29 14:46:04',1,30001388,4,2,2,0,1,2,0,1,1,1,1,1,0,2,4,4,3,2,2,4,2,2,1,0),(3239,'2015-03-10 22:38:43','2015-08-29 14:46:04',1,30004247,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(3240,'2015-03-10 22:38:43','2015-08-29 14:46:04',1,30003024,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,1,0,0,0,1,0),(3241,'2015-03-10 22:38:43','2015-08-29 14:46:04',1,30002194,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,2,0,0,1,0,0,0,0),(3242,'2015-03-10 22:38:43','2015-08-29 14:46:04',1,30001722,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(3243,'2015-03-10 22:38:43','2015-08-29 14:46:04',1,30045318,22,5,4,1,1,2,5,4,9,8,3,4,4,2,0,1,4,2,13,3,4,5,9,0),(3244,'2015-03-10 22:38:43','2015-08-29 14:46:04',1,30005325,1,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(3245,'2015-03-10 22:38:43','2015-08-29 14:46:04',1,30005041,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0),(3246,'2015-03-10 22:38:43','2015-08-29 14:46:04',1,30004235,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0),(3247,'2015-03-10 22:38:43','2015-08-29 14:46:04',1,30003868,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0),(3248,'2015-03-10 22:38:43','2015-08-29 14:46:04',1,30000052,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,2,0,0),(3249,'2015-03-10 22:38:43','2015-03-10 22:38:43',1,30000202,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(3250,'2015-03-10 22:38:43','2015-08-29 14:46:04',1,30003444,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,6,0,0),(3251,'2015-03-10 22:38:43','2015-08-29 14:46:04',1,30003034,0,0,0,0,0,0,0,0,0,0,0,0,0,1,2,1,0,0,0,0,0,0,0,0),(3252,'2015-03-10 22:38:43','2015-08-29 14:46:04',1,30003396,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0),(3253,'2015-03-10 22:38:43','2015-08-29 14:46:04',1,30001654,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0),(3254,'2015-03-10 22:38:43','2015-08-29 14:46:04',1,30000140,0,0,0,0,1,0,1,0,1,0,0,1,2,4,6,2,2,0,3,0,1,0,1,0),(3255,'2015-03-10 22:38:43','2015-08-29 14:46:04',1,30003835,1,4,0,6,2,0,0,1,2,0,0,0,0,4,3,1,3,1,0,1,1,1,0,0),(3256,'2015-03-10 22:38:43','2015-08-29 14:46:04',1,30002213,0,0,0,0,0,0,0,0,0,0,0,0,20,0,0,0,0,0,0,3,0,0,0,0),(3257,'2015-03-10 22:38:43','2015-08-29 14:46:04',1,30001182,0,0,0,0,0,0,0,0,1,2,1,0,0,0,0,0,0,0,0,2,1,0,0,0),(3258,'2015-03-10 22:38:43','2015-08-29 14:46:04',1,30001832,0,1,1,0,0,0,0,0,0,1,0,0,1,9,1,0,0,0,0,0,0,0,0,0),(3259,'2015-03-10 22:38:43','2015-03-10 22:38:43',1,30001818,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(3260,'2015-03-10 22:38:43','2015-03-10 22:38:43',1,30001316,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(3261,'2015-03-10 22:38:43','2015-08-29 14:46:04',1,30000209,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0),(3262,'2015-03-10 22:38:43','2015-03-10 22:38:43',1,30000443,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(3263,'2015-03-10 22:38:43','2015-03-10 22:38:43',1,30001027,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(3264,'2015-03-10 22:38:43','2015-03-10 22:38:43',1,30004398,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(3265,'2015-03-10 22:38:43','2015-08-29 14:46:04',1,30002974,1,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0),(3266,'2015-03-10 22:38:43','2015-03-10 22:38:43',1,30002401,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(3267,'2015-03-10 22:38:43','2015-03-10 22:38:43',1,30003403,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(3268,'2015-03-10 22:38:43','2015-08-29 14:46:04',1,30002525,3,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,1,0,3,0),(3269,'2015-03-10 22:38:43','2015-08-29 14:46:04',1,30005296,2,1,3,1,0,2,1,0,1,2,2,2,8,0,0,1,3,0,2,0,2,3,1,0),(3270,'2015-03-10 22:38:43','2015-08-29 14:46:04',1,30005238,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0),(3271,'2015-03-10 22:38:43','2015-08-29 14:46:04',1,30002986,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0),(3272,'2015-03-10 22:38:43','2015-08-29 14:46:04',1,30004121,0,1,0,0,0,0,0,0,3,0,0,0,0,0,0,0,0,0,0,1,0,1,0,0),(3273,'2015-03-10 22:38:43','2015-08-29 14:46:04',1,30003853,0,0,1,0,0,0,3,0,0,0,0,0,0,0,1,1,0,2,0,0,1,0,1,0),(3274,'2015-03-10 22:38:43','2015-08-29 14:46:04',1,30005303,0,0,0,0,0,1,0,1,0,1,0,0,0,0,0,0,0,0,0,0,0,0,1,0),(3275,'2015-03-10 22:38:43','2015-08-29 14:46:04',1,30003538,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0),(3276,'2015-03-10 22:38:43','2015-08-29 14:46:04',1,30044971,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,1,0,0,0,0),(3277,'2015-03-10 22:38:43','2015-08-29 14:46:04',1,30000164,1,6,7,0,0,0,0,1,0,1,1,0,5,2,1,0,0,8,2,1,0,0,0,0),(3278,'2015-03-10 22:38:43','2015-08-29 14:46:04',1,30004975,0,1,0,0,0,0,0,0,0,1,0,0,3,2,1,0,0,0,0,0,0,0,0,0),(3279,'2015-03-10 22:38:43','2015-08-29 14:46:04',1,30002637,0,2,0,0,0,0,0,0,0,1,0,0,0,0,0,1,0,0,0,0,0,0,0,0),(3280,'2015-03-10 22:38:43','2015-08-29 14:46:04',1,30003568,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0),(3281,'2015-03-10 22:38:43','2015-08-29 14:46:04',1,30003032,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0),(3282,'2015-03-10 22:38:43','2015-03-10 22:38:43',1,30002299,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(3283,'2015-03-10 22:38:43','2015-08-29 14:46:04',1,30004934,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,0,0,0),(3284,'2015-03-10 22:38:43','2015-08-29 14:46:04',1,30000321,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0),(3285,'2015-03-10 22:38:43','2015-08-29 14:46:04',1,30003712,0,0,0,0,0,0,0,0,0,0,0,0,3,0,0,0,1,0,2,1,0,0,1,0),(3286,'2015-03-10 22:38:43','2015-08-29 14:46:04',1,30003268,4,1,0,1,2,0,3,7,0,3,0,1,1,1,0,0,4,6,1,12,4,6,1,0),(3287,'2015-03-10 22:38:43','2015-03-10 22:38:43',1,30001988,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(3288,'2015-03-10 22:38:43','2015-08-29 14:46:04',1,30004113,0,0,0,0,0,0,18,0,1,0,0,0,0,0,0,0,0,0,0,0,0,2,0,0),(3289,'2015-03-10 22:38:43','2015-08-29 14:46:04',1,30003539,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0),(3290,'2015-03-10 22:38:43','2015-08-29 14:46:04',1,30004968,0,0,2,0,1,1,1,1,1,0,0,1,2,5,5,4,1,0,0,0,0,3,0,0),(3291,'2015-03-10 22:38:43','2015-08-29 14:46:04',1,30000046,0,0,0,0,0,0,0,0,0,0,0,0,2,5,6,3,1,0,0,0,4,0,2,0),(3292,'2015-03-10 22:38:43','2015-08-29 14:46:04',1,30002198,0,0,0,0,0,1,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,1,0,0),(3293,'2015-03-10 22:38:43','2015-08-29 14:46:04',1,30002236,0,0,0,2,3,0,0,0,0,0,0,1,0,0,0,0,0,1,0,0,1,0,0,0),(3294,'2015-03-10 22:38:43','2015-08-29 14:46:04',1,30003001,0,1,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0),(3295,'2015-03-10 22:38:43','2015-08-29 14:46:04',1,30000079,0,0,0,0,0,0,0,0,0,0,2,0,0,0,0,0,0,1,0,2,0,0,0,0),(3296,'2015-03-10 22:38:43','2015-08-29 14:46:04',1,30001676,0,0,1,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,3,0),(3297,'2015-03-10 22:38:43','2015-08-29 14:46:04',1,30001691,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0),(3298,'2015-03-10 22:38:43','2015-08-29 14:46:04',1,30002410,1,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,1,1,1,0,0,0),(3299,'2015-03-10 22:38:43','2015-08-29 14:46:04',1,30004153,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0),(3300,'2015-03-10 22:38:43','2015-08-29 14:46:04',1,30002732,0,0,0,0,0,0,0,1,0,0,0,0,1,1,0,0,1,0,7,0,0,0,1,0),(3301,'2015-03-10 22:38:43','2015-08-29 14:46:04',1,30002719,0,3,0,0,1,2,4,0,0,0,0,0,0,0,0,0,0,0,0,0,2,0,0,0),(3302,'2015-03-10 22:38:43','2015-08-29 14:46:04',1,30005084,0,0,0,0,0,0,0,0,0,1,0,0,0,1,0,0,0,0,0,0,0,0,0,0),(3303,'2015-03-10 22:38:43','2015-08-29 14:46:04',1,30003563,1,0,0,1,2,0,0,0,0,1,2,1,0,2,1,1,0,0,0,0,0,1,5,0),(3304,'2015-03-10 22:38:43','2015-08-29 14:46:04',1,30005059,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0),(3305,'2015-03-10 22:38:43','2015-08-29 14:46:04',1,30004251,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(3306,'2015-03-10 22:38:43','2015-08-29 14:46:04',1,30002665,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,1,0,0,7,2,0,0,0,0),(3307,'2015-03-10 22:38:43','2015-08-29 14:46:04',1,30003482,0,0,0,0,0,0,0,0,0,0,1,0,0,1,1,0,0,0,0,0,0,1,0,0),(3308,'2015-03-10 22:38:43','2015-08-29 14:46:04',1,30000120,0,1,1,4,0,0,0,0,2,0,0,0,0,0,0,4,3,1,0,0,0,2,6,0),(3309,'2015-03-10 22:38:43','2015-08-29 14:46:04',1,30002255,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(3310,'2015-03-10 22:38:43','2015-03-10 22:38:43',1,30005133,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(3311,'2015-03-10 22:38:43','2015-08-29 14:46:04',1,30000803,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0),(3312,'2015-03-10 22:38:43','2015-03-10 22:38:43',1,30004899,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(3313,'2015-03-10 22:38:43','2015-08-29 14:46:04',1,30000851,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,2,0,0,0,0,0,0,0),(3314,'2015-03-10 22:38:43','2015-08-29 14:46:04',1,30004743,0,0,0,0,0,2,0,0,0,0,0,3,3,4,4,0,0,0,0,0,0,0,0,0),(3315,'2015-03-10 22:38:43','2015-08-29 14:46:04',1,30004064,1,0,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(3316,'2015-03-10 22:38:43','2015-08-29 14:46:04',1,30004183,0,0,0,0,0,1,0,0,0,0,0,0,2,0,0,0,0,0,0,0,0,1,0,0),(3317,'2015-03-10 22:38:43','2015-03-10 22:38:43',1,30003962,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(3318,'2015-03-10 22:38:43','2015-03-10 22:38:43',1,30000529,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(3319,'2015-03-10 22:38:43','2015-03-10 22:38:43',1,30000539,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(3320,'2015-03-10 22:38:43','2015-08-29 14:46:04',1,30001913,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0),(3321,'2015-03-10 22:38:43','2015-03-10 22:38:43',1,30004913,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(3322,'2015-03-10 22:38:43','2015-08-29 14:46:04',1,30000580,0,0,0,0,0,0,0,0,1,0,0,0,1,0,0,0,5,0,0,2,0,1,2,0),(3323,'2015-03-10 22:38:43','2015-08-29 14:46:04',1,30004618,1,4,1,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(3324,'2015-03-10 22:38:43','2015-03-10 22:38:43',1,30002840,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(3325,'2015-03-10 22:38:43','2015-03-10 22:38:43',1,30000270,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(3326,'2015-03-10 22:38:43','2015-03-10 22:38:43',1,30004765,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(3327,'2015-03-10 22:38:43','2015-08-29 14:46:04',1,30002359,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0),(3328,'2015-03-10 22:38:43','2015-08-29 14:46:04',1,30004223,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0),(3329,'2015-03-10 22:38:43','2015-08-29 14:46:04',1,30003828,1,0,0,1,1,0,0,0,2,0,0,0,7,0,1,1,1,1,2,46,1,2,0,0),(3330,'2015-03-10 22:38:43','2015-08-29 14:46:04',1,30000801,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0),(3331,'2015-03-10 22:38:43','2015-03-10 22:38:43',1,30004136,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(3332,'2015-03-10 22:38:43','2015-03-10 22:38:43',1,30001720,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(3333,'2015-03-10 22:38:43','2015-03-10 22:38:43',1,30000042,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(3334,'2015-03-10 22:38:43','2015-08-29 14:46:04',1,30000031,0,0,0,0,0,1,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,1,0,0),(3335,'2015-03-10 22:38:43','2015-03-10 22:38:43',1,30003876,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(3336,'2015-03-10 22:38:43','2015-03-10 22:38:43',1,30003814,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(3337,'2015-03-10 22:38:43','2015-08-29 14:46:04',1,30003881,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,0,0,0),(3338,'2015-03-10 22:38:43','2015-08-29 14:46:04',1,30005037,0,0,0,0,0,0,0,0,1,1,2,0,1,1,0,0,0,0,0,0,0,1,0,0),(3339,'2015-03-10 22:38:43','2015-08-29 14:46:04',1,30003061,0,1,0,0,0,0,0,0,0,0,1,0,0,0,2,2,0,0,0,0,1,0,0,0),(3340,'2015-03-10 22:38:43','2015-08-29 14:46:04',1,30003011,0,0,0,0,0,0,0,0,1,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0),(3341,'2015-03-10 22:38:43','2015-08-29 14:46:04',1,30003893,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,1,0,0,0,0,0,0,0,0),(3342,'2015-03-10 22:38:43','2015-03-10 22:38:43',1,30001554,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(3343,'2015-03-10 22:38:43','2015-03-10 22:38:43',1,30003443,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(3344,'2015-03-10 22:38:43','2015-08-29 14:46:04',1,30003021,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,0),(3345,'2015-03-10 22:38:43','2015-08-29 14:46:04',1,30002819,0,0,0,1,1,0,0,0,0,0,0,0,1,1,0,0,0,0,0,0,0,0,1,0),(3346,'2015-03-10 22:38:43','2015-03-10 22:38:43',1,30002257,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(3347,'2015-03-10 22:38:43','2015-08-29 14:46:04',1,30001715,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0),(3348,'2015-03-10 22:38:43','2015-08-29 14:46:04',1,30005263,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(3349,'2015-03-10 22:38:43','2015-03-10 22:38:43',1,30004702,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(3350,'2015-03-10 22:38:43','2015-08-29 14:46:04',1,30003699,0,0,2,1,1,0,1,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0),(3351,'2015-03-10 22:38:43','2015-08-29 14:46:04',1,30002035,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(3352,'2015-03-10 22:38:43','2015-08-29 14:46:04',1,30000280,0,0,0,1,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(3353,'2015-03-10 22:38:43','2015-08-29 14:46:04',1,30001278,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(3354,'2015-03-10 22:38:43','2015-08-29 14:46:04',1,30002421,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,4,0,0,0),(3355,'2015-03-10 22:38:43','2015-03-10 22:38:43',1,30005155,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(3356,'2015-03-10 22:38:43','2015-03-10 22:38:43',1,30004861,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(3357,'2015-03-10 22:38:43','2015-08-29 14:46:04',1,30003153,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0),(3358,'2015-03-10 22:38:43','2015-03-10 22:38:43',1,30000774,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(3359,'2015-03-10 22:38:43','2015-08-29 14:46:04',1,30000864,0,0,0,0,0,1,0,2,1,3,3,0,0,0,0,0,1,2,0,0,0,0,0,0),(3360,'2015-03-10 22:38:43','2015-08-29 14:46:04',1,30004464,0,0,0,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(3361,'2015-03-10 22:38:43','2015-03-10 22:38:43',1,30004519,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(3362,'2015-03-10 22:38:43','2015-03-10 22:38:43',1,30002028,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(3363,'2015-03-10 22:38:43','2015-03-10 22:38:43',1,30003197,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(3364,'2015-03-10 22:38:43','2015-08-29 14:46:04',1,30005189,0,0,0,0,0,26,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0),(3365,'2015-03-10 22:38:43','2015-03-10 22:38:43',1,30003056,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(3366,'2015-03-10 22:38:43','2015-08-29 14:46:04',1,30005299,2,3,0,3,2,1,1,0,1,1,0,0,0,1,0,0,0,0,1,0,0,2,0,0),(3367,'2015-03-10 22:38:43','2015-03-10 22:38:43',1,30004129,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(3368,'2015-03-10 22:38:43','2015-08-29 14:46:04',1,30002206,0,0,0,0,0,0,0,0,0,0,0,0,0,5,0,0,0,0,0,0,0,0,0,0),(3369,'2015-03-10 22:38:43','2015-08-29 14:46:04',1,30005295,0,4,1,1,1,0,2,5,0,0,0,0,0,2,5,4,2,0,0,1,0,2,3,0),(3370,'2015-03-10 22:38:43','2015-08-29 14:46:04',1,30004092,0,0,0,0,0,0,0,0,1,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0),(3371,'2015-03-10 22:38:43','2015-08-29 14:46:04',1,30003526,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0),(3372,'2015-03-10 22:38:43','2015-08-29 14:46:04',1,30045334,0,1,1,2,4,3,0,4,3,2,1,3,0,4,8,6,2,0,0,3,3,11,1,0),(3373,'2015-03-10 22:38:43','2015-08-29 14:46:04',1,30002394,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(3374,'2015-03-10 22:38:43','2015-08-29 14:46:04',1,30002780,0,0,1,1,1,0,0,0,0,1,1,0,0,0,0,0,0,0,4,1,2,0,1,0),(3375,'2015-03-10 22:38:43','2015-08-29 14:46:04',1,30001213,0,0,0,0,0,0,0,0,9,5,4,0,0,0,7,9,0,0,2,0,1,0,0,0),(3376,'2015-03-10 22:38:43','2015-08-29 14:46:04',1,30003755,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0),(3377,'2015-03-10 22:38:43','2015-08-29 14:46:04',1,30004966,1,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,0,1,0),(3378,'2015-03-10 22:38:43','2015-08-29 14:46:04',1,30000546,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(3379,'2015-03-10 22:38:43','2015-08-29 14:46:04',1,30002913,0,0,0,0,1,1,0,0,0,0,0,0,0,0,0,0,0,4,0,0,0,0,0,0),(3380,'2015-03-10 22:38:43','2015-03-10 22:38:43',1,30003318,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(3381,'2015-03-10 22:38:43','2015-08-29 14:46:04',1,30000232,0,0,0,1,2,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(3382,'2015-03-10 22:38:43','2015-08-29 14:46:04',1,30001202,0,0,0,0,0,0,0,0,1,0,0,0,2,0,0,0,0,0,0,0,0,0,0,0),(3383,'2015-03-10 22:38:43','2015-08-29 14:46:04',1,30003022,0,1,3,0,0,0,1,0,1,0,0,0,0,0,0,0,1,2,1,0,0,2,2,0),(3384,'2015-03-10 22:38:43','2015-08-29 14:46:04',1,30003075,0,0,0,0,0,0,1,0,1,1,0,0,0,0,0,0,0,0,0,8,0,0,0,0),(3385,'2015-03-10 22:38:43','2015-08-29 14:46:04',1,30002940,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0),(3386,'2015-03-10 22:38:43','2015-03-10 22:38:43',1,30003185,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(3387,'2015-03-10 22:38:43','2015-03-10 22:38:43',1,30003659,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(3388,'2015-03-10 22:38:43','2015-03-10 22:38:43',1,30000405,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(3389,'2015-03-10 22:38:43','2015-03-10 22:38:43',1,30001309,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(3390,'2015-03-10 22:38:43','2015-03-10 22:38:43',1,30000236,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(3391,'2015-03-10 22:38:43','2015-03-10 22:38:43',1,30000915,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(3392,'2015-03-10 22:38:43','2015-03-10 22:38:43',1,30002612,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(3393,'2015-03-10 22:38:43','2015-08-29 14:46:04',1,30001209,0,0,0,1,0,0,0,2,0,1,1,0,0,2,2,0,0,0,1,2,0,0,1,0),(3394,'2015-03-10 22:38:43','2015-03-10 22:38:43',1,30004762,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(3395,'2015-03-10 22:38:43','2015-03-10 22:38:43',1,30000401,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(3396,'2015-03-10 22:38:43','2015-08-29 14:46:04',1,30002583,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,0,0,0),(3397,'2015-03-10 22:38:43','2015-08-29 14:46:04',1,30000904,0,0,3,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,1,0,0,0,0),(3398,'2015-03-10 22:38:43','2015-03-10 22:38:43',1,30000348,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(3399,'2015-03-10 22:38:43','2015-03-10 22:38:43',1,30000862,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(3400,'2015-03-10 22:38:43','2015-03-10 22:38:43',1,30001489,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(3401,'2015-03-10 22:38:43','2015-03-10 22:38:43',1,30001974,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(3402,'2015-03-10 22:38:43','2015-03-10 22:38:43',1,30001060,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(3403,'2015-03-10 22:38:43','2015-03-10 22:38:43',1,30002492,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(3404,'2015-03-10 22:38:43','2015-08-29 14:46:04',1,30000215,0,1,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(3405,'2015-03-10 22:38:43','2015-08-29 14:46:04',1,30001827,0,2,2,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(3406,'2015-03-10 22:38:43','2015-03-10 22:38:43',1,30002820,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(3407,'2015-03-10 22:38:43','2015-08-29 14:46:04',1,30004011,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(3408,'2015-03-10 22:38:43','2015-03-10 22:38:43',1,30000824,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(3409,'2015-03-10 22:38:43','2015-03-10 22:38:43',1,30001549,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(3410,'2015-03-10 22:38:43','2015-08-29 14:46:04',1,30001267,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0),(3411,'2015-03-10 22:38:43','2015-08-29 14:46:04',1,30000999,0,3,4,2,1,3,0,0,0,0,0,0,3,1,1,1,0,0,0,2,5,2,1,0),(3412,'2015-03-10 22:38:43','2015-08-29 14:46:04',1,30003763,0,0,0,0,0,0,0,0,0,0,0,0,0,1,2,1,1,0,0,0,0,0,0,0),(3413,'2015-03-10 22:38:43','2015-03-10 22:38:43',1,30002341,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(3414,'2015-03-10 22:38:43','2015-03-10 22:38:43',1,30002918,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(3415,'2015-03-10 22:38:43','2015-03-10 22:38:43',1,30001062,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(3416,'2015-03-10 22:38:43','2015-03-10 22:38:43',1,30002309,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(3417,'2015-03-10 22:38:43','2015-03-10 22:38:43',1,30001302,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(3418,'2015-03-10 22:38:43','2015-03-10 22:38:43',1,30004580,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(3419,'2015-03-10 22:38:43','2015-08-29 14:46:04',1,30002945,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(3420,'2015-03-10 22:38:43','2015-08-29 14:46:04',1,30000669,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,0,0,10,0),(3421,'2015-03-10 22:38:43','2015-08-29 14:46:04',1,30001277,0,0,2,0,0,0,0,0,0,0,0,0,3,1,2,1,1,0,0,3,0,0,1,0),(3422,'2015-03-10 22:38:43','2015-08-29 14:46:04',1,30001280,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,1,0,3,1,0),(3423,'2015-03-10 22:38:43','2015-08-29 14:46:04',1,30001126,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(3424,'2015-03-10 22:38:43','2015-08-29 14:46:04',1,30000811,0,0,0,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(3425,'2015-03-10 22:38:43','2015-03-10 22:38:43',1,30000841,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(3426,'2015-03-10 22:38:43','2015-08-29 14:46:04',1,30004783,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0),(3427,'2015-03-10 22:38:43','2015-08-29 14:46:04',1,30003767,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(3428,'2015-03-10 22:38:43','2015-03-10 22:38:43',1,30002258,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(3429,'2015-03-10 22:38:43','2015-08-29 14:46:04',1,30002995,0,0,0,0,0,0,0,0,0,0,0,0,0,0,3,3,0,0,0,0,0,0,0,0),(3430,'2015-03-10 22:38:43','2015-08-29 14:46:04',1,30001651,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,0,0,0),(3431,'2015-03-10 22:38:43','2015-08-29 14:46:04',1,30001702,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0),(3432,'2015-03-10 22:38:43','2015-08-29 14:46:04',1,30004300,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,0,0,0,0,0,0,0),(3433,'2015-03-10 22:38:43','2015-08-29 14:46:04',1,30002807,7,10,10,8,6,13,2,5,19,14,10,4,43,12,10,16,4,5,20,29,15,14,15,0),(3434,'2015-03-10 22:38:43','2015-08-29 14:46:04',1,30003475,0,0,0,0,0,0,2,1,1,0,0,1,2,2,1,2,0,0,0,0,2,1,0,0),(3435,'2015-03-10 22:38:43','2015-08-29 14:46:04',1,30005069,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,1,1,0,0,1,0,0),(3436,'2015-03-10 22:38:43','2015-08-29 14:46:04',1,30003922,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,1,1,0,0,0,0),(3437,'2015-03-10 22:38:43','2015-08-29 14:46:04',1,30005045,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,1,0),(3438,'2015-03-10 22:38:43','2015-08-29 14:46:04',1,30005242,0,1,0,1,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(3439,'2015-03-10 22:38:43','2015-08-29 14:46:04',1,30000072,0,0,2,2,3,0,0,0,0,0,0,0,0,0,0,0,2,0,1,2,2,1,0,0),(3440,'2015-03-10 22:38:43','2015-08-29 14:46:04',1,30002988,0,1,0,1,0,0,0,0,0,0,0,0,0,0,0,6,0,1,1,0,1,0,0,0),(3441,'2015-03-10 22:38:43','2015-03-10 22:38:43',1,30003936,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(3442,'2015-03-10 22:38:43','2015-08-29 14:46:05',1,30005043,0,0,0,0,0,0,0,1,0,1,0,0,0,0,5,7,0,0,0,0,1,0,0,0),(3443,'2015-03-10 22:38:43','2015-08-29 14:46:05',1,30003496,1,1,0,0,0,0,0,0,0,0,0,2,0,1,0,0,0,0,0,0,0,0,0,0),(3444,'2015-03-10 22:38:43','2015-08-29 14:46:05',1,30002068,0,3,0,5,2,1,0,1,0,0,1,0,0,0,1,2,0,0,1,0,2,4,1,0),(3445,'2015-03-10 22:38:43','2015-08-29 14:46:05',1,30004280,0,1,0,0,1,0,0,0,0,0,0,0,0,0,0,1,7,0,0,1,0,0,0,0),(3446,'2015-03-10 22:38:43','2015-03-10 22:38:43',1,30002262,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(3447,'2015-03-10 22:38:43','2015-08-29 14:46:05',1,30001445,13,0,3,8,7,7,0,6,3,1,2,1,1,3,3,1,0,0,0,2,3,2,1,0),(3448,'2015-03-10 22:38:43','2015-08-29 14:46:05',1,30003534,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(3449,'2015-03-10 22:38:43','2015-08-29 14:46:05',1,30003923,0,0,0,0,0,1,0,0,1,0,0,0,0,1,0,0,0,0,0,0,0,3,1,0),(3450,'2015-03-10 22:38:43','2015-08-29 14:46:05',1,30001413,0,0,0,0,0,0,0,0,0,0,0,0,2,0,0,0,0,0,0,0,0,0,0,0),(3451,'2015-03-10 22:38:43','2015-08-29 14:46:05',1,30001438,0,0,0,0,0,1,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0),(3452,'2015-03-10 22:38:43','2015-08-29 14:46:05',1,30002202,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,1,0,0,1,0,0),(3453,'2015-03-10 22:38:43','2015-08-29 14:46:05',1,30005207,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,1,0,0,0,2,0,0),(3454,'2015-03-10 22:38:43','2015-08-29 14:46:05',1,30005054,0,0,0,0,0,0,0,0,0,7,0,0,0,0,1,1,1,0,0,0,1,1,0,0),(3455,'2015-03-10 22:38:43','2015-08-29 14:46:05',1,30001683,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(3456,'2015-03-10 22:38:43','2015-08-29 14:46:05',1,30005289,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0),(3457,'2015-03-10 22:38:43','2015-08-29 14:46:05',1,30002671,1,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0),(3458,'2015-03-10 22:38:43','2015-08-29 14:46:05',1,30000016,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(3459,'2015-03-10 22:38:43','2015-03-10 22:38:43',1,30000465,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(3460,'2015-03-10 22:38:43','2015-03-10 22:38:43',1,30001063,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(3461,'2015-03-10 22:38:43','2015-03-10 22:38:43',1,30002433,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(3462,'2015-03-10 22:38:43','2015-08-29 14:46:05',1,30001117,0,7,10,2,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0),(3463,'2015-03-10 22:38:43','2015-08-29 14:46:05',1,30002910,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0),(3464,'2015-03-10 22:38:43','2015-03-10 22:38:43',1,30003616,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(3465,'2015-03-10 22:38:43','2015-08-29 14:46:05',1,30000212,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,0,0,0,0),(3466,'2015-03-10 22:38:43','2015-08-29 14:46:05',1,30002867,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0),(3467,'2015-03-10 22:38:43','2015-03-10 22:38:43',1,30003186,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(3468,'2015-03-10 22:38:43','2015-03-10 22:38:43',1,30004609,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(3469,'2015-03-10 22:38:43','2015-08-29 14:46:05',1,30003980,1,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,0,0,0,0),(3470,'2015-03-10 22:38:43','2015-08-29 14:46:05',1,30000917,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0),(3471,'2015-03-10 22:38:43','2015-08-29 14:46:05',1,30005031,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,0,0,0,0),(3472,'2015-03-10 22:38:43','2015-03-10 22:38:43',1,30004089,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(3473,'2015-03-10 22:38:43','2015-03-10 22:38:43',1,30004308,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(3474,'2015-03-10 22:38:43','2015-03-10 22:38:43',1,30003929,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(3475,'2015-03-10 22:38:43','2015-08-29 14:46:05',1,30003378,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,0,0,0,0),(3476,'2015-03-10 22:38:43','2015-03-10 22:38:43',1,30005058,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(3477,'2015-03-10 22:38:43','2015-08-29 14:46:05',1,30004383,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0),(3478,'2015-03-10 22:38:43','2015-03-10 22:38:43',1,30001695,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(3479,'2015-03-10 22:38:43','2015-08-29 14:46:05',1,30003423,0,0,0,0,0,1,0,1,1,0,0,1,0,0,0,0,0,0,1,0,0,0,0,0),(3480,'2015-03-10 22:38:43','2015-03-10 22:38:43',1,30004267,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(3481,'2015-03-10 22:38:43','2015-08-29 14:46:05',1,30045344,1,1,2,1,2,3,2,6,0,8,1,1,6,2,1,4,1,15,0,2,5,2,2,0),(3482,'2015-03-10 22:38:43','2015-08-29 14:46:05',1,30002228,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(3483,'2015-03-10 22:38:43','2015-03-10 22:38:43',1,30003073,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(3484,'2015-03-10 22:38:43','2015-08-29 14:46:05',1,30001826,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0),(3485,'2015-03-10 22:38:43','2015-08-29 14:46:05',1,30000145,3,0,0,0,0,1,2,1,4,3,3,1,1,1,0,0,1,1,0,2,2,2,1,0),(3486,'2015-03-10 22:38:43','2015-08-29 14:46:05',1,30005286,0,0,0,0,0,0,1,0,1,0,0,0,0,0,0,0,0,1,0,0,0,0,1,0),(3487,'2015-03-10 22:38:43','2015-08-29 14:46:05',1,30002650,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,1,0,0),(3488,'2015-03-10 22:38:43','2015-08-29 14:46:05',1,30003859,0,0,0,0,0,0,0,0,0,0,0,0,0,2,2,0,0,0,0,0,0,0,0,0),(3489,'2015-03-10 22:38:43','2015-08-29 14:46:05',1,30002246,0,0,0,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,1,0),(3490,'2015-03-10 22:38:43','2015-08-29 14:46:05',1,30000230,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,0,0,0),(3491,'2015-03-10 22:38:43','2015-08-29 14:46:05',1,30003325,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,13,0),(3492,'2015-03-10 22:38:43','2015-08-29 14:46:05',1,30000650,0,4,0,5,0,0,0,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(3493,'2015-03-10 22:38:43','2015-03-10 22:38:43',1,30005170,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(3494,'2015-03-10 22:38:43','2015-03-10 22:38:43',1,30001239,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(3495,'2015-03-10 22:38:43','2015-03-10 22:38:43',1,30003117,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(3496,'2015-03-10 22:38:43','2015-08-29 14:46:05',1,30001789,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(3497,'2015-03-10 22:38:43','2015-08-29 14:46:05',1,30002185,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,2,0),(3498,'2015-03-10 22:38:43','2015-08-29 14:46:05',1,30003504,19,11,6,8,6,1,0,1,2,4,3,2,1,3,2,3,18,1,2,2,2,6,2,0),(3499,'2015-03-10 22:38:43','2015-03-10 22:38:43',1,30005047,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(3500,'2015-03-10 22:38:43','2015-08-29 14:46:05',1,30003580,0,0,0,0,0,1,0,6,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0),(3501,'2015-03-10 22:38:43','2015-03-10 22:38:43',1,30003006,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(3502,'2015-03-10 22:38:43','2015-03-10 22:38:43',1,30004769,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(3503,'2015-03-10 22:38:43','2015-08-29 14:46:05',1,30004126,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0),(3504,'2015-03-10 22:38:43','2015-03-10 22:38:43',1,30004274,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(3505,'2015-03-10 22:38:43','2015-03-10 22:38:43',1,30000108,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(3506,'2015-03-10 22:38:43','2015-03-10 22:38:43',1,30000642,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(3507,'2015-03-10 22:38:43','2015-08-29 14:46:05',1,30003448,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,1,0,0,0,1,0,0,0),(3508,'2015-03-10 22:38:43','2015-08-29 14:46:05',1,30002234,0,2,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,3,4,0,0,0,0),(3509,'2015-03-10 22:38:43','2015-08-29 14:46:05',1,30000900,0,1,0,0,0,0,0,0,1,0,0,0,1,0,0,0,0,0,0,1,0,0,0,0),(3510,'2015-03-10 22:38:43','2015-08-29 14:46:05',1,30000057,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0),(3511,'2015-03-10 22:38:43','2015-08-29 14:46:05',1,30002757,2,2,1,6,4,1,7,2,1,0,2,0,0,5,5,5,5,1,1,0,0,0,1,0),(3512,'2015-03-10 22:38:43','2015-03-10 22:38:43',1,30001082,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(3513,'2015-03-10 22:38:43','2015-08-29 14:46:05',1,30000035,0,0,0,1,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(3514,'2015-03-10 22:38:43','2015-03-10 22:38:43',1,30000008,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(3515,'2015-03-10 22:38:43','2015-08-29 14:46:05',1,30005040,0,0,0,0,0,0,1,1,0,2,0,0,0,0,0,5,0,0,0,0,0,0,0,0),(3516,'2015-03-10 22:38:43','2015-08-29 14:46:05',1,30045352,3,3,0,3,1,0,0,3,0,0,0,2,0,0,1,2,4,2,0,2,1,2,3,0),(3517,'2015-03-10 22:38:43','2015-08-29 14:46:05',1,30000143,1,0,2,1,2,0,0,8,1,3,1,0,0,1,1,3,4,0,3,0,0,0,1,0),(3518,'2015-03-10 22:38:43','2015-03-10 22:38:43',1,30003141,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(3519,'2015-03-10 22:38:43','2015-08-29 14:46:05',1,30000896,0,0,0,0,0,0,0,0,0,0,1,0,1,0,0,0,0,0,1,0,0,0,0,0),(3520,'2015-03-10 22:38:43','2015-08-29 14:46:05',1,30000902,0,0,0,0,0,0,0,0,0,0,0,0,1,2,0,0,0,0,0,0,0,0,0,0),(3521,'2015-03-10 22:38:43','2015-08-29 14:46:05',1,30002303,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(3522,'2015-03-10 22:38:43','2015-03-10 22:38:43',1,30000855,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(3523,'2015-03-10 22:38:43','2015-08-29 14:46:05',1,30004476,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(3524,'2015-03-10 22:38:43','2015-08-29 14:46:05',1,30004338,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(3525,'2015-03-10 22:38:43','2015-08-29 14:46:05',1,30004518,0,0,0,0,0,1,1,0,2,1,0,0,0,0,0,0,0,0,0,0,0,2,1,0),(3526,'2015-03-10 22:38:43','2015-08-29 14:46:05',1,30005018,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0),(3527,'2015-03-10 22:38:43','2015-08-29 14:46:05',1,30004712,1,0,0,0,0,0,0,0,0,3,3,0,0,0,0,0,1,0,0,0,0,0,0,0),(3528,'2015-03-10 22:38:43','2015-08-29 14:46:05',1,30002218,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0),(3529,'2015-03-10 22:38:43','2015-08-29 14:46:05',1,30000131,0,0,1,0,0,1,0,0,3,1,2,2,0,0,0,0,0,0,0,0,0,0,1,0),(3530,'2015-03-10 22:38:43','2015-08-29 14:46:05',1,30002219,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,1,0,0,0,0,0,0,0),(3531,'2015-03-10 22:38:43','2015-08-29 14:46:05',1,30001401,0,0,1,0,0,0,0,0,0,0,1,0,1,2,0,0,0,1,2,1,2,2,0,0),(3532,'2015-03-10 22:38:43','2015-08-29 14:46:05',1,30005236,0,0,0,1,1,0,0,0,0,0,0,0,0,0,0,1,0,0,0,1,0,0,0,0),(3533,'2015-03-10 22:38:43','2015-03-10 22:38:43',1,30004094,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(3534,'2015-03-10 22:38:43','2015-03-10 22:38:43',1,30001725,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(3535,'2015-03-10 22:38:43','2015-08-29 14:46:05',1,30045348,0,0,0,0,2,0,0,0,0,0,0,0,0,1,1,1,0,2,1,0,0,1,0,0),(3536,'2015-03-10 22:38:43','2015-08-29 14:46:05',1,30003884,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,1,0,0),(3537,'2015-03-10 22:38:43','2015-08-29 14:46:05',1,30001376,2,6,1,2,2,0,0,2,2,1,1,1,1,1,0,2,0,0,1,0,3,1,1,0),(3538,'2015-03-10 22:38:43','2015-03-10 22:38:43',1,30004307,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(3539,'2015-03-10 22:38:43','2015-03-10 22:38:43',1,30004533,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(3540,'2015-03-10 22:38:43','2015-03-10 22:38:43',1,30004479,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(3541,'2015-03-10 22:38:43','2015-03-10 22:38:43',1,30002451,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(3542,'2015-03-10 22:38:43','2015-03-10 22:38:43',1,30001822,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(3543,'2015-03-10 22:38:43','2015-03-10 22:38:43',1,30000368,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(3544,'2015-03-10 22:38:43','2015-08-29 14:46:05',1,30004919,0,0,0,0,0,0,0,0,0,0,0,0,0,6,6,0,0,0,0,0,0,0,0,0),(3545,'2015-03-10 22:38:43','2015-03-10 22:38:43',1,30004866,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(3546,'2015-03-10 22:38:43','2015-03-10 22:38:43',1,30001094,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(3547,'2015-03-10 22:38:43','2015-08-29 14:46:05',1,30001962,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0),(3548,'2015-03-10 22:38:43','2015-03-10 22:38:43',1,30002103,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(3549,'2015-03-10 22:38:43','2015-03-10 22:38:43',1,30000696,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(3550,'2015-03-10 22:38:43','2015-03-10 22:38:43',1,30001622,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(3551,'2015-03-10 22:38:43','2015-03-10 22:38:43',1,30001061,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(3552,'2015-03-10 22:38:43','2015-08-29 14:46:05',1,30004318,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(3553,'2015-03-10 22:38:43','2015-03-10 22:38:43',1,30004035,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(3554,'2015-03-10 22:38:43','2015-08-29 14:46:05',1,30002606,0,0,0,0,0,0,0,3,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(3555,'2015-03-10 22:38:43','2015-08-29 14:46:05',1,30000183,0,1,0,0,0,2,0,4,0,1,0,2,0,0,0,0,0,3,2,0,0,0,1,0),(3556,'2015-03-10 22:38:43','2015-03-10 22:38:43',1,30001665,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(3557,'2015-03-10 22:38:43','2015-03-10 22:38:43',1,30003627,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(3558,'2015-03-10 22:38:43','2015-03-10 22:38:43',1,30000350,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(3559,'2015-03-10 22:38:43','2015-08-29 14:46:05',1,30004438,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(3560,'2015-03-10 22:38:43','2015-03-10 22:38:43',1,30002340,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(3561,'2015-03-10 22:38:43','2015-03-10 22:38:43',1,30004440,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(3562,'2015-03-10 22:38:43','2015-03-10 22:38:43',1,30004612,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(3563,'2015-03-10 22:38:43','2015-08-29 14:46:05',1,30001874,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,1,0,0,0,1,2,0,0,0),(3564,'2015-03-10 22:38:43','2015-08-29 14:46:05',1,30004911,0,0,0,0,0,0,0,0,0,0,0,0,1,2,0,0,0,0,0,0,0,0,0,0),(3565,'2015-03-10 22:38:43','2015-03-10 22:38:43',1,30004863,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(3566,'2015-03-10 22:38:43','2015-08-29 14:46:05',1,30000870,0,0,0,0,1,1,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0),(3567,'2015-03-10 22:38:43','2015-03-10 22:38:43',1,30004050,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(3568,'2015-03-10 22:38:43','2015-08-29 14:46:05',1,30002935,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,2,0),(3569,'2015-03-10 22:38:43','2015-03-10 22:38:43',1,30000627,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(3570,'2015-03-10 22:38:43','2015-03-10 22:38:43',1,30000744,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(3571,'2015-03-10 22:38:43','2015-03-10 22:38:43',1,30000982,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(3572,'2015-03-10 22:38:43','2015-03-10 22:38:43',1,30004692,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(3573,'2015-03-10 22:38:43','2015-08-29 14:46:05',1,30000831,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(3574,'2015-03-10 22:38:43','2015-03-10 22:38:43',1,30002034,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(3575,'2015-03-10 22:38:43','2015-08-29 14:46:05',1,30004060,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0),(3576,'2015-03-10 22:38:43','2015-08-29 14:46:05',1,30001964,0,1,0,2,2,1,0,0,0,2,2,0,0,0,0,0,0,0,0,0,0,0,0,0),(3577,'2015-03-10 22:38:43','2015-03-10 22:38:43',1,30003683,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(3578,'2015-03-10 22:38:43','2015-03-10 22:38:43',1,30001955,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(3579,'2015-03-10 22:38:43','2015-03-10 22:38:43',1,30002358,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(3580,'2015-03-10 22:38:43','2015-03-10 22:38:43',1,30004199,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(3581,'2015-03-10 22:38:43','2015-08-29 14:46:05',1,30001938,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0),(3582,'2015-03-10 22:38:43','2015-08-29 14:46:05',1,30004713,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0),(3583,'2015-03-10 22:38:43','2015-03-10 22:38:43',1,30004049,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(3584,'2015-03-10 22:38:43','2015-08-29 14:46:05',1,30004326,0,0,0,0,0,0,0,0,0,1,1,0,1,2,0,0,0,0,0,0,0,0,0,0),(3585,'2015-03-10 22:38:43','2015-03-10 22:38:43',1,30002351,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(3586,'2015-03-10 22:38:43','2015-08-29 14:46:05',1,30000309,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(3587,'2015-03-10 22:38:43','2015-03-10 22:38:43',1,30004671,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(3588,'2015-03-10 22:38:43','2015-08-29 14:46:05',1,30004703,0,0,0,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,2,0),(3589,'2015-03-10 22:38:43','2015-08-29 14:46:05',1,30001986,0,2,0,0,1,0,0,0,0,0,0,0,2,0,0,0,0,0,0,0,0,2,0,0),(3590,'2015-03-10 22:38:43','2015-08-29 14:46:05',1,30001751,0,0,0,0,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(3591,'2015-03-10 22:38:43','2015-03-10 22:38:43',1,30000993,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(3592,'2015-03-10 22:38:43','2015-08-29 14:46:05',1,30004649,0,1,0,2,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(3593,'2015-03-10 22:38:43','2015-08-29 14:46:05',1,30005171,1,0,0,0,0,1,0,0,0,0,0,0,0,2,1,0,0,0,0,0,0,0,0,0),(3594,'2015-03-10 22:38:43','2015-08-29 14:46:05',1,30004543,0,0,0,1,2,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(3595,'2015-03-10 22:38:43','2015-03-10 22:38:43',1,30000975,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(3596,'2015-03-10 22:38:43','2015-03-10 22:38:43',1,30001297,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(3597,'2015-03-10 22:38:43','2015-08-29 14:46:05',1,30002457,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0),(3598,'2015-03-10 22:38:43','2015-08-29 14:46:05',1,30003761,0,0,0,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(3599,'2015-03-10 22:38:43','2015-08-29 14:46:05',1,30004044,6,0,0,1,1,4,0,0,0,0,0,0,0,0,0,1,3,0,3,4,1,0,1,0),(3600,'2015-03-10 22:38:43','2015-08-29 14:46:05',1,30002425,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,4,0,2,0),(3601,'2015-03-10 22:38:43','2015-08-29 14:46:05',1,30004699,3,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,3,0,0,0,0),(3602,'2015-03-10 22:38:43','2015-08-29 14:46:05',1,30003686,0,8,0,1,2,1,1,2,0,0,0,0,0,6,8,2,0,0,1,0,1,0,0,0),(3603,'2015-03-10 22:38:43','2015-03-10 22:38:43',1,30002602,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(3604,'2015-03-10 22:38:43','2015-03-10 22:38:43',1,30002499,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(3605,'2015-03-10 22:38:43','2015-08-29 14:46:05',1,30000492,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,1,0,0,0),(3606,'2015-03-10 22:38:43','2015-03-10 22:38:43',1,30002851,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(3607,'2015-03-10 22:38:43','2015-03-10 22:38:43',1,30003645,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(3608,'2015-03-10 22:38:43','2015-03-10 22:38:43',1,30003946,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(3609,'2015-03-10 22:38:43','2015-03-10 22:38:43',1,30002153,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(3610,'2015-03-10 22:38:43','2015-08-29 14:46:05',1,30004691,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(3611,'2015-03-10 22:38:43','2015-08-29 14:46:05',1,30002884,0,0,0,0,0,0,0,0,2,1,1,0,1,1,0,0,5,0,0,0,0,0,0,0),(3612,'2015-03-10 22:38:43','2015-08-29 14:46:05',1,30000512,0,0,0,1,1,0,3,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(3613,'2015-03-10 22:38:43','2015-08-29 14:46:05',1,30001855,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,0,0,0),(3614,'2015-03-10 22:38:43','2015-03-10 22:38:43',1,30002116,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(3615,'2015-03-10 22:38:43','2015-03-10 22:38:43',1,30001099,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(3616,'2015-03-10 22:38:43','2015-08-29 14:46:05',1,30002179,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,4,0,0,0,0),(3617,'2015-03-10 22:38:43','2015-03-10 22:38:43',1,30001068,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(3618,'2015-03-10 22:38:43','2015-08-29 14:46:05',1,30004381,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,0,0,0,0,0,1,0),(3619,'2015-03-10 22:38:43','2015-03-10 22:38:43',1,30002879,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(3620,'2015-03-10 22:38:43','2015-03-10 22:38:43',1,30004424,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(3621,'2015-03-10 22:38:43','2015-03-10 22:38:43',1,30000560,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(3622,'2015-03-10 22:38:43','2015-03-10 22:38:43',1,30000679,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(3623,'2015-03-10 22:38:43','2015-08-29 14:46:05',1,30004996,0,1,0,0,1,0,1,1,3,4,0,0,0,0,2,4,2,0,0,0,0,0,0,0),(3624,'2015-03-10 22:38:43','2015-08-29 14:46:05',1,30000155,0,0,4,1,2,0,1,1,0,1,0,8,0,0,0,0,0,0,0,1,8,8,11,0),(3625,'2015-03-10 22:38:43','2015-08-29 14:46:05',1,30000205,0,0,1,0,0,0,0,0,0,4,2,1,0,0,0,2,2,3,1,0,1,1,0,0),(3626,'2015-03-10 22:38:43','2015-03-10 22:38:43',1,30004109,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(3627,'2015-03-10 22:38:43','2015-03-10 22:38:43',1,30004487,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(3628,'2015-03-10 22:38:43','2015-08-29 14:46:05',1,30002522,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0),(3629,'2015-03-10 22:38:43','2015-03-10 22:38:43',1,30005181,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(3630,'2015-03-10 22:38:43','2015-08-29 14:46:05',1,30003578,0,0,1,0,0,1,0,0,0,0,0,0,0,1,1,0,1,0,1,0,0,0,0,0),(3631,'2015-03-10 22:38:43','2015-03-10 22:38:43',1,30004426,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(3632,'2015-03-10 22:38:43','2015-08-29 14:46:05',1,30003857,1,1,0,0,1,0,1,0,3,9,2,2,3,2,3,2,0,2,3,5,4,0,1,0),(3633,'2015-03-10 22:38:43','2015-08-29 14:46:05',1,30002509,0,2,1,3,0,0,0,0,0,1,1,2,1,0,0,0,0,1,0,0,0,1,1,0),(3634,'2015-03-10 22:38:43','2015-08-29 14:46:05',1,30002388,0,1,2,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,5,0,0,0,0),(3635,'2015-03-10 22:38:43','2015-08-29 14:46:05',1,30003470,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,1,0),(3636,'2015-03-10 22:38:43','2015-03-10 22:38:43',1,30002694,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(3637,'2015-03-10 22:38:43','2015-08-29 14:46:05',1,30002963,0,0,1,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,2,0,0,0,0),(3638,'2015-03-10 22:38:43','2015-03-10 22:38:43',1,30003582,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(3639,'2015-03-10 22:38:43','2015-03-10 22:38:43',1,30003050,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(3640,'2015-03-10 22:38:43','2015-08-29 14:46:05',1,30000077,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,0,1,0),(3641,'2015-03-10 22:38:43','2015-08-29 14:46:05',1,30012715,0,0,0,0,0,2,0,0,0,0,1,0,1,0,0,0,0,2,0,0,1,0,0,0),(3642,'2015-03-10 22:38:43','2015-08-29 14:46:05',1,30003657,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(3643,'2015-03-10 22:38:43','2015-08-29 14:46:05',1,30002008,0,1,0,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,1,1,2,0),(3644,'2015-03-10 22:38:43','2015-08-29 14:46:05',1,30000439,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(3645,'2015-03-10 22:38:43','2015-08-29 14:46:05',1,30003577,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(3646,'2015-03-10 22:38:43','2015-03-10 22:38:43',1,30002427,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(3647,'2015-03-10 22:38:43','2015-08-29 14:46:05',1,30003446,0,0,0,0,0,0,0,1,1,0,0,0,0,2,2,0,0,0,0,0,0,0,2,0),(3648,'2015-03-10 22:38:43','2015-08-29 14:46:05',1,30003460,0,0,0,0,1,0,0,0,0,3,3,2,0,1,1,2,0,0,0,0,0,0,1,0),(3649,'2015-03-10 22:38:43','2015-08-29 14:46:05',1,30002549,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(3650,'2015-03-10 22:38:43','2015-08-29 14:46:05',1,30002061,0,2,0,0,0,3,2,0,4,0,0,0,0,0,0,0,0,0,0,0,1,0,1,0),(3651,'2015-03-10 22:38:43','2015-03-10 22:38:43',1,30000472,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(3652,'2015-03-10 22:38:43','2015-03-10 22:38:43',1,30003598,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(3653,'2015-03-10 22:38:43','2015-03-10 22:38:43',1,30001191,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(3654,'2015-03-10 22:38:43','2015-03-10 22:38:43',1,30003437,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(3655,'2015-03-10 22:38:43','2015-08-29 14:46:05',1,30005068,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0),(3656,'2015-03-10 22:38:43','2015-03-10 22:38:43',1,30002045,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(3657,'2015-03-10 22:38:43','2015-03-10 22:38:43',1,30003984,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(3658,'2015-03-10 22:38:43','2015-08-29 14:46:05',1,30001435,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0),(3659,'2015-03-10 22:38:43','2015-08-29 14:46:05',1,30002970,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(3660,'2015-03-10 22:38:43','2015-08-29 14:46:05',1,30000204,0,0,0,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(3661,'2015-03-10 22:38:43','2015-08-29 14:46:05',1,30000136,1,0,0,0,0,2,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0),(3662,'2015-03-10 22:38:43','2015-08-29 14:46:05',1,30002743,0,1,3,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(3663,'2015-03-10 22:38:43','2015-08-29 14:46:05',1,30002818,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0),(3664,'2015-03-10 22:38:43','2015-08-29 14:46:05',1,30003838,0,1,1,0,5,2,1,1,0,0,0,2,0,0,1,2,3,1,0,0,1,0,0,0),(3665,'2015-03-10 22:38:43','2015-08-29 14:46:05',1,30002746,0,1,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(3666,'2015-03-10 22:38:43','2015-08-29 14:46:05',1,30000186,4,1,8,19,14,8,3,6,2,8,9,9,1,1,1,3,3,1,1,2,4,0,2,0),(3667,'2015-03-10 22:38:43','2015-08-29 14:46:05',1,30001444,0,0,0,0,0,0,1,0,0,0,0,0,0,1,2,1,0,0,0,0,0,0,1,0),(3668,'2015-03-10 22:38:43','2015-08-29 14:46:05',1,30045347,1,3,2,0,1,1,0,5,2,2,2,0,10,1,2,7,1,0,0,0,3,3,0,0),(3669,'2015-03-10 22:38:43','2015-08-29 14:46:05',1,30002750,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0),(3670,'2015-03-10 22:38:43','2015-03-10 22:38:43',1,30003132,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(3671,'2015-03-10 22:38:43','2015-08-29 14:46:05',1,30001425,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(3672,'2015-03-10 22:38:43','2015-08-29 14:46:05',1,30022715,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0),(3673,'2015-03-10 22:38:43','2015-08-29 14:46:05',1,30001433,1,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0),(3674,'2015-03-10 22:38:43','2015-08-29 14:46:05',1,30002799,8,2,0,0,0,1,3,6,0,0,0,0,1,0,0,0,1,0,0,0,0,0,0,0),(3675,'2015-03-10 22:38:43','2015-03-10 22:38:43',1,30004334,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(3676,'2015-03-10 22:38:43','2015-03-10 22:38:43',1,30001341,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(3677,'2015-03-10 22:38:43','2015-03-10 22:38:43',1,30000983,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(3678,'2015-03-10 22:38:43','2015-03-10 22:38:43',1,30005091,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(3679,'2015-03-10 22:38:43','2015-08-29 14:46:05',1,30000945,0,0,0,0,0,0,0,0,0,0,0,0,0,5,5,0,0,1,0,0,0,0,0,0),(3680,'2015-03-10 22:38:43','2015-08-29 14:46:05',1,30045307,0,0,1,0,0,2,0,0,1,0,1,1,0,0,0,0,0,0,1,1,0,0,0,0),(3681,'2015-03-10 22:38:43','2015-03-10 22:38:43',1,30004924,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(3682,'2015-03-10 22:38:43','2015-08-29 14:46:05',1,30045330,7,8,1,2,4,3,1,1,9,3,1,9,5,3,1,1,7,3,0,3,9,7,1,0),(3683,'2015-03-10 22:38:43','2015-03-10 22:38:43',1,30004645,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(3684,'2015-03-10 22:38:43','2015-03-10 22:38:43',1,30003388,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(3685,'2015-03-10 22:38:43','2015-08-29 14:46:05',1,30005000,2,6,2,6,6,7,1,3,3,2,0,3,5,4,4,7,7,2,1,5,1,3,6,0),(3686,'2015-03-10 22:38:43','2015-03-10 22:38:43',1,30032715,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(3687,'2015-03-10 22:38:43','2015-08-29 14:46:05',1,30002686,1,0,0,1,1,1,2,1,1,2,2,2,0,0,0,0,0,0,1,0,0,1,0,0),(3688,'2015-03-10 22:38:43','2015-08-29 14:46:05',1,30002515,0,0,1,2,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,1,0),(3689,'2015-03-10 22:38:43','2015-03-10 22:38:43',1,30003058,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(3690,'2015-03-10 22:38:43','2015-08-29 14:46:05',1,30005272,0,0,0,0,0,0,1,0,0,0,0,0,1,0,0,1,0,1,0,0,0,1,0,0),(3691,'2015-03-10 22:38:43','2015-08-29 14:46:05',1,30000158,0,1,0,0,0,2,2,1,1,0,0,0,0,0,0,1,0,2,0,0,3,0,1,0),(3692,'2015-03-10 22:38:43','2015-08-29 14:46:05',1,30004137,0,0,0,0,1,1,0,0,1,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0),(3693,'2015-03-10 22:38:43','2015-03-10 22:38:43',1,30004302,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(3694,'2015-03-10 22:38:43','2015-08-29 14:46:05',1,30003817,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0),(3695,'2015-03-10 22:38:43','2015-03-10 22:38:43',1,30005027,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(3696,'2015-03-10 22:38:43','2015-08-29 14:46:05',1,30004244,2,2,4,1,1,3,6,1,0,1,3,1,1,0,0,0,6,0,0,0,1,4,1,0),(3697,'2015-03-10 22:38:43','2015-08-29 14:46:05',1,30002811,1,1,2,2,2,0,0,1,3,0,0,0,1,0,0,0,0,1,3,8,0,0,2,0),(3698,'2015-03-10 22:38:43','2015-03-10 22:38:43',1,30001688,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(3699,'2015-03-10 22:38:43','2015-08-29 14:46:05',1,30003603,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0),(3700,'2015-03-10 22:38:43','2015-08-29 14:46:05',1,30002568,1,0,0,0,0,1,0,0,0,1,0,1,0,0,0,0,1,0,0,0,0,1,0,0),(3701,'2015-03-10 22:38:43','2015-08-29 14:46:05',1,30003386,0,0,1,0,0,0,0,1,0,0,0,0,0,1,0,0,0,1,0,1,1,0,0,0),(3702,'2015-03-10 22:38:43','2015-08-29 14:46:05',1,30045324,2,0,0,0,0,0,0,0,1,1,1,0,0,1,1,1,0,0,1,1,0,0,0,0),(3703,'2015-03-10 22:38:43','2015-08-29 14:46:05',1,30004990,0,0,0,0,0,0,0,0,0,0,0,0,1,2,2,0,1,0,0,0,0,0,1,0),(3704,'2015-03-10 22:38:43','2015-08-29 14:46:05',1,30002779,0,0,1,0,1,0,0,0,0,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0),(3705,'2015-03-10 22:38:43','2015-08-29 14:46:05',1,30000013,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0),(3706,'2015-03-10 22:38:43','2015-08-29 14:46:05',1,30002091,0,0,0,0,0,0,0,0,2,0,0,0,0,0,0,0,0,2,4,2,0,0,0,0),(3707,'2015-03-10 22:38:43','2015-08-29 14:46:05',1,30000174,0,0,1,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0),(3708,'2015-03-10 22:38:43','2015-03-10 22:38:43',1,30001946,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(3709,'2015-03-10 22:38:43','2015-08-29 14:46:05',1,30005109,0,2,0,1,3,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(3710,'2015-03-10 22:38:43','2015-08-29 14:46:05',1,30002173,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0),(3711,'2015-03-10 22:38:43','2015-03-10 22:38:43',1,30003430,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(3712,'2015-03-10 22:38:43','2015-03-10 22:38:43',1,30004858,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(3713,'2015-03-10 22:38:43','2015-03-10 22:38:43',1,30000607,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(3714,'2015-03-10 22:38:43','2015-03-10 22:38:43',1,30003450,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(3715,'2015-03-10 22:38:43','2015-03-10 22:38:43',1,30003201,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(3716,'2015-03-10 22:38:43','2015-08-29 14:46:05',1,30001685,0,0,0,0,1,0,0,0,0,0,0,0,1,0,0,0,1,0,0,0,0,0,0,0),(3717,'2015-03-10 22:38:43','2015-08-29 14:46:05',1,30005060,0,0,0,0,0,0,0,0,0,0,0,0,0,0,5,5,6,3,0,0,0,3,3,0),(3718,'2015-03-10 22:38:43','2015-03-10 22:38:43',1,30000026,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(3719,'2015-03-10 22:38:43','2015-03-10 22:38:43',1,30003453,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(3720,'2015-03-10 22:38:43','2015-08-29 14:46:05',1,30002571,0,0,0,1,0,0,0,0,1,0,0,0,0,0,1,1,0,0,0,0,0,0,0,0),(3721,'2015-03-10 22:38:43','2015-08-29 14:46:05',1,30002098,0,1,0,1,0,0,0,0,1,3,1,1,3,0,0,0,1,2,2,0,2,1,0,0),(3722,'2015-03-10 22:38:43','2015-08-29 14:46:05',1,30022505,0,0,0,0,0,0,0,0,0,1,0,0,1,0,0,0,0,0,0,0,0,0,0,0),(3723,'2015-03-10 22:38:43','2015-08-29 14:46:05',1,30002399,0,0,1,0,0,0,1,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0),(3724,'2015-03-10 22:38:43','2015-08-29 14:46:05',1,30003492,2,0,0,0,0,0,2,0,0,0,0,1,1,2,4,4,0,1,0,0,0,0,0,0),(3725,'2015-03-10 22:38:43','2015-08-29 14:46:05',1,30003596,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0),(3726,'2015-03-10 22:38:43','2015-08-29 14:46:05',1,30000063,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,13,0,0),(3727,'2015-03-10 22:38:43','2015-08-29 14:46:05',1,30003830,0,0,0,0,0,1,0,3,5,5,1,2,0,2,3,2,0,0,1,3,10,0,1,0),(3728,'2015-03-10 22:38:43','2015-03-10 22:38:43',1,30000374,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(3729,'2015-03-10 22:38:43','2015-08-29 14:46:05',1,30000207,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0),(3730,'2015-03-10 22:38:43','2015-08-29 14:46:05',1,30002569,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,3,2,0,0),(3731,'2015-03-10 22:38:43','2015-08-29 14:46:05',1,30002795,10,4,1,9,10,7,0,2,0,0,0,0,0,0,0,0,2,1,1,1,1,2,2,0),(3732,'2015-03-10 22:38:43','2015-03-10 22:38:43',1,30003870,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(3733,'2015-03-10 22:38:43','2015-03-10 22:38:43',1,30003812,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(3734,'2015-03-10 22:38:43','2015-08-29 14:46:05',1,30003831,0,0,0,0,0,1,0,1,1,3,4,0,0,1,2,1,0,0,1,1,0,4,0,0),(3735,'2015-03-10 22:38:43','2015-08-29 14:46:05',1,30005332,0,0,0,0,0,0,0,0,0,1,0,0,0,1,0,0,0,0,0,0,0,0,0,0),(3736,'2015-03-10 22:38:43','2015-08-29 14:46:05',1,30000180,0,12,7,3,2,5,0,1,3,4,7,1,0,2,4,3,5,1,0,1,2,1,3,0),(3737,'2015-03-10 22:38:43','2015-08-29 14:46:05',1,30002506,0,0,1,2,1,0,0,0,0,0,0,0,1,2,1,2,0,0,0,0,0,0,1,0),(3738,'2015-03-10 22:38:43','2015-08-29 14:46:05',1,30001358,0,0,0,0,0,0,0,0,1,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0),(3739,'2015-03-10 22:38:43','2015-08-29 14:46:05',1,30003792,6,8,0,6,3,3,3,4,0,2,3,2,8,4,2,5,4,3,3,3,1,9,8,0),(3740,'2015-03-10 22:38:43','2015-08-29 14:46:05',1,30003427,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0),(3741,'2015-03-10 22:38:43','2015-08-29 14:46:05',1,30002409,0,0,0,0,0,1,0,1,0,0,0,1,0,1,1,1,0,0,0,0,0,0,0,0),(3742,'2015-03-10 22:38:43','2015-03-10 22:38:43',1,30001579,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(3743,'2015-03-10 22:38:43','2015-08-29 14:46:05',1,30001005,0,0,0,0,0,0,4,0,0,1,2,1,0,0,0,0,0,0,1,1,0,0,0,0),(3744,'2015-03-10 22:38:43','2015-08-29 14:46:05',1,30005274,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,0,2,0,0,0,0,2,0),(3745,'2015-03-10 22:38:43','2015-08-29 14:46:05',1,30001421,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,5,0),(3746,'2015-03-10 22:38:43','2015-08-29 14:46:05',1,30000192,0,0,1,0,0,0,2,0,1,0,0,2,4,0,0,1,1,0,0,0,0,0,0,0),(3747,'2015-03-10 22:38:43','2015-08-29 14:46:05',1,30000157,0,0,1,8,7,5,5,0,17,10,2,12,8,7,8,4,21,3,8,4,3,2,7,0),(3748,'2015-03-10 22:38:43','2015-08-29 14:46:05',1,30003065,0,3,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0),(3749,'2015-03-10 22:38:43','2015-08-29 14:46:05',1,30000171,0,1,1,1,1,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0),(3750,'2015-03-10 22:38:43','2015-03-10 22:38:43',1,30001538,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(3751,'2015-03-10 22:38:43','2015-03-10 22:38:43',1,30001586,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(3752,'2015-03-10 22:38:43','2015-08-29 14:46:05',1,30002808,7,1,2,9,7,11,2,0,2,8,9,8,14,19,21,21,9,6,7,2,5,3,4,0),(3753,'2015-03-10 22:38:43','2015-08-29 14:46:05',1,30000172,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0),(3754,'2015-03-10 22:38:43','2015-08-29 14:46:05',1,30000196,1,0,0,0,0,1,0,0,0,0,0,0,0,2,1,0,0,0,0,1,1,0,1,0),(3755,'2015-03-10 22:38:43','2015-08-29 14:46:05',1,30002723,2,1,0,1,1,2,0,0,6,5,2,3,0,0,0,1,0,1,1,0,1,1,2,0),(3756,'2015-03-10 22:38:43','2015-08-29 14:46:05',1,30002578,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0),(3757,'2015-03-10 22:38:43','2015-08-29 14:46:05',1,30001446,0,0,2,0,0,0,0,0,0,0,1,4,2,0,0,0,0,0,0,0,1,0,2,0),(3758,'2015-03-10 22:38:43','2015-08-29 14:46:05',1,30000194,1,0,1,1,0,0,0,2,3,0,0,1,3,1,0,0,0,0,1,2,0,2,0,0),(3759,'2015-03-10 22:38:43','2015-03-10 22:38:43',1,30001476,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(3760,'2015-03-10 22:38:43','2015-03-10 22:38:43',1,30004052,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(3761,'2015-03-10 22:38:43','2015-08-29 14:46:05',1,30005297,0,3,2,2,2,4,1,2,1,2,2,1,6,3,4,5,1,1,7,1,6,6,1,0),(3762,'2015-03-10 22:38:43','2015-08-29 14:46:05',1,30003833,0,10,0,15,6,6,7,5,0,14,9,0,4,0,0,0,0,0,1,1,1,0,0,0),(3763,'2015-03-10 22:38:43','2015-08-29 14:46:05',1,30001370,0,0,0,1,0,0,0,0,0,1,0,0,0,1,0,0,0,0,0,0,0,0,0,0),(3764,'2015-03-10 22:38:43','2015-08-29 14:46:05',1,30005203,0,1,1,1,1,0,0,1,0,1,0,0,0,1,0,0,1,0,0,1,0,0,0,0),(3765,'2015-03-10 22:38:43','2015-08-29 14:46:05',1,30004969,0,0,2,1,0,4,8,3,0,2,1,0,0,0,0,2,3,1,1,0,1,2,0,0),(3766,'2015-03-10 22:38:43','2015-08-29 14:46:05',1,30000135,0,0,0,1,2,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(3767,'2015-03-10 22:38:43','2015-03-10 22:38:43',1,30000335,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(3768,'2015-03-10 22:38:43','2015-03-10 22:38:43',1,30001819,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(3769,'2015-03-10 22:38:43','2015-03-10 22:38:43',1,30004581,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(3770,'2015-03-10 22:38:43','2015-08-29 14:46:05',1,30002936,0,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(3771,'2015-03-10 22:38:43','2015-03-10 22:38:43',1,30004521,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(3772,'2015-03-10 22:38:43','2015-08-29 14:46:05',1,30000735,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(3773,'2015-03-10 22:38:43','2015-08-29 14:46:05',1,30004413,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(3774,'2015-03-10 22:38:43','2015-08-29 14:46:05',1,30003722,0,0,0,0,0,0,0,0,0,0,0,3,2,0,0,0,0,0,1,1,0,0,0,0),(3775,'2015-03-10 22:38:43','2015-08-29 14:46:05',1,30000885,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0),(3776,'2015-03-10 22:38:43','2015-08-29 14:46:05',1,30004958,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(3777,'2015-03-10 22:38:43','2015-08-29 14:46:05',1,30002961,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,1,1,1,1,0,0,0,0),(3778,'2015-03-10 22:38:43','2015-08-29 14:46:05',1,30003088,2,0,2,1,1,2,0,0,3,3,2,0,1,2,2,0,0,0,2,0,1,1,1,0),(3779,'2015-03-10 22:38:43','2015-03-10 22:38:43',1,30003254,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(3780,'2015-03-10 22:38:43','2015-03-10 22:38:43',1,30001282,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(3781,'2015-03-10 22:38:43','2015-08-29 14:46:05',1,30002030,0,6,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0),(3782,'2015-03-10 22:38:43','2015-08-29 14:46:05',1,30003680,0,1,1,1,0,0,0,2,0,0,0,6,0,0,0,0,0,0,0,0,1,0,0,0),(3783,'2015-03-10 22:38:43','2015-03-10 22:38:43',1,30003137,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(3784,'2015-03-10 22:38:43','2015-03-10 22:38:43',1,30002482,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(3785,'2015-03-10 22:38:43','2015-03-10 22:38:43',1,30001823,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(3786,'2015-03-10 22:38:43','2015-03-10 22:38:43',1,30002467,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(3787,'2015-03-10 22:38:43','2015-08-29 14:46:05',1,30001268,0,0,0,0,0,1,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,2,2,0),(3788,'2015-03-10 22:38:43','2015-08-29 14:46:05',1,30001293,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0),(3789,'2015-03-10 22:38:43','2015-08-29 14:46:05',1,30004187,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,0,0,0,0),(3790,'2015-03-10 22:38:43','2015-03-10 22:38:43',1,30000365,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(3791,'2015-03-10 22:38:43','2015-08-29 14:46:05',1,30000661,0,0,0,0,0,0,0,0,0,0,0,0,0,6,0,0,0,0,0,0,0,0,0,0),(3792,'2015-03-10 22:38:43','2015-03-10 22:38:43',1,30001547,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(3793,'2015-03-10 22:38:43','2015-03-10 22:38:43',1,30004170,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(3794,'2015-03-10 22:38:43','2015-08-29 14:46:05',1,30004497,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,4,0),(3795,'2015-03-10 22:38:43','2015-03-10 22:38:43',1,30001795,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(3796,'2015-03-10 22:38:43','2015-03-10 22:38:43',1,30003674,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(3797,'2015-03-10 22:38:43','2015-08-29 14:46:05',1,30001329,0,0,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0),(3798,'2015-03-10 22:38:43','2015-08-29 14:46:05',1,30003978,0,0,1,0,1,0,0,2,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0),(3799,'2015-03-10 22:38:43','2015-08-29 14:46:05',1,30003248,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,2,0,0,0),(3800,'2015-03-10 22:38:43','2015-08-29 14:46:05',1,30000949,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0),(3801,'2015-03-10 22:38:43','2015-08-29 14:46:05',1,30000250,0,1,0,0,0,0,0,8,7,1,0,2,1,1,2,2,0,1,9,0,3,2,0,0),(3802,'2015-03-10 22:38:43','2015-03-10 22:38:43',1,30001604,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(3803,'2015-03-10 22:38:43','2015-03-10 22:38:43',1,30001125,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(3804,'2015-03-10 22:38:43','2015-08-29 14:46:05',1,30003971,0,1,0,0,0,1,0,0,1,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0),(3805,'2015-03-10 22:38:43','2015-08-29 14:46:05',1,30004624,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0),(3806,'2015-03-10 22:38:43','2015-03-10 22:38:43',1,30004076,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(3807,'2015-03-10 22:38:43','2015-03-10 22:38:43',1,30000411,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(3808,'2015-03-10 22:38:43','2015-08-29 14:46:05',1,30001568,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0),(3809,'2015-03-10 22:38:43','2015-03-10 22:38:43',1,30000638,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(3810,'2015-03-10 22:38:43','2015-03-10 22:38:43',1,30000450,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(3811,'2015-03-10 22:38:43','2015-03-10 22:38:43',1,30000977,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(3812,'2015-03-10 22:38:43','2015-03-10 22:38:43',1,30004362,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(3813,'2015-03-10 22:38:43','2015-03-10 22:38:43',1,30004471,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(3814,'2015-03-10 22:38:43','2015-03-10 22:38:43',1,30003163,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(3815,'2015-03-10 22:38:43','2015-03-10 22:38:43',1,30005185,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(3816,'2015-03-10 22:38:43','2015-08-29 14:46:05',1,30004961,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0),(3817,'2015-03-10 22:38:43','2015-08-29 14:46:05',1,30000198,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0),(3818,'2015-03-10 22:38:43','2015-08-29 14:46:05',1,30002775,1,0,0,1,0,0,0,0,0,0,0,1,2,0,0,2,1,0,0,0,1,0,0,0),(3819,'2015-03-10 22:38:43','2015-03-10 22:38:43',1,30004253,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(3820,'2015-03-10 22:38:43','2015-08-29 14:46:05',1,30003804,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,2,1,0,0,0,0),(3821,'2015-03-10 22:38:43','2015-08-29 14:46:05',1,30005198,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,2,0,0,0,1,0),(3822,'2015-03-10 22:38:43','2015-08-29 14:46:05',1,30001390,1,1,3,0,2,0,0,0,2,0,0,0,0,2,3,5,0,0,1,2,0,1,0,0),(3823,'2015-03-10 22:38:43','2015-08-29 14:46:05',1,30003878,1,0,0,1,0,0,0,0,0,1,1,0,3,3,5,2,0,0,0,0,0,3,1,0),(3824,'2015-03-10 22:38:43','2015-08-29 14:46:05',1,30004992,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0),(3825,'2015-03-10 22:38:43','2015-03-10 22:38:43',1,30003008,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(3826,'2015-03-10 22:38:43','2015-08-29 14:46:05',1,30005232,0,1,0,0,0,0,0,2,0,0,0,0,0,0,0,1,1,0,0,0,0,0,0,0),(3827,'2015-03-10 22:38:43','2015-08-29 14:46:05',1,30005073,0,0,0,0,0,0,0,1,1,0,0,0,0,0,0,0,1,0,0,1,1,1,0,0),(3828,'2015-03-10 22:38:43','2015-08-29 14:46:05',1,30002676,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,1,0,0,0,0),(3829,'2015-03-10 22:38:43','2015-08-29 14:46:05',1,30004255,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0),(3830,'2015-03-10 22:38:43','2015-08-29 14:46:05',1,30003909,0,0,0,0,0,3,0,0,0,0,0,0,0,1,1,0,0,0,0,0,0,0,0,0),(3831,'2015-03-10 22:38:43','2015-08-29 14:46:05',1,30005280,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,1,1,0),(3832,'2015-03-10 22:38:43','2015-08-29 14:46:05',1,30004998,1,4,1,2,1,0,0,2,0,5,3,0,1,1,5,6,1,2,1,0,0,2,0,0),(3833,'2015-03-10 22:38:43','2015-08-29 14:46:05',1,30021672,3,3,4,4,8,6,6,4,7,7,3,3,11,9,7,7,11,6,17,5,10,4,11,0),(3834,'2015-03-10 22:38:43','2015-08-29 14:46:05',1,30005231,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,0,0,0,1,2,0,0),(3835,'2015-03-10 22:38:43','2015-08-29 14:46:05',1,30001402,0,3,1,0,0,1,0,0,0,1,2,1,0,3,1,0,1,1,0,4,0,4,2,0),(3836,'2015-03-10 22:38:43','2015-08-29 14:46:05',1,30002544,12,0,0,1,1,1,0,2,1,0,3,2,2,0,0,0,1,0,1,0,1,2,1,0),(3837,'2015-03-10 22:38:43','2015-03-10 22:38:43',1,30002223,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(3838,'2015-03-10 22:38:43','2015-08-29 14:46:05',1,30045320,1,13,3,0,0,2,1,0,0,4,4,1,7,3,0,0,1,0,0,0,0,1,0,0),(3839,'2015-03-10 22:38:43','2015-08-29 14:46:05',1,30001718,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,1,2,0,0),(3840,'2015-03-10 22:38:43','2015-03-10 22:38:43',1,30004657,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(3841,'2015-03-10 22:38:43','2015-08-29 14:46:05',1,30000873,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,0,0,0,0),(3842,'2015-03-10 22:38:43','2015-03-10 22:38:43',1,30001483,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(3843,'2015-03-10 22:38:43','2015-08-29 14:46:05',1,30003286,0,2,0,4,4,1,1,0,12,1,0,0,21,0,0,6,1,6,0,0,0,2,4,0),(3844,'2015-03-10 22:38:43','2015-03-10 22:38:43',1,30004733,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(3845,'2015-03-10 22:38:43','2015-08-29 14:46:05',1,30004825,0,0,0,0,0,0,6,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(3846,'2015-03-10 22:38:43','2015-03-10 22:38:43',1,30003159,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(3847,'2015-03-10 22:38:43','2015-03-10 22:38:43',1,30005118,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(3848,'2015-03-10 22:38:43','2015-08-29 14:46:05',1,30000379,4,83,48,62,11,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(3849,'2015-03-10 22:38:43','2015-08-29 14:46:05',1,30003516,1,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0),(3850,'2015-03-10 22:38:43','2015-03-10 22:38:43',1,30004829,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(3851,'2015-03-10 22:38:43','2015-08-29 14:46:05',1,30003806,0,0,0,1,0,0,0,0,0,1,1,0,0,0,0,1,0,0,0,0,0,0,1,0),(3852,'2015-03-10 22:38:43','2015-08-29 14:46:05',1,30002211,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(3853,'2015-03-10 22:38:43','2015-03-10 22:38:43',1,30004906,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(3854,'2015-03-10 22:38:43','2015-08-29 14:46:05',1,30004978,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,2,0,1,0),(3855,'2015-03-10 22:38:43','2015-08-29 14:46:05',1,30004262,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0),(3856,'2015-03-10 22:38:43','2015-08-29 14:46:05',1,30003488,1,2,0,0,1,3,1,0,0,1,0,0,1,0,0,0,2,1,1,0,0,1,1,0),(3857,'2015-03-10 22:38:43','2015-08-29 14:46:05',1,30001666,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0),(3858,'2015-03-10 22:38:43','2015-08-29 14:46:05',1,30005061,0,0,0,0,0,3,0,0,0,1,0,0,0,0,0,0,1,0,0,0,1,0,0,0),(3859,'2015-03-10 22:38:43','2015-03-10 22:38:43',1,30005013,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(3860,'2015-03-10 22:38:43','2015-08-29 14:46:05',1,30001693,0,0,0,0,0,0,0,1,0,0,0,0,1,1,0,0,0,0,0,0,0,0,0,0),(3861,'2015-03-10 22:38:43','2015-08-29 14:46:05',1,30000144,3,3,4,2,2,6,4,1,0,5,5,2,3,3,4,3,2,5,1,1,0,0,1,0),(3862,'2015-03-10 22:38:43','2015-08-29 14:46:05',1,30003573,0,0,1,1,1,0,0,0,0,4,4,0,0,0,1,1,0,0,1,1,0,0,0,0),(3863,'2015-03-10 22:38:43','2015-08-29 14:46:05',1,30005241,0,0,0,0,0,0,0,0,0,0,0,3,0,0,0,0,0,0,0,1,0,1,1,0),(3864,'2015-03-10 22:38:43','2015-08-29 14:46:05',1,30002632,0,0,0,1,1,0,0,0,0,0,0,0,1,0,0,0,1,0,1,0,0,0,0,0),(3865,'2015-03-10 22:38:43','2015-03-10 22:38:43',1,30004114,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(3866,'2015-03-10 22:38:43','2015-08-29 14:46:05',1,30003277,2,1,0,2,2,0,1,0,1,2,3,1,5,1,1,0,5,3,3,8,5,2,7,0),(3867,'2015-03-10 22:38:43','2015-03-10 22:38:43',1,30004782,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(3868,'2015-03-10 22:38:43','2015-08-29 14:46:05',1,30001324,0,0,0,0,0,0,0,0,1,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0),(3869,'2015-03-10 22:38:43','2015-08-29 14:46:05',1,30003295,0,3,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(3870,'2015-03-10 22:38:43','2015-03-10 22:38:43',1,30002009,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(3871,'2015-03-10 22:38:43','2015-03-10 22:38:43',1,30005178,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(3872,'2015-03-10 22:38:43','2015-03-10 22:38:43',1,30002145,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(3873,'2015-03-10 22:38:43','2015-08-29 14:46:05',1,30001707,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(3874,'2015-03-10 22:38:43','2015-08-29 14:46:05',1,30003735,1,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0),(3875,'2015-03-10 22:38:43','2015-08-29 14:46:05',1,30001403,1,0,0,0,0,0,0,0,0,0,0,1,1,1,1,1,2,1,0,2,0,0,1,0),(3876,'2015-03-10 22:38:43','2015-08-29 14:46:05',1,30001391,1,6,2,0,0,2,29,4,0,0,0,0,2,1,1,0,1,1,5,5,0,0,0,0),(3877,'2015-03-10 22:38:43','2015-08-29 14:46:05',1,30001669,0,0,1,2,0,0,0,0,2,1,0,0,2,0,0,0,3,1,0,0,0,0,0,0),(3878,'2015-03-10 22:38:43','2015-08-29 14:46:05',1,30001652,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(3879,'2015-03-10 22:38:43','2015-03-10 22:38:43',1,30005081,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(3880,'2015-03-10 22:38:43','2015-03-10 22:38:43',1,30005277,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(3881,'2015-03-10 22:38:43','2015-03-10 22:38:43',1,30000066,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(3882,'2015-03-10 22:38:43','2015-03-10 22:38:43',1,30003167,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(3883,'2015-03-10 22:38:43','2015-08-29 14:46:05',1,30004313,0,1,0,0,0,1,0,0,0,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0),(3884,'2015-03-10 22:38:43','2015-03-10 22:38:43',1,30000654,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(3885,'2015-03-10 22:38:43','2015-03-10 22:38:43',1,30000243,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(3886,'2015-03-10 22:38:43','2015-08-29 14:46:05',1,30004411,0,0,0,1,1,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(3887,'2015-03-10 22:38:43','2015-03-10 22:38:43',1,30003262,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(3888,'2015-03-10 22:38:43','2015-08-29 14:46:05',1,30000866,0,0,1,0,0,0,0,0,0,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0),(3889,'2015-03-10 22:38:43','2015-03-10 22:38:43',1,30002870,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(3890,'2015-03-10 22:38:43','2015-08-29 14:46:05',1,30004559,0,0,0,0,0,0,0,0,0,0,0,1,73,0,0,0,0,0,0,2,1,0,0,0),(3891,'2015-03-10 22:38:43','2015-08-29 14:46:05',1,30003613,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(3892,'2015-03-10 22:38:43','2015-08-29 14:46:05',1,30004431,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(3893,'2015-03-10 22:38:43','2015-08-29 14:46:05',1,30001012,1,2,0,0,0,0,0,0,0,0,0,1,0,2,1,0,1,0,2,0,0,2,0,0),(3894,'2015-03-10 22:38:43','2015-08-29 14:46:05',1,30003604,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0),(3895,'2015-03-10 22:38:43','2015-08-29 14:46:05',1,30000019,0,0,0,0,0,1,0,0,2,1,0,0,0,1,1,0,0,0,0,0,0,0,0,0),(3896,'2015-03-10 22:38:43','2015-08-29 14:46:05',1,30000153,0,7,10,10,4,8,0,0,5,0,0,2,11,0,1,4,2,0,24,12,0,8,4,0),(3897,'2015-03-10 22:38:43','2015-08-29 14:46:05',1,30003271,0,0,1,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0),(3898,'2015-03-10 22:38:43','2015-03-10 22:38:43',1,30000380,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(3899,'2015-03-10 22:38:43','2015-08-29 14:46:05',1,30005048,0,0,0,1,0,0,0,0,2,6,0,0,1,0,0,0,0,0,0,1,0,0,0,0),(3900,'2015-03-10 22:38:43','2015-03-10 22:38:43',1,30003434,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(3901,'2015-03-10 22:38:43','2015-03-10 22:38:43',1,30001147,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(3902,'2015-03-10 22:38:43','2015-03-10 22:38:43',1,30002273,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(3903,'2015-03-10 22:38:43','2015-08-29 14:46:05',1,30003581,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(3904,'2015-03-10 22:38:43','2015-03-10 22:38:43',1,30003940,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(3905,'2015-03-10 22:38:43','2015-08-29 14:46:05',1,30002714,0,0,0,0,0,0,2,0,0,0,0,0,0,1,2,1,0,1,1,1,0,0,0,0),(3906,'2015-03-10 22:38:43','2015-03-10 22:38:43',1,30002106,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(3907,'2015-03-10 22:38:43','2015-08-29 14:46:05',1,30004065,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0),(3908,'2015-03-10 22:38:43','2015-03-10 22:38:43',1,30001470,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(3909,'2015-03-10 22:38:43','2015-08-29 14:46:05',1,30000438,0,0,0,0,0,0,10,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(3910,'2015-03-10 22:38:43','2015-03-10 22:38:43',1,30001628,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(3911,'2015-03-10 22:38:43','2015-08-29 14:46:05',1,30004711,0,2,1,0,0,3,2,4,2,0,1,9,2,0,1,1,0,1,1,1,3,19,17,0),(3912,'2015-03-10 22:38:43','2015-08-29 14:46:05',1,30045333,0,0,0,5,4,1,0,0,0,1,1,2,2,0,0,2,0,0,0,0,1,2,1,0),(3913,'2015-03-10 22:38:43','2015-08-29 14:46:05',1,30005284,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0),(3914,'2015-03-10 22:38:43','2015-03-10 22:38:43',1,30004770,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(3915,'2015-03-10 22:38:43','2015-03-10 22:38:43',1,30000027,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(3916,'2015-03-10 22:38:43','2015-08-29 14:46:05',1,30004293,0,0,0,0,0,0,1,1,1,0,0,0,0,0,0,0,0,0,0,0,0,2,0,0),(3917,'2015-03-10 22:38:43','2015-08-29 14:46:05',1,30001863,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0),(3918,'2015-03-10 22:38:43','2015-03-10 22:38:43',1,30000738,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(3919,'2015-03-10 22:38:43','2015-03-10 22:38:43',1,30005162,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(3920,'2015-03-10 22:38:43','2015-03-10 22:38:43',1,30000421,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(3921,'2015-03-10 22:38:43','2015-03-10 22:38:43',1,30000727,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(3922,'2015-03-10 22:38:43','2015-03-10 22:38:43',1,30000990,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(3923,'2015-03-10 22:38:43','2015-08-29 14:46:05',1,30002733,1,1,1,0,0,0,1,0,0,1,0,0,1,0,0,0,0,0,1,0,0,1,0,0),(3924,'2015-03-10 22:38:43','2015-08-29 14:46:05',1,30004754,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,1,2,4,0,0,0,0),(3925,'2015-03-10 22:38:43','2015-08-29 14:46:05',1,30002662,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,2,3,2,0,0,0,0),(3926,'2015-03-10 22:38:43','2015-08-29 14:46:05',1,30000161,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,1,0,0,0,0),(3927,'2015-03-10 22:38:43','2015-03-10 22:38:43',1,30004395,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(3928,'2015-03-10 22:38:43','2015-08-29 14:46:05',1,30000978,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0),(3929,'2015-03-10 22:38:43','2015-08-29 14:46:05',1,30005147,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(3930,'2015-03-10 22:38:43','2015-08-29 14:46:05',1,30003283,0,0,0,0,0,0,1,0,0,0,0,0,1,0,0,0,1,0,0,0,0,0,0,0),(3931,'2015-03-10 22:38:43','2015-08-29 14:46:05',1,30001106,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,0),(3932,'2015-03-10 22:38:43','2015-08-29 14:46:05',1,30002370,0,1,0,0,0,0,0,0,0,3,1,0,0,3,1,5,0,0,0,0,0,0,0,0),(3933,'2015-03-10 22:38:43','2015-03-10 22:38:43',1,30000316,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(3934,'2015-03-10 22:38:43','2015-03-10 22:38:43',1,30002290,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(3935,'2015-03-10 22:38:43','2015-03-10 22:38:43',1,30004647,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(3936,'2015-03-10 22:38:43','2015-08-29 14:46:05',1,30045353,4,5,4,8,9,7,15,3,6,14,10,10,5,4,4,2,2,12,16,7,3,6,3,0),(3937,'2015-03-10 22:38:43','2015-08-29 14:46:05',1,30002490,2,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(3938,'2015-03-10 22:38:43','2015-08-29 14:46:05',1,30002615,0,0,0,0,0,0,0,0,0,0,0,0,1,2,0,0,0,0,0,0,0,0,0,0),(3939,'2015-03-10 22:38:43','2015-03-10 22:38:43',1,30001310,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(3940,'2015-03-10 22:38:43','2015-03-10 22:38:43',1,30001449,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(3941,'2015-03-10 22:38:43','2015-03-10 22:38:43',1,30004787,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(3942,'2015-03-10 22:38:43','2015-08-29 14:46:05',1,30000797,0,1,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(3943,'2015-03-10 22:38:43','2015-03-10 22:38:43',1,30004389,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(3944,'2015-03-10 22:38:43','2015-08-29 14:46:05',1,30002001,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0),(3945,'2015-03-10 22:38:43','2015-03-10 22:38:43',1,30001326,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(3946,'2015-03-10 22:38:43','2015-08-29 14:46:05',1,30000872,0,0,0,0,0,1,0,0,1,0,0,0,1,1,1,0,0,0,0,0,0,0,0,0),(3947,'2015-03-10 22:38:43','2015-03-10 22:38:43',1,30000274,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(3948,'2015-03-10 22:38:43','2015-03-10 22:38:43',1,30004321,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(3949,'2015-03-10 22:38:43','2015-03-10 22:38:43',1,30002844,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(3950,'2015-03-10 22:38:43','2015-08-29 14:46:05',1,30000586,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,4,0,0,0,3,0,0,0),(3951,'2015-03-10 22:38:43','2015-08-29 14:46:05',1,30004737,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(3952,'2015-03-10 22:38:43','2015-08-29 14:46:05',1,30002132,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0),(3953,'2015-03-10 22:38:43','2015-03-10 22:38:43',1,30003222,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(3954,'2015-03-10 22:38:43','2015-03-10 22:38:43',1,30004749,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(3955,'2015-03-10 22:38:43','2015-08-29 14:46:05',1,30000682,0,3,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(3956,'2015-03-10 22:38:43','2015-03-10 22:38:43',1,30000432,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(3957,'2015-03-10 22:38:43','2015-08-29 14:46:05',1,30000256,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,1,0,0,0,0,0,0,0,0),(3958,'2015-03-10 22:38:43','2015-08-29 14:46:05',1,30000717,0,0,2,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,1,0,0),(3959,'2015-03-10 22:38:43','2015-03-10 22:38:43',1,30004337,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(3960,'2015-03-10 22:38:43','2015-08-29 14:46:05',1,30001838,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0),(3961,'2015-03-10 22:38:43','2015-03-10 22:38:43',1,30000235,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(3962,'2015-03-10 22:38:43','2015-03-10 22:38:43',1,30001196,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(3963,'2015-03-10 22:38:43','2015-08-29 14:46:05',1,30002471,0,0,1,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,0,0,0,0),(3964,'2015-03-10 22:38:43','2015-08-29 14:46:05',1,30001248,0,0,0,0,0,0,0,0,0,16,16,1,0,0,0,0,0,0,1,0,0,1,0,0),(3965,'2015-03-10 22:38:43','2015-03-10 22:38:43',1,30004054,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(3966,'2015-03-10 22:38:43','2015-03-10 22:38:43',1,30000618,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(3967,'2015-03-10 22:38:43','2015-08-29 14:46:05',1,30001562,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0),(3968,'2015-03-10 22:38:43','2015-08-29 14:46:05',1,30004229,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(3969,'2015-03-10 22:38:43','2015-03-10 22:38:43',1,30004571,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(3970,'2015-03-10 22:38:43','2015-08-29 14:46:05',1,30004845,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(3971,'2015-03-10 22:38:43','2015-03-10 22:38:43',1,30000507,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(3972,'2015-03-10 22:38:43','2015-08-29 14:46:05',1,30003112,0,0,1,0,0,0,0,0,3,0,0,0,1,0,0,0,1,0,0,1,0,0,0,0),(3973,'2015-03-10 22:38:43','2015-08-29 14:46:05',1,30003146,0,0,0,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(3974,'2015-03-10 22:38:43','2015-03-10 22:38:43',1,30003669,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(3975,'2015-03-10 22:38:43','2015-03-10 22:38:43',1,30003975,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(3976,'2015-03-10 22:38:43','2015-03-10 22:38:43',1,30000946,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(3977,'2015-03-10 22:38:43','2015-08-29 14:46:05',1,30000324,0,0,0,0,0,0,0,0,0,0,7,0,0,0,0,0,0,1,0,0,2,0,0,0),(3978,'2015-03-10 22:38:43','2015-08-29 14:46:05',1,30000715,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,5,0,0,0,0),(3979,'2015-03-10 22:38:43','2015-03-10 22:38:43',1,30004846,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(3980,'2015-03-10 22:38:43','2015-03-10 22:38:43',1,30001323,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(3981,'2015-03-10 22:38:43','2015-08-29 14:46:05',1,30000785,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(3982,'2015-03-10 22:38:43','2015-08-29 14:46:05',1,30001763,1,1,1,0,3,0,0,0,0,0,0,0,0,2,2,0,0,0,0,0,0,0,0,0),(3983,'2015-03-10 22:38:43','2015-03-10 22:38:43',1,30000413,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(3984,'2015-03-10 22:38:43','2015-08-29 14:46:05',1,30004066,0,0,1,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0),(3985,'2015-03-10 22:38:43','2015-03-10 22:38:43',1,30003183,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(3986,'2015-03-10 22:38:43','2015-03-10 22:38:43',1,30004408,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(3987,'2015-03-10 22:38:43','2015-08-29 14:46:05',1,30003714,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,1,1,1,0,0,0,0),(3988,'2015-03-10 22:38:43','2015-08-29 14:46:05',1,30001165,0,1,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(3989,'2015-03-10 22:38:43','2015-08-29 14:46:05',1,30002363,0,0,0,5,5,0,0,0,1,1,1,0,0,0,0,0,1,2,0,0,0,0,0,0),(3990,'2015-03-10 22:38:43','2015-08-29 14:46:05',1,30004744,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0),(3991,'2015-03-10 22:38:43','2015-08-29 14:46:05',1,30004855,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(3992,'2015-03-10 22:38:43','2015-03-10 22:38:43',1,30001080,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(3993,'2015-03-10 22:38:43','2015-03-10 22:38:43',1,30001935,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(3994,'2015-03-10 22:38:43','2015-03-10 22:38:43',1,30004343,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(3995,'2015-03-10 22:38:43','2015-03-10 22:38:43',1,30002138,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(3996,'2015-03-10 22:38:43','2015-03-10 22:38:43',1,30003221,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(3997,'2015-03-10 22:38:43','2015-08-29 14:46:05',1,30001246,0,0,0,0,0,0,0,0,0,2,1,0,1,0,1,1,0,0,2,1,0,0,1,0),(3998,'2015-03-10 22:38:43','2015-08-29 14:46:05',1,30001033,1,0,0,0,1,1,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(3999,'2015-03-10 22:38:43','2015-03-10 22:38:43',1,30000899,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(4000,'2015-03-10 22:38:43','2015-03-10 22:38:43',1,30003164,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(4001,'2015-03-10 22:38:43','2015-03-10 22:38:43',1,30003181,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(4002,'2015-03-10 22:38:43','2015-08-29 14:46:05',1,30001766,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,0,0,0,0,0,0,0,0),(4003,'2015-03-10 22:38:43','2015-03-10 22:38:43',1,30001564,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(4004,'2015-03-10 22:38:43','2015-03-10 22:38:43',1,30001772,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(4005,'2015-03-10 22:38:43','2015-03-10 22:38:43',1,30001749,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(4006,'2015-03-10 22:38:43','2015-08-29 14:46:05',1,30001305,0,0,0,0,0,0,0,0,1,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0),(4007,'2015-03-10 22:38:43','2015-03-10 22:38:43',1,30002364,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(4008,'2015-03-10 22:38:43','2015-03-10 22:38:43',1,30005144,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(4009,'2015-03-10 22:38:43','2015-08-29 14:46:05',1,30002104,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0),(4010,'2015-03-10 22:38:43','2015-03-10 22:38:43',1,30004837,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(4011,'2015-03-10 22:38:43','2015-08-29 14:46:05',1,30000505,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0),(4012,'2015-03-10 22:38:43','2015-03-10 22:38:43',1,30001467,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(4013,'2015-03-10 22:38:43','2015-03-10 22:38:43',1,30004448,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(4014,'2015-03-10 22:38:43','2015-03-10 22:38:43',1,30002307,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(4015,'2015-03-10 22:38:43','2015-03-10 22:38:43',1,30005172,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(4016,'2015-03-10 22:38:43','2015-03-10 22:38:43',1,30002431,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(4017,'2015-03-10 22:38:43','2015-03-10 22:38:43',1,30000475,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(4018,'2015-03-10 22:38:43','2015-03-10 22:38:43',1,30004857,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(4019,'2015-03-10 22:38:43','2015-03-10 22:38:43',1,30000941,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(4020,'2015-03-10 22:38:43','2015-08-29 14:46:05',1,30001903,0,0,1,0,0,0,0,0,0,0,0,0,0,2,3,3,0,0,1,1,0,0,0,0),(4021,'2015-03-10 22:38:43','2015-08-29 14:46:05',1,30002186,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,4,0,0,0,0),(4022,'2015-03-10 22:38:43','2015-03-10 22:38:43',1,30002288,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(4023,'2015-03-10 22:38:43','2015-03-10 22:38:43',1,30001473,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(4024,'2015-03-10 22:38:43','2015-03-10 22:38:43',1,30003739,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(4025,'2015-03-10 22:38:43','2015-08-29 14:46:05',1,30001783,0,0,0,0,0,0,0,0,0,1,1,0,0,2,3,2,0,0,1,1,0,0,0,0),(4026,'2015-03-10 22:38:43','2015-08-29 14:46:05',1,30002479,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0),(4027,'2015-03-10 22:38:43','2015-08-29 14:46:05',1,30002893,0,0,0,0,0,0,0,0,0,0,0,0,0,2,1,0,0,0,1,0,0,0,2,0),(4028,'2015-03-10 22:38:43','2015-08-29 14:46:05',1,30000722,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,1,0),(4029,'2015-03-10 22:38:43','2015-03-10 22:38:43',1,30000938,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(4030,'2015-03-10 22:38:43','2015-08-29 14:46:05',1,30001565,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0),(4031,'2015-03-10 22:38:43','2015-08-29 14:46:05',1,30003719,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,2,0),(4032,'2015-03-10 22:38:43','2015-03-10 22:38:43',1,30004815,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(4033,'2015-03-10 22:38:43','2015-03-10 22:38:43',1,30000481,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(4034,'2015-03-10 22:38:43','2015-08-29 14:46:05',1,30001596,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,1,0,0,0,0,2,0,0),(4035,'2015-03-10 22:38:43','2015-03-10 22:38:43',1,30003174,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(4036,'2015-03-10 22:38:43','2015-08-29 14:46:05',1,30001137,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(4037,'2015-03-10 22:38:43','2015-03-10 22:38:43',1,30004909,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(4038,'2015-03-10 22:38:43','2015-08-29 14:46:05',1,30001163,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,2,0,0,0,0,0,0),(4039,'2015-03-10 22:38:43','2015-03-10 22:38:43',1,30004198,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(4040,'2015-03-10 22:38:43','2015-08-29 14:46:05',1,30000793,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,4,1,0,0),(4041,'2015-03-10 22:38:43','2015-03-10 22:38:43',1,30001617,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(4042,'2015-03-10 22:38:43','2015-08-29 14:46:05',1,30003037,0,1,0,1,0,1,0,0,1,0,2,0,0,1,1,0,0,2,2,2,1,0,2,0),(4043,'2015-03-10 22:38:43','2015-03-10 22:38:43',1,30004610,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(4044,'2015-03-10 22:38:43','2015-08-29 14:46:05',1,30003292,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0),(4045,'2015-03-10 22:38:43','2015-03-10 22:38:43',1,30002829,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(4046,'2015-03-10 22:38:43','2015-08-29 14:46:05',1,30004714,0,0,0,0,0,0,0,0,0,0,3,0,0,0,0,0,0,0,0,0,0,0,0,0),(4047,'2015-03-10 22:38:43','2015-03-10 22:38:43',1,30000526,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(4048,'2015-03-10 22:38:43','2015-08-29 14:46:05',1,30004354,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0),(4049,'2015-03-10 22:38:43','2015-08-29 14:46:05',1,30004002,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(4050,'2015-03-10 22:38:43','2015-08-29 14:46:05',1,30004041,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,0,0,0,0,0,0,0),(4051,'2015-03-10 22:38:43','2015-08-29 14:46:05',1,30004027,0,0,0,0,0,0,0,0,0,0,0,0,0,2,2,1,0,0,0,0,0,0,0,0),(4052,'2015-03-10 22:38:43','2015-03-10 22:38:43',1,30003244,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(4053,'2015-03-10 22:38:43','2015-03-10 22:38:43',1,30004752,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(4054,'2015-03-10 22:38:43','2015-03-10 22:38:43',1,30000767,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(4055,'2015-03-10 22:38:43','2015-08-29 14:46:05',1,30003266,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0),(4056,'2015-03-10 22:38:43','2015-08-29 14:46:05',1,30004402,2,0,0,0,0,2,0,0,0,0,1,0,1,0,0,0,0,1,0,0,0,0,0,0),(4057,'2015-03-10 22:38:43','2015-03-10 22:38:43',1,30003236,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(4058,'2015-03-10 22:38:43','2015-08-29 14:46:05',1,30001107,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,0,0,1,0),(4059,'2015-03-10 22:38:43','2015-03-10 22:38:43',1,30002330,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(4060,'2015-03-10 22:38:43','2015-03-10 22:38:43',1,30002837,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(4061,'2015-03-10 22:38:43','2015-03-10 22:38:43',1,30002002,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(4062,'2015-03-10 22:38:43','2015-08-29 14:46:05',1,30000658,0,0,0,0,0,1,0,0,0,0,0,0,0,5,0,0,0,0,0,0,0,0,0,0),(4063,'2015-03-10 22:38:43','2015-03-10 22:38:43',1,30002324,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(4064,'2015-03-10 22:38:43','2015-03-10 22:38:43',1,30005099,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(4065,'2015-03-10 22:38:43','2015-03-10 22:38:43',1,30003151,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(4066,'2015-03-10 22:38:43','2015-08-29 14:46:05',1,30005112,0,0,2,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(4067,'2015-03-10 22:38:43','2015-08-29 14:46:05',1,30004648,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(4068,'2015-03-10 22:38:43','2015-03-10 22:38:43',1,30000950,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(4069,'2015-03-10 22:38:43','2015-03-10 22:38:43',1,30003127,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(4070,'2015-03-10 22:38:43','2015-03-10 22:38:43',1,30001491,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(4071,'2015-03-10 22:38:43','2015-08-29 14:46:05',1,30001189,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0),(4072,'2015-03-10 22:38:43','2015-08-29 14:46:05',1,30001265,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0),(4073,'2015-03-10 22:38:43','2015-08-29 14:46:05',1,30002013,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(4074,'2015-03-10 22:38:43','2015-03-10 22:38:43',1,30004522,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(4075,'2015-03-10 22:38:43','2015-08-29 14:46:05',1,30002182,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,4,0,0,0,0),(4076,'2015-03-10 22:38:43','2015-08-29 14:46:05',1,30000291,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0),(4077,'2015-03-10 22:38:43','2015-03-10 22:38:43',1,30001577,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(4078,'2015-03-10 22:38:43','2015-03-10 22:38:43',1,30001102,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(4079,'2015-03-10 22:38:43','2015-03-10 22:38:43',1,30000320,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(4080,'2015-03-10 22:38:43','2015-03-10 22:38:43',1,30004853,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(4081,'2015-03-10 22:38:43','2015-08-29 14:46:05',1,30003631,0,0,1,2,0,2,3,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(4082,'2015-03-10 22:38:43','2015-08-29 14:46:05',1,30003218,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(4083,'2015-03-10 22:38:43','2015-08-29 14:46:05',1,30002135,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0),(4084,'2015-03-10 22:38:43','2015-03-10 22:38:43',1,30000563,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(4085,'2015-03-10 22:38:43','2015-08-29 14:46:05',1,30004871,0,0,0,0,0,0,0,0,2,0,0,0,0,0,0,0,0,0,4,2,0,0,0,0),(4086,'2015-03-10 22:38:43','2015-03-10 22:38:43',1,30001450,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(4087,'2015-03-10 22:38:43','2015-03-10 22:38:43',1,30002874,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(4088,'2015-03-10 22:38:43','2015-03-10 22:38:43',1,30004891,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(4089,'2015-03-10 22:38:43','2015-08-29 14:46:05',1,30003769,0,1,0,0,0,0,0,1,0,2,1,0,4,4,0,0,0,0,0,0,0,0,0,0),(4090,'2015-03-10 22:38:43','2015-03-10 22:38:43',1,30001806,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(4091,'2015-03-10 22:38:43','2015-08-29 14:46:05',1,30004566,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0),(4092,'2015-03-10 22:38:43','2015-03-10 22:38:43',1,30004473,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(4093,'2015-03-10 22:38:43','2015-03-10 22:38:43',1,30000589,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(4094,'2015-03-10 22:38:43','2015-03-10 22:38:43',1,30004339,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(4095,'2015-03-10 22:38:43','2015-03-10 22:38:43',1,30004727,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(4096,'2015-03-10 22:38:43','2015-08-29 14:46:05',1,30002010,0,0,0,1,1,1,0,0,0,0,0,0,0,2,0,0,0,0,0,0,0,0,0,0),(4097,'2015-03-10 22:38:43','2015-03-10 22:38:43',1,30001619,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(4098,'2015-03-10 22:38:43','2015-03-10 22:38:43',1,30001859,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(4099,'2015-03-10 22:38:43','2015-03-10 22:38:43',1,30002894,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(4100,'2015-03-10 22:38:43','2015-03-10 22:38:43',1,30003209,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(4101,'2015-03-10 22:38:43','2015-03-10 22:38:43',1,30000768,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(4102,'2015-03-10 22:38:43','2015-03-10 22:38:43',1,30004485,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(4103,'2015-03-10 22:38:43','2015-08-29 14:46:05',1,30001018,2,2,0,0,0,1,0,0,0,0,0,0,0,0,0,0,1,0,0,1,1,0,2,0),(4104,'2015-03-10 22:38:43','2015-08-29 14:46:05',1,30002958,0,0,2,1,0,4,0,0,0,1,1,1,1,0,1,1,0,0,2,0,1,1,0,0),(4105,'2015-03-10 22:38:43','2015-08-29 14:46:05',1,30000033,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,2,0,0,0,0,0,0,0),(4106,'2015-03-10 22:38:43','2015-08-29 14:46:05',1,30002726,0,0,0,0,1,0,0,1,1,0,0,0,0,1,1,0,0,1,0,0,0,0,0,0),(4107,'2015-03-10 22:38:43','2015-03-10 22:38:43',1,30003941,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(4108,'2015-03-10 22:38:43','2015-08-29 14:46:05',1,30002052,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,3,0,0,0,0),(4109,'2015-03-10 22:38:43','2015-03-10 22:38:43',1,30003914,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(4110,'2015-03-10 22:38:43','2015-08-29 14:46:05',1,30002982,0,3,0,4,2,0,2,0,0,0,0,0,1,0,1,1,0,0,3,3,1,0,0,0),(4111,'2015-03-10 22:38:43','2015-03-10 22:38:43',1,30002839,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(4112,'2015-03-10 22:38:43','2015-08-29 14:46:05',1,30045315,5,0,1,0,0,3,0,1,1,0,0,0,0,1,1,0,0,1,0,2,2,0,1,0),(4113,'2015-03-10 22:38:43','2015-08-29 14:46:05',1,30002772,0,0,0,1,1,0,0,0,0,1,1,0,1,0,1,1,0,0,2,1,0,0,0,0),(4114,'2015-03-10 22:38:43','2015-08-29 14:46:05',1,30045349,3,0,4,3,3,1,1,0,1,3,2,2,2,1,1,2,3,1,7,0,3,5,4,0),(4115,'2015-03-10 22:38:43','2015-08-29 14:46:05',1,30002239,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0),(4116,'2015-03-10 22:38:43','2015-08-29 14:46:05',1,30002718,0,7,4,14,6,1,3,4,18,21,18,2,18,23,6,7,7,0,9,18,35,22,4,0),(4117,'2015-03-10 22:38:43','2015-08-29 14:46:05',1,30001727,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0),(4118,'2015-03-10 22:38:43','2015-08-29 14:46:05',1,30005319,0,1,0,2,1,1,0,1,0,1,1,0,0,0,1,3,1,0,0,0,0,0,1,0),(4119,'2015-03-10 22:38:43','2015-03-10 22:38:43',1,30005085,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(4120,'2015-03-10 22:38:43','2015-08-29 14:46:05',1,30005080,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0),(4121,'2015-03-10 22:38:43','2015-08-29 14:46:05',1,30003530,0,0,0,0,0,0,0,0,1,0,0,0,0,1,1,1,2,0,2,1,1,0,1,0),(4122,'2015-03-10 22:38:43','2015-08-29 14:46:05',1,30003495,0,0,0,0,0,0,0,0,0,0,2,1,0,0,0,0,0,0,0,0,0,0,0,0),(4123,'2015-03-10 22:38:43','2015-03-10 22:38:43',1,30002212,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(4124,'2015-03-10 22:38:43','2015-08-29 14:46:05',1,30004269,1,0,0,0,0,0,0,0,1,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0),(4125,'2015-03-10 22:38:43','2015-03-10 22:38:43',1,30000025,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(4126,'2015-03-10 22:38:43','2015-03-10 22:38:43',1,30002227,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(4127,'2015-03-10 22:38:43','2015-03-10 22:38:43',1,30003602,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(4128,'2015-03-10 22:38:43','2015-03-10 22:38:43',1,30001417,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(4129,'2015-03-10 22:38:43','2015-08-29 14:46:05',1,30001373,0,0,0,0,0,0,0,0,0,0,2,0,1,0,0,0,0,0,0,0,0,0,0,0),(4130,'2015-03-10 22:38:43','2015-08-29 14:46:05',1,30002697,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,0,1,1,0),(4131,'2015-03-10 22:38:43','2015-03-10 22:38:43',1,30004116,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(4132,'2015-03-10 22:38:43','2015-08-29 14:46:05',1,30002271,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(4133,'2015-03-10 22:38:43','2015-03-10 22:38:43',1,30000406,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(4134,'2015-03-10 22:38:43','2015-03-10 22:38:43',1,30003104,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(4135,'2015-03-10 22:38:43','2015-08-29 14:46:05',1,30004742,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,1,0,0,0),(4136,'2015-03-10 22:38:43','2015-03-10 22:38:43',1,30000805,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(4137,'2015-03-10 22:38:43','2015-03-10 22:38:43',1,30002023,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(4138,'2015-03-10 22:38:43','2015-08-29 14:46:05',1,30004577,0,0,0,0,0,0,0,0,0,1,0,0,1,1,0,1,1,0,0,0,4,3,1,0),(4139,'2015-03-10 22:38:43','2015-03-10 22:38:43',1,30002140,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(4140,'2015-03-10 22:38:43','2015-08-29 14:46:05',1,30005328,0,1,0,1,0,0,1,0,1,0,0,1,1,1,1,5,1,1,0,1,0,1,3,0),(4141,'2015-03-10 22:38:43','2015-08-29 14:46:05',1,30000160,0,1,0,0,0,0,1,0,0,0,0,1,2,0,0,1,1,4,0,3,0,0,0,0),(4142,'2015-03-10 22:38:43','2015-08-29 14:46:05',1,30045354,1,9,3,3,3,6,5,3,12,3,4,7,4,5,4,4,7,12,2,11,4,5,18,0),(4143,'2015-03-10 22:38:43','2015-08-29 14:46:05',1,30001700,0,0,0,1,0,0,0,1,0,0,0,0,0,0,1,1,0,0,0,0,1,0,0,0),(4144,'2015-03-10 22:38:43','2015-08-29 14:46:05',1,30003829,0,3,2,3,2,2,1,0,2,3,4,3,0,1,3,5,0,1,23,4,1,0,3,0),(4145,'2015-03-10 22:38:43','2015-08-29 14:46:05',1,30002510,3,8,6,4,3,7,1,4,1,0,1,3,6,4,2,3,9,5,13,18,6,3,2,0),(4146,'2015-03-10 22:38:43','2015-08-29 14:46:05',1,30004970,2,1,0,2,2,2,1,2,5,3,2,2,1,0,1,3,1,0,4,3,1,4,1,0),(4147,'2015-03-10 22:38:43','2015-08-29 14:46:05',1,30003564,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(4148,'2015-03-10 22:38:43','2015-03-10 22:38:43',1,30000780,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(4149,'2015-03-10 22:38:43','2015-08-29 14:46:05',1,30002056,0,1,0,2,3,0,0,0,0,0,0,0,10,3,1,0,0,1,0,1,4,2,2,0),(4150,'2015-03-10 22:38:43','2015-08-29 14:46:05',1,30003851,1,0,0,0,2,0,0,0,0,1,1,0,0,0,0,0,1,0,0,0,1,3,0,0),(4151,'2015-03-10 22:38:43','2015-08-29 14:46:05',1,30003391,0,0,1,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,2,2,0,0,0,0),(4152,'2015-03-10 22:38:43','2015-08-29 14:46:05',1,30003880,0,0,0,0,0,0,0,0,3,0,0,0,0,2,0,0,0,0,0,0,0,0,0,0),(4153,'2015-03-10 22:38:43','2015-08-29 14:46:05',1,30001686,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,5,0,0,0,0,0,0,0),(4154,'2015-03-10 22:38:43','2015-08-29 14:46:05',1,30002256,0,0,0,0,0,1,0,0,0,0,1,2,0,0,0,0,0,2,1,0,0,0,1,0),(4155,'2015-03-10 22:38:43','2015-08-29 14:46:05',1,30003803,2,0,0,2,0,0,1,0,0,0,0,0,0,1,0,0,0,0,0,0,1,0,0,0),(4156,'2015-03-10 22:38:43','2015-03-10 22:38:43',1,30001475,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(4157,'2015-03-10 22:38:43','2015-03-10 22:38:43',1,30000385,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(4158,'2015-03-10 22:38:43','2015-03-10 22:38:43',1,30003994,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(4159,'2015-03-10 22:38:43','2015-08-29 14:46:05',1,30003333,0,0,2,0,0,4,0,0,0,0,0,0,1,0,1,1,0,0,0,0,0,0,0,0),(4160,'2015-03-10 22:38:43','2015-03-10 22:38:43',1,30004724,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(4161,'2015-03-10 22:38:43','2015-03-10 22:38:43',1,30003229,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(4162,'2015-03-10 22:38:43','2015-03-10 22:38:43',1,30002129,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(4163,'2015-03-10 22:38:43','2015-03-10 22:38:43',1,30002491,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(4164,'2015-03-10 22:38:43','2015-08-29 14:46:05',1,30002954,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0),(4165,'2015-03-10 22:38:43','2015-03-10 22:38:43',1,30004225,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(4166,'2015-03-10 22:38:43','2015-03-10 22:38:43',1,30004812,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(4167,'2015-03-10 22:38:43','2015-03-10 22:38:43',1,30002151,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(4168,'2015-03-10 22:38:43','2015-03-10 22:38:43',1,30004918,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(4169,'2015-03-10 22:38:43','2015-08-29 14:46:05',1,30002993,0,0,0,0,0,0,0,0,0,0,0,0,0,4,4,1,0,3,0,0,0,1,0,0),(4170,'2015-03-10 22:38:43','2015-03-10 22:38:43',1,30003457,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(4171,'2015-03-10 22:38:43','2015-08-29 14:46:05',1,30003916,0,0,0,0,0,0,0,0,0,1,0,0,1,1,0,0,0,0,1,3,0,0,1,0),(4172,'2015-03-10 22:38:43','2015-08-29 14:46:05',1,30002241,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,1,0,0,0,0,0,0,0,0),(4173,'2015-03-10 22:38:43','2015-08-29 14:46:05',1,30001650,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(4174,'2015-03-10 22:38:43','2015-03-10 22:38:43',1,30004472,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(4175,'2015-03-10 22:38:43','2015-03-10 22:38:43',1,30001090,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(4176,'2015-03-10 22:38:43','2015-03-10 22:38:43',1,30004953,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(4177,'2015-03-10 22:38:43','2015-08-29 14:46:05',1,30003260,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0),(4178,'2015-03-10 22:38:43','2015-03-10 22:38:43',1,30002380,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(4179,'2015-03-10 22:38:43','2015-03-10 22:38:43',1,30003626,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(4180,'2015-03-10 22:38:43','2015-03-10 22:38:43',1,30004015,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(4181,'2015-03-10 22:38:43','2015-03-10 22:38:43',1,30004494,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(4182,'2015-03-10 22:38:43','2015-08-29 14:46:05',1,30001902,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,1,0,0,0,0),(4183,'2015-03-10 22:38:43','2015-08-29 14:46:05',1,30003353,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,4,0,0),(4184,'2015-03-10 22:38:43','2015-08-29 14:46:05',1,30002443,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0),(4185,'2015-03-10 22:38:43','2015-03-10 22:38:43',1,30003610,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(4186,'2015-03-10 22:38:43','2015-08-29 14:46:05',1,30001028,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,1,3,2,1,1,1,0),(4187,'2015-03-10 22:38:43','2015-03-10 22:38:43',1,30001520,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(4188,'2015-03-10 22:38:43','2015-08-29 14:46:05',1,30001187,0,0,0,0,0,1,0,0,1,2,1,0,0,1,2,1,0,0,0,0,0,0,1,0),(4189,'2015-03-10 22:38:43','2015-03-10 22:38:43',1,30000673,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(4190,'2015-03-10 22:38:43','2015-03-10 22:38:43',1,30002322,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(4191,'2015-03-10 22:38:43','2015-08-29 14:46:05',1,30003246,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0),(4192,'2015-03-10 22:38:43','2015-08-29 14:46:05',1,30002926,1,0,1,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0),(4193,'2015-03-10 22:38:43','2015-03-10 22:38:43',1,30004370,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(4194,'2015-03-10 22:38:43','2015-08-29 14:46:05',1,30045325,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0),(4195,'2015-03-10 22:38:43','2015-08-29 14:46:05',1,30001983,0,0,0,0,0,2,0,0,3,6,5,0,4,6,5,2,1,0,0,19,3,2,4,0),(4196,'2015-03-10 22:38:43','2015-03-10 22:38:43',1,30000815,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(4197,'2015-03-10 22:38:43','2015-08-29 14:46:05',1,30002534,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0),(4198,'2015-03-10 22:38:43','2015-08-29 14:46:05',1,30003395,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(4199,'2015-03-10 22:38:43','2015-08-29 14:46:05',1,30004080,0,0,0,0,0,0,0,0,1,0,1,0,0,0,1,1,0,0,0,0,2,0,1,0),(4200,'2015-03-10 22:38:43','2015-08-29 14:46:05',1,30002550,0,0,0,0,0,0,0,0,0,0,0,0,0,1,2,1,0,0,1,0,0,0,0,0),(4201,'2015-03-10 22:38:43','2015-03-10 22:38:43',1,30003081,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(4202,'2015-03-10 22:38:43','2015-08-29 14:46:05',1,30002721,0,0,0,1,1,0,0,0,0,0,0,2,0,3,1,0,1,1,0,0,0,0,0,0),(4203,'2015-03-10 22:38:43','2015-03-10 22:38:43',1,30002033,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(4204,'2015-03-10 22:38:43','2015-03-10 22:38:43',1,30002426,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(4205,'2015-03-10 22:38:43','2015-08-29 14:46:05',1,30002975,0,0,0,0,0,1,0,0,0,0,0,0,1,0,0,0,1,0,1,0,1,0,1,0),(4206,'2015-03-10 22:38:43','2015-03-10 22:38:43',1,30001936,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(4207,'2015-03-10 22:38:43','2015-08-29 14:46:05',1,30004560,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0),(4208,'2015-03-10 22:38:43','2015-08-29 14:46:05',1,30001924,0,1,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,2,0,1,0),(4209,'2015-03-10 22:38:43','2015-03-10 22:38:43',1,30001320,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(4210,'2015-03-10 22:38:43','2015-03-10 22:38:43',1,30000359,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(4211,'2015-03-10 22:38:43','2015-03-10 22:38:43',1,30002039,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(4212,'2015-03-10 22:38:43','2015-08-29 14:46:05',1,30000790,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0),(4213,'2015-03-10 22:38:43','2015-08-29 14:46:05',1,30001830,0,0,3,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(4214,'2015-03-10 22:38:43','2015-03-10 22:38:43',1,30002880,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(4215,'2015-03-10 22:38:43','2015-08-29 14:46:05',1,30001259,3,0,0,0,0,0,1,0,0,0,0,0,0,0,0,1,0,0,0,1,0,0,0,0),(4216,'2015-03-10 22:38:43','2015-03-10 22:38:43',1,30001931,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(4217,'2015-03-10 22:38:43','2015-03-10 22:38:43',1,30001511,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(4218,'2015-03-10 22:38:43','2015-03-10 22:38:43',1,30001139,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(4219,'2015-03-10 22:38:43','2015-03-10 22:38:43',1,30003362,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(4220,'2015-03-10 22:38:43','2015-08-29 14:46:05',1,30000511,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(4221,'2015-03-10 22:38:43','2015-03-10 22:38:43',1,30001773,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(4222,'2015-03-10 22:38:43','2015-03-10 22:38:43',1,30004516,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(4223,'2015-03-10 22:38:43','2015-03-10 22:38:43',1,30000377,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(4224,'2015-03-10 22:38:43','2015-08-29 14:46:05',1,30002183,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0),(4225,'2015-03-10 22:38:43','2015-08-29 14:46:05',1,30002249,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0),(4226,'2015-03-10 22:38:43','2015-08-29 14:46:05',1,30003845,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,1,0,0,0,0,0),(4227,'2015-03-10 22:38:43','2015-08-29 14:46:05',1,30001123,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(4228,'2015-03-10 22:38:43','2015-08-29 14:46:05',1,30001724,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(4229,'2015-03-10 22:38:43','2015-08-29 14:46:05',1,30001408,0,0,1,4,0,1,2,0,0,1,0,0,2,2,1,0,0,0,0,1,0,0,0,0),(4230,'2015-03-10 22:38:43','2015-03-10 22:38:43',1,30002326,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(4231,'2015-03-10 22:38:43','2015-08-29 14:46:05',1,30001900,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,1,0,0,0),(4232,'2015-03-10 22:38:43','2015-08-29 14:46:05',1,30000651,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(4233,'2015-03-10 22:38:43','2015-08-29 14:46:05',1,30000298,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0),(4234,'2015-03-10 22:38:43','2015-08-29 14:46:05',1,30001943,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,0,0,0),(4235,'2015-03-10 22:38:43','2015-03-10 22:38:43',1,30001142,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(4236,'2015-03-10 22:38:43','2015-03-10 22:38:43',1,30001563,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(4237,'2015-03-10 22:38:43','2015-03-10 22:38:43',1,30001138,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(4238,'2015-03-10 22:38:43','2015-03-10 22:38:43',1,30005119,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(4239,'2015-03-10 22:38:43','2015-08-29 14:46:05',1,30000712,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0),(4240,'2015-03-10 22:38:43','2015-08-29 14:46:05',1,30003410,0,1,1,0,0,0,0,0,0,2,2,0,1,0,1,1,1,1,1,2,1,3,0,0),(4241,'2015-03-10 22:38:43','2015-03-10 22:38:43',1,30004963,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(4242,'2015-03-10 22:38:43','2015-03-10 22:38:43',1,30000477,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(4243,'2015-03-10 22:38:43','2015-03-10 22:38:43',1,30000834,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(4244,'2015-03-10 22:38:43','2015-03-10 22:38:43',1,30005105,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(4245,'2015-03-10 22:38:43','2015-08-29 14:46:05',1,30005188,0,0,0,0,0,11,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(4246,'2015-03-10 22:38:43','2015-03-10 22:38:43',1,30002022,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(4247,'2015-03-10 22:38:43','2015-03-10 22:38:43',1,30003628,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(4248,'2015-03-10 22:38:43','2015-08-29 14:46:05',1,30001308,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(4249,'2015-03-10 22:38:43','2015-03-10 22:38:43',1,30000501,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(4250,'2015-03-10 22:38:43','2015-03-10 22:38:43',1,30004776,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(4251,'2015-03-10 22:38:43','2015-03-10 22:38:43',1,30004819,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(4252,'2015-03-10 22:38:43','2015-03-10 22:38:43',1,30004332,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(4253,'2015-03-10 22:38:43','2015-08-29 14:46:05',1,30001918,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0),(4254,'2015-03-10 22:38:43','2015-08-29 14:46:05',1,30001591,0,0,0,0,0,0,6,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(4255,'2015-03-10 22:38:43','2015-03-10 22:38:43',1,30001893,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(4256,'2015-03-10 22:38:43','2015-08-29 14:46:05',1,30002912,0,0,0,0,0,1,0,1,0,0,0,1,0,0,0,0,0,1,0,0,0,2,0,0),(4257,'2015-03-10 22:38:43','2015-08-29 14:46:05',1,30000657,0,0,0,0,0,0,0,0,0,0,0,0,0,2,0,0,0,0,0,0,0,0,0,0),(4258,'2015-03-10 22:38:43','2015-08-29 14:46:05',1,30003611,1,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,1,0),(4259,'2015-03-10 22:38:43','2015-03-10 22:38:43',1,30003340,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(4260,'2015-03-10 22:38:43','2015-03-10 22:38:43',1,30003629,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(4261,'2015-03-10 22:38:43','2015-03-10 22:38:43',1,30004683,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(4262,'2015-03-10 22:38:43','2015-08-29 14:46:05',1,30002888,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0),(4263,'2015-03-10 22:38:43','2015-03-10 22:38:43',1,30002017,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(4264,'2015-03-10 22:38:43','2015-03-10 22:38:43',1,30000260,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(4265,'2015-03-10 22:38:43','2015-03-10 22:38:43',1,30000388,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(4266,'2015-03-10 22:38:43','2015-08-29 14:46:05',1,30001088,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(4267,'2015-03-10 22:38:43','2015-03-10 22:38:43',1,30001176,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(4268,'2015-03-10 22:38:43','2015-08-29 14:46:05',1,30003368,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0),(4269,'2015-03-10 22:38:43','2015-03-10 22:38:43',1,30004172,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(4270,'2015-03-10 22:38:43','2015-03-10 22:38:43',1,30004886,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(4271,'2015-03-10 22:38:43','2015-03-10 22:38:43',1,30000753,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(4272,'2015-03-10 22:38:43','2015-03-10 22:38:43',1,30000667,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(4273,'2015-03-10 22:38:43','2015-03-10 22:38:43',1,30001030,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(4274,'2015-03-10 22:38:43','2015-08-29 14:46:05',1,30001237,0,0,0,0,0,0,0,1,0,0,0,1,1,0,0,0,0,0,0,0,0,0,0,0),(4275,'2015-03-10 22:38:43','2015-03-10 22:38:43',1,30004805,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(4276,'2015-03-10 22:38:43','2015-03-10 22:38:43',1,30001471,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(4277,'2015-03-10 22:38:43','2015-03-10 22:38:43',1,30001145,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(4278,'2015-03-10 22:38:43','2015-08-29 14:46:05',1,30000284,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0),(4279,'2015-03-10 22:38:43','2015-03-10 22:38:43',1,30003257,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(4280,'2015-03-10 22:38:43','2015-08-29 14:46:05',1,30000886,0,0,0,0,0,0,0,0,0,0,0,0,1,1,1,0,0,0,0,0,0,0,0,0),(4281,'2015-03-10 22:38:43','2015-03-10 22:38:43',1,30001891,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(4282,'2015-03-10 22:38:43','2015-03-10 22:38:43',1,30000389,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(4283,'2015-03-10 22:38:43','2015-08-29 14:46:05',1,30003741,1,1,0,0,0,0,0,0,0,0,1,0,2,0,0,0,0,0,0,0,0,1,0,0),(4284,'2015-03-10 22:38:43','2015-08-29 14:46:05',1,30003506,2,2,0,0,0,2,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0),(4285,'2015-03-10 22:38:43','2015-08-29 14:46:05',1,30001386,0,0,2,0,0,2,0,0,0,0,0,1,1,0,0,0,0,0,0,7,2,0,1,0),(4286,'2015-03-10 22:38:43','2015-08-29 14:46:05',1,30003894,0,0,0,0,0,0,0,0,0,2,3,1,0,0,0,0,0,0,0,0,0,0,1,0),(4287,'2015-03-10 22:38:43','2015-08-29 14:46:05',1,30001675,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(4288,'2015-03-10 22:38:43','2015-08-29 14:46:05',1,30004242,7,5,3,0,2,2,4,0,0,3,4,2,0,0,0,0,1,0,6,7,0,5,4,0),(4289,'2015-03-10 22:38:43','2015-03-10 22:38:43',1,30002251,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(4290,'2015-03-10 22:38:43','2015-08-29 14:46:05',1,30031672,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0),(4291,'2015-03-10 22:38:43','2015-03-10 22:38:43',1,30002279,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(4292,'2015-03-10 22:38:43','2015-08-29 14:46:05',1,30003879,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0),(4293,'2015-03-10 22:38:43','2015-08-29 14:46:05',1,30001719,1,0,2,0,1,0,0,0,2,3,2,0,0,1,1,0,4,1,0,0,1,2,3,0),(4294,'2015-03-10 22:38:43','2015-08-29 14:46:05',1,30002298,0,0,1,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(4295,'2015-03-10 22:38:43','2015-08-29 14:46:05',1,30003474,1,0,0,0,0,2,0,0,0,1,1,1,2,5,5,3,1,1,7,6,0,1,1,0),(4296,'2015-03-10 22:38:43','2015-08-29 14:46:05',1,30002259,0,0,1,0,0,0,0,0,0,0,1,0,0,0,0,0,1,0,0,0,0,0,0,0),(4297,'2015-03-10 22:38:43','2015-08-29 14:46:05',1,30003518,0,1,0,0,1,0,0,0,0,1,1,0,0,1,0,0,0,0,0,0,0,0,0,0),(4298,'2015-03-10 22:38:43','2015-08-29 14:46:05',1,30003086,3,0,3,2,1,0,0,0,3,1,1,1,1,2,0,1,0,0,0,0,0,3,2,0),(4299,'2015-03-10 22:38:43','2015-08-29 14:46:05',1,30000508,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,1,0),(4300,'2015-03-10 22:38:43','2015-08-29 14:46:05',1,30003090,0,1,0,0,1,0,0,0,0,5,5,0,0,3,3,0,1,0,2,3,1,0,1,0),(4301,'2015-03-10 22:38:43','2015-08-29 14:46:05',1,30003079,0,1,1,3,3,0,0,1,3,0,2,3,2,0,1,1,0,0,5,4,2,3,0,0),(4302,'2015-03-10 22:38:43','2015-03-10 22:38:43',1,30002745,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(4303,'2015-03-10 22:38:43','2015-03-10 22:38:43',1,30002816,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(4304,'2015-03-10 22:38:43','2015-08-29 14:46:05',1,30000146,0,0,1,0,0,0,0,0,0,0,0,0,0,0,1,1,0,1,0,0,0,0,0,0),(4305,'2015-03-10 22:38:43','2015-08-29 14:46:05',1,30010141,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,2,1,0,0,0,0),(4306,'2015-03-10 22:38:43','2015-08-29 14:46:05',1,30004299,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,1,2,0,1,1,1,0),(4307,'2015-03-10 22:38:43','2015-08-29 14:46:05',1,30002215,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0),(4308,'2015-03-10 22:38:43','2015-08-29 14:46:05',1,30000167,0,0,0,2,2,2,0,0,0,0,0,0,0,1,1,0,0,0,0,1,0,0,0,0),(4309,'2015-03-10 22:38:43','2015-08-29 14:46:05',1,30002405,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(4310,'2015-03-10 22:38:43','2015-03-10 22:38:43',1,30004146,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(4311,'2015-03-10 22:38:43','2015-03-10 22:38:43',1,30000059,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(4312,'2015-03-10 22:38:43','2015-03-10 22:38:43',1,30003874,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(4313,'2015-03-10 22:38:43','2015-08-29 14:46:05',1,30045322,0,1,0,0,0,0,0,0,0,1,1,1,1,0,0,0,0,0,0,0,0,0,0,0),(4314,'2015-03-10 22:38:43','2015-08-29 14:46:05',1,30001721,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,1,0,1,0,1,1,0),(4315,'2015-03-10 22:38:43','2015-08-29 14:46:05',1,30002783,0,1,1,1,1,0,0,4,0,0,0,0,0,1,0,0,0,7,0,0,1,2,1,0),(4316,'2015-03-10 22:38:43','2015-08-29 14:46:05',1,30002785,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,1,0,0,0,0,0,0,0),(4317,'2015-03-10 22:38:43','2015-08-29 14:46:05',1,30005255,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,0,0,1,0,0,0,1,0),(4318,'2015-03-10 22:38:43','2015-08-29 14:46:05',1,30001442,0,5,5,2,1,0,2,2,0,0,0,0,1,0,0,0,2,0,0,0,0,1,0,0),(4319,'2015-03-10 22:38:43','2015-08-29 14:46:05',1,30001377,1,0,0,2,2,0,0,0,1,0,0,0,5,1,0,0,0,3,0,0,1,0,0,0),(4320,'2015-03-10 22:38:43','2015-08-29 14:46:05',1,30045310,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0),(4321,'2015-03-10 22:38:43','2015-08-29 14:46:05',1,30000043,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0),(4322,'2015-03-10 22:38:43','2015-08-29 14:46:05',1,30003584,0,0,0,0,0,0,0,0,0,0,0,0,1,1,1,0,2,0,0,0,0,1,0,0),(4323,'2015-03-10 22:38:43','2015-08-29 14:46:05',1,30003522,0,0,0,1,1,0,0,0,0,0,0,1,0,1,1,0,0,1,1,1,0,0,0,0),(4324,'2015-03-10 22:38:43','2015-08-29 14:46:05',1,30003074,0,0,0,0,0,0,0,0,0,0,2,0,0,9,9,0,2,0,0,0,4,1,1,0),(4325,'2015-03-10 22:38:43','2015-08-29 14:46:05',1,30002971,1,0,6,11,9,0,0,0,0,0,0,0,3,0,3,3,0,0,0,0,0,0,0,0),(4326,'2015-03-10 22:38:43','2015-08-29 14:46:05',1,30003931,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(4327,'2015-03-10 22:38:43','2015-08-29 14:46:05',1,30000005,0,1,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,0,0,0),(4328,'2015-03-10 22:38:43','2015-08-29 14:46:05',1,30003097,0,0,0,0,0,0,0,0,0,0,6,0,0,0,0,0,0,0,0,2,0,0,0,0),(4329,'2015-03-10 22:38:43','2015-08-29 14:46:05',1,30003508,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,1,0),(4330,'2015-03-10 22:38:43','2015-08-29 14:46:05',1,30004270,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,1,0),(4331,'2015-03-10 22:38:43','2015-03-10 22:38:43',1,30003865,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(4332,'2015-03-10 22:38:43','2015-03-10 22:38:43',1,30000991,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(4333,'2015-03-10 22:38:43','2015-03-10 22:38:43',1,30004218,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(4334,'2015-03-10 22:38:43','2015-08-29 14:46:05',1,30001296,0,0,0,0,0,1,1,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,2,0),(4335,'2015-03-10 22:38:43','2015-08-29 14:46:05',1,30005310,9,3,0,0,0,3,1,1,4,3,3,2,0,3,1,0,1,2,0,1,0,0,0,0),(4336,'2015-03-10 22:38:43','2015-08-29 14:46:05',1,30005063,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,0,0,1,0),(4337,'2015-03-10 22:38:43','2015-08-29 14:46:05',1,30002654,0,0,1,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(4338,'2015-03-10 22:38:43','2015-08-29 14:46:05',1,30005322,0,1,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,1,4,0,0),(4339,'2015-03-10 22:38:43','2015-08-29 14:46:05',1,30003054,0,0,1,0,0,1,2,0,0,0,0,0,0,1,2,1,0,0,0,0,10,0,3,0),(4340,'2015-03-10 22:38:43','2015-08-29 14:46:05',1,30000692,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(4341,'2015-03-10 22:38:43','2015-03-10 22:38:43',1,30001314,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(4342,'2015-03-10 22:38:43','2015-08-29 14:46:05',1,30004139,1,0,0,0,1,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0),(4343,'2015-03-10 22:38:43','2015-08-29 14:46:05',1,30001659,0,0,1,0,0,0,0,0,0,0,0,0,5,0,0,0,0,0,0,0,52,0,0,0),(4344,'2015-03-10 22:38:43','2015-08-29 14:46:05',1,30005042,0,0,0,0,0,0,0,3,1,2,1,4,4,0,0,0,1,0,0,0,1,0,2,0),(4345,'2015-03-10 22:38:43','2015-03-10 22:38:43',1,30003869,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(4346,'2015-03-10 22:38:43','2015-08-29 14:46:05',1,30001657,0,0,1,0,0,0,1,0,1,0,0,0,0,0,0,0,0,3,1,1,0,0,0,0),(4347,'2015-03-10 22:38:43','2015-08-29 14:46:05',1,30002243,0,3,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0),(4348,'2015-03-10 22:38:43','2015-08-29 14:46:05',1,30041672,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0),(4349,'2015-03-10 22:38:43','2015-08-29 14:46:05',1,30001359,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(4350,'2015-03-10 22:38:43','2015-08-29 14:46:05',1,30020141,0,3,4,0,0,0,2,0,1,7,2,3,0,2,0,0,0,0,1,1,0,0,1,0),(4351,'2015-03-10 22:38:43','2015-08-29 14:46:05',1,30000015,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0),(4352,'2015-03-10 22:38:43','2015-08-29 14:46:05',1,30000103,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(4353,'2015-03-10 22:38:43','2015-08-29 14:46:05',1,30004623,0,1,0,0,0,0,0,0,0,1,0,1,17,0,0,0,0,1,1,0,0,0,0,0),(4354,'2015-03-10 22:38:43','2015-08-29 14:46:05',1,30005222,0,0,0,0,2,0,3,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(4355,'2015-03-10 22:38:43','2015-03-10 22:38:43',1,30003898,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(4356,'2015-03-10 22:38:43','2015-03-10 22:38:43',1,30005278,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(4357,'2015-03-10 22:38:43','2015-08-29 14:46:05',1,30005020,0,0,2,1,1,1,0,0,0,1,1,0,0,2,2,2,0,1,1,0,1,0,1,0),(4358,'2015-03-10 22:38:43','2015-03-10 22:38:43',1,30003654,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(4359,'2015-03-10 22:38:43','2015-08-29 14:46:05',1,30002833,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0),(4360,'2015-03-10 22:38:43','2015-08-29 14:46:05',1,30000670,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0),(4361,'2015-03-10 22:38:43','2015-03-10 22:38:43',1,30001098,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(4362,'2015-03-10 22:38:43','2015-08-29 14:46:05',1,30000868,0,0,0,0,0,0,0,0,0,0,0,0,0,3,3,0,0,0,0,0,0,0,0,0),(4363,'2015-03-10 22:38:43','2015-03-10 22:38:43',1,30002831,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(4364,'2015-03-10 22:38:43','2015-03-10 22:38:43',1,30002267,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(4365,'2015-03-10 22:38:43','2015-08-29 14:46:05',1,30000097,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,1,0,0,0,0),(4366,'2015-03-10 22:38:43','2015-08-29 14:46:05',1,30004283,0,2,0,0,0,0,0,0,7,14,3,1,9,1,4,6,5,0,0,0,0,0,0,0),(4367,'2015-03-10 22:38:43','2015-08-29 14:46:05',1,30004150,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(4368,'2015-03-10 22:38:43','2015-08-29 14:46:05',1,30005057,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0),(4369,'2015-03-10 22:38:43','2015-08-29 14:46:05',1,30003477,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0),(4370,'2015-03-10 22:38:43','2015-08-29 14:46:05',1,30004231,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(4371,'2015-03-10 22:38:43','2015-03-10 22:38:43',1,30000054,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(4372,'2015-03-10 22:38:43','2015-08-29 14:46:05',1,30005270,0,1,0,0,0,0,0,0,4,2,2,0,1,0,0,0,0,2,2,1,0,0,0,0),(4373,'2015-03-10 22:38:43','2015-03-10 22:38:43',1,30000014,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(4374,'2015-03-10 22:38:43','2015-08-29 14:46:05',1,30005271,0,0,0,0,0,1,0,1,0,0,0,0,1,0,0,0,0,1,0,0,0,0,2,0),(4375,'2015-03-10 22:38:43','2015-08-29 14:46:05',1,30003498,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,19,0,10,0,0,0,0,0),(4376,'2015-03-10 22:38:43','2015-03-10 22:38:43',1,30001739,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(4377,'2015-03-10 22:38:43','2015-08-29 14:46:05',1,30000067,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0),(4378,'2015-03-10 22:38:43','2015-08-29 14:46:05',1,30003500,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0),(4379,'2015-03-10 22:38:43','2015-08-29 14:46:05',1,30002638,1,1,1,2,0,0,0,2,0,1,1,0,3,0,2,2,0,0,0,1,1,0,1,0),(4380,'2015-03-10 22:38:43','2015-08-29 14:46:05',1,30005276,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0),(4381,'2015-03-10 22:38:43','2015-08-29 14:46:05',1,30002999,0,0,0,0,0,0,0,0,0,0,0,0,0,0,3,3,0,0,0,0,0,0,0,0),(4382,'2015-03-10 22:38:43','2015-08-29 14:46:05',1,30000779,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0),(4383,'2015-03-10 22:38:43','2015-08-29 14:46:05',1,30000106,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,0,0),(4384,'2015-03-10 22:38:43','2015-08-29 14:46:05',1,30004155,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0),(4385,'2015-03-10 22:38:43','2015-08-29 14:46:05',1,30004268,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,2,0,0,0,0,0,0,0,0),(4386,'2015-03-10 22:38:43','2015-08-29 14:46:05',1,30000011,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0),(4387,'2015-03-10 22:38:43','2015-08-29 14:46:05',1,30005192,0,3,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(4388,'2015-03-10 22:38:43','2015-08-29 14:46:05',1,30004278,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(4389,'2015-03-10 22:38:43','2015-08-29 14:46:05',1,30005217,0,177,1,1,1,0,2,0,0,0,1,0,0,1,1,0,0,0,3,2,1,2,0,0),(4390,'2015-03-10 22:38:43','2015-08-29 14:46:05',1,30001673,0,1,3,0,0,0,0,1,1,0,0,0,0,0,0,1,0,0,2,1,1,1,0,0),(4391,'2015-03-10 22:38:43','2015-08-29 14:46:05',1,30000130,1,2,2,0,0,1,0,0,0,1,0,1,0,2,4,3,0,0,1,1,0,0,0,0),(4392,'2015-03-10 22:38:43','2015-08-29 14:46:05',1,30003725,0,1,0,1,1,0,0,0,1,0,0,0,0,0,0,0,1,0,0,0,0,1,0,0),(4393,'2015-03-10 22:38:43','2015-08-29 14:46:05',1,30004233,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0),(4394,'2015-03-10 22:38:43','2015-03-10 22:38:43',1,30001338,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(4395,'2015-03-10 22:38:43','2015-08-29 14:46:05',1,30005076,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0),(4396,'2015-03-10 22:38:43','2015-03-10 22:38:43',1,30001667,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(4397,'2015-03-10 22:38:43','2015-08-29 14:46:05',1,30002235,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0),(4398,'2015-03-10 22:38:43','2015-08-29 14:46:05',1,30004135,0,2,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(4399,'2015-03-10 22:38:43','2015-08-29 14:46:05',1,30002201,0,0,0,0,0,0,0,0,2,3,3,0,2,0,2,2,0,1,0,0,0,1,0,0),(4400,'2015-03-10 22:38:43','2015-08-29 14:46:05',1,30003728,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,3,0,0,1,0),(4401,'2015-03-10 22:38:43','2015-08-29 14:46:05',1,30005209,1,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0),(4402,'2015-03-10 22:38:43','2015-08-29 14:46:05',1,30003484,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,1,0,0,0),(4403,'2015-03-10 22:38:43','2015-03-10 22:38:43',1,30003557,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(4404,'2015-03-10 22:38:43','2015-08-29 14:46:05',1,30002959,3,1,2,0,0,2,1,0,0,2,0,1,0,0,0,0,0,2,0,0,0,0,0,0),(4405,'2015-03-10 22:38:43','2015-08-29 14:46:05',1,30005219,0,0,0,0,0,2,0,0,1,0,0,0,1,0,0,0,0,0,0,0,0,0,1,0),(4406,'2015-03-10 22:38:43','2015-08-29 14:46:05',1,30000179,1,0,0,0,0,0,0,5,0,10,0,0,0,1,0,0,1,0,0,0,20,11,0,0),(4407,'2015-03-10 22:38:43','2015-08-29 14:46:05',1,30002689,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(4408,'2015-03-10 22:38:43','2015-08-29 14:46:05',1,30002195,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,1,0,0,0,0,0,0),(4409,'2015-03-10 22:38:43','2015-08-29 14:46:05',1,30005269,1,2,0,1,1,0,0,0,2,0,0,1,2,6,11,10,4,0,0,2,1,3,6,0),(4410,'2015-03-10 22:38:43','2015-08-29 14:46:05',1,30001729,0,1,0,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(4411,'2015-03-10 22:38:43','2015-08-29 14:46:05',1,30002092,0,0,0,0,0,0,0,0,4,0,1,0,1,0,0,1,1,2,4,1,0,0,0,0),(4412,'2015-03-10 22:38:43','2015-03-10 22:38:43',1,30003540,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(4413,'2015-03-10 22:38:43','2015-08-29 14:46:05',1,30002791,0,0,0,3,2,1,0,0,2,1,0,0,5,3,2,1,2,0,0,0,3,1,1,0),(4414,'2015-03-10 22:38:43','2015-08-29 14:46:05',1,30000127,0,0,0,0,0,0,0,1,0,0,0,0,0,1,0,0,0,0,0,0,3,2,1,0),(4415,'2015-03-10 22:38:43','2015-08-29 14:46:05',1,30002539,2,5,1,10,12,3,0,0,1,4,2,2,6,9,7,2,2,10,6,11,18,5,2,0),(4416,'2015-03-10 22:38:43','2015-08-29 14:46:05',1,30002521,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,1,0,0),(4417,'2015-03-10 22:38:43','2015-03-10 22:38:43',1,30002229,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(4418,'2015-03-10 22:38:43','2015-03-10 22:38:43',1,30003406,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(4419,'2015-03-10 22:38:43','2015-08-29 14:46:05',1,30002765,14,3,3,0,1,1,17,3,1,0,6,4,13,1,2,2,3,0,2,1,1,1,3,0),(4420,'2015-03-10 22:38:43','2015-08-29 14:46:05',1,30001699,0,1,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0),(4421,'2015-03-10 22:38:43','2015-08-29 14:46:05',1,30001728,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0),(4422,'2015-03-10 22:38:43','2015-03-10 22:38:43',1,30000571,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(4423,'2015-03-10 22:38:43','2015-03-10 22:38:43',1,30000436,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(4424,'2015-03-10 22:38:43','2015-03-10 22:38:43',1,30004164,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(4425,'2015-03-10 22:38:43','2015-08-29 14:46:05',1,30002411,0,2,0,0,0,0,0,0,0,0,0,2,0,0,0,0,0,0,0,0,1,0,0,0),(4426,'2015-03-10 22:38:43','2015-08-29 14:46:05',1,30003964,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(4427,'2015-03-10 22:38:43','2015-08-29 14:46:05',1,30000964,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0),(4428,'2015-03-10 22:38:43','2015-08-29 14:46:05',1,30003798,0,0,0,0,0,0,1,5,0,1,0,0,0,0,0,0,0,0,1,1,1,0,0,0),(4429,'2015-03-10 22:38:43','2015-03-10 22:38:43',1,30000479,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(4430,'2015-03-10 22:38:43','2015-03-10 22:38:43',1,30001780,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(4431,'2015-03-10 22:38:43','2015-03-10 22:38:43',1,30001808,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(4432,'2015-03-10 22:38:43','2015-03-10 22:38:43',1,30000763,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(4433,'2015-03-10 22:38:43','2015-03-10 22:38:43',1,30003152,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(4434,'2015-03-10 22:38:43','2015-08-29 14:46:05',1,30001220,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,0,0,0),(4435,'2015-03-10 22:38:43','2015-03-10 22:38:43',1,30000584,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(4436,'2015-03-10 22:38:43','2015-08-29 14:46:05',1,30001363,0,0,0,0,0,1,2,0,1,2,4,0,3,3,1,1,2,1,0,3,2,3,2,0),(4437,'2015-03-10 22:38:43','2015-08-29 14:46:05',1,30002237,0,0,0,0,0,0,0,0,0,0,0,2,0,0,0,0,0,0,0,0,0,0,3,0),(4438,'2015-03-10 22:38:43','2015-08-29 14:46:05',1,30004273,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,0,0,0,0,0,0,1,0),(4439,'2015-03-10 22:38:43','2015-08-29 14:46:05',1,30003511,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(4440,'2015-03-10 22:38:43','2015-08-29 14:46:05',1,30003225,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0),(4441,'2015-03-10 22:38:43','2015-08-29 14:46:05',1,30004099,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0),(4442,'2015-03-10 22:38:43','2015-03-10 22:38:43',1,30000009,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(4443,'2015-03-10 22:38:43','2015-08-29 14:46:05',1,30002983,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(4444,'2015-03-10 22:38:43','2015-08-29 14:46:05',1,30005323,1,0,0,1,1,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,1,0,0),(4445,'2015-03-10 22:38:43','2015-08-29 14:46:05',1,30003510,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,1,1,0,0,0,0),(4446,'2015-03-10 22:38:43','2015-08-29 14:46:05',1,30000089,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0),(4447,'2015-03-10 22:38:43','2015-08-29 14:46:05',1,30003070,9,0,1,0,1,1,1,2,2,4,4,1,1,5,4,6,6,0,3,3,4,3,2,0),(4448,'2015-03-10 22:38:43','2015-08-29 14:46:05',1,30002980,2,0,3,3,0,3,1,2,1,0,2,1,0,2,2,2,0,0,0,1,0,0,1,0),(4449,'2015-03-10 22:38:43','2015-03-10 22:38:43',1,30005218,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(4450,'2015-03-10 22:38:43','2015-08-29 14:46:05',1,30000175,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0),(4451,'2015-03-10 22:38:43','2015-03-10 22:38:43',1,30004272,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(4452,'2015-03-10 22:38:43','2015-08-29 14:46:05',1,30001369,0,0,1,3,1,0,2,0,0,0,1,0,0,0,1,1,0,0,1,0,0,0,2,0),(4453,'2015-03-10 22:38:43','2015-08-29 14:46:05',1,30002575,1,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,0,1,0,0),(4454,'2015-03-10 22:38:43','2015-08-29 14:46:05',1,30005052,0,0,0,0,0,0,0,0,0,1,0,0,0,1,0,0,0,0,0,0,2,0,0,0),(4455,'2015-03-10 22:38:43','2015-08-29 14:46:05',1,30004292,0,0,0,0,0,0,0,0,0,0,0,0,1,1,1,0,0,0,0,0,0,0,0,0),(4456,'2015-03-10 22:38:43','2015-08-29 14:46:05',1,30002111,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0),(4457,'2015-03-10 22:38:43','2015-03-10 22:38:43',1,30004570,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(4458,'2015-03-10 22:38:43','2015-03-10 22:38:43',1,30001453,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(4459,'2015-03-10 22:38:43','2015-03-10 22:38:43',1,30001630,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(4460,'2015-03-10 22:38:43','2015-08-29 14:46:05',1,30005141,0,2,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(4461,'2015-03-10 22:38:43','2015-03-10 22:38:43',1,30000565,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(4462,'2015-03-10 22:38:43','2015-03-10 22:38:43',1,30002422,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(4463,'2015-03-10 22:38:43','2015-03-10 22:38:43',1,30001288,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(4464,'2015-03-10 22:38:43','2015-08-29 14:46:05',1,30003794,2,1,0,3,0,0,2,1,0,2,0,1,0,1,0,0,0,0,4,5,0,0,1,0),(4465,'2015-03-10 22:38:43','2015-03-10 22:38:43',1,30002675,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(4466,'2015-03-10 22:38:43','2015-08-29 14:46:05',1,30002696,2,0,0,0,0,0,0,0,0,0,0,0,4,0,0,0,0,0,0,0,0,0,1,0),(4467,'2015-03-10 22:38:43','2015-08-29 14:46:05',1,30002711,0,0,0,1,0,0,1,0,0,0,0,0,0,1,1,0,0,0,0,0,0,1,0,0),(4468,'2015-03-10 22:38:43','2015-08-29 14:46:05',1,30003376,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(4469,'2015-03-10 22:38:43','2015-08-29 14:46:05',1,30005333,1,1,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,2,0),(4470,'2015-03-10 22:38:43','2015-03-10 22:38:43',1,30003593,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(4471,'2015-03-10 22:38:43','2015-08-29 14:46:05',1,30003607,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0),(4472,'2015-03-10 22:38:43','2015-03-10 22:38:43',1,30000086,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(4473,'2015-03-10 22:38:43','2015-08-29 14:46:05',1,30002809,2,1,9,3,2,0,9,3,3,1,1,0,3,7,4,1,0,1,2,4,3,2,4,0),(4474,'2015-03-10 22:38:43','2015-08-29 14:46:05',1,30002200,0,0,0,0,0,0,0,0,0,0,1,0,1,0,0,0,1,0,0,0,0,1,0,0),(4475,'2015-03-10 22:38:43','2015-03-10 22:38:43',1,30004101,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(4476,'2015-03-10 22:38:43','2015-08-29 14:46:05',1,30000944,0,0,0,0,0,0,0,1,0,0,0,0,1,0,0,0,0,0,0,0,1,2,0,0),(4477,'2015-03-10 22:38:43','2015-08-29 14:46:05',1,30002801,1,1,0,0,0,0,4,0,0,0,0,1,0,1,1,1,1,5,0,0,0,4,1,0),(4478,'2015-03-10 22:38:43','2015-08-29 14:46:05',1,30002445,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(4479,'2015-03-10 22:38:43','2015-08-29 14:46:05',1,30001158,2,2,2,5,0,0,0,3,0,27,0,0,0,3,1,4,1,20,5,5,0,1,1,0),(4480,'2015-03-10 22:38:43','2015-03-10 22:38:43',1,30004377,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(4481,'2015-03-10 22:38:43','2015-08-29 14:46:05',1,30004758,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0),(4482,'2015-03-10 22:38:43','2015-08-29 14:46:05',1,30004484,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,3,0,0,0,0),(4483,'2015-03-10 22:38:43','2015-03-10 22:38:43',1,30002835,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(4484,'2015-03-10 22:38:43','2015-03-10 22:38:43',1,30005174,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(4485,'2015-03-10 22:38:43','2015-03-10 22:38:43',1,30000515,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(4486,'2015-03-10 22:38:43','2015-03-10 22:38:43',1,30003667,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(4487,'2015-03-10 22:38:43','2015-08-29 14:46:05',1,30005015,0,0,0,2,1,0,0,1,0,1,0,1,3,1,0,0,0,0,3,2,0,0,1,0),(4488,'2015-03-10 22:38:43','2015-03-10 22:38:43',1,30004143,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(4489,'2015-03-10 22:38:43','2015-03-10 22:38:43',1,30003639,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(4490,'2015-03-10 22:38:43','2015-03-10 22:38:43',1,30000488,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(4491,'2015-03-10 22:38:43','2015-08-29 14:46:05',1,30001096,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0),(4492,'2015-03-10 22:38:43','2015-08-29 14:46:05',1,30004211,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0),(4493,'2015-03-10 22:38:43','2015-03-10 22:38:43',1,30001151,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(4494,'2015-03-10 22:38:43','2015-08-29 14:46:05',1,30001911,0,1,0,0,0,0,0,0,1,0,0,0,1,0,0,0,1,0,0,2,0,0,0,0),(4495,'2015-03-10 22:38:43','2015-03-10 22:38:43',1,30002890,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(4496,'2015-03-10 22:38:43','2015-03-10 22:38:43',1,30004877,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(4497,'2015-03-10 22:38:43','2015-03-10 22:38:43',1,30001633,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(4498,'2015-03-10 22:38:43','2015-08-29 14:46:05',1,30000261,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,0,1,0,0,0,0,2,0),(4499,'2015-03-10 22:38:43','2015-03-10 22:38:43',1,30003195,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(4500,'2015-03-10 22:38:43','2015-08-29 14:46:05',1,30002382,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(4501,'2015-03-10 22:38:43','2015-08-29 14:46:05',1,30004748,0,0,0,0,0,0,0,0,2,0,0,0,1,0,0,0,1,0,0,0,0,0,0,0),(4502,'2015-03-10 22:38:43','2015-03-10 22:38:43',1,30004729,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(4503,'2015-03-10 22:38:43','2015-03-10 22:38:43',1,30003673,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(4504,'2015-03-10 22:38:43','2015-08-29 14:46:05',1,30003299,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,1,0,0,0,0,0),(4505,'2015-03-10 22:38:43','2015-03-10 22:38:43',1,30004745,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(4506,'2015-03-10 22:38:43','2015-08-29 14:46:05',1,30001959,0,0,0,0,0,0,0,0,0,0,0,0,0,1,2,2,2,0,0,1,1,1,2,0),(4507,'2015-03-10 22:38:43','2015-03-10 22:38:43',1,30000330,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(4508,'2015-03-10 22:38:43','2015-03-10 22:38:43',1,30004352,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(4509,'2015-03-10 22:38:43','2015-08-29 14:46:05',1,30003715,0,0,0,0,0,0,0,1,9,16,2,0,12,18,0,0,0,0,0,0,0,0,0,0),(4510,'2015-03-10 22:38:43','2015-03-10 22:38:43',1,30001631,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(4511,'2015-03-10 22:38:43','2015-03-10 22:38:43',1,30004529,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(4512,'2015-03-10 22:38:43','2015-03-10 22:38:43',1,30004676,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(4513,'2015-03-10 22:38:43','2015-08-29 14:46:05',1,30000303,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,0,1,0,0),(4514,'2015-03-10 22:38:43','2015-03-10 22:38:43',1,30001771,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(4515,'2015-03-10 22:38:43','2015-03-10 22:38:43',1,30004842,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(4516,'2015-03-10 22:38:43','2015-08-29 14:46:05',1,30003287,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(4517,'2015-03-10 22:38:43','2015-03-10 22:38:43',1,30004735,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(4518,'2015-03-10 22:38:43','2015-08-29 14:46:05',1,30004870,0,0,0,0,0,5,0,0,0,0,0,0,0,0,0,0,0,0,0,10,0,0,0,0),(4519,'2015-03-10 22:38:43','2015-03-10 22:38:43',1,30001548,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(4520,'2015-03-10 22:38:43','2015-03-10 22:38:43',1,30001916,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(4521,'2015-03-10 22:38:43','2015-08-29 14:46:05',1,30003943,0,0,0,0,0,1,0,0,0,0,0,0,3,0,0,0,0,0,0,0,0,0,0,0),(4522,'2015-03-10 22:38:43','2015-08-29 14:46:05',1,30003966,1,0,0,0,0,0,0,0,0,0,1,0,1,0,0,0,0,0,0,0,0,0,0,0),(4523,'2015-03-10 22:38:43','2015-08-29 14:46:05',1,30001228,0,0,0,0,0,0,0,0,0,0,0,0,1,1,11,12,1,0,0,1,2,1,1,0),(4524,'2015-03-10 22:38:43','2015-03-10 22:38:43',1,30002841,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(4525,'2015-03-10 22:38:43','2015-08-29 14:46:05',1,30003465,2,0,0,1,1,0,0,0,0,1,1,0,0,0,0,0,0,0,0,0,1,1,0,0),(4526,'2015-03-10 22:38:43','2015-08-29 14:46:05',1,30005070,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0),(4527,'2015-03-10 22:38:43','2015-08-29 14:46:05',1,30002100,0,0,1,0,0,3,0,0,0,0,0,0,0,0,0,1,0,1,1,0,0,2,1,0),(4528,'2015-03-10 22:38:43','2015-08-29 14:46:05',1,30005245,0,0,0,0,0,0,0,0,0,0,0,0,0,2,2,0,0,0,0,0,0,1,2,0),(4529,'2015-03-10 22:38:43','2015-08-29 14:46:05',1,30001447,4,0,1,10,1,0,0,0,2,0,0,0,0,0,0,1,77,1,0,0,3,0,6,0),(4530,'2015-03-10 22:38:43','2015-03-10 22:38:43',1,30005143,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(4531,'2015-03-10 22:38:43','2015-08-29 14:46:05',1,30003889,0,0,0,0,1,1,0,0,0,0,0,0,0,5,0,0,0,0,0,0,0,0,0,0),(4532,'2015-03-10 22:38:43','2015-08-29 14:46:05',1,30002813,18,21,9,10,11,1,15,25,5,20,26,33,11,27,24,16,13,22,38,12,15,46,29,0),(4533,'2015-03-10 22:38:43','2015-03-10 22:38:43',1,30003407,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(4534,'2015-03-10 22:38:43','2015-08-29 14:46:05',1,30001437,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(4535,'2015-03-10 22:38:43','2015-08-29 14:46:05',1,30003091,2,10,2,0,0,0,0,0,0,3,5,1,0,2,1,1,0,0,3,0,1,0,0,0),(4536,'2015-03-10 22:38:43','2015-08-29 14:46:05',1,30002812,0,0,0,1,1,1,1,0,2,1,3,0,0,1,0,0,0,1,2,1,2,0,3,0),(4537,'2015-03-10 22:38:43','2015-08-29 14:46:05',1,30000001,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,1,1,0,0,0,1,0,0),(4538,'2015-03-10 22:38:43','2015-08-29 14:46:05',1,30005199,0,0,1,0,0,1,0,1,0,0,0,0,3,0,0,1,1,3,2,3,1,8,6,0),(4539,'2015-03-10 22:38:43','2015-08-29 14:46:05',1,30002979,12,2,1,2,1,0,0,1,0,0,2,0,3,2,3,5,0,0,0,1,0,0,0,0),(4540,'2015-03-10 22:38:43','2015-08-29 14:46:05',1,30005205,0,0,0,0,0,1,3,0,0,0,0,0,0,2,1,1,0,5,0,0,0,0,0,0),(4541,'2015-03-10 22:38:43','2015-03-10 22:38:43',1,30001441,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(4542,'2015-03-10 22:38:43','2015-03-10 22:38:43',1,30001703,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(4543,'2015-03-10 22:38:43','2015-08-29 14:46:05',1,30002778,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(4544,'2015-03-10 22:38:43','2015-08-29 14:46:05',1,30001671,3,5,23,3,1,0,4,1,0,1,2,0,1,0,1,1,0,0,1,0,1,0,0,0),(4545,'2015-03-10 22:38:43','2015-08-29 14:46:05',1,30002274,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(4546,'2015-03-10 22:38:43','2015-08-29 14:46:05',1,30000195,0,1,0,0,0,0,0,0,0,1,0,0,0,4,3,1,1,0,0,0,0,0,0,0),(4547,'2015-03-10 22:38:43','2015-08-29 14:46:05',1,30004937,0,0,0,0,0,0,0,0,0,0,0,0,0,2,4,3,0,0,1,2,0,0,0,0),(4548,'2015-03-10 22:38:43','2015-08-29 14:46:05',1,30001051,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0),(4549,'2015-03-10 22:38:43','2015-08-29 14:46:05',1,30002502,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,1,0),(4550,'2015-03-10 22:38:43','2015-08-29 14:46:05',1,30005089,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,5,0,0,0,0),(4551,'2015-03-10 22:38:43','2015-08-29 14:46:05',1,30004638,0,0,0,1,1,0,0,0,21,3,3,0,3,9,25,21,0,12,1,10,1,0,1,0),(4552,'2015-03-10 22:38:43','2015-08-29 14:46:05',1,30003907,0,0,0,0,0,0,0,0,11,1,0,0,0,6,2,0,0,0,1,0,0,0,1,0),(4553,'2015-03-10 22:38:43','2015-08-29 14:46:05',1,30045350,2,0,0,1,0,2,0,1,0,3,2,1,0,2,2,0,1,0,0,2,0,1,1,0),(4554,'2015-03-10 22:38:43','2015-03-10 22:38:43',1,30003128,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(4555,'2015-03-10 22:38:43','2015-08-29 14:46:05',1,30005200,1,0,0,0,0,1,0,0,0,1,0,0,1,0,0,0,0,0,0,0,0,0,0,0),(4556,'2015-03-10 22:38:43','2015-08-29 14:46:05',1,30004158,0,0,0,0,0,0,0,0,0,0,0,3,0,0,0,0,0,0,0,1,0,0,0,0),(4557,'2015-03-10 22:38:43','2015-08-29 14:46:05',1,30001645,0,1,0,0,0,0,15,0,0,1,2,1,0,0,0,0,0,0,0,0,23,2,0,0),(4558,'2015-03-10 22:38:43','2015-08-29 14:46:05',1,30002763,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0),(4559,'2015-03-10 22:38:43','2015-08-29 14:46:05',1,30002385,0,2,0,24,11,4,0,0,6,0,5,8,0,11,15,14,0,0,0,0,1,0,2,0),(4560,'2015-03-10 22:38:43','2015-03-10 22:38:43',1,30003507,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(4561,'2015-03-10 22:38:43','2015-08-29 14:46:05',1,30001681,0,1,1,3,3,0,0,1,2,0,0,0,7,1,0,3,0,1,2,1,1,0,3,0),(4562,'2015-03-10 22:38:43','2015-08-29 14:46:05',1,30045335,0,0,0,2,2,0,0,0,3,0,1,1,1,2,1,0,1,0,1,0,0,0,0,0),(4563,'2015-03-10 22:38:43','2015-03-10 22:38:43',1,30000926,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(4564,'2015-03-10 22:38:43','2015-08-29 14:46:05',1,30001733,0,0,0,0,1,1,0,1,1,0,0,0,1,0,0,0,0,0,0,0,1,0,0,0),(4565,'2015-03-10 22:38:43','2015-03-10 22:38:43',1,30002038,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(4566,'2015-03-10 22:38:43','2015-03-10 22:38:43',1,30001760,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(4567,'2015-03-10 22:38:43','2015-08-29 14:46:05',1,30001842,0,0,0,1,1,1,0,0,0,1,0,3,0,2,2,1,1,0,0,1,2,2,1,0),(4568,'2015-03-10 22:38:43','2015-08-29 14:46:05',1,30003000,0,1,1,0,0,1,0,0,2,0,0,0,1,0,0,0,0,0,1,0,1,0,0,0),(4569,'2015-03-10 22:38:43','2015-08-29 14:46:05',1,30001677,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,1,0),(4570,'2015-03-10 22:38:43','2015-03-10 22:38:43',1,30002966,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(4571,'2015-03-10 22:38:43','2015-08-29 14:46:05',1,30002226,0,0,0,0,0,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(4572,'2015-03-10 22:38:43','2015-08-29 14:46:05',1,30002720,0,0,0,0,0,0,0,0,0,0,0,0,2,0,0,1,1,1,8,3,0,1,1,0),(4573,'2015-03-10 22:38:43','2015-08-29 14:46:05',1,30005314,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(4574,'2015-03-10 22:38:43','2015-08-29 14:46:05',1,30000069,0,1,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(4575,'2015-03-10 22:38:43','2015-03-10 22:38:43',1,30001464,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(4576,'2015-03-10 22:38:43','2015-03-10 22:38:43',1,30000352,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(4577,'2015-03-10 22:38:43','2015-03-10 22:38:43',1,30000076,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(4578,'2015-03-10 22:38:43','2015-08-29 14:46:05',1,30005334,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,1,0,0),(4579,'2015-03-10 22:38:43','2015-03-10 22:38:43',1,30000100,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(4580,'2015-03-10 22:38:43','2015-08-29 14:46:05',1,30003932,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0),(4581,'2015-03-10 22:38:43','2015-08-29 14:46:05',1,30002784,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0),(4582,'2015-03-10 22:38:43','2015-08-29 14:46:05',1,30001684,0,0,0,0,0,0,0,0,0,0,0,2,1,0,0,0,0,0,0,0,0,0,0,0),(4583,'2015-03-10 22:38:43','2015-08-29 14:46:05',1,30004298,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(4584,'2015-03-10 22:38:43','2015-03-10 22:38:43',1,30001644,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(4585,'2015-03-10 22:38:43','2015-08-29 14:46:05',1,30002474,0,0,0,1,1,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0),(4586,'2015-03-10 22:38:43','2015-03-10 22:38:43',1,30000742,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(4587,'2015-03-10 22:38:43','2015-03-10 22:38:43',1,30001908,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(4588,'2015-03-10 22:38:43','2015-03-10 22:38:43',1,30002584,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(4589,'2015-03-10 22:38:43','2015-03-10 22:38:43',1,30004047,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(4590,'2015-03-10 22:38:43','2015-03-10 22:38:43',1,30004960,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(4591,'2015-03-10 22:38:43','2015-03-10 22:38:43',1,30001461,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(4592,'2015-03-10 22:38:43','2015-03-10 22:38:43',1,30001519,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(4593,'2015-03-10 22:38:43','2015-08-29 14:46:05',1,30001407,1,2,4,0,0,1,4,5,0,2,0,0,1,3,2,1,5,1,1,6,1,0,1,0),(4594,'2015-03-10 22:38:43','2015-08-29 14:46:05',1,30032505,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0),(4595,'2015-03-10 22:38:43','2015-08-29 14:46:05',1,30002062,0,5,0,2,1,3,3,2,1,0,0,1,0,4,2,3,1,1,5,0,2,2,1,0),(4596,'2015-03-10 22:38:43','2015-08-29 14:46:05',1,30003383,1,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(4597,'2015-03-10 22:38:43','2015-08-29 14:46:05',1,30003052,0,0,0,0,1,0,0,0,0,1,1,1,0,0,0,1,1,2,0,0,0,0,5,0),(4598,'2015-03-10 22:38:43','2015-08-29 14:46:05',1,30003436,0,6,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(4599,'2015-03-10 22:38:43','2015-03-10 22:38:43',1,30002532,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(4600,'2015-03-10 22:38:43','2015-08-29 14:46:05',1,30005212,0,0,1,0,0,1,0,0,0,0,0,0,0,0,1,1,0,0,0,1,2,0,1,0),(4601,'2015-03-10 22:38:43','2015-08-29 14:46:05',1,30001429,0,0,0,0,0,0,0,0,0,2,1,1,0,5,0,0,0,0,0,0,0,0,0,0),(4602,'2015-03-10 22:38:43','2015-08-29 14:46:05',1,30003020,0,0,0,0,1,1,0,0,0,1,1,0,0,1,0,0,0,0,0,0,0,0,0,0),(4603,'2015-03-10 22:38:43','2015-08-29 14:46:05',1,30002191,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0),(4604,'2015-03-10 22:38:43','2015-03-10 22:38:43',1,30003402,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(4605,'2015-03-10 22:38:43','2015-08-29 14:46:05',1,30005301,1,0,2,1,1,0,0,0,0,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0),(4606,'2015-03-10 22:38:43','2015-08-29 14:46:05',1,30003606,0,0,0,0,0,0,1,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0),(4607,'2015-03-10 22:38:43','2015-03-10 22:38:43',1,30001127,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(4608,'2015-03-10 22:38:43','2015-03-10 22:38:43',1,30002327,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(4609,'2015-03-10 22:38:43','2015-03-10 22:38:43',1,30000588,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(4610,'2015-03-10 22:38:43','2015-08-29 14:46:05',1,30004935,0,0,0,0,0,0,0,8,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0),(4611,'2015-03-10 22:38:43','2015-03-10 22:38:43',1,30000641,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(4612,'2015-03-10 22:38:43','2015-08-29 14:46:05',1,30004500,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,1,0,0,0,0,0,0,0,0),(4613,'2015-03-10 22:38:43','2015-08-29 14:46:05',1,30004452,0,0,0,0,0,0,0,0,0,0,0,0,3,0,0,0,0,0,0,31,0,0,0,0),(4614,'2015-03-10 22:38:43','2015-08-29 14:46:05',1,30005071,0,0,0,0,0,0,0,0,2,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(4615,'2015-03-10 22:38:43','2015-08-29 14:46:05',1,30003431,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0),(4616,'2015-03-10 22:38:43','2015-08-29 14:46:05',1,30002069,2,2,2,0,0,1,0,0,0,0,4,4,1,0,0,0,0,0,1,1,0,0,0,0),(4617,'2015-03-10 22:38:43','2015-03-10 22:38:43',1,30002562,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(4618,'2015-03-10 22:38:43','2015-08-29 14:46:05',1,30000869,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(4619,'2015-03-10 22:38:43','2015-08-29 14:46:05',1,30002668,0,0,0,0,0,0,0,0,1,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0),(4620,'2015-03-10 22:38:43','2015-08-29 14:46:05',1,30042715,4,9,2,9,5,6,7,1,13,12,12,19,12,15,15,12,15,8,8,12,16,25,7,0),(4621,'2015-03-10 22:38:43','2015-08-29 14:46:05',1,30002508,0,0,0,1,0,0,0,0,0,1,0,0,2,0,0,2,0,0,0,0,0,0,0,0),(4622,'2015-03-10 22:38:43','2015-08-29 14:46:05',1,30004423,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,3,0,0,0,0,0,0),(4623,'2015-03-10 22:38:43','2015-08-29 14:46:05',1,30001375,0,0,1,1,1,0,1,0,1,2,0,0,2,0,0,0,0,2,0,1,0,0,0,0),(4624,'2015-03-10 22:38:43','2015-08-29 14:46:05',1,30001412,0,0,0,0,0,0,0,0,0,0,0,1,2,0,0,0,0,1,0,0,0,0,0,0),(4625,'2015-03-10 22:38:43','2015-08-29 14:46:05',1,30045327,0,0,0,0,0,0,0,0,0,0,0,0,2,0,0,0,0,0,0,0,0,0,0,0),(4626,'2015-03-10 22:38:43','2015-08-29 14:46:05',1,30000812,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(4627,'2015-03-10 22:38:43','2015-08-29 14:46:05',1,30003733,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,1,2,0,0,0,0),(4628,'2015-03-10 22:38:43','2015-08-29 14:46:05',1,30003742,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0),(4629,'2015-03-10 22:38:43','2015-03-10 22:38:43',1,30004634,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(4630,'2015-03-10 22:38:43','2015-03-10 22:38:43',1,30004275,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(4631,'2015-03-10 22:38:43','2015-08-29 14:46:05',1,30001379,0,0,0,0,0,1,0,0,0,0,1,0,0,1,0,0,2,1,1,1,0,0,0,0),(4632,'2015-03-10 22:38:43','2015-08-29 14:46:05',1,30002770,2,0,0,0,0,0,0,0,1,0,0,0,1,1,1,3,0,0,0,0,1,0,0,0),(4633,'2015-03-10 22:38:43','2015-08-29 14:46:05',1,30003064,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,0,0,0,0),(4634,'2015-03-10 22:38:43','2015-08-29 14:46:05',1,30004098,0,0,0,0,0,0,0,0,2,6,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(4635,'2015-03-10 22:38:43','2015-08-29 14:46:05',1,30002086,0,0,0,0,0,0,0,0,0,2,3,2,1,1,0,0,0,3,1,2,4,0,2,0),(4636,'2015-03-10 22:38:43','2015-08-29 14:46:05',1,30000128,0,1,0,1,0,2,0,0,0,0,0,1,1,0,0,0,2,0,0,1,0,1,0,0),(4637,'2015-03-10 22:38:43','2015-03-10 22:38:43',1,30003958,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(4638,'2015-03-10 22:38:43','2015-08-29 14:46:05',1,30002073,0,0,0,0,0,0,0,0,6,6,2,0,0,0,0,0,0,1,0,0,0,1,0,0),(4639,'2015-03-10 22:38:43','2015-08-29 14:46:05',1,30000263,0,1,0,0,0,1,0,0,0,1,1,0,0,0,0,2,0,0,1,0,2,0,0,0),(4640,'2015-03-10 22:38:43','2015-08-29 14:46:05',1,30002614,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,1,1,0,0,0,0),(4641,'2015-03-10 22:38:43','2015-08-29 14:46:05',1,30003779,0,1,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0),(4642,'2015-03-10 22:38:43','2015-08-29 14:46:05',1,30002901,0,0,0,0,0,2,0,0,8,0,1,1,19,2,3,6,0,0,0,8,0,0,1,0),(4643,'2015-03-10 22:38:43','2015-08-29 14:46:05',1,30003323,2,0,2,0,0,0,0,0,0,0,0,0,9,0,0,0,0,1,0,0,0,2,5,0),(4644,'2015-03-10 22:38:43','2015-03-10 22:38:43',1,30004844,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(4645,'2015-03-10 22:38:43','2015-08-29 14:46:05',1,30000485,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,5,0,0,0),(4646,'2015-03-10 22:38:43','2015-03-10 22:38:43',1,30002353,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(4647,'2015-03-10 22:38:43','2015-08-29 14:46:05',1,30003891,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(4648,'2015-03-10 22:38:43','2015-08-29 14:46:05',1,30000601,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0),(4649,'2015-03-10 22:38:43','2015-08-29 14:46:05',1,30002494,1,0,0,0,0,0,0,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(4650,'2015-03-10 22:38:43','2015-03-10 22:38:43',1,30000747,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(4651,'2015-03-10 22:38:43','2015-08-29 14:46:05',1,30002957,2,0,0,3,3,13,0,0,3,0,1,1,1,1,0,1,4,1,0,0,1,1,0,0),(4652,'2015-03-10 22:38:43','2015-03-10 22:38:43',1,30005156,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(4653,'2015-03-10 22:38:43','2015-03-10 22:38:43',1,30004436,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(4654,'2015-03-10 22:38:43','2015-03-10 22:38:43',1,30001788,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(4655,'2015-03-10 22:38:43','2015-08-29 14:46:05',1,30000575,0,4,0,4,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(4656,'2015-03-10 22:38:43','2015-08-29 14:46:05',1,30003717,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,0,0,1,0,0,1,0),(4657,'2015-03-10 22:38:43','2015-08-29 14:46:05',1,30004024,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0),(4658,'2015-03-10 22:38:43','2015-08-29 14:46:05',1,30001997,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0),(4659,'2015-03-10 22:38:43','2015-03-10 22:38:43',1,30000404,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(4660,'2015-03-10 22:38:43','2015-03-10 22:38:43',1,30000660,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(4661,'2015-03-10 22:38:43','2015-03-10 22:38:43',1,30000394,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(4662,'2015-03-10 22:38:43','2015-03-10 22:38:43',1,30004439,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(4663,'2015-03-10 22:38:43','2015-08-29 14:46:05',1,30002463,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0),(4664,'2015-03-10 22:38:43','2015-03-10 22:38:43',1,30000493,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(4665,'2015-03-10 22:38:43','2015-03-10 22:38:43',1,30003637,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(4666,'2015-03-10 22:38:43','2015-03-10 22:38:43',1,30000459,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(4667,'2015-03-10 22:38:43','2015-03-10 22:38:43',1,30000629,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(4668,'2015-03-10 22:38:43','2015-08-29 14:46:05',1,30001155,2,0,0,1,0,0,0,0,0,0,2,1,2,0,18,20,1,5,0,1,0,1,1,0),(4669,'2015-03-10 22:38:43','2015-03-10 22:38:43',1,30003240,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(4670,'2015-03-10 22:38:43','2015-03-10 22:38:43',1,30004594,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(4671,'2015-03-10 22:38:43','2015-08-29 14:46:05',1,30002951,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(4672,'2015-03-10 22:38:43','2015-03-10 22:38:43',1,30000765,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(4673,'2015-03-10 22:38:43','2015-08-29 14:46:05',1,30000878,0,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(4674,'2015-03-10 22:38:43','2015-03-10 22:38:43',1,30005131,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(4675,'2015-03-10 22:38:43','2015-08-29 14:46:05',1,30001865,0,0,0,0,0,0,0,0,1,1,0,1,0,0,0,0,0,0,3,3,3,0,0,0),(4676,'2015-03-10 22:38:43','2015-03-10 22:38:43',1,30003347,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(4677,'2015-03-10 22:38:43','2015-03-10 22:38:43',1,30000514,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(4678,'2015-03-10 22:38:43','2015-03-10 22:38:43',1,30004441,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(4679,'2015-03-10 22:38:43','2015-08-29 14:46:05',1,30001585,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,0,0,0,0,0),(4680,'2015-03-10 22:38:43','2015-03-10 22:38:43',1,30000555,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(4681,'2015-03-10 22:38:43','2015-03-10 22:38:43',1,30000329,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(4682,'2015-03-10 22:38:43','2015-03-10 22:38:43',1,30003623,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(4683,'2015-03-10 22:38:43','2015-08-29 14:46:05',1,30000703,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,0,0),(4684,'2015-03-10 22:38:43','2015-08-29 14:46:05',1,30001898,0,1,0,0,0,0,0,0,0,0,0,1,2,0,0,0,1,0,0,0,0,0,0,0),(4685,'2015-03-10 22:38:43','2015-08-29 14:46:05',1,30004834,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0),(4686,'2015-03-10 22:38:43','2015-08-29 14:46:05',1,30000948,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0),(4687,'2015-03-10 22:38:43','2015-03-10 22:38:43',1,30002608,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(4688,'2015-03-10 22:38:43','2015-08-29 14:46:05',1,30003372,1,0,0,0,0,0,0,0,0,0,0,0,0,5,0,0,0,0,0,0,0,0,0,0),(4689,'2015-03-10 22:38:43','2015-03-10 22:38:43',1,30005126,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(4690,'2015-03-10 22:38:43','2015-03-10 22:38:43',1,30003663,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(4691,'2015-03-10 22:38:43','2015-08-29 14:46:05',1,30000210,0,1,0,2,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(4692,'2015-03-10 22:38:43','2015-03-10 22:38:43',1,30001927,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(4693,'2015-03-10 22:38:43','2015-03-10 22:38:43',1,30004074,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(4694,'2015-03-10 22:38:43','2015-08-29 14:46:05',1,30000527,0,0,0,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0),(4695,'2015-03-10 22:38:43','2015-03-10 22:38:43',1,30002488,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(4696,'2015-03-10 22:38:43','2015-08-29 14:46:05',1,30000693,0,0,0,1,0,0,0,0,0,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0),(4697,'2015-03-10 22:38:43','2015-03-10 22:38:43',1,30004202,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(4698,'2015-03-10 22:38:43','2015-08-29 14:46:05',1,30002164,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,2,0,0,0,0,0,0,0),(4699,'2015-03-10 22:38:43','2015-03-10 22:38:43',1,30000427,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(4700,'2015-03-10 22:38:43','2015-03-10 22:38:43',1,30000644,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(4701,'2015-03-10 22:38:43','2015-03-10 22:38:43',1,30003227,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(4702,'2015-03-10 22:38:43','2015-08-29 14:46:05',1,30002166,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(4703,'2015-03-10 22:38:43','2015-03-10 22:38:43',1,30000419,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(4704,'2015-03-10 22:38:43','2015-03-10 22:38:43',1,30004685,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(4705,'2015-03-10 22:38:43','2015-08-29 14:46:05',1,30002991,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,1,1,0),(4706,'2015-03-10 22:38:43','2015-03-10 22:38:43',1,30001797,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(4707,'2015-03-10 22:38:43','2015-08-29 14:46:05',1,30002101,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,1,0,0),(4708,'2015-03-10 22:38:43','2015-03-10 22:38:43',1,30004807,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(4709,'2015-03-10 22:38:43','2015-08-29 14:46:05',1,30004091,1,0,0,0,0,0,0,0,3,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0),(4710,'2015-03-10 22:38:43','2015-08-29 14:46:05',1,30000118,0,1,2,0,0,6,0,0,1,0,0,0,4,1,0,0,0,0,0,1,1,0,0,0),(4711,'2015-03-10 22:38:43','2015-03-10 22:38:43',1,30002361,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(4712,'2015-03-10 22:38:43','2015-08-29 14:46:05',1,30004602,2,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(4713,'2015-03-10 22:38:43','2015-03-10 22:38:43',1,30004349,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(4714,'2015-03-10 22:38:43','2015-08-29 14:46:05',1,30004463,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0),(4715,'2015-03-10 22:38:43','2015-03-10 22:38:43',1,30001465,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(4716,'2015-03-10 22:38:43','2015-08-29 14:46:05',1,30000114,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,1,0,0,0,0,0,0,0),(4717,'2015-03-10 22:38:43','2015-08-29 14:46:05',1,30002473,0,0,0,0,0,0,0,0,0,0,0,0,2,0,0,3,0,0,0,1,0,0,0,0),(4718,'2015-03-10 22:38:43','2015-03-10 22:38:43',1,30001813,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(4719,'2015-03-10 22:38:43','2015-03-10 22:38:43',1,30001618,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(4720,'2015-03-10 22:38:43','2015-03-10 22:38:43',1,30002024,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(4721,'2015-03-10 22:38:43','2015-03-10 22:38:43',1,30001244,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(4722,'2015-03-10 22:38:43','2015-08-29 14:46:05',1,30002209,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0),(4723,'2015-03-10 22:38:43','2015-08-29 14:46:05',1,30045321,0,0,0,0,0,11,1,0,0,0,0,5,0,0,0,0,0,0,0,0,0,0,0,0),(4724,'2015-03-10 22:38:43','2015-08-29 14:46:05',1,30000201,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0),(4725,'2015-03-10 22:38:43','2015-08-29 14:46:05',1,30000997,0,0,2,0,0,0,0,1,0,0,0,0,0,2,2,0,0,0,0,0,0,0,0,0),(4726,'2015-03-10 22:38:43','2015-03-10 22:38:43',1,30004404,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(4727,'2015-03-10 22:38:43','2015-03-10 22:38:43',1,30000819,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(4728,'2015-03-10 22:38:43','2015-08-29 14:46:05',1,30004245,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0),(4729,'2015-03-10 22:38:43','2015-08-29 14:46:05',1,30002825,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0),(4730,'2015-03-10 22:38:43','2015-08-29 14:46:05',1,30002768,11,4,13,6,31,6,0,15,3,2,1,1,2,7,12,8,2,3,1,0,5,4,6,0),(4731,'2015-03-10 22:38:43','2015-08-29 14:46:05',1,30002956,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0),(4732,'2015-03-10 22:38:43','2015-08-29 14:46:05',1,30001368,1,0,0,0,0,0,0,8,4,1,0,2,4,2,0,0,1,0,0,1,3,0,0,0),(4733,'2015-03-10 22:38:43','2015-08-29 14:46:05',1,30000197,0,0,1,0,0,0,0,1,0,0,0,0,1,0,0,0,0,0,2,0,2,0,0,0),(4734,'2015-03-10 22:38:43','2015-03-10 22:38:43',1,30004922,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(4735,'2015-03-10 22:38:43','2015-03-10 22:38:43',1,30001821,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(4736,'2015-03-10 22:38:43','2015-03-10 22:38:43',1,30002503,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(4737,'2015-03-10 22:38:43','2015-03-10 22:38:43',1,30001432,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(4738,'2015-03-10 22:38:43','2015-08-29 14:46:05',1,30004779,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0),(4739,'2015-03-10 22:38:43','2015-08-29 14:46:05',1,30001854,0,1,2,0,0,0,2,0,0,0,0,0,1,2,0,0,0,0,0,0,0,0,1,0),(4740,'2015-03-10 22:38:43','2015-03-10 22:38:43',1,30003352,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(4741,'2015-03-10 22:38:43','2015-08-29 14:46:05',1,30002504,0,0,0,0,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(4742,'2015-03-10 22:38:43','2015-03-10 22:38:43',1,30003235,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(4743,'2015-03-10 22:38:43','2015-03-10 22:38:43',1,30000229,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(4744,'2015-03-10 22:38:43','2015-08-29 14:46:05',1,30004706,0,0,0,0,0,0,0,5,0,0,0,0,0,0,0,0,0,0,0,0,3,0,0,0),(4745,'2015-03-10 22:38:43','2015-03-10 22:38:43',1,30001735,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(4746,'2015-03-10 22:38:43','2015-08-29 14:46:05',1,30000101,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0),(4747,'2015-03-10 22:38:43','2015-03-10 22:38:43',1,30002047,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(4748,'2015-03-10 22:38:43','2015-08-29 14:46:05',1,30002083,0,0,1,0,0,0,0,0,0,0,0,0,1,0,1,1,0,0,1,4,1,0,1,0),(4749,'2015-03-10 22:38:43','2015-08-29 14:46:05',1,30030141,19,18,22,20,10,11,10,6,30,25,30,24,30,35,28,24,26,11,13,23,16,16,20,0),(4750,'2015-03-10 22:38:43','2015-08-29 14:46:05',1,30001875,0,1,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,0,0,0,0,0),(4751,'2015-03-10 22:38:43','2015-03-10 22:38:43',1,30002824,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(4752,'2015-03-10 22:38:43','2015-08-29 14:46:05',1,30002955,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,0,0,0),(4753,'2015-03-10 22:38:43','2015-03-10 22:38:43',1,30002610,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(4754,'2015-03-10 22:38:43','2015-08-29 14:46:05',1,30000177,1,0,0,0,0,0,1,0,0,0,0,0,2,3,2,0,0,0,0,0,0,0,0,0),(4755,'2015-03-10 22:38:43','2015-08-29 14:46:05',1,30003005,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,1,0,0),(4756,'2015-03-10 22:38:43','2015-08-29 14:46:05',1,30001899,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,3,0,0),(4757,'2015-03-10 22:38:43','2015-03-10 22:38:43',1,30000313,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(4758,'2015-03-10 22:38:43','2015-08-29 14:46:05',1,30001234,0,0,0,0,0,1,1,0,0,1,1,5,0,0,0,0,0,0,0,1,0,0,0,0),(4759,'2015-03-10 22:38:43','2015-03-10 22:38:43',1,30003004,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(4760,'2015-03-10 22:38:43','2015-03-10 22:38:43',1,30003298,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(4761,'2015-03-10 22:38:43','2015-08-29 14:46:05',1,30000558,0,1,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,0,0,0,0),(4762,'2015-03-10 22:38:43','2015-03-10 22:38:43',1,30000911,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(4763,'2015-03-10 22:38:43','2015-08-29 14:46:05',1,30000858,0,0,0,0,0,0,0,0,0,2,1,0,3,3,3,0,1,0,0,0,0,0,0,0),(4764,'2015-03-10 22:38:43','2015-08-29 14:46:05',1,30000184,0,0,2,2,2,0,0,0,0,0,0,0,0,4,4,3,3,1,0,0,2,2,0,0),(4765,'2015-03-10 22:38:43','2015-08-29 14:46:05',1,30001409,1,1,1,4,2,1,0,0,1,1,0,4,1,3,2,6,12,1,1,1,2,0,5,0),(4766,'2015-03-10 22:38:43','2015-03-10 22:38:43',1,30000282,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(4767,'2015-03-10 22:38:43','2015-08-29 14:46:05',1,30003481,0,0,0,0,0,0,0,0,0,0,0,0,2,0,0,0,0,0,0,0,0,0,0,0),(4768,'2015-03-10 22:38:43','2015-08-29 14:46:05',1,30002707,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0),(4769,'2015-03-10 22:38:43','2015-03-10 22:38:43',1,30002413,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(4770,'2015-03-10 22:38:43','2015-03-10 22:38:43',1,30000965,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(4771,'2015-03-10 22:38:43','2015-08-29 14:46:05',1,30001679,0,0,0,0,0,3,0,0,0,0,0,0,0,0,0,0,0,0,1,0,4,0,1,0),(4772,'2015-03-10 22:38:43','2015-08-29 14:46:05',1,30000129,0,2,4,0,0,1,0,0,0,2,1,0,1,1,1,0,0,0,1,2,0,0,1,0),(4773,'2015-03-10 22:38:43','2015-03-10 22:38:43',1,30001816,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(4774,'2015-03-10 22:38:43','2015-08-29 14:46:05',1,30004495,0,1,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0),(4775,'2015-03-10 22:38:43','2015-08-29 14:46:05',1,30001366,0,0,1,0,0,1,0,0,6,0,0,0,0,5,0,0,0,0,0,0,0,0,0,0),(4776,'2015-03-10 22:38:43','2015-08-29 14:46:05',1,30002814,1,0,0,0,4,0,1,1,1,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0),(4777,'2015-03-10 22:38:43','2015-08-29 14:46:05',1,30000151,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0),(4778,'2015-03-10 22:38:43','2015-03-10 22:38:43',1,30001634,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(4779,'2015-03-10 22:38:43','2015-08-29 14:46:05',1,30003799,0,0,0,0,0,0,0,4,4,1,1,0,2,2,4,2,6,11,1,0,1,0,2,0),(4780,'2015-03-10 22:38:43','2015-08-29 14:46:05',1,30003043,0,2,0,0,0,2,1,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,1,0),(4781,'2015-03-10 22:38:43','2015-08-29 14:46:05',1,30000037,1,0,0,0,0,0,0,1,2,2,0,0,0,1,1,0,0,0,1,1,0,0,1,0),(4782,'2015-03-10 22:38:43','2015-03-10 22:38:43',1,30002998,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(4783,'2015-03-10 22:38:43','2015-03-10 22:38:43',1,30003901,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(4784,'2015-03-10 22:38:43','2015-03-10 22:38:43',1,30001208,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(4785,'2015-03-10 22:38:43','2015-03-10 22:38:43',1,30004310,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(4786,'2015-03-10 22:38:43','2015-03-10 22:38:43',1,30003955,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(4787,'2015-03-10 22:38:43','2015-08-29 14:46:05',1,30004938,0,0,0,0,0,0,0,0,0,3,0,0,0,1,0,0,0,1,0,0,0,1,0,0),(4788,'2015-03-10 22:38:43','2015-08-29 14:46:05',1,30001966,0,0,0,3,1,0,0,0,0,1,1,0,0,0,0,0,0,0,0,0,2,2,0,0),(4789,'2015-03-10 22:38:43','2015-08-29 14:46:05',1,30040141,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(4790,'2015-03-10 22:38:43','2015-08-29 14:46:05',1,30002070,0,0,2,1,1,0,1,0,0,1,2,0,0,1,1,1,1,0,0,0,0,1,1,0),(4791,'2015-03-10 22:38:43','2015-08-29 14:46:05',1,30000139,4,4,3,4,6,0,5,5,4,6,2,2,0,5,2,4,3,0,2,0,9,4,3,0),(4792,'2015-03-10 22:38:43','2015-08-29 14:46:05',1,30003417,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,1,0,0,0),(4793,'2015-03-10 22:38:43','2015-08-29 14:46:05',1,30002755,0,0,0,0,0,0,1,4,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0),(4794,'2015-03-10 22:38:43','2015-03-10 22:38:43',1,30000382,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(4795,'2015-03-10 22:38:43','2015-03-10 22:38:43',1,30000068,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(4796,'2015-03-10 22:38:43','2015-08-29 14:46:05',1,30002987,0,0,0,0,0,0,0,0,1,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0),(4797,'2015-03-10 22:38:43','2015-03-10 22:38:43',1,30042505,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(4798,'2015-03-10 22:38:43','2015-08-29 14:46:05',1,30004151,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(4799,'2015-03-10 22:38:43','2015-08-29 14:46:05',1,30000921,0,0,1,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(4800,'2015-03-10 22:38:43','2015-03-10 22:38:43',1,30004468,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(4801,'2015-03-10 22:38:43','2015-03-10 22:38:43',1,30003306,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(4802,'2015-03-10 22:38:43','2015-08-29 14:46:05',1,30001045,0,0,0,0,1,0,0,0,0,0,0,3,5,5,5,5,1,1,4,6,5,2,1,0),(4803,'2015-03-10 22:38:43','2015-08-29 14:46:05',1,30002049,3,3,1,1,1,0,0,0,4,2,2,3,24,14,0,0,2,0,0,1,0,0,2,0),(4804,'2015-03-10 22:38:43','2015-08-29 14:46:05',1,30045326,0,0,0,0,0,12,0,0,0,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0),(4805,'2015-03-10 22:38:43','2015-08-29 14:46:05',1,30002759,1,0,1,3,4,1,2,0,2,1,0,0,2,6,2,1,1,1,1,6,1,0,1,0),(4806,'2015-03-10 22:38:43','2015-08-29 14:46:05',1,30003077,4,2,0,3,3,0,1,0,0,0,0,0,1,0,0,0,0,0,1,1,0,0,0,0),(4807,'2015-03-10 22:38:43','2015-08-29 14:46:05',1,30003988,0,0,0,0,0,0,0,1,0,0,0,0,0,1,1,0,0,0,0,0,0,0,0,0),(4808,'2015-03-10 22:38:43','2015-03-10 22:38:43',1,30001152,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(4809,'2015-03-10 22:38:43','2015-08-29 14:46:05',1,30001003,0,5,0,0,0,0,1,0,0,0,0,0,0,2,2,0,0,0,0,1,0,0,0,0),(4810,'2015-03-10 22:38:43','2015-03-10 22:38:43',1,30000549,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(4811,'2015-03-10 22:38:43','2015-03-10 22:38:43',1,30001121,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(4812,'2015-03-10 22:38:43','2015-08-29 14:46:05',1,30005150,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(4813,'2015-03-10 22:38:43','2015-03-10 22:38:43',1,30003981,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(4814,'2015-03-10 22:38:43','2015-03-10 22:38:43',1,30000561,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(4815,'2015-03-10 22:38:43','2015-08-29 14:46:05',1,30003536,0,1,0,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(4816,'2015-03-10 22:38:43','2015-08-29 14:46:05',1,30000040,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,2,0,0,0,1,0,0,0,0),(4817,'2015-03-10 22:38:43','2015-03-10 22:38:43',1,30000930,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(4818,'2015-03-10 22:38:43','2015-03-10 22:38:43',1,30005097,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(4819,'2015-03-10 22:38:43','2015-03-10 22:38:43',1,30003965,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(4820,'2015-03-10 22:38:43','2015-08-29 14:46:05',1,30001162,0,0,0,0,0,0,0,0,23,13,15,5,21,3,5,4,5,7,38,33,157,2,2,0),(4821,'2015-03-10 22:38:43','2015-03-10 22:38:43',1,30000434,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(4822,'2015-03-10 22:38:43','2015-03-10 22:38:43',1,30000393,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(4823,'2015-03-10 22:38:43','2015-08-29 14:46:05',1,30000732,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0),(4824,'2015-03-10 22:38:44','2015-08-29 14:46:05',1,30000988,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(4825,'2015-03-10 22:38:44','2015-08-29 14:46:05',1,30001008,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,2,0,0,0),(4826,'2015-03-10 22:38:44','2015-03-10 22:38:44',1,30001143,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(4827,'2015-03-10 22:38:44','2015-03-10 22:38:44',1,30000674,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(4828,'2015-03-10 22:38:44','2015-08-29 14:46:05',1,30003672,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0),(4829,'2015-03-10 22:38:44','2015-08-29 14:46:05',1,30003953,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(4830,'2015-03-10 22:38:44','2015-08-29 14:46:05',1,30002437,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0),(4831,'2015-03-10 22:38:44','2015-08-29 14:46:05',1,30000264,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,1,0,0,0,0,0,0,0),(4832,'2015-03-10 22:38:44','2015-03-10 22:38:44',1,30000248,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(4833,'2015-03-10 22:38:44','2015-03-10 22:38:44',1,30002379,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(4834,'2015-03-10 22:38:44','2015-03-10 22:38:44',1,30000755,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(4835,'2015-03-10 22:38:44','2015-08-29 14:46:05',1,30000694,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,1,0),(4836,'2015-03-10 22:38:44','2015-03-10 22:38:44',1,30001787,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(4837,'2015-03-10 22:38:44','2015-03-10 22:38:44',1,30004406,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(4838,'2015-03-10 22:38:44','2015-03-10 22:38:44',1,30003226,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(4839,'2015-03-10 22:38:44','2015-03-10 22:38:44',1,30003130,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(4840,'2015-03-10 22:38:44','2015-08-29 14:46:05',1,30003194,0,2,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(4841,'2015-03-10 22:38:44','2015-08-29 14:46:05',1,30000849,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0),(4842,'2015-03-10 22:38:44','2015-08-29 14:46:05',1,30001892,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0),(4843,'2015-03-10 22:38:44','2015-03-10 22:38:44',1,30003143,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(4844,'2015-03-10 22:38:44','2015-03-10 22:38:44',1,30002862,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(4845,'2015-03-10 22:38:44','2015-08-29 14:46:05',1,30001222,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0),(4846,'2015-03-10 22:38:44','2015-08-29 14:46:05',1,30001084,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(4847,'2015-03-10 22:38:44','2015-08-29 14:46:05',1,30001301,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(4848,'2015-03-10 22:38:44','2015-03-10 22:38:44',1,30000375,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(4849,'2015-03-10 22:38:44','2015-03-10 22:38:44',1,30003294,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(4850,'2015-03-10 22:38:44','2015-03-10 22:38:44',1,30004644,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(4851,'2015-03-10 22:38:44','2015-03-10 22:38:44',1,30000888,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(4852,'2015-03-10 22:38:44','2015-08-29 14:46:05',1,30003666,0,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,4,0,0,0,0),(4853,'2015-03-10 22:38:44','2015-08-29 14:46:05',1,30001015,0,0,0,0,0,0,0,1,0,0,0,0,0,1,1,0,0,0,0,1,0,1,1,0),(4854,'2015-03-10 22:38:44','2015-03-10 22:38:44',1,30000603,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(4855,'2015-03-10 22:38:44','2015-03-10 22:38:44',1,30000984,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(4856,'2015-03-10 22:38:44','2015-03-10 22:38:44',1,30004329,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(4857,'2015-03-10 22:38:44','2015-08-29 14:46:05',1,30001175,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(4858,'2015-03-10 22:38:44','2015-08-29 14:46:05',1,30001383,0,0,0,1,1,1,0,0,0,0,0,0,3,1,0,0,0,0,0,0,0,0,0,0),(4859,'2015-03-10 22:38:44','2015-08-29 14:46:05',1,30000123,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,0,7,0,0,1,0,0,0),(4860,'2015-03-10 22:38:44','2015-08-29 14:46:05',1,30045331,4,0,0,1,1,1,0,0,0,1,1,0,1,3,2,1,0,0,0,1,3,0,1,0),(4861,'2015-03-10 22:38:44','2015-08-29 14:46:05',1,30005306,1,2,0,1,1,1,0,3,0,0,1,1,0,0,0,0,0,1,2,0,0,8,3,0),(4862,'2015-03-10 22:38:44','2015-03-10 22:38:44',1,30004196,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(4863,'2015-03-10 22:38:44','2015-08-29 14:46:05',1,30000170,0,1,0,2,2,7,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0),(4864,'2015-03-10 22:38:44','2015-03-10 22:38:44',1,30004289,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(4865,'2015-03-10 22:38:44','2015-08-29 14:46:05',1,30005029,1,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,1,0,0,1,0),(4866,'2015-03-10 22:38:44','2015-08-29 14:46:05',1,30003483,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0),(4867,'2015-03-10 22:38:44','2015-08-29 14:46:05',1,30004230,0,0,0,0,0,1,0,0,0,0,1,2,0,0,0,0,0,1,0,0,0,0,0,0),(4868,'2015-03-10 22:38:44','2015-08-29 14:46:05',1,30002538,0,0,1,0,0,0,3,50,0,2,2,1,2,13,3,0,0,4,1,2,3,0,3,0),(4869,'2015-03-10 22:38:44','2015-08-29 14:46:05',1,30002400,0,0,0,0,0,0,0,0,0,0,2,0,2,0,0,0,0,0,4,4,0,0,0,0),(4870,'2015-03-10 22:38:44','2015-08-29 14:46:05',1,30000190,0,0,0,0,0,0,1,1,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0),(4871,'2015-03-10 22:38:44','2015-08-29 14:46:05',1,30002230,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,4,4,0,0,0,0),(4872,'2015-03-10 22:38:44','2015-08-29 14:46:05',1,30000173,0,0,0,24,24,0,1,9,5,0,0,0,5,1,1,0,1,0,0,0,1,0,1,0),(4873,'2015-03-10 22:38:44','2015-08-29 14:46:05',1,30003027,0,0,0,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0),(4874,'2015-03-10 22:38:44','2015-08-29 14:46:05',1,30005318,0,1,0,1,1,0,0,1,0,0,0,0,0,0,0,0,0,1,0,0,0,0,2,0),(4875,'2015-03-10 22:38:44','2015-08-29 14:46:05',1,30004547,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(4876,'2015-03-10 22:38:44','2015-08-29 14:46:05',1,30000806,0,1,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0),(4877,'2015-03-10 22:38:44','2015-03-10 22:38:44',1,30000842,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(4878,'2015-03-10 22:38:44','2015-08-29 14:46:05',1,30001824,0,0,0,0,0,0,7,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(4879,'2015-03-10 22:38:44','2015-08-29 14:46:05',1,30005195,1,0,0,0,0,0,1,0,0,0,0,0,0,1,1,1,1,0,0,0,1,3,0,0),(4880,'2015-03-10 22:38:44','2015-03-10 22:38:44',1,30003589,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(4881,'2015-03-10 22:38:44','2015-08-29 14:46:05',1,30004246,2,1,0,0,0,1,0,0,1,3,1,0,1,2,0,0,7,0,0,1,1,1,2,0),(4882,'2015-03-10 22:38:44','2015-08-29 14:46:05',1,30001362,0,1,0,0,0,0,0,1,0,0,0,0,2,1,0,0,0,0,0,0,0,0,2,0),(4883,'2015-03-10 22:38:44','2015-08-29 14:46:05',1,30001380,0,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,1,0),(4884,'2015-03-10 22:38:44','2015-08-29 14:46:05',1,30002798,6,0,0,0,0,1,0,0,0,0,0,0,1,1,1,1,0,0,0,0,0,0,4,0),(4885,'2015-03-10 22:38:44','2015-08-29 14:46:05',1,30004220,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(4886,'2015-03-10 22:38:44','2015-08-29 14:46:05',1,30003820,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0),(4887,'2015-03-10 22:38:44','2015-08-29 14:46:05',1,30003572,0,1,0,0,0,0,1,0,0,1,0,0,0,0,0,0,0,0,0,1,0,0,0,0),(4888,'2015-03-10 22:38:44','2015-08-29 14:46:05',1,30003790,0,1,3,0,1,0,0,0,0,0,0,0,2,3,2,3,2,0,3,3,0,3,1,0),(4889,'2015-03-10 22:38:44','2015-08-29 14:46:05',1,30003899,3,0,0,0,0,2,0,0,0,0,0,1,0,0,0,0,0,1,0,2,0,0,0,0),(4890,'2015-03-10 22:38:44','2015-03-10 22:38:44',1,30004433,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(4891,'2015-03-10 22:38:44','2015-08-29 14:46:05',1,30002904,0,0,0,0,0,0,0,0,0,0,0,0,1,1,1,0,0,0,0,0,0,0,0,0),(4892,'2015-03-10 22:38:44','2015-08-29 14:46:05',1,30001303,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,5,0,2,0,0,0,0),(4893,'2015-03-10 22:38:44','2015-03-10 22:38:44',1,30001351,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(4894,'2015-03-10 22:38:44','2015-03-10 22:38:44',1,30001794,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(4895,'2015-03-10 22:38:44','2015-03-10 22:38:44',1,30000295,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(4896,'2015-03-10 22:38:44','2015-08-29 14:46:05',1,30004997,4,0,6,4,4,8,3,6,3,3,1,0,0,1,0,1,3,0,0,1,1,0,0,0),(4897,'2015-03-10 22:38:44','2015-03-10 22:38:44',1,30000346,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(4898,'2015-03-10 22:38:44','2015-08-29 14:46:05',1,30003816,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(4899,'2015-03-10 22:38:44','2015-08-29 14:46:05',1,30045309,0,0,0,2,1,1,2,0,0,0,0,1,0,0,0,0,1,0,1,0,1,2,0,0),(4900,'2015-03-10 22:38:44','2015-08-29 14:46:05',1,30004993,4,6,4,10,9,4,1,1,7,7,5,1,3,0,3,7,3,6,2,1,14,9,2,0),(4901,'2015-03-10 22:38:44','2015-03-10 22:38:44',1,30003390,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(4902,'2015-03-10 22:38:44','2015-08-29 14:46:05',1,30002088,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,1,1,1,0,2,2,0,0),(4903,'2015-03-10 22:38:44','2015-08-29 14:46:05',1,30004991,1,0,0,0,0,3,0,0,1,0,0,0,4,0,0,1,0,1,2,1,0,0,0,0),(4904,'2015-03-10 22:38:44','2015-08-29 14:46:05',1,30002731,0,0,0,0,0,0,1,0,1,0,0,1,2,1,0,0,0,0,0,0,0,0,2,0),(4905,'2015-03-10 22:38:44','2015-08-29 14:46:05',1,30003810,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0),(4906,'2015-03-10 22:38:44','2015-03-10 22:38:44',1,30002487,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(4907,'2015-03-10 22:38:44','2015-03-10 22:38:44',1,30004551,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(4908,'2015-03-10 22:38:44','2015-08-29 14:46:05',1,30000625,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0),(4909,'2015-03-10 22:38:44','2015-08-29 14:46:05',1,30001566,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(4910,'2015-03-10 22:38:44','2015-08-29 14:46:05',1,30003749,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(4911,'2015-03-10 22:38:44','2015-03-10 22:38:44',1,30000927,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(4912,'2015-03-10 22:38:44','2015-08-29 14:46:05',1,30004315,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(4913,'2015-03-10 22:38:44','2015-03-10 22:38:44',1,30003116,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(4914,'2015-03-10 22:38:44','2015-08-29 14:46:05',1,30003339,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0),(4915,'2015-03-10 22:38:44','2015-08-29 14:46:05',1,30003836,1,11,4,0,1,1,0,0,2,2,1,1,2,8,2,0,1,0,0,3,0,0,1,0),(4916,'2015-03-10 22:38:44','2015-03-10 22:38:44',1,30000420,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(4917,'2015-03-10 22:38:44','2015-03-10 22:38:44',1,30004453,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(4918,'2015-03-10 22:38:44','2015-03-10 22:38:44',1,30001925,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(4919,'2015-03-10 22:38:44','2015-08-29 14:46:05',1,30001019,0,0,1,3,6,1,0,0,1,0,0,0,6,2,1,0,0,0,1,1,0,0,0,0),(4920,'2015-03-10 22:38:44','2015-03-10 22:38:44',1,30000322,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(4921,'2015-03-10 22:38:44','2015-08-29 14:46:05',1,30003399,0,0,0,0,1,0,0,0,0,0,0,1,1,0,0,0,0,0,0,0,0,0,0,0),(4922,'2015-03-10 22:38:44','2015-08-29 14:46:05',1,30000193,0,0,0,0,0,0,0,0,1,0,4,0,0,0,0,0,0,0,0,0,0,0,0,0),(4923,'2015-03-10 22:38:44','2015-08-29 14:46:05',1,30002948,0,0,0,0,2,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(4924,'2015-03-10 22:38:44','2015-03-10 22:38:44',1,30004943,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(4925,'2015-03-10 22:38:44','2015-08-29 14:46:05',1,30004931,0,0,0,0,0,0,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(4926,'2015-03-10 22:38:44','2015-03-10 22:38:44',1,30003175,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(4927,'2015-03-10 22:38:44','2015-03-10 22:38:44',1,30001506,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(4928,'2015-03-10 22:38:44','2015-08-29 14:46:05',1,30003685,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0),(4929,'2015-03-10 22:38:44','2015-03-10 22:38:44',1,30003361,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(4930,'2015-03-10 22:38:44','2015-08-29 14:46:05',1,30002448,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0),(4931,'2015-03-10 22:38:44','2015-03-10 22:38:44',1,30003959,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(4932,'2015-03-10 22:38:44','2015-03-10 22:38:44',1,30001836,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(4933,'2015-03-10 22:38:44','2015-08-29 14:46:05',1,30003129,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(4934,'2015-03-10 22:38:44','2015-08-29 14:46:05',1,30004890,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0),(4935,'2015-03-10 22:38:44','2015-08-29 14:46:05',1,30002573,0,0,0,0,0,0,0,0,0,1,1,1,0,0,0,0,0,0,0,0,0,0,0,0),(4936,'2015-03-10 22:38:44','2015-08-29 14:46:05',1,30001443,0,0,0,1,1,0,0,1,0,0,0,0,0,0,0,0,1,0,0,2,1,1,0,0),(4937,'2015-03-10 22:38:44','2015-08-29 14:46:05',1,30003309,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0),(4938,'2015-03-10 22:38:44','2015-08-29 14:46:05',1,30001073,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0),(4939,'2015-03-10 22:38:44','2015-08-29 14:46:05',1,30001327,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0),(4940,'2015-03-10 22:38:44','2015-03-10 22:38:44',1,30004457,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(4941,'2015-03-10 22:38:44','2015-03-10 22:38:44',1,30001054,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(4942,'2015-03-10 22:38:44','2015-08-29 14:46:05',1,30005173,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(4943,'2015-03-10 22:38:44','2015-03-10 22:38:44',1,30001541,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(4944,'2015-03-10 22:38:44','2015-03-10 22:38:44',1,30000924,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(4945,'2015-03-10 22:38:44','2015-03-10 22:38:44',1,30004227,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(4946,'2015-03-10 22:38:44','2015-08-29 14:46:05',1,30003098,0,0,0,0,0,0,0,0,0,0,0,1,3,0,0,0,1,0,0,1,2,1,0,0),(4947,'2015-03-10 22:38:44','2015-08-29 14:46:05',1,30002655,1,0,0,0,0,0,0,1,0,0,0,0,1,1,1,1,0,1,2,1,0,0,0,0),(4948,'2015-03-10 22:38:44','2015-08-29 14:46:05',1,30004936,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(4949,'2015-03-10 22:38:44','2015-03-10 22:38:44',1,30001477,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(4950,'2015-03-10 22:38:44','2015-03-10 22:38:44',1,30003247,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(4951,'2015-03-10 22:38:44','2015-08-29 14:46:05',1,30004822,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(4952,'2015-03-10 22:38:44','2015-03-10 22:38:44',1,30002497,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(4953,'2015-03-10 22:38:44','2015-08-29 14:46:05',1,30004392,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(4954,'2015-03-10 22:38:44','2015-08-29 14:46:05',1,30004055,1,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(4955,'2015-03-10 22:38:44','2015-03-10 22:38:44',1,30000751,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(4956,'2015-03-10 22:38:44','2015-03-10 22:38:44',1,30000345,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(4957,'2015-03-10 22:38:44','2015-03-10 22:38:44',1,30005177,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(4958,'2015-03-10 22:38:44','2015-03-10 22:38:44',1,30002147,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(4959,'2015-03-10 22:38:44','2015-08-29 14:46:05',1,30004005,0,0,0,0,0,0,0,0,1,2,3,0,0,0,0,0,0,0,0,0,0,0,0,0),(4960,'2015-03-10 22:38:44','2015-08-29 14:46:05',1,30003968,1,2,0,0,0,0,0,1,0,0,0,0,2,0,0,0,0,0,0,1,0,0,0,0),(4961,'2015-03-10 22:38:44','2015-03-10 22:38:44',1,30004753,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(4962,'2015-03-10 22:38:44','2015-08-29 14:46:05',1,30005142,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(4963,'2015-03-10 22:38:44','2015-03-10 22:38:44',1,30000830,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(4964,'2015-03-10 22:38:44','2015-08-29 14:46:05',1,30001250,0,0,0,0,0,0,0,0,0,20,14,1,1,1,2,1,2,0,2,2,1,0,0,0),(4965,'2015-03-10 22:38:44','2015-03-10 22:38:44',1,30001939,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(4966,'2015-03-10 22:38:44','2015-03-10 22:38:44',1,30000532,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(4967,'2015-03-10 22:38:44','2015-03-10 22:38:44',1,30000932,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(4968,'2015-03-10 22:38:44','2015-03-10 22:38:44',1,30000893,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(4969,'2015-03-10 22:38:44','2015-03-10 22:38:44',1,30001897,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(4970,'2015-03-10 22:38:44','2015-03-10 22:38:44',1,30001516,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(4971,'2015-03-10 22:38:44','2015-08-29 14:46:05',1,30001105,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0),(4972,'2015-03-10 22:38:44','2015-03-10 22:38:44',1,30004537,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(4973,'2015-03-10 22:38:44','2015-03-10 22:38:44',1,30003660,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(4974,'2015-03-10 22:38:44','2015-03-10 22:38:44',1,30004538,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(4975,'2015-03-10 22:38:44','2015-03-10 22:38:44',1,30000617,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(4976,'2015-03-10 22:38:44','2015-03-10 22:38:44',1,30001311,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(4977,'2015-03-10 22:38:44','2015-03-10 22:38:44',1,30000367,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(4978,'2015-03-10 22:38:44','2015-03-10 22:38:44',1,30000635,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(4979,'2015-03-10 22:38:44','2015-03-10 22:38:44',1,30002172,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(4980,'2015-03-10 22:38:44','2015-03-10 22:38:44',1,30001095,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(4981,'2015-03-10 22:38:44','2015-03-10 22:38:44',1,30001522,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(4982,'2015-03-10 22:38:44','2015-03-10 22:38:44',1,30003205,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(4983,'2015-03-10 22:38:44','2015-03-10 22:38:44',1,30001502,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(4984,'2015-03-10 22:38:44','2015-03-10 22:38:44',1,30000521,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(4985,'2015-03-10 22:38:44','2015-03-10 22:38:44',1,30003983,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(4986,'2015-03-10 22:38:44','2015-08-29 14:46:05',1,30000894,2,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0),(4987,'2015-03-10 22:38:44','2015-03-10 22:38:44',1,30003622,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(4988,'2015-03-10 22:38:44','2015-08-29 14:46:05',1,30001179,0,0,0,0,0,0,0,0,1,2,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(4989,'2015-03-10 22:38:44','2015-03-10 22:38:44',1,30001748,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(4990,'2015-03-10 22:38:44','2015-03-10 22:38:44',1,30003102,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(4991,'2015-03-10 22:38:44','2015-08-29 14:46:05',1,30002787,0,2,0,0,0,0,0,0,0,0,0,0,0,0,1,5,0,1,0,0,0,0,0,0),(4992,'2015-03-10 22:38:44','2015-08-29 14:46:05',1,30000191,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,1,0,0,0,0,0),(4993,'2015-03-10 22:38:44','2015-08-29 14:46:05',1,30003553,0,0,0,0,0,0,0,0,0,0,0,0,3,7,2,0,0,0,1,0,2,2,0,0),(4994,'2015-03-10 22:38:44','2015-08-29 14:46:05',1,30002790,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0),(4995,'2015-03-10 22:38:44','2015-03-10 22:38:44',1,30004803,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(4996,'2015-03-10 22:38:44','2015-03-10 22:38:44',1,30001872,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(4997,'2015-03-10 22:38:44','2015-08-29 14:46:05',1,30000238,0,0,0,1,4,0,0,1,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0),(4998,'2015-03-10 22:38:44','2015-08-29 14:46:05',1,30001160,0,0,6,1,2,0,1,8,0,8,3,0,0,0,0,0,0,0,1,4,3,4,2,0),(4999,'2015-03-10 22:38:44','2015-03-10 22:38:44',1,30001493,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(5000,'2015-03-10 22:38:44','2015-08-29 14:46:05',1,30004847,0,0,0,0,0,0,0,0,1,0,0,0,4,0,0,0,0,0,0,0,1,0,0,0),(5001,'2015-03-10 22:38:44','2015-03-10 22:38:44',1,30000972,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(5002,'2015-03-10 22:38:44','2015-03-10 22:38:44',1,30002415,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(5003,'2015-03-10 22:38:44','2015-08-29 14:46:05',1,30001878,0,1,1,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,0,1,1,0),(5004,'2015-03-10 22:38:44','2015-03-10 22:38:44',1,30003583,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(5005,'2015-03-10 22:38:44','2015-03-10 22:38:44',1,30000326,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(5006,'2015-03-10 22:38:44','2015-03-10 22:38:44',1,30000746,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(5007,'2015-03-10 22:38:44','2015-08-29 14:46:05',1,30001247,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0),(5008,'2015-03-10 22:38:44','2015-03-10 22:38:44',1,30000725,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(5009,'2015-03-10 22:38:44','2015-08-29 14:46:05',1,30002629,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0),(5010,'2015-03-10 22:38:44','2015-08-29 14:46:05',1,30002429,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0),(5011,'2015-03-10 22:38:44','2015-08-29 14:46:05',1,30000871,0,0,2,2,2,1,0,0,0,0,0,0,2,2,2,0,0,0,0,0,0,0,0,0),(5012,'2015-03-10 22:38:44','2015-08-29 14:46:05',1,30001839,1,1,1,0,0,1,0,0,0,0,0,0,0,0,0,0,2,0,0,0,0,0,0,0),(5013,'2015-03-10 22:38:44','2015-03-10 22:38:44',1,30000687,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(5014,'2015-03-10 22:38:44','2015-08-29 14:46:05',1,30001756,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,0,0,0,0),(5015,'2015-03-10 22:38:44','2015-08-29 14:46:05',1,30000206,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(5016,'2015-03-10 22:38:44','2015-08-29 14:46:05',1,30003422,0,0,0,0,1,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0),(5017,'2015-03-10 22:38:44','2015-08-29 14:46:05',1,30002554,0,0,0,0,0,0,0,0,0,4,6,0,0,0,0,1,0,0,0,1,0,0,0,0),(5018,'2015-03-10 22:38:44','2015-08-29 14:46:05',1,30001595,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,2,0),(5019,'2015-03-10 22:38:44','2015-08-29 14:46:05',1,30001207,0,0,0,0,0,0,0,3,7,2,2,0,4,1,1,0,0,0,0,0,0,2,2,0),(5020,'2015-03-10 22:38:44','2015-03-10 22:38:44',1,30001890,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(5021,'2015-03-10 22:38:44','2015-03-10 22:38:44',1,30001755,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(5022,'2015-03-10 22:38:44','2015-08-29 14:46:05',1,30001173,0,0,0,0,0,0,0,0,0,0,0,0,0,2,0,0,0,0,0,0,0,0,0,0),(5023,'2015-03-10 22:38:44','2015-03-10 22:38:44',1,30000372,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(5024,'2015-03-10 22:38:44','2015-08-29 14:46:05',1,30001336,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0),(5025,'2015-03-10 22:38:44','2015-03-10 22:38:44',1,30001468,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(5026,'2015-03-10 22:38:44','2015-03-10 22:38:44',1,30000315,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(5027,'2015-03-10 22:38:44','2015-08-29 14:46:05',1,30004662,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0),(5028,'2015-03-10 22:38:44','2015-08-29 14:46:05',1,30002854,1,0,2,0,0,0,4,0,1,0,0,0,0,0,0,0,1,0,0,0,1,1,0,0),(5029,'2015-03-10 22:38:44','2015-08-29 14:46:05',1,30001849,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0),(5030,'2015-03-10 22:38:44','2015-03-10 22:38:44',1,30004368,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(5031,'2015-03-10 22:38:44','2015-03-10 22:38:44',1,30000711,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(5032,'2015-03-10 22:38:44','2015-08-29 14:46:05',1,30000928,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0),(5033,'2015-03-10 22:38:44','2015-08-29 14:46:05',1,30002371,0,0,0,0,0,0,0,0,0,0,0,1,0,1,1,0,0,0,0,0,0,0,0,0),(5034,'2015-03-10 22:38:44','2015-08-29 14:46:05',1,30001194,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0),(5035,'2015-03-10 22:38:44','2015-08-29 14:46:05',1,30003696,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0),(5036,'2015-03-10 22:38:44','2015-03-10 22:38:44',1,30000602,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(5037,'2015-03-10 22:38:44','2015-03-10 22:38:44',1,30004864,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(5038,'2015-03-10 22:38:44','2015-03-10 22:38:44',1,30003166,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(5039,'2015-03-10 22:38:44','2015-03-10 22:38:44',1,30000957,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(5040,'2015-03-10 22:38:44','2015-03-10 22:38:44',1,30000433,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(5041,'2015-03-10 22:38:44','2015-03-10 22:38:44',1,30002348,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(5042,'2015-03-10 22:38:44','2015-08-29 14:46:05',1,30000187,0,0,1,2,2,0,0,0,1,0,0,0,0,1,1,0,0,0,0,0,1,0,1,0),(5043,'2015-03-10 22:38:44','2015-08-29 14:46:05',1,30002939,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(5044,'2015-03-10 22:38:44','2015-08-29 14:46:05',1,30003638,0,0,0,0,0,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0),(5045,'2015-03-10 22:38:44','2015-08-29 14:46:05',1,30000698,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,0,0,0,0),(5046,'2015-03-10 22:38:44','2015-08-29 14:46:05',1,30001140,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0),(5047,'2015-03-10 22:38:44','2015-08-29 14:46:05',1,30003216,0,0,0,0,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(5048,'2015-03-10 22:38:44','2015-03-10 22:38:44',1,30001998,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(5049,'2015-03-10 22:38:44','2015-03-10 22:38:44',1,30003256,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(5050,'2015-03-10 22:38:44','2015-08-29 14:46:05',1,30003120,0,0,0,0,0,0,0,0,1,0,0,0,4,0,0,0,0,0,1,1,0,0,0,0),(5051,'2015-03-10 22:38:44','2015-03-10 22:38:44',1,30000337,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(5052,'2015-03-10 22:38:44','2015-08-29 14:46:05',1,30004621,1,0,0,0,0,1,0,1,0,1,1,0,0,0,1,1,1,0,0,0,0,2,0,0),(5053,'2015-03-10 22:38:44','2015-03-10 22:38:44',1,30002126,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(5054,'2015-03-10 22:38:44','2015-08-29 14:46:05',1,30005016,0,0,0,0,0,0,0,0,0,3,1,1,0,1,0,1,0,0,0,0,0,0,0,0),(5055,'2015-03-10 22:38:44','2015-08-29 14:46:05',1,30002622,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,8,0,0),(5056,'2015-03-10 22:38:44','2015-03-10 22:38:44',1,30004840,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(5057,'2015-03-10 22:38:44','2015-03-10 22:38:44',1,30000517,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(5058,'2015-03-10 22:38:44','2015-03-10 22:38:44',1,30004915,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(5059,'2015-03-10 22:38:44','2015-03-10 22:38:44',1,30004173,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(5060,'2015-03-10 22:38:44','2015-08-29 14:46:05',1,30003744,1,0,0,0,0,0,0,0,0,1,1,0,0,1,1,1,0,0,0,4,0,0,1,0),(5061,'2015-03-10 22:38:44','2015-03-10 22:38:44',1,30002148,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(5062,'2015-03-10 22:38:44','2015-08-29 14:46:05',1,30003110,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,1,1,0,0,0,0),(5063,'2015-03-10 22:38:44','2015-08-29 14:46:05',1,30001978,5,4,0,3,2,1,2,0,1,0,0,1,0,0,1,1,0,2,0,1,2,2,5,0),(5064,'2015-03-10 22:38:44','2015-03-10 22:38:44',1,30003245,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(5065,'2015-03-10 22:38:44','2015-08-29 14:46:05',1,30000541,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(5066,'2015-03-10 22:38:44','2015-08-29 14:46:05',1,30003274,0,0,0,0,0,0,0,0,1,0,0,0,2,0,0,0,0,0,0,0,0,0,1,0),(5067,'2015-03-10 22:38:44','2015-03-10 22:38:44',1,30000882,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(5068,'2015-03-10 22:38:44','2015-03-10 22:38:44',1,30003259,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(5069,'2015-03-10 22:38:44','2015-03-10 22:38:44',1,30004907,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(5070,'2015-03-10 22:38:44','2015-03-10 22:38:44',1,30003173,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(5071,'2015-03-10 22:38:44','2015-08-29 14:46:05',1,30001594,0,0,0,0,0,0,0,0,1,10,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(5072,'2015-03-10 22:38:44','2015-03-10 22:38:44',1,30000339,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(5073,'2015-03-10 22:38:44','2015-08-29 14:46:05',1,30003278,0,2,3,0,0,0,1,1,1,0,0,0,1,0,0,1,0,0,0,0,0,0,0,0),(5074,'2015-03-10 22:38:44','2015-03-10 22:38:44',1,30004075,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(5075,'2015-03-10 22:38:44','2015-03-10 22:38:44',1,30001059,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(5076,'2015-03-10 22:38:44','2015-03-10 22:38:44',1,30003288,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(5077,'2015-03-10 22:38:44','2015-08-29 14:46:05',1,30003770,1,0,0,0,0,0,0,0,0,2,1,0,1,0,0,0,0,0,0,0,1,1,1,0),(5078,'2015-03-10 22:38:44','2015-08-29 14:46:05',1,30002916,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(5079,'2015-03-10 22:38:44','2015-03-10 22:38:44',1,30003208,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(5080,'2015-03-10 22:38:44','2015-03-10 22:38:44',1,30000808,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(5081,'2015-03-10 22:38:44','2015-03-10 22:38:44',1,30000358,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(5082,'2015-03-10 22:38:44','2015-03-10 22:38:44',1,30000833,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(5083,'2015-03-10 22:38:44','2015-03-10 22:38:44',1,30001835,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(5084,'2015-03-10 22:38:44','2015-03-10 22:38:44',1,30001086,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(5085,'2015-03-10 22:38:44','2015-08-29 14:46:05',1,30000713,0,0,0,0,0,8,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(5086,'2015-03-10 22:38:44','2015-08-29 14:46:05',1,30002943,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0),(5087,'2015-03-10 22:38:44','2015-08-29 14:46:05',1,30003688,1,3,1,1,1,0,1,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0),(5088,'2015-03-10 22:38:44','2015-03-10 22:38:44',1,30001211,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(5089,'2015-03-10 22:38:44','2015-03-10 22:38:44',1,30001249,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(5090,'2015-03-10 22:38:44','2015-03-10 22:38:44',1,30000496,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(5091,'2015-03-10 22:38:44','2015-03-10 22:38:44',1,30000245,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(5092,'2015-03-10 22:38:44','2015-08-29 14:46:05',1,30001967,0,0,0,0,0,0,1,0,0,3,3,0,0,0,0,0,0,0,0,1,0,0,0,0),(5093,'2015-03-10 22:38:44','2015-03-10 22:38:44',1,30004331,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(5094,'2015-03-10 22:38:44','2015-08-29 14:46:05',1,30000777,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0),(5095,'2015-03-10 22:38:44','2015-08-29 14:46:05',1,30003700,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0),(5096,'2015-03-10 22:38:44','2015-08-29 14:46:05',1,30001905,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0),(5097,'2015-03-10 22:38:44','2015-03-10 22:38:44',1,30004416,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(5098,'2015-03-10 22:38:44','2015-08-29 14:46:05',1,30003773,0,0,0,0,0,1,0,0,1,0,0,0,38,0,0,0,0,1,0,0,0,0,0,0),(5099,'2015-03-10 22:38:44','2015-03-10 22:38:44',1,30001490,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(5100,'2015-03-10 22:38:44','2015-03-10 22:38:44',1,30004355,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(5101,'2015-03-10 22:38:44','2015-03-10 22:38:44',1,30000221,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(5102,'2015-03-10 22:38:44','2015-08-29 14:46:05',1,30000664,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0),(5103,'2015-03-10 22:38:44','2015-08-29 14:46:05',1,30000470,0,0,0,0,0,0,0,0,1,0,0,0,0,15,9,0,0,0,0,0,0,0,0,0),(5104,'2015-03-10 22:38:44','2015-03-10 22:38:44',1,30002319,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(5105,'2015-03-10 22:38:44','2015-03-10 22:38:44',1,30000417,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(5106,'2015-03-10 22:38:44','2015-08-29 14:46:05',1,30002946,0,0,0,0,0,0,0,3,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(5107,'2015-03-10 22:38:44','2015-08-29 14:46:05',1,30002897,0,0,0,0,0,0,0,1,0,0,0,1,12,0,0,0,0,0,0,1,0,0,0,0),(5108,'2015-03-10 22:38:44','2015-03-10 22:38:44',1,30001093,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(5109,'2015-03-10 22:38:44','2015-08-29 14:46:05',1,30002118,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0),(5110,'2015-03-10 22:38:44','2015-08-29 14:46:05',1,30000889,0,0,0,0,0,0,0,0,0,1,1,0,1,0,0,0,0,0,0,0,0,0,0,0),(5111,'2015-03-10 22:38:44','2015-03-10 22:38:44',1,30001778,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(5112,'2015-03-10 22:38:44','2015-03-10 22:38:44',1,30003224,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(5113,'2015-03-10 22:38:44','2015-08-29 14:46:05',1,30000604,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0),(5114,'2015-03-10 22:38:44','2015-03-10 22:38:44',1,30000293,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(5115,'2015-03-10 22:38:44','2015-08-29 14:46:05',1,30004552,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0),(5116,'2015-03-10 22:38:44','2015-03-10 22:38:44',1,30001958,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(5117,'2015-03-10 22:38:44','2015-03-10 22:38:44',1,30004069,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(5118,'2015-03-10 22:38:44','2015-08-29 14:46:05',1,30004875,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0),(5119,'2015-03-10 22:38:44','2015-08-29 14:46:05',1,30003731,1,2,1,0,0,0,0,3,1,19,2,0,2,1,1,3,0,2,9,12,0,0,0,0),(5120,'2015-03-10 22:38:44','2015-03-10 22:38:44',1,30001973,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(5121,'2015-03-10 22:38:44','2015-08-29 14:46:05',1,30001798,0,0,0,0,0,0,0,0,1,0,0,0,8,1,1,0,0,0,0,0,0,0,0,0),(5122,'2015-03-10 22:38:44','2015-03-10 22:38:44',1,30004613,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(5123,'2015-03-10 22:38:44','2015-08-29 14:46:05',1,30000752,0,0,0,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(5124,'2015-03-10 22:38:44','2015-08-29 14:46:05',1,30003263,0,0,0,0,0,0,0,1,0,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0),(5125,'2015-03-10 22:38:44','2015-08-29 14:46:05',1,30003119,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0),(5126,'2015-03-10 22:38:44','2015-08-29 14:46:05',1,30004342,0,0,0,1,1,0,0,0,0,0,0,0,1,1,1,0,0,0,0,0,0,0,0,0),(5127,'2015-03-10 22:38:44','2015-03-10 22:38:44',1,30003252,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(5128,'2015-03-10 22:38:44','2015-03-10 22:38:44',1,30001792,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(5129,'2015-03-10 22:38:44','2015-03-10 22:38:44',1,30004894,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(5130,'2015-03-10 22:38:44','2015-03-10 22:38:44',1,30001999,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(5131,'2015-03-10 22:38:44','2015-03-10 22:38:44',1,30000750,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(5132,'2015-03-10 22:38:44','2015-08-29 14:46:05',1,30000585,0,0,0,0,0,0,0,0,0,0,2,0,0,0,0,0,1,0,0,0,0,0,0,0),(5133,'2015-03-10 22:38:44','2015-03-10 22:38:44',1,30001584,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(5134,'2015-03-10 22:38:44','2015-03-10 22:38:44',1,30002155,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(5135,'2015-03-10 22:38:44','2015-03-10 22:38:44',1,30003313,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(5136,'2015-03-10 22:38:44','2015-03-10 22:38:44',1,30000275,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(5137,'2015-03-10 22:38:44','2015-08-29 14:46:05',1,30000447,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(5138,'2015-03-10 22:38:44','2015-08-29 14:46:05',1,30001552,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(5139,'2015-03-10 22:38:44','2015-08-29 14:46:05',1,30004038,0,0,0,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(5140,'2015-03-10 22:38:44','2015-03-10 22:38:44',1,30002822,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(5141,'2015-03-10 22:38:44','2015-08-29 14:46:05',1,30001113,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(5142,'2015-03-10 22:38:44','2015-03-10 22:38:44',1,30001089,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(5143,'2015-03-10 22:38:44','2015-03-10 22:38:44',1,30005095,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(5144,'2015-03-10 22:38:44','2015-03-10 22:38:44',1,30004856,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(5145,'2015-03-10 22:38:44','2015-03-10 22:38:44',1,30001753,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(5146,'2015-03-10 22:38:44','2015-08-29 14:46:05',1,30004655,0,0,0,0,0,0,0,0,1,0,0,0,0,1,2,4,0,4,1,2,0,0,0,0),(5147,'2015-03-10 22:38:44','2015-03-10 22:38:44',1,30000237,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(5148,'2015-03-10 22:38:44','2015-08-29 14:46:05',1,30000678,0,0,0,0,0,1,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(5149,'2015-03-10 22:38:44','2015-03-10 22:38:44',1,30002122,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(5150,'2015-03-10 22:38:44','2015-08-29 14:46:05',1,30004320,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0),(5151,'2015-03-10 22:38:44','2015-03-10 22:38:44',1,30001325,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(5152,'2015-03-10 22:38:44','2015-03-10 22:38:44',1,30004382,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(5153,'2015-03-10 22:38:44','2015-03-10 22:38:44',1,30000499,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(5154,'2015-03-10 22:38:44','2015-03-10 22:38:44',1,30002600,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(5155,'2015-03-10 22:38:44','2015-08-29 14:46:05',1,30001021,0,0,0,0,0,0,1,1,0,0,0,1,0,4,6,3,1,0,0,1,2,1,2,0),(5156,'2015-03-10 22:38:44','2015-03-10 22:38:44',1,30003228,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(5157,'2015-03-10 22:38:44','2015-08-29 14:46:05',1,30005175,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0),(5158,'2015-03-10 22:38:44','2015-08-29 14:46:05',1,30003326,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0),(5159,'2015-03-10 22:38:44','2015-08-29 14:46:05',1,30004932,0,1,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(5160,'2015-03-10 22:38:44','2015-03-10 22:38:44',1,30004062,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(5161,'2015-03-10 22:38:44','2015-03-10 22:38:44',1,30003237,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(5162,'2015-03-10 22:38:44','2015-08-29 14:46:05',1,30004396,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0),(5163,'2015-03-10 22:38:44','2015-03-10 22:38:44',1,30004568,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(5164,'2015-03-10 22:38:44','2015-08-29 14:46:05',1,30004665,0,0,0,0,0,0,0,0,0,1,1,4,2,0,7,54,2,0,4,9,0,0,0,0),(5165,'2015-03-10 22:38:44','2015-08-29 14:46:05',1,30001291,0,0,0,0,0,0,0,0,1,0,0,2,0,3,2,2,0,0,7,2,0,0,0,0),(5166,'2015-03-10 22:38:44','2015-03-10 22:38:44',1,30001932,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(5167,'2015-03-10 22:38:44','2015-03-10 22:38:44',1,30001498,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(5168,'2015-03-10 22:38:44','2015-03-10 22:38:44',1,30002597,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(5169,'2015-03-10 22:38:44','2015-03-10 22:38:44',1,30003207,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(5170,'2015-03-10 22:38:44','2015-08-29 14:46:05',1,30001829,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,0,0,0),(5171,'2015-03-10 22:38:44','2015-03-10 22:38:44',1,30003265,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(5172,'2015-03-10 22:38:44','2015-03-10 22:38:44',1,30002044,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(5173,'2015-03-10 22:38:44','2015-08-29 14:46:05',1,30002169,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0),(5174,'2015-03-10 22:38:44','2015-08-29 14:46:05',1,30004941,0,0,1,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,2,1,0,0,0),(5175,'2015-03-10 22:38:44','2015-08-29 14:46:05',1,30000958,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0),(5176,'2015-03-10 22:38:44','2015-03-10 22:38:44',1,30001031,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(5177,'2015-03-10 22:38:44','2015-03-10 22:38:44',1,30004859,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(5178,'2015-03-10 22:38:44','2015-08-29 14:46:05',1,30002162,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,0,0,0),(5179,'2015-03-10 22:38:44','2015-03-10 22:38:44',1,30002586,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(5180,'2015-03-10 22:38:44','2015-08-29 14:46:05',1,30001039,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,3,0,0,0,1,0,0,0,0),(5181,'2015-03-10 22:38:44','2015-08-29 14:46:05',1,30003726,0,5,0,1,1,6,0,3,2,0,1,0,3,1,0,0,0,4,2,2,3,0,0,0),(5182,'2015-03-10 22:38:44','2015-03-10 22:38:44',1,30004898,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(5183,'2015-03-10 22:38:44','2015-03-10 22:38:44',1,30002176,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(5184,'2015-03-10 22:38:44','2015-08-29 14:46:05',1,30004763,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,1,0,0,0,0,1,0,0,0),(5185,'2015-03-10 22:38:44','2015-03-10 22:38:44',1,30004809,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(5186,'2015-03-10 22:38:44','2015-08-29 14:46:05',1,30001255,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0),(5187,'2015-03-10 22:38:44','2015-03-10 22:38:44',1,30000884,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(5188,'2015-03-10 22:38:44','2015-08-29 14:46:05',1,30004171,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0),(5189,'2015-03-10 22:38:44','2015-03-10 22:38:44',1,30000331,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(5190,'2015-03-10 22:38:44','2015-03-10 22:38:44',1,30001791,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(5191,'2015-03-10 22:38:44','2015-08-29 14:46:05',1,30001261,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0),(5192,'2015-03-10 22:38:44','2015-08-29 14:46:05',1,30003342,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0),(5193,'2015-03-10 22:38:44','2015-08-29 14:46:05',1,30001108,0,0,1,0,0,0,0,0,3,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0),(5194,'2015-03-10 22:38:44','2015-08-29 14:46:05',1,30004428,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,0,0,0,0),(5195,'2015-03-10 22:38:44','2015-03-10 22:38:44',1,30003651,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(5196,'2015-03-10 22:38:44','2015-08-29 14:46:05',1,30000306,0,0,1,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0),(5197,'2015-03-10 22:38:44','2015-08-29 14:46:05',1,30000220,0,1,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(5198,'2015-03-10 22:38:44','2015-08-29 14:46:05',1,30001846,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,1,1,0,0,0,0,0,0,0),(5199,'2015-03-10 22:38:44','2015-03-10 22:38:44',1,30002109,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(5200,'2015-03-10 22:38:44','2015-03-10 22:38:44',1,30002037,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(5201,'2015-03-10 22:38:44','2015-03-10 22:38:44',1,30004456,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(5202,'2015-03-10 22:38:44','2015-03-10 22:38:44',1,30002115,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(5203,'2015-03-10 22:38:44','2015-03-10 22:38:44',1,30000918,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(5204,'2015-03-10 22:38:44','2015-03-10 22:38:44',1,30001570,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(5205,'2015-03-10 22:38:44','2015-03-10 22:38:44',1,30001546,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(5206,'2015-03-10 22:38:44','2015-03-10 22:38:44',1,30000729,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(5207,'2015-03-10 22:38:44','2015-03-10 22:38:44',1,30004785,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(5208,'2015-03-10 22:38:44','2015-03-10 22:38:44',1,30000308,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(5209,'2015-03-10 22:38:44','2015-03-10 22:38:44',1,30001058,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(5210,'2015-03-10 22:38:44','2015-08-29 14:46:05',1,30001262,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0),(5211,'2015-03-10 22:38:44','2015-08-29 14:46:05',1,30000947,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,1,0,0,0,0,0,1,0,0),(5212,'2015-03-10 22:38:44','2015-03-10 22:38:44',1,30001559,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(5213,'2015-03-10 22:38:44','2015-03-10 22:38:44',1,30002466,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(5214,'2015-03-10 22:38:44','2015-08-29 14:46:05',1,30003734,0,0,0,0,0,0,0,0,0,0,0,0,0,2,2,1,0,0,0,0,0,0,0,0),(5215,'2015-03-10 22:38:44','2015-08-29 14:46:05',1,30003307,0,1,0,1,1,1,0,0,0,2,1,0,3,0,0,0,2,1,0,0,2,1,2,0),(5216,'2015-03-10 22:38:44','2015-08-29 14:46:05',1,30002902,0,0,0,0,0,3,3,0,12,6,4,0,20,2,3,3,0,1,1,0,0,2,0,0),(5217,'2015-03-10 22:38:44','2015-08-29 14:46:05',1,30000080,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0),(5218,'2015-03-10 22:38:44','2015-08-29 14:46:05',1,30004286,0,0,0,0,0,0,0,0,1,2,0,0,0,0,1,1,1,0,0,0,0,0,0,0),(5219,'2015-03-10 22:38:44','2015-03-10 22:38:44',1,30002592,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(5220,'2015-03-10 22:38:44','2015-03-10 22:38:44',1,30001701,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(5221,'2015-03-10 22:38:44','2015-08-29 14:46:05',1,30003158,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0),(5222,'2015-03-10 22:38:44','2015-08-29 14:46:05',1,30004111,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,6,0,0,0,0),(5223,'2015-03-10 22:38:44','2015-08-29 14:46:05',1,30002762,0,0,0,0,0,1,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,0,0,0),(5224,'2015-03-10 22:38:44','2015-08-29 14:46:05',1,30001713,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,3,0),(5225,'2015-03-10 22:38:44','2015-08-29 14:46:05',1,30004797,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(5226,'2015-03-10 22:38:44','2015-03-10 22:38:44',1,30001525,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(5227,'2015-03-10 22:38:44','2015-03-10 22:38:44',1,30001803,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(5228,'2015-03-10 22:38:44','2015-03-10 22:38:44',1,30000621,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(5229,'2015-03-10 22:38:44','2015-03-10 22:38:44',1,30001915,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(5230,'2015-03-10 22:38:44','2015-03-10 22:38:44',1,30004144,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(5231,'2015-03-10 22:38:44','2015-08-29 14:46:05',1,30001710,3,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0),(5232,'2015-03-10 22:38:44','2015-08-29 14:46:05',1,30003514,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0),(5233,'2015-03-10 22:38:44','2015-08-29 14:46:05',1,30004236,0,2,0,0,0,0,0,0,0,0,0,0,1,2,2,0,0,0,0,0,1,0,0,0),(5234,'2015-03-10 22:38:44','2015-03-10 22:38:44',1,30004154,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(5235,'2015-03-10 22:38:44','2015-03-10 22:38:44',1,30004265,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(5236,'2015-03-10 22:38:44','2015-03-10 22:38:44',1,30003872,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(5237,'2015-03-10 22:38:44','2015-08-29 14:46:05',1,30003997,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0),(5238,'2015-03-10 22:38:44','2015-03-10 22:38:44',1,30004838,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(5239,'2015-03-10 22:38:44','2015-03-10 22:38:44',1,30004350,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(5240,'2015-03-10 22:38:44','2015-03-10 22:38:44',1,30000530,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(5241,'2015-03-10 22:38:44','2015-08-29 14:46:05',1,30001204,0,1,0,0,0,0,0,0,0,0,0,4,1,6,0,0,0,1,3,0,2,2,1,0),(5242,'2015-03-10 22:38:44','2015-03-10 22:38:44',1,30004459,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(5243,'2015-03-10 22:38:44','2015-08-29 14:46:05',1,30004051,0,3,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(5244,'2015-03-10 22:38:44','2015-08-29 14:46:05',1,30000583,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,2,0,1,1,0,0,0,0),(5245,'2015-03-10 22:38:44','2015-08-29 14:46:05',1,30004260,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0),(5246,'2015-03-10 22:38:44','2015-08-29 14:46:05',1,30000036,0,1,0,0,0,0,0,1,0,0,0,0,0,0,1,1,0,0,0,0,0,0,0,0),(5247,'2015-03-10 22:38:44','2015-03-10 22:38:44',1,30001353,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(5248,'2015-03-10 22:38:44','2015-08-29 14:46:05',1,30001024,0,0,0,0,0,0,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(5249,'2015-03-10 22:38:44','2015-08-29 14:46:05',1,30003690,0,5,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(5250,'2015-03-10 22:38:44','2015-08-29 14:46:05',1,30001395,0,0,0,1,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0),(5251,'2015-03-10 22:38:44','2015-03-10 22:38:44',1,30000880,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(5252,'2015-03-10 22:38:44','2015-08-29 14:46:05',1,30001118,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,1,0,0,0,0,0,0,0),(5253,'2015-03-10 22:38:44','2015-03-10 22:38:44',1,30000241,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(5254,'2015-03-10 22:38:44','2015-08-29 14:46:05',1,30002432,0,0,0,0,0,0,0,0,1,0,0,0,0,0,1,1,0,0,0,1,0,0,0,0),(5255,'2015-03-10 22:38:44','2015-08-29 14:46:05',1,30001427,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,2,0,0,0,0),(5256,'2015-03-10 22:38:44','2015-08-29 14:46:05',1,30005017,0,0,0,0,0,0,1,0,0,0,0,0,0,0,1,1,0,0,0,1,0,0,0,0),(5257,'2015-03-10 22:38:44','2015-08-29 14:46:05',1,30001668,0,0,0,1,0,0,0,0,0,0,0,0,0,2,2,0,0,3,0,0,0,0,2,0),(5258,'2015-03-10 22:38:44','2015-08-29 14:46:05',1,30004131,0,0,0,0,0,0,0,0,4,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0),(5259,'2015-03-10 22:38:44','2015-03-10 22:38:44',1,30003960,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(5260,'2015-03-10 22:38:44','2015-08-29 14:46:05',1,30003493,0,0,0,1,0,0,1,1,0,0,0,0,1,0,0,0,2,0,1,1,0,0,1,0),(5261,'2015-03-10 22:38:44','2015-08-29 14:46:05',1,30001271,0,0,0,0,0,1,0,0,0,0,0,0,0,0,1,1,1,0,0,0,0,0,2,0),(5262,'2015-03-10 22:38:44','2015-08-29 14:46:05',1,30000784,0,1,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,0,0),(5263,'2015-03-10 22:38:44','2015-03-10 22:38:44',1,30003753,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(5264,'2015-03-10 22:38:44','2015-03-10 22:38:44',1,30001758,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(5265,'2015-03-10 22:38:44','2015-03-10 22:38:44',1,30003212,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(5266,'2015-03-10 22:38:44','2015-03-10 22:38:44',1,30004026,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(5267,'2015-03-10 22:38:44','2015-08-29 14:46:05',1,30002794,0,1,0,0,0,3,0,0,0,0,0,0,0,0,0,0,1,0,0,3,0,0,1,0),(5268,'2015-03-10 22:38:44','2015-03-10 22:38:44',1,30003414,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(5269,'2015-03-10 22:38:44','2015-08-29 14:46:05',1,30004627,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(5270,'2015-03-10 22:38:44','2015-03-10 22:38:44',1,30003178,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(5271,'2015-03-10 22:38:44','2015-03-10 22:38:44',1,30000408,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(5272,'2015-03-10 22:38:44','2015-03-10 22:38:44',1,30003545,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(5273,'2015-03-10 22:38:44','2015-08-29 14:46:05',1,30005204,0,0,0,0,0,0,0,0,0,0,0,0,2,3,1,0,0,2,0,0,0,0,0,0),(5274,'2015-03-10 22:38:44','2015-03-10 22:38:44',1,30000916,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(5275,'2015-03-10 22:38:44','2015-08-29 14:46:05',1,30000007,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,1,0,0),(5276,'2015-03-10 22:38:44','2015-03-10 22:38:44',1,30004679,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(5277,'2015-03-10 22:38:44','2015-03-10 22:38:44',1,30004548,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(5278,'2015-03-10 22:38:44','2015-03-10 22:38:44',1,30003588,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(5279,'2015-03-10 22:38:44','2015-08-29 14:46:05',1,30004977,2,2,0,2,2,0,2,0,3,1,0,0,0,0,0,0,0,0,0,1,0,2,1,0),(5280,'2015-03-10 22:38:44','2015-08-29 14:46:05',1,30004561,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(5281,'2015-03-10 22:38:44','2015-08-29 14:46:05',1,30003591,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0),(5282,'2015-03-10 22:38:44','2015-03-10 22:38:44',1,30003567,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(5283,'2015-03-10 22:38:44','2015-03-10 22:38:44',1,30004174,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(5284,'2015-03-10 22:38:44','2015-08-29 14:46:05',1,30003990,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0),(5285,'2015-03-10 22:38:44','2015-08-29 14:46:05',1,30003705,0,0,0,0,0,0,0,0,0,2,0,0,1,0,0,0,0,0,0,0,0,0,0,0),(5286,'2015-03-10 22:38:44','2015-03-10 22:38:44',1,30002310,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(5287,'2015-03-10 22:38:44','2015-08-29 14:46:05',1,30000231,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0),(5288,'2015-03-10 22:38:44','2015-08-29 14:46:05',1,30004617,0,8,2,2,1,10,0,0,0,0,0,1,1,0,0,0,0,2,0,0,2,1,4,0),(5289,'2015-03-10 22:38:44','2015-08-29 14:46:05',1,30002925,0,0,1,0,0,0,0,0,0,0,0,0,2,0,0,0,0,0,0,0,0,1,0,0),(5290,'2015-03-10 22:38:44','2015-08-29 14:46:05',1,30004719,5,0,0,0,0,0,0,0,0,0,2,1,2,0,1,2,1,0,3,1,1,0,0,0),(5291,'2015-03-10 22:38:44','2015-03-10 22:38:44',1,30004554,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(5292,'2015-03-10 22:38:44','2015-03-10 22:38:44',1,30000506,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(5293,'2015-03-10 22:38:44','2015-03-10 22:38:44',1,30004542,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(5294,'2015-03-10 22:38:44','2015-03-10 22:38:44',1,30001956,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(5295,'2015-03-10 22:38:44','2015-08-29 14:46:05',1,30004921,0,0,0,0,0,0,0,0,0,0,0,0,0,3,0,0,1,0,0,0,0,0,0,0),(5296,'2015-03-10 22:38:44','2015-08-29 14:46:05',1,30000266,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0),(5297,'2015-03-10 22:38:44','2015-03-10 22:38:44',1,30000597,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(5298,'2015-03-10 22:38:44','2015-03-10 22:38:44',1,30001486,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(5299,'2015-03-10 22:38:44','2015-03-10 22:38:44',1,30001074,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(5300,'2015-03-10 22:38:44','2015-03-10 22:38:44',1,30002292,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(5301,'2015-03-10 22:38:44','2015-03-10 22:38:44',1,30001097,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(5302,'2015-03-10 22:38:44','2015-08-29 14:46:05',1,30005132,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0),(5303,'2015-03-10 22:38:44','2015-03-10 22:38:44',1,30002368,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(5304,'2015-03-10 22:38:44','2015-03-10 22:38:44',1,30001454,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(5305,'2015-03-10 22:38:44','2015-08-29 14:46:05',1,30001263,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0),(5306,'2015-03-10 22:38:44','2015-08-29 14:46:05',1,30002141,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0),(5307,'2015-03-10 22:38:44','2015-03-10 22:38:44',1,30000387,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(5308,'2015-03-10 22:38:44','2015-08-29 14:46:05',1,30004341,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(5309,'2015-03-10 22:38:44','2015-03-10 22:38:44',1,30001613,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(5310,'2015-03-10 22:38:44','2015-03-10 22:38:44',1,30003646,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(5311,'2015-03-10 22:38:44','2015-03-10 22:38:44',1,30004965,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(5312,'2015-03-10 22:38:44','2015-03-10 22:38:44',1,30003154,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(5313,'2015-03-10 22:38:44','2015-03-10 22:38:44',1,30002617,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(5314,'2015-03-10 22:38:44','2015-03-10 22:38:44',1,30004425,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(5315,'2015-03-10 22:38:44','2015-03-10 22:38:44',1,30003357,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(5316,'2015-03-10 22:38:44','2015-08-29 14:46:05',1,30001919,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,2,0,0,0,1,0,0,0),(5317,'2015-03-10 22:38:44','2015-08-29 14:46:05',1,30003783,1,0,0,0,0,2,0,0,6,1,1,0,0,2,0,1,0,0,0,2,0,7,3,0),(5318,'2015-03-10 22:38:44','2015-03-10 22:38:44',1,30003652,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(5319,'2015-03-10 22:38:44','2015-08-29 14:46:05',1,30003991,0,0,1,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(5320,'2015-03-10 22:38:44','2015-08-29 14:46:05',1,30001929,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(5321,'2015-03-10 22:38:44','2015-03-10 22:38:44',1,30003989,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(5322,'2015-03-10 22:38:44','2015-03-10 22:38:44',1,30004063,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(5323,'2015-03-10 22:38:44','2015-03-10 22:38:44',1,30003124,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(5324,'2015-03-10 22:38:44','2015-03-10 22:38:44',1,30004666,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(5325,'2015-03-10 22:38:44','2015-03-10 22:38:44',1,30000414,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(5326,'2015-03-10 22:38:44','2015-03-10 22:38:44',1,30001304,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(5327,'2015-03-10 22:38:44','2015-03-10 22:38:44',1,30002337,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(5328,'2015-03-10 22:38:44','2015-03-10 22:38:44',1,30001091,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(5329,'2015-03-10 22:38:44','2015-03-10 22:38:44',1,30000739,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(5330,'2015-03-10 22:38:44','2015-03-10 22:38:44',1,30001582,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(5331,'2015-03-10 22:38:44','2015-08-29 14:46:05',1,30001861,0,0,1,0,0,0,1,0,0,0,1,0,0,0,0,0,2,0,0,1,0,0,0,0),(5332,'2015-03-10 22:38:44','2015-08-29 14:46:05',1,30004607,0,0,0,0,0,1,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(5333,'2015-03-10 22:38:44','2015-08-29 14:46:05',1,30001345,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0),(5334,'2015-03-10 22:38:44','2015-08-29 14:46:05',1,30004707,0,0,0,0,0,0,1,0,2,3,3,0,0,0,0,1,0,0,0,0,2,1,0,0),(5335,'2015-03-10 22:38:44','2015-03-10 22:38:44',1,30002137,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(5336,'2015-03-10 22:38:44','2015-08-29 14:46:05',1,30002117,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,0,0,0),(5337,'2015-03-10 22:38:44','2015-03-10 22:38:44',1,30004584,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(5338,'2015-03-10 22:38:44','2015-08-29 14:46:05',1,30000304,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,2,1,0),(5339,'2015-03-10 22:38:44','2015-03-10 22:38:44',1,30001455,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(5340,'2015-03-10 22:38:44','2015-08-29 14:46:05',1,30004741,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(5341,'2015-03-10 22:38:44','2015-08-29 14:46:05',1,30003927,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(5342,'2015-03-10 22:38:44','2015-08-29 14:46:05',1,30000006,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0),(5343,'2015-03-10 22:38:44','2015-08-29 14:46:05',1,30003497,0,0,0,1,0,0,0,0,0,0,0,0,0,1,0,0,0,0,2,1,0,0,1,0),(5344,'2015-03-10 22:38:44','2015-08-29 14:46:05',1,30003543,7,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0),(5345,'2015-03-10 22:38:44','2015-08-29 14:46:05',1,30005211,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0),(5346,'2015-03-10 22:38:44','2015-08-29 14:46:05',1,30005079,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(5347,'2015-03-10 22:38:44','2015-08-29 14:46:05',1,30002280,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,1,0,1,0),(5348,'2015-03-10 22:38:44','2015-03-10 22:38:44',1,30003996,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(5349,'2015-03-10 22:38:44','2015-03-10 22:38:44',1,30004290,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(5350,'2015-03-10 22:38:44','2015-03-10 22:38:44',1,30004232,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(5351,'2015-03-10 22:38:44','2015-08-29 14:46:05',1,30004285,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,0,0,0,0,2,0,0,0),(5352,'2015-03-10 22:38:44','2015-03-10 22:38:44',1,30002121,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(5353,'2015-03-10 22:38:44','2015-03-10 22:38:44',1,30004701,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(5354,'2015-03-10 22:38:44','2015-08-29 14:46:05',1,30004817,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0),(5355,'2015-03-10 22:38:44','2015-08-29 14:46:05',1,30001354,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0),(5356,'2015-03-10 22:38:44','2015-08-29 14:46:05',1,30000719,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0),(5357,'2015-03-10 22:38:44','2015-08-29 14:46:05',1,30004704,0,0,0,0,0,0,0,0,0,7,0,0,1,0,0,0,0,0,0,0,0,0,0,0),(5358,'2015-03-10 22:38:44','2015-08-29 14:46:05',1,30001734,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0),(5359,'2015-03-10 22:38:44','2015-08-29 14:46:05',1,30000055,0,0,0,0,0,0,0,0,0,0,0,0,0,0,4,4,0,0,0,0,0,0,0,0),(5360,'2015-03-10 22:38:44','2015-08-29 14:46:05',1,30003928,2,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0),(5361,'2015-03-10 22:38:44','2015-03-10 22:38:44',1,30000064,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(5362,'2015-03-10 22:38:44','2015-03-10 22:38:44',1,30001765,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(5363,'2015-03-10 22:38:44','2015-03-10 22:38:44',1,30000688,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(5364,'2015-03-10 22:38:44','2015-08-29 14:46:05',1,30001866,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,1,1,0),(5365,'2015-03-10 22:38:44','2015-03-10 22:38:44',1,30000551,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(5366,'2015-03-10 22:38:44','2015-03-10 22:38:44',1,30001922,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(5367,'2015-03-10 22:38:44','2015-03-10 22:38:44',1,30003618,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(5368,'2015-03-10 22:38:44','2015-03-10 22:38:44',1,30003550,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(5369,'2015-03-10 22:38:44','2015-08-29 14:46:05',1,30005208,0,0,1,0,0,0,1,0,0,0,0,0,1,0,0,1,0,0,0,0,0,0,0,0),(5370,'2015-03-10 22:38:44','2015-03-10 22:38:44',1,30004489,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(5371,'2015-03-10 22:38:44','2015-03-10 22:38:44',1,30004107,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(5372,'2015-03-10 22:38:44','2015-08-29 14:46:05',1,30004127,0,0,0,0,0,0,0,0,0,0,0,0,2,0,0,0,0,0,0,0,0,0,1,0),(5373,'2015-03-10 22:38:44','2015-03-10 22:38:44',1,30005055,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(5374,'2015-03-10 22:38:44','2015-08-29 14:46:05',1,30004140,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,1,0,0,0,1,0,0),(5375,'2015-03-10 22:38:44','2015-08-29 14:46:05',1,30002203,0,3,0,0,0,0,0,0,2,0,0,0,1,0,0,0,0,0,0,0,6,7,0,0),(5376,'2015-03-10 22:38:44','2015-03-10 22:38:44',1,30003562,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(5377,'2015-03-10 22:38:44','2015-03-10 22:38:44',1,30003939,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(5378,'2015-03-10 22:38:44','2015-08-29 14:46:05',1,30001732,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,1,0,0,0,0,0,1,0,0),(5379,'2015-03-10 22:38:44','2015-03-10 22:38:44',1,30004363,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(5380,'2015-03-10 22:38:44','2015-03-10 22:38:44',1,30001810,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(5381,'2015-03-10 22:38:44','2015-03-10 22:38:44',1,30000937,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(5382,'2015-03-10 22:38:44','2015-03-10 22:38:44',1,30003619,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(5383,'2015-03-10 22:38:44','2015-08-29 14:46:05',1,30002130,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0),(5384,'2015-03-10 22:38:44','2015-03-10 22:38:44',1,30001996,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(5385,'2015-03-10 22:38:44','2015-08-29 14:46:05',1,30004888,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,0,0,0,0,0,0),(5386,'2015-03-10 22:38:44','2015-08-29 14:46:05',1,30004498,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(5387,'2015-03-10 22:38:44','2015-03-10 22:38:44',1,30003658,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(5388,'2015-03-10 22:38:44','2015-03-10 22:38:44',1,30000407,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(5389,'2015-03-10 22:38:44','2015-08-29 14:46:05',1,30002018,0,0,3,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(5390,'2015-03-10 22:38:44','2015-08-29 14:46:05',1,30000449,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0),(5391,'2015-03-10 22:38:44','2015-03-10 22:38:44',1,30000296,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(5392,'2015-03-10 22:38:44','2015-03-10 22:38:44',1,30000935,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(5393,'2015-03-10 22:38:44','2015-03-10 22:38:44',1,30004820,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(5394,'2015-03-10 22:38:44','2015-08-29 14:46:05',1,30003289,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(5395,'2015-03-10 22:38:44','2015-03-10 22:38:44',1,30000699,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(5396,'2015-03-10 22:38:44','2015-03-10 22:38:44',1,30000802,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(5397,'2015-03-10 22:38:44','2015-08-29 14:46:05',1,30004882,0,0,0,0,0,3,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(5398,'2015-03-10 22:38:44','2015-03-10 22:38:44',1,30001133,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(5399,'2015-03-10 22:38:44','2015-08-29 14:46:05',1,30005221,0,5,0,0,0,3,3,0,0,1,0,0,0,1,0,0,0,0,0,1,0,0,0,0),(5400,'2015-03-10 22:38:44','2015-03-10 22:38:44',1,30001131,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(5401,'2015-03-10 22:38:44','2015-08-29 14:46:05',1,30005067,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,1,0,0,0),(5402,'2015-03-10 22:38:44','2015-08-29 14:46:05',1,30004081,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(5403,'2015-03-10 22:38:44','2015-03-10 22:38:44',1,30004160,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(5404,'2015-03-10 22:38:44','2015-08-29 14:46:05',1,30002923,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0),(5405,'2015-03-10 22:38:44','2015-08-29 14:46:05',1,30001226,0,1,0,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,2,0),(5406,'2015-03-10 22:38:44','2015-08-29 14:46:05',1,30004496,0,0,0,0,0,0,0,0,0,0,0,0,0,0,3,4,0,0,1,1,0,0,0,0),(5407,'2015-03-10 22:38:44','2015-08-29 14:46:05',1,30004469,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0),(5408,'2015-03-10 22:38:44','2015-03-10 22:38:44',1,30002352,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(5409,'2015-03-10 22:38:44','2015-03-10 22:38:44',1,30000328,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(5410,'2015-03-10 22:38:44','2015-03-10 22:38:44',1,30001072,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(5411,'2015-03-10 22:38:44','2015-03-10 22:38:44',1,30003747,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(5412,'2015-03-10 22:38:44','2015-03-10 22:38:44',1,30004660,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(5413,'2015-03-10 22:38:44','2015-03-10 22:38:44',1,30004955,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(5414,'2015-03-10 22:38:44','2015-08-29 14:46:05',1,30004658,0,0,0,0,0,0,0,0,0,0,0,0,2,1,0,0,0,0,0,0,0,0,0,0),(5415,'2015-03-10 22:38:44','2015-03-10 22:38:44',1,30003369,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(5416,'2015-03-10 22:38:44','2015-03-10 22:38:44',1,30001621,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(5417,'2015-03-10 22:38:44','2015-08-29 14:46:05',1,30003272,0,2,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0),(5418,'2015-03-10 22:38:44','2015-03-10 22:38:44',1,30001590,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(5419,'2015-03-10 22:38:44','2015-03-10 22:38:44',1,30004687,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(5420,'2015-03-10 22:38:44','2015-03-10 22:38:44',1,30003620,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(5421,'2015-03-10 22:38:44','2015-08-29 14:46:05',1,30004777,0,0,0,0,0,0,0,0,1,0,1,9,2,0,0,0,1,1,2,3,0,0,0,0),(5422,'2015-03-10 22:38:44','2015-03-10 22:38:44',1,30004540,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(5423,'2015-03-10 22:38:44','2015-03-10 22:38:44',1,30004528,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(5424,'2015-03-10 22:38:44','2015-08-29 14:46:05',1,30001168,2,0,0,0,1,0,0,0,1,1,0,1,0,0,0,0,0,0,1,3,0,0,0,0),(5425,'2015-03-10 22:38:44','2015-08-29 14:46:05',1,30004031,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(5426,'2015-03-10 22:38:44','2015-03-10 22:38:44',1,30004437,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(5427,'2015-03-10 22:38:44','2015-08-29 14:46:05',1,30001004,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0),(5428,'2015-03-10 22:38:44','2015-08-29 14:46:05',1,30002360,1,0,1,0,0,0,4,1,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0),(5429,'2015-03-10 22:38:44','2015-03-10 22:38:44',1,30000356,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(5430,'2015-03-10 22:38:44','2015-03-10 22:38:44',1,30001807,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(5431,'2015-03-10 22:38:44','2015-03-10 22:38:44',1,30002914,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(8078,'2015-08-19 19:10:02','2015-08-19 19:10:02',1,31000001,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(8081,'2015-08-19 19:10:02','2015-08-19 19:10:02',1,31000002,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(8082,'2015-08-19 19:10:02','2015-08-19 19:10:02',1,31000003,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(8083,'2015-08-19 19:10:02','2015-08-19 19:10:02',1,31000006,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(8087,'2015-08-19 19:10:02','2015-08-19 19:10:02',1,31000004,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0); +INSERT INTO `system_kills_ships` VALUES (1,'2015-03-10 22:38:42','2015-10-11 16:46:32',1,30000995,0,0,1,0,0,0,0,0,3,0,0,0,0,0,0,0,0,0,0,0,0,0,1,2),(2,'2015-03-10 22:38:42','2015-03-10 22:38:42',1,30001779,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(3,'2015-03-10 22:38:42','2015-10-11 16:46:32',1,30000838,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1),(4,'2015-03-10 22:38:42','2015-10-11 16:46:32',1,30001904,0,0,0,0,0,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1),(5,'2015-03-10 22:38:42','2015-03-10 22:38:42',1,30004510,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(6,'2015-03-10 22:38:42','2015-10-11 16:46:32',1,30003693,0,0,0,2,1,1,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,1,0),(7,'2015-03-10 22:38:42','2015-10-11 16:46:32',1,30001287,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,0,0,0,0,0,0,0,0,0),(8,'2015-03-10 22:38:42','2015-03-10 22:38:42',1,30000480,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(9,'2015-03-10 22:38:42','2015-10-11 16:46:32',1,30002454,0,0,0,0,1,0,1,0,0,0,0,0,5,0,0,0,0,0,0,0,0,0,0,0),(10,'2015-03-10 22:38:42','2015-10-11 16:46:32',1,30004756,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,2,0,1,1,0),(11,'2015-03-10 22:38:42','2015-03-10 22:38:42',1,30004674,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(12,'2015-03-10 22:38:42','2015-03-10 22:38:42',1,30001150,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(13,'2015-03-10 22:38:42','2015-03-10 22:38:42',1,30004930,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(14,'2015-03-10 22:38:42','2015-10-11 16:46:32',1,30001322,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0),(15,'2015-03-10 22:38:42','2015-03-10 22:38:42',1,30003114,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(16,'2015-03-10 22:38:42','2015-03-10 22:38:42',1,30003198,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(17,'2015-03-10 22:38:42','2015-03-10 22:38:42',1,30000222,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(18,'2015-03-10 22:38:42','2015-03-10 22:38:42',1,30001065,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(19,'2015-03-10 22:38:42','2015-10-11 16:46:32',1,30005191,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0),(20,'2015-03-10 22:38:42','2015-03-10 22:38:42',1,30003615,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(21,'2015-03-10 22:38:42','2015-10-11 16:46:32',1,30000799,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,0,0,0,0,0,0),(22,'2015-03-10 22:38:42','2015-03-10 22:38:42',1,30000440,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(23,'2015-03-10 22:38:42','2015-10-11 16:46:32',1,30003947,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(24,'2015-03-10 22:38:42','2015-03-10 22:38:42',1,30004509,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(25,'2015-03-10 22:38:42','2015-03-10 22:38:42',1,30001295,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(26,'2015-03-10 22:38:42','2015-10-11 16:46:32',1,30000857,0,0,0,0,0,0,0,0,0,0,0,0,0,3,2,0,0,0,0,0,0,0,0,0),(27,'2015-03-10 22:38:42','2015-03-10 22:38:42',1,30004656,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(28,'2015-03-10 22:38:42','2015-10-11 16:46:32',1,30004596,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,1,0,0,0),(29,'2015-03-10 22:38:42','2015-10-11 16:46:32',1,30004068,0,1,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0),(30,'2015-03-10 22:38:42','2015-10-11 16:46:32',1,30005186,0,0,0,0,0,0,5,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(31,'2015-03-10 22:38:42','2015-03-10 22:38:42',1,30002609,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(32,'2015-03-10 22:38:42','2015-03-10 22:38:42',1,30003149,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(33,'2015-03-10 22:38:42','2015-03-10 22:38:42',1,30000707,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(34,'2015-03-10 22:38:42','2015-03-10 22:38:42',1,30000822,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(35,'2015-03-10 22:38:42','2015-10-11 16:46:32',1,30002460,0,0,0,0,0,0,0,0,1,5,0,0,1,0,0,0,0,0,0,0,0,1,0,0),(36,'2015-03-10 22:38:42','2015-03-10 22:38:42',1,30000623,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(37,'2015-03-10 22:38:42','2015-10-11 16:46:32',1,30000216,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(38,'2015-03-10 22:38:42','2015-10-11 16:46:32',1,30001120,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0),(39,'2015-03-10 22:38:42','2015-10-11 16:46:32',1,30000596,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0),(40,'2015-03-10 22:38:42','2015-10-11 16:46:32',1,30002168,2,0,1,0,0,0,0,0,0,0,1,2,0,0,2,2,0,0,1,1,0,2,1,0),(41,'2015-03-10 22:38:42','2015-10-11 16:46:32',1,30004954,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0),(42,'2015-03-10 22:38:42','2015-10-11 16:46:32',1,30003743,0,0,0,0,0,0,0,0,0,9,0,0,0,1,0,0,0,0,1,0,1,2,0,0),(43,'2015-03-10 22:38:42','2015-03-10 22:38:42',1,30000351,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(44,'2015-03-10 22:38:42','2015-10-11 16:46:32',1,30004947,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0),(45,'2015-03-10 22:38:42','2015-10-11 16:46:32',1,30003782,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0),(46,'2015-03-10 22:38:42','2015-03-10 22:38:42',1,30004214,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(47,'2015-03-10 22:38:42','2015-10-11 16:46:32',1,30004549,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(48,'2015-03-10 22:38:42','2015-03-10 22:38:42',1,30004917,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(49,'2015-03-10 22:38:42','2015-10-11 16:46:32',1,30003296,0,0,0,0,0,0,0,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(50,'2015-03-10 22:38:42','2015-03-10 22:38:42',1,30005102,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(51,'2015-03-10 22:38:42','2015-10-11 16:46:32',1,30001889,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,1,0,0,0,1),(52,'2015-03-10 22:38:42','2015-10-11 16:46:32',1,30001856,0,0,0,0,0,0,1,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0),(53,'2015-03-10 22:38:42','2015-03-10 22:38:42',1,30000522,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(54,'2015-03-10 22:38:42','2015-03-10 22:38:42',1,30001643,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(55,'2015-03-10 22:38:42','2015-10-11 16:46:32',1,30001551,0,0,0,0,0,0,0,0,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,0),(56,'2015-03-10 22:38:42','2015-10-11 16:46:32',1,30000267,0,0,0,0,0,0,0,0,0,0,2,2,0,0,0,0,0,0,0,0,0,0,0,0),(57,'2015-03-10 22:38:42','2015-10-11 16:46:32',1,30003330,0,0,0,1,0,0,0,0,0,0,0,0,0,9,0,1,1,0,0,0,0,0,0,1),(58,'2015-03-10 22:38:42','2015-10-11 16:46:32',1,30000645,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0),(59,'2015-03-10 22:38:42','2015-03-10 22:38:42',1,30003647,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(60,'2015-03-10 22:38:42','2015-03-10 22:38:42',1,30002308,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(61,'2015-03-10 22:38:42','2015-03-10 22:38:42',1,30001521,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(62,'2015-03-10 22:38:42','2015-10-11 16:46:32',1,30000262,0,0,0,0,0,0,0,0,0,0,0,0,0,3,0,0,0,1,0,0,0,0,0,0),(63,'2015-03-10 22:38:42','2015-10-11 16:46:32',1,30004720,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0),(64,'2015-03-10 22:38:42','2015-03-10 22:38:42',1,30000929,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(65,'2015-03-10 22:38:42','2015-03-10 22:38:42',1,30004950,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(66,'2015-03-10 22:38:42','2015-03-10 22:38:42',1,30004483,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(67,'2015-03-10 22:38:42','2015-10-11 16:46:32',1,30002899,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0),(68,'2015-03-10 22:38:42','2015-10-11 16:46:32',1,30004874,0,0,1,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(69,'2015-03-10 22:38:42','2015-03-10 22:38:42',1,30004322,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(70,'2015-03-10 22:38:42','2015-03-10 22:38:42',1,30000966,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(71,'2015-03-10 22:38:42','2015-03-10 22:38:42',1,30003251,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(72,'2015-03-10 22:38:42','2015-10-11 16:46:32',1,30000290,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2),(73,'2015-03-10 22:38:42','2015-03-10 22:38:42',1,30000940,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(74,'2015-03-10 22:38:42','2015-03-10 22:38:42',1,30000566,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(75,'2015-03-10 22:38:42','2015-03-10 22:38:42',1,30001458,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(76,'2015-03-10 22:38:42','2015-03-10 22:38:42',1,30002846,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(77,'2015-03-10 22:38:42','2015-10-11 16:46:32',1,30001009,2,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(78,'2015-03-10 22:38:42','2015-03-10 22:38:42',1,30004695,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(79,'2015-03-10 22:38:42','2015-10-11 16:46:32',1,30003349,0,0,0,0,0,0,0,1,0,1,4,1,1,1,0,0,0,0,1,1,0,0,2,1),(80,'2015-03-10 22:38:42','2015-10-11 16:46:32',1,30001961,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0),(81,'2015-03-10 22:38:42','2015-10-11 16:46:32',1,30003957,0,0,2,0,1,1,1,0,0,0,0,0,0,0,1,1,0,0,2,1,1,0,0,0),(82,'2015-03-10 22:38:42','2015-03-10 22:38:42',1,30000543,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(83,'2015-03-10 22:38:42','2015-03-10 22:38:42',1,30000781,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(84,'2015-03-10 22:38:42','2015-03-10 22:38:42',1,30002934,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(85,'2015-03-10 22:38:42','2015-10-11 16:46:32',1,30004843,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(86,'2015-03-10 22:38:42','2015-03-10 22:38:42',1,30005157,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(87,'2015-03-10 22:38:42','2015-10-11 16:46:32',1,30001837,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0),(88,'2015-03-10 22:38:42','2015-03-10 22:38:42',1,30001599,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(89,'2015-03-10 22:38:42','2015-10-11 16:46:32',1,30004677,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,2,0,0,0,0,0,0,0),(90,'2015-03-10 22:38:42','2015-03-10 22:38:42',1,30001757,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(91,'2015-03-10 22:38:42','2015-10-11 16:46:32',1,30003766,0,1,4,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(92,'2015-03-10 22:38:42','2015-03-10 22:38:42',1,30004801,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(93,'2015-03-10 22:38:42','2015-10-11 16:46:32',1,30004037,0,0,0,0,0,0,3,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0),(94,'2015-03-10 22:38:42','2015-10-11 16:46:32',1,30004650,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,1,0,0,0,1,0),(95,'2015-03-10 22:38:42','2015-10-11 16:46:32',1,30000573,3,0,4,0,1,1,2,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(96,'2015-03-10 22:38:42','2015-03-10 22:38:42',1,30000734,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(97,'2015-03-10 22:38:42','2015-10-11 16:46:32',1,30002581,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0),(98,'2015-03-10 22:38:42','2015-10-11 16:46:32',1,30003258,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1),(99,'2015-03-10 22:38:42','2015-10-11 16:46:32',1,30001109,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0),(100,'2015-03-10 22:38:42','2015-10-11 16:46:32',1,30000301,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,1),(101,'2015-03-10 22:38:42','2015-03-10 22:38:42',1,30000463,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(102,'2015-03-10 22:38:42','2015-03-10 22:38:42',1,30003215,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(103,'2015-03-10 22:38:42','2015-03-10 22:38:42',1,30002823,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(104,'2015-03-10 22:38:42','2015-10-11 16:46:32',1,30004940,1,0,3,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1),(105,'2015-03-10 22:38:42','2015-03-10 22:38:42',1,30003297,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(106,'2015-03-10 22:38:42','2015-03-10 22:38:42',1,30004048,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(107,'2015-03-10 22:38:42','2015-03-10 22:38:42',1,30000474,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(108,'2015-03-10 22:38:42','2015-10-11 16:46:32',1,30004738,0,0,1,0,0,0,0,2,0,9,8,1,0,11,1,0,2,1,1,3,5,5,0,4),(109,'2015-03-10 22:38:42','2015-10-11 16:46:32',1,30001270,3,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(110,'2015-03-10 22:38:42','2015-03-10 22:38:42',1,30003336,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(111,'2015-03-10 22:38:42','2015-03-10 22:38:42',1,30003147,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(112,'2015-03-10 22:38:42','2015-03-10 22:38:42',1,30001975,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(113,'2015-03-10 22:38:42','2015-03-10 22:38:42',1,30001066,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(114,'2015-03-10 22:38:42','2015-10-11 16:46:32',1,30004639,1,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(115,'2015-03-10 22:38:42','2015-03-10 22:38:42',1,30004611,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(116,'2015-03-10 22:38:42','2015-10-11 16:46:32',1,30000861,4,0,0,0,0,0,0,0,1,0,12,17,1,1,9,1,4,3,0,2,2,0,0,19),(117,'2015-03-10 22:38:42','2015-03-10 22:38:42',1,30000425,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(118,'2015-03-10 22:38:42','2015-03-10 22:38:42',1,30000931,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(119,'2015-03-10 22:38:42','2015-03-10 22:38:42',1,30004849,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(120,'2015-03-10 22:38:42','2015-10-11 16:46:32',1,30003122,0,0,0,0,0,0,0,0,0,0,0,0,0,2,0,0,0,1,1,0,0,0,0,0),(121,'2015-03-10 22:38:42','2015-10-11 16:46:32',1,30003768,0,0,0,0,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(122,'2015-03-10 22:38:42','2015-03-10 22:38:42',1,30000342,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(123,'2015-03-10 22:38:42','2015-10-11 16:46:32',1,30003785,0,0,0,0,0,0,0,0,0,0,0,0,1,0,2,2,0,0,0,0,1,0,0,0),(124,'2015-03-10 22:38:42','2015-03-10 22:38:42',1,30005117,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(125,'2015-03-10 22:38:42','2015-03-10 22:38:42',1,30002317,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(126,'2015-03-10 22:38:42','2015-03-10 22:38:42',1,30004728,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(127,'2015-03-10 22:38:42','2015-03-10 22:38:42',1,30003624,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(128,'2015-03-10 22:38:42','2015-10-11 16:46:32',1,30000963,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,0,0,0,0,0,0,0),(129,'2015-03-10 22:38:42','2015-03-10 22:38:42',1,30001524,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(130,'2015-03-10 22:38:42','2015-03-10 22:38:42',1,30004688,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(131,'2015-03-10 22:38:42','2015-10-11 16:46:32',1,30004710,0,0,0,0,0,0,0,0,1,4,1,0,0,4,0,1,1,1,1,0,0,0,4,1),(132,'2015-03-10 22:38:42','2015-10-11 16:46:32',1,30004759,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(133,'2015-03-10 22:38:42','2015-03-10 22:38:42',1,30004964,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(134,'2015-03-10 22:38:42','2015-03-10 22:38:42',1,30003211,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(135,'2015-03-10 22:38:42','2015-10-11 16:46:32',1,30004367,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(136,'2015-03-10 22:38:42','2015-10-11 16:46:32',1,30002332,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0),(137,'2015-03-10 22:38:42','2015-03-10 22:38:42',1,30004226,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(138,'2015-03-10 22:38:42','2015-10-11 16:46:32',1,30001880,2,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(139,'2015-03-10 22:38:42','2015-03-10 22:38:42',1,30001952,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(140,'2015-03-10 22:38:42','2015-03-10 22:38:42',1,30002329,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(141,'2015-03-10 22:38:42','2015-03-10 22:38:42',1,30000395,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(142,'2015-03-10 22:38:42','2015-03-10 22:38:42',1,30001540,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(143,'2015-03-10 22:38:42','2015-10-11 16:46:32',1,30004920,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,0,0,0,0),(144,'2015-03-10 22:38:42','2015-10-11 16:46:32',1,30004393,0,0,0,0,0,1,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(145,'2015-03-10 22:38:42','2015-10-11 16:46:32',1,30000445,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,0,0,0,0,0,0),(146,'2015-03-10 22:38:42','2015-03-10 22:38:42',1,30000962,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(147,'2015-03-10 22:38:42','2015-03-10 22:38:42',1,30004501,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(148,'2015-03-10 22:38:42','2015-10-11 16:46:32',1,30000579,0,0,0,1,1,0,0,1,1,0,0,0,0,0,0,3,3,0,31,1,0,6,1,0),(149,'2015-03-10 22:38:42','2015-10-11 16:46:32',1,30003952,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0),(150,'2015-03-10 22:38:42','2015-10-11 16:46:32',1,30004189,0,0,0,0,0,0,0,0,0,0,2,0,0,2,0,0,0,1,0,0,0,0,0,1),(151,'2015-03-10 22:38:42','2015-10-11 16:46:32',1,30000294,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0),(152,'2015-03-10 22:38:42','2015-03-10 22:38:42',1,30001081,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(153,'2015-03-10 22:38:42','2015-03-10 22:38:42',1,30003233,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(154,'2015-03-10 22:38:42','2015-10-11 16:46:32',1,30001170,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0),(155,'2015-03-10 22:38:42','2015-03-10 22:38:42',1,30002365,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(156,'2015-03-10 22:38:42','2015-03-10 22:38:42',1,30000336,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(157,'2015-03-10 22:38:42','2015-03-10 22:38:42',1,30003617,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(158,'2015-03-10 22:38:42','2015-10-11 16:46:32',1,30000720,0,0,0,0,0,0,0,1,0,0,0,0,1,3,0,2,3,0,0,0,0,10,0,0),(159,'2015-03-10 22:38:42','2015-03-10 22:38:42',1,30000378,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(160,'2015-03-10 22:38:42','2015-10-11 16:46:32',1,30002866,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0),(161,'2015-03-10 22:38:42','2015-03-10 22:38:42',1,30001452,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(162,'2015-03-10 22:38:42','2015-03-10 22:38:42',1,30000766,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(163,'2015-03-10 22:38:42','2015-03-10 22:38:42',1,30000424,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(164,'2015-03-10 22:38:42','2015-10-11 16:46:32',1,30000680,0,1,5,0,2,1,1,0,0,0,0,0,0,1,3,3,0,0,0,2,13,0,0,0),(165,'2015-03-10 22:38:42','2015-03-10 22:38:42',1,30000286,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(166,'2015-03-10 22:38:42','2015-10-11 16:46:32',1,30000288,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(167,'2015-03-10 22:38:42','2015-10-11 16:46:32',1,30000836,5,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(168,'2015-03-10 22:38:42','2015-10-11 16:46:32',1,30000611,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1),(169,'2015-03-10 22:38:42','2015-03-10 22:38:42',1,30003668,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(170,'2015-03-10 22:38:42','2015-03-10 22:38:42',1,30000349,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(171,'2015-03-10 22:38:42','2015-10-11 16:46:32',1,30002007,0,0,0,0,0,2,0,0,0,0,0,0,0,3,0,0,0,0,0,0,0,0,0,0),(172,'2015-03-10 22:38:42','2015-10-11 16:46:32',1,30001786,0,0,0,0,0,0,0,0,0,0,0,0,0,0,4,4,0,0,0,0,0,1,0,0),(173,'2015-03-10 22:38:42','2015-03-10 22:38:42',1,30004184,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(174,'2015-03-10 22:38:42','2015-03-10 22:38:42',1,30004454,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(175,'2015-03-10 22:38:42','2015-10-11 16:46:32',1,30002903,0,0,0,1,0,0,1,0,0,0,0,0,0,0,1,1,0,0,0,0,0,0,0,0),(176,'2015-03-10 22:38:42','2015-03-10 22:38:42',1,30000684,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(177,'2015-03-10 22:38:42','2015-03-10 22:38:42',1,30001598,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(178,'2015-03-10 22:38:42','2015-03-10 22:38:42',1,30000756,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(179,'2015-03-10 22:38:42','2015-03-10 22:38:42',1,30004492,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(180,'2015-03-10 22:38:42','2015-10-11 16:46:32',1,30003754,0,0,0,0,0,1,0,0,0,0,1,1,0,3,0,0,0,0,0,0,0,0,0,0),(181,'2015-03-10 22:38:42','2015-10-11 16:46:32',1,30001864,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,1),(182,'2015-03-10 22:38:42','2015-03-10 22:38:42',1,30003188,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(183,'2015-03-10 22:38:42','2015-10-11 16:46:32',1,30000473,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,7,4,0,0,0),(184,'2015-03-10 22:38:42','2015-03-10 22:38:42',1,30005139,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(185,'2015-03-10 22:38:42','2015-03-10 22:38:42',1,30003238,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(186,'2015-03-10 22:38:42','2015-10-11 16:46:32',1,30004734,0,0,0,0,0,0,0,1,0,2,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(187,'2015-03-10 22:38:42','2015-03-10 22:38:42',1,30004467,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(188,'2015-03-10 22:38:42','2015-10-11 16:46:32',1,30001784,0,0,0,0,0,0,0,0,0,0,0,0,1,0,1,1,1,0,0,0,1,0,0,1),(189,'2015-03-10 22:38:42','2015-10-11 16:46:32',1,30001258,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,1,0,0,0,1,1,0,0),(190,'2015-03-10 22:38:42','2015-03-10 22:38:42',1,30000832,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(191,'2015-03-10 22:38:42','2015-10-11 16:46:32',1,30000996,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1),(192,'2015-03-10 22:38:42','2015-03-10 22:38:42',1,30004071,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(193,'2015-03-10 22:38:42','2015-10-11 16:46:32',1,30000714,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(194,'2015-03-10 22:38:42','2015-10-11 16:46:32',1,30003171,0,1,0,0,0,0,0,1,0,0,0,0,0,0,1,1,0,0,0,0,0,0,0,0),(195,'2015-03-10 22:38:42','2015-03-10 22:38:42',1,30005182,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(196,'2015-03-10 22:38:42','2015-03-10 22:38:42',1,30001949,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(197,'2015-03-10 22:38:42','2015-10-11 16:46:32',1,30002342,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(198,'2015-03-10 22:38:42','2015-03-10 22:38:42',1,30004394,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(199,'2015-03-10 22:38:42','2015-10-11 16:46:32',1,30000898,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(200,'2015-03-10 22:38:42','2015-10-11 16:46:32',1,30001965,0,3,1,0,0,0,0,1,0,0,4,4,0,0,1,1,1,0,0,0,0,0,0,0),(201,'2015-03-10 22:38:42','2015-10-11 16:46:32',1,30000292,0,1,0,0,0,0,0,0,0,6,2,0,2,0,2,0,0,1,0,0,0,0,0,0),(202,'2015-03-10 22:38:42','2015-10-11 16:46:32',1,30002424,0,0,0,0,0,0,0,0,0,3,0,0,0,0,0,0,0,1,0,0,0,2,0,0),(203,'2015-03-10 22:38:42','2015-03-10 22:38:42',1,30000403,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(204,'2015-03-10 22:38:42','2015-03-10 22:38:42',1,30001746,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(205,'2015-03-10 22:38:42','2015-03-10 22:38:42',1,30001136,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(206,'2015-03-10 22:38:42','2015-03-10 22:38:42',1,30002283,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(207,'2015-03-10 22:38:42','2015-03-10 22:38:42',1,30003370,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(208,'2015-03-10 22:38:42','2015-10-11 16:46:32',1,30002455,0,0,0,0,0,1,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(209,'2015-03-10 22:38:42','2015-10-11 16:46:32',1,30004693,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(210,'2015-03-10 22:38:42','2015-03-10 22:38:42',1,30001352,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(211,'2015-03-10 22:38:42','2015-10-11 16:46:32',1,30001774,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0),(212,'2015-03-10 22:38:42','2015-10-11 16:46:32',1,30001860,1,0,0,0,0,0,0,1,0,0,0,0,0,0,1,0,2,0,0,0,0,5,0,0),(213,'2015-03-10 22:38:42','2015-03-10 22:38:42',1,30000881,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(214,'2015-03-10 22:38:42','2015-10-11 16:46:32',1,30001169,2,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(215,'2015-03-10 22:38:42','2015-03-10 22:38:42',1,30004531,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(216,'2015-03-10 22:38:42','2015-03-10 22:38:42',1,30000757,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(217,'2015-03-10 22:38:42','2015-03-10 22:38:42',1,30001510,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(218,'2015-03-10 22:38:42','2015-10-11 16:46:32',1,30002175,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(219,'2015-03-10 22:38:42','2015-10-11 16:46:32',1,30002909,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0),(220,'2015-03-10 22:38:42','2015-10-11 16:46:32',1,30003332,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2),(221,'2015-03-10 22:38:42','2015-10-11 16:46:32',1,30004830,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(222,'2015-03-10 22:38:42','2015-03-10 22:38:42',1,30001319,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(223,'2015-03-10 22:38:42','2015-03-10 22:38:42',1,30003304,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(224,'2015-03-10 22:38:42','2015-10-11 16:46:32',1,30002905,0,0,0,14,1,3,3,1,0,0,0,1,0,1,1,1,0,0,0,1,1,1,1,0),(225,'2015-03-10 22:38:42','2015-03-10 22:38:42',1,30003182,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(226,'2015-03-10 22:38:42','2015-03-10 22:38:42',1,30001615,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(227,'2015-03-10 22:38:42','2015-03-10 22:38:42',1,30001333,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(228,'2015-03-10 22:38:42','2015-03-10 22:38:42',1,30004447,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(229,'2015-03-10 22:38:42','2015-03-10 22:38:42',1,30001770,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(230,'2015-03-10 22:38:42','2015-10-11 16:46:32',1,30003774,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0),(231,'2015-03-10 22:38:42','2015-03-10 22:38:42',1,30005096,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(232,'2015-03-10 22:38:42','2015-10-11 16:46:32',1,30001799,0,0,0,0,0,0,0,0,0,1,0,0,0,5,0,0,1,0,0,0,0,0,0,0),(233,'2015-03-10 22:38:42','2015-10-11 16:46:32',1,30003275,0,0,0,0,0,0,1,0,1,0,0,0,3,0,0,0,0,0,0,0,2,2,0,0),(234,'2015-03-10 22:38:42','2015-10-11 16:46:32',1,30000909,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(235,'2015-03-10 22:38:42','2015-10-11 16:46:32',1,30001103,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(236,'2015-03-10 22:38:42','2015-03-10 22:38:42',1,30001116,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(237,'2015-03-10 22:38:42','2015-10-11 16:46:32',1,30000823,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,1,0),(238,'2015-03-10 22:38:42','2015-03-10 22:38:42',1,30000452,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(239,'2015-03-10 22:38:42','2015-03-10 22:38:42',1,30004466,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(240,'2015-03-10 22:38:42','2015-03-10 22:38:42',1,30001642,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(241,'2015-03-10 22:38:42','2015-10-11 16:46:32',1,30004764,0,0,1,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,1,0,0,3,0,0),(242,'2015-03-10 22:38:42','2015-10-11 16:46:32',1,30004019,0,0,6,0,0,1,2,4,2,0,0,0,1,1,0,1,1,1,2,0,0,0,0,1),(243,'2015-03-10 22:38:42','2015-03-10 22:38:42',1,30000341,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(244,'2015-03-10 22:38:42','2015-03-10 22:38:42',1,30003356,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(245,'2015-03-10 22:38:42','2015-03-10 22:38:42',1,30000343,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(246,'2015-03-10 22:38:42','2015-10-11 16:46:32',1,30004004,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,1,0,0),(247,'2015-03-10 22:38:42','2015-03-10 22:38:42',1,30003231,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(248,'2015-03-10 22:38:42','2015-10-11 16:46:32',1,30000448,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,0,0,0,1,0,3,1,0),(249,'2015-03-10 22:38:42','2015-03-10 22:38:42',1,30004358,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(250,'2015-03-10 22:38:42','2015-10-11 16:46:32',1,30001199,0,0,0,0,0,0,0,0,0,10,6,0,0,4,8,7,2,0,0,4,3,1,10,0),(251,'2015-03-10 22:38:42','2015-10-11 16:46:32',1,30001820,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,0,0,0,0,0,0,0),(252,'2015-03-10 22:38:42','2015-03-10 22:38:42',1,30003675,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(253,'2015-03-10 22:38:42','2015-10-11 16:46:32',1,30001212,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(254,'2015-03-10 22:38:42','2015-03-10 22:38:42',1,30004336,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(255,'2015-03-10 22:38:42','2015-03-10 22:38:42',1,30002582,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(256,'2015-03-10 22:38:42','2015-03-10 22:38:42',1,30001500,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(257,'2015-03-10 22:38:42','2015-10-11 16:46:32',1,30004405,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(258,'2015-03-10 22:38:42','2015-10-11 16:46:32',1,30003632,0,1,0,0,0,0,2,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,2,0),(259,'2015-03-10 22:38:42','2015-10-11 16:46:32',1,30000534,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0),(260,'2015-03-10 22:38:42','2015-10-11 16:46:32',1,30003329,0,0,0,0,0,0,0,0,1,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0),(261,'2015-03-10 22:38:42','2015-10-11 16:46:32',1,30004387,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(262,'2015-03-10 22:38:42','2015-10-11 16:46:32',1,30004722,1,2,0,0,0,2,0,0,1,1,0,0,1,0,0,2,2,0,0,0,0,1,0,0),(263,'2015-03-10 22:38:42','2015-10-11 16:46:32',1,30004786,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0),(264,'2015-03-10 22:38:42','2015-10-11 16:46:32',1,30001841,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,0,0,0,0,0,0,0),(265,'2015-03-10 22:38:42','2015-03-10 22:38:42',1,30004668,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(266,'2015-03-10 22:38:42','2015-10-11 16:46:32',1,30003642,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0),(267,'2015-03-10 22:38:42','2015-10-11 16:46:32',1,30004517,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,1),(268,'2015-03-10 22:38:42','2015-03-10 22:38:42',1,30002919,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(269,'2015-03-10 22:38:42','2015-10-11 16:46:32',1,30004928,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(270,'2015-03-10 22:38:42','2015-10-11 16:46:32',1,30003312,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0),(271,'2015-03-10 22:38:42','2015-10-11 16:46:32',1,30001157,1,2,0,0,0,0,0,0,0,4,0,0,3,0,0,1,2,2,0,0,2,3,0,2),(272,'2015-03-10 22:38:42','2015-03-10 22:38:42',1,30001947,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(273,'2015-03-10 22:38:42','2015-10-11 16:46:32',1,30001868,0,0,0,0,0,0,0,0,0,0,2,1,0,0,0,0,0,0,0,0,0,0,0,102),(274,'2015-03-10 22:38:42','2015-03-10 22:38:42',1,30000535,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(275,'2015-03-10 22:38:42','2015-03-10 22:38:42',1,30004632,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(276,'2015-03-10 22:38:42','2015-03-10 22:38:42',1,30000829,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(277,'2015-03-10 22:38:42','2015-03-10 22:38:42',1,30002444,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(278,'2015-03-10 22:38:42','2015-10-11 16:46:32',1,30004766,9,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(279,'2015-03-10 22:38:42','2015-10-11 16:46:32',1,30001281,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0),(280,'2015-03-10 22:38:42','2015-10-11 16:46:32',1,30000798,0,0,6,1,0,0,0,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(281,'2015-03-10 22:38:42','2015-03-10 22:38:42',1,30004000,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(282,'2015-03-10 22:38:42','2015-03-10 22:38:42',1,30000428,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(283,'2015-03-10 22:38:42','2015-10-11 16:46:32',1,30003786,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(284,'2015-03-10 22:38:42','2015-03-10 22:38:42',1,30004036,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(285,'2015-03-10 22:38:42','2015-03-10 22:38:42',1,30003609,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(286,'2015-03-10 22:38:42','2015-03-10 22:38:42',1,30001474,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(287,'2015-03-10 22:38:42','2015-03-10 22:38:42',1,30001553,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(288,'2015-03-10 22:38:42','2015-10-11 16:46:32',1,30004390,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,1,0,1,1,1,0,0,0),(289,'2015-03-10 22:38:42','2015-03-10 22:38:42',1,30004900,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(290,'2015-03-10 22:38:42','2015-03-10 22:38:42',1,30002302,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(291,'2015-03-10 22:38:42','2015-10-11 16:46:32',1,30000876,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,0,0,0,0,0,0,1),(292,'2015-03-10 22:38:42','2015-10-11 16:46:32',1,30001200,0,0,0,0,0,1,0,0,0,0,0,0,0,2,0,1,1,0,1,1,2,1,4,0),(293,'2015-03-10 22:38:42','2015-10-11 16:46:32',1,30003748,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,1,0,1,1,5,0,0,0),(294,'2015-03-10 22:38:42','2015-03-10 22:38:42',1,30002325,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(295,'2015-03-10 22:38:42','2015-03-10 22:38:42',1,30004520,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(296,'2015-03-10 22:38:42','2015-10-11 16:46:32',1,30000228,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(297,'2015-03-10 22:38:42','2015-03-10 22:38:42',1,30002357,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(298,'2015-03-10 22:38:42','2015-10-11 16:46:32',1,30002937,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0),(299,'2015-03-10 22:38:42','2015-10-11 16:46:32',1,30003781,0,0,0,0,0,0,0,0,0,3,0,0,0,2,8,1,0,3,0,2,1,0,0,0),(300,'2015-03-10 22:38:42','2015-10-11 16:46:32',1,30004403,0,0,0,0,0,0,9,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(301,'2015-03-10 22:38:42','2015-10-11 16:46:32',1,30003322,1,0,0,1,0,0,0,0,0,0,1,0,0,0,1,0,0,0,0,0,0,0,0,0),(302,'2015-03-10 22:38:42','2015-10-11 16:46:32',1,30004419,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(303,'2015-03-10 22:38:42','2015-03-10 22:38:42',1,30004808,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(304,'2015-03-10 22:38:42','2015-10-11 16:46:32',1,30005166,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,0,0),(305,'2015-03-10 22:38:42','2015-10-11 16:46:32',1,30003324,0,0,0,1,1,0,0,0,0,0,1,0,0,0,0,0,0,0,3,4,4,0,0,0),(306,'2015-03-10 22:38:42','2015-10-11 16:46:32',1,30002917,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0),(307,'2015-03-10 22:38:42','2015-03-10 22:38:42',1,30004951,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(308,'2015-03-10 22:38:42','2015-10-11 16:46:32',1,30004682,0,1,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,0,0,1,1,0,0,0),(309,'2015-03-10 22:38:42','2015-03-10 22:38:42',1,30000590,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(310,'2015-03-10 22:38:42','2015-03-10 22:38:42',1,30004868,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(311,'2015-03-10 22:38:42','2015-10-11 16:46:32',1,30002921,0,0,3,3,0,3,0,1,5,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0),(312,'2015-03-10 22:38:42','2015-03-10 22:38:42',1,30000733,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(313,'2015-03-10 22:38:42','2015-03-10 22:38:42',1,30002486,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(314,'2015-03-10 22:38:42','2015-10-11 16:46:32',1,30002938,0,0,0,17,0,0,0,2,1,3,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(315,'2015-03-10 22:38:42','2015-03-10 22:38:42',1,30000782,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(316,'2015-03-10 22:38:42','2015-03-10 22:38:42',1,30002449,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(317,'2015-03-10 22:38:42','2015-10-11 16:46:32',1,30002011,1,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(318,'2015-03-10 22:38:42','2015-03-10 22:38:42',1,30003191,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(319,'2015-03-10 22:38:42','2015-10-11 16:46:32',1,30004555,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,4,0,0,2,0,2,0),(320,'2015-03-10 22:38:42','2015-03-10 22:38:42',1,30004628,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(321,'2015-03-10 22:38:42','2015-10-11 16:46:32',1,30001260,0,1,0,0,0,0,1,0,0,0,0,5,1,1,0,0,0,4,0,0,9,0,1,2),(322,'2015-03-10 22:38:42','2015-03-10 22:38:42',1,30005149,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(323,'2015-03-10 22:38:42','2015-03-10 22:38:42',1,30004014,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(324,'2015-03-10 22:38:42','2015-10-11 16:46:32',1,30000730,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0),(325,'2015-03-10 22:38:42','2015-03-10 22:38:42',1,30004317,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(326,'2015-03-10 22:38:42','2015-03-10 22:38:42',1,30001318,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(327,'2015-03-10 22:38:42','2015-10-11 16:46:32',1,30002015,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0),(328,'2015-03-10 22:38:42','2015-10-11 16:46:32',1,30004360,0,0,0,1,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(329,'2015-03-10 22:38:42','2015-10-11 16:46:32',1,30000718,6,1,4,0,2,0,0,4,0,13,0,0,0,0,23,17,5,0,2,29,12,17,5,2),(330,'2015-03-10 22:38:42','2015-10-11 16:46:32',1,30002441,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,2,0,0,0,0,0),(331,'2015-03-10 22:38:42','2015-03-10 22:38:42',1,30000576,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(332,'2015-03-10 22:38:42','2015-10-11 16:46:32',1,30004553,0,0,1,0,0,0,0,0,0,6,0,1,0,0,0,0,0,0,19,3,3,0,0,0),(333,'2015-03-10 22:38:42','2015-03-10 22:38:42',1,30002144,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(334,'2015-03-10 22:38:42','2015-03-10 22:38:42',1,30004007,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(335,'2015-03-10 22:38:42','2015-03-10 22:38:42',1,30000240,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(336,'2015-03-10 22:38:42','2015-03-10 22:38:42',1,30000431,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(337,'2015-03-10 22:38:42','2015-10-11 16:46:32',1,30004828,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0),(338,'2015-03-10 22:38:42','2015-03-10 22:38:42',1,30003366,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(339,'2015-03-10 22:38:42','2015-03-10 22:38:42',1,30005121,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(340,'2015-03-10 22:38:42','2015-03-10 22:38:42',1,30002613,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(341,'2015-03-10 22:38:42','2015-03-10 22:38:42',1,30000582,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(342,'2015-03-10 22:38:42','2015-10-11 16:46:32',1,30003105,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,6,0,0,0),(343,'2015-03-10 22:38:42','2015-03-10 22:38:42',1,30004811,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(344,'2015-03-10 22:38:42','2015-03-10 22:38:42',1,30004165,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(345,'2015-03-10 22:38:42','2015-10-11 16:46:32',1,30002344,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0),(346,'2015-03-10 22:38:42','2015-10-11 16:46:32',1,30001867,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0),(347,'2015-03-10 22:38:42','2015-10-11 16:46:32',1,30001894,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(348,'2015-03-10 22:38:42','2015-10-11 16:46:32',1,30002864,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(349,'2015-03-10 22:38:42','2015-03-10 22:38:42',1,30004224,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(350,'2015-03-10 22:38:42','2015-03-10 22:38:42',1,30001349,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(351,'2015-03-10 22:38:42','2015-03-10 22:38:42',1,30002350,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(352,'2015-03-10 22:38:42','2015-03-10 22:38:42',1,30001340,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(353,'2015-03-10 22:38:42','2015-10-11 16:46:32',1,30002941,0,0,0,1,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(354,'2015-03-10 22:38:42','2015-03-10 22:38:42',1,30002616,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(355,'2015-03-10 22:38:42','2015-10-11 16:46:32',1,30003131,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0),(356,'2015-03-10 22:38:42','2015-10-11 16:46:32',1,30004878,4,1,0,0,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,4),(357,'2015-03-10 22:38:42','2015-03-10 22:38:42',1,30000255,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(358,'2015-03-10 22:38:42','2015-03-10 22:38:42',1,30004949,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(359,'2015-03-10 22:38:42','2015-10-11 16:46:32',1,30000251,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,1),(360,'2015-03-10 22:38:42','2015-10-11 16:46:32',1,30004009,2,0,0,0,0,0,1,0,0,0,0,0,0,1,0,0,2,0,0,0,0,0,0,0),(361,'2015-03-10 22:38:42','2015-10-11 16:46:32',1,30003708,0,0,0,0,0,0,0,0,16,0,2,4,0,2,0,0,5,0,4,2,2,0,0,0),(362,'2015-03-10 22:38:42','2015-03-10 22:38:42',1,30005165,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(363,'2015-03-10 22:38:42','2015-03-10 22:38:42',1,30004188,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(364,'2015-03-10 22:38:42','2015-10-11 16:46:32',1,30001882,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0),(365,'2015-03-10 22:38:42','2015-10-11 16:46:32',1,30004415,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(366,'2015-03-10 22:38:42','2015-10-11 16:46:32',1,30001815,0,0,0,0,0,0,0,0,0,0,1,1,0,0,1,1,0,0,0,0,0,0,0,0),(367,'2015-03-10 22:38:42','2015-10-11 16:46:32',1,30003706,0,0,0,0,0,0,0,0,0,2,1,0,0,0,3,3,0,1,0,4,1,0,1,2),(368,'2015-03-10 22:38:42','2015-10-11 16:46:32',1,30004504,0,1,0,1,0,1,1,0,3,1,1,2,0,1,2,0,3,3,0,1,0,1,0,1),(369,'2015-03-10 22:38:42','2015-03-10 22:38:42',1,30000376,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(370,'2015-03-10 22:38:42','2015-03-10 22:38:42',1,30000795,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(371,'2015-03-10 22:38:42','2015-03-10 22:38:42',1,30002469,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(372,'2015-03-10 22:38:42','2015-03-10 22:38:42',1,30001578,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(373,'2015-03-10 22:38:42','2015-03-10 22:38:42',1,30000749,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(374,'2015-03-10 22:38:42','2015-03-10 22:38:42',1,30004384,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(375,'2015-03-10 22:38:42','2015-03-10 22:38:42',1,30002154,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(376,'2015-03-10 22:38:42','2015-03-10 22:38:42',1,30000701,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(377,'2015-03-10 22:38:42','2015-03-10 22:38:42',1,30005159,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(378,'2015-03-10 22:38:42','2015-10-11 16:46:32',1,30000536,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1),(379,'2015-03-10 22:38:42','2015-03-10 22:38:42',1,30005154,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(380,'2015-03-10 22:38:42','2015-03-10 22:38:42',1,30000361,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(381,'2015-03-10 22:38:42','2015-10-11 16:46:32',1,30001858,1,0,0,0,0,0,0,1,0,1,1,0,0,0,2,2,3,4,2,0,3,5,1,1),(382,'2015-03-10 22:38:42','2015-03-10 22:38:42',1,30004216,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(383,'2015-03-10 22:38:42','2015-03-10 22:38:42',1,30000239,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(384,'2015-03-10 22:38:42','2015-03-10 22:38:42',1,30001785,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(385,'2015-03-10 22:38:42','2015-03-10 22:38:42',1,30001558,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(386,'2015-03-10 22:38:42','2015-03-10 22:38:42',1,30004661,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(387,'2015-03-10 22:38:42','2015-10-11 16:46:32',1,30001844,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0),(388,'2015-03-10 22:38:42','2015-03-10 22:38:42',1,30001869,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(389,'2015-03-10 22:38:42','2015-03-10 22:38:42',1,30004716,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(390,'2015-03-10 22:38:42','2015-10-11 16:46:32',1,30002495,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0),(391,'2015-03-10 22:38:42','2015-10-11 16:46:32',1,30003351,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,5,0),(392,'2015-03-10 22:38:42','2015-03-10 22:38:42',1,30000818,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(393,'2015-03-10 22:38:42','2015-03-10 22:38:42',1,30002297,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(394,'2015-03-10 22:38:42','2015-10-11 16:46:32',1,30004206,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0),(395,'2015-03-10 22:38:42','2015-03-10 22:38:42',1,30001201,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(396,'2015-03-10 22:38:42','2015-03-10 22:38:42',1,30000976,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(397,'2015-03-10 22:38:42','2015-03-10 22:38:42',1,30000776,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(398,'2015-03-10 22:38:42','2015-10-11 16:46:32',1,30002944,0,0,0,0,0,0,1,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(399,'2015-03-10 22:38:42','2015-03-10 22:38:42',1,30001251,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(400,'2015-03-10 22:38:42','2015-10-11 16:46:32',1,30000455,0,0,0,0,0,0,0,0,0,0,0,0,2,0,0,0,0,0,0,0,0,0,0,0),(401,'2015-03-10 22:38:42','2015-10-11 16:46:32',1,30002456,0,1,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(402,'2015-03-10 22:38:42','2015-10-11 16:46:32',1,30004746,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(403,'2015-03-10 22:38:42','2015-10-11 16:46:32',1,30001828,0,1,0,0,1,1,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,0,0,0),(404,'2015-03-10 22:38:42','2015-03-10 22:38:42',1,30002585,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(405,'2015-03-10 22:38:42','2015-03-10 22:38:42',1,30001149,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(406,'2015-03-10 22:38:42','2015-03-10 22:38:42',1,30002625,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(407,'2015-03-10 22:38:42','2015-03-10 22:38:42',1,30001300,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(408,'2015-03-10 22:38:42','2015-10-11 16:46:32',1,30001335,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0),(409,'2015-03-10 22:38:42','2015-03-10 22:38:42',1,30000630,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(410,'2015-03-10 22:38:42','2015-03-10 22:38:42',1,30004221,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(411,'2015-03-10 22:38:42','2015-03-10 22:38:42',1,30000415,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(412,'2015-03-10 22:38:42','2015-03-10 22:38:42',1,30001512,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(413,'2015-03-10 22:38:42','2015-10-11 16:46:32',1,30002889,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,2,1,0,0,0,0,0,0,0),(414,'2015-03-10 22:38:42','2015-03-10 22:38:42',1,30002461,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(415,'2015-03-10 22:38:42','2015-10-11 16:46:32',1,30004736,0,0,0,0,0,0,0,0,0,0,1,2,0,0,0,1,1,0,0,1,0,0,0,0),(416,'2015-03-10 22:38:42','2015-03-10 22:38:42',1,30001940,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(417,'2015-03-10 22:38:42','2015-03-10 22:38:42',1,30004673,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(418,'2015-03-10 22:38:42','2015-03-10 22:38:42',1,30000646,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(419,'2015-03-10 22:38:42','2015-10-11 16:46:32',1,30004391,1,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,1,0,0,0,0,0),(420,'2015-03-10 22:38:42','2015-03-10 22:38:42',1,30000762,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(421,'2015-03-10 22:38:42','2015-03-10 22:38:42',1,30004166,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(422,'2015-03-10 22:38:42','2015-10-11 16:46:32',1,30004789,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0),(423,'2015-03-10 22:38:42','2015-03-10 22:38:42',1,30003310,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(424,'2015-03-10 22:38:42','2015-03-10 22:38:42',1,30003214,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(425,'2015-03-10 22:38:42','2015-03-10 22:38:42',1,30003111,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(426,'2015-03-10 22:38:42','2015-10-11 16:46:32',1,30001972,0,0,0,0,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(427,'2015-03-10 22:38:42','2015-03-10 22:38:42',1,30001101,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(428,'2015-03-10 22:38:42','2015-10-11 16:46:32',1,30004774,0,0,0,0,0,0,0,0,0,0,0,0,0,0,3,3,0,0,0,0,0,0,0,0),(429,'2015-03-10 22:38:42','2015-10-11 16:46:32',1,30004670,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,1),(430,'2015-03-10 22:38:42','2015-10-11 16:46:32',1,30004573,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,1,1,0,0,0,0,0,0,0),(431,'2015-03-10 22:38:42','2015-10-11 16:46:32',1,30003290,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,2),(432,'2015-03-10 22:38:42','2015-10-11 16:46:32',1,30003321,0,2,0,1,2,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,1,0),(433,'2015-03-10 22:38:42','2015-03-10 22:38:42',1,30003267,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(434,'2015-03-10 22:38:42','2015-03-10 22:38:42',1,30004412,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(435,'2015-03-10 22:38:42','2015-10-11 16:46:32',1,30004455,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(436,'2015-03-10 22:38:42','2015-10-11 16:46:32',1,30004039,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(437,'2015-03-10 22:38:42','2015-10-11 16:46:32',1,30000705,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0),(438,'2015-03-10 22:38:42','2015-10-11 16:46:32',1,30001241,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,1,1,0,0,1,0,0,0,1),(439,'2015-03-10 22:38:42','2015-03-10 22:38:42',1,30004865,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(440,'2015-03-10 22:38:42','2015-03-10 22:38:42',1,30003630,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(441,'2015-03-10 22:38:42','2015-03-10 22:38:42',1,30004374,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(442,'2015-03-10 22:38:42','2015-03-10 22:38:42',1,30001478,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(443,'2015-03-10 22:38:42','2015-03-10 22:38:42',1,30003302,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(444,'2015-03-10 22:38:42','2015-10-11 16:46:32',1,30005151,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0),(445,'2015-03-10 22:38:42','2015-10-11 16:46:32',1,30002883,0,0,0,0,0,0,0,0,0,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0),(446,'2015-03-10 22:38:42','2015-03-10 22:38:42',1,30003346,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(447,'2015-03-10 22:38:42','2015-03-10 22:38:42',1,30001641,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(448,'2015-03-10 22:38:42','2015-03-10 22:38:42',1,30000912,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(449,'2015-03-10 22:38:42','2015-03-10 22:38:42',1,30003354,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(450,'2015-03-10 22:38:42','2015-10-11 16:46:32',1,30000453,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,0,0,0),(451,'2015-03-10 22:38:42','2015-10-11 16:46:32',1,30004344,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(452,'2015-03-10 22:38:42','2015-03-10 22:38:42',1,30000989,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(453,'2015-03-10 22:38:42','2015-03-10 22:38:42',1,30002480,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(454,'2015-03-10 22:38:42','2015-03-10 22:38:42',1,30001480,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(455,'2015-03-10 22:38:42','2015-03-10 22:38:42',1,30000908,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(456,'2015-03-10 22:38:42','2015-03-10 22:38:42',1,30004643,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(457,'2015-03-10 22:38:42','2015-10-11 16:46:32',1,30003350,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,0,0,0,0,0,0,0),(458,'2015-03-10 22:38:42','2015-03-10 22:38:42',1,30001850,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(459,'2015-03-10 22:38:42','2015-10-11 16:46:32',1,30004212,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1),(460,'2015-03-10 22:38:42','2015-10-11 16:46:32',1,30004675,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(461,'2015-03-10 22:38:42','2015-03-10 22:38:42',1,30001104,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(462,'2015-03-10 22:38:42','2015-10-11 16:46:32',1,30004761,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,0,0,0),(463,'2015-03-10 22:38:42','2015-03-10 22:38:42',1,30000844,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(464,'2015-03-10 22:38:42','2015-03-10 22:38:42',1,30000562,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(465,'2015-03-10 22:38:42','2015-10-11 16:46:32',1,30000554,0,0,0,0,0,0,0,0,0,1,1,1,0,0,0,0,0,0,0,0,0,0,0,0),(466,'2015-03-10 22:38:42','2015-10-11 16:46:32',1,30004168,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,0,0,0),(467,'2015-03-10 22:38:42','2015-10-11 16:46:32',1,30001014,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,0,0,0,0),(468,'2015-03-10 22:38:42','2015-10-11 16:46:32',1,30004175,0,0,0,0,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(469,'2015-03-10 22:38:42','2015-10-11 16:46:32',1,30004193,0,0,0,0,0,0,0,0,1,0,0,0,1,0,1,1,0,0,0,0,1,0,0,0),(470,'2015-03-10 22:38:42','2015-03-10 22:38:42',1,30004445,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(471,'2015-03-10 22:38:42','2015-03-10 22:38:42',1,30000637,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(472,'2015-03-10 22:38:42','2015-03-10 22:38:42',1,30002501,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(473,'2015-03-10 22:38:42','2015-10-11 16:46:32',1,30000992,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(474,'2015-03-10 22:38:42','2015-03-10 22:38:42',1,30002591,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(475,'2015-03-10 22:38:42','2015-10-11 16:46:32',1,30000581,0,0,0,0,0,0,0,0,0,0,0,0,0,2,0,0,0,0,0,0,0,0,0,0),(476,'2015-03-10 22:38:42','2015-03-10 22:38:42',1,30004185,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(477,'2015-03-10 22:38:42','2015-03-10 22:38:42',1,30000820,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(478,'2015-03-10 22:38:42','2015-03-10 22:38:42',1,30003720,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(479,'2015-03-10 22:38:42','2015-10-11 16:46:32',1,30002291,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,15,0,0),(480,'2015-03-10 22:38:42','2015-03-10 22:38:42',1,30001951,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(481,'2015-03-10 22:38:42','2015-03-10 22:38:42',1,30000442,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(482,'2015-03-10 22:38:42','2015-03-10 22:38:42',1,30003223,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(483,'2015-03-10 22:38:42','2015-10-11 16:46:32',1,30003738,0,0,0,0,0,0,0,0,1,0,0,0,0,0,1,0,1,1,0,0,1,2,0,0),(484,'2015-03-10 22:38:42','2015-10-11 16:46:32',1,30003348,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,0,0,0),(485,'2015-03-10 22:38:42','2015-03-10 22:38:42',1,30001532,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(486,'2015-03-10 22:38:42','2015-03-10 22:38:42',1,30004345,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(487,'2015-03-10 22:38:42','2015-03-10 22:38:42',1,30000741,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(488,'2015-03-10 22:38:42','2015-03-10 22:38:42',1,30000609,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(489,'2015-03-10 22:38:42','2015-10-11 16:46:32',1,30000468,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(490,'2015-03-10 22:38:42','2015-03-10 22:38:42',1,30004477,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(491,'2015-03-10 22:38:42','2015-10-11 16:46:32',1,30000564,0,0,0,0,0,0,0,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(492,'2015-03-10 22:38:42','2015-03-10 22:38:42',1,30004067,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(493,'2015-03-10 22:38:42','2015-10-11 16:46:32',1,30002950,0,1,1,2,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(494,'2015-03-10 22:38:42','2015-03-10 22:38:42',1,30005115,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(495,'2015-03-10 22:38:42','2015-10-11 16:46:32',1,30000299,0,0,0,0,0,0,0,0,0,1,0,0,0,0,1,0,0,0,0,0,4,0,0,0),(496,'2015-03-10 22:38:42','2015-03-10 22:38:42',1,30002313,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(497,'2015-03-10 22:38:42','2015-03-10 22:38:42',1,30004008,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(498,'2015-03-10 22:38:42','2015-10-11 16:46:32',1,30005152,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0),(499,'2015-03-10 22:38:42','2015-03-10 22:38:42',1,30001626,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(500,'2015-03-10 22:38:42','2015-10-11 16:46:32',1,30002927,0,0,13,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(501,'2015-03-10 22:38:42','2015-03-10 22:38:42',1,30004508,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(502,'2015-03-10 22:38:42','2015-10-11 16:46:32',1,30004432,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0),(503,'2015-03-10 22:38:42','2015-03-10 22:38:42',1,30000218,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(504,'2015-03-10 22:38:42','2015-10-11 16:46:32',1,30005110,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(505,'2015-03-10 22:38:42','2015-10-11 16:46:32',1,30002005,16,0,6,2,0,0,0,3,3,0,0,0,1,2,0,1,1,5,0,1,1,5,7,3),(506,'2015-03-10 22:38:42','2015-03-10 22:38:42',1,30005111,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(507,'2015-03-10 22:38:42','2015-03-10 22:38:42',1,30001503,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(508,'2015-03-10 22:38:42','2015-03-10 22:38:42',1,30004053,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(509,'2015-03-10 22:38:42','2015-10-11 16:46:32',1,30005114,0,0,0,0,5,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(510,'2015-03-10 22:38:42','2015-03-10 22:38:42',1,30003640,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(511,'2015-03-10 22:38:42','2015-10-11 16:46:32',1,30003280,0,1,0,1,1,0,0,0,0,17,3,1,1,10,0,3,3,2,12,6,2,1,0,1),(512,'2015-03-10 22:38:42','2015-03-10 22:38:42',1,30004486,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(513,'2015-03-10 22:38:42','2015-03-10 22:38:42',1,30000706,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(514,'2015-03-10 22:38:42','2015-03-10 22:38:42',1,30001759,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(515,'2015-03-10 22:38:42','2015-03-10 22:38:42',1,30001603,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(516,'2015-03-10 22:38:42','2015-10-11 16:46:32',1,30002167,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,1,0,0,0,4,0,0,0),(517,'2015-03-10 22:38:42','2015-10-11 16:46:32',1,30004810,0,1,0,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(518,'2015-03-10 22:38:42','2015-10-11 16:46:32',1,30001167,0,0,0,0,0,0,0,0,0,1,1,1,0,0,0,0,0,0,0,0,0,0,0,0),(519,'2015-03-10 22:38:42','2015-10-11 16:46:32',1,30000728,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(520,'2015-03-10 22:38:42','2015-10-11 16:46:32',1,30000557,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0),(521,'2015-03-10 22:38:42','2015-10-11 16:46:32',1,30001184,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,0,1,0,0,0,0),(522,'2015-03-10 22:38:42','2015-03-10 22:38:42',1,30001492,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(523,'2015-03-10 22:38:42','2015-10-11 16:46:32',1,30004347,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(524,'2015-03-10 22:38:42','2015-10-11 16:46:32',1,30003745,1,1,0,0,0,0,0,0,0,2,0,0,0,0,0,0,0,0,0,0,1,2,0,0),(525,'2015-03-10 22:38:42','2015-03-10 22:38:42',1,30001488,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(526,'2015-03-10 22:38:42','2015-03-10 22:38:42',1,30003145,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(527,'2015-03-10 22:38:42','2015-10-11 16:46:32',1,30003316,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,0,0),(528,'2015-03-10 22:38:42','2015-03-10 22:38:42',1,30001111,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(529,'2015-03-10 22:38:42','2015-10-11 16:46:32',1,30003956,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(530,'2015-03-10 22:38:42','2015-10-11 16:46:32',1,30003315,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0),(531,'2015-03-10 22:38:42','2015-10-11 16:46:32',1,30000513,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(532,'2015-03-10 22:38:42','2015-03-10 22:38:42',1,30001092,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(533,'2015-03-10 22:38:42','2015-10-11 16:46:32',1,30001317,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(534,'2015-03-10 22:38:42','2015-03-10 22:38:42',1,30004923,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(535,'2015-03-10 22:38:42','2015-10-11 16:46:32',1,30000289,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(536,'2015-03-10 22:38:42','2015-03-10 22:38:42',1,30000985,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(537,'2015-03-10 22:38:42','2015-10-11 16:46:32',1,30004604,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(538,'2015-03-10 22:38:42','2015-03-10 22:38:42',1,30000791,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(539,'2015-03-10 22:38:42','2015-03-10 22:38:42',1,30002593,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(540,'2015-03-10 22:38:42','2015-03-10 22:38:42',1,30001624,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(541,'2015-03-10 22:38:42','2015-03-10 22:38:42',1,30001134,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(542,'2015-03-10 22:38:42','2015-03-10 22:38:42',1,30002623,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(543,'2015-03-10 22:38:42','2015-03-10 22:38:42',1,30000764,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(544,'2015-03-10 22:38:42','2015-03-10 22:38:42',1,30000371,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(545,'2015-03-10 22:38:42','2015-10-11 16:46:32',1,30001257,0,0,0,0,0,0,0,0,0,0,0,1,1,5,0,2,2,3,4,0,0,0,0,0),(546,'2015-03-10 22:38:42','2015-10-11 16:46:32',1,30003270,0,0,1,1,0,0,1,0,0,0,0,0,0,0,3,0,0,0,0,0,2,4,0,0),(547,'2015-03-10 22:38:42','2015-10-11 16:46:32',1,30002619,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0),(548,'2015-03-10 22:38:42','2015-10-11 16:46:32',1,30000907,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(549,'2015-03-10 22:38:42','2015-03-10 22:38:42',1,30003139,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(550,'2015-03-10 22:38:42','2015-03-10 22:38:42',1,30004591,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(551,'2015-03-10 22:38:42','2015-03-10 22:38:42',1,30000402,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(552,'2015-03-10 22:38:42','2015-10-11 16:46:32',1,30002855,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,3,0,0,0),(553,'2015-03-10 22:38:42','2015-10-11 16:46:32',1,30002025,0,1,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0),(554,'2015-03-10 22:38:42','2015-10-11 16:46:32',1,30002459,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0),(555,'2015-03-10 22:38:42','2015-10-11 16:46:32',1,30001290,0,5,1,1,0,0,4,0,0,1,4,2,0,1,1,0,1,2,2,3,2,0,1,2),(556,'2015-03-10 22:38:42','2015-10-11 16:46:32',1,30004442,0,0,0,0,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(557,'2015-03-10 22:38:42','2015-03-10 22:38:42',1,30004073,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(558,'2015-03-10 22:38:42','2015-03-10 22:38:42',1,30000457,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(559,'2015-03-10 22:38:42','2015-03-10 22:38:42',1,30003648,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(560,'2015-03-10 22:38:42','2015-10-11 16:46:32',1,30004740,0,0,1,0,0,0,3,0,0,3,2,4,0,3,2,0,0,0,1,1,11,0,0,2),(561,'2015-03-10 22:38:42','2015-03-10 22:38:42',1,30005128,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(562,'2015-03-10 22:38:42','2015-03-10 22:38:42',1,30000364,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(563,'2015-03-10 22:38:42','2015-10-11 16:46:32',1,30001930,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0),(564,'2015-03-10 22:38:42','2015-03-10 22:38:42',1,30003303,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(565,'2015-03-10 22:38:42','2015-10-11 16:46:32',1,30004070,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0),(566,'2015-03-10 22:38:42','2015-10-11 16:46:32',1,30002446,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,0),(567,'2015-03-10 22:38:42','2015-03-10 22:38:42',1,30003179,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(568,'2015-03-10 22:38:42','2015-10-11 16:46:32',1,30004908,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0),(569,'2015-03-10 22:38:42','2015-03-10 22:38:42',1,30001545,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(570,'2015-03-10 22:38:42','2015-10-11 16:46:32',1,30003210,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1),(571,'2015-03-10 22:38:42','2015-03-10 22:38:42',1,30001339,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(572,'2015-03-10 22:38:42','2015-03-10 22:38:42',1,30001067,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(573,'2015-03-10 22:38:42','2015-03-10 22:38:42',1,30002832,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(574,'2015-03-10 22:38:42','2015-10-11 16:46:32',1,30004608,0,0,0,0,0,0,0,0,0,0,0,0,0,3,0,0,1,0,1,1,1,0,0,0),(575,'2015-03-10 22:38:42','2015-03-10 22:38:42',1,30001574,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(576,'2015-03-10 22:38:42','2015-10-11 16:46:32',1,30001276,0,0,0,0,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,0),(577,'2015-03-10 22:38:42','2015-10-11 16:46:32',1,30000967,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,3),(578,'2015-03-10 22:38:42','2015-03-10 22:38:42',1,30000258,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(579,'2015-03-10 22:38:42','2015-10-11 16:46:32',1,30001197,0,0,2,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1),(580,'2015-03-10 22:38:42','2015-10-11 16:46:32',1,30001907,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0),(581,'2015-03-10 22:38:42','2015-03-10 22:38:42',1,30000297,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(582,'2015-03-10 22:38:42','2015-03-10 22:38:42',1,30002465,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(583,'2015-03-10 22:38:42','2015-03-10 22:38:42',1,30004792,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(584,'2015-03-10 22:38:42','2015-03-10 22:38:42',1,30004057,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(585,'2015-03-10 22:38:42','2015-03-10 22:38:42',1,30001328,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(586,'2015-03-10 22:38:42','2015-03-10 22:38:42',1,30001075,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(587,'2015-03-10 22:38:42','2015-10-11 16:46:32',1,30004525,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(588,'2015-03-10 22:38:42','2015-10-11 16:46:32',1,30004925,1,0,0,0,0,0,5,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(589,'2015-03-10 22:38:42','2015-03-10 22:38:42',1,30004585,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(590,'2015-03-10 22:38:42','2015-03-10 22:38:42',1,30001608,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(591,'2015-03-10 22:38:42','2015-03-10 22:38:42',1,30000525,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(592,'2015-03-10 22:38:42','2015-03-10 22:38:42',1,30000919,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(593,'2015-03-10 22:38:42','2015-10-11 16:46:32',1,30000759,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(594,'2015-03-10 22:38:42','2015-03-10 22:38:42',1,30000224,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(595,'2015-03-10 22:38:42','2015-10-11 16:46:32',1,30004790,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,2,0),(596,'2015-03-10 22:38:42','2015-10-11 16:46:32',1,30000487,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,2,0,0,0,0,0,0,0,0),(597,'2015-03-10 22:38:42','2015-03-10 22:38:42',1,30000287,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(598,'2015-03-10 22:38:42','2015-03-10 22:38:42',1,30001588,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(599,'2015-03-10 22:38:42','2015-10-11 16:46:32',1,30000217,0,0,2,0,0,1,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0),(600,'2015-03-10 22:38:42','2015-03-10 22:38:42',1,30003217,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(601,'2015-03-10 22:38:42','2015-03-10 22:38:42',1,30001884,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(602,'2015-03-10 22:38:42','2015-10-11 16:46:32',1,30001057,0,0,0,0,0,0,0,0,0,0,2,2,1,0,0,0,0,0,0,0,0,0,0,0),(603,'2015-03-10 22:38:42','2015-03-10 22:38:42',1,30002158,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(604,'2015-03-10 22:38:42','2015-10-11 16:46:32',1,30000726,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1),(605,'2015-03-10 22:38:42','2015-03-10 22:38:42',1,30004893,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(606,'2015-03-10 22:38:42','2015-03-10 22:38:42',1,30002848,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(607,'2015-03-10 22:38:42','2015-10-11 16:46:32',1,30000787,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(608,'2015-03-10 22:38:42','2015-03-10 22:38:42',1,30000333,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(609,'2015-03-10 22:38:42','2015-03-10 22:38:42',1,30000827,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(610,'2015-03-10 22:38:42','2015-10-11 16:46:32',1,30004429,0,0,1,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0),(611,'2015-03-10 22:38:42','2015-10-11 16:46:32',1,30004620,0,0,0,0,0,0,0,0,0,0,0,0,4,4,0,1,2,3,0,0,0,1,3,3),(612,'2015-03-10 22:38:42','2015-10-11 16:46:32',1,30004045,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,1,0),(613,'2015-03-10 22:38:42','2015-03-10 22:38:42',1,30000483,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(614,'2015-03-10 22:38:42','2015-10-11 16:46:32',1,30000773,0,0,0,0,2,1,0,0,0,0,0,0,0,1,2,0,0,0,0,0,0,0,0,0),(615,'2015-03-10 22:38:42','2015-03-10 22:38:42',1,30004816,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(616,'2015-03-10 22:38:42','2015-10-11 16:46:33',1,30002125,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(617,'2015-03-10 22:38:42','2015-03-10 22:38:42',1,30005145,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(618,'2015-03-10 22:38:42','2015-03-10 22:38:42',1,30001639,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(619,'2015-03-10 22:38:42','2015-03-10 22:38:42',1,30004635,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(620,'2015-03-10 22:38:42','2015-10-11 16:46:33',1,30004616,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0),(621,'2015-03-10 22:38:42','2015-03-10 22:38:42',1,30000360,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(622,'2015-03-10 22:38:42','2015-10-11 16:46:33',1,30002046,0,0,0,0,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(623,'2015-03-10 22:38:42','2015-03-10 22:38:42',1,30003671,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(624,'2015-03-10 22:38:42','2015-10-11 16:46:33',1,30000840,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0),(625,'2015-03-10 22:38:42','2015-10-11 16:46:33',1,30001817,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0),(626,'2015-03-10 22:38:42','2015-10-11 16:46:33',1,30000323,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1),(627,'2015-03-10 22:38:42','2015-03-10 22:38:42',1,30004768,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(628,'2015-03-10 22:38:42','2015-10-11 16:46:33',1,30003948,2,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(629,'2015-03-10 22:38:42','2015-03-10 22:38:42',1,30001457,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(630,'2015-03-10 22:38:42','2015-03-10 22:38:42',1,30000955,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(631,'2015-03-10 22:38:42','2015-03-10 22:38:42',1,30005176,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(632,'2015-03-10 22:38:42','2015-03-10 22:38:42',1,30000606,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(633,'2015-03-10 22:38:42','2015-03-10 22:38:42',1,30004872,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(634,'2015-03-10 22:38:42','2015-10-11 16:46:33',1,30000745,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(635,'2015-03-10 22:38:42','2015-10-11 16:46:33',1,30004926,0,0,0,0,0,0,0,0,1,0,0,0,0,0,3,0,0,0,0,0,0,0,0,0),(636,'2015-03-10 22:38:42','2015-10-11 16:46:33',1,30001218,0,0,0,0,0,0,0,0,0,4,2,0,0,1,1,1,2,0,0,0,2,0,0,2),(637,'2015-03-10 22:38:42','2015-03-10 22:38:42',1,30000383,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(638,'2015-03-10 22:38:42','2015-03-10 22:38:42',1,30005138,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(639,'2015-03-10 22:38:42','2015-03-10 22:38:42',1,30004860,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(640,'2015-03-10 22:38:42','2015-10-11 16:46:33',1,30001232,0,0,0,1,0,0,0,0,0,0,0,0,0,0,1,0,0,2,0,2,0,0,0,1),(641,'2015-03-10 22:38:42','2015-03-10 22:38:42',1,30005146,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(642,'2015-03-10 22:38:42','2015-03-10 22:38:42',1,30000353,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(643,'2015-03-10 22:38:42','2015-03-10 22:38:42',1,30003165,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(644,'2015-03-10 22:38:42','2015-10-11 16:46:33',1,30000943,1,8,0,0,0,0,0,1,0,2,3,5,2,0,1,11,11,1,3,1,6,2,1,7),(645,'2015-03-10 22:38:42','2015-10-11 16:46:33',1,30001845,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,0,0,0,0,0,0),(646,'2015-03-10 22:38:42','2015-10-11 16:46:33',1,30002016,0,0,16,3,3,6,24,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2),(647,'2015-03-10 22:38:42','2015-03-10 22:38:42',1,30001141,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(648,'2015-03-10 22:38:42','2015-03-10 22:38:42',1,30002929,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(649,'2015-03-10 22:38:42','2015-10-11 16:46:33',1,30004788,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,0,0,0),(650,'2015-03-10 22:38:42','2015-10-11 16:46:33',1,30003945,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(651,'2015-03-10 22:38:42','2015-03-10 22:38:42',1,30004587,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(652,'2015-03-10 22:38:42','2015-03-10 22:38:42',1,30002031,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(653,'2015-03-10 22:38:42','2015-10-11 16:46:33',1,30002177,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,1,0,0,0),(654,'2015-03-10 22:38:42','2015-03-10 22:38:42',1,30003778,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(655,'2015-03-10 22:38:42','2015-10-11 16:46:33',1,30001071,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,0,0,0),(656,'2015-03-10 22:38:42','2015-10-11 16:46:33',1,30004351,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(657,'2015-03-10 22:38:42','2015-03-10 22:38:42',1,30004869,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(658,'2015-03-10 22:38:42','2015-03-10 22:38:42',1,30001768,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(659,'2015-03-10 22:38:42','2015-03-10 22:38:42',1,30004862,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(660,'2015-03-10 22:38:42','2015-03-10 22:38:42',1,30000614,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(661,'2015-03-10 22:38:42','2015-03-10 22:38:42',1,30004001,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(662,'2015-03-10 22:38:42','2015-03-10 22:38:42',1,30003282,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(663,'2015-03-10 22:38:42','2015-10-11 16:46:33',1,30002484,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(664,'2015-03-10 22:38:42','2015-03-10 22:38:42',1,30002293,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(665,'2015-03-10 22:38:42','2015-03-10 22:38:42',1,30000542,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(666,'2015-03-10 22:38:42','2015-03-10 22:38:42',1,30000334,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(667,'2015-03-10 22:38:42','2015-10-11 16:46:33',1,30003985,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,0,0,0,0,1,1,0),(668,'2015-03-10 22:38:42','2015-10-11 16:46:33',1,30000628,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,1,0,0,0,0,0,0,0),(669,'2015-03-10 22:38:42','2015-10-11 16:46:33',1,30000312,5,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(670,'2015-03-10 22:38:42','2015-03-10 22:38:42',1,30001514,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(671,'2015-03-10 22:38:42','2015-03-10 22:38:42',1,30001627,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(672,'2015-03-10 22:38:42','2015-03-10 22:38:42',1,30000648,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(673,'2015-03-10 22:38:42','2015-03-10 22:38:42',1,30000775,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(674,'2015-03-10 22:38:42','2015-10-11 16:46:33',1,30004025,0,0,0,0,0,0,0,0,0,0,1,1,1,0,0,0,0,0,0,0,0,0,0,0),(675,'2015-03-10 22:38:42','2015-10-11 16:46:33',1,30001745,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0),(676,'2015-03-10 22:38:42','2015-03-10 22:38:42',1,30003189,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(677,'2015-03-10 22:38:42','2015-03-10 22:38:42',1,30002924,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(678,'2015-03-10 22:38:42','2015-03-10 22:38:42',1,30001132,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(679,'2015-03-10 22:38:42','2015-10-11 16:46:33',1,30002885,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0),(680,'2015-03-10 22:38:42','2015-10-11 16:46:33',1,30004190,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0),(681,'2015-03-10 22:38:42','2015-10-11 16:46:33',1,30004640,0,0,0,0,0,0,0,0,0,1,3,3,0,0,0,1,1,0,0,0,0,0,0,1),(682,'2015-03-10 22:38:42','2015-03-10 22:38:42',1,30000770,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(683,'2015-03-10 22:38:42','2015-10-11 16:46:33',1,30002346,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(684,'2015-03-10 22:38:42','2015-03-10 22:38:42',1,30002314,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(685,'2015-03-10 22:38:42','2015-03-10 22:38:42',1,30001053,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(686,'2015-03-10 22:38:42','2015-10-11 16:46:33',1,30001219,0,0,0,0,0,0,0,0,0,0,0,0,0,2,0,0,0,0,0,0,1,0,0,0),(687,'2015-03-10 22:38:42','2015-03-10 22:38:42',1,30005164,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(688,'2015-03-10 22:38:42','2015-03-10 22:38:42',1,30003974,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(689,'2015-03-10 22:38:42','2015-10-11 16:46:33',1,30003771,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(690,'2015-03-10 22:38:42','2015-10-11 16:46:33',1,30001144,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0),(691,'2015-03-10 22:38:42','2015-10-11 16:46:33',1,30001298,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(692,'2015-03-10 22:38:42','2015-10-11 16:46:33',1,30000731,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,1,0,0),(693,'2015-03-10 22:38:42','2015-03-10 22:38:42',1,30000910,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(694,'2015-03-10 22:38:42','2015-03-10 22:38:42',1,30000748,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(695,'2015-03-10 22:38:42','2015-03-10 22:38:42',1,30004574,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(696,'2015-03-10 22:38:42','2015-10-11 16:46:33',1,30004781,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(697,'2015-03-10 22:38:42','2015-03-10 22:38:42',1,30000494,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(698,'2015-03-10 22:38:42','2015-10-11 16:46:33',1,30000771,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0),(699,'2015-03-10 22:38:42','2015-10-11 16:46:33',1,30001017,0,10,4,1,0,0,4,5,1,5,1,0,0,3,0,0,1,0,3,3,1,0,0,0),(700,'2015-03-10 22:38:42','2015-10-11 16:46:33',1,30001776,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(701,'2015-03-10 22:38:42','2015-10-11 16:46:33',1,30002354,0,1,0,0,0,0,0,0,0,0,2,1,0,0,0,0,0,1,0,0,0,1,0,0),(702,'2015-03-10 22:38:42','2015-10-11 16:46:33',1,30001887,0,0,0,0,0,0,0,0,0,1,2,1,0,0,0,0,0,0,0,0,0,2,0,0),(703,'2015-03-10 22:38:42','2015-03-10 22:38:42',1,30004942,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(704,'2015-03-10 22:38:42','2015-10-11 16:46:33',1,30002442,0,0,1,1,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,1,2,0,0,0),(705,'2015-03-10 22:38:42','2015-03-10 22:38:42',1,30000391,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(706,'2015-03-10 22:38:42','2015-10-11 16:46:33',1,30001879,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0),(707,'2015-03-10 22:38:42','2015-10-11 16:46:33',1,30000652,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0),(708,'2015-03-10 22:38:42','2015-03-10 22:38:42',1,30001561,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(709,'2015-03-10 22:38:42','2015-10-11 16:46:33',1,30003750,1,0,0,0,0,0,0,0,0,1,2,1,1,0,0,0,0,0,0,0,120,1,0,3),(710,'2015-03-10 22:38:42','2015-10-11 16:46:33',1,30000697,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,3,3,0,0,1,6,0,0,0),(711,'2015-03-10 22:38:42','2015-03-10 22:38:42',1,30004681,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(712,'2015-03-10 22:38:42','2015-10-11 16:46:33',1,30003702,5,0,0,5,6,6,0,1,0,0,1,1,0,0,1,1,1,0,0,0,0,0,0,0),(713,'2015-03-10 22:38:42','2015-10-11 16:46:33',1,30004012,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(714,'2015-03-10 22:38:42','2015-10-11 16:46:33',1,30004056,11,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(715,'2015-03-10 22:38:42','2015-03-10 22:38:42',1,30001805,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(716,'2015-03-10 22:38:42','2015-03-10 22:38:42',1,30004771,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(717,'2015-03-10 22:38:42','2015-03-10 22:38:42',1,30001523,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(718,'2015-03-10 22:38:42','2015-10-11 16:46:33',1,30002004,0,0,0,1,0,0,0,0,0,0,0,0,0,0,5,5,0,1,0,0,0,0,0,0),(719,'2015-03-10 22:38:42','2015-10-11 16:46:33',1,30002930,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0),(720,'2015-03-10 22:38:42','2015-10-11 16:46:33',1,30000242,0,0,0,0,2,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0),(721,'2015-03-10 22:38:42','2015-03-10 22:38:42',1,30001614,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(722,'2015-03-10 22:38:42','2015-10-11 16:46:33',1,30003320,0,0,0,1,0,0,0,0,0,2,2,0,3,6,0,2,3,0,0,0,0,0,0,0),(723,'2015-03-10 22:38:42','2015-10-11 16:46:33',1,30003695,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,1,0,1,0,0,1,0,0,0),(724,'2015-03-10 22:38:42','2015-10-11 16:46:33',1,30004760,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(725,'2015-03-10 22:38:42','2015-10-11 16:46:33',1,30002171,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1),(726,'2015-03-10 22:38:42','2015-10-11 16:46:33',1,30000942,0,0,0,0,0,0,0,0,0,1,1,0,0,2,0,0,0,0,0,0,3,2,0,0),(727,'2015-03-10 22:38:42','2015-10-11 16:46:33',1,30001877,0,0,0,0,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,0),(728,'2015-03-10 22:38:42','2015-03-10 22:38:42',1,30000469,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(729,'2015-03-10 22:38:42','2015-10-11 16:46:33',1,30002868,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,3,0,0),(730,'2015-03-10 22:38:42','2015-10-11 16:46:33',1,30001273,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,1,0,0,0,0,0,0,1),(731,'2015-03-10 22:38:42','2015-03-10 22:38:42',1,30000939,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(732,'2015-03-10 22:38:42','2015-03-10 22:38:42',1,30004059,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(733,'2015-03-10 22:38:42','2015-03-10 22:38:42',1,30004219,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(734,'2015-03-10 22:38:42','2015-10-11 16:46:33',1,30001279,3,1,0,0,0,0,0,0,1,1,0,0,0,1,0,0,0,0,0,0,2,0,0,0),(735,'2015-03-10 22:38:42','2015-10-11 16:46:33',1,30001166,0,0,0,0,1,1,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,1,1),(736,'2015-03-10 22:38:42','2015-10-11 16:46:33',1,30004879,0,0,0,0,0,0,1,0,0,0,1,1,0,0,0,0,0,0,0,0,0,0,0,0),(737,'2015-03-10 22:38:42','2015-10-11 16:46:33',1,30004397,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0),(738,'2015-03-10 22:38:42','2015-03-10 22:38:42',1,30001600,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(739,'2015-03-10 22:38:42','2015-03-10 22:38:42',1,30001484,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(740,'2015-03-10 22:38:42','2015-10-11 16:46:33',1,30005148,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(741,'2015-03-10 22:38:42','2015-10-11 16:46:33',1,30003704,0,1,0,0,0,0,0,0,0,0,0,0,0,6,2,1,0,1,0,0,0,1,0,0),(742,'2015-03-10 22:38:42','2015-10-11 16:46:33',1,30000318,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,0,0,0),(743,'2015-03-10 22:38:42','2015-03-10 22:38:42',1,30003961,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(744,'2015-03-10 22:38:42','2015-10-11 16:46:33',1,30002590,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0),(745,'2015-03-10 22:38:42','2015-03-10 22:38:42',1,30002450,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(746,'2015-03-10 22:38:42','2015-10-11 16:46:33',1,30004826,0,0,0,0,0,0,0,22,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(747,'2015-03-10 22:38:42','2015-03-10 22:38:42',1,30000454,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(748,'2015-03-10 22:38:42','2015-10-11 16:46:33',1,30001266,0,0,0,0,0,0,0,0,0,0,0,0,1,0,1,6,8,1,0,0,0,0,5,0),(749,'2015-03-10 22:38:42','2015-10-11 16:46:33',1,30004557,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,0,0,0,0,0,0,2,0),(750,'2015-03-10 22:38:42','2015-10-11 16:46:33',1,30004201,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(751,'2015-03-10 22:38:42','2015-10-11 16:46:33',1,30002159,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(752,'2015-03-10 22:38:42','2015-03-10 22:38:42',1,30005168,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(753,'2015-03-10 22:38:42','2015-10-11 16:46:33',1,30004409,0,0,0,0,0,0,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(754,'2015-03-10 22:38:42','2015-10-11 16:46:33',1,30001814,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(755,'2015-03-10 22:38:42','2015-03-10 22:38:42',1,30001609,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(756,'2015-03-10 22:38:42','2015-03-10 22:38:42',1,30003253,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(757,'2015-03-10 22:38:42','2015-03-10 22:38:42',1,30000994,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(758,'2015-03-10 22:38:42','2015-10-11 16:46:33',1,30001312,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0),(759,'2015-03-10 22:38:42','2015-10-11 16:46:33',1,30001284,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(760,'2015-03-10 22:38:42','2015-10-11 16:46:33',1,30001990,0,1,0,2,3,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(761,'2015-03-10 22:38:42','2015-10-11 16:46:33',1,30002895,0,0,0,0,0,0,0,1,0,0,0,6,1,2,0,0,0,0,0,0,5,13,0,0),(762,'2015-03-10 22:38:42','2015-03-10 22:38:42',1,30002131,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(763,'2015-03-10 22:38:42','2015-10-11 16:46:33',1,30000271,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(764,'2015-03-10 22:38:42','2015-10-11 16:46:33',1,30005130,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0),(765,'2015-03-10 22:38:42','2015-10-11 16:46:33',1,30003301,0,0,5,0,0,0,3,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(766,'2015-03-10 22:38:42','2015-03-10 22:38:42',1,30000392,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(767,'2015-03-10 22:38:42','2015-10-11 16:46:33',1,30003373,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1),(768,'2015-03-10 22:38:42','2015-10-11 16:46:33',1,30004914,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(769,'2015-03-10 22:38:42','2015-10-11 16:46:33',1,30000616,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(770,'2015-03-10 22:38:42','2015-03-10 22:38:42',1,30000724,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(771,'2015-03-10 22:38:42','2015-10-11 16:46:33',1,30003979,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1),(772,'2015-03-10 22:38:42','2015-10-11 16:46:33',1,30002949,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(773,'2015-03-10 22:38:42','2015-03-10 22:38:42',1,30004629,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(774,'2015-03-10 22:38:42','2015-10-11 16:46:33',1,30004646,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0),(775,'2015-03-10 22:38:42','2015-03-10 22:38:42',1,30003954,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(776,'2015-03-10 22:38:42','2015-10-11 16:46:33',1,30002284,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0),(777,'2015-03-10 22:38:42','2015-10-11 16:46:33',1,30004366,0,0,0,0,0,1,0,2,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(778,'2015-03-10 22:38:42','2015-10-11 16:46:33',1,30001079,0,0,0,0,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(779,'2015-03-10 22:38:42','2015-03-10 22:38:42',1,30003249,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(780,'2015-03-10 22:38:42','2015-10-11 16:46:33',1,30000875,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(781,'2015-03-10 22:38:42','2015-03-10 22:38:42',1,30004796,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(782,'2015-03-10 22:38:42','2015-10-11 16:46:33',1,30003338,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(783,'2015-03-10 22:38:42','2015-10-11 16:46:33',1,30002589,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,1,1,0,0,0),(784,'2015-03-10 22:38:42','2015-03-10 22:38:42',1,30001306,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(785,'2015-03-10 22:38:42','2015-03-10 22:38:42',1,30005180,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(786,'2015-03-10 22:38:42','2015-03-10 22:38:42',1,30000429,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(787,'2015-03-10 22:38:42','2015-03-10 22:38:42',1,30004169,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(788,'2015-03-10 22:38:42','2015-10-11 16:46:33',1,30001154,0,0,0,0,0,0,0,3,6,25,4,12,6,1,5,9,4,0,5,5,10,3,11,4),(789,'2015-03-10 22:38:42','2015-03-10 22:38:42',1,30000723,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(790,'2015-03-10 22:38:42','2015-10-11 16:46:33',1,30004884,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,0,0,0,0,0),(791,'2015-03-10 22:38:42','2015-03-10 22:38:42',1,30000399,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(792,'2015-03-10 22:38:42','2015-10-11 16:46:33',1,30000458,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0),(793,'2015-03-10 22:38:42','2015-03-10 22:38:42',1,30001128,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(794,'2015-03-10 22:38:42','2015-03-10 22:38:42',1,30004780,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(795,'2015-03-10 22:38:42','2015-10-11 16:46:33',1,30004582,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,0,0,0),(796,'2015-03-10 22:38:42','2015-10-11 16:46:33',1,30001886,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,0,0,0,0,0),(797,'2015-03-10 22:38:42','2015-10-11 16:46:33',1,30000800,0,0,0,0,1,1,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(798,'2015-03-10 22:38:42','2015-03-10 22:38:42',1,30000247,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(799,'2015-03-10 22:38:42','2015-03-10 22:38:42',1,30002287,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(800,'2015-03-10 22:38:42','2015-10-11 16:46:33',1,30002472,0,0,0,0,0,0,0,0,0,0,0,0,0,5,0,0,0,1,0,0,0,0,2,0),(801,'2015-03-10 22:38:42','2015-10-11 16:46:33',1,30000668,0,0,0,1,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1),(802,'2015-03-10 22:38:42','2015-03-10 22:38:42',1,30002339,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(803,'2015-03-10 22:38:42','2015-10-11 16:46:33',1,30004569,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0),(804,'2015-03-10 22:38:42','2015-10-11 16:46:33',1,30001840,1,0,0,0,1,1,1,0,0,1,0,0,0,0,0,2,2,1,0,0,0,0,1,2),(805,'2015-03-10 22:38:42','2015-03-10 22:38:42',1,30001796,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(806,'2015-03-10 22:38:42','2015-03-10 22:38:42',1,30004022,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(807,'2015-03-10 22:38:42','2015-03-10 22:38:42',1,30000883,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(808,'2015-03-10 22:38:42','2015-10-11 16:46:33',1,30000969,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,1,0,2,1,2),(809,'2015-03-10 22:38:42','2015-03-10 22:38:42',1,30004672,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(810,'2015-03-10 22:38:42','2015-03-10 22:38:42',1,30003341,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(811,'2015-03-10 22:38:42','2015-10-11 16:46:33',1,30001857,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,0,1),(812,'2015-03-10 22:38:42','2015-10-11 16:46:33',1,30003707,1,5,5,2,0,1,0,0,0,2,0,1,0,88,11,16,6,2,9,14,2,0,2,6),(813,'2015-03-10 22:38:42','2015-10-11 16:46:33',1,30005137,2,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,0,0,0,0,0,0),(814,'2015-03-10 22:38:42','2015-03-10 22:38:42',1,30000412,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(815,'2015-03-10 22:38:42','2015-03-10 22:38:42',1,30001764,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(816,'2015-03-10 22:38:42','2015-10-11 16:46:33',1,30002618,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0),(817,'2015-03-10 22:38:42','2015-03-10 22:38:42',1,30004179,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(818,'2015-03-10 22:38:42','2015-10-11 16:46:33',1,30004619,0,0,0,0,1,2,0,1,0,0,0,0,0,0,0,0,0,1,0,0,0,1,0,0),(819,'2015-03-10 22:38:42','2015-03-10 22:38:42',1,30003650,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(820,'2015-03-10 22:38:42','2015-10-11 16:46:33',1,30003319,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,1),(821,'2015-03-10 22:38:42','2015-03-10 22:38:42',1,30000587,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(822,'2015-03-10 22:38:42','2015-03-10 22:38:42',1,30003977,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(823,'2015-03-10 22:38:42','2015-03-10 22:38:42',1,30004544,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(824,'2015-03-10 22:38:42','2015-03-10 22:38:42',1,30000491,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(825,'2015-03-10 22:38:42','2015-10-11 16:46:33',1,30001193,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0),(826,'2015-03-10 22:38:42','2015-10-11 16:46:33',1,30000702,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0),(827,'2015-03-10 22:38:42','2015-03-10 22:38:42',1,30001283,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(828,'2015-03-10 22:38:42','2015-10-11 16:46:33',1,30003967,0,0,0,0,0,0,0,0,3,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0),(829,'2015-03-10 22:38:42','2015-10-11 16:46:33',1,30000476,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0),(830,'2015-03-10 22:38:42','2015-03-10 22:38:42',1,30003100,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(831,'2015-03-10 22:38:42','2015-03-10 22:38:42',1,30000852,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(832,'2015-03-10 22:38:42','2015-03-10 22:38:42',1,30001954,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(833,'2015-03-10 22:38:42','2015-10-11 16:46:33',1,30004708,0,1,1,0,0,0,1,0,0,3,2,2,2,1,0,0,0,0,0,0,0,0,0,4),(834,'2015-03-10 22:38:42','2015-03-10 22:38:42',1,30004359,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(835,'2015-03-10 22:38:42','2015-03-10 22:38:42',1,30001870,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(836,'2015-03-10 22:38:42','2015-10-11 16:46:33',1,30004605,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(837,'2015-03-10 22:38:42','2015-10-11 16:46:33',1,30001537,0,0,7,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(838,'2015-03-10 22:38:42','2015-10-11 16:46:33',1,30000314,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0),(839,'2015-03-10 22:38:42','2015-10-11 16:46:33',1,30004850,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,1,0,0,0),(840,'2015-03-10 22:38:42','2015-10-11 16:46:33',1,30003335,3,7,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(841,'2015-03-10 22:38:42','2015-10-11 16:46:33',1,30000769,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(842,'2015-03-10 22:38:42','2015-10-11 16:46:33',1,30001210,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,0,0,1,0),(843,'2015-03-10 22:38:42','2015-03-10 22:38:42',1,30000362,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(844,'2015-03-10 22:38:42','2015-10-11 16:46:33',1,30001950,0,0,0,0,0,0,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(845,'2015-03-10 22:38:42','2015-03-10 22:38:42',1,30002836,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(846,'2015-03-10 22:38:42','2015-03-10 22:38:42',1,30003305,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(847,'2015-03-10 22:38:42','2015-10-11 16:46:33',1,30001077,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0),(848,'2015-03-10 22:38:42','2015-10-11 16:46:33',1,30003125,0,0,0,0,0,0,0,0,0,0,0,0,1,3,0,0,0,0,0,1,1,0,0,0),(849,'2015-03-10 22:38:42','2015-03-10 22:38:42',1,30002611,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(850,'2015-03-10 22:38:42','2015-03-10 22:38:42',1,30005167,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(851,'2015-03-10 22:38:42','2015-03-10 22:38:42',1,30003655,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(852,'2015-03-10 22:38:42','2015-10-11 16:46:33',1,30003942,0,2,0,0,0,0,0,0,0,0,2,3,0,0,1,0,0,1,0,0,0,0,0,0),(853,'2015-03-10 22:38:42','2015-10-11 16:46:33',1,30000794,0,0,0,0,0,0,2,0,0,0,0,0,0,0,7,2,0,0,0,1,0,1,0,0),(854,'2015-03-10 22:38:42','2015-10-11 16:46:33',1,30004550,0,0,0,0,0,0,0,1,0,0,0,0,0,1,1,0,0,0,0,0,0,0,0,0),(855,'2015-03-10 22:38:42','2015-10-11 16:46:33',1,30003944,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0),(856,'2015-03-10 22:38:42','2015-03-10 22:38:42',1,30000409,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(857,'2015-03-10 22:38:42','2015-03-10 22:38:42',1,30000317,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(858,'2015-03-10 22:38:42','2015-03-10 22:38:42',1,30002113,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(859,'2015-03-10 22:38:42','2015-10-11 16:46:33',1,30002952,1,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0),(860,'2015-03-10 22:38:42','2015-03-10 22:38:42',1,30001896,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(861,'2015-03-10 22:38:42','2015-03-10 22:38:42',1,30003150,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(862,'2015-03-10 22:38:42','2015-03-10 22:38:42',1,30004558,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(863,'2015-03-10 22:38:42','2015-10-11 16:46:33',1,30000259,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(864,'2015-03-10 22:38:42','2015-10-11 16:46:33',1,30001993,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0),(865,'2015-03-10 22:38:42','2015-10-11 16:46:33',1,30005092,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0),(866,'2015-03-10 22:38:42','2015-03-10 22:38:42',1,30001459,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(867,'2015-03-10 22:38:42','2015-03-10 22:38:42',1,30003331,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(868,'2015-03-10 22:38:42','2015-03-10 22:38:42',1,30004690,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(869,'2015-03-10 22:38:42','2015-10-11 16:46:33',1,30001285,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0),(870,'2015-03-10 22:38:42','2015-10-11 16:46:33',1,30001396,2,0,0,0,0,0,0,14,0,0,0,0,1,0,0,0,0,0,0,0,1,0,0,4),(871,'2015-03-10 22:38:42','2015-10-11 16:46:33',1,30001022,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0),(872,'2015-03-10 22:38:42','2015-10-11 16:46:33',1,30003293,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(873,'2015-03-10 22:38:42','2015-03-10 22:38:42',1,30000914,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(874,'2015-03-10 22:38:42','2015-10-11 16:46:33',1,30000147,0,0,0,2,0,0,0,0,0,0,2,1,0,0,0,1,2,0,0,0,0,0,0,0),(875,'2015-03-10 22:38:42','2015-10-11 16:46:33',1,30001694,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,1,2,1),(876,'2015-03-10 22:38:42','2015-10-11 16:46:33',1,30003512,0,0,0,0,0,1,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0),(877,'2015-03-10 22:38:42','2015-10-11 16:46:33',1,30004090,0,0,0,0,0,0,0,0,0,1,1,0,0,1,0,0,0,0,0,0,0,0,0,0),(878,'2015-03-10 22:38:42','2015-03-10 22:38:42',1,30005062,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(879,'2015-03-10 22:38:42','2015-03-10 22:38:42',1,30004831,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(880,'2015-03-10 22:38:42','2015-10-11 16:46:33',1,30002713,1,0,0,0,1,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,1),(881,'2015-03-10 22:38:42','2015-10-11 16:46:33',1,30000105,0,0,1,0,0,0,0,0,0,0,0,0,1,2,0,0,0,3,2,0,0,1,0,0),(882,'2015-03-10 22:38:42','2015-10-11 16:46:33',1,30005254,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0),(883,'2015-03-10 22:38:42','2015-10-11 16:46:33',1,30013410,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0),(884,'2015-03-10 22:38:42','2015-10-11 16:46:33',1,30002507,6,2,9,11,1,0,1,1,0,1,2,1,0,0,0,0,0,1,0,1,0,0,1,1),(885,'2015-03-10 22:38:42','2015-10-11 16:46:33',1,30004984,3,2,1,2,1,3,2,3,1,1,4,7,3,4,2,1,0,3,0,0,3,0,3,2),(886,'2015-03-10 22:38:42','2015-03-10 22:38:42',1,30002160,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(887,'2015-03-10 22:38:42','2015-03-10 22:38:42',1,30004563,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(888,'2015-03-10 22:38:42','2015-03-10 22:38:42',1,30005266,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(889,'2015-03-10 22:38:42','2015-10-11 16:46:33',1,30003028,0,0,0,0,0,0,0,0,0,0,0,1,0,0,3,3,0,0,1,0,0,0,0,0),(890,'2015-03-10 22:38:42','2015-10-11 16:46:33',1,30004981,0,0,0,0,0,0,0,0,0,0,2,2,0,1,0,0,0,0,0,0,0,1,0,0),(891,'2015-03-10 22:38:42','2015-10-11 16:46:33',1,30002478,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,1,16),(892,'2015-03-10 22:38:42','2015-03-10 22:38:42',1,30002892,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(893,'2015-03-10 22:38:42','2015-10-11 16:46:33',1,30003832,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(894,'2015-03-10 22:38:42','2015-10-11 16:46:33',1,30001648,0,0,0,0,0,0,0,0,0,0,0,0,0,4,0,1,1,0,0,0,0,0,0,4),(895,'2015-03-10 22:38:42','2015-10-11 16:46:33',1,30015305,2,0,0,0,6,3,0,3,4,3,0,0,1,0,0,0,0,1,0,0,3,1,0,0),(896,'2015-03-10 22:38:42','2015-03-10 22:38:42',1,30001717,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(897,'2015-03-10 22:38:42','2015-10-11 16:46:33',1,30003059,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0),(898,'2015-03-10 22:38:42','2015-10-11 16:46:33',1,30003439,1,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0),(899,'2015-03-10 22:38:42','2015-03-10 22:38:42',1,30002268,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(900,'2015-03-10 22:38:42','2015-10-11 16:46:33',1,30002710,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(901,'2015-03-10 22:38:42','2015-10-11 16:46:33',1,30005003,1,3,0,1,0,0,1,0,2,1,4,1,1,1,5,3,0,1,3,1,3,2,1,1),(902,'2015-03-10 22:38:42','2015-10-11 16:46:33',1,30002704,1,0,0,0,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(903,'2015-03-10 22:38:42','2015-10-11 16:46:33',1,30005021,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0),(904,'2015-03-10 22:38:42','2015-10-11 16:46:33',1,30002639,0,0,0,0,0,0,0,0,0,0,1,0,0,0,3,1,0,0,0,0,0,0,0,0),(905,'2015-03-10 22:38:42','2015-10-11 16:46:33',1,30002393,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,2,0,0,1),(906,'2015-03-10 22:38:42','2015-10-11 16:46:33',1,30002383,4,0,0,0,0,0,1,0,0,0,0,0,0,2,0,0,0,0,0,0,1,1,0,0),(907,'2015-03-10 22:38:42','2015-10-11 16:46:33',1,30002419,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(908,'2015-03-10 22:38:42','2015-10-11 16:46:33',1,30005006,0,0,0,0,0,0,1,0,1,0,0,0,0,0,0,0,2,0,0,0,0,0,1,0),(909,'2015-03-10 22:38:42','2015-10-11 16:46:33',1,30005008,4,2,1,1,1,4,1,0,2,6,3,4,5,10,2,2,1,2,1,1,1,6,1,1),(910,'2015-03-10 22:38:42','2015-03-10 22:38:42',1,30003585,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(911,'2015-03-10 22:38:42','2015-03-10 22:38:42',1,30002729,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(912,'2015-03-10 22:38:42','2015-10-11 16:46:33',1,30002107,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,0,0,0),(913,'2015-03-10 22:38:42','2015-10-11 16:46:33',1,30003535,0,0,4,0,1,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0),(914,'2015-03-10 22:38:42','2015-10-11 16:46:33',1,30002587,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(915,'2015-03-10 22:38:42','2015-03-10 22:38:42',1,30003903,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(916,'2015-03-10 22:38:42','2015-10-11 16:46:33',1,30004271,0,0,0,0,0,0,0,0,0,0,3,3,0,0,0,0,0,0,0,0,0,0,0,0),(917,'2015-03-10 22:38:42','2015-10-11 16:46:33',1,30001539,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(918,'2015-03-10 22:38:42','2015-03-10 22:38:42',1,30005292,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(919,'2015-03-10 22:38:42','2015-10-11 16:46:33',1,30003600,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1),(920,'2015-03-10 22:38:42','2015-03-10 22:38:42',1,30000760,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(921,'2015-03-10 22:38:42','2015-03-10 22:38:42',1,30002933,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(922,'2015-03-10 22:38:42','2015-10-11 16:46:33',1,30000061,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0),(923,'2015-03-10 22:38:42','2015-03-10 22:38:42',1,30002220,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(924,'2015-03-10 22:38:42','2015-10-11 16:46:33',1,30003862,0,0,0,0,0,0,2,0,0,0,0,0,0,5,0,4,7,2,0,0,4,8,3,0),(925,'2015-03-10 22:38:42','2015-10-11 16:46:33',1,30003787,8,2,6,1,2,2,1,2,2,0,5,13,1,2,6,10,8,3,4,5,17,0,4,6),(926,'2015-03-10 22:38:42','2015-10-11 16:46:33',1,30002658,0,0,1,0,0,0,0,1,0,1,1,0,2,0,1,1,0,0,1,0,1,0,0,0),(927,'2015-03-10 22:38:42','2015-10-11 16:46:33',1,30003404,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,1,1,0,0,0,0,0,0,0),(928,'2015-03-10 22:38:42','2015-10-11 16:46:33',1,30004323,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0),(929,'2015-03-10 22:38:42','2015-03-10 22:38:42',1,30000691,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(930,'2015-03-10 22:38:42','2015-10-11 16:46:33',1,30002247,0,0,0,6,0,0,0,0,0,0,0,5,0,1,0,0,0,0,0,0,0,0,1,0),(931,'2015-03-10 22:38:42','2015-10-11 16:46:33',1,30004082,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,1,0,0,0),(932,'2015-03-10 22:38:42','2015-10-11 16:46:33',1,30005196,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,2,0,3,1,0,0,0,0),(933,'2015-03-10 22:38:42','2015-10-11 16:46:33',1,30001697,0,0,0,0,0,0,0,1,0,0,0,0,0,1,0,0,0,0,0,0,0,2,0,0),(934,'2015-03-10 22:38:42','2015-10-11 16:46:33',1,30002266,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0),(935,'2015-03-10 22:38:42','2015-10-11 16:46:33',1,30004279,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(936,'2015-03-10 22:38:42','2015-10-11 16:46:33',1,30001649,1,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,1,1,0,0,0,1,0,0),(937,'2015-03-10 22:38:42','2015-03-10 22:38:42',1,30001741,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(938,'2015-03-10 22:38:42','2015-10-11 16:46:33',1,30045328,1,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0),(939,'2015-03-10 22:38:42','2015-10-11 16:46:33',1,30000125,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,8,0,0,0,0,0,0,0),(940,'2015-03-10 22:38:42','2015-10-11 16:46:33',1,30002752,0,1,0,0,0,2,0,0,0,0,0,0,0,0,0,0,1,0,0,1,1,0,0,0),(941,'2015-03-10 22:38:42','2015-03-10 22:38:42',1,30000933,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(942,'2015-03-10 22:38:42','2015-10-11 16:46:33',1,30003015,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1),(943,'2015-03-10 22:38:42','2015-03-10 22:38:42',1,30002289,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(944,'2015-03-10 22:38:42','2015-10-11 16:46:33',1,30005307,0,1,4,0,1,2,1,0,1,1,1,1,0,0,1,0,0,0,0,1,1,0,0,0),(945,'2015-03-10 22:38:42','2015-10-11 16:46:33',1,30001418,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0),(946,'2015-03-10 22:38:42','2015-10-11 16:46:33',1,30002753,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,0),(947,'2015-03-10 22:38:42','2015-10-11 16:46:33',1,30003566,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,1),(948,'2015-03-10 22:38:42','2015-10-11 16:46:33',1,30002736,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,1,1,0,0,0,0,2,1),(949,'2015-03-10 22:38:42','2015-03-10 22:38:42',1,30003895,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(950,'2015-03-10 22:38:42','2015-10-11 16:46:33',1,30000185,1,4,5,0,2,4,1,1,2,0,8,8,0,1,8,7,2,1,1,1,2,1,1,0),(951,'2015-03-10 22:38:42','2015-10-11 16:46:33',1,30001404,3,1,3,2,1,0,0,0,0,0,2,2,0,2,2,1,0,3,1,1,2,2,0,1),(952,'2015-03-10 22:38:42','2015-10-11 16:46:33',1,30000166,0,0,1,1,0,0,0,0,0,1,0,0,0,0,0,0,0,0,1,1,0,1,0,0),(953,'2015-03-10 22:38:42','2015-03-10 22:38:42',1,30002222,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(954,'2015-03-10 22:38:42','2015-10-11 16:46:33',1,30001431,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0),(955,'2015-03-10 22:38:42','2015-10-11 16:46:33',1,30045340,8,4,10,6,6,3,2,2,5,0,3,3,0,2,1,0,0,2,1,1,12,0,0,0),(956,'2015-03-10 22:38:42','2015-10-11 16:46:33',1,30001414,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,1),(957,'2015-03-10 22:38:42','2015-10-11 16:46:33',1,30001289,0,2,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0),(958,'2015-03-10 22:38:42','2015-10-11 16:46:33',1,30004717,0,0,0,0,0,0,0,0,1,0,1,0,0,0,1,1,0,0,0,0,0,0,0,0),(959,'2015-03-10 22:38:42','2015-03-10 22:38:42',1,30004277,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(960,'2015-03-10 22:38:42','2015-03-10 22:38:42',1,30005098,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(961,'2015-03-10 22:38:42','2015-03-10 22:38:42',1,30003291,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(962,'2015-03-10 22:38:42','2015-10-11 16:46:33',1,30002992,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1),(963,'2015-03-10 22:38:42','2015-10-11 16:46:33',1,30000088,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,3,0),(964,'2015-03-10 22:38:42','2015-03-10 22:38:42',1,30004147,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(965,'2015-03-10 22:38:42','2015-10-11 16:46:33',1,30000065,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0),(966,'2015-03-10 22:38:42','2015-10-11 16:46:33',1,30002197,0,0,0,4,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(967,'2015-03-10 22:38:42','2015-03-10 22:38:42',1,30015042,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(968,'2015-03-10 22:38:42','2015-10-11 16:46:33',1,30011407,20,4,16,12,14,15,9,2,4,13,18,21,17,11,26,18,21,12,10,16,11,21,18,7),(969,'2015-03-10 22:38:42','2015-10-11 16:46:33',1,30045342,7,3,25,9,2,0,4,4,9,1,8,2,10,16,10,11,3,1,0,8,12,16,5,10),(970,'2015-03-10 22:38:42','2015-10-11 16:46:33',1,30003479,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0),(971,'2015-03-10 22:38:42','2015-10-11 16:46:33',1,30000178,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,2,2,0,0,0,0,0,0,2),(972,'2015-03-10 22:38:42','2015-10-11 16:46:33',1,30000200,0,0,0,0,0,0,0,0,0,0,0,1,1,1,0,0,0,0,0,0,0,0,2,0),(973,'2015-03-10 22:38:42','2015-10-11 16:46:33',1,30001382,0,0,0,1,0,0,0,0,0,0,0,0,0,0,5,3,0,0,0,0,0,3,0,1),(974,'2015-03-10 22:38:42','2015-10-11 16:46:33',1,30000163,2,1,3,1,1,0,1,0,0,1,0,0,0,0,0,0,0,0,0,2,0,0,1,1),(975,'2015-03-10 22:38:42','2015-10-11 16:46:33',1,30000003,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,2,1,2,0),(976,'2015-03-10 22:38:42','2015-03-10 22:38:42',1,30001534,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(977,'2015-03-10 22:38:42','2015-10-11 16:46:33',1,30004578,0,0,0,0,0,0,0,0,0,12,0,0,0,0,1,1,0,0,0,0,0,0,0,0),(978,'2015-03-10 22:38:42','2015-10-11 16:46:33',1,30002652,1,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(979,'2015-03-10 22:38:42','2015-10-11 16:46:33',1,30003042,1,0,1,0,0,0,2,0,0,0,0,0,2,0,3,1,0,0,0,0,1,0,0,0),(980,'2015-03-10 22:38:42','2015-10-11 16:46:33',1,30002512,7,10,6,0,1,0,0,0,0,1,0,1,1,0,1,1,1,0,0,1,0,4,0,0),(981,'2015-03-10 22:38:42','2015-10-11 16:46:33',1,30005225,0,0,0,1,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,0,0,0,0),(982,'2015-03-10 22:38:42','2015-10-11 16:46:33',1,30003854,0,1,1,1,0,0,1,2,1,0,0,0,0,0,1,0,0,0,1,3,0,1,2,0),(983,'2015-03-10 22:38:42','2015-03-10 22:38:42',1,30002338,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(984,'2015-03-10 22:38:42','2015-10-11 16:46:33',1,30003415,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0),(985,'2015-03-10 22:38:42','2015-10-11 16:46:33',1,30002216,0,0,0,2,0,0,0,0,0,1,0,0,0,0,1,0,0,1,0,9,3,1,0,2),(986,'2015-03-10 22:38:42','2015-10-11 16:46:33',1,30003464,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,2,0,0,0,3),(987,'2015-03-10 22:38:42','2015-10-11 16:46:33',1,30003379,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0),(988,'2015-03-10 22:38:42','2015-10-11 16:46:33',1,30003837,10,0,5,12,6,9,0,0,3,1,4,2,1,6,3,1,5,1,0,2,3,4,5,1),(989,'2015-03-10 22:38:42','2015-10-11 16:46:33',1,30003416,0,0,0,0,1,1,0,0,0,0,0,0,0,1,1,0,0,0,0,0,0,0,0,0),(990,'2015-03-10 22:38:42','2015-10-11 16:46:33',1,30005302,0,2,1,2,0,0,0,0,2,1,0,0,0,1,0,0,0,0,0,0,0,1,2,0),(991,'2015-03-10 22:38:42','2015-10-11 16:46:33',1,30005304,1,2,2,0,0,0,1,1,0,1,0,0,0,1,0,0,0,1,0,0,0,3,1,0),(992,'2015-03-10 22:38:42','2015-10-11 16:46:33',1,30003380,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(993,'2015-03-10 22:38:42','2015-10-11 16:46:33',1,30003811,0,0,0,0,0,0,2,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0),(994,'2015-03-10 22:38:42','2015-10-11 16:46:33',1,30004972,4,0,7,2,0,0,0,1,1,1,1,2,1,3,4,2,2,0,2,3,3,1,0,1),(995,'2015-03-10 22:38:42','2015-10-11 16:46:33',1,30002698,0,1,0,1,0,0,0,1,0,1,0,0,1,0,0,0,0,0,1,0,1,0,0,0),(996,'2015-03-10 22:38:42','2015-10-11 16:46:33',1,30002754,0,8,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,2,0,0,0),(997,'2015-03-10 22:38:42','2015-10-11 16:46:33',1,30002712,1,0,0,0,0,0,0,0,0,0,1,0,0,1,0,0,0,0,0,1,0,1,0,0),(998,'2015-03-10 22:38:42','2015-10-11 16:46:33',1,30003521,2,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(999,'2015-03-10 22:38:42','2015-10-11 16:46:33',1,30000034,1,2,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0),(1000,'2015-03-10 22:38:42','2015-10-11 16:46:33',1,30004995,0,0,0,5,0,0,0,0,0,0,0,0,0,1,0,0,0,2,0,0,0,0,0,0),(1001,'2015-03-10 22:38:42','2015-10-11 16:46:33',1,30005009,0,0,0,0,0,0,0,0,0,0,0,0,2,0,0,0,0,0,0,0,0,0,0,0),(1002,'2015-03-10 22:38:42','2015-10-11 16:46:33',1,30002664,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,1,0),(1003,'2015-03-10 22:38:42','2015-10-11 16:46:33',1,30002727,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,1,1,0,0),(1004,'2015-03-10 22:38:42','2015-10-11 16:46:33',1,30003850,0,2,2,3,6,5,4,3,1,0,0,0,0,1,0,0,0,1,0,0,0,2,2,2),(1005,'2015-03-10 22:38:42','2015-10-11 16:46:33',1,30003800,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,1,0,0,0),(1006,'2015-03-10 22:38:42','2015-10-11 16:46:33',1,30001730,0,0,1,5,0,0,0,0,0,0,0,0,0,2,0,0,0,0,0,0,0,0,0,0),(1007,'2015-03-10 22:38:42','2015-10-11 16:46:33',1,30003841,1,1,0,1,0,0,2,0,0,1,0,0,0,1,1,0,0,1,2,0,0,0,0,0),(1008,'2015-03-10 22:38:42','2015-10-11 16:46:33',1,30002678,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(1009,'2015-03-10 22:38:42','2015-10-11 16:46:33',1,30002407,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0),(1010,'2015-03-10 22:38:42','2015-10-11 16:46:33',1,30003389,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0),(1011,'2015-03-10 22:38:42','2015-10-11 16:46:33',1,30003917,2,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(1012,'2015-03-10 22:38:42','2015-10-11 16:46:33',1,30002537,3,1,5,5,3,5,4,3,2,2,4,2,2,12,5,3,6,1,7,5,5,16,9,4),(1013,'2015-03-10 22:38:42','2015-10-11 16:46:33',1,30004983,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0),(1014,'2015-03-10 22:38:42','2015-10-11 16:46:33',1,30002187,12,14,35,28,12,10,20,13,11,4,17,19,16,13,10,20,20,5,11,25,15,11,13,9),(1015,'2015-03-10 22:38:42','2015-10-11 16:46:33',1,30003848,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,2,0,0,0,0,0,0,0,0),(1016,'2015-03-10 22:38:42','2015-10-11 16:46:33',1,30003012,0,0,0,0,0,0,2,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0),(1017,'2015-03-10 22:38:42','2015-10-11 16:46:33',1,30002644,1,0,0,0,0,0,0,0,0,0,0,0,2,0,1,0,0,0,0,1,0,0,0,0),(1018,'2015-03-10 22:38:42','2015-10-11 16:46:33',1,30005036,0,0,0,0,0,0,0,5,4,0,0,0,1,1,0,0,0,0,0,0,0,1,1,1),(1019,'2015-03-10 22:38:42','2015-10-11 16:46:33',1,30002511,0,0,0,1,0,0,0,0,0,0,0,0,1,0,1,1,0,0,0,0,1,0,0,0),(1020,'2015-03-10 22:38:42','2015-10-11 16:46:33',1,30005035,1,1,8,1,4,3,1,3,0,13,2,0,0,14,9,7,5,1,1,4,2,4,0,0),(1021,'2015-03-10 22:38:42','2015-10-11 16:46:33',1,30002547,4,5,1,1,0,0,1,4,0,1,3,3,2,1,0,0,0,0,1,1,1,0,3,1),(1022,'2015-03-10 22:38:42','2015-10-11 16:46:33',1,30002055,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0),(1023,'2015-03-10 22:38:42','2015-10-11 16:46:33',1,30003480,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0),(1024,'2015-03-10 22:38:42','2015-10-11 16:46:33',1,30005329,0,0,0,1,0,0,1,0,0,0,1,0,1,1,1,1,0,0,0,0,1,1,0,0),(1025,'2015-03-10 22:38:42','2015-03-10 22:38:42',1,30003847,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(1026,'2015-03-10 22:38:42','2015-03-10 22:38:42',1,30000058,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(1027,'2015-03-10 22:38:42','2015-10-11 16:46:33',1,30001392,1,2,0,0,1,0,0,0,0,7,3,4,1,3,0,1,2,1,0,0,0,0,2,1),(1028,'2015-03-10 22:38:42','2015-10-11 16:46:33',1,30005311,2,0,0,1,1,0,0,0,0,0,0,0,0,0,0,0,0,1,1,1,0,0,1,0),(1029,'2015-03-10 22:38:42','2015-03-10 22:38:42',1,30004527,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(1030,'2015-03-10 22:38:42','2015-10-11 16:46:33',1,30003552,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1),(1031,'2015-03-10 22:38:42','2015-03-10 22:38:42',1,30005279,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(1032,'2015-03-10 22:38:42','2015-03-10 22:38:42',1,30004301,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(1033,'2015-03-10 22:38:42','2015-10-11 16:46:33',1,30003398,0,0,0,0,0,0,0,0,0,1,4,4,1,0,0,0,0,0,0,0,1,0,0,0),(1034,'2015-03-10 22:38:42','2015-10-11 16:46:33',1,30003840,0,5,6,1,0,4,4,0,2,0,1,1,0,2,1,3,3,2,2,2,5,2,3,9),(1035,'2015-03-10 22:38:42','2015-10-11 16:46:33',1,30003571,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0),(1036,'2015-03-10 22:38:42','2015-10-11 16:46:33',1,30003485,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,1,0,0,0),(1037,'2015-03-10 22:38:42','2015-10-11 16:46:33',1,30005028,0,1,0,0,0,0,1,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0),(1038,'2015-03-10 22:38:42','2015-10-11 16:46:33',1,30005049,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,3,3,0,0,0),(1039,'2015-03-10 22:38:42','2015-10-11 16:46:33',1,30005022,0,0,0,0,0,0,0,0,0,0,2,0,0,0,0,0,0,2,0,0,0,0,0,0),(1040,'2015-03-10 22:38:42','2015-10-11 16:46:33',1,30003062,0,0,0,0,0,0,0,0,0,1,0,1,0,1,0,0,0,0,0,0,1,0,0,0),(1041,'2015-03-10 22:38:42','2015-10-11 16:46:33',1,30005264,0,1,0,0,0,0,0,0,1,1,0,0,0,0,0,0,0,0,0,0,0,2,1,1),(1042,'2015-03-10 22:38:42','2015-10-11 16:46:33',1,30003046,5,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,4,0,0,5,2,5,4,5),(1043,'2015-03-10 22:38:42','2015-10-11 16:46:33',1,30002051,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,1,0,0,0,0),(1044,'2015-03-10 22:38:42','2015-10-11 16:46:33',1,30003515,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0),(1045,'2015-03-10 22:38:42','2015-10-11 16:46:33',1,30001439,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,0),(1046,'2015-03-10 22:38:42','2015-10-11 16:46:33',1,30001647,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,4,9,0,0,1,0,16,0,2),(1047,'2015-03-10 22:38:42','2015-10-11 16:46:33',1,30003071,0,0,4,1,3,4,1,0,0,2,0,0,0,1,1,1,0,0,1,0,0,0,1,0),(1048,'2015-03-10 22:38:42','2015-10-11 16:46:33',1,30025042,0,0,1,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0),(1049,'2015-03-10 22:38:42','2015-10-11 16:46:33',1,30004989,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0),(1050,'2015-03-10 22:38:42','2015-10-11 16:46:33',1,30003791,0,0,0,1,1,0,1,2,0,0,0,2,0,0,1,1,0,0,0,1,0,1,1,1),(1051,'2015-03-10 22:38:42','2015-10-11 16:46:33',1,30002776,0,0,0,1,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,1,0,2),(1052,'2015-03-10 22:38:42','2015-10-11 16:46:33',1,30005326,1,1,0,0,0,0,0,0,0,0,1,0,1,0,1,0,0,0,1,0,0,0,0,0),(1053,'2015-03-10 22:38:42','2015-10-11 16:46:33',1,30004291,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(1054,'2015-03-10 22:38:42','2015-10-11 16:46:33',1,30005309,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,2,1,0,0,0,1,0,0),(1055,'2015-03-10 22:38:42','2015-10-11 16:46:33',1,30004104,0,1,0,0,0,0,0,0,0,1,1,1,0,0,0,0,0,0,0,0,0,0,0,0),(1056,'2015-03-10 22:38:42','2015-10-11 16:46:33',1,30002081,0,0,0,0,0,0,0,0,0,3,0,2,1,0,0,0,0,0,0,0,0,0,0,0),(1057,'2015-03-10 22:38:42','2015-03-10 22:38:42',1,30003440,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(1058,'2015-03-10 22:38:42','2015-10-11 16:46:33',1,30000132,0,0,1,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,0,0,0,0),(1059,'2015-03-10 22:38:42','2015-10-11 16:46:33',1,30002669,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,0,0,0,0,0,0,0),(1060,'2015-03-10 22:38:42','2015-03-10 22:38:42',1,30003426,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(1061,'2015-03-10 22:38:42','2015-10-11 16:46:33',1,30005261,0,0,1,4,4,2,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,6,0,1),(1062,'2015-03-10 22:38:42','2015-10-11 16:46:33',1,30001357,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,0,0,0,0,0,0,0),(1063,'2015-03-10 22:38:42','2015-10-11 16:46:33',1,30003051,4,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,1,0,0),(1064,'2015-03-10 22:38:42','2015-10-11 16:46:33',1,30002805,1,0,1,0,3,3,0,0,1,0,0,0,0,0,12,11,0,1,0,0,0,0,1,1),(1065,'2015-03-10 22:38:42','2015-10-11 16:46:33',1,30005249,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,9,9,0,0),(1066,'2015-03-10 22:38:42','2015-10-11 16:46:33',1,30005252,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,1,0,0),(1067,'2015-03-10 22:38:42','2015-03-10 22:38:42',1,30004006,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(1068,'2015-03-10 22:38:42','2015-10-11 16:46:33',1,30001216,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,1,0,1,2,0,1,0),(1069,'2015-03-10 22:38:42','2015-03-10 22:38:42',1,30021407,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(1070,'2015-03-10 22:38:42','2015-10-11 16:46:33',1,30002453,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,2,0,0,0,0),(1071,'2015-03-10 22:38:42','2015-10-11 16:46:33',1,30005216,1,1,94,1,0,0,0,0,0,0,1,1,3,3,1,3,3,1,0,0,6,1,3,12),(1072,'2015-03-10 22:38:42','2015-03-10 22:38:42',1,30001114,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(1073,'2015-03-10 22:38:42','2015-10-11 16:46:33',1,30004079,0,0,0,0,0,0,1,1,0,0,1,1,0,1,0,0,2,0,1,0,1,0,0,2),(1074,'2015-03-10 22:38:42','2015-03-10 22:38:42',1,30004124,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(1075,'2015-03-10 22:38:42','2015-10-11 16:46:33',1,30004576,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,1,1,0,1,0,0,0,0,0),(1076,'2015-03-10 22:38:42','2015-10-11 16:46:33',1,30005019,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,1,0,0,1,0,0),(1077,'2015-03-10 22:38:42','2015-10-11 16:46:33',1,30002565,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,1,0,0,0,0,0,0,0),(1078,'2015-03-10 22:38:42','2015-03-10 22:38:42',1,30003656,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(1079,'2015-03-10 22:38:42','2015-10-11 16:46:33',1,30001740,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,0),(1080,'2015-03-10 22:38:42','2015-10-11 16:46:33',1,30002551,0,0,0,0,0,1,0,0,0,0,0,0,1,0,0,0,0,1,1,0,0,0,0,0),(1081,'2015-03-10 22:38:42','2015-03-10 22:38:42',1,30002817,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(1082,'2015-03-10 22:38:42','2015-10-11 16:46:33',1,30000092,0,0,0,0,0,0,0,1,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0),(1083,'2015-03-10 22:38:42','2015-10-11 16:46:33',1,30004994,2,1,0,0,0,2,0,0,5,0,0,0,1,0,0,1,4,1,0,1,0,1,0,0),(1084,'2015-03-10 22:38:42','2015-03-10 22:38:42',1,30003590,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(1085,'2015-03-10 22:38:42','2015-10-11 16:46:33',1,30002977,0,0,0,1,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0),(1086,'2015-03-10 22:38:42','2015-10-11 16:46:33',1,30003487,3,0,2,0,0,0,2,0,0,0,1,0,2,0,1,0,0,0,0,0,0,0,0,0),(1087,'2015-03-10 22:38:42','2015-03-10 22:38:42',1,30004669,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(1088,'2015-03-10 22:38:42','2015-03-10 22:38:42',1,30003824,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(1089,'2015-03-10 22:38:42','2015-10-11 16:46:33',1,30002702,0,0,0,0,1,1,1,0,0,2,1,0,0,0,1,1,0,0,1,0,0,1,0,2),(1090,'2015-03-10 22:38:42','2015-10-11 16:46:33',1,30003030,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1),(1091,'2015-03-10 22:38:42','2015-10-11 16:46:33',1,30002058,0,2,2,2,0,0,1,0,0,10,3,2,0,9,3,3,7,6,7,3,6,6,9,5),(1092,'2015-03-10 22:38:42','2015-10-11 16:46:33',1,30002648,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1),(1093,'2015-03-10 22:38:42','2015-10-11 16:46:33',1,30003852,0,3,2,2,1,0,1,1,0,1,0,0,0,4,1,0,1,0,0,1,0,0,1,1),(1094,'2015-03-10 22:38:42','2015-10-11 16:46:33',1,30004118,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(1095,'2015-03-10 22:38:42','2015-10-11 16:46:33',1,30002231,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,3,0),(1096,'2015-03-10 22:38:42','2015-10-11 16:46:33',1,30000099,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0),(1097,'2015-03-10 22:38:42','2015-10-11 16:46:33',1,30002244,0,0,0,0,0,0,0,0,0,2,3,0,0,1,0,0,0,0,0,0,0,0,1,0),(1098,'2015-03-10 22:38:42','2015-10-11 16:46:33',1,30000656,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0),(1099,'2015-03-10 22:38:42','2015-10-11 16:46:33',1,30002080,0,0,0,0,1,0,0,0,0,0,2,2,0,0,0,0,0,1,0,1,0,0,0,0),(1100,'2015-03-10 22:38:42','2015-03-10 22:38:42',1,30005239,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(1101,'2015-03-10 22:38:42','2015-10-11 16:46:33',1,30003595,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0),(1102,'2015-03-10 22:38:42','2015-10-11 16:46:33',1,30001704,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(1103,'2015-03-10 22:38:42','2015-10-11 16:46:33',1,30003411,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,1,0,0,0,0),(1104,'2015-03-10 22:38:42','2015-10-11 16:46:33',1,30003374,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0),(1105,'2015-03-10 22:38:42','2015-03-10 22:38:42',1,30002205,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(1106,'2015-03-10 22:38:42','2015-10-11 16:46:33',1,30003009,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0),(1107,'2015-03-10 22:38:42','2015-10-11 16:46:33',1,30002066,0,0,3,0,4,6,1,0,3,1,9,3,3,3,2,0,2,0,7,3,3,5,0,1),(1108,'2015-03-10 22:38:42','2015-10-11 16:46:33',1,30000112,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0),(1109,'2015-03-10 22:38:42','2015-10-11 16:46:33',1,30005001,5,4,5,4,5,3,14,6,1,4,14,11,8,9,27,15,12,7,7,10,11,4,11,10),(1110,'2015-03-10 22:38:42','2015-10-11 16:46:33',1,30002064,0,0,0,0,0,0,0,0,0,2,3,1,1,1,2,2,1,0,1,1,1,7,1,0),(1111,'2015-03-10 22:38:42','2015-10-11 16:46:33',1,30002240,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0),(1112,'2015-03-10 22:38:42','2015-10-11 16:46:33',1,30005330,0,0,0,0,2,0,0,0,0,0,0,0,0,1,2,3,2,0,0,0,0,0,0,0),(1113,'2015-03-10 22:38:42','2015-10-11 16:46:33',1,30002253,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,0,0,0),(1114,'2015-03-10 22:38:42','2015-10-11 16:46:33',1,30002687,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0),(1115,'2015-03-10 22:38:42','2015-10-11 16:46:33',1,30003556,1,0,0,0,0,0,1,0,0,0,1,0,1,1,0,0,0,3,0,0,0,1,0,2),(1116,'2015-03-10 22:38:42','2015-10-11 16:46:33',1,30002278,0,0,0,0,0,0,0,0,0,1,1,1,0,0,0,0,0,0,0,0,0,0,0,0),(1117,'2015-03-10 22:38:42','2015-10-11 16:46:33',1,30001381,0,0,2,1,1,0,0,0,0,0,1,1,0,0,0,0,3,0,0,0,0,0,0,0),(1118,'2015-03-10 22:38:42','2015-10-11 16:46:33',1,30003007,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0),(1119,'2015-03-10 22:38:42','2015-10-11 16:46:33',1,30002078,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,1,0,0),(1120,'2015-03-10 22:38:42','2015-10-11 16:46:33',1,30005086,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1),(1121,'2015-03-10 22:38:42','2015-10-11 16:46:33',1,30002960,1,0,2,3,1,3,5,0,13,3,1,3,2,1,3,1,2,2,1,1,0,0,0,2),(1122,'2015-03-10 22:38:42','2015-03-10 22:38:42',1,30003885,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(1123,'2015-03-10 22:38:42','2015-10-11 16:46:33',1,30005065,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0),(1124,'2015-03-10 22:38:42','2015-10-11 16:46:33',1,30003921,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0),(1125,'2015-03-10 22:38:42','2015-10-11 16:46:33',1,30000012,0,0,0,0,0,1,0,0,1,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0),(1126,'2015-03-10 22:38:42','2015-10-11 16:46:33',1,30045332,6,0,3,1,0,0,0,0,0,1,1,1,2,1,1,1,2,1,1,0,0,6,5,1),(1127,'2015-03-10 22:38:42','2015-10-11 16:46:33',1,30005251,0,0,0,0,0,0,0,0,0,0,1,1,1,1,0,0,0,0,0,0,0,0,0,0),(1128,'2015-03-10 22:38:42','2015-10-11 16:46:33',1,30001689,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0),(1129,'2015-03-10 22:38:42','2015-10-11 16:46:33',1,30002084,1,1,0,0,1,0,0,1,0,1,6,4,2,8,5,0,1,6,1,0,0,0,0,1),(1130,'2015-03-10 22:38:42','2015-10-11 16:46:33',1,30001708,0,3,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,1,1,4,0,0),(1131,'2015-03-10 22:38:42','2015-03-10 22:38:42',1,30003384,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(1132,'2015-03-10 22:38:42','2015-10-11 16:46:33',1,30000084,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,2,0),(1133,'2015-03-10 22:38:42','2015-10-11 16:46:33',1,30002978,0,2,0,0,0,0,0,0,0,0,0,1,0,1,1,0,0,0,0,1,0,0,1,0),(1134,'2015-03-10 22:38:42','2015-10-11 16:46:33',1,30003491,3,6,0,1,0,1,1,0,7,1,1,4,0,2,1,0,0,3,0,0,0,1,0,3),(1135,'2015-03-10 22:38:42','2015-10-11 16:46:33',1,30003890,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,0,0,0,0,0,0),(1136,'2015-03-10 22:38:42','2015-10-11 16:46:33',1,30045311,0,0,1,4,1,1,0,0,1,0,0,0,0,0,0,0,0,0,0,0,1,1,1,0),(1137,'2015-03-10 22:38:42','2015-10-11 16:46:33',1,30003919,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,1,0,0,0,0,0,0),(1138,'2015-03-10 22:38:42','2015-10-11 16:46:33',1,30003886,1,0,0,0,0,0,0,2,0,1,1,3,0,0,0,0,0,0,0,0,0,0,0,0),(1139,'2015-03-10 22:38:42','2015-10-11 16:46:33',1,30005214,0,0,4,1,1,1,0,1,0,0,0,0,0,0,2,3,1,0,0,0,0,0,0,0),(1140,'2015-03-10 22:38:42','2015-03-10 22:38:42',1,30000095,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(1141,'2015-03-10 22:38:42','2015-10-11 16:46:33',1,30004093,0,1,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0),(1142,'2015-03-10 22:38:42','2015-10-11 16:46:33',1,30002272,0,1,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,2,0,1,0,0,0,0),(1143,'2015-03-10 22:38:42','2015-03-10 22:38:42',1,30004156,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(1144,'2015-03-10 22:38:42','2015-10-11 16:46:33',1,30000075,0,3,0,0,0,0,1,0,0,0,0,0,0,0,2,2,0,0,1,2,0,1,0,0),(1145,'2015-03-10 22:38:42','2015-10-11 16:46:33',1,30005224,4,0,0,0,0,0,0,1,0,0,0,1,1,1,0,0,0,0,0,0,0,0,0,0),(1146,'2015-03-10 22:38:42','2015-10-11 16:46:33',1,30001723,0,0,0,0,0,1,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(1147,'2015-03-10 22:38:42','2015-10-11 16:46:33',1,30002724,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(1148,'2015-03-10 22:38:42','2015-10-11 16:46:33',1,30000113,0,0,0,0,0,0,1,0,0,0,0,0,0,1,1,1,1,0,0,0,0,1,0,0),(1149,'2015-03-10 22:38:42','2015-10-11 16:46:33',1,30045323,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1),(1150,'2015-03-10 22:38:42','2015-10-11 16:46:33',1,30001419,2,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(1151,'2015-03-10 22:38:42','2015-10-11 16:46:33',1,30005077,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0),(1152,'2015-03-10 22:38:42','2015-10-11 16:46:33',1,30002557,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(1153,'2015-03-10 22:38:42','2015-10-11 16:46:33',1,30003031,0,0,1,0,2,2,0,0,0,1,2,1,0,0,0,0,0,0,1,0,0,0,0,1),(1154,'2015-03-10 22:38:42','2015-10-11 16:46:33',1,30003856,0,0,0,0,0,0,0,0,0,0,1,2,0,0,0,0,0,0,0,0,0,0,1,1),(1155,'2015-03-10 22:38:42','2015-03-10 22:38:42',1,30002701,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(1156,'2015-03-10 22:38:42','2015-10-11 16:46:33',1,30002695,1,0,0,0,0,0,2,0,0,3,0,1,0,0,0,0,0,0,0,1,0,1,0,0),(1157,'2015-03-10 22:38:42','2015-10-11 16:46:33',1,30002489,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,1,0,4,1,0),(1158,'2015-03-10 22:38:42','2015-10-11 16:46:33',1,30005024,2,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(1159,'2015-03-10 22:38:42','2015-10-11 16:46:33',1,30003038,0,0,0,0,0,0,5,0,0,0,0,0,1,1,0,0,0,0,1,2,0,0,0,0),(1160,'2015-03-10 22:38:42','2015-10-11 16:46:33',1,30002389,0,0,0,0,1,0,3,0,0,11,1,4,0,1,1,1,2,0,0,1,0,0,0,1),(1161,'2015-03-10 22:38:42','2015-10-11 16:46:33',1,30005010,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,1,0,0),(1162,'2015-03-10 22:38:42','2015-03-10 22:38:42',1,30003455,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(1163,'2015-03-10 22:38:42','2015-10-11 16:46:33',1,30001678,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,1,1,0,0,0),(1164,'2015-03-10 22:38:42','2015-03-10 22:38:42',1,30004654,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(1165,'2015-03-10 22:38:42','2015-10-11 16:46:33',1,30005197,0,0,0,0,0,0,0,0,0,0,0,0,0,2,0,0,0,0,0,0,0,0,1,0),(1166,'2015-03-10 22:38:42','2015-10-11 16:46:33',1,30005004,1,0,0,0,0,0,0,0,0,1,1,0,0,0,2,0,0,4,0,0,0,1,1,1),(1167,'2015-03-10 22:38:42','2015-10-11 16:46:33',1,30003273,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,0,0,0,0,0,1,0),(1168,'2015-03-10 22:38:42','2015-03-10 22:38:42',1,30002834,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(1169,'2015-03-10 22:38:42','2015-10-11 16:46:33',1,30003827,0,1,0,4,1,0,0,0,0,0,0,0,1,1,1,0,1,0,0,0,1,0,4,1),(1170,'2015-03-10 22:38:42','2015-03-10 22:38:42',1,30002709,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(1171,'2015-03-10 22:38:42','2015-10-11 16:46:33',1,30003849,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,0,0,0,0,0),(1172,'2015-03-10 22:38:42','2015-03-10 22:38:42',1,30002684,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(1173,'2015-03-10 22:38:42','2015-10-11 16:46:33',1,30002395,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0),(1174,'2015-03-10 22:38:42','2015-10-11 16:46:33',1,30002641,7,0,0,7,10,9,1,8,0,0,1,0,1,0,1,1,2,8,2,3,0,3,0,3),(1175,'2015-03-10 22:38:42','2015-10-11 16:46:33',1,30002542,2,1,9,3,0,1,3,1,0,11,10,1,1,8,2,1,1,1,4,6,9,17,5,14),(1176,'2015-03-10 22:38:42','2015-03-10 22:38:42',1,30002680,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(1177,'2015-03-10 22:38:42','2015-10-11 16:46:33',1,30003818,0,0,0,0,1,1,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(1178,'2015-03-10 22:38:42','2015-10-11 16:46:33',1,30001398,7,0,2,0,3,2,2,0,7,5,4,4,1,0,10,8,1,2,5,2,1,2,2,1),(1179,'2015-03-10 22:38:42','2015-10-11 16:46:33',1,30002059,0,1,0,0,0,0,1,0,0,0,0,0,2,1,0,0,0,0,0,0,3,0,2,0),(1180,'2015-03-10 22:38:42','2015-10-11 16:46:33',1,30002657,7,0,0,0,0,0,1,1,0,1,0,1,1,0,0,0,0,0,1,1,2,2,0,1),(1181,'2015-03-10 22:38:42','2015-10-11 16:46:33',1,30003801,0,12,1,5,2,0,5,3,6,0,0,0,0,2,0,0,1,0,0,0,0,0,1,1),(1182,'2015-03-10 22:38:42','2015-10-11 16:46:33',1,30002716,0,1,0,2,2,3,0,1,2,0,0,0,0,1,0,0,0,0,0,0,0,0,0,1),(1183,'2015-03-10 22:38:42','2015-10-11 16:46:33',1,30003915,0,0,0,0,0,0,0,0,0,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0),(1184,'2015-03-10 22:38:42','2015-10-11 16:46:33',1,30002561,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0),(1185,'2015-03-10 22:38:42','2015-10-11 16:46:33',1,30001361,0,0,0,2,1,1,1,0,4,2,4,1,2,3,0,0,2,0,1,1,3,2,6,0),(1186,'2015-03-10 22:38:42','2015-10-11 16:46:33',1,30003821,0,0,0,0,0,0,0,0,0,0,0,0,0,2,0,0,0,0,0,0,0,0,0,0),(1187,'2015-03-10 22:38:42','2015-10-11 16:46:33',1,30002523,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,1,0,0,0,0,0,0,1),(1188,'2015-03-10 22:38:42','2015-10-11 16:46:33',1,30001411,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,1,0,0,0,0,0,0),(1189,'2015-03-10 22:38:42','2015-10-11 16:46:33',1,30001384,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,5,4,1,0,0,0,0,1,0),(1190,'2015-03-10 22:38:42','2015-10-11 16:46:33',1,30002656,2,1,1,0,0,0,0,1,1,0,1,0,0,3,0,0,0,0,0,0,0,0,0,0),(1191,'2015-03-10 22:38:42','2015-10-11 16:46:33',1,30002744,0,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0),(1192,'2015-03-10 22:38:42','2015-10-11 16:46:33',1,30004614,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0),(1193,'2015-03-10 22:38:42','2015-10-11 16:46:33',1,30004249,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0),(1194,'2015-03-10 22:38:42','2015-10-11 16:46:33',1,30002270,0,0,1,0,0,0,0,0,0,0,3,2,1,4,0,1,3,0,2,6,3,0,1,0),(1195,'2015-03-10 22:38:42','2015-10-11 16:46:33',1,30003843,0,0,0,1,0,0,0,0,0,0,0,0,1,0,2,1,0,0,1,0,4,0,0,0),(1196,'2015-03-10 22:38:42','2015-10-11 16:46:33',1,30003053,0,0,5,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0),(1197,'2015-03-10 22:38:42','2015-10-11 16:46:33',1,30002089,0,0,3,0,0,2,0,3,0,4,0,1,1,0,1,1,1,3,0,1,1,1,1,1),(1198,'2015-03-10 22:38:42','2015-10-11 16:46:33',1,30003047,1,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0),(1199,'2015-03-10 22:38:42','2015-10-11 16:46:33',1,30002530,0,0,0,1,0,0,0,1,1,0,0,0,0,0,1,1,0,0,0,0,0,0,0,0),(1200,'2015-03-10 22:38:42','2015-10-11 16:46:33',1,30005215,2,0,174,1,1,0,0,0,0,0,0,0,3,1,5,5,2,1,0,0,0,0,1,2),(1201,'2015-03-10 22:38:42','2015-03-10 22:38:42',1,30000860,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(1202,'2015-03-10 22:38:42','2015-10-11 16:46:33',1,30001203,0,0,0,0,0,0,1,0,0,12,2,1,1,5,6,10,8,3,0,6,21,10,30,11),(1203,'2015-03-10 22:38:42','2015-03-10 22:38:42',1,30004904,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(1204,'2015-03-10 22:38:42','2015-10-11 16:46:33',1,30003756,0,5,0,1,0,0,0,0,0,0,2,2,1,13,0,0,0,0,1,0,0,0,1,0),(1205,'2015-03-10 22:38:42','2015-10-11 16:46:33',1,30003746,0,0,1,2,0,1,0,0,1,2,0,0,2,1,0,2,2,0,4,0,2,3,1,1),(1206,'2015-03-10 22:38:42','2015-03-10 22:38:42',1,30005094,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(1207,'2015-03-10 22:38:42','2015-10-11 16:46:33',1,30003055,0,0,0,0,0,0,0,1,0,0,0,0,0,5,1,3,2,2,4,0,0,0,5,5),(1208,'2015-03-10 22:38:42','2015-10-11 16:46:33',1,30003093,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,2,0,0,0,0,0,0,0),(1209,'2015-03-10 22:38:42','2015-10-11 16:46:33',1,30002717,1,1,1,3,3,2,0,2,0,0,0,0,1,2,0,1,1,1,1,1,0,0,0,1),(1210,'2015-03-10 22:38:42','2015-03-10 22:38:42',1,30001342,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(1211,'2015-03-10 22:38:42','2015-03-10 22:38:42',1,30000672,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(1212,'2015-03-10 22:38:42','2015-03-10 22:38:42',1,30001070,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(1213,'2015-03-10 22:38:42','2015-03-10 22:38:42',1,30000265,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(1214,'2015-03-10 22:38:42','2015-10-11 16:46:33',1,30005275,0,0,0,0,0,0,0,0,0,0,0,0,1,0,1,1,0,1,0,0,0,0,0,2),(1215,'2015-03-10 22:38:42','2015-10-11 16:46:33',1,30003018,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(1216,'2015-03-10 22:38:42','2015-10-11 16:46:33',1,30001711,0,0,0,2,0,0,0,0,0,0,0,0,1,0,0,1,1,0,0,0,0,0,0,0),(1217,'2015-03-10 22:38:42','2015-03-10 22:38:42',1,30000920,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(1218,'2015-03-10 22:38:42','2015-10-11 16:46:33',1,30001705,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(1219,'2015-03-10 22:38:42','2015-10-11 16:46:33',1,30002265,0,0,0,0,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(1220,'2015-03-10 22:38:42','2015-10-11 16:46:33',1,30004450,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0),(1221,'2015-03-10 22:38:42','2015-03-10 22:38:42',1,30000716,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(1222,'2015-03-10 22:38:42','2015-03-10 22:38:42',1,30001944,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(1223,'2015-03-10 22:38:42','2015-03-10 22:38:42',1,30002334,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(1224,'2015-03-10 22:38:42','2015-10-11 16:46:33',1,30001156,0,0,1,0,0,0,0,1,1,0,4,34,5,2,11,6,15,3,6,1,5,3,0,1),(1225,'2015-03-10 22:38:42','2015-10-11 16:46:33',1,30000211,0,6,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0),(1226,'2015-03-10 22:38:42','2015-03-10 22:38:42',1,30000435,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(1227,'2015-03-10 22:38:42','2015-03-10 22:38:42',1,30004873,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(1228,'2015-03-10 22:38:42','2015-10-11 16:46:33',1,30004030,0,0,0,0,0,0,0,0,1,6,1,0,0,0,0,0,0,1,0,0,0,0,0,0),(1229,'2015-03-10 22:38:42','2015-10-11 16:46:33',1,30005160,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0),(1230,'2015-03-10 22:38:42','2015-10-11 16:46:33',1,30002029,1,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(1231,'2015-03-10 22:38:42','2015-03-10 22:38:42',1,30002108,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(1232,'2015-03-10 22:38:42','2015-03-10 22:38:42',1,30005088,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(1233,'2015-03-10 22:38:42','2015-03-10 22:38:42',1,30001321,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(1234,'2015-03-10 22:38:42','2015-10-11 16:46:33',1,30004040,3,1,0,1,1,1,2,0,1,1,3,3,0,0,0,0,0,0,0,0,0,0,0,0),(1235,'2015-03-10 22:38:42','2015-03-10 22:38:42',1,30000423,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(1236,'2015-03-10 22:38:42','2015-10-11 16:46:33',1,30000307,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(1237,'2015-03-10 22:38:42','2015-03-10 22:38:42',1,30003250,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(1238,'2015-03-10 22:38:42','2015-10-11 16:46:33',1,30002496,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0),(1239,'2015-03-10 22:38:42','2015-03-10 22:38:42',1,30001910,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(1240,'2015-03-10 22:38:42','2015-10-11 16:46:33',1,30004328,0,1,0,0,0,0,0,0,0,0,0,0,0,5,3,2,0,1,0,0,0,0,0,1),(1241,'2015-03-10 22:38:42','2015-10-11 16:46:33',1,30000817,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0),(1242,'2015-03-10 22:38:42','2015-10-11 16:46:33',1,30002143,3,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,2,0,0,0),(1243,'2015-03-10 22:38:42','2015-10-11 16:46:33',1,30002157,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0),(1244,'2015-03-10 22:38:42','2015-03-10 22:38:42',1,30000961,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(1245,'2015-03-10 22:38:42','2015-03-10 22:38:42',1,30002105,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(1246,'2015-03-10 22:38:42','2015-10-11 16:46:33',1,30000854,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0),(1247,'2015-03-10 22:38:42','2015-10-11 16:46:33',1,30000624,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(1248,'2015-03-10 22:38:42','2015-03-10 22:38:42',1,30004194,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(1249,'2015-03-10 22:38:42','2015-10-11 16:46:33',1,30001076,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(1250,'2015-03-10 22:38:42','2015-10-11 16:46:33',1,30000970,0,0,0,0,0,1,0,0,0,0,0,0,0,2,0,0,2,0,0,0,0,1,1,0),(1251,'2015-03-10 22:38:42','2015-10-11 16:46:33',1,30003730,0,0,1,0,0,0,2,0,2,0,0,0,0,0,0,0,0,0,0,0,0,1,1,5),(1252,'2015-03-10 22:38:42','2015-03-10 22:38:42',1,30000610,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(1253,'2015-03-10 22:38:42','2015-10-11 16:46:33',1,30001215,0,0,0,0,0,0,0,0,0,0,0,0,0,1,4,1,9,1,0,1,1,0,0,0),(1254,'2015-03-10 22:38:42','2015-03-10 22:38:42',1,30001611,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(1255,'2015-03-10 22:38:42','2015-03-10 22:38:42',1,30004532,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(1256,'2015-03-10 22:38:42','2015-03-10 22:38:42',1,30004590,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(1257,'2015-03-10 22:38:42','2015-03-10 22:38:42',1,30003180,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(1258,'2015-03-10 22:38:42','2015-10-11 16:46:33',1,30002850,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(1259,'2015-03-10 22:38:42','2015-03-10 22:38:42',1,30002165,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(1260,'2015-03-10 22:38:42','2015-03-10 22:38:42',1,30001115,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(1261,'2015-03-10 22:38:42','2015-03-10 22:38:42',1,30004599,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(1262,'2015-03-10 22:38:42','2015-03-10 22:38:42',1,30001346,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(1263,'2015-03-10 22:38:42','2015-03-10 22:38:42',1,30002860,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(1264,'2015-03-10 22:38:42','2015-10-11 16:46:33',1,30002436,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0),(1265,'2015-03-10 22:38:42','2015-03-10 22:38:42',1,30001555,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(1266,'2015-03-10 22:38:42','2015-10-11 16:46:33',1,30002012,9,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(1267,'2015-03-10 22:38:42','2015-03-10 22:38:42',1,30004848,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(1268,'2015-03-10 22:38:42','2015-03-10 22:38:42',1,30004346,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(1269,'2015-03-10 22:38:42','2015-03-10 22:38:42',1,30002110,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(1270,'2015-03-10 22:38:42','2015-03-10 22:38:42',1,30001529,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(1271,'2015-03-10 22:38:42','2015-10-11 16:46:33',1,30005127,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(1272,'2015-03-10 22:38:42','2015-10-11 16:46:33',1,30003601,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,8,0,0,0),(1273,'2015-03-10 22:38:42','2015-10-11 16:46:33',1,30003888,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0),(1274,'2015-03-10 22:38:42','2015-10-11 16:46:33',1,30003525,0,0,0,0,0,1,1,0,0,0,0,0,0,0,0,1,1,1,3,1,0,0,0,3),(1275,'2015-03-10 22:38:42','2015-10-11 16:46:33',1,30003502,0,0,2,0,0,0,4,3,0,0,1,0,0,0,0,3,5,0,0,0,1,0,0,1),(1276,'2015-03-10 22:38:42','2015-10-11 16:46:33',1,30000041,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,1,0,1,0,0,0,0,0),(1277,'2015-03-10 22:38:42','2015-10-11 16:46:33',1,30003910,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,0,0,0,0,0,0,0),(1278,'2015-03-10 22:38:42','2015-10-11 16:46:33',1,30004261,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0),(1279,'2015-03-10 22:38:42','2015-10-11 16:46:33',1,30002528,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,3,1,0,1,1),(1280,'2015-03-10 22:38:42','2015-10-11 16:46:33',1,30002634,2,2,0,3,1,1,0,1,2,1,0,0,2,2,3,2,2,1,3,3,3,3,2,2),(1281,'2015-03-10 22:38:42','2015-10-11 16:46:33',1,30002690,0,0,0,0,0,0,0,0,0,0,1,1,0,1,0,0,0,0,0,0,0,0,0,0),(1282,'2015-03-10 22:38:42','2015-10-11 16:46:33',1,30005294,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,3),(1283,'2015-03-10 22:38:42','2015-10-11 16:46:33',1,30005257,0,0,0,0,0,2,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0),(1284,'2015-03-10 22:38:42','2015-10-11 16:46:33',1,30004296,0,0,0,0,0,0,0,0,0,1,0,0,1,1,0,0,0,0,0,0,0,0,0,0),(1285,'2015-03-10 22:38:42','2015-10-11 16:46:33',1,30000085,0,0,0,0,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(1286,'2015-03-10 22:38:42','2015-10-11 16:46:33',1,30003920,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(1287,'2015-03-10 22:38:42','2015-03-10 22:38:42',1,30003548,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(1288,'2015-03-10 22:38:42','2015-10-11 16:46:33',1,30002071,1,1,1,0,0,0,0,0,0,1,1,1,0,0,1,2,3,0,0,3,1,1,1,1),(1289,'2015-03-10 22:38:42','2015-10-11 16:46:33',1,30003819,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,2,0,0,0,0,0),(1290,'2015-03-10 22:38:42','2015-10-11 16:46:33',1,30002683,1,1,0,0,0,0,0,0,0,0,1,2,0,0,0,0,0,0,0,0,0,0,0,0),(1291,'2015-03-10 22:38:42','2015-10-11 16:46:33',1,30003478,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0),(1292,'2015-03-10 22:38:42','2015-10-11 16:46:33',1,30002666,0,0,1,0,0,0,0,0,0,2,1,0,1,1,3,3,1,0,0,1,3,0,0,0),(1293,'2015-03-10 22:38:42','2015-10-11 16:46:33',1,30002199,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,1,0),(1294,'2015-03-10 22:38:42','2015-03-10 22:38:42',1,30003908,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(1295,'2015-03-10 22:38:42','2015-10-11 16:46:33',1,30001670,0,0,3,1,2,0,0,0,0,0,1,1,0,0,1,1,0,0,0,1,0,0,0,1),(1296,'2015-03-10 22:38:42','2015-10-11 16:46:33',1,30002700,1,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,1,0,0,0,0),(1297,'2015-03-10 22:38:42','2015-03-10 22:38:42',1,30000039,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(1298,'2015-03-10 22:38:42','2015-10-11 16:46:33',1,30004252,0,0,1,0,0,1,0,0,8,0,4,0,3,3,5,1,1,0,0,0,0,4,0,0),(1299,'2015-03-10 22:38:42','2015-03-10 22:38:42',1,30004851,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(1300,'2015-03-10 22:38:42','2015-03-10 22:38:42',1,30001976,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(1301,'2015-03-10 22:38:42','2015-10-11 16:46:33',1,30002498,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,3,0,0),(1302,'2015-03-10 22:38:42','2015-03-10 22:38:42',1,30005129,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(1303,'2015-03-10 22:38:42','2015-10-11 16:46:33',1,30002048,1,3,2,0,1,1,0,0,0,1,1,2,3,5,9,3,0,4,1,3,0,1,1,0),(1304,'2015-03-10 22:38:42','2015-10-11 16:46:33',1,30005234,1,0,1,0,0,0,0,0,0,0,0,0,0,3,0,0,0,4,0,1,3,1,0,1),(1305,'2015-03-10 22:38:42','2015-10-11 16:46:33',1,30000110,0,1,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(1306,'2015-03-10 22:38:42','2015-10-11 16:46:33',1,30003014,0,3,2,0,0,0,2,0,0,0,1,1,0,0,0,0,0,0,0,0,0,0,0,0),(1307,'2015-03-10 22:38:42','2015-10-11 16:46:33',1,30004138,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(1308,'2015-03-10 22:38:42','2015-10-11 16:46:33',1,30000109,0,0,2,0,0,0,1,0,0,0,1,1,0,0,0,0,0,0,0,0,1,1,2,0),(1309,'2015-03-10 22:38:42','2015-03-10 22:38:42',1,30001885,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(1310,'2015-03-10 22:38:42','2015-10-11 16:46:33',1,30004506,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(1311,'2015-03-10 22:38:42','2015-03-10 22:38:42',1,30000355,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(1312,'2015-03-10 22:38:42','2015-03-10 22:38:42',1,30004427,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(1313,'2015-03-10 22:38:42','2015-03-10 22:38:42',1,30002876,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(1314,'2015-03-10 22:38:42','2015-10-11 16:46:33',1,30004417,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0),(1315,'2015-03-10 22:38:42','2015-10-11 16:46:33',1,30005267,1,2,2,0,0,0,1,1,1,0,1,3,0,2,4,5,2,1,1,1,3,1,1,1),(1316,'2015-03-10 22:38:42','2015-10-11 16:46:33',1,30002282,1,5,0,0,0,0,0,0,0,1,0,0,0,0,2,1,0,0,0,0,2,0,1,1),(1317,'2015-03-10 22:38:42','2015-10-11 16:46:33',1,30004163,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(1318,'2015-03-10 22:38:42','2015-10-11 16:46:33',1,30002252,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,3,0,0,0),(1319,'2015-03-10 22:38:42','2015-10-11 16:46:33',1,30003040,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,1,1,2,4,1,0,0,0,0),(1320,'2015-03-10 22:38:42','2015-10-11 16:46:33',1,30000115,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,0,0),(1321,'2015-03-10 22:38:42','2015-10-11 16:46:33',1,30003561,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(1322,'2015-03-10 22:38:42','2015-03-10 22:38:42',1,30003555,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(1323,'2015-03-10 22:38:42','2015-03-10 22:38:42',1,30004444,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(1324,'2015-03-10 22:38:42','2015-03-10 22:38:42',1,30001469,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(1325,'2015-03-10 22:38:42','2015-03-10 22:38:42',1,30004422,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(1326,'2015-03-10 22:38:42','2015-10-11 16:46:33',1,30003757,0,3,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,1,0,0),(1327,'2015-03-10 22:38:42','2015-10-11 16:46:33',1,30004333,0,0,0,0,2,2,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(1328,'2015-03-10 22:38:42','2015-03-10 22:38:42',1,30001497,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(1329,'2015-03-10 22:38:42','2015-10-11 16:46:33',1,30003026,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(1330,'2015-03-10 22:38:42','2015-03-10 22:38:42',1,30004420,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(1331,'2015-03-10 22:38:42','2015-03-10 22:38:42',1,30000619,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(1332,'2015-03-10 22:38:42','2015-03-10 22:38:42',1,30002843,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(1333,'2015-03-10 22:38:42','2015-10-11 16:46:33',1,30003327,3,0,1,0,0,0,0,0,4,0,0,0,1,0,0,0,0,0,0,0,2,0,0,0),(1334,'2015-03-10 22:38:42','2015-03-10 22:38:42',1,30004539,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(1335,'2015-03-10 22:38:42','2015-10-11 16:46:33',1,30002438,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,1,0,0),(1336,'2015-03-10 22:38:42','2015-03-10 22:38:42',1,30002318,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(1337,'2015-03-10 22:38:42','2015-03-10 22:38:42',1,30004545,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(1338,'2015-03-10 22:38:42','2015-10-11 16:46:33',1,30002553,0,0,0,1,0,0,0,0,1,0,0,0,0,1,1,0,0,0,0,0,0,0,0,0),(1339,'2015-03-10 22:38:42','2015-10-11 16:46:33',1,30002649,0,0,1,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,1,0,0,0,0,0),(1340,'2015-03-10 22:38:42','2015-03-10 22:38:42',1,30003913,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(1341,'2015-03-10 22:38:42','2015-10-11 16:46:33',1,30003397,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1),(1342,'2015-03-10 22:38:42','2015-10-11 16:46:33',1,30002188,0,0,0,1,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,0,0,1),(1343,'2015-03-10 22:38:42','2015-10-11 16:46:33',1,30004106,0,0,0,0,0,0,0,0,0,5,1,0,0,0,0,0,0,0,0,0,0,0,0,0),(1344,'2015-03-10 22:38:42','2015-10-11 16:46:33',1,30002514,0,0,2,0,0,0,0,2,0,1,2,4,1,9,1,1,0,0,0,0,2,3,2,4),(1345,'2015-03-10 22:38:42','2015-10-11 16:46:33',1,30002387,0,0,1,0,1,0,0,0,0,0,0,0,0,0,0,4,7,0,0,0,1,0,0,1),(1346,'2015-03-10 22:38:42','2015-10-11 16:46:33',1,30002661,0,0,2,2,0,0,0,0,0,0,0,0,2,0,0,0,0,1,1,0,2,0,0,0),(1347,'2015-03-10 22:38:42','2015-10-11 16:46:33',1,30002238,0,0,0,0,1,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,2,0,0),(1348,'2015-03-10 22:38:42','2015-10-11 16:46:33',1,30002715,0,2,1,0,4,0,10,0,1,0,0,0,2,0,0,1,1,2,0,0,0,1,0,1),(1349,'2015-03-10 22:38:42','2015-10-11 16:46:33',1,30003574,0,0,0,0,0,0,0,0,0,0,0,0,0,2,0,0,0,0,0,0,1,0,0,0),(1350,'2015-03-10 22:38:42','2015-03-10 22:38:42',1,30000504,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(1351,'2015-03-10 22:38:42','2015-10-11 16:46:33',1,30001037,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0),(1352,'2015-03-10 22:38:42','2015-03-10 22:38:42',1,30003230,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(1353,'2015-03-10 22:38:42','2015-03-10 22:38:42',1,30000311,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(1354,'2015-03-10 22:38:42','2015-10-11 16:46:33',1,30001235,0,0,0,0,0,0,2,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(1355,'2015-03-10 22:38:42','2015-10-11 16:46:33',1,30002699,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,1,0,0,0,0,0,0),(1356,'2015-03-10 22:38:42','2015-10-11 16:46:33',1,30003789,1,2,1,1,0,0,0,2,0,0,1,1,1,0,0,0,2,1,0,0,0,0,1,0),(1357,'2015-03-10 22:38:42','2015-03-10 22:38:42',1,30003809,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(1358,'2015-03-10 22:38:42','2015-10-11 16:46:33',1,30005034,0,1,0,0,0,0,0,0,0,0,0,0,0,3,1,0,0,0,0,0,0,0,0,0),(1359,'2015-03-10 22:38:42','2015-10-11 16:46:33',1,30002067,0,0,0,0,1,1,1,1,0,0,0,0,1,0,1,1,0,0,0,0,0,0,0,0),(1360,'2015-03-10 22:38:42','2015-03-10 22:38:42',1,30000986,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(1361,'2015-03-10 22:38:42','2015-03-10 22:38:42',1,30003375,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(1362,'2015-03-10 22:38:42','2015-10-11 16:46:33',1,30002703,0,0,0,0,2,1,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,1),(1363,'2015-03-10 22:38:42','2015-10-11 16:46:33',1,30000643,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(1364,'2015-03-10 22:38:42','2015-10-11 16:46:33',1,30004399,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,0,0,0,0,0,0),(1365,'2015-03-10 22:38:42','2015-10-11 16:46:33',1,30000081,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,0,0,0,0,0,0,0,0,0),(1366,'2015-03-10 22:38:42','2015-10-11 16:46:33',1,30003866,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,1,4,0,1,0,1,3,4,0),(1367,'2015-03-10 22:38:42','2015-03-10 22:38:42',1,30002577,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(1368,'2015-03-10 22:38:42','2015-10-11 16:46:33',1,30004117,0,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(1369,'2015-03-10 22:38:42','2015-10-11 16:46:33',1,30001245,0,0,0,0,0,0,0,1,0,21,8,1,2,6,7,0,0,11,2,18,18,3,3,6),(1370,'2015-03-10 22:38:42','2015-03-10 22:38:42',1,30001286,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(1371,'2015-03-10 22:38:42','2015-03-10 22:38:42',1,30002828,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(1372,'2015-03-10 22:38:42','2015-03-10 22:38:42',1,30004804,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(1373,'2015-03-10 22:38:42','2015-10-11 16:46:33',1,30002440,2,13,5,1,0,0,1,0,0,7,16,18,0,7,2,0,2,3,6,2,4,1,2,3),(1374,'2015-03-10 22:38:42','2015-10-11 16:46:33',1,30004371,1,0,0,0,0,0,0,0,0,1,0,0,0,3,10,0,0,0,0,0,0,0,0,0),(1375,'2015-03-10 22:38:42','2015-03-10 22:38:42',1,30001629,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(1376,'2015-03-10 22:38:42','2015-10-11 16:46:33',1,30004029,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1),(1377,'2015-03-10 22:38:42','2015-03-10 22:38:42',1,30003993,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(1378,'2015-03-10 22:38:42','2015-03-10 22:38:42',1,30002305,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(1379,'2015-03-10 22:38:42','2015-10-11 16:46:33',1,30003138,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0),(1380,'2015-03-10 22:38:42','2015-10-11 16:46:33',1,30003328,0,0,0,0,1,1,0,0,0,0,0,0,0,0,0,1,1,1,0,0,0,0,0,0),(1381,'2015-03-10 22:38:42','2015-10-11 16:46:33',1,30000925,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1),(1382,'2015-03-10 22:38:42','2015-10-11 16:46:33',1,30004562,0,0,0,0,0,0,0,0,0,1,0,58,1,0,0,0,0,0,2,0,0,0,0,0),(1383,'2015-03-10 22:38:42','2015-10-11 16:46:33',1,30003121,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(1384,'2015-03-10 22:38:42','2015-03-10 22:38:42',1,30002882,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(1385,'2015-03-10 22:38:42','2015-10-11 16:46:33',1,30004434,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0),(1386,'2015-03-10 22:38:42','2015-10-11 16:46:33',1,30002375,0,0,0,0,0,0,0,1,0,0,0,0,0,0,2,3,1,0,0,0,0,0,0,0),(1387,'2015-03-10 22:38:42','2015-03-10 22:38:42',1,30004378,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(1388,'2015-03-10 22:38:42','2015-03-10 22:38:42',1,30000550,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(1389,'2015-03-10 22:38:42','2015-03-10 22:38:42',1,30000632,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(1390,'2015-03-10 22:38:42','2015-03-10 22:38:42',1,30003995,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(1391,'2015-03-10 22:38:42','2015-10-11 16:46:33',1,30003976,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(1392,'2015-03-10 22:38:42','2015-03-10 22:38:42',1,30001576,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(1393,'2015-03-10 22:38:42','2015-10-11 16:46:33',1,30004564,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,1,0,0,0,0,0,0),(1394,'2015-03-10 22:38:42','2015-10-11 16:46:33',1,30000278,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(1395,'2015-03-10 22:38:42','2015-10-11 16:46:33',1,30004818,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(1396,'2015-03-10 22:38:42','2015-03-10 22:38:42',1,30004651,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(1397,'2015-03-10 22:38:42','2015-10-11 16:46:33',1,30000302,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,0,1,0,0,0),(1398,'2015-03-10 22:38:42','2015-10-11 16:46:33',1,30001992,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,0,0,0,0,0,0,0),(1399,'2015-03-10 22:38:42','2015-10-11 16:46:33',1,30004319,0,0,0,0,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(1400,'2015-03-10 22:38:42','2015-10-11 16:46:33',1,30000772,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(1401,'2015-03-10 22:38:42','2015-10-11 16:46:33',1,30000273,1,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(1402,'2015-03-10 22:38:42','2015-03-10 22:38:42',1,30001085,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(1403,'2015-03-10 22:38:42','2015-10-11 16:46:33',1,30004372,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0),(1404,'2015-03-10 22:38:42','2015-10-11 16:46:33',1,30004365,0,0,0,0,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(1405,'2015-03-10 22:38:42','2015-03-10 22:38:42',1,30000567,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(1406,'2015-03-10 22:38:42','2015-10-11 16:46:33',1,30004600,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,1,0,0,0,0,0,0,0),(1407,'2015-03-10 22:38:42','2015-10-11 16:46:33',1,30001124,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(1408,'2015-03-10 22:38:42','2015-10-11 16:46:33',1,30003692,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(1409,'2015-03-10 22:38:42','2015-10-11 16:46:33',1,30003169,0,0,1,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1),(1410,'2015-03-10 22:38:42','2015-03-10 22:38:42',1,30002367,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(1411,'2015-03-10 22:38:42','2015-10-11 16:46:33',1,30004380,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(1412,'2015-03-10 22:38:42','2015-03-10 22:38:42',1,30003113,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(1413,'2015-03-10 22:38:42','2015-03-10 22:38:42',1,30004889,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(1414,'2015-03-10 22:38:42','2015-03-10 22:38:42',1,30003670,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(1415,'2015-03-10 22:38:42','2015-03-10 22:38:42',1,30000568,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(1416,'2015-03-10 22:38:42','2015-10-11 16:46:33',1,30004493,0,0,0,0,0,0,0,0,0,0,0,1,0,0,1,0,0,0,0,0,1,0,0,1),(1417,'2015-03-10 22:38:42','2015-03-10 22:38:42',1,30003780,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(1418,'2015-03-10 22:38:42','2015-10-11 16:46:33',1,30000821,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(1419,'2015-03-10 22:38:42','2015-03-10 22:38:42',1,30004597,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(1420,'2015-03-10 22:38:42','2015-03-10 22:38:42',1,30004191,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(1421,'2015-03-10 22:38:42','2015-03-10 22:38:42',1,30001355,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(1422,'2015-03-10 22:38:42','2015-10-11 16:46:33',1,30000863,0,0,0,0,0,0,2,1,0,1,3,3,0,0,0,1,1,0,0,0,0,1,0,0),(1423,'2015-03-10 22:38:42','2015-10-11 16:46:33',1,30004824,0,0,0,0,0,0,0,3,0,0,0,0,0,0,3,3,0,0,0,0,1,1,0,0),(1424,'2015-03-10 22:38:42','2015-10-11 16:46:33',1,30005190,0,0,0,0,0,0,5,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(1425,'2015-03-10 22:38:42','2015-10-11 16:46:33',1,30002858,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0),(1426,'2015-03-10 22:38:42','2015-03-10 22:38:42',1,30004798,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(1427,'2015-03-10 22:38:42','2015-10-11 16:46:33',1,30003697,0,0,0,8,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0),(1428,'2015-03-10 22:38:42','2015-10-11 16:46:33',1,30000446,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0),(1429,'2015-03-10 22:38:42','2015-03-10 22:38:42',1,30001533,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(1430,'2015-03-10 22:38:42','2015-03-10 22:38:42',1,30005122,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(1431,'2015-03-10 22:38:42','2015-10-11 16:46:33',1,30004791,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(1432,'2015-03-10 22:38:42','2015-10-11 16:46:33',1,30002915,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(1433,'2015-03-10 22:38:42','2015-03-10 22:38:42',1,30000700,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(1434,'2015-03-10 22:38:42','2015-10-11 16:46:33',1,30003676,0,0,0,0,0,0,1,0,0,1,1,1,0,1,0,0,0,0,3,3,4,0,0,0),(1435,'2015-03-10 22:38:42','2015-03-10 22:38:42',1,30000743,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(1436,'2015-03-10 22:38:42','2015-03-10 22:38:42',1,30000892,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(1437,'2015-03-10 22:38:42','2015-10-11 16:46:33',1,30003109,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,1,0,0,0,3,0,0,0),(1438,'2015-03-10 22:38:42','2015-03-10 22:38:42',1,30002315,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(1439,'2015-03-10 22:38:43','2015-03-10 22:38:43',1,30003934,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(1440,'2015-03-10 22:38:43','2015-03-10 22:38:43',1,30003569,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(1441,'2015-03-10 22:38:43','2015-10-11 16:46:33',1,30002207,0,0,0,0,0,0,0,0,0,0,0,0,0,0,4,6,2,0,0,0,0,0,0,0),(1442,'2015-03-10 22:38:43','2015-10-11 16:46:33',1,30000049,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,2,1,0,0,0,0,0,0,1),(1443,'2015-03-10 22:38:43','2015-03-10 22:38:43',1,30005287,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(1444,'2015-03-10 22:38:43','2015-10-11 16:46:33',1,30002735,1,0,0,0,0,0,0,0,1,0,0,0,1,0,0,0,0,1,0,1,1,9,0,0),(1445,'2015-03-10 22:38:43','2015-10-11 16:46:33',1,30003048,0,0,0,0,0,0,0,0,0,0,0,0,0,6,7,3,7,0,0,0,1,0,1,6),(1446,'2015-03-10 22:38:43','2015-10-11 16:46:33',1,30002645,0,1,2,0,0,0,0,0,0,0,0,0,0,0,2,1,0,0,0,1,0,0,0,1),(1447,'2015-03-10 22:38:43','2015-10-11 16:46:33',1,30004973,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0),(1448,'2015-03-10 22:38:43','2015-10-11 16:46:33',1,30005026,0,0,0,0,0,1,0,0,7,0,0,0,0,0,1,1,0,0,0,0,0,0,0,1),(1449,'2015-03-10 22:38:43','2015-10-11 16:46:33',1,30001205,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,0,0,0,1,0,0,2,0),(1450,'2015-03-10 22:38:43','2015-10-11 16:46:33',1,30001895,0,0,0,0,0,0,0,0,0,0,0,0,0,2,0,0,0,0,0,0,0,0,0,0),(1451,'2015-03-10 22:38:43','2015-10-11 16:46:33',1,30001206,0,0,0,0,0,0,0,0,0,2,0,0,0,0,0,0,0,0,1,0,0,0,0,0),(1452,'2015-03-10 22:38:43','2015-03-10 22:38:43',1,30004180,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(1453,'2015-03-10 22:38:43','2015-03-10 22:38:43',1,30004841,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(1454,'2015-03-10 22:38:43','2015-10-11 16:46:33',1,30002906,0,0,0,0,0,1,2,0,0,0,0,0,0,1,1,0,0,0,0,0,0,0,6,0),(1455,'2015-03-10 22:38:43','2015-03-10 22:38:43',1,30005283,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(1456,'2015-03-10 22:38:43','2015-03-10 22:38:43',1,30004407,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(1457,'2015-03-10 22:38:43','2015-03-10 22:38:43',1,30002483,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(1458,'2015-03-10 22:38:43','2015-10-11 16:46:33',1,30004401,0,0,0,0,0,0,18,0,0,0,1,0,0,1,0,0,0,1,0,0,1,1,0,0),(1459,'2015-03-10 22:38:43','2015-10-11 16:46:33',1,30004601,0,0,0,0,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(1460,'2015-03-10 22:38:43','2015-03-10 22:38:43',1,30002688,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(1461,'2015-03-10 22:38:43','2015-10-11 16:46:33',1,30035042,0,1,0,0,0,0,0,0,0,0,0,1,1,0,1,1,1,0,0,2,2,0,0,0),(1462,'2015-03-10 22:38:43','2015-10-11 16:46:33',1,30003905,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,1,0,3,2,0,0,1),(1463,'2015-03-10 22:38:43','2015-03-10 22:38:43',1,30005228,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(1464,'2015-03-10 22:38:43','2015-10-11 16:46:33',1,30001664,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0),(1465,'2015-03-10 22:38:43','2015-03-10 22:38:43',1,30004108,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(1466,'2015-03-10 22:38:43','2015-10-11 16:46:33',1,30025305,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,0),(1467,'2015-03-10 22:38:43','2015-10-11 16:46:33',1,30004122,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(1468,'2015-03-10 22:38:43','2015-10-11 16:46:33',1,30005331,0,1,0,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(1469,'2015-03-10 22:38:43','2015-10-11 16:46:33',1,30003834,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,3,0,0,1),(1470,'2015-03-10 22:38:43','2015-10-11 16:46:33',1,30004976,1,0,0,0,0,0,0,0,0,0,0,0,0,2,1,1,0,0,0,0,0,0,1,1),(1471,'2015-03-10 22:38:43','2015-10-11 16:46:33',1,30002224,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0),(1472,'2015-03-10 22:38:43','2015-10-11 16:46:33',1,30003489,1,4,1,6,0,0,1,3,4,0,3,3,1,1,1,1,0,0,0,0,1,3,3,1),(1473,'2015-03-10 22:38:43','2015-10-11 16:46:33',1,30005237,2,0,0,0,0,0,1,0,0,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0),(1474,'2015-03-10 22:38:43','2015-10-11 16:46:33',1,30002667,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,2,2,0,0,11,3,0,0,0),(1475,'2015-03-10 22:38:43','2015-10-11 16:46:33',1,30003529,0,3,1,0,0,1,0,0,0,0,0,0,1,0,0,0,1,0,0,0,0,0,0,0),(1476,'2015-03-10 22:38:43','2015-10-11 16:46:33',1,30003019,2,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(1477,'2015-03-10 22:38:43','2015-10-11 16:46:33',1,30005327,0,0,1,0,0,0,0,0,0,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0),(1478,'2015-03-10 22:38:43','2015-10-11 16:46:33',1,30003527,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(1479,'2015-03-10 22:38:43','2015-10-11 16:46:33',1,30004250,0,0,0,0,3,3,0,0,0,0,0,0,0,2,0,0,0,0,0,0,4,0,2,1),(1480,'2015-03-10 22:38:43','2015-03-10 22:38:43',1,30000010,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(1481,'2015-03-10 22:38:43','2015-10-11 16:46:33',1,30005253,0,0,0,0,0,0,0,0,0,0,4,4,0,0,0,0,0,0,0,0,0,0,0,1),(1482,'2015-03-10 22:38:43','2015-10-11 16:46:33',1,30003925,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,0,0,0,0,0,0),(1483,'2015-03-10 22:38:43','2015-10-11 16:46:33',1,30005051,0,0,0,0,0,0,1,0,2,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0),(1484,'2015-03-10 22:38:43','2015-10-11 16:46:33',1,30002965,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0),(1485,'2015-03-10 22:38:43','2015-03-10 22:38:43',1,30004210,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(1486,'2015-03-10 22:38:43','2015-03-10 22:38:43',1,30000951,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(1487,'2015-03-10 22:38:43','2015-10-11 16:46:33',1,30003363,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(1488,'2015-03-10 22:38:43','2015-10-11 16:46:33',1,30005305,1,0,3,1,1,0,0,1,6,0,1,3,0,0,0,3,3,3,2,3,0,0,1,1),(1489,'2015-03-10 22:38:43','2015-10-11 16:46:33',1,30001926,0,0,0,0,0,1,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,0,0,0),(1490,'2015-03-10 22:38:43','2015-03-10 22:38:43',1,30002127,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(1491,'2015-03-10 22:38:43','2015-10-11 16:46:33',1,30002170,1,0,0,0,0,1,0,0,0,1,0,1,0,0,1,0,0,0,1,21,3,0,1,0),(1492,'2015-03-10 22:38:43','2015-10-11 16:46:33',1,30001042,0,0,2,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,2),(1493,'2015-03-10 22:38:43','2015-10-11 16:46:33',1,30001025,1,4,1,0,0,0,0,0,0,0,2,3,0,3,1,1,0,2,1,0,0,1,1,3),(1494,'2015-03-10 22:38:43','2015-03-10 22:38:43',1,30004565,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(1495,'2015-03-10 22:38:43','2015-10-11 16:46:33',1,30002362,0,0,0,0,0,0,0,1,3,1,1,0,0,5,0,0,0,0,0,0,0,1,0,0),(1496,'2015-03-10 22:38:43','2015-03-10 22:38:43',1,30004458,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(1497,'2015-03-10 22:38:43','2015-03-10 22:38:43',1,30001981,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(1498,'2015-03-10 22:38:43','2015-10-11 16:46:33',1,30035305,0,0,0,0,1,1,2,0,0,0,0,0,0,0,0,0,0,1,1,0,2,0,0,0),(1499,'2015-03-10 22:38:43','2015-10-11 16:46:33',1,30003896,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(1500,'2015-03-10 22:38:43','2015-03-10 22:38:43',1,30002275,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(1501,'2015-03-10 22:38:43','2015-10-11 16:46:33',1,30005324,0,0,0,0,1,0,0,0,0,0,0,1,0,0,1,1,0,0,0,1,0,0,0,0),(1502,'2015-03-10 22:38:43','2015-03-10 22:38:43',1,30002708,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(1503,'2015-03-10 22:38:43','2015-03-10 22:38:43',1,30001616,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(1504,'2015-03-10 22:38:43','2015-10-11 16:46:33',1,30045305,8,10,13,17,10,8,8,13,6,22,10,17,17,24,21,12,11,17,8,20,12,18,14,15),(1505,'2015-03-10 22:38:43','2015-10-11 16:46:33',1,30005194,0,1,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0),(1506,'2015-03-10 22:38:43','2015-10-11 16:46:33',1,30005023,0,0,0,2,0,0,0,0,0,0,0,0,0,0,0,4,4,1,0,0,0,0,0,0),(1507,'2015-03-10 22:38:43','2015-03-10 22:38:43',1,30001100,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(1508,'2015-03-10 22:38:43','2015-10-11 16:46:33',1,30001254,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0),(1509,'2015-03-10 22:38:43','2015-03-10 22:38:43',1,30001825,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(1510,'2015-03-10 22:38:43','2015-10-11 16:46:33',1,30004887,0,0,0,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(1511,'2015-03-10 22:38:43','2015-03-10 22:38:43',1,30003904,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(1512,'2015-03-10 22:38:43','2015-10-11 16:46:33',1,30003041,0,0,2,0,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(1513,'2015-03-10 22:38:43','2015-10-11 16:46:33',1,30002682,0,1,0,0,0,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,2,2,1,0),(1514,'2015-03-10 22:38:43','2015-10-11 16:46:33',1,30045042,1,2,4,5,6,9,1,3,6,3,4,4,6,13,7,4,3,5,5,2,5,5,6,2),(1515,'2015-03-10 22:38:43','2015-10-11 16:46:33',1,30003565,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0),(1516,'2015-03-10 22:38:43','2015-10-11 16:46:33',1,30005298,0,0,0,0,0,0,1,1,1,2,1,0,0,0,0,0,0,0,0,0,2,0,0,0),(1517,'2015-03-10 22:38:43','2015-10-11 16:46:33',1,30014971,22,12,23,25,21,25,17,18,19,17,29,31,22,24,25,22,30,19,12,15,22,27,31,16),(1518,'2015-03-10 22:38:43','2015-10-11 16:46:33',1,30003795,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,2,0,0,0,1,1,1,1),(1519,'2015-03-10 22:38:43','2015-10-11 16:46:33',1,30003123,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,1),(1520,'2015-03-10 22:38:43','2015-10-11 16:46:33',1,30002003,0,0,2,2,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(1521,'2015-03-10 22:38:43','2015-10-11 16:46:33',1,30003678,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1),(1522,'2015-03-10 22:38:43','2015-03-10 22:38:43',1,30000845,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(1523,'2015-03-10 22:38:43','2015-10-11 16:46:33',1,30002691,3,2,0,2,3,3,1,0,0,0,0,1,3,2,0,2,2,1,0,0,2,0,0,1),(1524,'2015-03-10 22:38:43','2015-10-11 16:46:33',1,30002705,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,1,0,0,0,2,1,0,0,0),(1525,'2015-03-10 22:38:43','2015-10-11 16:46:33',1,30000923,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,1,0,0,0,0),(1526,'2015-03-10 22:38:43','2015-03-10 22:38:43',1,30004357,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(1527,'2015-03-10 22:38:43','2015-10-11 16:46:33',1,30001275,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,1,1,0,0,3,0,1,0,0),(1528,'2015-03-10 22:38:43','2015-03-10 22:38:43',1,30004530,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(1529,'2015-03-10 22:38:43','2015-10-11 16:46:33',1,30002373,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,3,1,1,0,0,0,0,0,0),(1530,'2015-03-10 22:38:43','2015-03-10 22:38:43',1,30002896,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(1531,'2015-03-10 22:38:43','2015-10-11 16:46:33',1,30003802,0,1,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,1,0,1),(1532,'2015-03-10 22:38:43','2015-10-11 16:46:33',1,30004200,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(1533,'2015-03-10 22:38:43','2015-03-10 22:38:43',1,30001034,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(1534,'2015-03-10 22:38:43','2015-03-10 22:38:43',1,30001472,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(1535,'2015-03-10 22:38:43','2015-10-11 16:46:33',1,30004939,0,0,0,0,0,0,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(1536,'2015-03-10 22:38:43','2015-03-10 22:38:43',1,30004335,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(1537,'2015-03-10 22:38:43','2015-10-11 16:46:33',1,30001224,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,1,0,0,0,0,0),(1538,'2015-03-10 22:38:43','2015-10-11 16:46:33',1,30004072,0,3,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(1539,'2015-03-10 22:38:43','2015-03-10 22:38:43',1,30004799,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(1540,'2015-03-10 22:38:43','2015-03-10 22:38:43',1,30001979,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(1541,'2015-03-10 22:38:43','2015-03-10 22:38:43',1,30003371,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(1542,'2015-03-10 22:38:43','2015-03-10 22:38:43',1,30002312,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(1543,'2015-03-10 22:38:43','2015-03-10 22:38:43',1,30001496,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(1544,'2015-03-10 22:38:43','2015-03-10 22:38:43',1,30003134,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(1545,'2015-03-10 22:38:43','2015-10-11 16:46:33',1,30002953,1,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(1546,'2015-03-10 22:38:43','2015-10-11 16:46:33',1,30001253,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,1,0,0,0,0),(1547,'2015-03-10 22:38:43','2015-10-11 16:46:33',1,30000461,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0),(1548,'2015-03-10 22:38:43','2015-10-11 16:46:33',1,30004750,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,0),(1549,'2015-03-10 22:38:43','2015-03-10 22:38:43',1,30000613,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(1550,'2015-03-10 22:38:43','2015-03-10 22:38:43',1,30002838,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(1551,'2015-03-10 22:38:43','2015-10-11 16:46:33',1,30003727,0,0,0,0,0,0,0,0,0,0,1,0,0,2,0,0,1,0,0,0,2,0,0,1),(1552,'2015-03-10 22:38:43','2015-10-11 16:46:33',1,30001272,0,0,0,3,0,0,3,0,0,0,0,0,0,0,5,1,4,0,0,0,0,0,0,0),(1553,'2015-03-10 22:38:43','2015-10-11 16:46:33',1,30004813,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0),(1554,'2015-03-10 22:38:43','2015-03-10 22:38:43',1,30003358,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(1555,'2015-03-10 22:38:43','2015-03-10 22:38:43',1,30002149,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(1556,'2015-03-10 22:38:43','2015-03-10 22:38:43',1,30002304,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(1557,'2015-03-10 22:38:43','2015-03-10 22:38:43',1,30003115,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(1558,'2015-03-10 22:38:43','2015-10-11 16:46:33',1,30003709,0,0,0,0,0,0,0,0,1,2,0,0,2,1,1,1,0,0,0,0,0,0,0,1),(1559,'2015-03-10 22:38:43','2015-10-11 16:46:33',1,30002481,0,0,0,0,0,0,0,0,1,1,0,0,0,0,1,0,0,0,0,0,0,1,0,0),(1560,'2015-03-10 22:38:43','2015-10-11 16:46:33',1,30002347,0,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(1561,'2015-03-10 22:38:43','2015-10-11 16:46:33',1,30001761,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(1562,'2015-03-10 22:38:43','2015-10-11 16:46:33',1,30002626,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0),(1563,'2015-03-10 22:38:43','2015-03-10 22:38:43',1,30002366,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(1564,'2015-03-10 22:38:43','2015-10-11 16:46:33',1,30000826,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,4,0),(1565,'2015-03-10 22:38:43','2015-03-10 22:38:43',1,30000340,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(1566,'2015-03-10 22:38:43','2015-10-11 16:46:33',1,30003135,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,0,0),(1567,'2015-03-10 22:38:43','2015-10-11 16:46:33',1,30004622,0,0,2,1,1,3,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(1568,'2015-03-10 22:38:43','2015-03-10 22:38:43',1,30005125,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(1569,'2015-03-10 22:38:43','2015-10-11 16:46:33',1,30001299,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(1570,'2015-03-10 22:38:43','2015-10-11 16:46:33',1,30004730,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,2,0,0,0),(1571,'2015-03-10 22:38:43','2015-03-10 22:38:43',1,30002430,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(1572,'2015-03-10 22:38:43','2015-10-11 16:46:33',1,30002036,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,1,0),(1573,'2015-03-10 22:38:43','2015-03-10 22:38:43',1,30004588,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(1574,'2015-03-10 22:38:43','2015-10-11 16:46:33',1,30004902,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1),(1575,'2015-03-10 22:38:43','2015-03-10 22:38:43',1,30002295,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(1576,'2015-03-10 22:38:43','2015-10-11 16:46:33',1,30004491,0,0,0,0,0,0,0,0,0,0,3,3,0,0,0,0,0,0,0,0,0,0,1,0),(1577,'2015-03-10 22:38:43','2015-10-11 16:46:33',1,30004626,0,0,0,0,0,0,0,0,0,0,0,0,3,0,0,0,0,0,0,0,0,0,0,1),(1578,'2015-03-10 22:38:43','2015-10-11 16:46:33',1,30004386,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0),(1579,'2015-03-10 22:38:43','2015-10-11 16:46:33',1,30004502,0,0,0,0,0,0,3,0,0,0,2,1,0,1,0,0,0,0,0,0,0,0,0,1),(1580,'2015-03-10 22:38:43','2015-10-11 16:46:33',1,30003724,0,0,4,2,1,2,1,0,0,0,1,0,0,1,0,0,0,0,1,17,0,1,0,1),(1581,'2015-03-10 22:38:43','2015-03-10 22:38:43',1,30004480,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(1582,'2015-03-10 22:38:43','2015-10-11 16:46:33',1,30000867,1,0,0,0,2,1,1,0,0,4,2,3,0,3,0,0,0,0,2,1,1,3,0,1),(1583,'2015-03-10 22:38:43','2015-03-10 22:38:43',1,30001968,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(1584,'2015-03-10 22:38:43','2015-10-11 16:46:33',1,30003345,0,1,0,1,0,0,0,0,0,0,0,1,0,1,0,0,0,0,0,0,0,0,0,1),(1585,'2015-03-10 22:38:43','2015-10-11 16:46:33',1,30001010,1,0,0,0,1,1,0,0,2,3,2,1,0,2,1,0,2,1,0,0,7,4,1,1),(1586,'2015-03-10 22:38:43','2015-03-10 22:38:43',1,30000327,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(1587,'2015-03-10 22:38:43','2015-03-10 22:38:43',1,30001881,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(1588,'2015-03-10 22:38:43','2015-03-10 22:38:43',1,30004222,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(1589,'2015-03-10 22:38:43','2015-10-11 16:46:33',1,30001660,2,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0),(1590,'2015-03-10 22:38:43','2015-10-11 16:46:33',1,30001921,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,3,0,0,0),(1591,'2015-03-10 22:38:43','2015-03-10 22:38:43',1,30001083,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(1592,'2015-03-10 22:38:43','2015-03-10 22:38:43',1,30002233,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(1593,'2015-03-10 22:38:43','2015-10-11 16:46:33',1,30002541,0,0,0,1,0,0,0,1,0,5,3,4,0,1,0,0,0,3,2,2,7,1,3,2),(1594,'2015-03-10 22:38:43','2015-10-11 16:46:33',1,30002513,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0),(1595,'2015-03-10 22:38:43','2015-10-11 16:46:33',1,30003912,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(1596,'2015-03-10 22:38:43','2015-10-11 16:46:33',1,30004097,0,0,0,0,0,0,0,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(1597,'2015-03-10 22:38:43','2015-03-10 22:38:43',1,30003451,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(1598,'2015-03-10 22:38:43','2015-10-11 16:46:33',1,30001356,1,0,0,0,0,0,0,0,0,3,0,1,0,1,0,0,0,0,1,1,1,0,4,0),(1599,'2015-03-10 22:38:43','2015-10-11 16:46:33',1,30005044,0,0,0,2,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,0,0,0,0,0),(1600,'2015-03-10 22:38:43','2015-10-11 16:46:33',1,30005074,0,0,0,0,0,0,1,0,0,1,2,1,0,0,0,0,0,1,1,0,0,0,2,1),(1601,'2015-03-10 22:38:43','2015-10-11 16:46:33',1,30001420,0,0,0,0,0,1,0,1,0,0,0,0,0,0,0,0,0,0,2,0,0,0,0,0),(1602,'2015-03-10 22:38:43','2015-10-11 16:46:33',1,30003797,2,0,0,0,1,1,1,0,0,4,1,2,1,1,9,2,2,1,0,2,0,4,0,1),(1603,'2015-03-10 22:38:43','2015-03-10 22:38:43',1,30003405,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(1604,'2015-03-10 22:38:43','2015-03-10 22:38:43',1,30000253,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(1605,'2015-03-10 22:38:43','2015-10-11 16:46:33',1,30004524,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(1606,'2015-03-10 22:38:43','2015-10-11 16:46:33',1,30004470,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0),(1607,'2015-03-10 22:38:43','2015-03-10 22:38:43',1,30004595,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(1608,'2015-03-10 22:38:43','2015-03-10 22:38:43',1,30000877,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(1609,'2015-03-10 22:38:43','2015-10-11 16:46:33',1,30003364,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,0,0,0,0,0,0,0),(1610,'2015-03-10 22:38:43','2015-10-11 16:46:33',1,30004311,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(1611,'2015-03-10 22:38:43','2015-03-10 22:38:43',1,30003644,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(1612,'2015-03-10 22:38:43','2015-03-10 22:38:43',1,30002631,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(1613,'2015-03-10 22:38:43','2015-10-11 16:46:33',1,30000663,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,1,0,0),(1614,'2015-03-10 22:38:43','2015-03-10 22:38:43',1,30005093,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(1615,'2015-03-10 22:38:43','2015-03-10 22:38:43',1,30000954,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(1616,'2015-03-10 22:38:43','2015-03-10 22:38:43',1,30005285,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(1617,'2015-03-10 22:38:43','2015-10-11 16:46:33',1,30002635,5,0,6,2,2,1,5,2,1,1,3,4,2,0,3,5,3,3,0,6,3,4,2,1),(1618,'2015-03-10 22:38:43','2015-10-11 16:46:33',1,30013489,9,9,13,7,5,7,11,8,5,9,9,11,10,22,16,19,16,10,11,5,15,13,12,13),(1619,'2015-03-10 22:38:43','2015-10-11 16:46:33',1,30004284,0,0,0,0,0,0,0,0,0,0,1,0,0,10,0,0,1,0,0,0,0,0,0,0),(1620,'2015-03-10 22:38:43','2015-03-10 22:38:43',1,30004105,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(1621,'2015-03-10 22:38:43','2015-10-11 16:46:33',1,30002681,2,3,4,1,0,2,0,1,0,3,2,2,1,3,0,0,0,7,1,0,7,2,4,6),(1622,'2015-03-10 22:38:43','2015-03-10 22:38:43',1,30004987,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(1623,'2015-03-10 22:38:43','2015-10-11 16:46:33',1,30005025,0,2,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,1,0,1,0),(1624,'2015-03-10 22:38:43','2015-10-11 16:46:33',1,30004985,3,2,6,0,4,4,2,1,2,2,6,0,0,16,3,3,2,4,1,3,2,2,0,0),(1625,'2015-03-10 22:38:43','2015-03-10 22:38:43',1,30000816,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(1626,'2015-03-10 22:38:43','2015-03-10 22:38:43',1,30001557,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(1627,'2015-03-10 22:38:43','2015-10-11 16:46:33',1,30000441,0,0,0,0,0,0,0,0,0,0,2,1,0,2,0,0,0,2,0,0,0,1,0,1),(1628,'2015-03-10 22:38:43','2015-10-11 16:46:33',1,30004016,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0),(1629,'2015-03-10 22:38:43','2015-03-10 22:38:43',1,30003187,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(1630,'2015-03-10 22:38:43','2015-10-11 16:46:33',1,30005229,0,0,1,0,1,1,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,1,0,0),(1631,'2015-03-10 22:38:43','2015-03-10 22:38:43',1,30003156,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(1632,'2015-03-10 22:38:43','2015-10-11 16:46:33',1,30002967,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,4,4,0,0,0,0,0,0,0),(1633,'2015-03-10 22:38:43','2015-03-10 22:38:43',1,30003924,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(1634,'2015-03-10 22:38:43','2015-10-11 16:46:33',1,30002646,0,0,0,1,2,3,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0),(1635,'2015-03-10 22:38:43','2015-10-11 16:46:33',1,30003461,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(1636,'2015-03-10 22:38:43','2015-10-11 16:46:33',1,30002968,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,3,0,0,0),(1637,'2015-03-10 22:38:43','2015-03-10 22:38:43',1,30001781,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(1638,'2015-03-10 22:38:43','2015-10-11 16:46:33',1,30005262,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1),(1639,'2015-03-10 22:38:43','2015-03-10 22:38:43',1,30004903,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(1640,'2015-03-10 22:38:43','2015-10-11 16:46:33',1,30001994,0,0,1,0,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(1641,'2015-03-10 22:38:43','2015-10-11 16:46:33',1,30004207,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0),(1642,'2015-03-10 22:38:43','2015-03-10 22:38:43',1,30001960,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(1643,'2015-03-10 22:38:43','2015-03-10 22:38:43',1,30002920,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(1644,'2015-03-10 22:38:43','2015-10-11 16:46:33',1,30003170,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0),(1645,'2015-03-10 22:38:43','2015-03-10 22:38:43',1,30000879,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(1646,'2015-03-10 22:38:43','2015-03-10 22:38:43',1,30001632,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(1647,'2015-03-10 22:38:43','2015-10-11 16:46:33',1,30004195,0,0,0,0,0,0,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(1648,'2015-03-10 22:38:43','2015-03-10 22:38:43',1,30003157,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(1649,'2015-03-10 22:38:43','2015-10-11 16:46:33',1,30003762,0,0,1,0,0,0,1,0,0,0,2,0,2,0,2,0,0,0,0,0,2,1,1,0),(1650,'2015-03-10 22:38:43','2015-10-11 16:46:33',1,30003681,0,0,0,1,0,0,5,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(1651,'2015-03-10 22:38:43','2015-03-10 22:38:43',1,30001130,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(1652,'2015-03-10 22:38:43','2015-10-11 16:46:33',1,30002685,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1),(1653,'2015-03-10 22:38:43','2015-10-11 16:46:33',1,30002659,2,6,16,7,1,1,4,0,3,3,11,8,6,12,14,18,16,4,3,8,4,17,10,4),(1654,'2015-03-10 22:38:43','2015-03-10 22:38:43',1,30005226,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(1655,'2015-03-10 22:38:43','2015-03-10 22:38:43',1,30000038,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(1656,'2015-03-10 22:38:43','2015-10-11 16:46:33',1,30001047,2,1,2,1,4,4,0,1,0,13,3,1,0,4,4,4,4,0,2,2,1,0,0,0),(1657,'2015-03-10 22:38:43','2015-10-11 16:46:33',1,30003807,0,0,1,0,0,0,0,0,0,0,1,1,1,0,1,1,0,0,0,0,1,0,0,0),(1658,'2015-03-10 22:38:43','2015-10-11 16:46:33',1,30002706,0,1,0,0,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1),(1659,'2015-03-10 22:38:43','2015-03-10 22:38:43',1,30005293,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(1660,'2015-03-10 22:38:43','2015-10-11 16:46:33',1,30002014,0,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0),(1661,'2015-03-10 22:38:43','2015-03-10 22:38:43',1,30001912,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(1662,'2015-03-10 22:38:43','2015-10-11 16:46:33',1,30003721,2,0,0,0,0,0,0,0,0,0,0,0,0,0,2,2,0,0,0,0,0,0,2,0),(1663,'2015-03-10 22:38:43','2015-10-11 16:46:33',1,30003314,0,0,0,0,0,0,0,0,0,0,0,0,0,3,1,2,1,0,0,0,0,0,0,0),(1664,'2015-03-10 22:38:43','2015-10-11 16:46:33',1,30002184,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,4),(1665,'2015-03-10 22:38:43','2015-10-11 16:46:33',1,30004078,0,3,0,0,1,1,0,0,0,0,0,0,0,1,0,0,0,0,0,1,0,0,0,1),(1666,'2015-03-10 22:38:43','2015-03-10 22:38:43',1,30005011,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(1667,'2015-03-10 22:38:43','2015-10-11 16:46:33',1,30003992,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(1668,'2015-03-10 22:38:43','2015-03-10 22:38:43',1,30003193,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(1669,'2015-03-10 22:38:43','2015-10-11 16:46:33',1,30001831,0,0,0,0,0,0,0,1,0,0,0,0,1,0,1,1,0,0,0,0,0,4,0,1),(1670,'2015-03-10 22:38:43','2015-03-10 22:38:43',1,30001610,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(1671,'2015-03-10 22:38:43','2015-03-10 22:38:43',1,30004806,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(1672,'2015-03-10 22:38:43','2015-03-10 22:38:43',1,30002041,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(1673,'2015-03-10 22:38:43','2015-10-11 16:46:33',1,30003108,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0),(1674,'2015-03-10 22:38:43','2015-10-11 16:46:33',1,30002633,0,1,1,1,0,0,0,0,0,1,0,0,1,1,2,2,0,0,0,0,1,1,1,3),(1675,'2015-03-10 22:38:43','2015-10-11 16:46:33',1,30002076,0,1,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0),(1676,'2015-03-10 22:38:43','2015-03-10 22:38:43',1,30000396,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(1677,'2015-03-10 22:38:43','2015-10-11 16:46:33',1,30002520,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(1678,'2015-03-10 22:38:43','2015-10-11 16:46:33',1,30002670,0,0,0,1,0,0,0,0,1,0,0,2,0,0,1,1,0,0,0,0,0,1,0,0),(1679,'2015-03-10 22:38:43','2015-03-10 22:38:43',1,30000595,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(1680,'2015-03-10 22:38:43','2015-10-11 16:46:33',1,30004971,3,2,4,11,3,2,4,7,1,7,4,4,3,4,2,2,5,1,1,3,3,2,2,3),(1681,'2015-03-10 22:38:43','2015-10-11 16:46:33',1,30004418,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0),(1682,'2015-03-10 22:38:43','2015-10-11 16:46:33',1,30003359,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,0,0,0,0,0,0,0),(1683,'2015-03-10 22:38:43','2015-03-10 22:38:43',1,30001504,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(1684,'2015-03-10 22:38:43','2015-10-11 16:46:33',1,30001581,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0),(1685,'2015-03-10 22:38:43','2015-03-10 22:38:43',1,30000518,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(1686,'2015-03-10 22:38:43','2015-10-11 16:46:33',1,30002146,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(1687,'2015-03-10 22:38:43','2015-10-11 16:46:33',1,30003682,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2),(1688,'2015-03-10 22:38:43','2015-03-10 22:38:43',1,30000516,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(1689,'2015-03-10 22:38:43','2015-10-11 16:46:33',1,30000490,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,1),(1690,'2015-03-10 22:38:43','2015-03-10 22:38:43',1,30002599,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(1691,'2015-03-10 22:38:43','2015-10-11 16:46:33',1,30004042,0,0,0,0,0,0,0,0,0,2,3,0,0,0,0,0,0,0,0,0,1,0,0,0),(1692,'2015-03-10 22:38:43','2015-10-11 16:46:33',1,30002119,1,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,0,0,0,0,0,0,0),(1693,'2015-03-10 22:38:43','2015-03-10 22:38:43',1,30002378,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(1694,'2015-03-10 22:38:43','2015-03-10 22:38:43',1,30003196,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(1695,'2015-03-10 22:38:43','2015-10-11 16:46:33',1,30000102,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,4,0,2),(1696,'2015-03-10 22:38:43','2015-03-10 22:38:43',1,30004852,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(1697,'2015-03-10 22:38:43','2015-03-10 22:38:43',1,30000502,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(1698,'2015-03-10 22:38:43','2015-03-10 22:38:43',1,30001294,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(1699,'2015-03-10 22:38:43','2015-10-11 16:46:33',1,30002477,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0),(1700,'2015-03-10 22:38:43','2015-10-11 16:46:33',1,30003677,0,0,0,0,0,0,1,1,0,1,0,0,0,0,0,0,0,4,0,0,0,0,0,0),(1701,'2015-03-10 22:38:43','2015-03-10 22:38:43',1,30000503,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(1702,'2015-03-10 22:38:43','2015-03-10 22:38:43',1,30004186,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(1703,'2015-03-10 22:38:43','2015-03-10 22:38:43',1,30001530,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(1704,'2015-03-10 22:38:43','2015-03-10 22:38:43',1,30004567,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(1705,'2015-03-10 22:38:43','2015-03-10 22:38:43',1,30004181,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(1706,'2015-03-10 22:38:43','2015-10-11 16:46:33',1,30001834,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1),(1707,'2015-03-10 22:38:43','2015-03-10 22:38:43',1,30000257,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(1708,'2015-03-10 22:38:43','2015-03-10 22:38:43',1,30004948,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(1709,'2015-03-10 22:38:43','2015-03-10 22:38:43',1,30004217,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(1710,'2015-03-10 22:38:43','2015-10-11 16:46:33',1,30002922,1,0,0,3,0,1,0,0,3,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(1711,'2015-03-10 22:38:43','2015-03-10 22:38:43',1,30004546,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(1712,'2015-03-10 22:38:43','2015-03-10 22:38:43',1,30000531,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(1713,'2015-03-10 22:38:43','2015-10-11 16:46:33',1,30000846,0,0,2,0,0,0,0,0,0,0,6,68,37,3,1,1,0,0,0,2,0,1,0,2),(1714,'2015-03-10 22:38:43','2015-10-11 16:46:33',1,30004451,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,0,0,1,0,0,1),(1715,'2015-03-10 22:38:43','2015-03-10 22:38:43',1,30001620,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(1716,'2015-03-10 22:38:43','2015-10-11 16:46:33',1,30000283,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(1717,'2015-03-10 22:38:43','2015-03-10 22:38:43',1,30004028,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(1718,'2015-03-10 22:38:43','2015-10-11 16:46:33',1,30005100,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(1719,'2015-03-10 22:38:43','2015-03-10 22:38:43',1,30003732,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(1720,'2015-03-10 22:38:43','2015-10-11 16:46:33',1,30001229,0,0,0,0,0,0,1,0,0,0,0,0,0,0,3,0,0,1,0,1,1,0,1,0),(1721,'2015-03-10 22:38:43','2015-10-11 16:46:33',1,30002032,0,0,1,2,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(1722,'2015-03-10 22:38:43','2015-10-11 16:46:33',1,30000903,0,1,0,0,1,1,0,1,0,0,1,0,1,0,0,1,1,0,0,3,0,2,0,0),(1723,'2015-03-10 22:38:43','2015-10-11 16:46:33',1,30004208,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,3,3,0,0,0),(1724,'2015-03-10 22:38:43','2015-10-11 16:46:33',1,30001214,0,0,0,0,0,0,0,0,0,0,1,0,0,0,1,0,0,0,1,0,0,0,1,0),(1725,'2015-03-10 22:38:43','2015-10-11 16:46:33',1,30001334,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1),(1726,'2015-03-10 22:38:43','2015-10-11 16:46:33',1,30002136,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0),(1727,'2015-03-10 22:38:43','2015-03-10 22:38:43',1,30003136,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(1728,'2015-03-10 22:38:43','2015-10-11 16:46:33',1,30000612,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(1729,'2015-03-10 22:38:43','2015-10-11 16:46:33',1,30004959,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0),(1730,'2015-03-10 22:38:43','2015-03-10 22:38:43',1,30001462,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(1731,'2015-03-10 22:38:43','2015-10-11 16:46:33',1,30001217,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,2,0,0),(1732,'2015-03-10 22:38:43','2015-03-10 22:38:43',1,30004725,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(1733,'2015-03-10 22:38:43','2015-10-11 16:46:33',1,30002931,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0),(1734,'2015-03-10 22:38:43','2015-10-11 16:46:33',1,30001527,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1),(1735,'2015-03-10 22:38:43','2015-03-10 22:38:43',1,30000524,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(1736,'2015-03-10 22:38:43','2015-03-10 22:38:43',1,30000634,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(1737,'2015-03-10 22:38:43','2015-03-10 22:38:43',1,30003242,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(1738,'2015-03-10 22:38:43','2015-03-10 22:38:43',1,30001909,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(1739,'2015-03-10 22:38:43','2015-03-10 22:38:43',1,30002605,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(1740,'2015-03-10 22:38:43','2015-10-11 16:46:33',1,30002349,0,0,0,0,0,0,0,0,1,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0),(1741,'2015-03-10 22:38:43','2015-03-10 22:38:43',1,30002163,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(1742,'2015-03-10 22:38:43','2015-10-11 16:46:33',1,30004499,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,1,0,0),(1743,'2015-03-10 22:38:43','2015-10-11 16:46:33',1,30003694,2,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(1744,'2015-03-10 22:38:43','2015-03-10 22:38:43',1,30002124,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(1745,'2015-03-10 22:38:43','2015-03-10 22:38:43',1,30003476,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(1746,'2015-03-10 22:38:43','2015-10-11 16:46:33',1,30003438,0,0,1,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,3,0),(1747,'2015-03-10 22:38:43','2015-10-11 16:46:33',1,30003441,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0),(1748,'2015-03-10 22:38:43','2015-10-11 16:46:33',1,30001933,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0),(1749,'2015-03-10 22:38:43','2015-10-11 16:46:33',1,30002281,1,0,0,0,0,2,0,2,1,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0),(1750,'2015-03-10 22:38:43','2015-10-11 16:46:33',1,30005291,0,1,0,0,0,0,0,1,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(1751,'2015-03-10 22:38:43','2015-03-10 22:38:43',1,30002535,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(1752,'2015-03-10 22:38:43','2015-10-11 16:46:33',1,30002196,0,0,0,1,1,1,1,0,1,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0),(1753,'2015-03-10 22:38:43','2015-10-11 16:46:33',1,30002269,0,0,0,0,0,0,0,1,0,1,2,2,0,0,1,1,0,0,0,2,0,0,0,0),(1754,'2015-03-10 22:38:43','2015-10-11 16:46:33',1,30002536,2,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0),(1755,'2015-03-10 22:38:43','2015-10-11 16:46:33',1,30002094,0,0,0,0,0,0,0,0,0,1,0,1,3,0,1,1,0,0,0,2,2,1,0,1),(1756,'2015-03-10 22:38:43','2015-10-11 16:46:33',1,30002277,0,1,1,0,0,0,0,0,0,0,2,2,0,1,2,1,0,0,0,0,0,0,0,0),(1757,'2015-03-10 22:38:43','2015-10-11 16:46:33',1,30001984,15,1,3,9,10,13,0,4,0,8,0,1,4,2,4,1,3,7,35,6,10,0,5,2),(1758,'2015-03-10 22:38:43','2015-10-11 16:46:33',1,30004020,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(1759,'2015-03-10 22:38:43','2015-10-11 16:46:33',1,30003911,0,0,0,0,0,0,0,0,0,1,1,1,0,0,0,0,0,0,0,0,0,0,0,0),(1760,'2015-03-10 22:38:43','2015-03-10 22:38:43',1,30002552,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(1761,'2015-03-10 22:38:43','2015-10-11 16:46:33',1,30004256,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(1762,'2015-03-10 22:38:43','2015-10-11 16:46:33',1,30002518,0,0,1,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(1763,'2015-03-10 22:38:43','2015-03-10 22:38:43',1,30000486,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(1764,'2015-03-10 22:38:43','2015-10-11 16:46:33',1,30003355,0,2,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(1765,'2015-03-10 22:38:43','2015-10-11 16:46:33',1,30005104,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,0,0,0),(1766,'2015-03-10 22:38:43','2015-10-11 16:46:33',1,30003892,0,0,0,0,0,0,0,1,0,1,3,1,0,0,0,0,0,0,0,0,0,0,0,0),(1767,'2015-03-10 22:38:43','2015-10-11 16:46:33',1,30000783,3,1,1,0,0,0,1,0,0,0,0,0,1,0,2,1,0,0,0,0,0,0,0,0),(1768,'2015-03-10 22:38:43','2015-10-11 16:46:33',1,30004297,0,1,0,1,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,1,2,0),(1769,'2015-03-10 22:38:43','2015-10-11 16:46:33',1,30002420,0,0,0,0,1,1,0,0,0,0,0,0,0,0,1,1,3,0,0,0,1,0,0,0),(1770,'2015-03-10 22:38:43','2015-03-10 22:38:43',1,30003401,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(1771,'2015-03-10 22:38:43','2015-10-11 16:46:33',1,30002693,4,2,1,0,2,3,1,0,1,3,1,1,4,5,1,1,0,0,3,2,1,4,1,3),(1772,'2015-03-10 22:38:43','2015-10-11 16:46:33',1,30003605,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0),(1773,'2015-03-10 22:38:43','2015-10-11 16:46:33',1,30002660,1,1,1,0,1,7,2,1,0,1,0,1,1,4,1,1,1,0,1,1,0,0,0,2),(1774,'2015-03-10 22:38:43','2015-10-11 16:46:33',1,30002099,1,0,1,0,0,0,2,1,0,2,0,1,2,19,4,6,9,4,4,9,5,0,1,2),(1775,'2015-03-10 22:38:43','2015-10-11 16:46:33',1,30002563,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0),(1776,'2015-03-10 22:38:43','2015-03-10 22:38:43',1,30000373,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(1777,'2015-03-10 22:38:43','2015-10-11 16:46:33',1,30005108,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(1778,'2015-03-10 22:38:43','2015-10-11 16:46:33',1,30045319,4,0,2,5,5,8,1,7,0,4,0,0,1,3,1,0,0,0,1,2,0,1,1,1),(1779,'2015-03-10 22:38:43','2015-10-11 16:46:33',1,30002997,0,0,0,0,0,0,0,0,0,0,0,0,0,0,3,6,3,0,0,0,0,0,0,0),(1780,'2015-03-10 22:38:43','2015-03-10 22:38:43',1,30004586,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(1781,'2015-03-10 22:38:43','2015-10-11 16:46:33',1,30000249,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0),(1782,'2015-03-10 22:38:43','2015-10-11 16:46:33',1,30002555,2,1,0,0,0,0,0,0,0,1,0,0,0,2,0,1,1,0,0,0,0,0,0,0),(1783,'2015-03-10 22:38:43','2015-10-11 16:46:33',1,30000577,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(1784,'2015-03-10 22:38:43','2015-03-10 22:38:43',1,30003393,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(1785,'2015-03-10 22:38:43','2015-03-10 22:38:43',1,30004946,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(1786,'2015-03-10 22:38:43','2015-10-11 16:46:33',1,30000655,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(1787,'2015-03-10 22:38:43','2015-10-11 16:46:33',1,30002740,0,0,0,0,0,0,0,2,0,0,1,1,0,0,0,0,0,0,0,2,0,0,0,1),(1788,'2015-03-10 22:38:43','2015-03-10 22:38:43',1,30001307,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(1789,'2015-03-10 22:38:43','2015-03-10 22:38:43',1,30004204,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(1790,'2015-03-10 22:38:43','2015-03-10 22:38:43',1,30000814,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(1791,'2015-03-10 22:38:43','2015-10-11 16:46:33',1,30000083,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,7,0),(1792,'2015-03-10 22:38:43','2015-03-10 22:38:43',1,30001313,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(1793,'2015-03-10 22:38:43','2015-10-11 16:46:33',1,30003494,0,0,1,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,3,1,0,0,0),(1794,'2015-03-10 22:38:43','2015-10-11 16:46:33',1,30000740,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(1795,'2015-03-10 22:38:43','2015-10-11 16:46:33',1,30005317,0,0,0,0,0,0,0,0,0,0,0,1,0,1,0,0,0,1,0,0,0,0,0,0),(1796,'2015-03-10 22:38:43','2015-10-11 16:46:33',1,30001378,0,0,0,1,1,2,1,0,0,0,0,1,0,2,0,0,1,0,1,0,0,0,1,6),(1797,'2015-03-10 22:38:43','2015-10-11 16:46:33',1,30001970,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0),(1798,'2015-03-10 22:38:43','2015-03-10 22:38:43',1,30001434,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(1799,'2015-03-10 22:38:43','2015-10-11 16:46:33',1,30003044,0,0,0,0,0,0,0,0,0,1,3,1,0,2,0,1,1,3,1,0,2,4,1,0),(1800,'2015-03-10 22:38:43','2015-03-10 22:38:43',1,30003462,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(1801,'2015-03-10 22:38:43','2015-10-11 16:46:33',1,30002398,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,2,0,0,0,0,0,0),(1802,'2015-03-10 22:38:43','2015-10-11 16:46:33',1,30005315,1,1,1,0,0,0,0,0,0,0,0,0,0,0,0,2,2,0,1,0,0,0,0,0),(1803,'2015-03-10 22:38:43','2015-10-11 16:46:33',1,30003412,3,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0),(1804,'2015-03-10 22:38:43','2015-10-11 16:46:33',1,30005313,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,2,0,0,0,1,0,0,0),(1805,'2015-03-10 22:38:43','2015-03-10 22:38:43',1,30004149,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(1806,'2015-03-10 22:38:43','2015-10-11 16:46:33',1,30001399,0,0,1,0,0,0,0,1,2,0,1,0,1,0,0,0,0,2,1,0,1,1,0,0),(1807,'2015-03-10 22:38:43','2015-10-11 16:46:33',1,30003570,0,0,0,0,1,0,0,0,1,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0),(1808,'2015-03-10 22:38:43','2015-10-11 16:46:33',1,30045336,3,1,0,1,0,1,0,0,1,0,0,0,0,0,2,1,0,0,0,0,4,0,0,1),(1809,'2015-03-10 22:38:43','2015-10-11 16:46:33',1,30023410,3,4,3,7,3,1,5,1,5,2,8,9,4,4,11,5,1,4,1,6,12,8,6,5),(1810,'2015-03-10 22:38:43','2015-03-10 22:38:43',1,30004880,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(1811,'2015-03-10 22:38:43','2015-10-11 16:46:33',1,30002548,1,0,0,0,1,1,4,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1),(1812,'2015-03-10 22:38:43','2015-10-11 16:46:33',1,30001672,2,0,4,2,3,0,0,1,0,0,0,0,0,0,1,1,0,1,0,0,0,2,1,0),(1813,'2015-03-10 22:38:43','2015-03-10 22:38:43',1,30005202,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(1814,'2015-03-10 22:38:43','2015-03-10 22:38:43',1,30003662,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(1815,'2015-03-10 22:38:43','2015-10-11 16:46:33',1,30003337,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0),(1816,'2015-03-10 22:38:43','2015-10-11 16:46:33',1,30005082,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,2,0,0,0,0,0,0),(1817,'2015-03-10 22:38:43','2015-10-11 16:46:33',1,30045339,3,0,0,0,0,0,0,0,0,0,0,6,3,9,3,3,21,1,0,0,6,2,2,6),(1818,'2015-03-10 22:38:43','2015-03-10 22:38:43',1,30001430,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(1819,'2015-03-10 22:38:43','2015-10-11 16:46:33',1,30003424,0,0,1,0,0,0,0,0,0,1,0,0,0,0,1,0,0,0,0,0,0,1,0,0),(1820,'2015-03-10 22:38:43','2015-10-11 16:46:33',1,30002769,0,0,0,0,3,2,1,0,0,0,0,1,0,3,0,0,0,1,0,1,1,1,0,1),(1821,'2015-03-10 22:38:43','2015-10-11 16:46:33',1,30002558,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0),(1822,'2015-03-10 22:38:43','2015-03-10 22:38:43',1,30003045,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(1823,'2015-03-10 22:38:43','2015-03-10 22:38:43',1,30003454,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(1824,'2015-03-10 22:38:43','2015-10-11 16:46:33',1,30002412,0,0,0,1,0,0,0,0,0,0,0,2,0,0,1,0,0,1,0,1,1,0,0,0),(1825,'2015-03-10 22:38:43','2015-10-11 16:46:33',1,30002475,0,0,0,0,0,0,0,0,0,2,1,0,0,1,1,1,0,0,0,0,0,0,0,3),(1826,'2015-03-10 22:38:43','2015-03-10 22:38:43',1,30000980,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(1827,'2015-03-10 22:38:43','2015-03-10 22:38:43',1,30001942,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(1828,'2015-03-10 22:38:43','2015-03-10 22:38:43',1,30003612,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(1829,'2015-03-10 22:38:43','2015-03-10 22:38:43',1,30002845,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(1830,'2015-03-10 22:38:43','2015-10-11 16:46:33',1,30004388,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0),(1831,'2015-03-10 22:38:43','2015-03-10 22:38:43',1,30004835,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(1832,'2015-03-10 22:38:43','2015-10-11 16:46:33',1,30001035,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0),(1833,'2015-03-10 22:38:43','2015-03-10 22:38:43',1,30000676,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(1834,'2015-03-10 22:38:43','2015-10-11 16:46:33',1,30003413,1,0,0,0,1,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,0,0),(1835,'2015-03-10 22:38:43','2015-10-11 16:46:33',1,30002810,0,0,0,0,3,3,0,0,0,1,1,2,10,4,4,1,0,3,1,2,1,2,0,3),(1836,'2015-03-10 22:38:43','2015-03-10 22:38:43',1,30002969,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(1837,'2015-03-10 22:38:43','2015-03-10 22:38:43',1,30033410,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(1838,'2015-03-10 22:38:43','2015-10-11 16:46:33',1,30001371,1,0,0,0,0,0,1,0,0,0,0,0,0,1,0,0,1,0,0,1,1,0,0,0),(1839,'2015-03-10 22:38:43','2015-10-11 16:46:33',1,30002742,2,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,0,1,0,0,0),(1840,'2015-03-10 22:38:43','2015-10-11 16:46:33',1,30003472,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,1,0,0,0),(1841,'2015-03-10 22:38:43','2015-03-10 22:38:43',1,30003078,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(1842,'2015-03-10 22:38:43','2015-10-11 16:46:33',1,30003463,0,0,0,2,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,1,0,0,0),(1843,'2015-03-10 22:38:43','2015-10-11 16:46:33',1,30002640,0,0,0,0,0,0,1,0,0,0,2,0,0,2,1,0,0,1,0,0,0,2,0,0),(1844,'2015-03-10 22:38:43','2015-10-11 16:46:33',1,30003425,3,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0),(1845,'2015-03-10 22:38:43','2015-10-11 16:46:33',1,30003419,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0),(1846,'2015-03-10 22:38:43','2015-10-11 16:46:33',1,30004259,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(1847,'2015-03-10 22:38:43','2015-10-11 16:46:33',1,30000203,0,0,0,0,0,0,0,1,0,0,0,0,0,1,1,1,0,0,0,0,0,0,0,0),(1848,'2015-03-10 22:38:43','2015-03-10 22:38:43',1,30003867,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(1849,'2015-03-10 22:38:43','2015-10-11 16:46:33',1,30001233,0,2,6,0,0,0,1,0,0,1,3,1,0,0,1,1,0,0,0,0,0,1,0,0),(1850,'2015-03-10 22:38:43','2015-10-11 16:46:33',1,30003537,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1),(1851,'2015-03-10 22:38:43','2015-03-10 22:38:43',1,30004033,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(1852,'2015-03-10 22:38:43','2015-10-11 16:46:33',1,30001029,0,0,0,0,0,0,0,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(1853,'2015-03-10 22:38:43','2015-10-11 16:46:33',1,30001736,0,0,0,0,0,0,0,0,0,0,1,0,1,0,0,0,0,0,0,0,0,0,0,0),(1854,'2015-03-10 22:38:43','2015-10-11 16:46:33',1,30004305,0,0,0,0,0,0,0,0,0,1,0,1,0,0,0,0,0,0,0,0,0,0,0,0),(1855,'2015-03-10 22:38:43','2015-10-11 16:46:33',1,30004603,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,1,0,0,0,0,0),(1856,'2015-03-10 22:38:43','2015-10-11 16:46:33',1,30002964,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0),(1857,'2015-03-10 22:38:43','2015-10-11 16:46:33',1,30003842,0,1,9,0,0,0,0,0,0,2,2,2,0,0,0,0,0,1,2,0,2,0,0,4),(1858,'2015-03-10 22:38:43','2015-03-10 22:38:43',1,30000028,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(1859,'2015-03-10 22:38:43','2015-10-11 16:46:33',1,30000091,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(1860,'2015-03-10 22:38:43','2015-10-11 16:46:33',1,30000137,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,0,0),(1861,'2015-03-10 22:38:43','2015-10-11 16:46:33',1,30002730,1,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,1,0,0),(1862,'2015-03-10 22:38:43','2015-10-11 16:46:33',1,30003822,4,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(1863,'2015-03-10 22:38:43','2015-10-11 16:46:33',1,30004986,0,0,1,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0),(1864,'2015-03-10 22:38:43','2015-03-10 22:38:43',1,30002260,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(1865,'2015-03-10 22:38:43','2015-10-11 16:46:33',1,30002673,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(1866,'2015-03-10 22:38:43','2015-10-11 16:46:33',1,30004287,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,0,1,0,0,0,0,0),(1867,'2015-03-10 22:38:43','2015-10-11 16:46:33',1,30002095,0,0,0,0,0,0,0,0,1,2,3,4,3,2,9,6,1,1,6,1,3,2,1,10),(1868,'2015-03-10 22:38:43','2015-10-11 16:46:33',1,30003517,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,2,0,0),(1869,'2015-03-10 22:38:43','2015-10-11 16:46:33',1,30003033,0,0,0,0,0,0,1,0,0,0,0,0,0,1,0,0,1,0,0,0,0,0,0,0),(1870,'2015-03-10 22:38:43','2015-10-11 16:46:33',1,30001535,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,2,0),(1871,'2015-03-10 22:38:43','2015-03-10 22:38:43',1,30004182,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(1872,'2015-03-10 22:38:43','2015-03-10 22:38:43',1,30001571,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(1873,'2015-03-10 22:38:43','2015-03-10 22:38:43',1,30003365,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(1874,'2015-03-10 22:38:43','2015-03-10 22:38:43',1,30000437,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(1875,'2015-03-10 22:38:43','2015-10-11 16:46:33',1,30003825,0,1,1,5,2,7,2,0,0,0,0,0,0,3,1,1,1,0,0,1,0,6,10,2),(1876,'2015-03-10 22:38:43','2015-10-11 16:46:33',1,30003466,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,1,1,0,0,1,1,0,0,0),(1877,'2015-03-10 22:38:43','2015-10-11 16:46:33',1,30003381,0,0,3,3,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(1878,'2015-03-10 22:38:43','2015-03-10 22:38:43',1,30000796,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(1879,'2015-03-10 22:38:43','2015-10-11 16:46:33',1,30002060,1,7,6,5,1,2,0,1,1,3,6,4,2,0,6,1,1,3,4,4,1,1,6,1),(1880,'2015-03-10 22:38:43','2015-10-11 16:46:33',1,30003839,3,2,2,3,3,1,2,0,1,0,0,0,0,1,0,1,2,1,0,0,0,0,0,1),(1881,'2015-03-10 22:38:43','2015-10-11 16:46:33',1,30003408,0,2,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,1,1,0,0,0),(1882,'2015-03-10 22:38:43','2015-10-11 16:46:33',1,30003385,0,0,0,0,1,1,0,0,0,0,1,1,0,0,0,0,0,0,0,0,0,0,0,0),(1883,'2015-03-10 22:38:43','2015-03-10 22:38:43',1,30001023,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(1884,'2015-03-10 22:38:43','2015-03-10 22:38:43',1,30004314,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(1885,'2015-03-10 22:38:43','2015-10-11 16:46:33',1,30001985,0,2,0,3,2,2,0,0,3,0,0,0,0,2,0,0,0,0,24,0,0,0,2,2),(1886,'2015-03-10 22:38:43','2015-10-11 16:46:33',1,30001181,0,0,0,1,0,0,0,0,0,1,1,0,0,1,1,0,0,0,0,0,0,1,1,0),(1887,'2015-03-10 22:38:43','2015-10-11 16:46:33',1,30002369,0,0,0,0,0,0,0,0,1,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0),(1888,'2015-03-10 22:38:43','2015-10-11 16:46:33',1,30001252,0,0,0,1,0,0,0,0,0,0,2,2,0,1,0,0,0,0,0,1,0,1,0,1),(1889,'2015-03-10 22:38:43','2015-03-10 22:38:43',1,30005281,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(1890,'2015-03-10 22:38:43','2015-10-11 16:46:33',1,30003392,0,0,0,0,0,0,0,0,5,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(1891,'2015-03-10 22:38:43','2015-10-11 16:46:33',1,30002543,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,50,44,2,0,0,0),(1892,'2015-03-10 22:38:43','2015-10-11 16:46:33',1,30002085,0,0,0,0,0,0,0,0,0,2,2,1,0,1,2,2,3,1,0,0,1,1,0,2),(1893,'2015-03-10 22:38:43','2015-10-11 16:46:33',1,30003281,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,0),(1894,'2015-03-10 22:38:43','2015-10-11 16:46:33',1,30001769,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1),(1895,'2015-03-10 22:38:43','2015-10-11 16:46:33',1,30002962,3,4,18,4,14,1,4,0,0,1,0,0,2,0,0,4,5,0,2,1,0,0,0,0),(1896,'2015-03-10 22:38:43','2015-10-11 16:46:33',1,30000559,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(1897,'2015-03-10 22:38:43','2015-03-10 22:38:43',1,30002598,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(1898,'2015-03-10 22:38:43','2015-10-11 16:46:33',1,30000666,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(1899,'2015-03-10 22:38:43','2015-03-10 22:38:43',1,30005103,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(1900,'2015-03-10 22:38:43','2015-03-10 22:38:43',1,30000856,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(1901,'2015-03-10 22:38:43','2015-10-11 16:46:33',1,30003192,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(1902,'2015-03-10 22:38:43','2015-10-11 16:46:33',1,30004653,1,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0),(1903,'2015-03-10 22:38:43','2015-10-11 16:46:33',1,30004414,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1),(1904,'2015-03-10 22:38:43','2015-10-11 16:46:33',1,30004327,0,0,0,0,1,1,0,0,0,0,0,0,0,0,2,0,0,0,0,0,0,0,0,0),(1905,'2015-03-10 22:38:43','2015-10-11 16:46:33',1,30004784,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,0,0,0),(1906,'2015-03-10 22:38:43','2015-10-11 16:46:33',1,30005184,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0),(1907,'2015-03-10 22:38:43','2015-10-11 16:46:33',1,30000279,0,0,0,0,0,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(1908,'2015-03-10 22:38:43','2015-10-11 16:46:33',1,30003737,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1),(1909,'2015-03-10 22:38:43','2015-10-11 16:46:33',1,30000578,1,3,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0),(1910,'2015-03-10 22:38:43','2015-03-10 22:38:43',1,30000897,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(1911,'2015-03-10 22:38:43','2015-03-10 22:38:43',1,30005183,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(1912,'2015-03-10 22:38:43','2015-03-10 22:38:43',1,30000416,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(1913,'2015-03-10 22:38:43','2015-03-10 22:38:43',1,30001635,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(1914,'2015-03-10 22:38:43','2015-03-10 22:38:43',1,30004929,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(1915,'2015-03-10 22:38:43','2015-03-10 22:38:43',1,30000934,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(1916,'2015-03-10 22:38:43','2015-10-11 16:46:33',1,30002019,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(1917,'2015-03-10 22:38:43','2015-10-11 16:46:33',1,30004032,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,0,2,0),(1918,'2015-03-10 22:38:43','2015-10-11 16:46:33',1,30000572,4,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(1919,'2015-03-10 22:38:43','2015-03-10 22:38:43',1,30000853,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(1920,'2015-03-10 22:38:43','2015-10-11 16:46:33',1,30004757,0,0,0,1,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,1,0,0,0),(1921,'2015-03-10 22:38:43','2015-03-10 22:38:43',1,30001064,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(1922,'2015-03-10 22:38:43','2015-03-10 22:38:43',1,30001906,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(1923,'2015-03-10 22:38:43','2015-10-11 16:46:33',1,30003126,0,0,0,1,1,1,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0),(1924,'2015-03-10 22:38:43','2015-03-10 22:38:43',1,30001801,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(1925,'2015-03-10 22:38:43','2015-03-10 22:38:43',1,30001087,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(1926,'2015-03-10 22:38:43','2015-10-11 16:46:33',1,30004503,0,0,0,0,0,0,1,0,0,0,2,2,0,1,0,0,0,0,0,0,0,0,0,0),(1927,'2015-03-10 22:38:43','2015-10-11 16:46:33',1,30003751,26,0,0,1,0,1,2,0,0,0,0,0,0,2,5,2,31,0,13,0,100,1,37,1),(1928,'2015-03-10 22:38:43','2015-03-10 22:38:43',1,30004867,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(1929,'2015-03-10 22:38:43','2015-10-11 16:46:33',1,30005187,0,0,0,0,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(1930,'2015-03-10 22:38:43','2015-03-10 22:38:43',1,30004652,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(1931,'2015-03-10 22:38:43','2015-10-11 16:46:33',1,30000695,0,0,2,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(1932,'2015-03-10 22:38:43','2015-03-10 22:38:43',1,30000804,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(1933,'2015-03-10 22:38:43','2015-10-11 16:46:33',1,30004013,1,0,0,0,0,0,0,0,0,0,1,1,1,0,0,0,0,1,0,0,0,0,0,0),(1934,'2015-03-10 22:38:43','2015-03-10 22:38:43',1,30000497,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(1935,'2015-03-10 22:38:43','2015-10-11 16:46:33',1,30000810,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0),(1936,'2015-03-10 22:38:43','2015-03-10 22:38:43',1,30000754,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(1937,'2015-03-10 22:38:43','2015-03-10 22:38:43',1,30000332,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(1938,'2015-03-10 22:38:43','2015-03-10 22:38:43',1,30002826,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(1939,'2015-03-10 22:38:43','2015-10-11 16:46:33',1,30001171,0,0,1,0,0,0,2,0,0,0,2,3,0,0,0,0,0,0,0,2,4,0,0,1),(1940,'2015-03-10 22:38:43','2015-10-11 16:46:33',1,30000959,0,0,0,0,0,0,0,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(1941,'2015-03-10 22:38:43','2015-03-10 22:38:43',1,30004507,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(1942,'2015-03-10 22:38:43','2015-10-11 16:46:33',1,30000600,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,2,0,0,0,0,0,0,0,0),(1943,'2015-03-10 22:38:43','2015-10-11 16:46:33',1,30003269,0,0,0,1,0,0,1,0,0,0,0,0,0,2,0,0,0,0,0,0,0,0,0,0),(1944,'2015-03-10 22:38:43','2015-03-10 22:38:43',1,30002381,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(1945,'2015-03-10 22:38:43','2015-03-10 22:38:43',1,30001957,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(1946,'2015-03-10 22:38:43','2015-03-10 22:38:43',1,30002152,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(1947,'2015-03-10 22:38:43','2015-10-11 16:46:33',1,30000981,0,0,1,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0),(1948,'2015-03-10 22:38:43','2015-10-11 16:46:33',1,30004046,3,0,1,1,0,1,4,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0),(1949,'2015-03-10 22:38:43','2015-03-10 22:38:43',1,30000913,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(1950,'2015-03-10 22:38:43','2015-03-10 22:38:43',1,30002320,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(1951,'2015-03-10 22:38:43','2015-10-11 16:46:33',1,30001153,0,0,0,1,0,0,0,0,0,0,2,2,1,0,0,0,0,0,1,6,0,0,1,1),(1952,'2015-03-10 22:38:43','2015-03-10 22:38:43',1,30000500,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(1953,'2015-03-10 22:38:43','2015-10-11 16:46:33',1,30001888,0,0,0,0,0,0,0,0,0,2,0,1,0,0,0,0,0,0,0,0,0,0,0,1),(1954,'2015-03-10 22:38:43','2015-10-11 16:46:33',1,30000233,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0),(1955,'2015-03-10 22:38:43','2015-10-11 16:46:33',1,30002221,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(1956,'2015-03-10 22:38:43','2015-03-10 22:38:43',1,30003505,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(1957,'2015-03-10 22:38:43','2015-10-11 16:46:33',1,30004276,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0),(1958,'2015-03-10 22:38:43','2015-10-11 16:46:33',1,30003473,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0),(1959,'2015-03-10 22:38:43','2015-03-10 22:38:43',1,30003002,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(1960,'2015-03-10 22:38:43','2015-03-10 22:38:43',1,30003938,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(1961,'2015-03-10 22:38:43','2015-03-10 22:38:43',1,30001049,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(1962,'2015-03-10 22:38:43','2015-10-11 16:46:33',1,30000044,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(1963,'2015-03-10 22:38:43','2015-10-11 16:46:33',1,30002651,0,0,0,0,0,0,0,0,1,0,1,0,0,0,0,0,0,0,0,0,0,0,1,0),(1964,'2015-03-10 22:38:43','2015-10-11 16:46:33',1,30003541,0,1,0,1,0,0,0,0,0,0,0,2,1,0,0,1,2,0,0,0,1,0,0,1),(1965,'2015-03-10 22:38:43','2015-10-11 16:46:33',1,30001256,0,0,1,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,1,0,0),(1966,'2015-03-10 22:38:43','2015-10-11 16:46:33',1,30002643,0,0,0,0,0,0,0,0,0,0,0,0,1,2,0,0,0,0,1,1,1,0,0,0),(1967,'2015-03-10 22:38:43','2015-03-10 22:38:43',1,30003599,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(1968,'2015-03-10 22:38:43','2015-03-10 22:38:43',1,30002321,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(1969,'2015-03-10 22:38:43','2015-10-11 16:46:33',1,30002881,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0),(1970,'2015-03-10 22:38:43','2015-03-10 22:38:43',1,30002827,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(1971,'2015-03-10 22:38:43','2015-10-11 16:46:33',1,30003718,2,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(1972,'2015-03-10 22:38:43','2015-10-11 16:46:33',1,30003276,1,1,7,5,4,6,2,2,1,21,3,2,1,1,0,0,1,0,0,15,0,0,0,3),(1973,'2015-03-10 22:38:43','2015-10-11 16:46:33',1,30004043,0,0,0,0,0,0,0,0,0,0,1,0,2,0,0,0,0,0,0,0,0,0,0,0),(1974,'2015-03-10 22:38:43','2015-10-11 16:46:33',1,30002423,1,0,0,0,0,0,1,1,0,0,0,1,0,0,1,1,0,1,2,0,1,0,0,0),(1975,'2015-03-10 22:38:43','2015-03-10 22:38:43',1,30004821,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(1976,'2015-03-10 22:38:43','2015-10-11 16:46:33',1,30002408,0,0,0,1,0,0,0,0,0,0,0,0,0,2,0,0,0,0,0,0,0,0,0,0),(1977,'2015-03-10 22:38:43','2015-10-11 16:46:33',1,30005030,0,1,0,0,0,0,0,0,1,1,0,1,0,0,1,1,0,0,2,0,0,0,1,0),(1978,'2015-03-10 22:38:43','2015-03-10 22:38:43',1,30000050,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(1979,'2015-03-10 22:38:43','2015-10-11 16:46:33',1,30001709,0,0,0,1,0,0,5,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(1980,'2015-03-10 22:38:43','2015-03-10 22:38:43',1,30004263,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(1981,'2015-03-10 22:38:43','2015-10-11 16:46:33',1,30002628,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(1982,'2015-03-10 22:38:43','2015-10-11 16:46:33',1,30002345,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(1983,'2015-03-10 22:38:43','2015-10-11 16:46:33',1,30000226,0,0,0,0,0,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(1984,'2015-03-10 22:38:43','2015-03-10 22:38:43',1,30001344,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(1985,'2015-03-10 22:38:43','2015-03-10 22:38:43',1,30000418,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(1986,'2015-03-10 22:38:43','2015-03-10 22:38:43',1,30000495,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(1987,'2015-03-10 22:38:43','2015-10-11 16:46:33',1,30004254,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0),(1988,'2015-03-10 22:38:43','2015-10-11 16:46:33',1,30043410,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,3,1,0,0,1,0,0,0,0),(1989,'2015-03-10 22:38:43','2015-03-10 22:38:43',1,30003442,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(1990,'2015-03-10 22:38:43','2015-10-11 16:46:33',1,30004110,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,4,0,0,1),(1991,'2015-03-10 22:38:43','2015-10-11 16:46:33',1,30003691,0,0,1,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,1,0,0,0,0),(1992,'2015-03-10 22:38:43','2015-03-10 22:38:43',1,30003906,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(1993,'2015-03-10 22:38:43','2015-03-10 22:38:43',1,30002335,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(1994,'2015-03-10 22:38:43','2015-10-11 16:46:33',1,30003234,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(1995,'2015-03-10 22:38:43','2015-03-10 22:38:43',1,30002316,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(1996,'2015-03-10 22:38:43','2015-10-11 16:46:33',1,30004980,21,1,2,5,3,4,1,0,0,2,3,1,0,1,5,3,2,0,15,1,3,11,3,0),(1997,'2015-03-10 22:38:43','2015-03-10 22:38:43',1,30005101,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(1998,'2015-03-10 22:38:43','2015-10-11 16:46:33',1,30002082,0,1,0,1,0,0,0,0,0,11,1,0,0,4,2,2,0,6,0,1,2,0,1,3),(1999,'2015-03-10 22:38:43','2015-10-11 16:46:33',1,30003382,0,5,0,1,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,0,0),(2000,'2015-03-10 22:38:43','2015-10-11 16:46:33',1,30002677,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0),(2001,'2015-03-10 22:38:43','2015-03-10 22:38:43',1,30004732,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(2002,'2015-03-10 22:38:43','2015-10-11 16:46:33',1,30002898,0,0,0,0,0,1,22,0,0,0,0,1,0,0,0,1,1,0,0,0,0,0,0,1),(2003,'2015-03-10 22:38:43','2015-10-11 16:46:33',1,30000227,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(2004,'2015-03-10 22:38:43','2015-10-11 16:46:33',1,30000484,2,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1),(2005,'2015-03-10 22:38:43','2015-03-10 22:38:43',1,30002156,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(2006,'2015-03-10 22:38:43','2015-03-10 22:38:43',1,30003118,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(2007,'2015-03-10 22:38:43','2015-03-10 22:38:43',1,30000809,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(2008,'2015-03-10 22:38:43','2015-03-10 22:38:43',1,30001638,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(2009,'2015-03-10 22:38:43','2015-03-10 22:38:43',1,30001487,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(2010,'2015-03-10 22:38:43','2015-10-11 16:46:33',1,30001544,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(2011,'2015-03-10 22:38:43','2015-10-11 16:46:33',1,30002891,0,0,0,0,0,0,0,0,0,0,0,0,0,0,4,1,0,0,0,0,0,0,1,0),(2012,'2015-03-10 22:38:43','2015-10-11 16:46:33',1,30001148,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0),(2013,'2015-03-10 22:38:43','2015-10-11 16:46:33',1,30004303,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0),(2014,'2015-03-10 22:38:43','2015-10-11 16:46:33',1,30023489,0,0,0,1,0,0,0,0,0,1,1,0,0,0,0,1,1,0,0,0,0,0,0,0),(2015,'2015-03-10 22:38:43','2015-10-11 16:46:33',1,30002663,0,0,1,0,0,0,0,0,0,0,1,1,0,0,0,0,0,0,0,3,2,0,0,0),(2016,'2015-03-10 22:38:43','2015-10-11 16:46:33',1,30000023,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,3,0,0,0),(2017,'2015-03-10 22:38:43','2015-03-10 22:38:43',1,30004058,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(2018,'2015-03-10 22:38:43','2015-10-11 16:46:33',1,30002630,0,0,3,0,2,3,0,0,0,13,7,0,0,0,0,0,0,0,0,0,0,0,0,0),(2019,'2015-03-10 22:38:43','2015-03-10 22:38:43',1,30001637,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(2020,'2015-03-10 22:38:43','2015-03-10 22:38:43',1,30000478,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(2021,'2015-03-10 22:38:43','2015-10-11 16:46:33',1,30003826,0,1,3,0,1,2,0,0,2,0,1,0,0,2,3,2,0,3,1,0,5,37,1,2),(2022,'2015-03-10 22:38:43','2015-10-11 16:46:33',1,30002526,1,0,0,0,0,0,0,0,0,0,0,0,2,0,0,0,0,0,1,0,0,1,0,2),(2023,'2015-03-10 22:38:43','2015-10-11 16:46:33',1,30003036,0,1,0,0,0,0,0,0,4,1,0,0,1,0,1,1,0,0,1,1,0,1,1,0),(2024,'2015-03-10 22:38:43','2015-10-11 16:46:33',1,30003394,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0),(2025,'2015-03-10 22:38:43','2015-10-11 16:46:33',1,30003420,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(2026,'2015-03-10 22:38:43','2015-10-11 16:46:33',1,30002090,0,0,0,0,1,1,0,0,0,4,15,9,19,1,14,7,9,6,4,7,5,6,5,9),(2027,'2015-03-10 22:38:43','2015-10-11 16:46:33',1,30002734,1,0,0,1,0,0,0,0,0,0,0,0,1,0,1,1,1,0,0,0,0,0,0,0),(2028,'2015-03-10 22:38:43','2015-10-11 16:46:33',1,30000168,0,0,0,0,0,0,4,0,0,0,0,0,1,0,0,0,0,0,0,1,1,0,0,0),(2029,'2015-03-10 22:38:43','2015-10-11 16:46:33',1,30002180,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(2030,'2015-03-10 22:38:43','2015-10-11 16:46:33',1,30003467,7,2,0,0,0,0,2,3,1,1,7,7,3,0,0,1,3,5,2,0,0,4,6,2),(2031,'2015-03-10 22:38:43','2015-03-10 22:38:43',1,30000398,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(2032,'2015-03-10 22:38:43','2015-03-10 22:38:43',1,30000219,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(2033,'2015-03-10 22:38:43','2015-10-11 16:46:33',1,30003710,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,3),(2034,'2015-03-10 22:38:43','2015-10-11 16:46:33',1,30001364,0,0,0,1,2,2,0,0,1,2,1,0,0,3,0,0,0,1,0,0,0,1,0,0),(2035,'2015-03-10 22:38:43','2015-10-11 16:46:33',1,30003095,0,0,0,0,0,0,0,0,0,0,0,0,0,0,6,0,0,0,0,0,0,0,0,0),(2036,'2015-03-10 22:38:43','2015-10-11 16:46:33',1,30000199,0,0,0,1,1,1,0,0,0,1,0,1,0,0,1,0,0,0,0,1,0,1,1,0),(2037,'2015-03-10 22:38:43','2015-10-11 16:46:33',1,30000017,1,0,1,0,0,0,0,1,0,0,0,0,0,2,1,0,0,0,0,0,0,2,0,0),(2038,'2015-03-10 22:38:43','2015-10-11 16:46:33',1,30001852,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,1,0,0,3,4,1,0),(2039,'2015-03-10 22:38:43','2015-03-10 22:38:43',1,30004161,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(2040,'2015-03-10 22:38:43','2015-03-10 22:38:43',1,30004197,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(2041,'2015-03-10 22:38:43','2015-03-10 22:38:43',1,30001775,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(2042,'2015-03-10 22:38:43','2015-03-10 22:38:43',1,30000906,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(2043,'2015-03-10 22:38:43','2015-10-11 16:46:33',1,30002021,0,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(2044,'2015-03-10 22:38:43','2015-10-11 16:46:33',1,30004718,0,2,0,0,0,0,1,5,1,0,1,1,0,0,0,0,0,0,0,0,0,0,0,0),(2045,'2015-03-10 22:38:43','2015-10-11 16:46:33',1,30003711,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,1),(2046,'2015-03-10 22:38:43','2015-03-10 22:38:43',1,30001606,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(2047,'2015-03-10 22:38:43','2015-03-10 22:38:43',1,30000835,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(2048,'2015-03-10 22:38:43','2015-10-11 16:46:33',1,30000850,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(2049,'2015-03-10 22:38:43','2015-03-10 22:38:43',1,30000675,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(2050,'2015-03-10 22:38:43','2015-03-10 22:38:43',1,30002128,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(2051,'2015-03-10 22:38:43','2015-10-11 16:46:33',1,30001186,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0),(2052,'2015-03-10 22:38:43','2015-03-10 22:38:43',1,30003213,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(2053,'2015-03-10 22:38:43','2015-10-11 16:46:33',1,30001853,0,0,0,0,0,0,0,0,1,0,2,0,0,0,0,0,0,0,0,1,0,0,0,1),(2054,'2015-03-10 22:38:43','2015-03-10 22:38:43',1,30002878,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(2055,'2015-03-10 22:38:43','2015-10-11 16:46:33',1,30001041,0,1,1,1,0,0,1,1,1,1,1,1,1,7,1,1,3,2,0,4,4,0,1,1),(2056,'2015-03-10 22:38:43','2015-10-11 16:46:33',1,30003949,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(2057,'2015-03-10 22:38:43','2015-03-10 22:38:43',1,30003161,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(2058,'2015-03-10 22:38:43','2015-10-11 16:46:33',1,30003703,0,0,0,0,0,0,0,0,0,2,3,1,1,2,4,2,0,0,1,0,0,2,0,9),(2059,'2015-03-10 22:38:43','2015-03-10 22:38:43',1,30003367,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(2060,'2015-03-10 22:38:43','2015-03-10 22:38:43',1,30002476,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(2061,'2015-03-10 22:38:43','2015-10-11 16:46:33',1,30001183,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,1,0,0,0,0,0,0,1),(2062,'2015-03-10 22:38:43','2015-10-11 16:46:33',1,30001227,1,0,0,0,0,0,0,0,1,1,0,1,2,0,9,7,2,3,0,1,0,4,1,0),(2063,'2015-03-10 22:38:43','2015-10-11 16:46:33',1,30003772,0,0,0,0,0,0,0,0,0,0,2,0,0,0,1,1,0,0,0,0,0,0,0,0),(2064,'2015-03-10 22:38:43','2015-10-11 16:46:33',1,30004892,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,1,0,5,0,1,0,0,0),(2065,'2015-03-10 22:38:43','2015-03-10 22:38:43',1,30004945,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(2066,'2015-03-10 22:38:43','2015-03-10 22:38:43',1,30004876,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(2067,'2015-03-10 22:38:43','2015-03-10 22:38:43',1,30000338,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(2068,'2015-03-10 22:38:43','2015-03-10 22:38:43',1,30000778,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(2069,'2015-03-10 22:38:43','2015-10-11 16:46:33',1,30001002,0,0,0,0,0,0,0,0,0,0,1,3,0,0,6,1,1,3,1,2,3,1,1,3),(2070,'2015-03-10 22:38:43','2015-03-10 22:38:43',1,30005113,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(2071,'2015-03-10 22:38:43','2015-03-10 22:38:43',1,30001802,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(2072,'2015-03-10 22:38:43','2015-03-10 22:38:43',1,30003155,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(2073,'2015-03-10 22:38:43','2015-10-11 16:46:33',1,30002853,0,0,0,0,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(2074,'2015-03-10 22:38:43','2015-10-11 16:46:33',1,30000213,0,0,0,1,0,0,2,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(2075,'2015-03-10 22:38:43','2015-10-11 16:46:33',1,30004696,0,0,0,0,0,0,0,0,0,0,0,0,0,0,4,0,0,0,0,0,1,0,0,1),(2076,'2015-03-10 22:38:43','2015-10-11 16:46:33',1,30001987,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0),(2077,'2015-03-10 22:38:43','2015-10-11 16:46:33',1,30004793,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,4,5,0),(2078,'2015-03-10 22:38:43','2015-10-11 16:46:33',1,30001848,1,0,0,3,0,0,0,0,0,2,1,0,0,0,0,0,0,1,0,0,7,0,5,0),(2079,'2015-03-10 22:38:43','2015-03-10 22:38:43',1,30001607,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(2080,'2015-03-10 22:38:43','2015-10-11 16:46:33',1,30004962,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,1,1,0,0,0),(2081,'2015-03-10 22:38:43','2015-10-11 16:46:33',1,30002301,3,0,0,0,0,0,0,0,2,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0),(2082,'2015-03-10 22:38:43','2015-10-11 16:46:33',1,30001036,0,0,0,0,0,0,1,0,0,1,0,0,0,0,0,1,1,0,0,0,0,0,0,0),(2083,'2015-03-10 22:38:43','2015-10-11 16:46:33',1,30004721,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(2084,'2015-03-10 22:38:43','2015-10-11 16:46:33',1,30004631,0,0,1,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0),(2085,'2015-03-10 22:38:43','2015-10-11 16:46:33',1,30001569,0,0,0,0,0,0,0,0,0,0,0,0,0,5,1,0,0,0,0,0,0,0,0,0),(2086,'2015-03-10 22:38:43','2015-10-11 16:46:33',1,30003184,0,0,0,0,0,0,0,0,0,0,0,0,0,4,1,0,0,0,0,0,0,0,0,0),(2087,'2015-03-10 22:38:43','2015-03-10 22:38:43',1,30004534,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(2088,'2015-03-10 22:38:43','2015-10-11 16:46:33',1,30003133,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(2089,'2015-03-10 22:38:43','2015-03-10 22:38:43',1,30003636,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(2090,'2015-03-10 22:38:43','2015-03-10 22:38:43',1,30000537,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(2091,'2015-03-10 22:38:43','2015-10-11 16:46:33',1,30004854,0,0,0,0,0,0,0,1,0,0,0,0,0,0,2,0,0,0,0,0,0,0,0,0),(2092,'2015-03-10 22:38:43','2015-03-10 22:38:43',1,30000690,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(2093,'2015-03-10 22:38:43','2015-03-10 22:38:43',1,30004664,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(2094,'2015-03-10 22:38:43','2015-03-10 22:38:43',1,30004697,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(2095,'2015-03-10 22:38:43','2015-03-10 22:38:43',1,30001501,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(2096,'2015-03-10 22:38:43','2015-03-10 22:38:43',1,30003101,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(2097,'2015-03-10 22:38:43','2015-10-11 16:46:33',1,30000460,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,0,0,0,0,0,0,0),(2098,'2015-03-10 22:38:43','2015-03-10 22:38:43',1,30002861,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(2099,'2015-03-10 22:38:43','2015-03-10 22:38:43',1,30004536,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(2100,'2015-03-10 22:38:43','2015-10-11 16:46:33',1,30000310,0,0,0,0,0,0,0,0,0,1,1,1,2,0,0,0,0,0,0,0,0,0,0,0),(2101,'2015-03-10 22:38:43','2015-03-10 22:38:43',1,30001517,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(2102,'2015-03-10 22:38:43','2015-10-11 16:46:33',1,30003713,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,1,0,0,0),(2103,'2015-03-10 22:38:43','2015-03-10 22:38:43',1,30004061,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(2104,'2015-03-10 22:38:43','2015-10-11 16:46:33',1,30001982,2,0,0,0,3,0,0,0,0,0,1,1,0,1,1,0,0,0,0,1,1,0,0,0),(2105,'2015-03-10 22:38:43','2015-03-10 22:38:43',1,30004598,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(2106,'2015-03-10 22:38:43','2015-10-11 16:46:33',1,30000305,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,1),(2107,'2015-03-10 22:38:43','2015-10-11 16:46:33',1,30001348,0,0,0,0,0,0,0,2,4,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(2108,'2015-03-10 22:38:43','2015-10-11 16:46:33',1,30000545,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,0,0,0,0,0,1,0),(2109,'2015-03-10 22:38:43','2015-03-10 22:38:43',1,30000570,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(2110,'2015-03-10 22:38:43','2015-03-10 22:38:43',1,30004523,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(2111,'2015-03-10 22:38:43','2015-10-11 16:46:33',1,30002020,2,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(2112,'2015-03-10 22:38:43','2015-10-11 16:46:33',1,30001811,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(2113,'2015-03-10 22:38:43','2015-10-11 16:46:33',1,30003777,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2),(2114,'2015-03-10 22:38:43','2015-10-11 16:46:33',1,30005072,0,0,0,1,0,0,0,0,0,0,1,1,0,1,0,0,0,0,0,0,0,0,0,0),(2115,'2015-03-10 22:38:43','2015-10-11 16:46:33',1,30002204,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0),(2116,'2015-03-10 22:38:43','2015-10-11 16:46:33',1,30001698,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0),(2117,'2015-03-10 22:38:43','2015-10-11 16:46:33',1,30003544,0,0,0,0,0,0,0,0,3,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0),(2118,'2015-03-10 22:38:43','2015-10-11 16:46:33',1,30002674,0,0,0,0,0,0,0,0,1,0,1,0,1,0,1,0,0,0,0,0,0,0,0,1),(2119,'2015-03-10 22:38:43','2015-10-11 16:46:33',1,30003844,0,0,2,1,2,2,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,6),(2120,'2015-03-10 22:38:43','2015-10-11 16:46:33',1,30005273,0,0,0,0,1,1,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,2),(2121,'2015-03-10 22:38:43','2015-10-11 16:46:33',1,30004085,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,0,0,0,2,0),(2122,'2015-03-10 22:38:43','2015-10-11 16:46:33',1,30000107,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,5,0,2,0),(2123,'2015-03-10 22:38:43','2015-03-10 22:38:43',1,30003076,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(2124,'2015-03-10 22:38:43','2015-10-11 16:46:33',1,30003805,0,4,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0),(2125,'2015-03-10 22:38:43','2015-10-11 16:46:33',1,30004123,0,0,0,0,0,0,0,0,2,0,0,0,0,0,0,0,0,0,0,1,0,0,6,0),(2126,'2015-03-10 22:38:43','2015-03-10 22:38:43',1,30004119,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(2127,'2015-03-10 22:38:43','2015-03-10 22:38:43',1,30005282,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(2128,'2015-03-10 22:38:43','2015-03-10 22:38:43',1,30005240,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(2129,'2015-03-10 22:38:43','2015-10-11 16:46:33',1,30000839,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,8,5,2,1,0),(2130,'2015-03-10 22:38:43','2015-10-11 16:46:33',1,30002620,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0),(2131,'2015-03-10 22:38:43','2015-03-10 22:38:43',1,30000464,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(2132,'2015-03-10 22:38:43','2015-03-10 22:38:43',1,30001862,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(2133,'2015-03-10 22:38:43','2015-03-10 22:38:43',1,30000792,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(2134,'2015-03-10 22:38:43','2015-10-11 16:46:33',1,30001873,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2),(2135,'2015-03-10 22:38:43','2015-10-11 16:46:33',1,30001198,1,0,0,0,0,0,0,0,0,17,106,11,15,18,39,37,24,40,6,13,153,111,24,38),(2136,'2015-03-10 22:38:43','2015-10-11 16:46:33',1,30001177,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1),(2137,'2015-03-10 22:38:43','2015-10-11 16:46:33',1,30002093,1,0,1,0,0,0,0,0,0,1,1,0,0,5,0,1,2,0,0,0,0,1,1,0),(2138,'2015-03-10 22:38:43','2015-03-10 22:38:43',1,30003433,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(2139,'2015-03-10 22:38:43','2015-10-11 16:46:33',1,30003429,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,0,0),(2140,'2015-03-10 22:38:43','2015-10-11 16:46:33',1,30003897,1,0,1,0,0,0,2,0,0,0,0,0,0,1,1,1,0,0,0,0,0,2,1,0),(2141,'2015-03-10 22:38:43','2015-10-11 16:46:33',1,30000234,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0),(2142,'2015-03-10 22:38:43','2015-10-11 16:46:33',1,30000149,0,0,0,0,0,0,0,0,0,1,0,0,0,0,2,1,0,0,0,0,0,0,0,1),(2143,'2015-03-10 22:38:43','2015-10-11 16:46:33',1,30002386,0,0,1,0,0,0,0,0,2,0,0,0,0,1,1,1,0,0,0,0,0,0,0,0),(2144,'2015-03-10 22:38:43','2015-10-11 16:46:33',1,30000087,0,0,0,0,0,0,0,0,0,1,0,0,3,1,1,1,1,0,0,0,0,5,2,0),(2145,'2015-03-10 22:38:43','2015-10-11 16:46:33',1,30001663,0,0,0,1,0,0,1,1,0,0,0,0,0,1,0,0,0,0,0,0,0,2,1,0),(2146,'2015-03-10 22:38:43','2015-03-10 22:38:43',1,30004238,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(2147,'2015-03-10 22:38:43','2015-10-11 16:46:33',1,30004083,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,3,0),(2148,'2015-03-10 22:38:43','2015-10-11 16:46:33',1,30000126,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,3,9,0,1,0,0,0,0,0),(2149,'2015-03-10 22:38:43','2015-03-10 22:38:43',1,30002533,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(2150,'2015-03-10 22:38:43','2015-10-11 16:46:33',1,30002531,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,0,0,0,0,1,0,0),(2151,'2015-03-10 22:38:43','2015-10-11 16:46:33',1,30003586,0,0,0,0,1,1,0,0,0,0,0,0,0,0,2,5,4,0,0,0,0,0,0,0),(2152,'2015-03-10 22:38:43','2015-10-11 16:46:33',1,30005244,1,0,4,0,0,0,0,1,1,0,2,1,0,1,1,2,1,1,0,1,0,2,1,0),(2153,'2015-03-10 22:38:43','2015-10-11 16:46:33',1,30003023,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,1,0),(2154,'2015-03-10 22:38:43','2015-03-10 22:38:43',1,30004266,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(2155,'2015-03-10 22:38:43','2015-10-11 16:46:33',1,30004282,0,0,0,0,0,0,0,0,0,1,1,1,0,0,0,0,0,0,1,0,0,0,0,0),(2156,'2015-03-10 22:38:43','2015-10-11 16:46:33',1,30003871,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0),(2157,'2015-03-10 22:38:43','2015-03-10 22:38:43',1,30000936,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(2158,'2015-03-10 22:38:43','2015-03-10 22:38:43',1,30001580,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(2159,'2015-03-10 22:38:43','2015-10-11 16:46:33',1,30000553,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(2160,'2015-03-10 22:38:43','2015-03-10 22:38:43',1,30003202,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(2161,'2015-03-10 22:38:43','2015-10-11 16:46:33',1,30004288,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,0,0,0,0,0,0,0,0,0),(2162,'2015-03-10 22:38:43','2015-10-11 16:46:33',1,30004084,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,2,0,2,0,0),(2163,'2015-03-10 22:38:43','2015-03-10 22:38:43',1,30002972,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(2164,'2015-03-10 22:38:43','2015-10-11 16:46:33',1,30001714,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0),(2165,'2015-03-10 22:38:43','2015-03-10 22:38:43',1,30004474,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(2166,'2015-03-10 22:38:43','2015-10-11 16:46:33',1,30003035,0,2,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1),(2167,'2015-03-10 22:38:43','2015-03-10 22:38:43',1,30002232,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(2168,'2015-03-10 22:38:43','2015-10-11 16:46:33',1,30003877,0,0,0,0,0,0,0,0,0,0,2,2,1,0,0,0,0,0,0,0,0,0,0,0),(2169,'2015-03-10 22:38:43','2015-10-11 16:46:33',1,30000887,0,0,0,0,0,0,0,0,0,1,0,0,0,1,1,0,0,0,0,0,0,0,0,0),(2170,'2015-03-10 22:38:43','2015-10-11 16:46:33',1,30005288,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,3,3,0,0,0,0,0,1,0),(2171,'2015-03-10 22:38:43','2015-10-11 16:46:33',1,30005312,0,5,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,19,0,0,1,0,2),(2172,'2015-03-10 22:38:43','2015-10-11 16:46:33',1,30001192,0,0,0,0,0,0,0,0,0,1,0,0,0,0,3,3,0,0,1,0,0,0,2,0),(2173,'2015-03-10 22:38:43','2015-03-10 22:38:43',1,30003232,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(2174,'2015-03-10 22:38:43','2015-10-11 16:46:33',1,30000789,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,0,0),(2175,'2015-03-10 22:38:43','2015-03-10 22:38:43',1,30000859,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(2176,'2015-03-10 22:38:43','2015-03-10 22:38:43',1,30001122,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(2177,'2015-03-10 22:38:43','2015-10-11 16:46:33',1,30002133,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,0,0,0,0,0,0,0),(2178,'2015-03-10 22:38:43','2015-10-11 16:46:33',1,30000544,0,1,0,0,0,0,0,0,0,5,2,4,1,0,0,0,0,0,0,0,1,1,0,0),(2179,'2015-03-10 22:38:43','2015-10-11 16:46:33',1,30003698,0,0,0,1,0,1,0,0,0,0,0,0,0,0,1,1,1,0,0,0,0,0,0,0),(2180,'2015-03-10 22:38:43','2015-10-11 16:46:33',1,30001178,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2),(2181,'2015-03-10 22:38:43','2015-03-10 22:38:43',1,30000671,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(2182,'2015-03-10 22:38:43','2015-10-11 16:46:33',1,30002306,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1),(2183,'2015-03-10 22:38:43','2015-10-11 16:46:33',1,30003736,2,0,0,0,0,0,0,0,0,0,0,0,0,0,10,10,0,0,0,1,4,2,0,0),(2184,'2015-03-10 22:38:43','2015-10-11 16:46:33',1,30002725,0,0,1,0,1,0,0,1,0,1,1,1,0,0,0,0,0,1,0,0,0,0,0,0),(2185,'2015-03-10 22:38:43','2015-10-11 16:46:33',1,30000070,0,0,0,0,0,0,0,0,0,0,6,7,0,0,0,0,0,0,0,0,0,0,0,0),(2186,'2015-03-10 22:38:43','2015-10-11 16:46:33',1,30004087,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0),(2187,'2015-03-10 22:38:43','2015-10-11 16:46:33',1,30005268,9,0,2,2,6,5,0,0,0,7,8,8,0,0,4,1,1,2,0,1,0,0,1,1),(2188,'2015-03-10 22:38:43','2015-10-11 16:46:33',1,30002403,0,0,0,0,0,0,1,0,0,0,0,0,0,2,0,0,0,0,2,0,0,0,2,4),(2189,'2015-03-10 22:38:43','2015-10-11 16:46:33',1,30001716,0,0,0,1,0,0,0,0,0,0,2,1,0,0,0,0,0,0,0,0,0,0,0,0),(2190,'2015-03-10 22:38:43','2015-03-10 22:38:43',1,30003963,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(2191,'2015-03-10 22:38:43','2015-10-11 16:46:33',1,30001646,7,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1),(2192,'2015-03-10 22:38:43','2015-10-11 16:46:33',1,30003509,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0),(2193,'2015-03-10 22:38:43','2015-10-11 16:46:33',1,30003930,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0),(2194,'2015-03-10 22:38:43','2015-10-11 16:46:33',1,30003858,0,0,0,1,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(2195,'2015-03-10 22:38:43','2015-10-11 16:46:33',1,30000598,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,1,0,1,1,0,0,0,0),(2196,'2015-03-10 22:38:43','2015-03-10 22:38:43',1,30000552,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(2197,'2015-03-10 22:38:43','2015-10-11 16:46:33',1,30004465,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0),(2198,'2015-03-10 22:38:43','2015-03-10 22:38:43',1,30002875,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(2199,'2015-03-10 22:38:43','2015-03-10 22:38:43',1,30004694,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(2200,'2015-03-10 22:38:43','2015-03-10 22:38:43',1,30004167,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(2201,'2015-03-10 22:38:43','2015-10-11 16:46:33',1,30004957,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0),(2202,'2015-03-10 22:38:43','2015-03-10 22:38:43',1,30000456,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(2203,'2015-03-10 22:38:43','2015-10-11 16:46:33',1,30002653,0,0,0,0,1,5,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,0,1,0),(2204,'2015-03-10 22:38:43','2015-03-10 22:38:43',1,30000593,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(2205,'2015-03-10 22:38:43','2015-10-11 16:46:33',1,30002636,2,0,1,1,0,1,3,0,1,1,2,0,0,0,1,1,0,1,0,0,0,0,0,0),(2206,'2015-03-10 22:38:43','2015-10-11 16:46:33',1,30003808,0,0,0,0,2,3,0,0,0,0,0,1,0,0,2,0,0,0,1,0,0,0,0,0),(2207,'2015-03-10 22:38:43','2015-10-11 16:46:33',1,30003360,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1),(2208,'2015-03-10 22:38:43','2015-10-11 16:46:33',1,30003057,0,0,0,0,0,0,0,1,1,0,0,0,0,1,1,1,2,1,0,0,0,0,2,0),(2209,'2015-03-10 22:38:43','2015-03-10 22:38:43',1,30002859,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(2210,'2015-03-10 22:38:43','2015-03-10 22:38:43',1,30001573,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(2211,'2015-03-10 22:38:43','2015-03-10 22:38:43',1,30003199,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(2212,'2015-03-10 22:38:43','2015-03-10 22:38:43',1,30002328,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(2213,'2015-03-10 22:38:43','2015-10-11 16:46:33',1,30001883,3,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(2214,'2015-03-10 22:38:43','2015-03-10 22:38:43',1,30002627,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(2215,'2015-03-10 22:38:43','2015-10-11 16:46:33',1,30002102,0,0,0,0,0,1,2,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,2),(2216,'2015-03-10 22:38:43','2015-10-11 16:46:33',1,30002384,0,4,0,0,1,1,1,1,3,4,0,0,5,0,13,6,2,0,0,2,0,2,0,2),(2217,'2015-03-10 22:38:43','2015-10-11 16:46:33',1,30002517,0,1,1,2,0,0,0,0,1,7,8,7,0,4,1,3,3,2,11,7,5,2,5,2),(2218,'2015-03-10 22:38:43','2015-10-11 16:46:33',1,30002560,0,0,0,0,0,0,0,0,0,0,0,0,0,2,0,0,0,0,0,0,0,0,0,0),(2219,'2015-03-10 22:38:43','2015-10-11 16:46:33',1,30002556,1,0,0,0,0,0,0,0,0,0,1,0,0,1,1,1,1,0,1,0,0,2,0,0),(2220,'2015-03-10 22:38:43','2015-03-10 22:38:43',1,30001347,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(2221,'2015-03-10 22:38:43','2015-03-10 22:38:43',1,30003653,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(2222,'2015-03-10 22:38:43','2015-10-11 16:46:33',1,30002123,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0),(2223,'2015-03-10 22:38:43','2015-10-11 16:46:33',1,30002947,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0),(2224,'2015-03-10 22:38:43','2015-03-10 22:38:43',1,30004778,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(2225,'2015-03-10 22:38:43','2015-10-11 16:46:33',1,30001661,0,0,1,0,0,0,2,0,0,1,0,0,0,4,1,0,1,0,0,0,1,0,0,0),(2226,'2015-03-10 22:38:43','2015-03-10 22:38:43',1,30000344,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(2227,'2015-03-10 22:38:43','2015-10-11 16:46:33',1,30002529,0,0,0,0,0,0,0,0,0,0,3,1,0,0,0,0,0,0,0,0,0,0,1,0),(2228,'2015-03-10 22:38:43','2015-10-11 16:46:33',1,30002621,0,0,0,0,0,0,0,0,0,1,0,1,0,0,0,0,0,0,0,1,0,0,0,1),(2229,'2015-03-10 22:38:43','2015-10-11 16:46:33',1,30001531,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,0,0,2,1,0,0,3),(2230,'2015-03-10 22:38:43','2015-10-11 16:46:33',1,30000276,0,0,0,0,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0),(2231,'2015-03-10 22:38:43','2015-03-10 22:38:43',1,30005123,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(2232,'2015-03-10 22:38:43','2015-10-11 16:46:33',1,30003986,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0),(2233,'2015-03-10 22:38:43','2015-10-11 16:46:33',1,30000225,0,0,0,0,0,0,2,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0),(2234,'2015-03-10 22:38:43','2015-03-10 22:38:43',1,30002588,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(2235,'2015-03-10 22:38:43','2015-03-10 22:38:43',1,30000974,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(2236,'2015-03-10 22:38:43','2015-03-10 22:38:43',1,30000523,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(2237,'2015-03-10 22:38:43','2015-10-11 16:46:33',1,30001001,0,0,0,0,0,0,0,6,0,0,0,1,2,0,1,0,0,0,0,0,2,2,3,0),(2238,'2015-03-10 22:38:43','2015-03-10 22:38:43',1,30001331,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(2239,'2015-03-10 22:38:43','2015-03-10 22:38:43',1,30001129,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(2240,'2015-03-10 22:38:43','2015-03-10 22:38:43',1,30001513,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(2241,'2015-03-10 22:38:43','2015-03-10 22:38:43',1,30000281,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(2242,'2015-03-10 22:38:43','2015-03-10 22:38:43',1,30000444,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(2243,'2015-03-10 22:38:43','2015-03-10 22:38:43',1,30005116,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(2244,'2015-03-10 22:38:43','2015-10-11 16:46:33',1,30003752,0,0,0,0,1,1,0,0,0,0,0,1,0,0,2,0,0,0,0,0,0,0,0,0),(2245,'2015-03-10 22:38:43','2015-10-11 16:46:33',1,30005090,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(2246,'2015-03-10 22:38:43','2015-03-10 22:38:43',1,30000547,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(2247,'2015-03-10 22:38:43','2015-03-10 22:38:43',1,30004814,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(2248,'2015-03-10 22:38:43','2015-03-10 22:38:43',1,30004512,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(2249,'2015-03-10 22:38:43','2015-03-10 22:38:43',1,30003261,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(2250,'2015-03-10 22:38:43','2015-03-10 22:38:43',1,30000268,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(2251,'2015-03-10 22:38:43','2015-03-10 22:38:43',1,30004592,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(2252,'2015-03-10 22:38:43','2015-03-10 22:38:43',1,30004446,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(2253,'2015-03-10 22:38:43','2015-10-11 16:46:33',1,30001269,3,0,0,0,2,1,1,2,0,0,2,0,0,0,0,0,1,0,0,1,1,2,3,1),(2254,'2015-03-10 22:38:43','2015-03-10 22:38:43',1,30002120,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(2255,'2015-03-10 22:38:43','2015-03-10 22:38:43',1,30001343,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(2256,'2015-03-10 22:38:43','2015-10-11 16:46:33',1,30004606,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(2257,'2015-03-10 22:38:43','2015-10-11 16:46:33',1,30003144,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(2258,'2015-03-10 22:38:43','2015-03-10 22:38:43',1,30000223,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(2259,'2015-03-10 22:38:43','2015-10-11 16:46:33',1,30000865,0,0,0,2,1,1,1,1,0,1,20,13,3,0,0,0,0,0,0,0,1,2,5,3),(2260,'2015-03-10 22:38:43','2015-03-10 22:38:43',1,30003160,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(2261,'2015-03-10 22:38:43','2015-10-11 16:46:33',1,30003608,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(2262,'2015-03-10 22:38:43','2015-03-10 22:38:43',1,30002043,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(2263,'2015-03-10 22:38:43','2015-03-10 22:38:43',1,30004178,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(2264,'2015-03-10 22:38:43','2015-03-10 22:38:43',1,30000426,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(2265,'2015-03-10 22:38:43','2015-03-10 22:38:43',1,30001575,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(2266,'2015-03-10 22:38:43','2015-03-10 22:38:43',1,30000410,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(2267,'2015-03-10 22:38:43','2015-10-11 16:46:33',1,30000685,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(2268,'2015-03-10 22:38:43','2015-10-11 16:46:33',1,30003723,2,0,1,2,0,0,0,0,0,8,8,6,2,116,0,1,1,0,0,0,2,2,6,2),(2269,'2015-03-10 22:38:43','2015-10-11 16:46:33',1,30000574,0,0,2,0,0,0,2,1,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0),(2270,'2015-03-10 22:38:43','2015-03-10 22:38:43',1,30004443,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(2271,'2015-03-10 22:38:43','2015-10-11 16:46:33',1,30004034,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0),(2272,'2015-03-10 22:38:43','2015-03-10 22:38:43',1,30000973,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(2273,'2015-03-10 22:38:43','2015-03-10 22:38:43',1,30001518,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(2274,'2015-03-10 22:38:43','2015-03-10 22:38:43',1,30002857,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(2275,'2015-03-10 22:38:43','2015-03-10 22:38:43',1,30004678,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(2276,'2015-03-10 22:38:43','2015-10-11 16:46:33',1,30003775,0,0,0,0,0,0,0,0,0,0,0,0,0,2,0,0,1,0,0,0,0,0,0,1),(2277,'2015-03-10 22:38:43','2015-10-11 16:46:33',1,30004916,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0),(2278,'2015-03-10 22:38:43','2015-10-11 16:46:33',1,30000960,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0),(2279,'2015-03-10 22:38:43','2015-03-10 22:38:43',1,30001424,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(2280,'2015-03-10 22:38:43','2015-10-11 16:46:33',1,30002800,2,0,0,8,0,0,1,0,0,0,0,0,1,1,0,0,0,8,0,0,0,0,0,4),(2281,'2015-03-10 22:38:43','2015-03-10 22:38:43',1,30005250,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(2282,'2015-03-10 22:38:43','2015-10-11 16:46:33',1,30012547,5,4,13,7,4,4,3,0,3,12,13,14,13,16,16,15,18,5,5,10,13,4,9,15),(2283,'2015-03-10 22:38:43','2015-10-11 16:46:33',1,30005223,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0),(2284,'2015-03-10 22:38:43','2015-03-10 22:38:43',1,30002264,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(2285,'2015-03-10 22:38:43','2015-10-11 16:46:33',1,30002057,0,0,2,0,0,0,4,0,0,2,0,0,2,11,2,12,16,10,2,7,8,5,16,1),(2286,'2015-03-10 22:38:43','2015-10-11 16:46:33',1,30001367,0,0,1,1,1,2,0,0,0,1,0,0,0,21,3,1,1,1,0,1,0,0,3,4),(2287,'2015-03-10 22:38:43','2015-10-11 16:46:33',1,30002050,0,3,0,0,0,0,0,0,0,5,0,0,0,1,1,1,0,0,9,1,1,8,4,0),(2288,'2015-03-10 22:38:43','2015-10-11 16:46:33',1,30003533,0,0,1,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(2289,'2015-03-10 22:38:43','2015-03-10 22:38:43',1,30000094,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(2290,'2015-03-10 22:38:43','2015-03-10 22:38:43',1,30002250,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(2291,'2015-03-10 22:38:43','2015-10-11 16:46:33',1,30004248,0,0,1,0,0,0,0,0,1,0,3,3,0,0,0,0,0,0,0,0,0,0,0,0),(2292,'2015-03-10 22:38:43','2015-10-11 16:46:33',1,30005012,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0),(2293,'2015-03-10 22:38:43','2015-10-11 16:46:33',1,30003106,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(2294,'2015-03-10 22:38:43','2015-03-10 22:38:43',1,30003918,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(2295,'2015-03-10 22:38:43','2015-03-10 22:38:43',1,30004257,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(2296,'2015-03-10 22:38:43','2015-10-11 16:46:33',1,30003449,1,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,5,1),(2297,'2015-03-10 22:38:43','2015-10-11 16:46:33',1,30002077,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,2),(2298,'2015-03-10 22:38:43','2015-03-10 22:38:43',1,30003085,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(2299,'2015-03-10 22:38:43','2015-10-11 16:46:33',1,30001448,36,0,0,1,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0),(2300,'2015-03-10 22:38:43','2015-10-11 16:46:33',1,30002990,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(2301,'2015-03-10 22:38:43','2015-10-11 16:46:33',1,30002781,0,0,0,0,1,1,2,0,3,0,1,0,0,0,0,0,0,0,12,1,1,0,1,1),(2302,'2015-03-10 22:38:43','2015-03-10 22:38:43',1,30003003,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(2303,'2015-03-10 22:38:43','2015-03-10 22:38:43',1,30002404,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(2304,'2015-03-10 22:38:43','2015-10-11 16:46:33',1,30004100,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0),(2305,'2015-03-10 22:38:43','2015-10-11 16:46:33',1,30045341,0,2,3,0,0,1,0,1,0,0,0,0,0,0,2,0,1,0,0,0,0,0,0,0),(2306,'2015-03-10 22:38:43','2015-10-11 16:46:33',1,30003010,0,0,0,0,1,1,0,0,0,0,0,0,2,0,0,0,0,0,0,0,0,0,0,0),(2307,'2015-03-10 22:38:43','2015-10-11 16:46:33',1,30002981,0,2,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,1),(2308,'2015-03-10 22:38:43','2015-03-10 22:38:43',1,30003900,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(2309,'2015-03-10 22:38:43','2015-03-10 22:38:43',1,30003523,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(2310,'2015-03-10 22:38:43','2015-10-11 16:46:33',1,30000152,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(2311,'2015-03-10 22:38:43','2015-03-10 22:38:43',1,30003547,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(2312,'2015-03-10 22:38:43','2015-03-10 22:38:43',1,30033489,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(2313,'2015-03-10 22:38:43','2015-03-10 22:38:43',1,30005265,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(2314,'2015-03-10 22:38:43','2015-03-10 22:38:43',1,30004145,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(2315,'2015-03-10 22:38:43','2015-10-11 16:46:33',1,30003087,1,0,0,0,1,1,0,0,0,3,0,0,0,0,0,0,0,1,1,0,3,0,1,0),(2316,'2015-03-10 22:38:43','2015-03-10 22:38:43',1,30003418,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(2317,'2015-03-10 22:38:43','2015-10-11 16:46:33',1,30003597,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,4,0,0,0),(2318,'2015-03-10 22:38:43','2015-10-11 16:46:33',1,30003017,3,0,0,0,0,0,0,0,0,1,0,0,1,1,1,2,2,2,0,1,0,1,2,3),(2319,'2015-03-10 22:38:43','2015-10-11 16:46:33',1,30003587,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,1,1,1,0,0,0,0,0,0),(2320,'2015-03-10 22:38:43','2015-10-11 16:46:33',1,30003793,0,0,0,0,2,0,1,0,0,2,3,3,0,0,0,1,1,3,0,0,0,0,0,1),(2321,'2015-03-10 22:38:43','2015-03-10 22:38:43',1,30002225,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(2322,'2015-03-10 22:38:43','2015-10-11 16:46:33',1,30002758,7,3,1,1,3,1,2,5,5,0,2,10,2,5,0,1,2,1,0,3,2,0,1,7),(2323,'2015-03-10 22:38:43','2015-10-11 16:46:33',1,30000074,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,1,1,0),(2324,'2015-03-10 22:38:43','2015-10-11 16:46:33',1,30000032,0,0,0,0,0,0,0,0,0,0,1,1,0,0,1,0,0,0,0,0,0,0,0,0),(2325,'2015-03-10 22:38:43','2015-10-11 16:46:33',1,30002806,3,1,1,4,2,1,0,0,1,2,4,2,0,5,1,0,0,13,1,1,2,4,1,2),(2326,'2015-03-10 22:38:43','2015-10-11 16:46:33',1,30002764,2,1,0,0,0,0,0,31,0,2,1,1,0,0,5,5,6,5,1,2,0,0,3,0),(2327,'2015-03-10 22:38:43','2015-10-11 16:46:33',1,30001737,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(2328,'2015-03-10 22:38:43','2015-10-11 16:46:33',1,30002994,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(2329,'2015-03-10 22:38:43','2015-10-11 16:46:33',1,30003082,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0),(2330,'2015-03-10 22:38:43','2015-03-10 22:38:43',1,30003542,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(2331,'2015-03-10 22:38:43','2015-03-10 22:38:43',1,30000979,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(2332,'2015-03-10 22:38:43','2015-03-10 22:38:43',1,30004228,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(2333,'2015-03-10 22:38:43','2015-10-11 16:46:33',1,30003633,0,1,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(2334,'2015-03-10 22:38:43','2015-03-10 22:38:43',1,30005107,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(2335,'2015-03-10 22:38:43','2015-03-10 22:38:43',1,30004325,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(2336,'2015-03-10 22:38:43','2015-03-10 22:38:43',1,30001292,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(2337,'2015-03-10 22:38:43','2015-03-10 22:38:43',1,30000569,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(2338,'2015-03-10 22:38:43','2015-03-10 22:38:43',1,30002863,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(2339,'2015-03-10 22:38:43','2015-03-10 22:38:43',1,30001330,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(2340,'2015-03-10 22:38:43','2015-03-10 22:38:43',1,30001482,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(2341,'2015-03-10 22:38:43','2015-10-11 16:46:33',1,30000214,0,0,0,0,0,0,1,0,0,0,0,1,1,0,1,1,0,0,0,0,0,0,0,0),(2342,'2015-03-10 22:38:43','2015-10-11 16:46:33',1,30003649,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0),(2343,'2015-03-10 22:38:43','2015-03-10 22:38:43',1,30003435,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(2344,'2015-03-10 22:38:43','2015-10-11 16:46:33',1,30024971,0,0,0,0,0,0,1,0,0,0,0,1,0,0,1,0,0,0,0,0,0,0,0,0),(2345,'2015-03-10 22:38:43','2015-10-11 16:46:33',1,30001161,1,3,8,5,3,8,2,2,3,28,9,7,3,8,2,7,11,4,15,16,12,13,19,6),(2346,'2015-03-10 22:38:43','2015-10-11 16:46:33',1,30002406,0,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0),(2347,'2015-03-10 22:38:43','2015-03-10 22:38:43',1,30002579,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(2348,'2015-03-10 22:38:43','2015-10-11 16:46:33',1,30002189,0,0,0,1,0,0,1,0,0,1,0,1,0,0,3,3,2,0,1,0,0,0,0,0),(2349,'2015-03-10 22:38:43','2015-10-11 16:46:33',1,30003846,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,1,0,0,0,0,0,0,0,1),(2350,'2015-03-10 22:38:43','2015-10-11 16:46:33',1,30002418,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0),(2351,'2015-03-10 22:38:43','2015-10-11 16:46:33',1,30002390,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,0,0,0,0,0,1,0,0,0),(2352,'2015-03-10 22:38:43','2015-10-11 16:46:33',1,30002053,9,5,14,3,4,3,4,7,6,6,2,9,4,15,14,16,13,5,2,3,9,9,12,4),(2353,'2015-03-10 22:38:43','2015-10-11 16:46:33',1,30002063,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,1,1,0,0,2,0,0,0,1),(2354,'2015-03-10 22:38:43','2015-10-11 16:46:33',1,30003594,0,0,2,0,0,0,0,4,0,0,0,0,0,10,0,0,0,0,0,0,0,2,1,0),(2355,'2015-03-10 22:38:43','2015-10-11 16:46:33',1,30001044,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,1,0,0,1,0),(2356,'2015-03-10 22:38:43','2015-03-10 22:38:43',1,30003902,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(2357,'2015-03-10 22:38:43','2015-10-11 16:46:33',1,30034971,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0),(2358,'2015-03-10 22:38:43','2015-10-11 16:46:33',1,30000188,0,0,0,8,0,0,1,0,0,0,0,0,0,2,0,0,0,0,0,0,0,0,0,0),(2359,'2015-03-10 22:38:43','2015-10-11 16:46:33',1,30005290,0,0,0,1,0,0,1,3,0,0,2,2,0,1,0,1,1,0,0,1,0,0,0,2),(2360,'2015-03-10 22:38:43','2015-03-10 22:38:43',1,30003528,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(2361,'2015-03-10 22:38:43','2015-10-11 16:46:33',1,30005213,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(2362,'2015-03-10 22:38:43','2015-10-11 16:46:33',1,30005320,0,3,0,2,2,1,1,0,1,0,1,2,0,1,0,2,2,0,4,1,1,0,0,1),(2363,'2015-03-10 22:38:43','2015-10-11 16:46:33',1,30004979,14,16,10,19,10,19,6,5,9,11,5,13,5,3,4,8,8,9,17,7,6,42,22,15),(2364,'2015-03-10 22:38:43','2015-03-10 22:38:43',1,30003937,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(2365,'2015-03-10 22:38:43','2015-10-11 16:46:33',1,30003220,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(2366,'2015-03-10 22:38:43','2015-03-10 22:38:43',1,30000837,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(2367,'2015-03-10 22:38:43','2015-03-10 22:38:43',1,30001135,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(2368,'2015-03-10 22:38:43','2015-03-10 22:38:43',1,30001509,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(2369,'2015-03-10 22:38:43','2015-10-11 16:46:33',1,30003162,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(2370,'2015-03-10 22:38:43','2015-03-10 22:38:43',1,30004686,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(2371,'2015-03-10 22:38:43','2015-03-10 22:38:43',1,30003679,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(2372,'2015-03-10 22:38:43','2015-03-10 22:38:43',1,30001612,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(2373,'2015-03-10 22:38:43','2015-10-11 16:46:33',1,30003099,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,1,1,0,0,0),(2374,'2015-03-10 22:38:43','2015-10-11 16:46:33',1,30001662,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,0,0,0,0,0,0,1),(2375,'2015-03-10 22:38:43','2015-10-11 16:46:33',1,30004240,0,2,0,0,0,0,0,0,0,0,2,2,0,0,0,0,0,0,0,0,0,0,0,0),(2376,'2015-03-10 22:38:43','2015-10-11 16:46:33',1,30001528,0,1,0,0,0,0,0,0,0,1,1,1,0,0,0,0,0,0,0,0,0,0,0,0),(2377,'2015-03-10 22:38:43','2015-10-11 16:46:33',1,30004142,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(2378,'2015-03-10 22:38:43','2015-10-11 16:46:33',1,30045338,6,2,2,5,0,0,0,2,0,11,8,7,2,22,0,7,8,2,6,2,16,3,4,4),(2379,'2015-03-10 22:38:43','2015-10-11 16:46:33',1,30001674,0,0,0,0,3,1,1,0,0,1,0,0,1,0,2,3,2,0,0,1,0,0,0,0),(2380,'2015-03-10 22:38:43','2015-10-11 16:46:33',1,30003428,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0),(2381,'2015-03-10 22:38:43','2015-10-11 16:46:33',1,30004133,0,0,0,0,2,2,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(2382,'2015-03-10 22:38:43','2015-03-10 22:38:43',1,30002214,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(2383,'2015-03-10 22:38:43','2015-03-10 22:38:43',1,30004141,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(2384,'2015-03-10 22:38:43','2015-10-11 16:46:33',1,30005248,0,0,0,0,0,0,0,1,2,0,0,0,0,0,0,0,1,0,0,0,0,1,1,0),(2385,'2015-03-10 22:38:43','2015-10-11 16:46:33',1,30004077,0,0,0,0,0,0,0,0,0,3,0,0,0,0,0,0,0,2,0,1,4,0,0,1),(2386,'2015-03-10 22:38:43','2015-10-11 16:46:33',1,30045345,0,3,5,5,1,0,5,3,0,0,0,0,0,0,1,2,3,6,0,1,1,0,1,6),(2387,'2015-03-10 22:38:43','2015-10-11 16:46:33',1,30000133,0,0,0,1,0,0,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(2388,'2015-03-10 22:38:43','2015-10-11 16:46:33',1,30003875,0,0,0,0,0,0,0,0,0,0,0,0,1,0,1,1,0,0,0,0,0,0,0,0),(2389,'2015-03-10 22:38:43','2015-10-11 16:46:33',1,30003531,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1),(2390,'2015-03-10 22:38:43','2015-10-11 16:46:33',1,30031407,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,3,2,0,1,0,1,0,0,1),(2391,'2015-03-10 22:38:43','2015-10-11 16:46:33',1,30004956,0,0,0,0,0,0,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(2392,'2015-03-10 22:38:43','2015-10-11 16:46:33',1,30002245,0,0,0,5,1,1,0,0,0,5,3,1,9,2,0,0,0,1,0,0,0,0,1,1),(2393,'2015-03-10 22:38:43','2015-10-11 16:46:33',1,30000721,0,0,0,0,0,0,0,0,0,6,1,3,3,7,0,0,0,0,1,1,1,0,0,1),(2394,'2015-03-10 22:38:43','2015-10-11 16:46:33',1,30002468,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,9,0,0,0,0),(2395,'2015-03-10 22:38:43','2015-10-11 16:46:33',1,30002075,0,0,0,1,0,1,0,1,0,0,0,0,0,1,0,0,0,0,0,4,2,1,0,0),(2396,'2015-03-10 22:38:43','2015-03-10 22:38:43',1,30003400,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(2397,'2015-03-10 22:38:43','2015-03-10 22:38:43',1,30002485,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(2398,'2015-03-10 22:38:43','2015-03-10 22:38:43',1,30000828,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(2399,'2015-03-10 22:38:43','2015-10-11 16:46:33',1,30001744,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,0,0),(2400,'2015-03-10 22:38:43','2015-10-11 16:46:33',1,30001016,0,3,0,1,1,2,1,0,0,0,2,1,4,3,1,0,0,1,0,1,5,0,0,1),(2401,'2015-03-10 22:38:43','2015-10-11 16:46:33',1,30001847,0,0,0,1,0,0,0,0,0,0,0,0,1,0,0,0,1,0,0,0,0,4,1,0),(2402,'2015-03-10 22:38:43','2015-10-11 16:46:33',1,30004715,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0),(2403,'2015-03-10 22:38:43','2015-10-11 16:46:33',1,30004615,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0),(2404,'2015-03-10 22:38:43','2015-03-10 22:38:43',1,30003243,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(2405,'2015-03-10 22:38:43','2015-10-11 16:46:33',1,30003469,0,1,0,0,1,1,0,0,1,0,0,0,1,0,0,0,0,0,0,0,0,2,0,1),(2406,'2015-03-10 22:38:43','2015-10-11 16:46:33',1,30002096,0,0,0,1,0,0,0,0,1,0,0,2,1,1,3,3,2,0,0,0,0,2,0,1),(2407,'2015-03-10 22:38:43','2015-10-11 16:46:33',1,30002773,0,0,0,0,0,0,0,0,0,0,0,0,0,2,0,0,0,0,0,0,0,0,0,1),(2408,'2015-03-10 22:38:43','2015-03-10 22:38:43',1,30002596,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(2409,'2015-03-10 22:38:43','2015-10-11 16:46:33',1,30001680,0,0,0,0,0,0,3,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(2410,'2015-03-10 22:38:43','2015-10-11 16:46:33',1,30004309,0,0,0,0,0,0,0,0,0,0,5,1,3,6,3,0,1,0,0,3,2,1,1,0),(2411,'2015-03-10 22:38:43','2015-10-11 16:46:33',1,30002397,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,1,0,0,0,0,0,0),(2412,'2015-03-10 22:38:43','2015-10-11 16:46:33',1,30043489,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(2413,'2015-03-10 22:38:43','2015-10-11 16:46:33',1,30002741,0,3,0,0,0,1,0,0,0,0,1,1,0,0,0,0,0,1,1,0,0,1,0,1),(2414,'2015-03-10 22:38:43','2015-10-11 16:46:33',1,30004264,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0),(2415,'2015-03-10 22:38:43','2015-03-10 22:38:43',1,30003560,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(2416,'2015-03-10 22:38:43','2015-10-11 16:46:33',1,30004130,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,0,0,0),(2417,'2015-03-10 22:38:43','2015-10-11 16:46:33',1,30001690,0,0,0,0,1,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,0,0,0),(2418,'2015-03-10 22:38:43','2015-10-11 16:46:33',1,30000111,0,0,0,0,0,0,1,0,0,1,1,1,0,0,0,1,1,0,0,1,1,0,0,0),(2419,'2015-03-10 22:38:43','2015-10-11 16:46:33',1,30003456,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0),(2420,'2015-03-10 22:38:43','2015-10-11 16:46:33',1,30001221,0,0,0,0,0,0,0,0,0,3,0,0,0,0,0,0,0,0,1,0,0,0,0,0),(2421,'2015-03-10 22:38:43','2015-10-11 16:46:33',1,30003776,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,0,0,0,1,0),(2422,'2015-03-10 22:38:43','2015-03-10 22:38:43',1,30000370,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(2423,'2015-03-10 22:38:43','2015-03-10 22:38:43',1,30000592,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(2424,'2015-03-10 22:38:43','2015-03-10 22:38:43',1,30001463,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(2425,'2015-03-10 22:38:43','2015-03-10 22:38:43',1,30001583,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(2426,'2015-03-10 22:38:43','2015-03-10 22:38:43',1,30002040,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(2427,'2015-03-10 22:38:43','2015-10-11 16:46:33',1,30002856,0,0,3,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0),(2428,'2015-03-10 22:38:43','2015-03-10 22:38:43',1,30000686,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(2429,'2015-03-10 22:38:43','2015-10-11 16:46:33',1,30001871,0,0,1,0,0,0,0,0,0,0,50,53,0,0,0,0,0,0,0,0,0,0,0,0),(2430,'2015-03-10 22:38:43','2015-03-10 22:38:43',1,30002392,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(2431,'2015-03-10 22:38:43','2015-10-11 16:46:33',1,30003468,0,0,0,0,0,0,1,0,0,0,0,0,1,1,0,0,0,0,0,0,0,0,0,0),(2432,'2015-03-10 22:38:43','2015-10-11 16:46:33',1,30002391,0,0,0,0,0,0,0,0,0,2,0,0,1,0,0,0,0,0,0,0,0,1,0,0),(2433,'2015-03-10 22:38:43','2015-10-11 16:46:33',1,30002574,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,0,0,0,0,1,0,0),(2434,'2015-03-10 22:38:43','2015-03-10 22:38:43',1,30002576,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(2435,'2015-03-10 22:38:43','2015-10-11 16:46:33',1,30002054,1,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,0,0,0,0,0,2,0),(2436,'2015-03-10 22:38:43','2015-10-11 16:46:33',1,30003103,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,2,0,3,0),(2437,'2015-03-10 22:38:43','2015-10-11 16:46:33',1,30002505,1,1,0,0,2,1,0,1,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0),(2438,'2015-03-10 22:38:43','2015-10-11 16:46:33',1,30004988,0,1,0,0,0,0,0,0,0,1,0,0,0,1,1,1,0,0,0,0,1,0,0,1),(2439,'2015-03-10 22:38:43','2015-10-11 16:46:33',1,30004304,0,0,0,0,0,0,0,3,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0),(2440,'2015-03-10 22:38:43','2015-10-11 16:46:33',1,30003067,8,5,2,5,4,3,14,10,4,11,6,6,0,5,2,3,2,1,4,3,2,2,0,2),(2441,'2015-03-10 22:38:43','2015-10-11 16:46:33',1,30002572,0,0,0,1,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,2,0,0,0),(2442,'2015-03-10 22:38:43','2015-10-11 16:46:33',1,30000150,0,0,0,0,0,0,0,0,0,0,0,0,0,2,1,1,0,0,0,0,0,0,0,0),(2443,'2015-03-10 22:38:43','2015-10-11 16:46:33',1,30002217,0,0,0,0,0,0,0,0,0,0,0,0,2,0,0,0,0,0,0,0,1,0,0,0),(2444,'2015-03-10 22:38:43','2015-10-11 16:46:33',1,30002774,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,1),(2445,'2015-03-10 22:38:43','2015-10-11 16:46:33',1,30002356,2,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(2446,'2015-03-10 22:38:43','2015-10-11 16:46:33',1,30002871,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0),(2447,'2015-03-10 22:38:43','2015-03-10 22:38:43',1,30004205,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(2448,'2015-03-10 22:38:43','2015-10-11 16:46:33',1,30001159,0,1,0,2,0,0,0,1,0,0,0,0,1,0,0,0,0,2,0,0,0,0,1,6),(2449,'2015-03-10 22:38:43','2015-10-11 16:46:33',1,30045306,0,0,0,0,0,0,0,1,1,1,1,1,0,1,0,0,0,0,0,2,1,1,0,0),(2450,'2015-03-10 22:38:43','2015-10-11 16:46:33',1,30000134,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0),(2451,'2015-03-10 22:38:43','2015-10-11 16:46:33',1,30004481,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0),(2452,'2015-03-10 22:38:43','2015-10-11 16:46:33',1,30002796,10,0,1,1,3,0,0,0,4,6,2,2,1,4,0,0,3,2,1,2,4,9,3,9),(2453,'2015-03-10 22:38:43','2015-03-10 22:38:43',1,30000825,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(2454,'2015-03-10 22:38:43','2015-10-11 16:46:33',1,30004767,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(2455,'2015-03-10 22:38:43','2015-03-10 22:38:43',1,30000482,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(2456,'2015-03-10 22:38:43','2015-03-10 22:38:43',1,30001767,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(2457,'2015-03-10 22:38:43','2015-03-10 22:38:43',1,30000689,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(2458,'2015-03-10 22:38:43','2015-10-11 16:46:33',1,30000788,0,0,3,0,0,0,9,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,1,1),(2459,'2015-03-10 22:38:43','2015-03-10 22:38:43',1,30000636,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(2460,'2015-03-10 22:38:43','2015-03-10 22:38:43',1,30001934,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(2461,'2015-03-10 22:38:43','2015-10-11 16:46:33',1,30004400,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0),(2462,'2015-03-10 22:38:43','2015-03-10 22:38:43',1,30004361,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(2463,'2015-03-10 22:38:43','2015-10-11 16:46:33',1,30001188,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,1,1,0,0,0,0,0,0,0),(2464,'2015-03-10 22:38:43','2015-03-10 22:38:43',1,30000520,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(2465,'2015-03-10 22:38:43','2015-03-10 22:38:43',1,30004177,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(2466,'2015-03-10 22:38:43','2015-10-11 16:46:33',1,30004636,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,1,0,6,3),(2467,'2015-03-10 22:38:43','2015-03-10 22:38:43',1,30004775,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(2468,'2015-03-10 22:38:43','2015-10-11 16:46:33',1,30001752,0,0,0,0,0,0,0,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0),(2469,'2015-03-10 22:38:43','2015-10-11 16:46:33',1,30001914,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,1,0,0,0,0),(2470,'2015-03-10 22:38:43','2015-10-11 16:46:33',1,30003784,0,0,0,0,0,0,0,1,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(2471,'2015-03-10 22:38:43','2015-03-10 22:38:43',1,30002134,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(2472,'2015-03-10 22:38:43','2015-03-10 22:38:43',1,30000952,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(2473,'2015-03-10 22:38:43','2015-03-10 22:38:43',1,30001466,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(2474,'2015-03-10 22:38:43','2015-10-11 16:46:33',1,30003701,0,0,0,3,2,3,0,0,0,0,0,1,1,0,0,0,0,0,0,0,0,0,0,0),(2475,'2015-03-10 22:38:43','2015-03-10 22:38:43',1,30003308,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(2476,'2015-03-10 22:38:43','2015-03-10 22:38:43',1,30003317,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(2477,'2015-03-10 22:38:43','2015-10-11 16:46:33',1,30001782,0,0,0,0,1,1,0,0,0,0,0,0,0,4,0,0,0,0,0,0,0,0,0,1),(2478,'2015-03-10 22:38:43','2015-10-11 16:46:33',1,30003621,0,0,1,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0),(2479,'2015-03-10 22:38:43','2015-10-11 16:46:33',1,30004023,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,1,0,0,0),(2480,'2015-03-10 22:38:43','2015-03-10 22:38:43',1,30002877,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(2481,'2015-03-10 22:38:43','2015-10-11 16:46:33',1,30002908,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,0,0,0,0,2,1,0),(2482,'2015-03-10 22:38:43','2015-03-10 22:38:43',1,30000758,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(2483,'2015-03-10 22:38:43','2015-10-11 16:46:33',1,30004723,0,0,0,0,2,1,0,0,1,0,0,0,0,0,1,1,0,0,0,0,0,0,0,0),(2484,'2015-03-10 22:38:43','2015-03-10 22:38:43',1,30004430,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(2485,'2015-03-10 22:38:43','2015-10-11 16:46:33',1,30000626,3,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(2486,'2015-03-10 22:38:43','2015-03-10 22:38:43',1,30002343,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(2487,'2015-03-10 22:38:43','2015-10-11 16:46:33',1,30004933,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0),(2488,'2015-03-10 22:38:43','2015-10-11 16:46:33',1,30003716,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,1),(2489,'2015-03-10 22:38:43','2015-10-11 16:46:33',1,30001110,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0),(2490,'2015-03-10 22:38:43','2015-03-10 22:38:43',1,30004482,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(2491,'2015-03-10 22:38:43','2015-03-10 22:38:43',1,30001508,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(2492,'2015-03-10 22:38:43','2015-10-11 16:46:33',1,30000709,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0),(2493,'2015-03-10 22:38:43','2015-03-10 22:38:43',1,30003241,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(2494,'2015-03-10 22:38:43','2015-03-10 22:38:43',1,30001481,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(2495,'2015-03-10 22:38:43','2015-03-10 22:38:43',1,30004120,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(2496,'2015-03-10 22:38:43','2015-03-10 22:38:43',1,30000509,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(2497,'2015-03-10 22:38:43','2015-03-10 22:38:43',1,30001640,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(2498,'2015-03-10 22:38:43','2015-10-11 16:46:33',1,30003933,0,0,0,0,0,0,1,0,0,0,0,2,1,0,0,0,0,0,0,0,0,0,0,0),(2499,'2015-03-10 22:38:43','2015-10-11 16:46:33',1,30000053,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,0),(2500,'2015-03-10 22:38:43','2015-10-11 16:46:33',1,30002984,0,0,0,0,0,0,0,0,0,1,3,0,0,0,0,0,0,0,0,0,0,0,0,0),(2501,'2015-03-10 22:38:43','2015-03-10 22:38:43',1,30001052,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(2502,'2015-03-10 22:38:43','2015-10-11 16:46:33',1,30001428,0,0,0,0,0,0,1,0,0,1,2,3,0,0,0,0,0,0,0,0,0,0,0,0),(2503,'2015-03-10 22:38:43','2015-10-11 16:46:33',1,30041407,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0),(2504,'2015-03-10 22:38:43','2015-10-11 16:46:33',1,30045329,0,0,0,0,1,0,2,1,0,0,0,0,0,4,0,0,0,1,1,1,0,1,1,1),(2505,'2015-03-10 22:38:43','2015-10-11 16:46:33',1,30005227,1,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,0,0,0,0),(2506,'2015-03-10 22:38:43','2015-10-11 16:46:33',1,30003513,1,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,1,0,0,0,0,1,0,0),(2507,'2015-03-10 22:38:43','2015-03-10 22:38:43',1,30000400,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(2508,'2015-03-10 22:38:43','2015-10-11 16:46:33',1,30045313,0,0,0,0,0,0,0,0,0,1,2,2,1,3,1,1,2,3,2,2,5,2,2,5),(2509,'2015-03-10 22:38:43','2015-10-11 16:46:33',1,30003072,1,0,5,3,1,1,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,0,0),(2510,'2015-03-10 22:38:43','2015-03-10 22:38:43',1,30000422,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(2511,'2015-03-10 22:38:43','2015-03-10 22:38:43',1,30001056,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(2512,'2015-03-10 22:38:43','2015-10-11 16:46:33',1,30003815,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,1,0,0,0,0,0,0,0),(2513,'2015-03-10 22:38:43','2015-10-11 16:46:33',1,30000254,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(2514,'2015-03-10 22:38:43','2015-03-10 22:38:43',1,30003203,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(2515,'2015-03-10 22:38:43','2015-10-11 16:46:33',1,30003614,0,0,0,0,1,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(2516,'2015-03-10 22:38:43','2015-03-10 22:38:43',1,30003987,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(2517,'2015-03-10 22:38:43','2015-10-11 16:46:33',1,30004583,0,2,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,1,0,0,0),(2518,'2015-03-10 22:38:43','2015-10-11 16:46:33',1,30003796,1,0,0,0,2,2,2,0,0,0,1,1,0,2,1,1,2,2,0,2,0,0,0,0),(2519,'2015-03-10 22:38:43','2015-10-11 16:46:33',1,30005005,0,0,0,0,0,0,6,0,3,0,2,0,0,3,2,0,0,5,0,0,4,0,0,0),(2520,'2015-03-10 22:38:43','2015-10-11 16:46:33',1,30002647,0,6,12,2,1,3,1,0,1,0,0,0,0,3,0,0,0,3,0,1,0,0,1,1),(2521,'2015-03-10 22:38:43','2015-10-11 16:46:33',1,30000169,0,2,0,0,1,0,0,0,0,2,0,0,0,0,5,3,2,0,1,2,2,1,1,2),(2522,'2015-03-10 22:38:43','2015-10-11 16:46:33',1,30000048,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0),(2523,'2015-03-10 22:38:43','2015-03-10 22:38:43',1,30001602,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(2524,'2015-03-10 22:38:43','2015-03-10 22:38:43',1,30002907,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(2525,'2015-03-10 22:38:43','2015-10-11 16:46:33',1,30001374,0,0,0,1,1,1,0,1,0,1,0,1,1,1,3,1,1,0,0,2,0,1,0,0),(2526,'2015-03-10 22:38:43','2015-10-11 16:46:33',1,30003311,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(2527,'2015-03-10 22:38:43','2015-10-11 16:46:33',1,30001422,0,0,5,0,0,0,0,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(2528,'2015-03-10 22:38:43','2015-10-11 16:46:33',1,30002766,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,1),(2529,'2015-03-10 22:38:43','2015-10-11 16:46:33',1,30000159,1,0,0,0,1,0,0,1,0,1,1,1,2,0,0,0,1,0,0,2,1,1,3,1),(2530,'2015-03-10 22:38:43','2015-10-11 16:46:33',1,30002786,0,0,3,0,0,0,3,0,0,0,1,1,0,0,1,4,4,0,0,0,0,6,4,3),(2531,'2015-03-10 22:38:43','2015-10-11 16:46:33',1,30045337,4,1,39,1,1,1,6,0,0,3,2,3,0,1,2,0,1,3,0,1,0,4,1,3),(2532,'2015-03-10 22:38:43','2015-03-10 22:38:43',1,30003641,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(2533,'2015-03-10 22:38:43','2015-10-11 16:46:33',1,30000138,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,3,0,1,0,0),(2534,'2015-03-10 22:38:43','2015-10-11 16:46:33',1,30002372,0,0,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(2535,'2015-03-10 22:38:43','2015-03-10 22:38:43',1,30001146,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(2536,'2015-03-10 22:38:43','2015-03-10 22:38:43',1,30004832,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(2537,'2015-03-10 22:38:43','2015-03-10 22:38:43',1,30000090,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(2538,'2015-03-10 22:38:43','2015-10-11 16:46:33',1,30001731,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(2539,'2015-03-10 22:38:43','2015-10-11 16:46:33',1,30002396,0,1,0,0,0,0,2,0,2,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0),(2540,'2015-03-10 22:38:43','2015-03-10 22:38:43',1,30004294,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(2541,'2015-03-10 22:38:43','2015-10-11 16:46:33',1,30002527,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,1,0,0,0,0,0,1,0),(2542,'2015-03-10 22:38:43','2015-03-10 22:38:43',1,30003377,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(2543,'2015-03-10 22:38:43','2015-10-11 16:46:33',1,30002208,0,0,0,0,0,0,0,0,1,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0),(2544,'2015-03-10 22:38:43','2015-03-10 22:38:43',1,30003445,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(2545,'2015-03-10 22:38:43','2015-03-10 22:38:43',1,30003094,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(2546,'2015-03-10 22:38:43','2015-10-11 16:46:33',1,30001655,0,0,0,0,1,2,1,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0),(2547,'2015-03-10 22:38:43','2015-10-11 16:46:33',1,30005053,0,0,0,0,0,0,0,0,1,0,0,0,0,0,1,1,1,0,1,0,0,0,1,0),(2548,'2015-03-10 22:38:43','2015-10-11 16:46:33',1,30000895,2,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(2549,'2015-03-10 22:38:43','2015-10-11 16:46:33',1,30045343,1,1,0,0,1,1,1,2,0,0,6,0,2,0,3,0,1,1,0,0,0,1,1,4),(2550,'2015-03-10 22:38:43','2015-10-11 16:46:33',1,30005246,0,0,0,0,0,0,0,0,0,1,0,0,1,0,0,0,0,0,0,0,0,1,0,0),(2551,'2015-03-10 22:38:43','2015-10-11 16:46:33',1,30002793,0,0,1,1,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,1,2,0,0),(2552,'2015-03-10 22:38:43','2015-10-11 16:46:33',1,30002788,4,0,0,4,0,1,2,0,1,0,5,5,7,0,0,7,9,4,3,1,3,0,0,5),(2553,'2015-03-10 22:38:43','2015-10-11 16:46:33',1,30000182,0,0,0,2,3,2,1,0,2,1,15,0,1,0,1,0,1,2,0,0,1,1,1,0),(2554,'2015-03-10 22:38:43','2015-10-11 16:46:33',1,30002072,0,0,0,1,0,1,0,0,0,0,1,1,0,0,3,1,0,0,0,0,0,1,1,1),(2555,'2015-03-10 22:38:43','2015-10-11 16:46:33',1,30004982,0,3,1,2,1,1,1,0,0,3,1,0,0,1,0,1,1,3,0,0,0,1,3,1),(2556,'2015-03-10 22:38:43','2015-03-10 22:38:43',1,30002672,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(2557,'2015-03-10 22:38:43','2015-10-11 16:46:33',1,30002559,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,1,0,0),(2558,'2015-03-10 22:38:43','2015-03-10 22:38:43',1,30004102,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(2559,'2015-03-10 22:38:43','2015-10-11 16:46:33',1,30045316,5,2,3,5,3,3,0,1,2,1,1,1,1,1,0,0,2,4,2,8,4,0,3,0),(2560,'2015-03-10 22:38:43','2015-10-11 16:46:33',1,30002738,1,1,1,0,0,0,0,0,0,0,0,0,0,0,1,2,1,0,0,1,1,0,0,0),(2561,'2015-03-10 22:38:43','2015-10-11 16:46:33',1,30003740,0,0,0,0,0,0,0,0,0,1,0,0,0,0,2,1,0,1,0,0,0,0,0,0),(2562,'2015-03-10 22:38:43','2015-10-11 16:46:33',1,30003788,0,0,0,1,1,1,0,0,0,0,1,1,1,1,1,1,0,0,2,1,2,0,0,0),(2563,'2015-03-10 22:38:43','2015-10-11 16:46:33',1,30003219,1,0,0,0,0,0,0,0,0,0,0,0,0,0,2,0,0,0,0,0,0,0,0,0),(2564,'2015-03-10 22:38:43','2015-03-10 22:38:43',1,30001991,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(2565,'2015-03-10 22:38:43','2015-10-11 16:46:33',1,30002439,0,0,0,1,0,0,0,0,0,0,1,1,0,0,3,0,0,2,3,0,3,0,0,1),(2566,'2015-03-10 22:38:43','2015-10-11 16:46:33',1,30000062,0,0,0,0,2,1,0,0,3,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(2567,'2015-03-10 22:38:43','2015-03-10 22:38:43',1,30001843,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(2568,'2015-03-10 22:38:43','2015-03-10 22:38:43',1,30004726,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(2569,'2015-03-10 22:38:43','2015-10-11 16:46:33',1,30000252,4,1,0,1,0,0,2,0,2,2,0,0,1,3,0,0,0,0,0,0,0,1,1,0),(2570,'2015-03-10 22:38:43','2015-10-11 16:46:33',1,30003861,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,0,0,0),(2571,'2015-03-10 22:38:43','2015-10-11 16:46:33',1,30003176,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(2572,'2015-03-10 22:38:43','2015-10-11 16:46:33',1,30000277,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0),(2573,'2015-03-10 22:38:43','2015-03-10 22:38:43',1,30003140,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(2574,'2015-03-10 22:38:43','2015-10-11 16:46:33',1,30004556,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(2575,'2015-03-10 22:38:43','2015-10-11 16:46:33',1,30045317,0,0,0,2,0,0,1,0,0,0,1,0,0,0,0,0,0,1,1,4,1,1,2,1),(2576,'2015-03-10 22:38:43','2015-03-10 22:38:43',1,30002333,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(2577,'2015-03-10 22:38:43','2015-03-10 22:38:43',1,30002595,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(2578,'2015-03-10 22:38:43','2015-10-11 16:46:33',1,30003452,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(2579,'2015-03-10 22:38:43','2015-10-11 16:46:33',1,30002792,0,0,0,0,0,0,1,5,0,3,0,0,0,1,0,0,0,1,0,1,1,0,2,2),(2580,'2015-03-10 22:38:43','2015-10-11 16:46:33',1,30003935,0,0,0,0,0,0,0,0,0,0,2,1,0,1,0,0,0,1,0,0,0,0,0,0),(2581,'2015-03-10 22:38:43','2015-03-10 22:38:43',1,30003524,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(2582,'2015-03-10 22:38:43','2015-10-11 16:46:33',1,30002192,2,1,1,0,3,3,0,3,0,0,0,0,0,0,0,1,1,7,1,0,0,0,1,0),(2583,'2015-03-10 22:38:43','2015-10-11 16:46:33',1,30001696,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,2,0,1),(2584,'2015-03-10 22:38:43','2015-10-11 16:46:33',1,30000073,0,0,0,0,0,0,3,1,0,0,0,1,0,1,1,1,0,0,4,0,0,0,0,2),(2585,'2015-03-10 22:38:43','2015-03-10 22:38:43',1,30002331,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(2586,'2015-03-10 22:38:43','2015-10-11 16:46:33',1,30001236,0,0,0,0,0,0,0,0,0,0,4,0,0,0,0,1,1,0,0,0,0,0,0,0),(2587,'2015-03-10 22:38:43','2015-10-11 16:46:33',1,30002276,0,0,0,0,0,0,0,0,0,1,1,1,0,0,0,0,0,0,0,0,0,0,0,0),(2588,'2015-03-10 22:38:43','2015-10-11 16:46:33',1,30001389,1,3,6,0,2,0,1,0,0,0,5,2,0,0,6,8,5,2,2,4,6,0,1,2),(2589,'2015-03-10 22:38:43','2015-10-11 16:46:33',1,30002739,0,0,1,0,0,0,1,0,0,0,0,0,0,0,1,1,0,0,0,0,0,0,0,0),(2590,'2015-03-10 22:38:43','2015-10-11 16:46:33',1,30002087,0,0,0,1,0,0,0,2,0,1,2,1,0,2,1,0,1,0,0,0,13,0,3,3),(2591,'2015-03-10 22:38:43','2015-10-11 16:46:33',1,30002815,0,0,0,0,0,0,1,0,0,0,0,0,0,0,1,1,0,0,0,0,0,1,0,0),(2592,'2015-03-10 22:38:43','2015-10-11 16:46:33',1,30005014,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(2593,'2015-03-10 22:38:43','2015-10-11 16:46:33',1,30002546,1,0,0,0,0,0,0,0,0,0,0,0,0,1,3,3,0,0,0,1,1,0,0,1),(2594,'2015-03-10 22:38:43','2015-10-11 16:46:33',1,30000165,0,0,0,0,3,3,3,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0),(2595,'2015-03-10 22:38:43','2015-10-11 16:46:33',1,30000093,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0),(2596,'2015-03-10 22:38:43','2015-10-11 16:46:33',1,30002756,1,4,5,3,2,2,3,0,2,2,2,0,3,4,6,8,5,1,4,9,4,1,3,1),(2597,'2015-03-10 22:38:43','2015-03-10 22:38:43',1,30004243,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(2598,'2015-03-10 22:38:43','2015-10-11 16:46:33',1,30001436,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1),(2599,'2015-03-10 22:38:43','2015-10-11 16:46:33',1,30001387,0,0,0,0,1,1,0,0,0,0,0,2,1,0,0,0,0,1,1,0,0,0,1,1),(2600,'2015-03-10 22:38:43','2015-10-11 16:46:33',1,30001365,1,0,0,1,0,0,1,0,0,0,0,0,1,0,0,0,0,2,0,0,1,1,0,1),(2601,'2015-03-10 22:38:43','2015-10-11 16:46:33',1,30002804,1,0,0,0,1,1,0,0,0,4,0,0,0,0,0,0,0,0,1,0,0,0,0,1),(2602,'2015-03-10 22:38:43','2015-10-11 16:46:33',1,30001426,0,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,1,0,1),(2603,'2015-03-10 22:38:43','2015-10-11 16:46:33',1,30001397,0,0,0,0,0,0,1,0,1,1,0,0,1,1,0,0,0,2,0,0,0,0,0,0),(2604,'2015-03-10 22:38:43','2015-10-11 16:46:33',1,30002402,0,0,0,0,0,0,0,0,0,0,5,5,0,0,0,1,1,0,0,0,0,0,0,0),(2605,'2015-03-10 22:38:43','2015-10-11 16:46:33',1,30002777,0,1,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(2606,'2015-03-10 22:38:43','2015-10-11 16:46:33',1,30001726,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,0,0,0),(2607,'2015-03-10 22:38:43','2015-03-10 22:38:43',1,30000285,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(2608,'2015-03-10 22:38:43','2015-10-11 16:46:33',1,30000119,0,1,0,1,0,0,3,0,0,2,0,0,0,0,0,0,0,0,3,1,1,0,0,1),(2609,'2015-03-10 22:38:43','2015-10-11 16:46:33',1,30004157,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(2610,'2015-03-10 22:38:43','2015-10-11 16:46:33',1,30005256,1,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0),(2611,'2015-03-10 22:38:43','2015-03-10 22:38:43',1,30002985,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(2612,'2015-03-10 22:38:43','2015-03-10 22:38:43',1,30005169,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(2613,'2015-03-10 22:38:43','2015-10-11 16:46:33',1,30002886,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(2614,'2015-03-10 22:38:43','2015-03-10 22:38:43',1,30002594,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(2615,'2015-03-10 22:38:43','2015-10-11 16:46:33',1,30002524,1,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,1,0),(2616,'2015-03-10 22:38:43','2015-10-11 16:46:33',1,30001656,0,0,0,0,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(2617,'2015-03-10 22:38:43','2015-03-10 22:38:43',1,30003813,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(2618,'2015-03-10 22:38:43','2015-03-10 22:38:43',1,30000622,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(2619,'2015-03-10 22:38:43','2015-10-11 16:46:33',1,30045351,0,0,0,0,0,0,2,1,1,0,0,0,0,1,0,1,1,1,0,2,3,2,1,2),(2620,'2015-03-10 22:38:43','2015-10-11 16:46:33',1,30003765,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0),(2621,'2015-03-10 22:38:43','2015-03-10 22:38:43',1,30000956,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(2622,'2015-03-10 22:38:43','2015-10-11 16:46:33',1,30002642,0,1,1,0,0,0,1,1,1,1,2,2,1,0,0,0,1,0,0,0,0,0,0,1),(2623,'2015-03-10 22:38:43','2015-03-10 22:38:43',1,30004535,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(2624,'2015-03-10 22:38:43','2015-10-11 16:46:33',1,30001812,0,0,4,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,0,0,0,0),(2625,'2015-03-10 22:38:43','2015-03-10 22:38:43',1,30004905,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(2626,'2015-03-10 22:38:43','2015-03-10 22:38:43',1,30004162,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(2627,'2015-03-10 22:38:43','2015-10-11 16:46:33',1,30001920,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0),(2628,'2015-03-10 22:38:43','2015-10-11 16:46:33',1,30001977,0,0,0,0,0,0,1,0,1,0,0,0,1,1,2,0,0,0,0,1,1,1,0,1),(2629,'2015-03-10 22:38:43','2015-03-10 22:38:43',1,30003206,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(2630,'2015-03-10 22:38:43','2015-10-11 16:46:33',1,30000847,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(2631,'2015-03-10 22:38:43','2015-03-10 22:38:43',1,30001505,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(2632,'2015-03-10 22:38:43','2015-03-10 22:38:43',1,30000489,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(2633,'2015-03-10 22:38:43','2015-10-11 16:46:33',1,30004755,0,0,0,0,0,0,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0),(2634,'2015-03-10 22:38:43','2015-03-10 22:38:43',1,30002887,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(2635,'2015-03-10 22:38:43','2015-03-10 22:38:43',1,30001195,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(2636,'2015-03-10 22:38:43','2015-03-10 22:38:43',1,30002026,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(2637,'2015-03-10 22:38:43','2015-03-10 22:38:43',1,30002174,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(2638,'2015-03-10 22:38:43','2015-03-10 22:38:43',1,30004215,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(2639,'2015-03-10 22:38:43','2015-10-11 16:46:33',1,30004637,1,0,0,0,0,0,0,0,0,3,10,7,2,2,2,0,2,7,3,0,4,0,0,0),(2640,'2015-03-10 22:38:43','2015-03-10 22:38:43',1,30003142,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(2641,'2015-03-10 22:38:43','2015-03-10 22:38:43',1,30000594,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(2642,'2015-03-10 22:38:43','2015-03-10 22:38:43',1,30004410,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(2643,'2015-03-10 22:38:43','2015-03-10 22:38:43',1,30000390,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(2644,'2015-03-10 22:38:43','2015-03-10 22:38:43',1,30000366,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(2645,'2015-03-10 22:38:43','2015-03-10 22:38:43',1,30001112,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(2646,'2015-03-10 22:38:43','2015-10-11 16:46:33',1,30000843,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(2647,'2015-03-10 22:38:43','2015-03-10 22:38:43',1,30001456,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(2648,'2015-03-10 22:38:43','2015-10-11 16:46:33',1,30003634,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0),(2649,'2015-03-10 22:38:43','2015-03-10 22:38:43',1,30002942,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(2650,'2015-03-10 22:38:43','2015-03-10 22:38:43',1,30004513,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(2651,'2015-03-10 22:38:43','2015-10-11 16:46:34',1,30000677,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1),(2652,'2015-03-10 22:38:43','2015-03-10 22:38:43',1,30000386,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(2653,'2015-03-10 22:38:43','2015-10-11 16:46:34',1,30001750,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(2654,'2015-03-10 22:38:43','2015-10-11 16:46:34',1,30001043,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(2655,'2015-03-10 22:38:43','2015-03-10 22:38:43',1,30004373,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(2656,'2015-03-10 22:38:43','2015-10-11 16:46:34',1,30004589,0,0,1,0,5,5,3,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0),(2657,'2015-03-10 22:38:43','2015-10-11 16:46:34',1,30001941,0,0,0,1,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(2658,'2015-03-10 22:38:43','2015-10-11 16:46:34',1,30001230,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,34,18,0,0,0),(2659,'2015-03-10 22:38:43','2015-03-10 22:38:43',1,30000538,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(2660,'2015-03-10 22:38:43','2015-10-11 16:46:34',1,30001013,2,0,0,0,1,1,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(2661,'2015-03-10 22:38:43','2015-03-10 22:38:43',1,30002285,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(2662,'2015-03-10 22:38:43','2015-03-10 22:38:43',1,30001800,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(2663,'2015-03-10 22:38:43','2015-10-11 16:46:34',1,30004312,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(2664,'2015-03-10 22:38:43','2015-10-11 16:46:34',1,30004385,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0),(2665,'2015-03-10 22:38:43','2015-03-10 22:38:43',1,30004460,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(2666,'2015-03-10 22:38:43','2015-10-11 16:46:34',1,30005158,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(2667,'2015-03-10 22:38:43','2015-03-10 22:38:43',1,30004514,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(2668,'2015-03-10 22:38:43','2015-03-10 22:38:43',1,30001055,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(2669,'2015-03-10 22:38:43','2015-10-11 16:46:34',1,30001225,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0),(2670,'2015-03-10 22:38:43','2015-03-10 22:38:43',1,30003864,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(2671,'2015-03-10 22:38:43','2015-10-11 16:46:34',1,30000148,0,0,0,0,1,1,0,0,0,1,0,0,0,0,0,0,0,1,0,0,0,0,0,0),(2672,'2015-03-10 22:38:43','2015-03-10 22:38:43',1,30004125,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(2673,'2015-03-10 22:38:43','2015-10-11 16:46:34',1,30003554,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,2,0,0,0),(2674,'2015-03-10 22:38:43','2015-10-11 16:46:34',1,30001050,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(2675,'2015-03-10 22:38:43','2015-10-11 16:46:34',1,30001385,1,1,1,2,1,1,1,11,2,4,1,1,0,1,0,0,0,0,1,0,2,0,2,2),(2676,'2015-03-10 22:38:43','2015-10-11 16:46:34',1,30000071,0,0,0,1,0,0,0,0,0,0,1,1,0,0,0,0,0,0,0,0,0,0,0,0),(2677,'2015-03-10 22:38:43','2015-03-10 22:38:43',1,30000060,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(2678,'2015-03-10 22:38:43','2015-10-11 16:46:34',1,30000082,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,3,0),(2679,'2015-03-10 22:38:43','2015-03-10 22:38:43',1,30000004,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(2680,'2015-03-10 22:38:43','2015-03-10 22:38:43',1,30003080,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(2681,'2015-03-10 22:38:43','2015-10-11 16:46:34',1,30002263,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,1,1),(2682,'2015-03-10 22:38:43','2015-10-11 16:46:34',1,30001653,11,0,0,0,0,0,0,5,0,0,0,0,0,0,0,0,0,0,0,0,0,58,0,1),(2683,'2015-03-10 22:38:43','2015-10-11 16:46:34',1,30003029,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,1,0,2,0,0,0,0,0),(2684,'2015-03-10 22:38:43','2015-10-11 16:46:34',1,30004241,0,1,0,0,0,0,0,1,2,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0),(2685,'2015-03-10 22:38:43','2015-03-10 22:38:43',1,30003551,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(2686,'2015-03-10 22:38:43','2015-10-11 16:46:34',1,30000121,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,1,0,0,0,0,0,0),(2687,'2015-03-10 22:38:43','2015-10-11 16:46:34',1,30003107,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0),(2688,'2015-03-10 22:38:43','2015-03-10 22:38:43',1,30002564,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(2689,'2015-03-10 22:38:43','2015-03-10 22:38:43',1,30002336,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(2690,'2015-03-10 22:38:43','2015-10-11 16:46:34',1,30000045,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0),(2691,'2015-03-10 22:38:43','2015-10-11 16:46:34',1,30000022,0,1,2,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(2692,'2015-03-10 22:38:43','2015-03-10 22:38:43',1,30000381,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(2693,'2015-03-10 22:38:43','2015-03-10 22:38:43',1,30001777,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(2694,'2015-03-10 22:38:43','2015-10-11 16:46:34',1,30001185,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,1,1,0,0,0),(2695,'2015-03-10 22:38:43','2015-10-11 16:46:34',1,30001971,0,0,0,0,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(2696,'2015-03-10 22:38:43','2015-10-11 16:46:34',1,30003148,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0),(2697,'2015-03-10 22:38:43','2015-03-10 22:38:43',1,30002112,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(2698,'2015-03-10 22:38:43','2015-10-11 16:46:34',1,30002006,0,0,1,0,0,0,0,1,0,1,0,0,0,0,0,0,1,0,0,0,0,0,1,0),(2699,'2015-03-10 22:38:43','2015-03-10 22:38:43',1,30004192,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(2700,'2015-03-10 22:38:43','2015-03-10 22:38:43',1,30002500,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(2701,'2015-03-10 22:38:43','2015-10-11 16:46:34',1,30005083,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,1),(2702,'2015-03-10 22:38:43','2015-10-11 16:46:34',1,30003760,0,0,0,0,1,1,0,0,0,1,0,0,0,0,3,0,0,0,0,0,0,0,1,0),(2703,'2015-03-10 22:38:43','2015-10-11 16:46:34',1,30002692,1,0,0,0,0,0,0,0,0,1,1,0,0,2,3,0,0,0,0,0,0,0,0,0),(2704,'2015-03-10 22:38:43','2015-10-11 16:46:34',1,30005033,0,0,0,0,0,0,0,1,1,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0),(2705,'2015-03-10 22:38:43','2015-03-10 22:38:43',1,30004148,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(2706,'2015-03-10 22:38:43','2015-03-10 22:38:43',1,30000608,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(2707,'2015-03-10 22:38:43','2015-10-11 16:46:34',1,30002748,0,1,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(2708,'2015-03-10 22:38:43','2015-03-10 22:38:43',1,30004281,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(2709,'2015-03-10 22:38:43','2015-10-11 16:46:34',1,30002254,0,0,0,0,0,1,0,0,0,0,0,0,1,0,0,0,1,0,0,6,2,0,0,0),(2710,'2015-03-10 22:38:43','2015-10-11 16:46:34',1,30004132,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0),(2711,'2015-03-10 22:38:43','2015-10-11 16:46:34',1,30003532,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,0,0,0),(2712,'2015-03-10 22:38:43','2015-03-10 22:38:43',1,30000451,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(2713,'2015-03-10 22:38:43','2015-03-10 22:38:43',1,30001451,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(2714,'2015-03-10 22:38:43','2015-03-10 22:38:43',1,30004575,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(2715,'2015-03-10 22:38:43','2015-10-11 16:46:34',1,30001243,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,0,0),(2716,'2015-03-10 22:38:43','2015-10-11 16:46:34',1,30003285,0,0,6,6,0,2,0,1,0,0,0,0,0,11,0,0,0,2,0,1,0,0,1,1),(2717,'2015-03-10 22:38:43','2015-03-10 22:38:43',1,30003661,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(2718,'2015-03-10 22:38:43','2015-10-11 16:46:34',1,30004667,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,0,0,0),(2719,'2015-03-10 22:38:43','2015-10-11 16:46:34',1,30004435,4,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(2720,'2015-03-10 22:38:43','2015-03-10 22:38:43',1,30004839,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(2721,'2015-03-10 22:38:43','2015-10-11 16:46:34',1,30001706,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,0,0,0,0,0),(2722,'2015-03-10 22:38:43','2015-10-11 16:46:34',1,30005046,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(2723,'2015-03-10 22:38:43','2015-10-11 16:46:34',1,30000142,33,32,116,63,49,29,28,25,15,22,18,18,13,23,36,34,23,21,44,41,26,30,37,24),(2724,'2015-03-10 22:38:43','2015-10-11 16:46:34',1,30004684,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0),(2725,'2015-03-10 22:38:43','2015-03-10 22:38:43',1,30004836,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(2726,'2015-03-10 22:38:43','2015-03-10 22:38:43',1,30004515,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(2727,'2015-03-10 22:38:43','2015-10-11 16:46:34',1,30002150,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0),(2728,'2015-03-10 22:38:43','2015-03-10 22:38:43',1,30001636,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(2729,'2015-03-10 22:38:43','2015-03-10 22:38:43',1,30001593,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(2730,'2015-03-10 22:38:43','2015-10-11 16:46:34',1,30001556,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0),(2731,'2015-03-10 22:38:43','2015-10-11 16:46:34',1,30000708,0,1,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(2732,'2015-03-10 22:38:43','2015-03-10 22:38:43',1,30005161,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(2733,'2015-03-10 22:38:43','2015-10-11 16:46:34',1,30000662,0,0,0,0,3,2,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(2734,'2015-03-10 22:38:43','2015-03-10 22:38:43',1,30001542,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(2735,'2015-03-10 22:38:43','2015-10-11 16:46:34',1,30004462,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,3,0,0,0,0,0,0),(2736,'2015-03-10 22:38:43','2015-10-11 16:46:34',1,30004086,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,1,0,0,0,0,0,0),(2737,'2015-03-10 22:38:43','2015-03-10 22:38:43',1,30000078,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(2738,'2015-03-10 22:38:43','2015-10-11 16:46:34',1,30004974,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,1),(2739,'2015-03-10 22:38:43','2015-10-11 16:46:34',1,30002679,0,0,0,0,0,0,0,0,0,1,1,0,0,1,0,0,0,0,0,0,0,0,0,0),(2740,'2015-03-10 22:38:43','2015-10-11 16:46:34',1,30003387,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,0,0,0,0,0,0,0),(2741,'2015-03-10 22:38:43','2015-10-11 16:46:34',1,30002210,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(2742,'2015-03-10 22:38:43','2015-10-11 16:46:34',1,30004088,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0),(2743,'2015-03-10 22:38:43','2015-10-11 16:46:34',1,30001046,0,0,0,0,0,0,0,0,0,0,2,1,1,2,0,0,0,0,1,1,0,0,0,1),(2744,'2015-03-10 22:38:43','2015-10-11 16:46:34',1,30002567,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0),(2745,'2015-03-10 22:38:43','2015-10-11 16:46:34',1,30000156,2,0,2,0,2,4,2,5,1,27,6,5,11,11,4,12,19,26,9,16,22,18,31,33),(2746,'2015-03-10 22:38:43','2015-10-11 16:46:34',1,30003447,0,0,0,0,0,0,0,0,0,0,0,0,0,2,0,0,0,0,0,0,0,0,0,0),(2747,'2015-03-10 22:38:43','2015-10-11 16:46:34',1,30001423,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0),(2748,'2015-03-10 22:38:43','2015-10-11 16:46:34',1,30011392,6,3,15,9,8,6,7,4,7,10,8,11,7,14,11,11,15,11,10,10,16,10,14,7),(2749,'2015-03-10 22:38:43','2015-10-11 16:46:34',1,30005321,0,3,0,1,0,0,0,0,0,0,1,0,1,0,1,3,2,1,0,0,1,1,0,0),(2750,'2015-03-10 22:38:43','2015-10-11 16:46:34',1,30004731,0,0,0,0,0,0,0,0,0,0,1,0,1,0,0,0,0,0,0,0,0,0,0,0),(2751,'2015-03-10 22:38:43','2015-03-10 22:38:43',1,30005136,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(2752,'2015-03-10 22:38:43','2015-10-11 16:46:34',1,30000901,0,0,0,0,1,0,0,0,0,0,0,2,1,0,1,0,0,0,0,1,0,0,2,0),(2753,'2015-03-10 22:38:43','2015-03-10 22:38:43',1,30000363,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(2754,'2015-03-10 22:38:43','2015-03-10 22:38:43',1,30000548,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(2755,'2015-03-10 22:38:43','2015-03-10 22:38:43',1,30004330,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(2756,'2015-03-10 22:38:43','2015-10-11 16:46:34',1,30001851,0,0,0,1,1,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0),(2757,'2015-03-10 22:38:43','2015-03-10 22:38:43',1,30001494,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(2758,'2015-03-10 22:38:43','2015-10-11 16:46:34',1,30003664,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0),(2759,'2015-03-10 22:38:43','2015-03-10 22:38:43',1,30002821,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(2760,'2015-03-10 22:38:43','2015-03-10 22:38:43',1,30002323,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(2761,'2015-03-10 22:38:43','2015-10-11 16:46:34',1,30004324,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(2762,'2015-03-10 22:38:43','2015-10-11 16:46:34',1,30002911,1,0,0,0,1,1,1,0,1,0,0,0,1,1,1,2,1,0,0,1,1,0,0,0),(2763,'2015-03-10 22:38:43','2015-03-10 22:38:43',1,30001937,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(2764,'2015-03-10 22:38:43','2015-10-11 16:46:34',1,30000051,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,2,0),(2765,'2015-03-10 22:38:43','2015-03-10 22:38:43',1,30001738,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(2766,'2015-03-10 22:38:43','2015-10-11 16:46:34',1,30001743,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(2767,'2015-03-10 22:38:43','2015-10-11 16:46:34',1,30005308,5,0,0,2,0,0,1,0,1,1,2,1,0,1,0,1,1,0,1,0,0,1,4,0),(2768,'2015-03-10 22:38:43','2015-10-11 16:46:34',1,30000987,0,0,0,0,1,2,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(2769,'2015-03-10 22:38:43','2015-03-10 22:38:43',1,30003083,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(2770,'2015-03-10 22:38:43','2015-10-11 16:46:34',1,30003016,1,0,0,0,0,0,0,3,0,0,2,1,0,0,0,0,0,0,0,0,0,1,0,0),(2771,'2015-03-10 22:38:43','2015-10-11 16:46:34',1,30003013,0,0,0,0,0,0,0,0,0,0,0,0,2,0,0,0,0,0,0,0,0,0,0,1),(2772,'2015-03-10 22:38:43','2015-03-10 22:38:43',1,30001315,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(2773,'2015-03-10 22:38:43','2015-10-11 16:46:34',1,30002803,0,0,5,3,0,0,1,4,9,0,1,0,0,2,2,2,3,5,1,3,0,3,1,0),(2774,'2015-03-10 22:38:43','2015-10-11 16:46:34',1,30004883,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,1),(2775,'2015-03-10 22:38:43','2015-10-11 16:46:34',1,30001567,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,2,2,0,0,0,0,0,0,0),(2776,'2015-03-10 22:38:43','2015-10-11 16:46:34',1,30001948,0,0,2,0,0,0,0,0,1,1,0,0,3,0,1,0,0,0,0,0,0,0,0,0),(2777,'2015-03-10 22:38:43','2015-10-11 16:46:34',1,30001007,1,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(2778,'2015-03-10 22:38:43','2015-10-11 16:46:34',1,30001190,0,0,0,0,0,0,0,0,0,0,2,2,0,0,3,1,1,0,0,1,0,0,1,1),(2779,'2015-03-10 22:38:43','2015-03-10 22:38:43',1,30001793,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(2780,'2015-03-10 22:38:43','2015-03-10 22:38:43',1,30001495,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(2781,'2015-03-10 22:38:43','2015-03-10 22:38:43',1,30003264,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(2782,'2015-03-10 22:38:43','2015-03-10 22:38:43',1,30000640,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(2783,'2015-03-10 22:38:43','2015-03-10 22:38:43',1,30005135,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(2784,'2015-03-10 22:38:43','2015-03-10 22:38:43',1,30004952,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(2785,'2015-03-10 22:38:43','2015-03-10 22:38:43',1,30000325,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(2786,'2015-03-10 22:38:43','2015-10-11 16:46:34',1,30004912,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,2,2,0,0,0),(2787,'2015-03-10 22:38:43','2015-03-10 22:38:43',1,30005120,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(2788,'2015-03-10 22:38:43','2015-10-11 16:46:34',1,30004751,2,0,0,0,0,0,0,0,1,0,1,1,0,0,0,0,0,0,0,0,1,0,0,0),(2789,'2015-03-10 22:38:43','2015-03-10 22:38:43',1,30000890,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(2790,'2015-03-10 22:38:43','2015-10-11 16:46:34',1,30004379,0,0,0,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0),(2791,'2015-03-10 22:38:43','2015-10-11 16:46:34',1,30004490,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,0,0,0),(2792,'2015-03-10 22:38:43','2015-10-11 16:46:34',1,30001011,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1),(2793,'2015-03-10 22:38:43','2015-03-10 22:38:43',1,30003969,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(2794,'2015-03-10 22:38:43','2015-03-10 22:38:43',1,30001550,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(2795,'2015-03-10 22:38:43','2015-10-11 16:46:34',1,30001000,2,0,5,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(2796,'2015-03-10 22:38:43','2015-03-10 22:38:43',1,30004475,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(2797,'2015-03-10 22:38:43','2015-10-11 16:46:34',1,30003982,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,0,0,0,0,0,0,0),(2798,'2015-03-10 22:38:43','2015-10-11 16:46:34',1,30001006,0,0,0,0,0,0,0,0,0,1,0,0,0,0,1,0,0,2,0,0,0,0,0,0),(2799,'2015-03-10 22:38:43','2015-10-11 16:46:34',1,30001026,1,1,3,2,0,0,1,0,0,1,3,3,2,1,4,8,7,6,0,0,1,3,6,6),(2800,'2015-03-10 22:38:43','2015-10-11 16:46:34',1,30000631,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(2801,'2015-03-10 22:38:43','2015-10-11 16:46:34',1,30004421,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,0,0,0),(2802,'2015-03-10 22:38:43','2015-03-10 22:38:43',1,30001543,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(2803,'2015-03-10 22:38:43','2015-03-10 22:38:43',1,30003998,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(2804,'2015-03-10 22:38:43','2015-03-10 22:38:43',1,30001572,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(2805,'2015-03-10 22:38:43','2015-10-11 16:46:34',1,30003972,2,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(2806,'2015-03-10 22:38:43','2015-03-10 22:38:43',1,30001172,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(2807,'2015-03-10 22:38:43','2015-10-11 16:46:34',1,30003758,0,0,0,1,0,0,0,0,0,0,0,0,0,0,3,10,8,0,0,0,0,0,1,0),(2808,'2015-03-10 22:38:43','2015-10-11 16:46:34',1,30003764,0,1,0,0,0,0,2,0,0,0,2,2,0,0,4,10,7,0,0,0,0,1,0,0),(2809,'2015-03-10 22:38:43','2015-03-10 22:38:43',1,30000665,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(2810,'2015-03-10 22:38:43','2015-10-11 16:46:34',1,30002464,0,0,0,0,0,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(2811,'2015-03-10 22:38:43','2015-10-11 16:46:34',1,30001274,0,0,0,6,0,0,2,1,0,2,2,2,1,0,0,0,0,0,1,4,0,0,2,1),(2812,'2015-03-10 22:38:43','2015-10-11 16:46:34',1,30004017,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(2813,'2015-03-10 22:38:43','2015-10-11 16:46:34',1,30002447,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,2,1),(2814,'2015-03-10 22:38:43','2015-10-11 16:46:34',1,30001762,0,0,0,0,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(2815,'2015-03-10 22:38:43','2015-10-11 16:46:34',1,30003687,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(2816,'2015-03-10 22:38:43','2015-10-11 16:46:34',1,30003279,1,0,4,0,1,1,1,0,2,1,7,7,1,7,6,4,3,0,0,0,0,0,0,0),(2817,'2015-03-10 22:38:43','2015-10-11 16:46:34',1,30002900,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0),(2818,'2015-03-10 22:38:43','2015-10-11 16:46:34',1,30000659,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0),(2819,'2015-03-10 22:38:43','2015-10-11 16:46:34',1,30001238,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,0,0,0),(2820,'2015-03-10 22:38:43','2015-10-11 16:46:34',1,30002872,0,0,0,3,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(2821,'2015-03-10 22:38:43','2015-03-10 22:38:43',1,30000369,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(2822,'2015-03-10 22:38:43','2015-10-11 16:46:34',1,30003950,0,1,16,0,2,0,0,0,0,0,1,1,0,0,1,0,0,0,0,0,0,0,0,0),(2823,'2015-03-10 22:38:43','2015-03-10 22:38:43',1,30000510,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(2824,'2015-03-10 22:38:43','2015-03-10 22:38:43',1,30000653,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(2825,'2015-03-10 22:38:43','2015-03-10 22:38:43',1,30001040,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(2826,'2015-03-10 22:38:43','2015-03-10 22:38:43',1,30004572,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(2827,'2015-03-10 22:38:43','2015-10-11 16:46:34',1,30000244,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(2828,'2015-03-10 22:38:43','2015-03-10 22:38:43',1,30002873,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(2829,'2015-03-10 22:38:43','2015-10-11 16:46:34',1,30001231,0,0,0,0,0,0,1,0,0,0,0,0,0,2,0,1,1,0,3,0,0,0,0,4),(2830,'2015-03-10 22:38:43','2015-10-11 16:46:34',1,30002789,1,1,4,3,2,5,2,15,0,0,1,0,0,0,0,0,0,1,1,0,0,1,2,1),(2831,'2015-03-10 22:38:43','2015-03-10 22:38:43',1,30002417,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(2832,'2015-03-10 22:38:43','2015-10-11 16:46:34',1,30004095,0,0,0,0,0,0,0,2,1,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0),(2833,'2015-03-10 22:38:43','2015-03-10 22:38:43',1,30003873,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(2834,'2015-03-10 22:38:43','2015-10-11 16:46:34',1,30002751,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1),(2835,'2015-03-10 22:38:43','2015-10-11 16:46:34',1,30003887,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(2836,'2015-03-10 22:38:43','2015-10-11 16:46:34',1,30001405,1,1,1,3,0,1,2,1,2,0,0,0,0,0,0,0,0,0,1,0,0,3,3,1),(2837,'2015-03-10 22:38:43','2015-03-10 22:38:43',1,30002747,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(2838,'2015-03-10 22:38:43','2015-10-11 16:46:34',1,30004115,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,4,0,0,0,0,0,1),(2839,'2015-03-10 22:38:43','2015-10-11 16:46:34',1,30003069,6,7,15,10,5,8,5,6,12,0,0,3,4,2,1,1,0,0,0,5,4,1,0,0),(2840,'2015-03-10 22:38:43','2015-10-11 16:46:34',1,30004239,0,0,0,1,0,0,1,0,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(2841,'2015-03-10 22:38:43','2015-10-11 16:46:34',1,30002782,1,1,2,3,1,0,3,2,2,3,0,0,1,2,1,3,5,1,0,0,7,2,0,1),(2842,'2015-03-10 22:38:43','2015-10-11 16:46:34',1,30001406,2,5,0,1,1,1,0,2,2,1,1,0,1,2,2,2,0,0,1,0,3,0,1,2),(2843,'2015-03-10 22:38:43','2015-10-11 16:46:34',1,30021392,1,0,0,0,0,0,0,0,0,1,0,0,0,0,2,1,0,0,0,0,1,0,1,0),(2844,'2015-03-10 22:38:43','2015-10-11 16:46:34',1,30004306,0,0,0,0,0,0,0,0,0,0,0,0,0,0,38,0,0,0,0,0,0,0,0,0),(2845,'2015-03-10 22:38:43','2015-10-11 16:46:34',1,30001742,0,0,0,0,1,1,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0),(2846,'2015-03-10 22:38:43','2015-10-11 16:46:34',1,30001440,0,0,1,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0),(2847,'2015-03-10 22:38:43','2015-10-11 16:46:34',1,30004134,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(2848,'2015-03-10 22:38:43','2015-10-11 16:46:34',1,30000030,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,1),(2849,'2015-03-10 22:38:43','2015-10-11 16:46:34',1,30002761,1,0,0,0,0,1,0,1,3,6,0,0,1,1,4,4,2,0,0,1,0,1,3,0),(2850,'2015-03-10 22:38:43','2015-03-10 22:38:43',1,30002416,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(2851,'2015-03-10 22:38:43','2015-10-11 16:46:34',1,30002580,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,1,1,0,0,0,0,1,1,0),(2852,'2015-03-10 22:38:43','2015-10-11 16:46:34',1,30002797,0,0,3,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,0,0,0,0),(2853,'2015-03-10 22:38:43','2015-10-11 16:46:34',1,30002749,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(2854,'2015-03-10 22:38:43','2015-10-11 16:46:34',1,30000018,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(2855,'2015-03-10 22:38:43','2015-03-10 22:38:43',1,30001242,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(2856,'2015-03-10 22:38:43','2015-03-10 22:38:43',1,30004794,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(2857,'2015-03-10 22:38:43','2015-10-11 16:46:34',1,30003729,2,0,0,0,0,7,1,1,1,5,0,1,1,1,2,3,4,7,1,3,17,1,2,1),(2858,'2015-03-10 22:38:43','2015-10-11 16:46:34',1,30002178,1,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,5,0,0,0),(2859,'2015-03-10 22:38:43','2015-10-11 16:46:34',1,30004579,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,0,0),(2860,'2015-03-10 22:38:43','2015-10-11 16:46:34',1,30000737,0,0,5,0,1,1,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0),(2861,'2015-03-10 22:38:43','2015-10-11 16:46:34',1,30001164,1,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0),(2862,'2015-03-10 22:38:43','2015-03-10 22:38:43',1,30000736,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(2863,'2015-03-10 22:38:43','2015-03-10 22:38:43',1,30002027,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(2864,'2015-03-10 22:38:43','2015-03-10 22:38:43',1,30000519,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(2865,'2015-03-10 22:38:43','2015-03-10 22:38:43',1,30004295,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(2866,'2015-03-10 22:38:43','2015-10-11 16:46:34',1,30003883,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,3,0,0,0,2,0),(2867,'2015-03-10 22:38:43','2015-03-10 22:38:43',1,30003239,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(2868,'2015-03-10 22:38:43','2015-10-11 16:46:34',1,30045346,9,11,3,14,3,7,7,6,11,3,0,1,0,2,10,3,3,7,4,7,6,4,2,8),(2869,'2015-03-10 22:38:43','2015-03-10 22:38:43',1,30004772,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(2870,'2015-03-10 22:38:43','2015-10-11 16:46:34',1,30045308,5,3,7,1,2,1,1,0,0,1,0,0,1,0,0,0,0,1,4,4,3,8,5,6),(2871,'2015-03-10 22:38:43','2015-10-11 16:46:34',1,30002193,0,1,1,0,0,0,0,1,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0),(2872,'2015-03-10 22:38:43','2015-03-10 22:38:43',1,30000098,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(2873,'2015-03-10 22:38:43','2015-10-11 16:46:34',1,30000176,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0),(2874,'2015-03-10 22:38:43','2015-03-10 22:38:43',1,30003999,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(2875,'2015-03-10 22:38:43','2015-10-11 16:46:34',1,30005206,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(2876,'2015-03-10 22:38:43','2015-10-11 16:46:34',1,30004237,0,0,0,1,0,0,0,1,0,1,0,0,1,0,1,2,2,0,0,0,0,0,0,0),(2877,'2015-03-10 22:38:43','2015-10-11 16:46:34',1,30003823,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0),(2878,'2015-03-10 22:38:43','2015-10-11 16:46:34',1,30000116,0,0,0,0,3,3,0,0,0,2,0,0,0,0,0,0,0,7,2,2,0,0,0,1),(2879,'2015-03-10 22:38:43','2015-10-11 16:46:34',1,30005078,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0),(2880,'2015-03-10 22:38:43','2015-03-10 22:38:43',1,30001623,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(2881,'2015-03-10 22:38:43','2015-03-10 22:38:43',1,30011672,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(2882,'2015-03-10 22:38:43','2015-10-11 16:46:34',1,30005260,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,1,1,0,0,0,0,1,0,0),(2883,'2015-03-10 22:38:43','2015-03-10 22:38:43',1,30005066,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(2884,'2015-03-10 22:38:43','2015-10-11 16:46:34',1,30005220,0,0,0,1,0,1,0,0,0,1,0,1,0,0,1,0,0,0,0,0,0,0,0,0),(2885,'2015-03-10 22:38:43','2015-10-11 16:46:34',1,30001682,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,4,2,0,1),(2886,'2015-03-10 22:38:43','2015-03-10 22:38:43',1,30001515,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(2887,'2015-03-10 22:38:43','2015-10-11 16:46:34',1,30004709,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(2888,'2015-03-10 22:38:43','2015-10-11 16:46:34',1,30003343,0,0,1,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,3,0,0,0,0,0),(2889,'2015-03-10 22:38:43','2015-03-10 22:38:43',1,30001790,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(2890,'2015-03-10 22:38:43','2015-03-10 22:38:43',1,30002296,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(2891,'2015-03-10 22:38:43','2015-03-10 22:38:43',1,30003190,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(2892,'2015-03-10 22:38:43','2015-03-10 22:38:43',1,30001240,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(2893,'2015-03-10 22:38:43','2015-10-11 16:46:34',1,30005032,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(2894,'2015-03-10 22:38:43','2015-10-11 16:46:34',1,30000117,0,3,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,1,1),(2895,'2015-03-10 22:38:43','2015-03-10 22:38:43',1,30004096,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(2896,'2015-03-10 22:38:43','2015-03-10 22:38:43',1,30003863,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(2897,'2015-03-10 22:38:43','2015-10-11 16:46:34',1,30000056,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,0),(2898,'2015-03-10 22:38:43','2015-10-11 16:46:34',1,30003486,0,0,0,0,0,0,0,0,0,1,1,1,0,0,0,0,0,0,0,0,0,1,11,0),(2899,'2015-03-10 22:38:43','2015-10-11 16:46:34',1,30004258,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0),(2900,'2015-03-10 22:38:43','2015-10-11 16:46:34',1,30003490,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,3,0,0,0,0,0,0,1),(2901,'2015-03-10 22:38:43','2015-03-10 22:38:43',1,30001969,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(2902,'2015-03-10 22:38:43','2015-10-11 16:46:34',1,30004209,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0),(2903,'2015-03-10 22:38:43','2015-10-11 16:46:34',1,30000189,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0),(2904,'2015-03-10 22:38:43','2015-03-10 22:38:43',1,30001692,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(2905,'2015-03-10 22:38:43','2015-10-11 16:46:34',1,30000024,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0),(2906,'2015-03-10 22:38:43','2015-03-10 22:38:43',1,30004176,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(2907,'2015-03-10 22:38:43','2015-03-10 22:38:43',1,30003860,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(2908,'2015-03-10 22:38:43','2015-10-11 16:46:34',1,30045314,3,0,8,1,3,3,5,2,7,1,13,13,3,5,4,3,2,4,3,3,2,5,4,2),(2909,'2015-03-10 22:38:43','2015-10-11 16:46:34',1,30001372,1,5,0,0,41,63,0,0,0,0,1,1,0,1,0,0,0,0,0,3,0,0,0,4),(2910,'2015-03-10 22:38:43','2015-10-11 16:46:34',1,30001410,0,0,1,0,1,0,0,0,0,1,5,4,0,0,0,0,0,0,1,0,0,0,0,0),(2911,'2015-03-10 22:38:43','2015-10-11 16:46:34',1,30001360,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,1,0,1,0,0,0,2,0),(2912,'2015-03-10 22:38:43','2015-10-11 16:46:34',1,30000141,1,2,6,5,4,4,3,5,2,4,2,2,6,6,2,1,1,3,1,4,1,0,0,1),(2913,'2015-03-10 22:38:43','2015-10-11 16:46:34',1,30005056,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0),(2914,'2015-03-10 22:38:43','2015-03-10 22:38:43',1,30004376,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(2915,'2015-03-10 22:38:43','2015-10-11 16:46:34',1,30004488,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(2916,'2015-03-10 22:38:43','2015-10-11 16:46:34',1,30001264,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,0,0,0,3,0,1),(2917,'2015-03-10 22:38:43','2015-10-11 16:46:34',1,30004340,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(2918,'2015-03-10 22:38:43','2015-10-11 16:46:34',1,30003458,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(2919,'2015-03-10 22:38:43','2015-10-11 16:46:34',1,30002414,0,0,0,1,0,0,0,0,0,0,0,0,0,0,1,0,0,2,0,0,1,2,1,0),(2920,'2015-03-10 22:38:43','2015-03-10 22:38:43',1,30002566,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(2921,'2015-03-10 22:38:43','2015-10-11 16:46:34',1,30001020,0,0,0,1,0,0,0,0,0,0,1,1,0,6,0,0,0,0,1,4,1,0,0,0),(2922,'2015-03-10 22:38:43','2015-10-11 16:46:34',1,30002097,0,0,0,0,0,0,0,0,0,2,1,0,3,2,3,2,1,2,2,1,1,2,1,0),(2923,'2015-03-10 22:38:43','2015-10-11 16:46:34',1,30001980,0,3,1,0,2,0,0,0,1,0,0,0,0,4,0,0,0,0,0,0,0,0,1,1),(2924,'2015-03-10 22:38:43','2015-10-11 16:46:34',1,30003344,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,8,0,0,0),(2925,'2015-03-10 22:38:43','2015-03-10 22:38:43',1,30004316,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(2926,'2015-03-10 22:38:43','2015-10-11 16:46:34',1,30002311,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,1,1,0,0,0),(2927,'2015-03-10 22:38:43','2015-03-10 22:38:43',1,30004375,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(2928,'2015-03-10 22:38:43','2015-03-10 22:38:43',1,30003625,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(2929,'2015-03-10 22:38:43','2015-03-10 22:38:43',1,30001485,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(2930,'2015-03-10 22:38:43','2015-10-11 16:46:34',1,30002248,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0),(2931,'2015-03-10 22:38:43','2015-10-11 16:46:34',1,30005247,0,0,0,0,0,0,1,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,3,2),(2932,'2015-03-10 22:38:43','2015-10-11 16:46:34',1,30005124,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(2933,'2015-03-10 22:38:43','2015-10-11 16:46:34',1,30003092,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0),(2934,'2015-03-10 22:38:43','2015-10-11 16:46:34',1,30031392,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,1),(2935,'2015-03-10 22:38:43','2015-10-11 16:46:34',1,30002737,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,1,0,0,0,0,0),(2936,'2015-03-10 22:38:43','2015-10-11 16:46:34',1,30003471,0,0,1,1,1,1,2,0,0,0,1,1,0,0,0,0,0,0,0,0,1,0,0,1),(2937,'2015-03-10 22:38:43','2015-03-10 22:38:43',1,30004128,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(2938,'2015-03-10 22:38:43','2015-03-10 22:38:43',1,30004152,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(2939,'2015-03-10 22:38:43','2015-10-11 16:46:34',1,30005038,0,0,0,1,0,0,1,1,0,0,0,0,0,0,0,1,2,1,0,0,1,1,5,1),(2940,'2015-03-10 22:38:43','2015-10-11 16:46:34',1,30001394,2,1,0,1,0,0,0,1,0,0,0,0,0,0,0,0,0,1,0,3,5,0,0,1),(2941,'2015-03-10 22:38:43','2015-10-11 16:46:34',1,30045312,0,0,0,1,2,3,0,0,0,1,0,0,0,1,0,0,0,0,3,2,1,1,0,0),(2942,'2015-03-10 22:38:43','2015-10-11 16:46:34',1,30005258,1,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0),(2943,'2015-03-10 22:38:43','2015-10-11 16:46:34',1,30000181,0,2,0,0,2,1,0,1,2,1,6,12,0,0,0,0,0,2,0,0,2,0,0,3),(2944,'2015-03-10 22:38:43','2015-10-11 16:46:34',1,30004103,0,0,0,0,0,0,5,0,0,0,8,0,0,0,1,1,0,0,0,0,0,0,0,0),(2945,'2015-03-10 22:38:43','2015-10-11 16:46:34',1,30003068,3,5,4,19,21,22,14,8,1,9,7,8,4,7,4,3,5,23,5,5,9,7,11,21),(2946,'2015-03-10 22:38:43','2015-03-10 22:38:43',1,30001901,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(2947,'2015-03-10 22:38:43','2015-03-10 22:38:43',1,30001536,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(2948,'2015-03-10 22:38:43','2015-10-11 16:46:34',1,30001963,0,0,0,0,0,0,0,0,0,0,2,0,0,0,0,1,1,0,0,0,0,0,0,0),(2949,'2015-03-10 22:38:43','2015-03-10 22:38:43',1,30002452,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(2950,'2015-03-10 22:38:43','2015-03-10 22:38:43',1,30004895,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(2951,'2015-03-10 22:38:43','2015-10-11 16:46:34',1,30022547,0,0,0,0,0,0,0,0,0,0,1,0,0,1,0,0,0,0,0,1,1,0,0,0),(2952,'2015-03-10 22:38:43','2015-10-11 16:46:34',1,30002079,0,0,0,0,0,0,0,0,1,1,0,0,0,0,1,0,0,0,0,0,0,0,0,0),(2953,'2015-03-10 22:38:43','2015-10-11 16:46:34',1,30002519,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,0,0,0,0,0,0,0),(2954,'2015-03-10 22:38:43','2015-10-11 16:46:34',1,30002286,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,1,0),(2955,'2015-03-10 22:38:43','2015-03-10 22:38:43',1,30000246,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(2956,'2015-03-10 22:38:43','2015-10-11 16:46:34',1,30000807,0,0,0,0,0,0,0,2,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(2957,'2015-03-10 22:38:43','2015-03-10 22:38:43',1,30001589,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(2958,'2015-03-10 22:38:43','2015-03-10 22:38:43',1,30003177,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(2959,'2015-03-10 22:38:43','2015-10-11 16:46:34',1,30003300,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0),(2960,'2015-03-10 22:38:43','2015-10-11 16:46:34',1,30004698,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(2961,'2015-03-10 22:38:43','2015-03-10 22:38:43',1,30002042,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(2962,'2015-03-10 22:38:43','2015-10-11 16:46:34',1,30002767,0,0,4,0,0,0,0,0,0,0,3,1,1,2,3,1,0,1,0,0,1,1,0,0),(2963,'2015-03-10 22:38:43','2015-10-11 16:46:34',1,30003501,0,1,3,0,0,0,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(2964,'2015-03-10 22:38:43','2015-10-11 16:46:34',1,30000021,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0),(2965,'2015-03-10 22:38:43','2015-10-11 16:46:34',1,30003926,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0),(2966,'2015-03-10 22:38:43','2015-10-11 16:46:34',1,30002771,1,1,0,0,3,1,0,0,0,0,2,1,0,0,0,0,0,0,0,1,1,1,4,1),(2967,'2015-03-10 22:38:43','2015-10-11 16:46:34',1,30005050,0,0,0,0,0,0,0,1,2,1,1,2,0,0,0,0,0,0,0,0,0,0,0,0),(2968,'2015-03-10 22:38:43','2015-10-11 16:46:34',1,30001415,0,0,0,0,0,0,0,0,0,1,0,0,1,0,0,0,0,0,0,0,0,0,0,0),(2969,'2015-03-10 22:38:43','2015-10-11 16:46:34',1,30003066,0,0,0,1,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(2970,'2015-03-10 22:38:43','2015-03-10 22:38:43',1,30003096,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(2971,'2015-03-10 22:38:43','2015-10-11 16:46:34',1,30003089,5,0,0,1,0,0,0,0,0,2,4,3,0,2,0,2,6,0,2,3,1,1,3,1),(2972,'2015-03-10 22:38:43','2015-10-11 16:46:34',1,30002802,0,2,0,1,0,1,0,0,0,0,0,0,1,0,2,0,0,0,0,1,0,0,3,0),(2973,'2015-03-10 22:38:43','2015-03-10 22:38:43',1,30004348,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(2974,'2015-03-10 22:38:43','2015-10-11 16:46:34',1,30004642,9,0,0,0,0,0,0,0,0,0,7,7,1,0,0,0,1,0,1,0,5,0,1,0),(2975,'2015-03-10 22:38:43','2015-03-10 22:38:43',1,30003635,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(2976,'2015-03-10 22:38:43','2015-10-11 16:46:34',1,30001180,3,0,0,0,0,0,1,0,0,1,1,0,0,0,1,0,0,0,1,0,0,0,0,0),(2977,'2015-03-10 22:38:43','2015-10-11 16:46:34',1,30004833,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(2978,'2015-03-10 22:38:43','2015-03-10 22:38:43',1,30000269,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(2979,'2015-03-10 22:38:43','2015-03-10 22:38:43',1,30000347,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(2980,'2015-03-10 22:38:43','2015-03-10 22:38:43',1,30000124,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(2981,'2015-03-10 22:38:43','2015-10-11 16:46:34',1,30000498,1,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0),(2982,'2015-03-10 22:38:43','2015-10-11 16:46:34',1,30000710,0,0,0,0,1,0,0,1,0,0,0,0,0,0,0,1,1,0,0,0,0,0,0,0),(2983,'2015-03-10 22:38:43','2015-10-11 16:46:34',1,30000874,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(2984,'2015-03-10 22:38:43','2015-10-11 16:46:34',1,30004593,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(2985,'2015-03-10 22:38:43','2015-03-10 22:38:43',1,30002142,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(2986,'2015-03-10 22:38:43','2015-10-11 16:46:34',1,30003951,2,0,0,0,0,0,0,0,0,1,0,0,0,0,2,0,1,0,0,0,0,0,0,0),(2987,'2015-03-10 22:38:43','2015-03-10 22:38:43',1,30003970,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(2988,'2015-03-10 22:38:43','2015-10-11 16:46:34',1,30004625,0,0,0,0,0,0,0,0,0,0,0,1,2,1,0,0,0,4,0,0,0,0,0,0),(2989,'2015-03-10 22:38:43','2015-10-11 16:46:34',1,30001945,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0),(2990,'2015-03-10 22:38:43','2015-10-11 16:46:34',1,30004910,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0),(2991,'2015-03-10 22:38:43','2015-03-10 22:38:43',1,30001223,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(2992,'2015-03-10 22:38:43','2015-10-11 16:46:34',1,30003689,0,0,1,2,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(2993,'2015-03-10 22:38:43','2015-03-10 22:38:43',1,30000357,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(2994,'2015-03-10 22:38:43','2015-10-11 16:46:34',1,30001592,0,0,0,0,0,0,0,0,0,1,6,0,0,0,0,0,0,0,0,0,0,0,0,0),(2995,'2015-03-10 22:38:43','2015-10-11 16:46:34',1,30000540,0,0,4,1,0,0,0,0,0,2,4,0,1,0,0,0,0,0,0,0,0,6,12,1),(2996,'2015-03-10 22:38:43','2015-03-10 22:38:43',1,30004018,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(2997,'2015-03-10 22:38:43','2015-10-11 16:46:34',1,30002847,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(2998,'2015-03-10 22:38:43','2015-10-11 16:46:34',1,30002434,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,0,0,0),(2999,'2015-03-10 22:38:43','2015-03-10 22:38:43',1,30001350,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(3000,'2015-03-10 22:38:43','2015-03-10 22:38:43',1,30000528,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(3001,'2015-03-10 22:38:43','2015-10-11 16:46:34',1,30003168,0,0,0,0,0,0,0,0,3,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(3002,'2015-03-10 22:38:43','2015-03-10 22:38:43',1,30003643,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(3003,'2015-03-10 22:38:43','2015-03-10 22:38:43',1,30005163,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(3004,'2015-03-10 22:38:43','2015-03-10 22:38:43',1,30000467,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(3005,'2015-03-10 22:38:43','2015-10-11 16:46:34',1,30003684,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(3006,'2015-03-10 22:38:43','2015-03-10 22:38:43',1,30000430,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(3007,'2015-03-10 22:38:43','2015-10-11 16:46:34',1,30002842,1,1,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(3008,'2015-03-10 22:38:43','2015-10-11 16:46:34',1,30002470,0,0,0,0,0,0,0,0,0,0,0,7,0,0,0,0,0,1,0,0,0,1,0,0),(3009,'2015-03-10 22:38:43','2015-03-10 22:38:43',1,30001499,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(3010,'2015-03-10 22:38:43','2015-10-11 16:46:34',1,30001989,0,0,0,0,0,0,0,3,0,0,0,1,2,0,0,0,1,0,0,0,0,0,0,2),(3011,'2015-03-10 22:38:43','2015-10-11 16:46:34',1,30000891,0,0,0,0,0,0,0,0,0,3,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(3012,'2015-03-10 22:38:43','2015-03-10 22:38:43',1,30001526,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(3013,'2015-03-10 22:38:43','2015-03-10 22:38:43',1,30004927,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(3014,'2015-03-10 22:38:43','2015-03-10 22:38:43',1,30000605,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(3015,'2015-03-10 22:38:43','2015-03-10 22:38:43',1,30004203,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(3016,'2015-03-10 22:38:43','2015-03-10 22:38:43',1,30002300,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(3017,'2015-03-10 22:38:43','2015-03-10 22:38:43',1,30001876,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(3018,'2015-03-10 22:38:43','2015-03-10 22:38:43',1,30000968,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(3019,'2015-03-10 22:38:43','2015-03-10 22:38:43',1,30001809,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(3020,'2015-03-10 22:38:43','2015-03-10 22:38:43',1,30004827,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(3021,'2015-03-10 22:38:43','2015-10-11 16:46:34',1,30004003,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0),(3022,'2015-03-10 22:38:43','2015-03-10 22:38:43',1,30004526,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(3023,'2015-03-10 22:38:43','2015-10-11 16:46:34',1,30002376,0,0,3,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(3024,'2015-03-10 22:38:43','2015-03-10 22:38:43',1,30002435,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(3025,'2015-03-10 22:38:43','2015-10-11 16:46:34',1,30000786,0,0,0,0,0,0,4,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0),(3026,'2015-03-10 22:38:43','2015-03-10 22:38:43',1,30004944,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(3027,'2015-03-10 22:38:43','2015-03-10 22:38:43',1,30005179,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(3028,'2015-03-10 22:38:43','2015-03-10 22:38:43',1,30001928,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(3029,'2015-03-10 22:38:43','2015-03-10 22:38:43',1,30002607,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(3030,'2015-03-10 22:38:43','2015-03-10 22:38:43',1,30000354,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(3031,'2015-03-10 22:38:43','2015-10-11 16:46:34',1,30004659,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0),(3032,'2015-03-10 22:38:43','2015-03-10 22:38:43',1,30001560,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(3033,'2015-03-10 22:38:43','2015-10-11 16:46:34',1,30001174,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0),(3034,'2015-03-10 22:38:43','2015-03-10 22:38:43',1,30000462,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(3035,'2015-03-10 22:38:43','2015-10-11 16:46:34',1,30003255,2,1,0,2,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(3036,'2015-03-10 22:38:43','2015-10-11 16:46:34',1,30041392,0,0,1,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(3037,'2015-03-10 22:38:43','2015-10-11 16:46:34',1,30002976,7,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,1,0,0,2,1,0,0,0),(3038,'2015-03-10 22:38:43','2015-03-10 22:38:43',1,30000029,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(3039,'2015-03-10 22:38:43','2015-10-11 16:46:34',1,30002989,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,4,4,0,0,0,0,0,0,0),(3040,'2015-03-10 22:38:43','2015-10-11 16:46:34',1,30004999,0,7,4,1,6,4,1,2,1,0,3,1,2,1,1,0,2,0,3,0,1,1,1,2),(3041,'2015-03-10 22:38:43','2015-10-11 16:46:34',1,30003519,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,1,0,0,0),(3042,'2015-03-10 22:38:43','2015-10-11 16:46:34',1,30003049,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0),(3043,'2015-03-10 22:38:43','2015-10-11 16:46:34',1,30003063,1,5,0,7,1,1,0,9,1,15,7,7,6,5,46,51,52,2,11,47,24,23,9,2),(3044,'2015-03-10 22:38:43','2015-10-11 16:46:34',1,30002722,0,0,0,0,0,0,0,0,0,0,0,0,0,2,3,2,0,0,0,1,0,1,2,0),(3045,'2015-03-10 22:38:43','2015-10-11 16:46:34',1,30002074,1,1,0,1,1,0,1,0,0,1,0,0,0,0,4,2,0,0,3,0,0,5,0,2),(3046,'2015-03-10 22:38:43','2015-10-11 16:46:34',1,30003882,0,0,0,0,2,2,0,0,0,0,0,0,0,0,0,1,1,0,1,0,0,0,0,1),(3047,'2015-03-10 22:38:43','2015-10-11 16:46:34',1,30002540,0,0,0,0,0,0,0,0,0,2,1,3,6,1,3,0,2,3,1,0,4,0,2,0),(3048,'2015-03-10 22:38:43','2015-10-11 16:46:34',1,30001712,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,0,0),(3049,'2015-03-10 22:38:43','2015-10-11 16:46:34',1,30032547,0,0,2,0,0,0,0,0,0,0,0,0,0,2,0,0,0,0,0,0,0,0,1,1),(3050,'2015-03-10 22:38:43','2015-03-10 22:38:43',1,30003579,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(3051,'2015-03-10 22:38:43','2015-10-11 16:46:34',1,30000002,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,2,0),(3052,'2015-03-10 22:38:43','2015-03-10 22:38:43',1,30003549,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(3053,'2015-03-10 22:38:43','2015-10-11 16:46:34',1,30002065,0,0,0,0,0,0,0,1,0,0,0,0,1,0,1,0,1,0,1,1,0,2,0,0),(3054,'2015-03-10 22:38:43','2015-10-11 16:46:34',1,30005075,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(3055,'2015-03-10 22:38:43','2015-10-11 16:46:34',1,30005002,0,0,0,0,0,0,0,0,0,0,0,0,0,0,3,0,0,0,0,0,0,0,0,0),(3056,'2015-03-10 22:38:43','2015-03-10 22:38:43',1,30004159,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(3057,'2015-03-10 22:38:43','2015-10-11 16:46:34',1,30003592,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(3058,'2015-03-10 22:38:43','2015-03-10 22:38:43',1,30001917,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(3059,'2015-03-10 22:38:43','2015-03-10 22:38:43',1,30002161,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(3060,'2015-03-10 22:38:43','2015-10-11 16:46:34',1,30000683,0,0,2,0,2,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(3061,'2015-03-10 22:38:43','2015-10-11 16:46:34',1,30004663,0,0,0,0,0,0,0,0,0,0,1,1,2,1,0,0,0,0,0,0,0,0,0,0),(3062,'2015-03-10 22:38:43','2015-03-10 22:38:43',1,30004541,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(3063,'2015-03-10 22:38:43','2015-03-10 22:38:43',1,30001923,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(3064,'2015-03-10 22:38:43','2015-03-10 22:38:43',1,30001605,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(3065,'2015-03-10 22:38:43','2015-03-10 22:38:43',1,30004700,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(3066,'2015-03-10 22:38:43','2015-03-10 22:38:43',1,30002849,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(3067,'2015-03-10 22:38:43','2015-10-11 16:46:34',1,30002932,0,0,1,0,0,0,0,0,0,0,1,1,0,0,0,0,0,0,0,0,0,0,0,0),(3068,'2015-03-10 22:38:43','2015-10-11 16:46:34',1,30005259,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(3069,'2015-03-10 22:38:43','2015-10-11 16:46:34',1,30002865,0,0,0,1,0,0,1,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,2,0),(3070,'2015-03-10 22:38:43','2015-10-11 16:46:34',1,30005233,0,0,0,0,0,0,1,0,0,1,1,1,0,1,0,0,0,1,1,1,0,1,0,0),(3071,'2015-03-10 22:38:43','2015-10-11 16:46:34',1,30003039,2,0,3,0,0,0,3,0,0,0,0,0,0,0,0,0,0,0,0,1,0,1,0,0),(3072,'2015-03-10 22:38:43','2015-10-11 16:46:34',1,30002728,1,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(3073,'2015-03-10 22:38:43','2015-10-11 16:46:34',1,30003409,0,0,0,0,0,0,1,0,1,0,1,1,0,0,0,0,0,1,0,0,1,0,0,1),(3074,'2015-03-10 22:38:43','2015-10-11 16:46:34',1,30005039,1,0,0,0,0,0,0,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1),(3075,'2015-03-10 22:38:43','2015-10-11 16:46:34',1,30003759,1,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,1,0,0,0,1,0,17,0),(3076,'2015-03-10 22:38:43','2015-10-11 16:46:34',1,30003172,1,0,0,0,0,0,0,0,8,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0),(3077,'2015-03-10 22:38:43','2015-03-10 22:38:43',1,30004689,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(3078,'2015-03-10 22:38:43','2015-03-10 22:38:43',1,30001460,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(3079,'2015-03-10 22:38:43','2015-10-11 16:46:34',1,30001833,1,0,0,0,0,0,0,0,0,1,2,2,0,0,5,4,0,2,3,2,1,0,1,0),(3080,'2015-03-10 22:38:43','2015-03-10 22:38:43',1,30001953,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(3081,'2015-03-10 22:38:43','2015-10-11 16:46:34',1,30004505,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,2,0,0,0,0,0,0,0),(3082,'2015-03-10 22:38:43','2015-03-10 22:38:43',1,30001507,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(3083,'2015-03-10 22:38:43','2015-03-10 22:38:43',1,30001587,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(3084,'2015-03-10 22:38:43','2015-10-11 16:46:34',1,30001069,0,0,1,0,0,0,0,0,0,0,0,0,0,3,0,0,0,0,0,0,0,0,0,0),(3085,'2015-03-10 22:38:43','2015-03-10 22:38:43',1,30002624,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(3086,'2015-03-10 22:38:43','2015-03-10 22:38:43',1,30001337,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(3087,'2015-03-10 22:38:43','2015-10-11 16:46:34',1,30003421,0,0,0,0,0,0,0,0,0,3,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(3088,'2015-03-10 22:38:43','2015-10-11 16:46:34',1,30000154,0,1,0,2,2,2,4,0,2,2,2,0,2,7,6,4,9,9,2,8,15,2,3,5),(3089,'2015-03-10 22:38:43','2015-10-11 16:46:34',1,30000020,0,2,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0),(3090,'2015-03-10 22:38:43','2015-10-11 16:46:34',1,30005087,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,1,1,0,0,0),(3091,'2015-03-10 22:38:43','2015-10-11 16:46:34',1,30003459,0,0,0,0,0,0,0,0,0,0,3,3,0,0,0,0,0,0,0,0,0,0,0,0),(3092,'2015-03-10 22:38:43','2015-10-11 16:46:34',1,30003025,0,0,45,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0),(3093,'2015-03-10 22:38:43','2015-10-11 16:46:34',1,30005007,1,0,1,1,0,0,0,0,0,1,0,0,0,3,0,0,5,7,1,2,1,1,1,10),(3094,'2015-03-10 22:38:43','2015-10-11 16:46:34',1,30002973,1,1,1,2,0,0,1,0,1,0,0,0,0,0,1,2,1,0,0,0,0,0,1,1),(3095,'2015-03-10 22:38:43','2015-10-11 16:46:34',1,30001400,9,3,5,1,1,0,5,5,2,2,1,6,2,1,0,0,4,1,0,6,2,2,1,2),(3096,'2015-03-10 22:38:43','2015-10-11 16:46:34',1,30001048,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,0,1,1,0,0,0),(3097,'2015-03-10 22:38:43','2015-10-11 16:46:34',1,30001416,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,0,1,0,0,1,0,0),(3098,'2015-03-10 22:38:43','2015-10-11 16:46:34',1,30004630,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,1),(3099,'2015-03-10 22:38:43','2015-03-10 22:38:43',1,30000647,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(3100,'2015-03-10 22:38:43','2015-03-10 22:38:43',1,30004641,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(3101,'2015-03-10 22:38:43','2015-10-11 16:46:34',1,30001038,0,0,0,0,0,0,0,0,0,2,0,0,1,39,2,1,0,0,0,0,2,0,0,0),(3102,'2015-03-10 22:38:43','2015-03-10 22:38:43',1,30002604,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(3103,'2015-03-10 22:38:43','2015-10-11 16:46:34',1,30002139,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,0,0,0),(3104,'2015-03-10 22:38:43','2015-03-10 22:38:43',1,30000599,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(3105,'2015-03-10 22:38:43','2015-03-10 22:38:43',1,30000615,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(3106,'2015-03-10 22:38:43','2015-10-11 16:46:34',1,30002114,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0),(3107,'2015-03-10 22:38:43','2015-10-11 16:46:34',1,30003973,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,2),(3108,'2015-03-10 22:38:43','2015-10-11 16:46:34',1,30001119,0,0,0,1,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(3109,'2015-03-10 22:38:43','2015-10-11 16:46:34',1,30005300,1,3,2,0,1,1,1,2,2,0,0,2,3,1,0,0,2,0,0,0,2,2,1,2),(3110,'2015-03-10 22:38:43','2015-10-11 16:46:34',1,30042547,3,0,0,0,1,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(3111,'2015-03-10 22:38:43','2015-10-11 16:46:34',1,30004897,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0),(3112,'2015-03-10 22:38:43','2015-10-11 16:46:34',1,30005193,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1),(3113,'2015-03-10 22:38:43','2015-10-11 16:46:34',1,30001687,0,0,0,0,1,1,2,0,0,0,1,0,1,0,0,1,1,0,0,0,4,1,0,0),(3114,'2015-03-10 22:38:43','2015-10-11 16:46:34',1,30003575,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0),(3115,'2015-03-10 22:38:43','2015-10-11 16:46:34',1,30002996,1,0,1,1,0,0,0,0,0,0,0,0,0,0,0,3,3,0,0,0,0,0,0,0),(3116,'2015-03-10 22:38:43','2015-10-11 16:46:34',1,30000533,0,0,0,0,1,0,0,0,0,0,0,0,0,1,0,0,0,0,16,1,0,0,0,0),(3117,'2015-03-10 22:38:43','2015-03-10 22:38:43',1,30000384,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(3118,'2015-03-10 22:38:43','2015-03-10 22:38:43',1,30002294,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(3119,'2015-03-10 22:38:43','2015-10-11 16:46:34',1,30000649,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0),(3120,'2015-03-10 22:38:43','2015-03-10 22:38:43',1,30004896,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(3121,'2015-03-10 22:38:43','2015-10-11 16:46:34',1,30000704,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,1,1,0,0,0),(3122,'2015-03-10 22:38:43','2015-03-10 22:38:43',1,30001601,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(3123,'2015-03-10 22:38:43','2015-03-10 22:38:43',1,30000397,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(3124,'2015-03-10 22:38:43','2015-03-10 22:38:43',1,30003204,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(3125,'2015-03-10 22:38:43','2015-10-11 16:46:34',1,30002493,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0),(3126,'2015-03-10 22:38:43','2015-03-10 22:38:43',1,30004353,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(3127,'2015-03-10 22:38:43','2015-10-11 16:46:34',1,30000319,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0),(3128,'2015-03-10 22:38:43','2015-10-11 16:46:34',1,30004885,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,2,0,0,0),(3129,'2015-03-10 22:38:43','2015-03-10 22:38:43',1,30004021,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(3130,'2015-03-10 22:38:43','2015-03-10 22:38:43',1,30002830,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(3131,'2015-03-10 22:38:43','2015-10-11 16:46:34',1,30000300,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,1,1),(3132,'2015-03-10 22:38:43','2015-10-11 16:46:34',1,30003334,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(3133,'2015-03-10 22:38:43','2015-10-11 16:46:34',1,30002928,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0),(3134,'2015-03-10 22:38:43','2015-10-11 16:46:34',1,30000466,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(3135,'2015-03-10 22:38:43','2015-03-10 22:38:43',1,30001804,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(3136,'2015-03-10 22:38:43','2015-03-10 22:38:43',1,30002462,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(3137,'2015-03-10 22:38:43','2015-03-10 22:38:43',1,30004747,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(3138,'2015-03-10 22:38:43','2015-03-10 22:38:43',1,30004680,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(3139,'2015-03-10 22:38:43','2015-10-11 16:46:34',1,30002516,0,1,0,0,0,0,0,0,1,11,3,1,0,0,0,0,2,4,1,0,0,0,1,3),(3140,'2015-03-10 22:38:43','2015-10-11 16:46:34',1,30003432,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0),(3141,'2015-03-10 22:38:43','2015-10-11 16:46:34',1,30004967,0,0,1,0,1,1,0,2,0,0,0,0,1,5,2,1,1,2,0,2,0,7,0,0),(3142,'2015-03-10 22:38:43','2015-10-11 16:46:34',1,30002261,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(3143,'2015-03-10 22:38:43','2015-10-11 16:46:34',1,30005316,0,1,2,0,0,0,0,0,0,0,2,1,0,1,0,0,0,1,1,0,0,0,0,1),(3144,'2015-03-10 22:38:43','2015-10-11 16:46:34',1,30002545,0,1,0,0,0,0,0,0,0,1,0,0,2,0,3,4,2,0,0,0,0,0,0,1),(3145,'2015-03-10 22:38:43','2015-10-11 16:46:34',1,30000813,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(3146,'2015-03-10 22:38:43','2015-03-10 22:38:43',1,30005106,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(3147,'2015-03-10 22:38:43','2015-10-11 16:46:34',1,30004800,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,1,2),(3148,'2015-03-10 22:38:43','2015-10-11 16:46:34',1,30002458,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(3149,'2015-03-10 22:38:43','2015-10-11 16:46:34',1,30004705,0,1,0,0,0,0,1,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1),(3150,'2015-03-10 22:38:43','2015-10-11 16:46:34',1,30002355,0,1,0,1,0,0,0,0,0,2,5,3,3,30,3,1,4,2,0,0,1,2,1,1),(3151,'2015-03-10 22:38:43','2015-10-11 16:46:34',1,30000971,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(3152,'2015-03-10 22:38:43','2015-10-11 16:46:34',1,30004364,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0),(3153,'2015-03-10 22:38:43','2015-10-11 16:46:34',1,30001078,1,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0),(3154,'2015-03-10 22:38:43','2015-10-11 16:46:34',1,30000208,2,2,1,0,0,0,2,0,0,0,3,1,0,0,0,0,0,0,0,11,0,0,0,0),(3155,'2015-03-10 22:38:43','2015-10-11 16:46:34',1,30004823,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0),(3156,'2015-03-10 22:38:43','2015-03-10 22:38:43',1,30002869,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(3157,'2015-03-10 22:38:43','2015-10-11 16:46:34',1,30001995,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0),(3158,'2015-03-10 22:38:43','2015-03-10 22:38:43',1,30002601,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(3159,'2015-03-10 22:38:43','2015-03-10 22:38:43',1,30004449,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(3160,'2015-03-10 22:38:43','2015-03-10 22:38:43',1,30000620,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(3161,'2015-03-10 22:38:43','2015-03-10 22:38:43',1,30000922,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(3162,'2015-03-10 22:38:43','2015-03-10 22:38:43',1,30001479,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(3163,'2015-03-10 22:38:43','2015-03-10 22:38:43',1,30004356,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(3164,'2015-03-10 22:38:43','2015-10-11 16:46:34',1,30004633,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(3165,'2015-03-10 22:38:43','2015-10-11 16:46:34',1,30000591,0,0,1,0,0,0,0,0,0,0,0,0,0,1,5,2,0,0,0,0,0,0,0,0),(3166,'2015-03-10 22:38:43','2015-10-11 16:46:34',1,30000639,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(3167,'2015-03-10 22:38:43','2015-10-11 16:46:34',1,30002428,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0),(3168,'2015-03-10 22:38:43','2015-10-11 16:46:34',1,30000905,1,0,2,0,0,0,0,0,2,1,0,1,0,1,0,1,1,0,1,1,1,0,0,0),(3169,'2015-03-10 22:38:43','2015-10-11 16:46:34',1,30001032,0,0,1,2,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,2,0,0,0),(3170,'2015-03-10 22:38:43','2015-03-10 22:38:43',1,30004511,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(3171,'2015-03-10 22:38:43','2015-10-11 16:46:34',1,30001597,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0),(3172,'2015-03-10 22:38:43','2015-03-10 22:38:43',1,30003200,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(3173,'2015-03-10 22:38:43','2015-10-11 16:46:34',1,30000848,1,3,4,3,4,3,3,4,2,4,2,14,3,2,0,0,1,0,0,1,13,3,2,1),(3174,'2015-03-10 22:38:43','2015-10-11 16:46:34',1,30004478,0,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(3175,'2015-03-10 22:38:43','2015-10-11 16:46:34',1,30004881,3,1,0,3,0,0,0,0,0,0,0,1,0,0,0,0,0,0,1,0,0,0,1,4),(3176,'2015-03-10 22:38:43','2015-03-10 22:38:43',1,30005140,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(3177,'2015-03-10 22:38:43','2015-10-11 16:46:34',1,30004795,1,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(3178,'2015-03-10 22:38:43','2015-03-10 22:38:43',1,30003665,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(3179,'2015-03-10 22:38:43','2015-03-10 22:38:43',1,30002377,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(3180,'2015-03-10 22:38:43','2015-03-10 22:38:43',1,30004213,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(3181,'2015-03-10 22:38:43','2015-10-11 16:46:34',1,30002603,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0),(3182,'2015-03-10 22:38:43','2015-03-10 22:38:43',1,30000471,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(3183,'2015-03-10 22:38:43','2015-03-10 22:38:43',1,30002000,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(3184,'2015-03-10 22:38:43','2015-03-10 22:38:43',1,30000953,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(3185,'2015-03-10 22:38:43','2015-03-10 22:38:43',1,30002181,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(3186,'2015-03-10 22:38:43','2015-03-10 22:38:43',1,30004802,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(3187,'2015-03-10 22:38:43','2015-03-10 22:38:43',1,30001747,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(3188,'2015-03-10 22:38:43','2015-03-10 22:38:43',1,30004010,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(3189,'2015-03-10 22:38:43','2015-03-10 22:38:43',1,30001332,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(3190,'2015-03-10 22:38:43','2015-10-11 16:46:34',1,30003284,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,2,1,0,0,0,0,0,1,0),(3191,'2015-03-10 22:38:43','2015-03-10 22:38:43',1,30004773,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(3192,'2015-03-10 22:38:43','2015-10-11 16:46:34',1,30004461,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,2,1,0,0),(3193,'2015-03-10 22:38:43','2015-03-10 22:38:43',1,30002852,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(3194,'2015-03-10 22:38:43','2015-03-10 22:38:43',1,30000556,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(3195,'2015-03-10 22:38:43','2015-03-10 22:38:43',1,30000761,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(3196,'2015-03-10 22:38:43','2015-03-10 22:38:43',1,30005153,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(3197,'2015-03-10 22:38:43','2015-10-11 16:46:34',1,30001754,0,0,0,1,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0),(3198,'2015-03-10 22:38:43','2015-10-11 16:46:34',1,30004739,0,0,0,0,0,0,0,1,0,9,1,1,0,7,0,0,2,1,0,0,9,1,0,0),(3199,'2015-03-10 22:38:43','2015-03-10 22:38:43',1,30000633,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(3200,'2015-03-10 22:38:43','2015-10-11 16:46:34',1,30005134,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1),(3201,'2015-03-10 22:38:43','2015-03-10 22:38:43',1,30004901,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(3202,'2015-03-10 22:38:43','2015-03-10 22:38:43',1,30002374,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(3203,'2015-03-10 22:38:43','2015-10-11 16:46:34',1,30000681,0,0,67,0,0,0,0,0,0,0,0,0,0,28,0,0,0,0,0,0,1,0,0,0),(3204,'2015-03-10 22:38:43','2015-03-10 22:38:43',1,30001625,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(3205,'2015-03-10 22:38:43','2015-10-11 16:46:34',1,30000998,0,0,2,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,4,2,0,0),(3206,'2015-03-10 22:38:43','2015-03-10 22:38:43',1,30004369,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(3207,'2015-03-10 22:38:43','2015-10-11 16:46:34',1,30000272,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0),(3208,'2015-03-10 22:38:43','2015-03-10 22:38:43',1,30004234,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(3209,'2015-03-10 22:38:43','2015-10-11 16:46:34',1,30002190,0,0,1,0,0,0,0,0,0,1,0,0,0,0,0,0,0,1,0,0,0,0,0,0),(3210,'2015-03-10 22:38:43','2015-10-11 16:46:34',1,30003558,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(3211,'2015-03-10 22:38:43','2015-10-11 16:46:34',1,30003503,19,16,17,2,14,13,0,6,36,9,0,0,0,11,9,9,13,4,2,1,4,3,1,0),(3212,'2015-03-10 22:38:43','2015-10-11 16:46:34',1,30005243,1,0,0,0,0,0,0,1,1,0,0,0,0,0,0,1,1,0,0,0,0,2,0,1),(3213,'2015-03-10 22:38:43','2015-10-11 16:46:34',1,30005064,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(3214,'2015-03-10 22:38:43','2015-10-11 16:46:34',1,30002570,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,1,0),(3215,'2015-03-10 22:38:43','2015-10-11 16:46:34',1,30000096,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,3,0),(3216,'2015-03-10 22:38:43','2015-03-10 22:38:43',1,30003520,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(3217,'2015-03-10 22:38:43','2015-10-11 16:46:34',1,30000104,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1),(3218,'2015-03-10 22:38:43','2015-10-11 16:46:34',1,30000122,0,0,0,0,0,0,0,0,0,1,0,0,0,1,0,0,0,0,0,0,0,0,0,0),(3219,'2015-03-10 22:38:43','2015-10-11 16:46:34',1,30003499,1,2,0,0,0,0,0,0,0,0,0,0,0,2,0,0,0,0,1,1,1,0,0,0),(3220,'2015-03-10 22:38:43','2015-03-10 22:38:43',1,30003546,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(3221,'2015-03-10 22:38:43','2015-10-11 16:46:34',1,30000162,2,0,2,0,2,2,2,0,0,0,0,0,0,1,0,0,0,3,0,0,1,0,1,0),(3222,'2015-03-10 22:38:43','2015-10-11 16:46:34',1,30003576,0,0,0,0,0,0,0,0,0,0,0,0,0,0,5,0,0,0,0,0,0,0,0,0),(3223,'2015-03-10 22:38:43','2015-10-11 16:46:34',1,30000047,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0),(3224,'2015-03-10 22:38:43','2015-10-11 16:46:34',1,30005210,0,0,0,2,0,0,0,1,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,1),(3225,'2015-03-10 22:38:43','2015-10-11 16:46:34',1,30001393,0,0,0,2,2,1,0,1,0,0,0,0,1,0,1,1,1,0,0,1,0,0,1,1),(3226,'2015-03-10 22:38:43','2015-03-10 22:38:43',1,30005235,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(3227,'2015-03-10 22:38:43','2015-10-11 16:46:34',1,30003084,0,0,0,0,0,0,0,0,0,0,0,0,5,0,0,0,0,0,0,0,0,0,0,0),(3228,'2015-03-10 22:38:43','2015-10-11 16:46:34',1,30012505,5,2,3,6,4,8,6,1,8,3,5,2,1,8,9,8,5,1,7,1,10,2,10,5),(3229,'2015-03-10 22:38:43','2015-10-11 16:46:34',1,30002242,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0),(3230,'2015-03-10 22:38:43','2015-10-11 16:46:34',1,30003559,0,0,1,0,0,0,0,0,1,1,1,1,0,0,3,2,1,0,0,0,0,0,0,2),(3231,'2015-03-10 22:38:43','2015-10-11 16:46:34',1,30005201,0,0,0,0,1,0,0,0,0,0,0,2,2,0,0,0,0,0,0,1,1,0,0,1),(3232,'2015-03-10 22:38:43','2015-10-11 16:46:34',1,30005230,0,1,0,1,0,0,0,1,0,0,0,0,0,0,0,0,0,2,0,0,0,1,0,0),(3233,'2015-03-10 22:38:43','2015-10-11 16:46:34',1,30004112,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,2,0,2,0,1,0,0),(3234,'2015-03-10 22:38:43','2015-10-11 16:46:34',1,30001658,1,2,0,0,0,0,0,0,0,0,2,3,1,0,0,0,0,0,1,0,1,0,0,0),(3235,'2015-03-10 22:38:43','2015-10-11 16:46:34',1,30002760,1,0,0,4,3,1,0,1,0,1,0,0,1,1,1,1,0,5,1,2,1,0,1,0),(3236,'2015-03-10 22:38:43','2015-10-11 16:46:34',1,30003060,0,0,1,0,0,0,1,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0),(3237,'2015-03-10 22:38:43','2015-10-11 16:46:34',1,30003855,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,6,0),(3238,'2015-03-10 22:38:43','2015-10-11 16:46:34',1,30001388,0,4,2,2,0,1,2,0,1,1,1,1,1,0,2,4,4,3,2,2,4,2,2,1),(3239,'2015-03-10 22:38:43','2015-10-11 16:46:34',1,30004247,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(3240,'2015-03-10 22:38:43','2015-10-11 16:46:34',1,30003024,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,1,0,0,0,1),(3241,'2015-03-10 22:38:43','2015-10-11 16:46:34',1,30002194,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,2,0,0,1,0,0,0),(3242,'2015-03-10 22:38:43','2015-10-11 16:46:34',1,30001722,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(3243,'2015-03-10 22:38:43','2015-10-11 16:46:34',1,30045318,5,22,5,4,1,1,2,5,4,9,8,3,4,4,2,0,1,4,2,13,3,4,5,9),(3244,'2015-03-10 22:38:43','2015-10-11 16:46:34',1,30005325,0,1,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(3245,'2015-03-10 22:38:43','2015-10-11 16:46:34',1,30005041,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0),(3246,'2015-03-10 22:38:43','2015-10-11 16:46:34',1,30004235,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0),(3247,'2015-03-10 22:38:43','2015-10-11 16:46:34',1,30003868,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0),(3248,'2015-03-10 22:38:43','2015-10-11 16:46:34',1,30000052,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,2,0),(3249,'2015-03-10 22:38:43','2015-03-10 22:38:43',1,30000202,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(3250,'2015-03-10 22:38:43','2015-10-11 16:46:34',1,30003444,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,6,0),(3251,'2015-03-10 22:38:43','2015-10-11 16:46:34',1,30003034,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,2,1,0,0,0,0,0,0,0),(3252,'2015-03-10 22:38:43','2015-10-11 16:46:34',1,30003396,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1),(3253,'2015-03-10 22:38:43','2015-10-11 16:46:34',1,30001654,10,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0),(3254,'2015-03-10 22:38:43','2015-10-11 16:46:34',1,30000140,0,0,0,0,0,1,0,1,0,1,0,0,1,2,4,6,2,2,0,3,0,1,0,1),(3255,'2015-03-10 22:38:43','2015-10-11 16:46:34',1,30003835,0,1,4,0,6,2,0,0,1,2,0,0,0,0,4,3,1,3,1,0,1,1,1,0),(3256,'2015-03-10 22:38:43','2015-10-11 16:46:34',1,30002213,0,0,0,0,0,0,0,0,0,0,0,0,0,20,0,0,0,0,0,0,3,0,0,0),(3257,'2015-03-10 22:38:43','2015-10-11 16:46:34',1,30001182,0,0,0,0,0,0,0,0,0,1,2,1,0,0,0,0,0,0,0,0,2,1,0,0),(3258,'2015-03-10 22:38:43','2015-10-11 16:46:34',1,30001832,0,0,1,1,0,0,0,0,0,0,1,0,0,1,9,1,0,0,0,0,0,0,0,0),(3259,'2015-03-10 22:38:43','2015-03-10 22:38:43',1,30001818,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(3260,'2015-03-10 22:38:43','2015-03-10 22:38:43',1,30001316,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(3261,'2015-03-10 22:38:43','2015-10-11 16:46:34',1,30000209,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0),(3262,'2015-03-10 22:38:43','2015-03-10 22:38:43',1,30000443,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(3263,'2015-03-10 22:38:43','2015-03-10 22:38:43',1,30001027,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(3264,'2015-03-10 22:38:43','2015-03-10 22:38:43',1,30004398,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(3265,'2015-03-10 22:38:43','2015-10-11 16:46:34',1,30002974,0,1,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0),(3266,'2015-03-10 22:38:43','2015-03-10 22:38:43',1,30002401,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(3267,'2015-03-10 22:38:43','2015-03-10 22:38:43',1,30003403,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(3268,'2015-03-10 22:38:43','2015-10-11 16:46:34',1,30002525,0,3,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,1,0,3),(3269,'2015-03-10 22:38:43','2015-10-11 16:46:34',1,30005296,2,2,1,3,1,0,2,1,0,1,2,2,2,8,0,0,1,3,0,2,0,2,3,1),(3270,'2015-03-10 22:38:43','2015-10-11 16:46:34',1,30005238,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,0,0,0,0,0,0,0),(3271,'2015-03-10 22:38:43','2015-10-11 16:46:34',1,30002986,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0),(3272,'2015-03-10 22:38:43','2015-10-11 16:46:34',1,30004121,1,0,1,0,0,0,0,0,0,3,0,0,0,0,0,0,0,0,0,0,1,0,1,0),(3273,'2015-03-10 22:38:43','2015-10-11 16:46:34',1,30003853,0,0,0,1,0,0,0,3,0,0,0,0,0,0,0,1,1,0,2,0,0,1,0,1),(3274,'2015-03-10 22:38:43','2015-10-11 16:46:34',1,30005303,0,0,0,0,0,0,1,0,1,0,1,0,0,0,0,0,0,0,0,0,0,0,0,1),(3275,'2015-03-10 22:38:43','2015-10-11 16:46:34',1,30003538,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0),(3276,'2015-03-10 22:38:43','2015-10-11 16:46:34',1,30044971,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,1,0,0,0),(3277,'2015-03-10 22:38:43','2015-10-11 16:46:34',1,30000164,2,1,6,7,0,0,0,0,1,0,1,1,0,5,2,1,0,0,8,2,1,0,0,0),(3278,'2015-03-10 22:38:43','2015-10-11 16:46:34',1,30004975,1,0,1,0,0,0,0,0,0,0,1,0,0,3,2,1,0,0,0,0,0,0,0,0),(3279,'2015-03-10 22:38:43','2015-10-11 16:46:34',1,30002637,0,0,2,0,0,0,0,0,0,0,1,0,0,0,0,0,1,0,0,0,0,0,0,0),(3280,'2015-03-10 22:38:43','2015-10-11 16:46:34',1,30003568,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0),(3281,'2015-03-10 22:38:43','2015-10-11 16:46:34',1,30003032,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0),(3282,'2015-03-10 22:38:43','2015-03-10 22:38:43',1,30002299,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(3283,'2015-03-10 22:38:43','2015-10-11 16:46:34',1,30004934,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,0,0),(3284,'2015-03-10 22:38:43','2015-10-11 16:46:34',1,30000321,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0),(3285,'2015-03-10 22:38:43','2015-10-11 16:46:34',1,30003712,0,0,0,0,0,0,0,0,0,0,0,0,0,3,0,0,0,1,0,2,1,0,0,1),(3286,'2015-03-10 22:38:43','2015-10-11 16:46:34',1,30003268,0,4,1,0,1,2,0,3,7,0,3,0,1,1,1,0,0,4,6,1,12,4,6,1),(3287,'2015-03-10 22:38:43','2015-03-10 22:38:43',1,30001988,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(3288,'2015-03-10 22:38:43','2015-10-11 16:46:34',1,30004113,0,0,0,0,0,0,0,18,0,1,0,0,0,0,0,0,0,0,0,0,0,0,2,0),(3289,'2015-03-10 22:38:43','2015-10-11 16:46:34',1,30003539,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0),(3290,'2015-03-10 22:38:43','2015-10-11 16:46:34',1,30004968,3,0,0,2,0,1,1,1,1,1,0,0,1,2,5,5,4,1,0,0,0,0,3,0),(3291,'2015-03-10 22:38:43','2015-10-11 16:46:34',1,30000046,0,0,0,0,0,0,0,0,0,0,0,0,0,2,5,6,3,1,0,0,0,4,0,2),(3292,'2015-03-10 22:38:43','2015-10-11 16:46:34',1,30002198,0,0,0,0,0,0,1,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,1,0),(3293,'2015-03-10 22:38:43','2015-10-11 16:46:34',1,30002236,0,0,0,0,2,3,0,0,0,0,0,0,1,0,0,0,0,0,1,0,0,1,0,0),(3294,'2015-03-10 22:38:43','2015-10-11 16:46:34',1,30003001,0,0,1,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0),(3295,'2015-03-10 22:38:43','2015-10-11 16:46:34',1,30000079,0,0,0,0,0,0,0,0,0,0,0,2,0,0,0,0,0,0,1,0,2,0,0,0),(3296,'2015-03-10 22:38:43','2015-10-11 16:46:34',1,30001676,0,0,0,1,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,3),(3297,'2015-03-10 22:38:43','2015-10-11 16:46:34',1,30001691,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0),(3298,'2015-03-10 22:38:43','2015-10-11 16:46:34',1,30002410,0,1,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,1,1,1,0,0),(3299,'2015-03-10 22:38:43','2015-10-11 16:46:34',1,30004153,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,0,0,0,0,0,0,0),(3300,'2015-03-10 22:38:43','2015-10-11 16:46:34',1,30002732,0,0,0,0,0,0,0,0,1,0,0,0,0,1,1,0,0,1,0,7,0,0,0,1),(3301,'2015-03-10 22:38:43','2015-10-11 16:46:34',1,30002719,2,0,3,0,0,1,2,4,0,0,0,0,0,0,0,0,0,0,0,0,0,2,0,0),(3302,'2015-03-10 22:38:43','2015-10-11 16:46:34',1,30005084,0,0,0,0,0,0,0,0,0,0,1,0,0,0,1,0,0,0,0,0,0,0,0,0),(3303,'2015-03-10 22:38:43','2015-10-11 16:46:34',1,30003563,0,1,0,0,1,2,0,0,0,0,1,2,1,0,2,1,1,0,0,0,0,0,1,5),(3304,'2015-03-10 22:38:43','2015-10-11 16:46:34',1,30005059,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0),(3305,'2015-03-10 22:38:43','2015-10-11 16:46:34',1,30004251,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(3306,'2015-03-10 22:38:43','2015-10-11 16:46:34',1,30002665,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,1,0,0,7,2,0,0,0),(3307,'2015-03-10 22:38:43','2015-10-11 16:46:34',1,30003482,0,0,0,0,0,0,0,0,0,0,0,1,0,0,1,1,0,0,0,0,0,0,1,0),(3308,'2015-03-10 22:38:43','2015-10-11 16:46:34',1,30000120,0,0,1,1,4,0,0,0,0,2,0,0,0,0,0,0,4,3,1,0,0,0,2,6),(3309,'2015-03-10 22:38:43','2015-10-11 16:46:34',1,30002255,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(3310,'2015-03-10 22:38:43','2015-03-10 22:38:43',1,30005133,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(3311,'2015-03-10 22:38:43','2015-10-11 16:46:34',1,30000803,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0),(3312,'2015-03-10 22:38:43','2015-03-10 22:38:43',1,30004899,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(3313,'2015-03-10 22:38:43','2015-10-11 16:46:34',1,30000851,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,2,0,0,0,0,0,0),(3314,'2015-03-10 22:38:43','2015-10-11 16:46:34',1,30004743,0,0,0,0,0,0,2,0,0,0,0,0,3,3,4,4,0,0,0,0,0,0,0,0),(3315,'2015-03-10 22:38:43','2015-10-11 16:46:34',1,30004064,0,1,0,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(3316,'2015-03-10 22:38:43','2015-10-11 16:46:34',1,30004183,0,0,0,0,0,0,1,0,0,0,0,0,0,2,0,0,0,0,0,0,0,0,1,0),(3317,'2015-03-10 22:38:43','2015-03-10 22:38:43',1,30003962,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(3318,'2015-03-10 22:38:43','2015-03-10 22:38:43',1,30000529,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(3319,'2015-03-10 22:38:43','2015-03-10 22:38:43',1,30000539,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(3320,'2015-03-10 22:38:43','2015-10-11 16:46:34',1,30001913,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0),(3321,'2015-03-10 22:38:43','2015-03-10 22:38:43',1,30004913,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(3322,'2015-03-10 22:38:43','2015-10-11 16:46:34',1,30000580,0,0,0,0,0,0,0,0,0,1,0,0,0,1,0,0,0,5,0,0,2,0,1,2),(3323,'2015-03-10 22:38:43','2015-10-11 16:46:34',1,30004618,0,1,4,1,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(3324,'2015-03-10 22:38:43','2015-03-10 22:38:43',1,30002840,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(3325,'2015-03-10 22:38:43','2015-03-10 22:38:43',1,30000270,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(3326,'2015-03-10 22:38:43','2015-03-10 22:38:43',1,30004765,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(3327,'2015-03-10 22:38:43','2015-10-11 16:46:34',1,30002359,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0),(3328,'2015-03-10 22:38:43','2015-10-11 16:46:34',1,30004223,1,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0),(3329,'2015-03-10 22:38:43','2015-10-11 16:46:34',1,30003828,0,1,0,0,1,1,0,0,0,2,0,0,0,7,0,1,1,1,1,2,46,1,2,0),(3330,'2015-03-10 22:38:43','2015-10-11 16:46:34',1,30000801,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0),(3331,'2015-03-10 22:38:43','2015-03-10 22:38:43',1,30004136,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(3332,'2015-03-10 22:38:43','2015-10-11 16:46:34',1,30001720,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(3333,'2015-03-10 22:38:43','2015-03-10 22:38:43',1,30000042,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(3334,'2015-03-10 22:38:43','2015-10-11 16:46:34',1,30000031,0,0,0,0,0,0,1,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,1,0),(3335,'2015-03-10 22:38:43','2015-03-10 22:38:43',1,30003876,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(3336,'2015-03-10 22:38:43','2015-03-10 22:38:43',1,30003814,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(3337,'2015-03-10 22:38:43','2015-10-11 16:46:34',1,30003881,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,0,0),(3338,'2015-03-10 22:38:43','2015-10-11 16:46:34',1,30005037,2,0,0,0,0,0,0,0,0,1,1,2,0,1,1,0,0,0,0,0,0,0,1,0),(3339,'2015-03-10 22:38:43','2015-10-11 16:46:34',1,30003061,0,0,1,0,0,0,0,0,0,0,0,1,0,0,0,2,2,0,0,0,0,1,0,0),(3340,'2015-03-10 22:38:43','2015-10-11 16:46:34',1,30003011,0,0,0,0,0,0,0,0,0,1,1,1,0,0,0,0,0,0,0,0,0,0,0,0),(3341,'2015-03-10 22:38:43','2015-10-11 16:46:34',1,30003893,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,1,0,0,0,0,0,0,0),(3342,'2015-03-10 22:38:43','2015-03-10 22:38:43',1,30001554,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(3343,'2015-03-10 22:38:43','2015-03-10 22:38:43',1,30003443,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(3344,'2015-03-10 22:38:43','2015-10-11 16:46:34',1,30003021,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2),(3345,'2015-03-10 22:38:43','2015-10-11 16:46:34',1,30002819,0,0,0,0,1,1,0,0,0,0,0,0,0,1,1,0,0,0,0,0,0,0,0,1),(3346,'2015-03-10 22:38:43','2015-03-10 22:38:43',1,30002257,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(3347,'2015-03-10 22:38:43','2015-10-11 16:46:34',1,30001715,0,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1),(3348,'2015-03-10 22:38:43','2015-10-11 16:46:34',1,30005263,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0),(3349,'2015-03-10 22:38:43','2015-03-10 22:38:43',1,30004702,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(3350,'2015-03-10 22:38:43','2015-10-11 16:46:34',1,30003699,0,0,0,2,1,1,0,1,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0),(3351,'2015-03-10 22:38:43','2015-10-11 16:46:34',1,30002035,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(3352,'2015-03-10 22:38:43','2015-10-11 16:46:34',1,30000280,0,0,0,0,1,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(3353,'2015-03-10 22:38:43','2015-10-11 16:46:34',1,30001278,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(3354,'2015-03-10 22:38:43','2015-10-11 16:46:34',1,30002421,5,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,4,0,0),(3355,'2015-03-10 22:38:43','2015-03-10 22:38:43',1,30005155,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(3356,'2015-03-10 22:38:43','2015-03-10 22:38:43',1,30004861,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(3357,'2015-03-10 22:38:43','2015-10-11 16:46:34',1,30003153,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0),(3358,'2015-03-10 22:38:43','2015-03-10 22:38:43',1,30000774,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(3359,'2015-03-10 22:38:43','2015-10-11 16:46:34',1,30000864,1,0,0,0,0,0,1,0,2,1,3,3,0,0,0,0,0,1,2,0,0,0,0,0),(3360,'2015-03-10 22:38:43','2015-10-11 16:46:34',1,30004464,0,0,0,0,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(3361,'2015-03-10 22:38:43','2015-03-10 22:38:43',1,30004519,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(3362,'2015-03-10 22:38:43','2015-03-10 22:38:43',1,30002028,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(3363,'2015-03-10 22:38:43','2015-03-10 22:38:43',1,30003197,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(3364,'2015-03-10 22:38:43','2015-10-11 16:46:34',1,30005189,0,0,0,0,0,0,26,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0),(3365,'2015-03-10 22:38:43','2015-03-10 22:38:43',1,30003056,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(3366,'2015-03-10 22:38:43','2015-10-11 16:46:34',1,30005299,0,2,3,0,3,2,1,1,0,1,1,0,0,0,1,0,0,0,0,1,0,0,2,0),(3367,'2015-03-10 22:38:43','2015-03-10 22:38:43',1,30004129,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(3368,'2015-03-10 22:38:43','2015-10-11 16:46:34',1,30002206,0,0,0,0,0,0,0,0,0,0,0,0,0,0,5,0,0,0,0,0,0,0,0,0),(3369,'2015-03-10 22:38:43','2015-10-11 16:46:34',1,30005295,4,0,4,1,1,1,0,2,5,0,0,0,0,0,2,5,4,2,0,0,1,0,2,3),(3370,'2015-03-10 22:38:43','2015-10-11 16:46:34',1,30004092,0,0,0,0,0,0,0,0,0,1,0,0,0,1,0,0,0,0,0,0,0,0,0,0),(3371,'2015-03-10 22:38:43','2015-10-11 16:46:34',1,30003526,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1),(3372,'2015-03-10 22:38:43','2015-10-11 16:46:34',1,30045334,5,0,1,1,2,4,3,0,4,3,2,1,3,0,4,8,6,2,0,0,3,3,11,1),(3373,'2015-03-10 22:38:43','2015-10-11 16:46:34',1,30002394,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(3374,'2015-03-10 22:38:43','2015-10-11 16:46:34',1,30002780,0,0,0,1,1,1,0,0,0,0,1,1,0,0,0,0,0,0,0,4,1,2,0,1),(3375,'2015-03-10 22:38:43','2015-10-11 16:46:34',1,30001213,0,0,0,0,0,0,0,0,0,9,5,4,0,0,0,7,9,0,0,2,0,1,0,0),(3376,'2015-03-10 22:38:43','2015-10-11 16:46:34',1,30003755,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0),(3377,'2015-03-10 22:38:43','2015-10-11 16:46:34',1,30004966,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,0,1),(3378,'2015-03-10 22:38:43','2015-10-11 16:46:34',1,30000546,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(3379,'2015-03-10 22:38:43','2015-10-11 16:46:34',1,30002913,0,0,0,0,0,1,1,0,0,0,0,0,0,0,0,0,0,0,4,0,0,0,0,0),(3380,'2015-03-10 22:38:43','2015-03-10 22:38:43',1,30003318,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(3381,'2015-03-10 22:38:43','2015-10-11 16:46:34',1,30000232,0,0,0,0,1,2,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(3382,'2015-03-10 22:38:43','2015-10-11 16:46:34',1,30001202,0,0,0,0,0,0,0,0,0,1,0,0,0,2,0,0,0,0,0,0,0,0,0,0),(3383,'2015-03-10 22:38:43','2015-10-11 16:46:34',1,30003022,0,0,1,3,0,0,0,1,0,1,0,0,0,0,0,0,0,1,2,1,0,0,2,2),(3384,'2015-03-10 22:38:43','2015-10-11 16:46:34',1,30003075,0,0,0,0,0,0,0,1,0,1,1,0,0,0,0,0,0,0,0,0,8,0,0,0),(3385,'2015-03-10 22:38:43','2015-10-11 16:46:34',1,30002940,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1),(3386,'2015-03-10 22:38:43','2015-03-10 22:38:43',1,30003185,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(3387,'2015-03-10 22:38:43','2015-03-10 22:38:43',1,30003659,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(3388,'2015-03-10 22:38:43','2015-03-10 22:38:43',1,30000405,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(3389,'2015-03-10 22:38:43','2015-03-10 22:38:43',1,30001309,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(3390,'2015-03-10 22:38:43','2015-03-10 22:38:43',1,30000236,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(3391,'2015-03-10 22:38:43','2015-03-10 22:38:43',1,30000915,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(3392,'2015-03-10 22:38:43','2015-03-10 22:38:43',1,30002612,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(3393,'2015-03-10 22:38:43','2015-10-11 16:46:34',1,30001209,0,0,0,0,1,0,0,0,2,0,1,1,0,0,2,2,0,0,0,1,2,0,0,1),(3394,'2015-03-10 22:38:43','2015-03-10 22:38:43',1,30004762,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(3395,'2015-03-10 22:38:43','2015-03-10 22:38:43',1,30000401,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(3396,'2015-03-10 22:38:43','2015-10-11 16:46:34',1,30002583,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,0,0),(3397,'2015-03-10 22:38:43','2015-10-11 16:46:34',1,30000904,0,0,0,3,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,1,0,0,0),(3398,'2015-03-10 22:38:43','2015-03-10 22:38:43',1,30000348,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(3399,'2015-03-10 22:38:43','2015-03-10 22:38:43',1,30000862,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(3400,'2015-03-10 22:38:43','2015-03-10 22:38:43',1,30001489,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(3401,'2015-03-10 22:38:43','2015-03-10 22:38:43',1,30001974,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(3402,'2015-03-10 22:38:43','2015-03-10 22:38:43',1,30001060,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(3403,'2015-03-10 22:38:43','2015-03-10 22:38:43',1,30002492,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(3404,'2015-03-10 22:38:43','2015-10-11 16:46:34',1,30000215,2,0,1,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(3405,'2015-03-10 22:38:43','2015-10-11 16:46:34',1,30001827,0,0,2,2,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(3406,'2015-03-10 22:38:43','2015-03-10 22:38:43',1,30002820,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(3407,'2015-03-10 22:38:43','2015-10-11 16:46:34',1,30004011,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(3408,'2015-03-10 22:38:43','2015-03-10 22:38:43',1,30000824,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(3409,'2015-03-10 22:38:43','2015-03-10 22:38:43',1,30001549,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(3410,'2015-03-10 22:38:43','2015-10-11 16:46:34',1,30001267,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0),(3411,'2015-03-10 22:38:43','2015-10-11 16:46:34',1,30000999,1,0,3,4,2,1,3,0,0,0,0,0,0,3,1,1,1,0,0,0,2,5,2,1),(3412,'2015-03-10 22:38:43','2015-10-11 16:46:34',1,30003763,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,2,1,1,0,0,0,0,0,0),(3413,'2015-03-10 22:38:43','2015-03-10 22:38:43',1,30002341,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(3414,'2015-03-10 22:38:43','2015-03-10 22:38:43',1,30002918,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(3415,'2015-03-10 22:38:43','2015-03-10 22:38:43',1,30001062,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(3416,'2015-03-10 22:38:43','2015-03-10 22:38:43',1,30002309,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(3417,'2015-03-10 22:38:43','2015-03-10 22:38:43',1,30001302,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(3418,'2015-03-10 22:38:43','2015-03-10 22:38:43',1,30004580,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(3419,'2015-03-10 22:38:43','2015-10-11 16:46:34',1,30002945,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(3420,'2015-03-10 22:38:43','2015-10-11 16:46:34',1,30000669,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,0,0,10),(3421,'2015-03-10 22:38:43','2015-10-11 16:46:34',1,30001277,0,0,0,2,0,0,0,0,0,0,0,0,0,3,1,2,1,1,0,0,3,0,0,1),(3422,'2015-03-10 22:38:43','2015-10-11 16:46:34',1,30001280,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,1,0,3,1),(3423,'2015-03-10 22:38:43','2015-10-11 16:46:34',1,30001126,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(3424,'2015-03-10 22:38:43','2015-10-11 16:46:34',1,30000811,0,0,0,0,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(3425,'2015-03-10 22:38:43','2015-03-10 22:38:43',1,30000841,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(3426,'2015-03-10 22:38:43','2015-10-11 16:46:34',1,30004783,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0),(3427,'2015-03-10 22:38:43','2015-10-11 16:46:34',1,30003767,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(3428,'2015-03-10 22:38:43','2015-03-10 22:38:43',1,30002258,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(3429,'2015-03-10 22:38:43','2015-10-11 16:46:34',1,30002995,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,3,3,0,0,0,0,0,0,0),(3430,'2015-03-10 22:38:43','2015-10-11 16:46:34',1,30001651,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,0,0),(3431,'2015-03-10 22:38:43','2015-10-11 16:46:34',1,30001702,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0),(3432,'2015-03-10 22:38:43','2015-10-11 16:46:34',1,30004300,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,0,0,0,0,0,0),(3433,'2015-03-10 22:38:43','2015-10-11 16:46:34',1,30002807,9,7,10,10,8,6,13,2,5,19,14,10,4,43,12,10,16,4,5,20,29,15,14,15),(3434,'2015-03-10 22:38:43','2015-10-11 16:46:34',1,30003475,0,0,0,0,0,0,0,2,1,1,0,0,1,2,2,1,2,0,0,0,0,2,1,0),(3435,'2015-03-10 22:38:43','2015-10-11 16:46:34',1,30005069,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,1,1,0,0,1,0),(3436,'2015-03-10 22:38:43','2015-10-11 16:46:34',1,30003922,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,1,1,0,0,0),(3437,'2015-03-10 22:38:43','2015-10-11 16:46:34',1,30005045,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,1),(3438,'2015-03-10 22:38:43','2015-10-11 16:46:34',1,30005242,0,0,1,0,1,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(3439,'2015-03-10 22:38:43','2015-10-11 16:46:34',1,30000072,0,0,0,2,2,3,0,0,0,0,0,0,0,0,0,0,0,2,0,1,2,2,1,0),(3440,'2015-03-10 22:38:43','2015-10-11 16:46:34',1,30002988,0,0,1,0,1,0,0,0,0,0,0,0,0,0,0,0,6,0,1,1,0,1,0,0),(3441,'2015-03-10 22:38:43','2015-03-10 22:38:43',1,30003936,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(3442,'2015-03-10 22:38:43','2015-10-11 16:46:34',1,30005043,1,0,0,0,0,0,0,0,1,0,1,0,0,0,0,5,7,0,0,0,0,1,0,0),(3443,'2015-03-10 22:38:43','2015-10-11 16:46:34',1,30003496,0,1,1,0,0,0,0,0,0,0,0,0,2,0,1,0,0,0,0,0,0,0,0,0),(3444,'2015-03-10 22:38:43','2015-10-11 16:46:34',1,30002068,2,0,3,0,5,2,1,0,1,0,0,1,0,0,0,1,2,0,0,1,0,2,4,1),(3445,'2015-03-10 22:38:43','2015-10-11 16:46:34',1,30004280,0,0,1,0,0,1,0,0,0,0,0,0,0,0,0,0,1,7,0,0,1,0,0,0),(3446,'2015-03-10 22:38:43','2015-03-10 22:38:43',1,30002262,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(3447,'2015-03-10 22:38:43','2015-10-11 16:46:34',1,30001445,0,13,0,3,8,7,7,0,6,3,1,2,1,1,3,3,1,0,0,0,2,3,2,1),(3448,'2015-03-10 22:38:43','2015-10-11 16:46:34',1,30003534,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(3449,'2015-03-10 22:38:43','2015-10-11 16:46:34',1,30003923,0,0,0,0,0,0,1,0,0,1,0,0,0,0,1,0,0,0,0,0,0,0,3,1),(3450,'2015-03-10 22:38:43','2015-10-11 16:46:34',1,30001413,0,0,0,0,0,0,0,0,0,0,0,0,0,2,0,0,0,0,0,0,0,0,0,0),(3451,'2015-03-10 22:38:43','2015-10-11 16:46:34',1,30001438,0,0,0,0,0,0,1,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,1,0),(3452,'2015-03-10 22:38:43','2015-10-11 16:46:34',1,30002202,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,1,0,0,1,0),(3453,'2015-03-10 22:38:43','2015-10-11 16:46:34',1,30005207,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,1,0,0,0,2,0),(3454,'2015-03-10 22:38:43','2015-10-11 16:46:34',1,30005054,0,0,0,0,0,0,0,0,0,0,7,0,0,0,0,1,1,1,0,0,0,1,1,0),(3455,'2015-03-10 22:38:43','2015-10-11 16:46:34',1,30001683,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(3456,'2015-03-10 22:38:43','2015-10-11 16:46:34',1,30005289,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0),(3457,'2015-03-10 22:38:43','2015-10-11 16:46:34',1,30002671,0,1,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0),(3458,'2015-03-10 22:38:43','2015-10-11 16:46:34',1,30000016,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0),(3459,'2015-03-10 22:38:43','2015-03-10 22:38:43',1,30000465,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(3460,'2015-03-10 22:38:43','2015-03-10 22:38:43',1,30001063,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(3461,'2015-03-10 22:38:43','2015-03-10 22:38:43',1,30002433,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(3462,'2015-03-10 22:38:43','2015-10-11 16:46:34',1,30001117,0,0,7,10,2,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0),(3463,'2015-03-10 22:38:43','2015-10-11 16:46:34',1,30002910,1,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0),(3464,'2015-03-10 22:38:43','2015-03-10 22:38:43',1,30003616,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(3465,'2015-03-10 22:38:43','2015-10-11 16:46:34',1,30000212,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,0,0,0),(3466,'2015-03-10 22:38:43','2015-10-11 16:46:34',1,30002867,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0),(3467,'2015-03-10 22:38:43','2015-03-10 22:38:43',1,30003186,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(3468,'2015-03-10 22:38:43','2015-03-10 22:38:43',1,30004609,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(3469,'2015-03-10 22:38:43','2015-10-11 16:46:34',1,30003980,0,1,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,0,0,0),(3470,'2015-03-10 22:38:43','2015-10-11 16:46:34',1,30000917,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0),(3471,'2015-03-10 22:38:43','2015-10-11 16:46:34',1,30005031,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,0,0,0),(3472,'2015-03-10 22:38:43','2015-03-10 22:38:43',1,30004089,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(3473,'2015-03-10 22:38:43','2015-03-10 22:38:43',1,30004308,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(3474,'2015-03-10 22:38:43','2015-03-10 22:38:43',1,30003929,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(3475,'2015-03-10 22:38:43','2015-10-11 16:46:34',1,30003378,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,0,0,0),(3476,'2015-03-10 22:38:43','2015-10-11 16:46:34',1,30005058,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(3477,'2015-03-10 22:38:43','2015-10-11 16:46:34',1,30004383,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0),(3478,'2015-03-10 22:38:43','2015-03-10 22:38:43',1,30001695,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(3479,'2015-03-10 22:38:43','2015-10-11 16:46:34',1,30003423,0,0,0,0,0,0,1,0,1,1,0,0,1,0,0,0,0,0,0,1,0,0,0,0),(3480,'2015-03-10 22:38:43','2015-03-10 22:38:43',1,30004267,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(3481,'2015-03-10 22:38:43','2015-10-11 16:46:34',1,30045344,2,1,1,2,1,2,3,2,6,0,8,1,1,6,2,1,4,1,15,0,2,5,2,2),(3482,'2015-03-10 22:38:43','2015-10-11 16:46:34',1,30002228,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(3483,'2015-03-10 22:38:43','2015-03-10 22:38:43',1,30003073,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(3484,'2015-03-10 22:38:43','2015-10-11 16:46:34',1,30001826,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0),(3485,'2015-03-10 22:38:43','2015-10-11 16:46:34',1,30000145,1,3,0,0,0,0,1,2,1,4,3,3,1,1,1,0,0,1,1,0,2,2,2,1),(3486,'2015-03-10 22:38:43','2015-10-11 16:46:34',1,30005286,0,0,0,0,0,0,0,1,0,1,0,0,0,0,0,0,0,0,1,0,0,0,0,1),(3487,'2015-03-10 22:38:43','2015-10-11 16:46:34',1,30002650,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,1,0),(3488,'2015-03-10 22:38:43','2015-10-11 16:46:34',1,30003859,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,2,0,0,0,0,0,0,0,0),(3489,'2015-03-10 22:38:43','2015-10-11 16:46:34',1,30002246,0,0,0,0,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,1),(3490,'2015-03-10 22:38:43','2015-10-11 16:46:34',1,30000230,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,0,0),(3491,'2015-03-10 22:38:43','2015-10-11 16:46:34',1,30003325,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,13),(3492,'2015-03-10 22:38:43','2015-10-11 16:46:34',1,30000650,0,0,4,0,5,0,0,0,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(3493,'2015-03-10 22:38:43','2015-10-11 16:46:34',1,30005170,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(3494,'2015-03-10 22:38:43','2015-03-10 22:38:43',1,30001239,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(3495,'2015-03-10 22:38:43','2015-03-10 22:38:43',1,30003117,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(3496,'2015-03-10 22:38:43','2015-10-11 16:46:34',1,30001789,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(3497,'2015-03-10 22:38:43','2015-10-11 16:46:34',1,30002185,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,2),(3498,'2015-03-10 22:38:43','2015-10-11 16:46:34',1,30003504,18,19,11,6,8,6,1,0,1,2,4,3,2,1,3,2,3,18,1,2,2,2,6,2),(3499,'2015-03-10 22:38:43','2015-03-10 22:38:43',1,30005047,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(3500,'2015-03-10 22:38:43','2015-10-11 16:46:34',1,30003580,0,0,0,0,0,0,1,0,6,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0),(3501,'2015-03-10 22:38:43','2015-03-10 22:38:43',1,30003006,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(3502,'2015-03-10 22:38:43','2015-10-11 16:46:34',1,30004769,2,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(3503,'2015-03-10 22:38:43','2015-10-11 16:46:34',1,30004126,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0),(3504,'2015-03-10 22:38:43','2015-03-10 22:38:43',1,30004274,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(3505,'2015-03-10 22:38:43','2015-03-10 22:38:43',1,30000108,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(3506,'2015-03-10 22:38:43','2015-03-10 22:38:43',1,30000642,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(3507,'2015-03-10 22:38:43','2015-10-11 16:46:34',1,30003448,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,1,0,0,0,1,0,0),(3508,'2015-03-10 22:38:43','2015-10-11 16:46:34',1,30002234,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,3,4,0,0,0),(3509,'2015-03-10 22:38:43','2015-10-11 16:46:34',1,30000900,0,0,1,0,0,0,0,0,0,1,0,0,0,1,0,0,0,0,0,0,1,0,0,0),(3510,'2015-03-10 22:38:43','2015-10-11 16:46:34',1,30000057,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0),(3511,'2015-03-10 22:38:43','2015-10-11 16:46:34',1,30002757,9,2,2,1,6,4,1,7,2,1,0,2,0,0,5,5,5,5,1,1,0,0,0,1),(3512,'2015-03-10 22:38:43','2015-03-10 22:38:43',1,30001082,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(3513,'2015-03-10 22:38:43','2015-10-11 16:46:34',1,30000035,0,0,0,0,1,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(3514,'2015-03-10 22:38:43','2015-03-10 22:38:43',1,30000008,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(3515,'2015-03-10 22:38:43','2015-10-11 16:46:34',1,30005040,0,0,0,0,0,0,0,1,1,0,2,0,0,0,0,0,5,0,0,0,0,0,0,0),(3516,'2015-03-10 22:38:43','2015-10-11 16:46:34',1,30045352,0,3,3,0,3,1,0,0,3,0,0,0,2,0,0,1,2,4,2,0,2,1,2,3),(3517,'2015-03-10 22:38:43','2015-10-11 16:46:34',1,30000143,2,1,0,2,1,2,0,0,8,1,3,1,0,0,1,1,3,4,0,3,0,0,0,1),(3518,'2015-03-10 22:38:43','2015-03-10 22:38:43',1,30003141,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(3519,'2015-03-10 22:38:43','2015-10-11 16:46:34',1,30000896,0,0,0,0,0,0,0,0,0,0,0,1,0,1,0,0,0,0,0,1,0,0,0,0),(3520,'2015-03-10 22:38:43','2015-10-11 16:46:34',1,30000902,0,0,0,0,0,0,0,0,0,0,0,0,0,1,2,0,0,0,0,0,0,0,0,0),(3521,'2015-03-10 22:38:43','2015-10-11 16:46:34',1,30002303,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(3522,'2015-03-10 22:38:43','2015-03-10 22:38:43',1,30000855,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(3523,'2015-03-10 22:38:43','2015-10-11 16:46:34',1,30004476,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(3524,'2015-03-10 22:38:43','2015-10-11 16:46:34',1,30004338,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(3525,'2015-03-10 22:38:43','2015-10-11 16:46:34',1,30004518,1,0,0,0,0,0,1,1,0,2,1,0,0,0,0,0,0,0,0,0,0,0,2,1),(3526,'2015-03-10 22:38:43','2015-10-11 16:46:34',1,30005018,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0),(3527,'2015-03-10 22:38:43','2015-10-11 16:46:34',1,30004712,0,1,0,0,0,0,0,0,0,0,3,3,0,0,0,0,0,1,0,0,0,0,0,0),(3528,'2015-03-10 22:38:43','2015-10-11 16:46:34',1,30002218,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1),(3529,'2015-03-10 22:38:43','2015-10-11 16:46:34',1,30000131,0,0,0,1,0,0,1,0,0,3,1,2,2,0,0,0,0,0,0,0,0,0,0,1),(3530,'2015-03-10 22:38:43','2015-10-11 16:46:34',1,30002219,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,1,0,0,0,0,0,0),(3531,'2015-03-10 22:38:43','2015-10-11 16:46:34',1,30001401,4,0,0,1,0,0,0,0,0,0,0,1,0,1,2,0,0,0,1,2,1,2,2,0),(3532,'2015-03-10 22:38:43','2015-10-11 16:46:34',1,30005236,0,0,0,0,1,1,0,0,0,0,0,0,0,0,0,0,1,0,0,0,1,0,0,0),(3533,'2015-03-10 22:38:43','2015-03-10 22:38:43',1,30004094,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(3534,'2015-03-10 22:38:43','2015-03-10 22:38:43',1,30001725,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(3535,'2015-03-10 22:38:43','2015-10-11 16:46:34',1,30045348,0,0,0,0,0,2,0,0,0,0,0,0,0,0,1,1,1,0,2,1,0,0,1,0),(3536,'2015-03-10 22:38:43','2015-10-11 16:46:34',1,30003884,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,1,0),(3537,'2015-03-10 22:38:43','2015-10-11 16:46:34',1,30001376,0,2,6,1,2,2,0,0,2,2,1,1,1,1,1,0,2,0,0,1,0,3,1,1),(3538,'2015-03-10 22:38:43','2015-03-10 22:38:43',1,30004307,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(3539,'2015-03-10 22:38:43','2015-03-10 22:38:43',1,30004533,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(3540,'2015-03-10 22:38:43','2015-03-10 22:38:43',1,30004479,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(3541,'2015-03-10 22:38:43','2015-03-10 22:38:43',1,30002451,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(3542,'2015-03-10 22:38:43','2015-03-10 22:38:43',1,30001822,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(3543,'2015-03-10 22:38:43','2015-03-10 22:38:43',1,30000368,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(3544,'2015-03-10 22:38:43','2015-10-11 16:46:34',1,30004919,0,0,0,0,0,0,0,0,0,0,0,0,0,0,6,6,0,0,0,0,0,0,0,0),(3545,'2015-03-10 22:38:43','2015-03-10 22:38:43',1,30004866,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(3546,'2015-03-10 22:38:43','2015-03-10 22:38:43',1,30001094,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(3547,'2015-03-10 22:38:43','2015-10-11 16:46:34',1,30001962,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0),(3548,'2015-03-10 22:38:43','2015-03-10 22:38:43',1,30002103,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(3549,'2015-03-10 22:38:43','2015-03-10 22:38:43',1,30000696,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(3550,'2015-03-10 22:38:43','2015-03-10 22:38:43',1,30001622,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(3551,'2015-03-10 22:38:43','2015-03-10 22:38:43',1,30001061,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(3552,'2015-03-10 22:38:43','2015-10-11 16:46:34',1,30004318,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(3553,'2015-03-10 22:38:43','2015-03-10 22:38:43',1,30004035,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(3554,'2015-03-10 22:38:43','2015-10-11 16:46:34',1,30002606,0,0,0,0,0,0,0,0,3,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(3555,'2015-03-10 22:38:43','2015-10-11 16:46:34',1,30000183,0,0,1,0,0,0,2,0,4,0,1,0,2,0,0,0,0,0,3,2,0,0,0,1),(3556,'2015-03-10 22:38:43','2015-03-10 22:38:43',1,30001665,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(3557,'2015-03-10 22:38:43','2015-03-10 22:38:43',1,30003627,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(3558,'2015-03-10 22:38:43','2015-03-10 22:38:43',1,30000350,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(3559,'2015-03-10 22:38:43','2015-10-11 16:46:34',1,30004438,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(3560,'2015-03-10 22:38:43','2015-03-10 22:38:43',1,30002340,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(3561,'2015-03-10 22:38:43','2015-03-10 22:38:43',1,30004440,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(3562,'2015-03-10 22:38:43','2015-03-10 22:38:43',1,30004612,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(3563,'2015-03-10 22:38:43','2015-10-11 16:46:34',1,30001874,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,1,0,0,0,1,2,0,0),(3564,'2015-03-10 22:38:43','2015-10-11 16:46:34',1,30004911,0,0,0,0,0,0,0,0,0,0,0,0,0,1,2,0,0,0,0,0,0,0,0,0),(3565,'2015-03-10 22:38:43','2015-03-10 22:38:43',1,30004863,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(3566,'2015-03-10 22:38:43','2015-10-11 16:46:34',1,30000870,1,0,0,0,0,1,1,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0),(3567,'2015-03-10 22:38:43','2015-03-10 22:38:43',1,30004050,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(3568,'2015-03-10 22:38:43','2015-10-11 16:46:34',1,30002935,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,2),(3569,'2015-03-10 22:38:43','2015-03-10 22:38:43',1,30000627,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(3570,'2015-03-10 22:38:43','2015-03-10 22:38:43',1,30000744,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(3571,'2015-03-10 22:38:43','2015-03-10 22:38:43',1,30000982,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(3572,'2015-03-10 22:38:43','2015-03-10 22:38:43',1,30004692,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(3573,'2015-03-10 22:38:43','2015-10-11 16:46:34',1,30000831,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(3574,'2015-03-10 22:38:43','2015-03-10 22:38:43',1,30002034,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(3575,'2015-03-10 22:38:43','2015-10-11 16:46:34',1,30004060,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0),(3576,'2015-03-10 22:38:43','2015-10-11 16:46:34',1,30001964,0,0,1,0,2,2,1,0,0,0,2,2,0,0,0,0,0,0,0,0,0,0,0,0),(3577,'2015-03-10 22:38:43','2015-03-10 22:38:43',1,30003683,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(3578,'2015-03-10 22:38:43','2015-03-10 22:38:43',1,30001955,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(3579,'2015-03-10 22:38:43','2015-03-10 22:38:43',1,30002358,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(3580,'2015-03-10 22:38:43','2015-03-10 22:38:43',1,30004199,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(3581,'2015-03-10 22:38:43','2015-10-11 16:46:34',1,30001938,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0),(3582,'2015-03-10 22:38:43','2015-10-11 16:46:34',1,30004713,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0),(3583,'2015-03-10 22:38:43','2015-03-10 22:38:43',1,30004049,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(3584,'2015-03-10 22:38:43','2015-10-11 16:46:34',1,30004326,0,0,0,0,0,0,0,0,0,0,1,1,0,1,2,0,0,0,0,0,0,0,0,0),(3585,'2015-03-10 22:38:43','2015-03-10 22:38:43',1,30002351,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(3586,'2015-03-10 22:38:43','2015-10-11 16:46:34',1,30000309,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(3587,'2015-03-10 22:38:43','2015-03-10 22:38:43',1,30004671,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(3588,'2015-03-10 22:38:43','2015-10-11 16:46:34',1,30004703,0,0,0,0,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,2),(3589,'2015-03-10 22:38:43','2015-10-11 16:46:34',1,30001986,4,0,2,0,0,1,0,0,0,0,0,0,0,2,0,0,0,0,0,0,0,0,2,0),(3590,'2015-03-10 22:38:43','2015-10-11 16:46:34',1,30001751,0,0,0,0,0,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(3591,'2015-03-10 22:38:43','2015-03-10 22:38:43',1,30000993,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(3592,'2015-03-10 22:38:43','2015-10-11 16:46:34',1,30004649,0,0,1,0,2,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(3593,'2015-03-10 22:38:43','2015-10-11 16:46:34',1,30005171,0,1,0,0,0,0,1,0,0,0,0,0,0,0,2,1,0,0,0,0,0,0,0,0),(3594,'2015-03-10 22:38:43','2015-10-11 16:46:34',1,30004543,0,0,0,0,1,2,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(3595,'2015-03-10 22:38:43','2015-03-10 22:38:43',1,30000975,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(3596,'2015-03-10 22:38:43','2015-03-10 22:38:43',1,30001297,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(3597,'2015-03-10 22:38:43','2015-10-11 16:46:34',1,30002457,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0),(3598,'2015-03-10 22:38:43','2015-10-11 16:46:34',1,30003761,0,0,0,0,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(3599,'2015-03-10 22:38:43','2015-10-11 16:46:34',1,30004044,3,6,0,0,1,1,4,0,0,0,0,0,0,0,0,0,1,3,0,3,4,1,0,1),(3600,'2015-03-10 22:38:43','2015-10-11 16:46:34',1,30002425,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,4,0,2),(3601,'2015-03-10 22:38:43','2015-10-11 16:46:34',1,30004699,0,3,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,3,0,0,0),(3602,'2015-03-10 22:38:43','2015-10-11 16:46:34',1,30003686,0,0,8,0,1,2,1,1,2,0,0,0,0,0,6,8,2,0,0,1,0,1,0,0),(3603,'2015-03-10 22:38:43','2015-03-10 22:38:43',1,30002602,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(3604,'2015-03-10 22:38:43','2015-03-10 22:38:43',1,30002499,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(3605,'2015-03-10 22:38:43','2015-10-11 16:46:34',1,30000492,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,1,0,0),(3606,'2015-03-10 22:38:43','2015-03-10 22:38:43',1,30002851,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(3607,'2015-03-10 22:38:43','2015-03-10 22:38:43',1,30003645,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(3608,'2015-03-10 22:38:43','2015-03-10 22:38:43',1,30003946,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(3609,'2015-03-10 22:38:43','2015-03-10 22:38:43',1,30002153,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(3610,'2015-03-10 22:38:43','2015-10-11 16:46:34',1,30004691,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(3611,'2015-03-10 22:38:43','2015-10-11 16:46:34',1,30002884,0,0,0,0,0,0,0,0,0,2,1,1,0,1,1,0,0,5,0,0,0,0,0,0),(3612,'2015-03-10 22:38:43','2015-10-11 16:46:34',1,30000512,3,0,0,0,1,1,0,3,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(3613,'2015-03-10 22:38:43','2015-10-11 16:46:34',1,30001855,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,0,0),(3614,'2015-03-10 22:38:43','2015-03-10 22:38:43',1,30002116,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(3615,'2015-03-10 22:38:43','2015-03-10 22:38:43',1,30001099,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(3616,'2015-03-10 22:38:43','2015-10-11 16:46:34',1,30002179,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,4,0,0,0),(3617,'2015-03-10 22:38:43','2015-03-10 22:38:43',1,30001068,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(3618,'2015-03-10 22:38:43','2015-10-11 16:46:34',1,30004381,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,0,0,0,0,0,1),(3619,'2015-03-10 22:38:43','2015-03-10 22:38:43',1,30002879,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(3620,'2015-03-10 22:38:43','2015-03-10 22:38:43',1,30004424,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(3621,'2015-03-10 22:38:43','2015-03-10 22:38:43',1,30000560,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(3622,'2015-03-10 22:38:43','2015-03-10 22:38:43',1,30000679,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(3623,'2015-03-10 22:38:43','2015-10-11 16:46:34',1,30004996,0,0,1,0,0,1,0,1,1,3,4,0,0,0,0,2,4,2,0,0,0,0,0,0),(3624,'2015-03-10 22:38:43','2015-10-11 16:46:34',1,30000155,0,0,0,4,1,2,0,1,1,0,1,0,8,0,0,0,0,0,0,0,1,8,8,11),(3625,'2015-03-10 22:38:43','2015-10-11 16:46:34',1,30000205,1,0,0,1,0,0,0,0,0,0,4,2,1,0,0,0,2,2,3,1,0,1,1,0),(3626,'2015-03-10 22:38:43','2015-03-10 22:38:43',1,30004109,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(3627,'2015-03-10 22:38:43','2015-03-10 22:38:43',1,30004487,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(3628,'2015-03-10 22:38:43','2015-10-11 16:46:34',1,30002522,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1),(3629,'2015-03-10 22:38:43','2015-03-10 22:38:43',1,30005181,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(3630,'2015-03-10 22:38:43','2015-10-11 16:46:34',1,30003578,0,0,0,1,0,0,1,0,0,0,0,0,0,0,1,1,0,1,0,1,0,0,0,0),(3631,'2015-03-10 22:38:43','2015-03-10 22:38:43',1,30004426,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(3632,'2015-03-10 22:38:43','2015-10-11 16:46:34',1,30003857,1,1,1,0,0,1,0,1,0,3,9,2,2,3,2,3,2,0,2,3,5,4,0,1),(3633,'2015-03-10 22:38:43','2015-10-11 16:46:34',1,30002509,2,0,2,1,3,0,0,0,0,0,1,1,2,1,0,0,0,0,1,0,0,0,1,1),(3634,'2015-03-10 22:38:43','2015-10-11 16:46:34',1,30002388,0,0,1,2,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,5,0,0,0),(3635,'2015-03-10 22:38:43','2015-10-11 16:46:34',1,30003470,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,1),(3636,'2015-03-10 22:38:43','2015-10-11 16:46:34',1,30002694,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(3637,'2015-03-10 22:38:43','2015-10-11 16:46:34',1,30002963,0,0,0,1,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,2,0,0,0),(3638,'2015-03-10 22:38:43','2015-03-10 22:38:43',1,30003582,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(3639,'2015-03-10 22:38:43','2015-03-10 22:38:43',1,30003050,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(3640,'2015-03-10 22:38:43','2015-10-11 16:46:34',1,30000077,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,0,1),(3641,'2015-03-10 22:38:43','2015-10-11 16:46:34',1,30012715,7,0,0,0,0,0,2,0,0,0,0,1,0,1,0,0,0,0,2,0,0,1,0,0),(3642,'2015-03-10 22:38:43','2015-10-11 16:46:34',1,30003657,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(3643,'2015-03-10 22:38:43','2015-10-11 16:46:34',1,30002008,0,0,1,0,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,1,1,2),(3644,'2015-03-10 22:38:43','2015-10-11 16:46:34',1,30000439,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0),(3645,'2015-03-10 22:38:43','2015-10-11 16:46:34',1,30003577,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(3646,'2015-03-10 22:38:43','2015-03-10 22:38:43',1,30002427,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(3647,'2015-03-10 22:38:43','2015-10-11 16:46:34',1,30003446,0,0,0,0,0,0,0,0,1,1,0,0,0,0,2,2,0,0,0,0,0,0,0,2),(3648,'2015-03-10 22:38:43','2015-10-11 16:46:34',1,30003460,0,0,0,0,0,1,0,0,0,0,3,3,2,0,1,1,2,0,0,0,0,0,0,1),(3649,'2015-03-10 22:38:43','2015-10-11 16:46:34',1,30002549,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(3650,'2015-03-10 22:38:43','2015-10-11 16:46:34',1,30002061,0,0,2,0,0,0,3,2,0,4,0,0,0,0,0,0,0,0,0,0,0,1,0,1),(3651,'2015-03-10 22:38:43','2015-03-10 22:38:43',1,30000472,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(3652,'2015-03-10 22:38:43','2015-03-10 22:38:43',1,30003598,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(3653,'2015-03-10 22:38:43','2015-03-10 22:38:43',1,30001191,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(3654,'2015-03-10 22:38:43','2015-03-10 22:38:43',1,30003437,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(3655,'2015-03-10 22:38:43','2015-10-11 16:46:34',1,30005068,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0),(3656,'2015-03-10 22:38:43','2015-03-10 22:38:43',1,30002045,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(3657,'2015-03-10 22:38:43','2015-10-11 16:46:34',1,30003984,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(3658,'2015-03-10 22:38:43','2015-10-11 16:46:34',1,30001435,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0),(3659,'2015-03-10 22:38:43','2015-10-11 16:46:34',1,30002970,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(3660,'2015-03-10 22:38:43','2015-10-11 16:46:34',1,30000204,0,0,0,0,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(3661,'2015-03-10 22:38:43','2015-10-11 16:46:34',1,30000136,0,1,0,0,0,0,2,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0),(3662,'2015-03-10 22:38:43','2015-10-11 16:46:34',1,30002743,0,0,1,3,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(3663,'2015-03-10 22:38:43','2015-10-11 16:46:34',1,30002818,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0),(3664,'2015-03-10 22:38:43','2015-10-11 16:46:34',1,30003838,0,0,1,1,0,5,2,1,1,0,0,0,2,0,0,1,2,3,1,0,0,1,0,0),(3665,'2015-03-10 22:38:43','2015-10-11 16:46:34',1,30002746,0,0,1,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(3666,'2015-03-10 22:38:43','2015-10-11 16:46:34',1,30000186,8,4,1,8,19,14,8,3,6,2,8,9,9,1,1,1,3,3,1,1,2,4,0,2),(3667,'2015-03-10 22:38:43','2015-10-11 16:46:34',1,30001444,0,0,0,0,0,0,0,1,0,0,0,0,0,0,1,2,1,0,0,0,0,0,0,1),(3668,'2015-03-10 22:38:43','2015-10-11 16:46:34',1,30045347,7,1,3,2,0,1,1,0,5,2,2,2,0,10,1,2,7,1,0,0,0,3,3,0),(3669,'2015-03-10 22:38:43','2015-10-11 16:46:34',1,30002750,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1),(3670,'2015-03-10 22:38:43','2015-03-10 22:38:43',1,30003132,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(3671,'2015-03-10 22:38:43','2015-10-11 16:46:34',1,30001425,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0),(3672,'2015-03-10 22:38:43','2015-10-11 16:46:34',1,30022715,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0),(3673,'2015-03-10 22:38:43','2015-10-11 16:46:34',1,30001433,0,1,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,0,0,0,0,0,0,0),(3674,'2015-03-10 22:38:43','2015-10-11 16:46:34',1,30002799,0,8,2,0,0,0,1,3,6,0,0,0,0,1,0,0,0,1,0,0,0,0,0,0),(3675,'2015-03-10 22:38:43','2015-03-10 22:38:43',1,30004334,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(3676,'2015-03-10 22:38:43','2015-03-10 22:38:43',1,30001341,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(3677,'2015-03-10 22:38:43','2015-03-10 22:38:43',1,30000983,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(3678,'2015-03-10 22:38:43','2015-03-10 22:38:43',1,30005091,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(3679,'2015-03-10 22:38:43','2015-10-11 16:46:34',1,30000945,2,0,0,0,0,0,0,0,0,0,0,0,0,0,5,5,0,0,1,0,0,0,0,0),(3680,'2015-03-10 22:38:43','2015-10-11 16:46:34',1,30045307,0,0,0,1,0,0,2,0,0,1,0,1,1,0,0,0,0,0,0,1,1,0,0,0),(3681,'2015-03-10 22:38:43','2015-03-10 22:38:43',1,30004924,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(3682,'2015-03-10 22:38:43','2015-10-11 16:46:34',1,30045330,1,7,8,1,2,4,3,1,1,9,3,1,9,5,3,1,1,7,3,0,3,9,7,1),(3683,'2015-03-10 22:38:43','2015-03-10 22:38:43',1,30004645,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(3684,'2015-03-10 22:38:43','2015-10-11 16:46:34',1,30003388,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(3685,'2015-03-10 22:38:43','2015-10-11 16:46:34',1,30005000,2,2,6,2,6,6,7,1,3,3,2,0,3,5,4,4,7,7,2,1,5,1,3,6),(3686,'2015-03-10 22:38:43','2015-03-10 22:38:43',1,30032715,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(3687,'2015-03-10 22:38:43','2015-10-11 16:46:34',1,30002686,5,1,0,0,1,1,1,2,1,1,2,2,2,0,0,0,0,0,0,1,0,0,1,0),(3688,'2015-03-10 22:38:43','2015-10-11 16:46:34',1,30002515,1,0,0,1,2,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,1),(3689,'2015-03-10 22:38:43','2015-03-10 22:38:43',1,30003058,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(3690,'2015-03-10 22:38:43','2015-10-11 16:46:34',1,30005272,0,0,0,0,0,0,0,1,0,0,0,0,0,1,0,0,1,0,1,0,0,0,1,0),(3691,'2015-03-10 22:38:43','2015-10-11 16:46:34',1,30000158,0,0,1,0,0,0,2,2,1,1,0,0,0,0,0,0,1,0,2,0,0,3,0,1),(3692,'2015-03-10 22:38:43','2015-10-11 16:46:34',1,30004137,0,0,0,0,0,1,1,0,0,1,0,0,0,0,0,0,0,0,0,0,0,1,0,0),(3693,'2015-03-10 22:38:43','2015-03-10 22:38:43',1,30004302,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(3694,'2015-03-10 22:38:43','2015-10-11 16:46:34',1,30003817,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0),(3695,'2015-03-10 22:38:43','2015-03-10 22:38:43',1,30005027,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(3696,'2015-03-10 22:38:43','2015-10-11 16:46:34',1,30004244,0,2,2,4,1,1,3,6,1,0,1,3,1,1,0,0,0,6,0,0,0,1,4,1),(3697,'2015-03-10 22:38:43','2015-10-11 16:46:34',1,30002811,4,1,1,2,2,2,0,0,1,3,0,0,0,1,0,0,0,0,1,3,8,0,0,2),(3698,'2015-03-10 22:38:43','2015-03-10 22:38:43',1,30001688,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(3699,'2015-03-10 22:38:43','2015-10-11 16:46:34',1,30003603,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0),(3700,'2015-03-10 22:38:43','2015-10-11 16:46:34',1,30002568,0,1,0,0,0,0,1,0,0,0,1,0,1,0,0,0,0,1,0,0,0,0,1,0),(3701,'2015-03-10 22:38:43','2015-10-11 16:46:34',1,30003386,1,0,0,1,0,0,0,0,1,0,0,0,0,0,1,0,0,0,1,0,1,1,0,0),(3702,'2015-03-10 22:38:43','2015-10-11 16:46:34',1,30045324,0,2,0,0,0,0,0,0,0,1,1,1,0,0,1,1,1,0,0,1,1,0,0,0),(3703,'2015-03-10 22:38:43','2015-10-11 16:46:34',1,30004990,1,0,0,0,0,0,0,0,0,0,0,0,0,1,2,2,0,1,0,0,0,0,0,1),(3704,'2015-03-10 22:38:43','2015-10-11 16:46:34',1,30002779,0,0,0,1,0,1,0,0,0,0,1,1,0,0,0,0,0,0,0,0,0,0,0,0),(3705,'2015-03-10 22:38:43','2015-10-11 16:46:34',1,30000013,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0),(3706,'2015-03-10 22:38:43','2015-10-11 16:46:34',1,30002091,0,0,0,0,0,0,0,0,0,2,0,0,0,0,0,0,0,0,2,4,2,0,0,0),(3707,'2015-03-10 22:38:43','2015-10-11 16:46:34',1,30000174,0,0,0,1,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0),(3708,'2015-03-10 22:38:43','2015-03-10 22:38:43',1,30001946,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(3709,'2015-03-10 22:38:43','2015-10-11 16:46:34',1,30005109,1,0,2,0,1,3,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(3710,'2015-03-10 22:38:43','2015-10-11 16:46:34',1,30002173,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0),(3711,'2015-03-10 22:38:43','2015-03-10 22:38:43',1,30003430,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(3712,'2015-03-10 22:38:43','2015-03-10 22:38:43',1,30004858,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(3713,'2015-03-10 22:38:43','2015-03-10 22:38:43',1,30000607,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(3714,'2015-03-10 22:38:43','2015-03-10 22:38:43',1,30003450,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(3715,'2015-03-10 22:38:43','2015-03-10 22:38:43',1,30003201,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(3716,'2015-03-10 22:38:43','2015-10-11 16:46:34',1,30001685,0,0,0,0,0,1,0,0,0,0,0,0,0,1,0,0,0,1,0,0,0,0,0,0),(3717,'2015-03-10 22:38:43','2015-10-11 16:46:34',1,30005060,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,5,5,6,3,0,0,0,3,3),(3718,'2015-03-10 22:38:43','2015-03-10 22:38:43',1,30000026,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(3719,'2015-03-10 22:38:43','2015-03-10 22:38:43',1,30003453,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(3720,'2015-03-10 22:38:43','2015-10-11 16:46:34',1,30002571,0,0,0,0,1,0,0,0,0,1,0,0,0,0,0,1,1,0,0,0,0,0,0,0),(3721,'2015-03-10 22:38:43','2015-10-11 16:46:34',1,30002098,0,0,1,0,1,0,0,0,0,1,3,1,1,3,0,0,0,1,2,2,0,2,1,0),(3722,'2015-03-10 22:38:43','2015-10-11 16:46:34',1,30022505,0,0,0,0,0,0,0,0,0,0,1,0,0,1,0,0,0,0,0,0,0,0,0,0),(3723,'2015-03-10 22:38:43','2015-10-11 16:46:34',1,30002399,0,0,0,1,0,0,0,1,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0),(3724,'2015-03-10 22:38:43','2015-10-11 16:46:34',1,30003492,1,2,0,0,0,0,0,2,0,0,0,0,1,1,2,4,4,0,1,0,0,0,0,0),(3725,'2015-03-10 22:38:43','2015-10-11 16:46:34',1,30003596,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0),(3726,'2015-03-10 22:38:43','2015-10-11 16:46:34',1,30000063,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,13,0),(3727,'2015-03-10 22:38:43','2015-10-11 16:46:34',1,30003830,0,0,0,0,0,0,1,0,3,5,5,1,2,0,2,3,2,0,0,1,3,10,0,1),(3728,'2015-03-10 22:38:43','2015-03-10 22:38:43',1,30000374,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(3729,'2015-03-10 22:38:43','2015-10-11 16:46:34',1,30000207,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0),(3730,'2015-03-10 22:38:43','2015-10-11 16:46:34',1,30002569,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,3,2,0),(3731,'2015-03-10 22:38:43','2015-10-11 16:46:34',1,30002795,11,10,4,1,9,10,7,0,2,0,0,0,0,0,0,0,0,2,1,1,1,1,2,2),(3732,'2015-03-10 22:38:43','2015-03-10 22:38:43',1,30003870,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(3733,'2015-03-10 22:38:43','2015-03-10 22:38:43',1,30003812,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(3734,'2015-03-10 22:38:43','2015-10-11 16:46:34',1,30003831,0,0,0,0,0,0,1,0,1,1,3,4,0,0,1,2,1,0,0,1,1,0,4,0),(3735,'2015-03-10 22:38:43','2015-10-11 16:46:34',1,30005332,0,0,0,0,0,0,0,0,0,0,1,0,0,0,1,0,0,0,0,0,0,0,0,0),(3736,'2015-03-10 22:38:43','2015-10-11 16:46:34',1,30000180,15,0,12,7,3,2,5,0,1,3,4,7,1,0,2,4,3,5,1,0,1,2,1,3),(3737,'2015-03-10 22:38:43','2015-10-11 16:46:34',1,30002506,0,0,0,1,2,1,0,0,0,0,0,0,0,1,2,1,2,0,0,0,0,0,0,1),(3738,'2015-03-10 22:38:43','2015-10-11 16:46:34',1,30001358,0,0,0,0,0,0,0,0,0,1,1,1,0,0,0,0,0,0,0,0,0,0,0,0),(3739,'2015-03-10 22:38:43','2015-10-11 16:46:34',1,30003792,13,6,8,0,6,3,3,3,4,0,2,3,2,8,4,2,5,4,3,3,3,1,9,8),(3740,'2015-03-10 22:38:43','2015-10-11 16:46:34',1,30003427,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1),(3741,'2015-03-10 22:38:43','2015-10-11 16:46:34',1,30002409,0,0,0,0,0,0,1,0,1,0,0,0,1,0,1,1,1,0,0,0,0,0,0,0),(3742,'2015-03-10 22:38:43','2015-03-10 22:38:43',1,30001579,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(3743,'2015-03-10 22:38:43','2015-10-11 16:46:34',1,30001005,0,0,0,0,0,0,0,4,0,0,1,2,1,0,0,0,0,0,0,1,1,0,0,0),(3744,'2015-03-10 22:38:43','2015-10-11 16:46:34',1,30005274,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,0,2,0,0,0,0,2),(3745,'2015-03-10 22:38:43','2015-10-11 16:46:34',1,30001421,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,5),(3746,'2015-03-10 22:38:43','2015-10-11 16:46:34',1,30000192,0,0,0,1,0,0,0,2,0,1,0,0,2,4,0,0,1,1,0,0,0,0,0,0),(3747,'2015-03-10 22:38:43','2015-10-11 16:46:34',1,30000157,0,0,0,1,8,7,5,5,0,17,10,2,12,8,7,8,4,21,3,8,4,3,2,7),(3748,'2015-03-10 22:38:43','2015-10-11 16:46:34',1,30003065,1,0,3,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1),(3749,'2015-03-10 22:38:43','2015-10-11 16:46:34',1,30000171,1,0,1,1,1,1,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0),(3750,'2015-03-10 22:38:43','2015-03-10 22:38:43',1,30001538,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(3751,'2015-03-10 22:38:43','2015-03-10 22:38:43',1,30001586,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(3752,'2015-03-10 22:38:43','2015-10-11 16:46:34',1,30002808,8,7,1,2,9,7,11,2,0,2,8,9,8,14,19,21,21,9,6,7,2,5,3,4),(3753,'2015-03-10 22:38:43','2015-10-11 16:46:34',1,30000172,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0),(3754,'2015-03-10 22:38:43','2015-10-11 16:46:34',1,30000196,0,1,0,0,0,0,1,0,0,0,0,0,0,0,2,1,0,0,0,0,1,1,0,1),(3755,'2015-03-10 22:38:43','2015-10-11 16:46:34',1,30002723,0,2,1,0,1,1,2,0,0,6,5,2,3,0,0,0,1,0,1,1,0,1,1,2),(3756,'2015-03-10 22:38:43','2015-10-11 16:46:34',1,30002578,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0),(3757,'2015-03-10 22:38:43','2015-10-11 16:46:34',1,30001446,0,0,0,2,0,0,0,0,0,0,0,1,4,2,0,0,0,0,0,0,0,1,0,2),(3758,'2015-03-10 22:38:43','2015-10-11 16:46:34',1,30000194,0,1,0,1,1,0,0,0,2,3,0,0,1,3,1,0,0,0,0,1,2,0,2,0),(3759,'2015-03-10 22:38:43','2015-03-10 22:38:43',1,30001476,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(3760,'2015-03-10 22:38:43','2015-03-10 22:38:43',1,30004052,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(3761,'2015-03-10 22:38:43','2015-10-11 16:46:34',1,30005297,1,0,3,2,2,2,4,1,2,1,2,2,1,6,3,4,5,1,1,7,1,6,6,1),(3762,'2015-03-10 22:38:43','2015-10-11 16:46:34',1,30003833,1,0,10,0,15,6,6,7,5,0,14,9,0,4,0,0,0,0,0,1,1,1,0,0),(3763,'2015-03-10 22:38:43','2015-10-11 16:46:34',1,30001370,0,0,0,0,1,0,0,0,0,0,1,0,0,0,1,0,0,0,0,0,0,0,0,0),(3764,'2015-03-10 22:38:43','2015-10-11 16:46:34',1,30005203,0,0,1,1,1,1,0,0,1,0,1,0,0,0,1,0,0,1,0,0,1,0,0,0),(3765,'2015-03-10 22:38:43','2015-10-11 16:46:34',1,30004969,1,0,0,2,1,0,4,8,3,0,2,1,0,0,0,0,2,3,1,1,0,1,2,0),(3766,'2015-03-10 22:38:43','2015-10-11 16:46:34',1,30000135,0,0,0,0,1,2,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(3767,'2015-03-10 22:38:43','2015-03-10 22:38:43',1,30000335,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(3768,'2015-03-10 22:38:43','2015-03-10 22:38:43',1,30001819,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(3769,'2015-03-10 22:38:43','2015-03-10 22:38:43',1,30004581,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(3770,'2015-03-10 22:38:43','2015-10-11 16:46:34',1,30002936,0,0,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(3771,'2015-03-10 22:38:43','2015-03-10 22:38:43',1,30004521,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(3772,'2015-03-10 22:38:43','2015-10-11 16:46:34',1,30000735,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(3773,'2015-03-10 22:38:43','2015-10-11 16:46:34',1,30004413,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(3774,'2015-03-10 22:38:43','2015-10-11 16:46:34',1,30003722,0,0,0,0,0,0,0,0,0,0,0,0,3,2,0,0,0,0,0,1,1,0,0,0),(3775,'2015-03-10 22:38:43','2015-10-11 16:46:34',1,30000885,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1),(3776,'2015-03-10 22:38:43','2015-10-11 16:46:34',1,30004958,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(3777,'2015-03-10 22:38:43','2015-10-11 16:46:34',1,30002961,11,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,1,1,1,1,0,0,0),(3778,'2015-03-10 22:38:43','2015-10-11 16:46:34',1,30003088,5,2,0,2,1,1,2,0,0,3,3,2,0,1,2,2,0,0,0,2,0,1,1,1),(3779,'2015-03-10 22:38:43','2015-03-10 22:38:43',1,30003254,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(3780,'2015-03-10 22:38:43','2015-03-10 22:38:43',1,30001282,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(3781,'2015-03-10 22:38:43','2015-10-11 16:46:34',1,30002030,0,0,6,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0),(3782,'2015-03-10 22:38:43','2015-10-11 16:46:34',1,30003680,0,0,1,1,1,0,0,0,2,0,0,0,6,0,0,0,0,0,0,0,0,1,0,0),(3783,'2015-03-10 22:38:43','2015-03-10 22:38:43',1,30003137,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(3784,'2015-03-10 22:38:43','2015-03-10 22:38:43',1,30002482,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(3785,'2015-03-10 22:38:43','2015-03-10 22:38:43',1,30001823,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(3786,'2015-03-10 22:38:43','2015-03-10 22:38:43',1,30002467,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(3787,'2015-03-10 22:38:43','2015-10-11 16:46:34',1,30001268,2,0,0,0,0,0,1,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,2,2),(3788,'2015-03-10 22:38:43','2015-10-11 16:46:34',1,30001293,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0),(3789,'2015-03-10 22:38:43','2015-10-11 16:46:34',1,30004187,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,0,0,0),(3790,'2015-03-10 22:38:43','2015-03-10 22:38:43',1,30000365,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(3791,'2015-03-10 22:38:43','2015-10-11 16:46:34',1,30000661,0,0,0,0,0,0,0,0,0,0,0,0,0,0,6,0,0,0,0,0,0,0,0,0),(3792,'2015-03-10 22:38:43','2015-03-10 22:38:43',1,30001547,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(3793,'2015-03-10 22:38:43','2015-03-10 22:38:43',1,30004170,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(3794,'2015-03-10 22:38:43','2015-10-11 16:46:34',1,30004497,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,4),(3795,'2015-03-10 22:38:43','2015-03-10 22:38:43',1,30001795,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(3796,'2015-03-10 22:38:43','2015-03-10 22:38:43',1,30003674,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(3797,'2015-03-10 22:38:43','2015-10-11 16:46:34',1,30001329,1,0,0,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0),(3798,'2015-03-10 22:38:43','2015-10-11 16:46:34',1,30003978,0,0,0,1,0,1,0,0,2,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0),(3799,'2015-03-10 22:38:43','2015-10-11 16:46:34',1,30003248,1,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,2,0,0),(3800,'2015-03-10 22:38:43','2015-10-11 16:46:34',1,30000949,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0),(3801,'2015-03-10 22:38:43','2015-10-11 16:46:34',1,30000250,0,0,1,0,0,0,0,0,8,7,1,0,2,1,1,2,2,0,1,9,0,3,2,0),(3802,'2015-03-10 22:38:43','2015-03-10 22:38:43',1,30001604,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(3803,'2015-03-10 22:38:43','2015-03-10 22:38:43',1,30001125,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(3804,'2015-03-10 22:38:43','2015-10-11 16:46:34',1,30003971,0,0,1,0,0,0,1,0,0,1,0,0,0,0,0,0,0,0,0,1,0,0,0,0),(3805,'2015-03-10 22:38:43','2015-10-11 16:46:34',1,30004624,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0),(3806,'2015-03-10 22:38:43','2015-03-10 22:38:43',1,30004076,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(3807,'2015-03-10 22:38:43','2015-03-10 22:38:43',1,30000411,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(3808,'2015-03-10 22:38:43','2015-10-11 16:46:34',1,30001568,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0),(3809,'2015-03-10 22:38:43','2015-03-10 22:38:43',1,30000638,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(3810,'2015-03-10 22:38:43','2015-03-10 22:38:43',1,30000450,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(3811,'2015-03-10 22:38:43','2015-03-10 22:38:43',1,30000977,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(3812,'2015-03-10 22:38:43','2015-03-10 22:38:43',1,30004362,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(3813,'2015-03-10 22:38:43','2015-03-10 22:38:43',1,30004471,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(3814,'2015-03-10 22:38:43','2015-03-10 22:38:43',1,30003163,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(3815,'2015-03-10 22:38:43','2015-03-10 22:38:43',1,30005185,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(3816,'2015-03-10 22:38:43','2015-10-11 16:46:34',1,30004961,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1),(3817,'2015-03-10 22:38:43','2015-10-11 16:46:34',1,30000198,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0),(3818,'2015-03-10 22:38:43','2015-10-11 16:46:34',1,30002775,0,1,0,0,1,0,0,0,0,0,0,0,1,2,0,0,2,1,0,0,0,1,0,0),(3819,'2015-03-10 22:38:43','2015-03-10 22:38:43',1,30004253,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(3820,'2015-03-10 22:38:43','2015-10-11 16:46:34',1,30003804,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,2,1,0,0,0),(3821,'2015-03-10 22:38:43','2015-10-11 16:46:34',1,30005198,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,2,0,0,0,1),(3822,'2015-03-10 22:38:43','2015-10-11 16:46:34',1,30001390,2,1,1,3,0,2,0,0,0,2,0,0,0,0,2,3,5,0,0,1,2,0,1,0),(3823,'2015-03-10 22:38:43','2015-10-11 16:46:34',1,30003878,0,1,0,0,1,0,0,0,0,0,1,1,0,3,3,5,2,0,0,0,0,0,3,1),(3824,'2015-03-10 22:38:43','2015-10-11 16:46:34',1,30004992,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0),(3825,'2015-03-10 22:38:43','2015-03-10 22:38:43',1,30003008,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(3826,'2015-03-10 22:38:43','2015-10-11 16:46:34',1,30005232,1,0,1,0,0,0,0,0,2,0,0,0,0,0,0,0,1,1,0,0,0,0,0,0),(3827,'2015-03-10 22:38:43','2015-10-11 16:46:34',1,30005073,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,0,0,1,0,0,1,1,1,0),(3828,'2015-03-10 22:38:43','2015-10-11 16:46:34',1,30002676,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,1,0,0,0),(3829,'2015-03-10 22:38:43','2015-10-11 16:46:34',1,30004255,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0),(3830,'2015-03-10 22:38:43','2015-10-11 16:46:34',1,30003909,0,0,0,0,0,0,3,0,0,0,0,0,0,0,1,1,0,0,0,0,0,0,0,0),(3831,'2015-03-10 22:38:43','2015-10-11 16:46:34',1,30005280,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,1,1),(3832,'2015-03-10 22:38:43','2015-10-11 16:46:34',1,30004998,0,1,4,1,2,1,0,0,2,0,5,3,0,1,1,5,6,1,2,1,0,0,2,0),(3833,'2015-03-10 22:38:43','2015-10-11 16:46:34',1,30021672,3,3,3,4,4,8,6,6,4,7,7,3,3,11,9,7,7,11,6,17,5,10,4,11),(3834,'2015-03-10 22:38:43','2015-10-11 16:46:34',1,30005231,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,0,0,0,1,2,0),(3835,'2015-03-10 22:38:43','2015-10-11 16:46:34',1,30001402,0,0,3,1,0,0,1,0,0,0,1,2,1,0,3,1,0,1,1,0,4,0,4,2),(3836,'2015-03-10 22:38:43','2015-10-11 16:46:34',1,30002544,1,12,0,0,1,1,1,0,2,1,0,3,2,2,0,0,0,1,0,1,0,1,2,1),(3837,'2015-03-10 22:38:43','2015-03-10 22:38:43',1,30002223,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(3838,'2015-03-10 22:38:43','2015-10-11 16:46:34',1,30045320,2,1,13,3,0,0,2,1,0,0,4,4,1,7,3,0,0,1,0,0,0,0,1,0),(3839,'2015-03-10 22:38:43','2015-10-11 16:46:34',1,30001718,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,1,2,0),(3840,'2015-03-10 22:38:43','2015-03-10 22:38:43',1,30004657,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(3841,'2015-03-10 22:38:43','2015-10-11 16:46:34',1,30000873,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,0,0,0),(3842,'2015-03-10 22:38:43','2015-03-10 22:38:43',1,30001483,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(3843,'2015-03-10 22:38:43','2015-10-11 16:46:34',1,30003286,0,0,2,0,4,4,1,1,0,12,1,0,0,21,0,0,6,1,6,0,0,0,2,4),(3844,'2015-03-10 22:38:43','2015-03-10 22:38:43',1,30004733,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(3845,'2015-03-10 22:38:43','2015-10-11 16:46:34',1,30004825,0,0,0,0,0,0,0,6,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(3846,'2015-03-10 22:38:43','2015-03-10 22:38:43',1,30003159,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(3847,'2015-03-10 22:38:43','2015-03-10 22:38:43',1,30005118,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(3848,'2015-03-10 22:38:43','2015-10-11 16:46:34',1,30000379,0,4,83,48,62,11,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(3849,'2015-03-10 22:38:43','2015-10-11 16:46:34',1,30003516,0,1,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0),(3850,'2015-03-10 22:38:43','2015-03-10 22:38:43',1,30004829,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(3851,'2015-03-10 22:38:43','2015-10-11 16:46:34',1,30003806,0,0,0,0,1,0,0,0,0,0,1,1,0,0,0,0,1,0,0,0,0,0,0,1),(3852,'2015-03-10 22:38:43','2015-10-11 16:46:34',1,30002211,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(3853,'2015-03-10 22:38:43','2015-03-10 22:38:43',1,30004906,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(3854,'2015-03-10 22:38:43','2015-10-11 16:46:34',1,30004978,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,2,0,1),(3855,'2015-03-10 22:38:43','2015-10-11 16:46:34',1,30004262,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1),(3856,'2015-03-10 22:38:43','2015-10-11 16:46:34',1,30003488,4,1,2,0,0,1,3,1,0,0,1,0,0,1,0,0,0,2,1,1,0,0,1,1),(3857,'2015-03-10 22:38:43','2015-10-11 16:46:34',1,30001666,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0),(3858,'2015-03-10 22:38:43','2015-10-11 16:46:34',1,30005061,0,0,0,0,0,0,3,0,0,0,1,0,0,0,0,0,0,1,0,0,0,1,0,0),(3859,'2015-03-10 22:38:43','2015-03-10 22:38:43',1,30005013,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(3860,'2015-03-10 22:38:43','2015-10-11 16:46:34',1,30001693,0,0,0,0,0,0,0,0,1,0,0,0,0,1,1,0,0,0,0,0,0,0,0,0),(3861,'2015-03-10 22:38:43','2015-10-11 16:46:34',1,30000144,10,3,3,4,2,2,6,4,1,0,5,5,2,3,3,4,3,2,5,1,1,0,0,1),(3862,'2015-03-10 22:38:43','2015-10-11 16:46:34',1,30003573,0,0,0,1,1,1,0,0,0,0,4,4,0,0,0,1,1,0,0,1,1,0,0,0),(3863,'2015-03-10 22:38:43','2015-10-11 16:46:34',1,30005241,0,0,0,0,0,0,0,0,0,0,0,0,3,0,0,0,0,0,0,0,1,0,1,1),(3864,'2015-03-10 22:38:43','2015-10-11 16:46:34',1,30002632,0,0,0,0,1,1,0,0,0,0,0,0,0,1,0,0,0,1,0,1,0,0,0,0),(3865,'2015-03-10 22:38:43','2015-03-10 22:38:43',1,30004114,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(3866,'2015-03-10 22:38:43','2015-10-11 16:46:34',1,30003277,1,2,1,0,2,2,0,1,0,1,2,3,1,5,1,1,0,5,3,3,8,5,2,7),(3867,'2015-03-10 22:38:43','2015-03-10 22:38:43',1,30004782,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(3868,'2015-03-10 22:38:43','2015-10-11 16:46:34',1,30001324,0,0,0,0,0,0,0,0,0,1,1,1,0,0,0,0,0,0,0,0,0,0,0,0),(3869,'2015-03-10 22:38:43','2015-10-11 16:46:34',1,30003295,0,0,3,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(3870,'2015-03-10 22:38:43','2015-03-10 22:38:43',1,30002009,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(3871,'2015-03-10 22:38:43','2015-03-10 22:38:43',1,30005178,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(3872,'2015-03-10 22:38:43','2015-03-10 22:38:43',1,30002145,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(3873,'2015-03-10 22:38:43','2015-10-11 16:46:34',1,30001707,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0),(3874,'2015-03-10 22:38:43','2015-10-11 16:46:34',1,30003735,0,1,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0),(3875,'2015-03-10 22:38:43','2015-10-11 16:46:34',1,30001403,0,1,0,0,0,0,0,0,0,0,0,0,1,1,1,1,1,2,1,0,2,0,0,1),(3876,'2015-03-10 22:38:43','2015-10-11 16:46:34',1,30001391,2,1,6,2,0,0,2,29,4,0,0,0,0,2,1,1,0,1,1,5,5,0,0,0),(3877,'2015-03-10 22:38:43','2015-10-11 16:46:34',1,30001669,0,0,0,1,2,0,0,0,0,2,1,0,0,2,0,0,0,3,1,0,0,0,0,0),(3878,'2015-03-10 22:38:43','2015-10-11 16:46:34',1,30001652,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(3879,'2015-03-10 22:38:43','2015-03-10 22:38:43',1,30005081,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(3880,'2015-03-10 22:38:43','2015-03-10 22:38:43',1,30005277,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(3881,'2015-03-10 22:38:43','2015-03-10 22:38:43',1,30000066,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(3882,'2015-03-10 22:38:43','2015-03-10 22:38:43',1,30003167,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(3883,'2015-03-10 22:38:43','2015-10-11 16:46:34',1,30004313,0,0,1,0,0,0,1,0,0,0,1,1,0,0,0,0,0,0,0,0,0,0,0,0),(3884,'2015-03-10 22:38:43','2015-03-10 22:38:43',1,30000654,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(3885,'2015-03-10 22:38:43','2015-03-10 22:38:43',1,30000243,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(3886,'2015-03-10 22:38:43','2015-10-11 16:46:34',1,30004411,0,0,0,0,1,1,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(3887,'2015-03-10 22:38:43','2015-03-10 22:38:43',1,30003262,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(3888,'2015-03-10 22:38:43','2015-10-11 16:46:34',1,30000866,0,0,0,1,0,0,0,0,0,0,1,1,0,0,0,0,0,0,0,0,0,0,0,0),(3889,'2015-03-10 22:38:43','2015-03-10 22:38:43',1,30002870,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(3890,'2015-03-10 22:38:43','2015-10-11 16:46:34',1,30004559,0,0,0,0,0,0,0,0,0,0,0,0,1,73,0,0,0,0,0,0,2,1,0,0),(3891,'2015-03-10 22:38:43','2015-10-11 16:46:34',1,30003613,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(3892,'2015-03-10 22:38:43','2015-10-11 16:46:34',1,30004431,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(3893,'2015-03-10 22:38:43','2015-10-11 16:46:34',1,30001012,0,1,2,0,0,0,0,0,0,0,0,0,1,0,2,1,0,1,0,2,0,0,2,0),(3894,'2015-03-10 22:38:43','2015-10-11 16:46:34',1,30003604,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0),(3895,'2015-03-10 22:38:43','2015-10-11 16:46:34',1,30000019,0,0,0,0,0,0,1,0,0,2,1,0,0,0,1,1,0,0,0,0,0,0,0,0),(3896,'2015-03-10 22:38:43','2015-10-11 16:46:34',1,30000153,4,0,7,10,10,4,8,0,0,5,0,0,2,11,0,1,4,2,0,24,12,0,8,4),(3897,'2015-03-10 22:38:43','2015-10-11 16:46:34',1,30003271,1,0,0,1,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0),(3898,'2015-03-10 22:38:43','2015-03-10 22:38:43',1,30000380,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(3899,'2015-03-10 22:38:43','2015-10-11 16:46:34',1,30005048,0,0,0,0,1,0,0,0,0,2,6,0,0,1,0,0,0,0,0,0,1,0,0,0),(3900,'2015-03-10 22:38:43','2015-03-10 22:38:43',1,30003434,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(3901,'2015-03-10 22:38:43','2015-03-10 22:38:43',1,30001147,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(3902,'2015-03-10 22:38:43','2015-03-10 22:38:43',1,30002273,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(3903,'2015-03-10 22:38:43','2015-10-11 16:46:34',1,30003581,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(3904,'2015-03-10 22:38:43','2015-03-10 22:38:43',1,30003940,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(3905,'2015-03-10 22:38:43','2015-10-11 16:46:34',1,30002714,1,0,0,0,0,0,0,2,0,0,0,0,0,0,1,2,1,0,1,1,1,0,0,0),(3906,'2015-03-10 22:38:43','2015-03-10 22:38:43',1,30002106,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(3907,'2015-03-10 22:38:43','2015-10-11 16:46:34',1,30004065,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1),(3908,'2015-03-10 22:38:43','2015-03-10 22:38:43',1,30001470,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(3909,'2015-03-10 22:38:43','2015-10-11 16:46:34',1,30000438,0,0,0,0,0,0,0,10,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(3910,'2015-03-10 22:38:43','2015-03-10 22:38:43',1,30001628,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(3911,'2015-03-10 22:38:43','2015-10-11 16:46:34',1,30004711,4,0,2,1,0,0,3,2,4,2,0,1,9,2,0,1,1,0,1,1,1,3,19,17),(3912,'2015-03-10 22:38:43','2015-10-11 16:46:34',1,30045333,0,0,0,0,5,4,1,0,0,0,1,1,2,2,0,0,2,0,0,0,0,1,2,1),(3913,'2015-03-10 22:38:43','2015-10-11 16:46:34',1,30005284,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0),(3914,'2015-03-10 22:38:43','2015-03-10 22:38:43',1,30004770,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(3915,'2015-03-10 22:38:43','2015-03-10 22:38:43',1,30000027,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(3916,'2015-03-10 22:38:43','2015-10-11 16:46:34',1,30004293,0,0,0,0,0,0,0,1,1,1,0,0,0,0,0,0,0,0,0,0,0,0,2,0),(3917,'2015-03-10 22:38:43','2015-10-11 16:46:34',1,30001863,2,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1),(3918,'2015-03-10 22:38:43','2015-03-10 22:38:43',1,30000738,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(3919,'2015-03-10 22:38:43','2015-03-10 22:38:43',1,30005162,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(3920,'2015-03-10 22:38:43','2015-03-10 22:38:43',1,30000421,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(3921,'2015-03-10 22:38:43','2015-03-10 22:38:43',1,30000727,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(3922,'2015-03-10 22:38:43','2015-03-10 22:38:43',1,30000990,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(3923,'2015-03-10 22:38:43','2015-10-11 16:46:34',1,30002733,0,1,1,1,0,0,0,1,0,0,1,0,0,1,0,0,0,0,0,1,0,0,1,0),(3924,'2015-03-10 22:38:43','2015-10-11 16:46:34',1,30004754,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,1,2,4,0,0,0),(3925,'2015-03-10 22:38:43','2015-10-11 16:46:34',1,30002662,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,2,3,2,0,0,0),(3926,'2015-03-10 22:38:43','2015-10-11 16:46:34',1,30000161,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,1,0,0,0),(3927,'2015-03-10 22:38:43','2015-03-10 22:38:43',1,30004395,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(3928,'2015-03-10 22:38:43','2015-10-11 16:46:34',1,30000978,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0),(3929,'2015-03-10 22:38:43','2015-10-11 16:46:34',1,30005147,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(3930,'2015-03-10 22:38:43','2015-10-11 16:46:34',1,30003283,0,0,0,0,0,0,0,1,0,0,0,0,0,1,0,0,0,1,0,0,0,0,0,0),(3931,'2015-03-10 22:38:43','2015-10-11 16:46:34',1,30001106,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2),(3932,'2015-03-10 22:38:43','2015-10-11 16:46:34',1,30002370,0,0,1,0,0,0,0,0,0,0,3,1,0,0,3,1,5,0,0,0,0,0,0,0),(3933,'2015-03-10 22:38:43','2015-03-10 22:38:43',1,30000316,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(3934,'2015-03-10 22:38:43','2015-03-10 22:38:43',1,30002290,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(3935,'2015-03-10 22:38:43','2015-03-10 22:38:43',1,30004647,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(3936,'2015-03-10 22:38:43','2015-10-11 16:46:34',1,30045353,7,4,5,4,8,9,7,15,3,6,14,10,10,5,4,4,2,2,12,16,7,3,6,3),(3937,'2015-03-10 22:38:43','2015-10-11 16:46:34',1,30002490,0,2,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(3938,'2015-03-10 22:38:43','2015-10-11 16:46:34',1,30002615,0,0,0,0,0,0,0,0,0,0,0,0,0,1,2,0,0,0,0,0,0,0,0,0),(3939,'2015-03-10 22:38:43','2015-03-10 22:38:43',1,30001310,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(3940,'2015-03-10 22:38:43','2015-03-10 22:38:43',1,30001449,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(3941,'2015-03-10 22:38:43','2015-03-10 22:38:43',1,30004787,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(3942,'2015-03-10 22:38:43','2015-10-11 16:46:34',1,30000797,13,0,1,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(3943,'2015-03-10 22:38:43','2015-03-10 22:38:43',1,30004389,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(3944,'2015-03-10 22:38:43','2015-10-11 16:46:34',1,30002001,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0),(3945,'2015-03-10 22:38:43','2015-03-10 22:38:43',1,30001326,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(3946,'2015-03-10 22:38:43','2015-10-11 16:46:34',1,30000872,1,0,0,0,0,0,1,0,0,1,0,0,0,1,1,1,0,0,0,0,0,0,0,0),(3947,'2015-03-10 22:38:43','2015-03-10 22:38:43',1,30000274,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(3948,'2015-03-10 22:38:43','2015-03-10 22:38:43',1,30004321,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(3949,'2015-03-10 22:38:43','2015-03-10 22:38:43',1,30002844,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(3950,'2015-03-10 22:38:43','2015-10-11 16:46:34',1,30000586,3,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,4,0,0,0,3,0,0),(3951,'2015-03-10 22:38:43','2015-10-11 16:46:34',1,30004737,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(3952,'2015-03-10 22:38:43','2015-10-11 16:46:34',1,30002132,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0),(3953,'2015-03-10 22:38:43','2015-03-10 22:38:43',1,30003222,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(3954,'2015-03-10 22:38:43','2015-03-10 22:38:43',1,30004749,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(3955,'2015-03-10 22:38:43','2015-10-11 16:46:34',1,30000682,0,0,3,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(3956,'2015-03-10 22:38:43','2015-03-10 22:38:43',1,30000432,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(3957,'2015-03-10 22:38:43','2015-10-11 16:46:34',1,30000256,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,1,0,0,0,0,0,0,0),(3958,'2015-03-10 22:38:43','2015-10-11 16:46:34',1,30000717,0,0,0,2,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,1,0),(3959,'2015-03-10 22:38:43','2015-03-10 22:38:43',1,30004337,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(3960,'2015-03-10 22:38:43','2015-10-11 16:46:34',1,30001838,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0),(3961,'2015-03-10 22:38:43','2015-03-10 22:38:43',1,30000235,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(3962,'2015-03-10 22:38:43','2015-03-10 22:38:43',1,30001196,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(3963,'2015-03-10 22:38:43','2015-10-11 16:46:35',1,30002471,0,0,0,1,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,0,0,0),(3964,'2015-03-10 22:38:43','2015-10-11 16:46:35',1,30001248,0,0,0,0,0,0,0,0,0,0,16,16,1,0,0,0,0,0,0,1,0,0,1,0),(3965,'2015-03-10 22:38:43','2015-03-10 22:38:43',1,30004054,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(3966,'2015-03-10 22:38:43','2015-03-10 22:38:43',1,30000618,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(3967,'2015-03-10 22:38:43','2015-10-11 16:46:35',1,30001562,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0),(3968,'2015-03-10 22:38:43','2015-10-11 16:46:35',1,30004229,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(3969,'2015-03-10 22:38:43','2015-03-10 22:38:43',1,30004571,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(3970,'2015-03-10 22:38:43','2015-10-11 16:46:35',1,30004845,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(3971,'2015-03-10 22:38:43','2015-03-10 22:38:43',1,30000507,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(3972,'2015-03-10 22:38:43','2015-10-11 16:46:35',1,30003112,0,0,0,1,0,0,0,0,0,3,0,0,0,1,0,0,0,1,0,0,1,0,0,0),(3973,'2015-03-10 22:38:43','2015-10-11 16:46:35',1,30003146,0,0,0,0,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(3974,'2015-03-10 22:38:43','2015-03-10 22:38:43',1,30003669,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(3975,'2015-03-10 22:38:43','2015-03-10 22:38:43',1,30003975,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(3976,'2015-03-10 22:38:43','2015-03-10 22:38:43',1,30000946,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(3977,'2015-03-10 22:38:43','2015-10-11 16:46:35',1,30000324,0,0,0,0,0,0,0,0,0,0,0,7,0,0,0,0,0,0,1,0,0,2,0,0),(3978,'2015-03-10 22:38:43','2015-10-11 16:46:35',1,30000715,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,5,0,0,0),(3979,'2015-03-10 22:38:43','2015-03-10 22:38:43',1,30004846,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(3980,'2015-03-10 22:38:43','2015-03-10 22:38:43',1,30001323,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(3981,'2015-03-10 22:38:43','2015-10-11 16:46:35',1,30000785,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(3982,'2015-03-10 22:38:43','2015-10-11 16:46:35',1,30001763,2,1,1,1,0,3,0,0,0,0,0,0,0,0,2,2,0,0,0,0,0,0,0,0),(3983,'2015-03-10 22:38:43','2015-03-10 22:38:43',1,30000413,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(3984,'2015-03-10 22:38:43','2015-10-11 16:46:35',1,30004066,0,0,0,1,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1),(3985,'2015-03-10 22:38:43','2015-03-10 22:38:43',1,30003183,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(3986,'2015-03-10 22:38:43','2015-03-10 22:38:43',1,30004408,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(3987,'2015-03-10 22:38:43','2015-10-11 16:46:35',1,30003714,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,1,1,1,0,0,0),(3988,'2015-03-10 22:38:43','2015-10-11 16:46:35',1,30001165,0,0,1,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0),(3989,'2015-03-10 22:38:43','2015-10-11 16:46:35',1,30002363,0,0,0,0,5,5,0,0,0,1,1,1,0,0,0,0,0,1,2,0,0,0,0,0),(3990,'2015-03-10 22:38:43','2015-10-11 16:46:35',1,30004744,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0),(3991,'2015-03-10 22:38:43','2015-10-11 16:46:35',1,30004855,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(3992,'2015-03-10 22:38:43','2015-03-10 22:38:43',1,30001080,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(3993,'2015-03-10 22:38:43','2015-03-10 22:38:43',1,30001935,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(3994,'2015-03-10 22:38:43','2015-03-10 22:38:43',1,30004343,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(3995,'2015-03-10 22:38:43','2015-03-10 22:38:43',1,30002138,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(3996,'2015-03-10 22:38:43','2015-03-10 22:38:43',1,30003221,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(3997,'2015-03-10 22:38:43','2015-10-11 16:46:35',1,30001246,0,0,0,0,0,0,0,0,0,0,2,1,0,1,0,1,1,0,0,2,1,0,0,1),(3998,'2015-03-10 22:38:43','2015-10-11 16:46:35',1,30001033,0,1,0,0,0,1,1,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(3999,'2015-03-10 22:38:43','2015-10-11 16:46:35',1,30000899,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(4000,'2015-03-10 22:38:43','2015-03-10 22:38:43',1,30003164,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(4001,'2015-03-10 22:38:43','2015-03-10 22:38:43',1,30003181,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(4002,'2015-03-10 22:38:43','2015-10-11 16:46:35',1,30001766,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,0,0,0,0,0,0,0),(4003,'2015-03-10 22:38:43','2015-03-10 22:38:43',1,30001564,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(4004,'2015-03-10 22:38:43','2015-03-10 22:38:43',1,30001772,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(4005,'2015-03-10 22:38:43','2015-03-10 22:38:43',1,30001749,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(4006,'2015-03-10 22:38:43','2015-10-11 16:46:35',1,30001305,0,0,0,0,0,0,0,0,0,1,0,0,0,1,0,0,0,0,0,0,0,0,0,0),(4007,'2015-03-10 22:38:43','2015-03-10 22:38:43',1,30002364,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(4008,'2015-03-10 22:38:43','2015-03-10 22:38:43',1,30005144,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(4009,'2015-03-10 22:38:43','2015-10-11 16:46:35',1,30002104,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0),(4010,'2015-03-10 22:38:43','2015-03-10 22:38:43',1,30004837,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(4011,'2015-03-10 22:38:43','2015-10-11 16:46:35',1,30000505,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0),(4012,'2015-03-10 22:38:43','2015-03-10 22:38:43',1,30001467,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(4013,'2015-03-10 22:38:43','2015-03-10 22:38:43',1,30004448,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(4014,'2015-03-10 22:38:43','2015-03-10 22:38:43',1,30002307,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(4015,'2015-03-10 22:38:43','2015-03-10 22:38:43',1,30005172,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(4016,'2015-03-10 22:38:43','2015-03-10 22:38:43',1,30002431,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(4017,'2015-03-10 22:38:43','2015-03-10 22:38:43',1,30000475,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(4018,'2015-03-10 22:38:43','2015-03-10 22:38:43',1,30004857,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(4019,'2015-03-10 22:38:43','2015-03-10 22:38:43',1,30000941,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(4020,'2015-03-10 22:38:43','2015-10-11 16:46:35',1,30001903,0,0,0,1,0,0,0,0,0,0,0,0,0,0,2,3,3,0,0,1,1,0,0,0),(4021,'2015-03-10 22:38:43','2015-10-11 16:46:35',1,30002186,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,4,0,0,0),(4022,'2015-03-10 22:38:43','2015-03-10 22:38:43',1,30002288,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(4023,'2015-03-10 22:38:43','2015-03-10 22:38:43',1,30001473,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(4024,'2015-03-10 22:38:43','2015-03-10 22:38:43',1,30003739,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(4025,'2015-03-10 22:38:43','2015-10-11 16:46:35',1,30001783,0,0,0,0,0,0,0,0,0,0,1,1,0,0,2,3,2,0,0,1,1,0,0,0),(4026,'2015-03-10 22:38:43','2015-10-11 16:46:35',1,30002479,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0),(4027,'2015-03-10 22:38:43','2015-10-11 16:46:35',1,30002893,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,1,0,0,0,1,0,0,0,2),(4028,'2015-03-10 22:38:43','2015-10-11 16:46:35',1,30000722,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,1),(4029,'2015-03-10 22:38:43','2015-03-10 22:38:43',1,30000938,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(4030,'2015-03-10 22:38:43','2015-10-11 16:46:35',1,30001565,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0),(4031,'2015-03-10 22:38:43','2015-10-11 16:46:35',1,30003719,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,2),(4032,'2015-03-10 22:38:43','2015-03-10 22:38:43',1,30004815,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(4033,'2015-03-10 22:38:43','2015-03-10 22:38:43',1,30000481,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(4034,'2015-03-10 22:38:43','2015-10-11 16:46:35',1,30001596,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,1,0,0,0,0,2,0),(4035,'2015-03-10 22:38:43','2015-03-10 22:38:43',1,30003174,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(4036,'2015-03-10 22:38:43','2015-10-11 16:46:35',1,30001137,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(4037,'2015-03-10 22:38:43','2015-03-10 22:38:43',1,30004909,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(4038,'2015-03-10 22:38:43','2015-10-11 16:46:35',1,30001163,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,2,0,0,0,0,0),(4039,'2015-03-10 22:38:43','2015-03-10 22:38:43',1,30004198,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(4040,'2015-03-10 22:38:43','2015-10-11 16:46:35',1,30000793,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,4,1,0),(4041,'2015-03-10 22:38:43','2015-03-10 22:38:43',1,30001617,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(4042,'2015-03-10 22:38:43','2015-10-11 16:46:35',1,30003037,0,0,1,0,1,0,1,0,0,1,0,2,0,0,1,1,0,0,2,2,2,1,0,2),(4043,'2015-03-10 22:38:43','2015-03-10 22:38:43',1,30004610,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(4044,'2015-03-10 22:38:43','2015-10-11 16:46:35',1,30003292,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0),(4045,'2015-03-10 22:38:43','2015-03-10 22:38:43',1,30002829,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(4046,'2015-03-10 22:38:43','2015-10-11 16:46:35',1,30004714,0,0,0,0,0,0,0,0,0,0,0,3,0,0,0,0,0,0,0,0,0,0,0,0),(4047,'2015-03-10 22:38:43','2015-03-10 22:38:43',1,30000526,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(4048,'2015-03-10 22:38:43','2015-10-11 16:46:35',1,30004354,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0),(4049,'2015-03-10 22:38:43','2015-10-11 16:46:35',1,30004002,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(4050,'2015-03-10 22:38:43','2015-10-11 16:46:35',1,30004041,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,0,0,0,0,0,0),(4051,'2015-03-10 22:38:43','2015-10-11 16:46:35',1,30004027,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,2,1,0,0,0,0,0,0,0),(4052,'2015-03-10 22:38:43','2015-03-10 22:38:43',1,30003244,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(4053,'2015-03-10 22:38:43','2015-03-10 22:38:43',1,30004752,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(4054,'2015-03-10 22:38:43','2015-03-10 22:38:43',1,30000767,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(4055,'2015-03-10 22:38:43','2015-10-11 16:46:35',1,30003266,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0),(4056,'2015-03-10 22:38:43','2015-10-11 16:46:35',1,30004402,0,2,0,0,0,0,2,0,0,0,0,1,0,1,0,0,0,0,1,0,0,0,0,0),(4057,'2015-03-10 22:38:43','2015-03-10 22:38:43',1,30003236,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(4058,'2015-03-10 22:38:43','2015-10-11 16:46:35',1,30001107,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,0,0,1),(4059,'2015-03-10 22:38:43','2015-03-10 22:38:43',1,30002330,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(4060,'2015-03-10 22:38:43','2015-03-10 22:38:43',1,30002837,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(4061,'2015-03-10 22:38:43','2015-03-10 22:38:43',1,30002002,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(4062,'2015-03-10 22:38:43','2015-10-11 16:46:35',1,30000658,0,0,0,0,0,0,1,0,0,0,0,0,0,0,5,0,0,0,0,0,0,0,0,0),(4063,'2015-03-10 22:38:43','2015-03-10 22:38:43',1,30002324,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(4064,'2015-03-10 22:38:43','2015-03-10 22:38:43',1,30005099,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(4065,'2015-03-10 22:38:43','2015-03-10 22:38:43',1,30003151,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(4066,'2015-03-10 22:38:43','2015-10-11 16:46:35',1,30005112,0,0,0,2,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(4067,'2015-03-10 22:38:43','2015-10-11 16:46:35',1,30004648,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(4068,'2015-03-10 22:38:43','2015-03-10 22:38:43',1,30000950,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(4069,'2015-03-10 22:38:43','2015-03-10 22:38:43',1,30003127,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(4070,'2015-03-10 22:38:43','2015-03-10 22:38:43',1,30001491,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(4071,'2015-03-10 22:38:43','2015-10-11 16:46:35',1,30001189,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0),(4072,'2015-03-10 22:38:43','2015-10-11 16:46:35',1,30001265,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0),(4073,'2015-03-10 22:38:43','2015-10-11 16:46:35',1,30002013,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(4074,'2015-03-10 22:38:43','2015-03-10 22:38:43',1,30004522,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(4075,'2015-03-10 22:38:43','2015-10-11 16:46:35',1,30002182,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,4,0,0,0),(4076,'2015-03-10 22:38:43','2015-10-11 16:46:35',1,30000291,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0),(4077,'2015-03-10 22:38:43','2015-03-10 22:38:43',1,30001577,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(4078,'2015-03-10 22:38:43','2015-03-10 22:38:43',1,30001102,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(4079,'2015-03-10 22:38:43','2015-03-10 22:38:43',1,30000320,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(4080,'2015-03-10 22:38:43','2015-03-10 22:38:43',1,30004853,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(4081,'2015-03-10 22:38:43','2015-10-11 16:46:35',1,30003631,0,0,0,1,2,0,2,3,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(4082,'2015-03-10 22:38:43','2015-10-11 16:46:35',1,30003218,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(4083,'2015-03-10 22:38:43','2015-10-11 16:46:35',1,30002135,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0),(4084,'2015-03-10 22:38:43','2015-03-10 22:38:43',1,30000563,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(4085,'2015-03-10 22:38:43','2015-10-11 16:46:35',1,30004871,0,0,0,0,0,0,0,0,0,2,0,0,0,0,0,0,0,0,0,4,2,0,0,0),(4086,'2015-03-10 22:38:43','2015-03-10 22:38:43',1,30001450,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(4087,'2015-03-10 22:38:43','2015-03-10 22:38:43',1,30002874,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(4088,'2015-03-10 22:38:43','2015-03-10 22:38:43',1,30004891,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(4089,'2015-03-10 22:38:43','2015-10-11 16:46:35',1,30003769,0,0,1,0,0,0,0,0,1,0,2,1,0,4,4,0,0,0,0,0,0,0,0,0),(4090,'2015-03-10 22:38:43','2015-03-10 22:38:43',1,30001806,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(4091,'2015-03-10 22:38:43','2015-10-11 16:46:35',1,30004566,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0),(4092,'2015-03-10 22:38:43','2015-03-10 22:38:43',1,30004473,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(4093,'2015-03-10 22:38:43','2015-03-10 22:38:43',1,30000589,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(4094,'2015-03-10 22:38:43','2015-03-10 22:38:43',1,30004339,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(4095,'2015-03-10 22:38:43','2015-03-10 22:38:43',1,30004727,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(4096,'2015-03-10 22:38:43','2015-10-11 16:46:35',1,30002010,1,0,0,0,1,1,1,0,0,0,0,0,0,0,2,0,0,0,0,0,0,0,0,0),(4097,'2015-03-10 22:38:43','2015-03-10 22:38:43',1,30001619,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(4098,'2015-03-10 22:38:43','2015-03-10 22:38:43',1,30001859,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(4099,'2015-03-10 22:38:43','2015-03-10 22:38:43',1,30002894,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(4100,'2015-03-10 22:38:43','2015-03-10 22:38:43',1,30003209,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(4101,'2015-03-10 22:38:43','2015-03-10 22:38:43',1,30000768,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(4102,'2015-03-10 22:38:43','2015-03-10 22:38:43',1,30004485,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(4103,'2015-03-10 22:38:43','2015-10-11 16:46:35',1,30001018,0,2,2,0,0,0,1,0,0,0,0,0,0,0,0,0,0,1,0,0,1,1,0,2),(4104,'2015-03-10 22:38:43','2015-10-11 16:46:35',1,30002958,0,0,0,2,1,0,4,0,0,0,1,1,1,1,0,1,1,0,0,2,0,1,1,0),(4105,'2015-03-10 22:38:43','2015-10-11 16:46:35',1,30000033,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,2,0,0,0,0,0,0),(4106,'2015-03-10 22:38:43','2015-10-11 16:46:35',1,30002726,0,0,0,0,0,1,0,0,1,1,0,0,0,0,1,1,0,0,1,0,0,0,0,0),(4107,'2015-03-10 22:38:43','2015-03-10 22:38:43',1,30003941,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(4108,'2015-03-10 22:38:43','2015-10-11 16:46:35',1,30002052,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,3,0,0,0),(4109,'2015-03-10 22:38:43','2015-03-10 22:38:43',1,30003914,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(4110,'2015-03-10 22:38:43','2015-10-11 16:46:35',1,30002982,4,0,3,0,4,2,0,2,0,0,0,0,0,1,0,1,1,0,0,3,3,1,0,0),(4111,'2015-03-10 22:38:43','2015-03-10 22:38:43',1,30002839,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(4112,'2015-03-10 22:38:43','2015-10-11 16:46:35',1,30045315,1,5,0,1,0,0,3,0,1,1,0,0,0,0,1,1,0,0,1,0,2,2,0,1),(4113,'2015-03-10 22:38:43','2015-10-11 16:46:35',1,30002772,0,0,0,0,1,1,0,0,0,0,1,1,0,1,0,1,1,0,0,2,1,0,0,0),(4114,'2015-03-10 22:38:43','2015-10-11 16:46:35',1,30045349,3,3,0,4,3,3,1,1,0,1,3,2,2,2,1,1,2,3,1,7,0,3,5,4),(4115,'2015-03-10 22:38:43','2015-10-11 16:46:35',1,30002239,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1),(4116,'2015-03-10 22:38:43','2015-10-11 16:46:35',1,30002718,1,0,7,4,14,6,1,3,4,18,21,18,2,18,23,6,7,7,0,9,18,35,22,4),(4117,'2015-03-10 22:38:43','2015-10-11 16:46:35',1,30001727,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0),(4118,'2015-03-10 22:38:43','2015-10-11 16:46:35',1,30005319,0,0,1,0,2,1,1,0,1,0,1,1,0,0,0,1,3,1,0,0,0,0,0,1),(4119,'2015-03-10 22:38:43','2015-03-10 22:38:43',1,30005085,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(4120,'2015-03-10 22:38:43','2015-10-11 16:46:35',1,30005080,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0),(4121,'2015-03-10 22:38:43','2015-10-11 16:46:35',1,30003530,0,0,0,0,0,0,0,0,0,1,0,0,0,0,1,1,1,2,0,2,1,1,0,1),(4122,'2015-03-10 22:38:43','2015-10-11 16:46:35',1,30003495,0,0,0,0,0,0,0,0,0,0,0,2,1,0,0,0,0,0,0,0,0,0,0,0),(4123,'2015-03-10 22:38:43','2015-03-10 22:38:43',1,30002212,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(4124,'2015-03-10 22:38:43','2015-10-11 16:46:35',1,30004269,1,1,0,0,0,0,0,0,0,1,0,0,0,0,0,0,1,0,0,0,0,0,0,0),(4125,'2015-03-10 22:38:43','2015-03-10 22:38:43',1,30000025,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(4126,'2015-03-10 22:38:43','2015-03-10 22:38:43',1,30002227,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(4127,'2015-03-10 22:38:43','2015-03-10 22:38:43',1,30003602,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(4128,'2015-03-10 22:38:43','2015-03-10 22:38:43',1,30001417,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(4129,'2015-03-10 22:38:43','2015-10-11 16:46:35',1,30001373,0,0,0,0,0,0,0,0,0,0,0,2,0,1,0,0,0,0,0,0,0,0,0,0),(4130,'2015-03-10 22:38:43','2015-10-11 16:46:35',1,30002697,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,0,1,1),(4131,'2015-03-10 22:38:43','2015-03-10 22:38:43',1,30004116,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(4132,'2015-03-10 22:38:43','2015-10-11 16:46:35',1,30002271,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(4133,'2015-03-10 22:38:43','2015-03-10 22:38:43',1,30000406,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(4134,'2015-03-10 22:38:43','2015-03-10 22:38:43',1,30003104,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(4135,'2015-03-10 22:38:43','2015-10-11 16:46:35',1,30004742,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,1,0,0),(4136,'2015-03-10 22:38:43','2015-03-10 22:38:43',1,30000805,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(4137,'2015-03-10 22:38:43','2015-03-10 22:38:43',1,30002023,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(4138,'2015-03-10 22:38:43','2015-10-11 16:46:35',1,30004577,0,0,0,0,0,0,0,0,0,0,1,0,0,1,1,0,1,1,0,0,0,4,3,1),(4139,'2015-03-10 22:38:43','2015-03-10 22:38:43',1,30002140,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(4140,'2015-03-10 22:38:43','2015-10-11 16:46:35',1,30005328,0,0,1,0,1,0,0,1,0,1,0,0,1,1,1,1,5,1,1,0,1,0,1,3),(4141,'2015-03-10 22:38:43','2015-10-11 16:46:35',1,30000160,0,0,1,0,0,0,0,1,0,0,0,0,1,2,0,0,1,1,4,0,3,0,0,0),(4142,'2015-03-10 22:38:43','2015-10-11 16:46:35',1,30045354,9,1,9,3,3,3,6,5,3,12,3,4,7,4,5,4,4,7,12,2,11,4,5,18),(4143,'2015-03-10 22:38:43','2015-10-11 16:46:35',1,30001700,1,0,0,0,1,0,0,0,1,0,0,0,0,0,0,1,1,0,0,0,0,1,0,0),(4144,'2015-03-10 22:38:43','2015-10-11 16:46:35',1,30003829,1,0,3,2,3,2,2,1,0,2,3,4,3,0,1,3,5,0,1,23,4,1,0,3),(4145,'2015-03-10 22:38:43','2015-10-11 16:46:35',1,30002510,4,3,8,6,4,3,7,1,4,1,0,1,3,6,4,2,3,9,5,13,18,6,3,2),(4146,'2015-03-10 22:38:43','2015-10-11 16:46:35',1,30004970,2,2,1,0,2,2,2,1,2,5,3,2,2,1,0,1,3,1,0,4,3,1,4,1),(4147,'2015-03-10 22:38:43','2015-10-11 16:46:35',1,30003564,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(4148,'2015-03-10 22:38:43','2015-03-10 22:38:43',1,30000780,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(4149,'2015-03-10 22:38:43','2015-10-11 16:46:35',1,30002056,3,0,1,0,2,3,0,0,0,0,0,0,0,10,3,1,0,0,1,0,1,4,2,2),(4150,'2015-03-10 22:38:43','2015-10-11 16:46:35',1,30003851,1,1,0,0,0,2,0,0,0,0,1,1,0,0,0,0,0,1,0,0,0,1,3,0),(4151,'2015-03-10 22:38:43','2015-10-11 16:46:35',1,30003391,0,0,0,1,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,2,2,0,0,0),(4152,'2015-03-10 22:38:43','2015-10-11 16:46:35',1,30003880,0,0,0,0,0,0,0,0,0,3,0,0,0,0,2,0,0,0,0,0,0,0,0,0),(4153,'2015-03-10 22:38:43','2015-10-11 16:46:35',1,30001686,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,5,0,0,0,0,0,0),(4154,'2015-03-10 22:38:43','2015-10-11 16:46:35',1,30002256,0,0,0,0,0,0,1,0,0,0,0,1,2,0,0,0,0,0,2,1,0,0,0,1),(4155,'2015-03-10 22:38:43','2015-10-11 16:46:35',1,30003803,0,2,0,0,2,0,0,1,0,0,0,0,0,0,1,0,0,0,0,0,0,1,0,0),(4156,'2015-03-10 22:38:43','2015-03-10 22:38:43',1,30001475,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(4157,'2015-03-10 22:38:43','2015-03-10 22:38:43',1,30000385,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(4158,'2015-03-10 22:38:43','2015-03-10 22:38:43',1,30003994,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(4159,'2015-03-10 22:38:43','2015-10-11 16:46:35',1,30003333,0,0,0,2,0,0,4,0,0,0,0,0,0,1,0,1,1,0,0,0,0,0,0,0),(4160,'2015-03-10 22:38:43','2015-03-10 22:38:43',1,30004724,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(4161,'2015-03-10 22:38:43','2015-03-10 22:38:43',1,30003229,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(4162,'2015-03-10 22:38:43','2015-03-10 22:38:43',1,30002129,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(4163,'2015-03-10 22:38:43','2015-03-10 22:38:43',1,30002491,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(4164,'2015-03-10 22:38:43','2015-10-11 16:46:35',1,30002954,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0),(4165,'2015-03-10 22:38:43','2015-03-10 22:38:43',1,30004225,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(4166,'2015-03-10 22:38:43','2015-03-10 22:38:43',1,30004812,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(4167,'2015-03-10 22:38:43','2015-03-10 22:38:43',1,30002151,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(4168,'2015-03-10 22:38:43','2015-03-10 22:38:43',1,30004918,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(4169,'2015-03-10 22:38:43','2015-10-11 16:46:35',1,30002993,0,0,0,0,0,0,0,0,0,0,0,0,0,0,4,4,1,0,3,0,0,0,1,0),(4170,'2015-03-10 22:38:43','2015-03-10 22:38:43',1,30003457,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(4171,'2015-03-10 22:38:43','2015-10-11 16:46:35',1,30003916,0,0,0,0,0,0,0,0,0,0,1,0,0,1,1,0,0,0,0,1,3,0,0,1),(4172,'2015-03-10 22:38:43','2015-10-11 16:46:35',1,30002241,1,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,1,0,0,0,0,0,0,0),(4173,'2015-03-10 22:38:43','2015-10-11 16:46:35',1,30001650,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(4174,'2015-03-10 22:38:43','2015-03-10 22:38:43',1,30004472,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(4175,'2015-03-10 22:38:43','2015-03-10 22:38:43',1,30001090,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(4176,'2015-03-10 22:38:43','2015-03-10 22:38:43',1,30004953,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(4177,'2015-03-10 22:38:43','2015-10-11 16:46:35',1,30003260,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0),(4178,'2015-03-10 22:38:43','2015-03-10 22:38:43',1,30002380,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(4179,'2015-03-10 22:38:43','2015-03-10 22:38:43',1,30003626,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(4180,'2015-03-10 22:38:43','2015-03-10 22:38:43',1,30004015,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(4181,'2015-03-10 22:38:43','2015-03-10 22:38:43',1,30004494,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(4182,'2015-03-10 22:38:43','2015-10-11 16:46:35',1,30001902,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,1,0,0,0),(4183,'2015-03-10 22:38:43','2015-10-11 16:46:35',1,30003353,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,4,0),(4184,'2015-03-10 22:38:43','2015-10-11 16:46:35',1,30002443,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0),(4185,'2015-03-10 22:38:43','2015-03-10 22:38:43',1,30003610,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(4186,'2015-03-10 22:38:43','2015-10-11 16:46:35',1,30001028,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,1,3,2,1,1,1),(4187,'2015-03-10 22:38:43','2015-03-10 22:38:43',1,30001520,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(4188,'2015-03-10 22:38:43','2015-10-11 16:46:35',1,30001187,0,0,0,0,0,0,1,0,0,1,2,1,0,0,1,2,1,0,0,0,0,0,0,1),(4189,'2015-03-10 22:38:43','2015-03-10 22:38:43',1,30000673,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(4190,'2015-03-10 22:38:43','2015-03-10 22:38:43',1,30002322,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(4191,'2015-03-10 22:38:43','2015-10-11 16:46:35',1,30003246,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0),(4192,'2015-03-10 22:38:43','2015-10-11 16:46:35',1,30002926,0,1,0,1,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0),(4193,'2015-03-10 22:38:43','2015-03-10 22:38:43',1,30004370,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(4194,'2015-03-10 22:38:43','2015-10-11 16:46:35',1,30045325,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0),(4195,'2015-03-10 22:38:43','2015-10-11 16:46:35',1,30001983,1,0,0,0,0,0,2,0,0,3,6,5,0,4,6,5,2,1,0,0,19,3,2,4),(4196,'2015-03-10 22:38:43','2015-03-10 22:38:43',1,30000815,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(4197,'2015-03-10 22:38:43','2015-10-11 16:46:35',1,30002534,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0),(4198,'2015-03-10 22:38:43','2015-10-11 16:46:35',1,30003395,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(4199,'2015-03-10 22:38:43','2015-10-11 16:46:35',1,30004080,1,0,0,0,0,0,0,0,0,1,0,1,0,0,0,1,1,0,0,0,0,2,0,1),(4200,'2015-03-10 22:38:43','2015-10-11 16:46:35',1,30002550,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,2,1,0,0,1,0,0,0,0),(4201,'2015-03-10 22:38:43','2015-03-10 22:38:43',1,30003081,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(4202,'2015-03-10 22:38:43','2015-10-11 16:46:35',1,30002721,0,0,0,0,1,1,0,0,0,0,0,0,2,0,3,1,0,1,1,0,0,0,0,0),(4203,'2015-03-10 22:38:43','2015-03-10 22:38:43',1,30002033,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(4204,'2015-03-10 22:38:43','2015-03-10 22:38:43',1,30002426,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(4205,'2015-03-10 22:38:43','2015-10-11 16:46:35',1,30002975,7,0,0,0,0,0,1,0,0,0,0,0,0,1,0,0,0,1,0,1,0,1,0,1),(4206,'2015-03-10 22:38:43','2015-03-10 22:38:43',1,30001936,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(4207,'2015-03-10 22:38:43','2015-10-11 16:46:35',1,30004560,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0),(4208,'2015-03-10 22:38:43','2015-10-11 16:46:35',1,30001924,0,0,1,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,2,0,1),(4209,'2015-03-10 22:38:43','2015-03-10 22:38:43',1,30001320,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(4210,'2015-03-10 22:38:43','2015-03-10 22:38:43',1,30000359,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(4211,'2015-03-10 22:38:43','2015-03-10 22:38:43',1,30002039,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(4212,'2015-03-10 22:38:43','2015-10-11 16:46:35',1,30000790,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0),(4213,'2015-03-10 22:38:43','2015-10-11 16:46:35',1,30001830,0,0,0,3,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(4214,'2015-03-10 22:38:43','2015-03-10 22:38:43',1,30002880,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(4215,'2015-03-10 22:38:43','2015-10-11 16:46:35',1,30001259,0,3,0,0,0,0,0,1,0,0,0,0,0,0,0,0,1,0,0,0,1,0,0,0),(4216,'2015-03-10 22:38:43','2015-03-10 22:38:43',1,30001931,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(4217,'2015-03-10 22:38:43','2015-03-10 22:38:43',1,30001511,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(4218,'2015-03-10 22:38:43','2015-03-10 22:38:43',1,30001139,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(4219,'2015-03-10 22:38:43','2015-03-10 22:38:43',1,30003362,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(4220,'2015-03-10 22:38:43','2015-10-11 16:46:35',1,30000511,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(4221,'2015-03-10 22:38:43','2015-03-10 22:38:43',1,30001773,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(4222,'2015-03-10 22:38:43','2015-03-10 22:38:43',1,30004516,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(4223,'2015-03-10 22:38:43','2015-03-10 22:38:43',1,30000377,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(4224,'2015-03-10 22:38:43','2015-10-11 16:46:35',1,30002183,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0),(4225,'2015-03-10 22:38:43','2015-10-11 16:46:35',1,30002249,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0),(4226,'2015-03-10 22:38:43','2015-10-11 16:46:35',1,30003845,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,1,0,0,0,0),(4227,'2015-03-10 22:38:43','2015-10-11 16:46:35',1,30001123,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(4228,'2015-03-10 22:38:43','2015-10-11 16:46:35',1,30001724,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(4229,'2015-03-10 22:38:43','2015-10-11 16:46:35',1,30001408,4,0,0,1,4,0,1,2,0,0,1,0,0,2,2,1,0,0,0,0,1,0,0,0),(4230,'2015-03-10 22:38:43','2015-03-10 22:38:43',1,30002326,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(4231,'2015-03-10 22:38:43','2015-10-11 16:46:35',1,30001900,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,1,0,0),(4232,'2015-03-10 22:38:43','2015-10-11 16:46:35',1,30000651,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(4233,'2015-03-10 22:38:43','2015-10-11 16:46:35',1,30000298,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,0,0,0,0,0,0,0),(4234,'2015-03-10 22:38:43','2015-10-11 16:46:35',1,30001943,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,0,0),(4235,'2015-03-10 22:38:43','2015-03-10 22:38:43',1,30001142,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(4236,'2015-03-10 22:38:43','2015-03-10 22:38:43',1,30001563,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(4237,'2015-03-10 22:38:43','2015-03-10 22:38:43',1,30001138,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(4238,'2015-03-10 22:38:43','2015-03-10 22:38:43',1,30005119,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(4239,'2015-03-10 22:38:43','2015-10-11 16:46:35',1,30000712,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1),(4240,'2015-03-10 22:38:43','2015-10-11 16:46:35',1,30003410,0,0,1,1,0,0,0,0,0,0,2,2,0,1,0,1,1,1,1,1,2,1,3,0),(4241,'2015-03-10 22:38:43','2015-03-10 22:38:43',1,30004963,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(4242,'2015-03-10 22:38:43','2015-03-10 22:38:43',1,30000477,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(4243,'2015-03-10 22:38:43','2015-03-10 22:38:43',1,30000834,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(4244,'2015-03-10 22:38:43','2015-03-10 22:38:43',1,30005105,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(4245,'2015-03-10 22:38:43','2015-10-11 16:46:35',1,30005188,0,0,0,0,0,0,11,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(4246,'2015-03-10 22:38:43','2015-03-10 22:38:43',1,30002022,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(4247,'2015-03-10 22:38:43','2015-03-10 22:38:43',1,30003628,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(4248,'2015-03-10 22:38:43','2015-10-11 16:46:35',1,30001308,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(4249,'2015-03-10 22:38:43','2015-03-10 22:38:43',1,30000501,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(4250,'2015-03-10 22:38:43','2015-03-10 22:38:43',1,30004776,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(4251,'2015-03-10 22:38:43','2015-03-10 22:38:43',1,30004819,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(4252,'2015-03-10 22:38:43','2015-03-10 22:38:43',1,30004332,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(4253,'2015-03-10 22:38:43','2015-10-11 16:46:35',1,30001918,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,0,0,0,0,0,0,0),(4254,'2015-03-10 22:38:43','2015-10-11 16:46:35',1,30001591,0,0,0,0,0,0,0,6,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(4255,'2015-03-10 22:38:43','2015-03-10 22:38:43',1,30001893,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(4256,'2015-03-10 22:38:43','2015-10-11 16:46:35',1,30002912,1,0,0,0,0,0,1,0,1,0,0,0,1,0,0,0,0,0,1,0,0,0,2,0),(4257,'2015-03-10 22:38:43','2015-10-11 16:46:35',1,30000657,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,0,0,0,0,0,0,0,0,0),(4258,'2015-03-10 22:38:43','2015-10-11 16:46:35',1,30003611,0,1,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,1),(4259,'2015-03-10 22:38:43','2015-03-10 22:38:43',1,30003340,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(4260,'2015-03-10 22:38:43','2015-03-10 22:38:43',1,30003629,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(4261,'2015-03-10 22:38:43','2015-03-10 22:38:43',1,30004683,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(4262,'2015-03-10 22:38:43','2015-10-11 16:46:35',1,30002888,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0),(4263,'2015-03-10 22:38:43','2015-03-10 22:38:43',1,30002017,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(4264,'2015-03-10 22:38:43','2015-03-10 22:38:43',1,30000260,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(4265,'2015-03-10 22:38:43','2015-03-10 22:38:43',1,30000388,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(4266,'2015-03-10 22:38:43','2015-10-11 16:46:35',1,30001088,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(4267,'2015-03-10 22:38:43','2015-03-10 22:38:43',1,30001176,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(4268,'2015-03-10 22:38:43','2015-10-11 16:46:35',1,30003368,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0),(4269,'2015-03-10 22:38:43','2015-03-10 22:38:43',1,30004172,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(4270,'2015-03-10 22:38:43','2015-03-10 22:38:43',1,30004886,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(4271,'2015-03-10 22:38:43','2015-03-10 22:38:43',1,30000753,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(4272,'2015-03-10 22:38:43','2015-03-10 22:38:43',1,30000667,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(4273,'2015-03-10 22:38:43','2015-03-10 22:38:43',1,30001030,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(4274,'2015-03-10 22:38:43','2015-10-11 16:46:35',1,30001237,1,0,0,0,0,0,0,0,1,0,0,0,1,1,0,0,0,0,0,0,0,0,0,0),(4275,'2015-03-10 22:38:43','2015-03-10 22:38:43',1,30004805,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(4276,'2015-03-10 22:38:43','2015-03-10 22:38:43',1,30001471,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(4277,'2015-03-10 22:38:43','2015-03-10 22:38:43',1,30001145,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(4278,'2015-03-10 22:38:43','2015-10-11 16:46:35',1,30000284,1,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0),(4279,'2015-03-10 22:38:43','2015-03-10 22:38:43',1,30003257,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(4280,'2015-03-10 22:38:43','2015-10-11 16:46:35',1,30000886,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,1,0,0,0,0,0,0,0,0),(4281,'2015-03-10 22:38:43','2015-03-10 22:38:43',1,30001891,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(4282,'2015-03-10 22:38:43','2015-03-10 22:38:43',1,30000389,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(4283,'2015-03-10 22:38:43','2015-10-11 16:46:35',1,30003741,0,1,1,0,0,0,0,0,0,0,0,1,0,2,0,0,0,0,0,0,0,0,1,0),(4284,'2015-03-10 22:38:43','2015-10-11 16:46:35',1,30003506,0,2,2,0,0,0,2,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0),(4285,'2015-03-10 22:38:43','2015-10-11 16:46:35',1,30001386,0,0,0,2,0,0,2,0,0,0,0,0,1,1,0,0,0,0,0,0,7,2,0,1),(4286,'2015-03-10 22:38:43','2015-10-11 16:46:35',1,30003894,0,0,0,0,0,0,0,0,0,0,2,3,1,0,0,0,0,0,0,0,0,0,0,1),(4287,'2015-03-10 22:38:43','2015-10-11 16:46:35',1,30001675,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(4288,'2015-03-10 22:38:43','2015-10-11 16:46:35',1,30004242,0,7,5,3,0,2,2,4,0,0,3,4,2,0,0,0,0,1,0,6,7,0,5,4),(4289,'2015-03-10 22:38:43','2015-03-10 22:38:43',1,30002251,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(4290,'2015-03-10 22:38:43','2015-10-11 16:46:35',1,30031672,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0),(4291,'2015-03-10 22:38:43','2015-03-10 22:38:43',1,30002279,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(4292,'2015-03-10 22:38:43','2015-10-11 16:46:35',1,30003879,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1),(4293,'2015-03-10 22:38:43','2015-10-11 16:46:35',1,30001719,1,1,0,2,0,1,0,0,0,2,3,2,0,0,1,1,0,4,1,0,0,1,2,3),(4294,'2015-03-10 22:38:43','2015-10-11 16:46:35',1,30002298,0,0,0,1,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(4295,'2015-03-10 22:38:43','2015-10-11 16:46:35',1,30003474,0,1,0,0,0,0,2,0,0,0,1,1,1,2,5,5,3,1,1,7,6,0,1,1),(4296,'2015-03-10 22:38:43','2015-10-11 16:46:35',1,30002259,0,0,0,1,0,0,0,0,0,0,0,1,0,0,0,0,0,1,0,0,0,0,0,0),(4297,'2015-03-10 22:38:43','2015-10-11 16:46:35',1,30003518,0,0,1,0,0,1,0,0,0,0,1,1,0,0,1,0,0,0,0,0,0,0,0,0),(4298,'2015-03-10 22:38:43','2015-10-11 16:46:35',1,30003086,2,3,0,3,2,1,0,0,0,3,1,1,1,1,2,0,1,0,0,0,0,0,3,2),(4299,'2015-03-10 22:38:43','2015-10-11 16:46:35',1,30000508,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,1),(4300,'2015-03-10 22:38:43','2015-10-11 16:46:35',1,30003090,4,0,1,0,0,1,0,0,0,0,5,5,0,0,3,3,0,1,0,2,3,1,0,1),(4301,'2015-03-10 22:38:43','2015-10-11 16:46:35',1,30003079,2,0,1,1,3,3,0,0,1,3,0,2,3,2,0,1,1,0,0,5,4,2,3,0),(4302,'2015-03-10 22:38:43','2015-03-10 22:38:43',1,30002745,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(4303,'2015-03-10 22:38:43','2015-10-11 16:46:35',1,30002816,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(4304,'2015-03-10 22:38:43','2015-10-11 16:46:35',1,30000146,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,1,1,0,1,0,0,0,0,0),(4305,'2015-03-10 22:38:43','2015-10-11 16:46:35',1,30010141,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,2,1,0,0,0),(4306,'2015-03-10 22:38:43','2015-10-11 16:46:35',1,30004299,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,1,2,0,1,1,1),(4307,'2015-03-10 22:38:43','2015-10-11 16:46:35',1,30002215,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0),(4308,'2015-03-10 22:38:43','2015-10-11 16:46:35',1,30000167,0,0,0,0,2,2,2,0,0,0,0,0,0,0,1,1,0,0,0,0,1,0,0,0),(4309,'2015-03-10 22:38:43','2015-10-11 16:46:35',1,30002405,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(4310,'2015-03-10 22:38:43','2015-03-10 22:38:43',1,30004146,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(4311,'2015-03-10 22:38:43','2015-03-10 22:38:43',1,30000059,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(4312,'2015-03-10 22:38:43','2015-03-10 22:38:43',1,30003874,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(4313,'2015-03-10 22:38:43','2015-10-11 16:46:35',1,30045322,0,0,1,0,0,0,0,0,0,0,1,1,1,1,0,0,0,0,0,0,0,0,0,0),(4314,'2015-03-10 22:38:43','2015-10-11 16:46:35',1,30001721,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,1,0,1,0,1,1),(4315,'2015-03-10 22:38:43','2015-10-11 16:46:35',1,30002783,0,0,1,1,1,1,0,0,4,0,0,0,0,0,1,0,0,0,7,0,0,1,2,1),(4316,'2015-03-10 22:38:43','2015-10-11 16:46:35',1,30002785,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,1,0,0,0,0,0,0),(4317,'2015-03-10 22:38:43','2015-10-11 16:46:35',1,30005255,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,0,0,1,0,0,0,1),(4318,'2015-03-10 22:38:43','2015-10-11 16:46:35',1,30001442,1,0,5,5,2,1,0,2,2,0,0,0,0,1,0,0,0,2,0,0,0,0,1,0),(4319,'2015-03-10 22:38:43','2015-10-11 16:46:35',1,30001377,0,1,0,0,2,2,0,0,0,1,0,0,0,5,1,0,0,0,3,0,0,1,0,0),(4320,'2015-03-10 22:38:43','2015-10-11 16:46:35',1,30045310,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0),(4321,'2015-03-10 22:38:43','2015-10-11 16:46:35',1,30000043,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0),(4322,'2015-03-10 22:38:43','2015-10-11 16:46:35',1,30003584,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,1,0,2,0,0,0,0,1,0),(4323,'2015-03-10 22:38:43','2015-10-11 16:46:35',1,30003522,1,0,0,0,1,1,0,0,0,0,0,0,1,0,1,1,0,0,1,1,1,0,0,0),(4324,'2015-03-10 22:38:43','2015-10-11 16:46:35',1,30003074,0,0,0,0,0,0,0,0,0,0,0,2,0,0,9,9,0,2,0,0,0,4,1,1),(4325,'2015-03-10 22:38:43','2015-10-11 16:46:35',1,30002971,0,1,0,6,11,9,0,0,0,0,0,0,0,3,0,3,3,0,0,0,0,0,0,0),(4326,'2015-03-10 22:38:43','2015-10-11 16:46:35',1,30003931,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(4327,'2015-03-10 22:38:43','2015-10-11 16:46:35',1,30000005,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,0,0),(4328,'2015-03-10 22:38:43','2015-10-11 16:46:35',1,30003097,0,0,0,0,0,0,0,0,0,0,0,6,0,0,0,0,0,0,0,0,2,0,0,0),(4329,'2015-03-10 22:38:43','2015-10-11 16:46:35',1,30003508,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,1),(4330,'2015-03-10 22:38:43','2015-10-11 16:46:35',1,30004270,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,1),(4331,'2015-03-10 22:38:43','2015-03-10 22:38:43',1,30003865,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(4332,'2015-03-10 22:38:43','2015-03-10 22:38:43',1,30000991,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(4333,'2015-03-10 22:38:43','2015-03-10 22:38:43',1,30004218,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(4334,'2015-03-10 22:38:43','2015-10-11 16:46:35',1,30001296,0,0,0,0,0,0,1,1,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,2),(4335,'2015-03-10 22:38:43','2015-10-11 16:46:35',1,30005310,5,9,3,0,0,0,3,1,1,4,3,3,2,0,3,1,0,1,2,0,1,0,0,0),(4336,'2015-03-10 22:38:43','2015-10-11 16:46:35',1,30005063,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,0,0,1),(4337,'2015-03-10 22:38:43','2015-10-11 16:46:35',1,30002654,0,0,0,1,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(4338,'2015-03-10 22:38:43','2015-10-11 16:46:35',1,30005322,0,0,1,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,1,4,0),(4339,'2015-03-10 22:38:43','2015-10-11 16:46:35',1,30003054,0,0,0,1,0,0,1,2,0,0,0,0,0,0,1,2,1,0,0,0,0,10,0,3),(4340,'2015-03-10 22:38:43','2015-10-11 16:46:35',1,30000692,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(4341,'2015-03-10 22:38:43','2015-03-10 22:38:43',1,30001314,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(4342,'2015-03-10 22:38:43','2015-10-11 16:46:35',1,30004139,0,1,0,0,0,1,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0),(4343,'2015-03-10 22:38:43','2015-10-11 16:46:35',1,30001659,0,0,0,1,0,0,0,0,0,0,0,0,0,5,0,0,0,0,0,0,0,52,0,0),(4344,'2015-03-10 22:38:43','2015-10-11 16:46:35',1,30005042,0,0,0,0,0,0,0,0,3,1,2,1,4,4,0,0,0,1,0,0,0,1,0,2),(4345,'2015-03-10 22:38:43','2015-03-10 22:38:43',1,30003869,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(4346,'2015-03-10 22:38:43','2015-10-11 16:46:35',1,30001657,0,0,0,1,0,0,0,1,0,1,0,0,0,0,0,0,0,0,3,1,1,0,0,0),(4347,'2015-03-10 22:38:43','2015-10-11 16:46:35',1,30002243,0,0,3,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0),(4348,'2015-03-10 22:38:43','2015-10-11 16:46:35',1,30041672,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0),(4349,'2015-03-10 22:38:43','2015-10-11 16:46:35',1,30001359,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(4350,'2015-03-10 22:38:43','2015-10-11 16:46:35',1,30020141,0,0,3,4,0,0,0,2,0,1,7,2,3,0,2,0,0,0,0,1,1,0,0,1),(4351,'2015-03-10 22:38:43','2015-10-11 16:46:35',1,30000015,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0),(4352,'2015-03-10 22:38:43','2015-10-11 16:46:35',1,30000103,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0),(4353,'2015-03-10 22:38:43','2015-10-11 16:46:35',1,30004623,1,0,1,0,0,0,0,0,0,0,1,0,1,17,0,0,0,0,1,1,0,0,0,0),(4354,'2015-03-10 22:38:43','2015-10-11 16:46:35',1,30005222,0,0,0,0,0,2,0,3,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(4355,'2015-03-10 22:38:43','2015-03-10 22:38:43',1,30003898,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(4356,'2015-03-10 22:38:43','2015-03-10 22:38:43',1,30005278,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(4357,'2015-03-10 22:38:43','2015-10-11 16:46:35',1,30005020,0,0,0,2,1,1,1,0,0,0,1,1,0,0,2,2,2,0,1,1,0,1,0,1),(4358,'2015-03-10 22:38:43','2015-03-10 22:38:43',1,30003654,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(4359,'2015-03-10 22:38:43','2015-10-11 16:46:35',1,30002833,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0),(4360,'2015-03-10 22:38:43','2015-10-11 16:46:35',1,30000670,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0),(4361,'2015-03-10 22:38:43','2015-03-10 22:38:43',1,30001098,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(4362,'2015-03-10 22:38:43','2015-10-11 16:46:35',1,30000868,0,0,0,0,0,0,0,0,0,0,0,0,0,0,3,3,0,0,0,0,0,0,0,0),(4363,'2015-03-10 22:38:43','2015-03-10 22:38:43',1,30002831,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(4364,'2015-03-10 22:38:43','2015-03-10 22:38:43',1,30002267,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(4365,'2015-03-10 22:38:43','2015-10-11 16:46:35',1,30000097,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,1,0,0,0),(4366,'2015-03-10 22:38:43','2015-10-11 16:46:35',1,30004283,0,0,2,0,0,0,0,0,0,7,14,3,1,9,1,4,6,5,0,0,0,0,0,0),(4367,'2015-03-10 22:38:43','2015-10-11 16:46:35',1,30004150,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(4368,'2015-03-10 22:38:43','2015-10-11 16:46:35',1,30005057,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0),(4369,'2015-03-10 22:38:43','2015-10-11 16:46:35',1,30003477,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1),(4370,'2015-03-10 22:38:43','2015-10-11 16:46:35',1,30004231,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(4371,'2015-03-10 22:38:43','2015-03-10 22:38:43',1,30000054,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(4372,'2015-03-10 22:38:43','2015-10-11 16:46:35',1,30005270,0,0,1,0,0,0,0,0,0,4,2,2,0,1,0,0,0,0,2,2,1,0,0,0),(4373,'2015-03-10 22:38:43','2015-03-10 22:38:43',1,30000014,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(4374,'2015-03-10 22:38:43','2015-10-11 16:46:35',1,30005271,0,0,0,0,0,0,1,0,1,0,0,0,0,1,0,0,0,0,1,0,0,0,0,2),(4375,'2015-03-10 22:38:43','2015-10-11 16:46:35',1,30003498,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,19,0,10,0,0,0,0),(4376,'2015-03-10 22:38:43','2015-03-10 22:38:43',1,30001739,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(4377,'2015-03-10 22:38:43','2015-10-11 16:46:35',1,30000067,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1),(4378,'2015-03-10 22:38:43','2015-10-11 16:46:35',1,30003500,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0),(4379,'2015-03-10 22:38:43','2015-10-11 16:46:35',1,30002638,0,1,1,1,2,0,0,0,2,0,1,1,0,3,0,2,2,0,0,0,1,1,0,1),(4380,'2015-03-10 22:38:43','2015-10-11 16:46:35',1,30005276,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0),(4381,'2015-03-10 22:38:43','2015-10-11 16:46:35',1,30002999,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,3,3,0,0,0,0,0,0,0),(4382,'2015-03-10 22:38:43','2015-10-11 16:46:35',1,30000779,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,0,0,0,0,0,0,0),(4383,'2015-03-10 22:38:43','2015-10-11 16:46:35',1,30000106,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,0),(4384,'2015-03-10 22:38:43','2015-10-11 16:46:35',1,30004155,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0),(4385,'2015-03-10 22:38:43','2015-10-11 16:46:35',1,30004268,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,2,0,0,0,0,0,0,0),(4386,'2015-03-10 22:38:43','2015-10-11 16:46:35',1,30000011,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0),(4387,'2015-03-10 22:38:43','2015-10-11 16:46:35',1,30005192,0,0,3,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(4388,'2015-03-10 22:38:43','2015-10-11 16:46:35',1,30004278,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(4389,'2015-03-10 22:38:43','2015-10-11 16:46:35',1,30005217,2,0,177,1,1,1,0,2,0,0,0,1,0,0,1,1,0,0,0,3,2,1,2,0),(4390,'2015-03-10 22:38:43','2015-10-11 16:46:35',1,30001673,2,0,1,3,0,0,0,0,1,1,0,0,0,0,0,0,1,0,0,2,1,1,1,0),(4391,'2015-03-10 22:38:43','2015-10-11 16:46:35',1,30000130,1,1,2,2,0,0,1,0,0,0,1,0,1,0,2,4,3,0,0,1,1,0,0,0),(4392,'2015-03-10 22:38:43','2015-10-11 16:46:35',1,30003725,0,0,1,0,1,1,0,0,0,1,0,0,0,0,0,0,0,1,0,0,0,0,1,0),(4393,'2015-03-10 22:38:43','2015-10-11 16:46:35',1,30004233,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,0,0,0,0,0,0,0),(4394,'2015-03-10 22:38:43','2015-03-10 22:38:43',1,30001338,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(4395,'2015-03-10 22:38:43','2015-10-11 16:46:35',1,30005076,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1),(4396,'2015-03-10 22:38:43','2015-03-10 22:38:43',1,30001667,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(4397,'2015-03-10 22:38:43','2015-10-11 16:46:35',1,30002235,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0),(4398,'2015-03-10 22:38:43','2015-10-11 16:46:35',1,30004135,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(4399,'2015-03-10 22:38:43','2015-10-11 16:46:35',1,30002201,0,0,0,0,0,0,0,0,0,2,3,3,0,2,0,2,2,0,1,0,0,0,1,0),(4400,'2015-03-10 22:38:43','2015-10-11 16:46:35',1,30003728,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,3,0,0,1),(4401,'2015-03-10 22:38:43','2015-10-11 16:46:35',1,30005209,2,1,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1),(4402,'2015-03-10 22:38:43','2015-10-11 16:46:35',1,30003484,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,1,0,0),(4403,'2015-03-10 22:38:43','2015-10-11 16:46:35',1,30003557,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(4404,'2015-03-10 22:38:43','2015-10-11 16:46:35',1,30002959,2,3,1,2,0,0,2,1,0,0,2,0,1,0,0,0,0,0,2,0,0,0,0,0),(4405,'2015-03-10 22:38:43','2015-10-11 16:46:35',1,30005219,0,0,0,0,0,0,2,0,0,1,0,0,0,1,0,0,0,0,0,0,0,0,0,1),(4406,'2015-03-10 22:38:43','2015-10-11 16:46:35',1,30000179,0,1,0,0,0,0,0,0,5,0,10,0,0,0,1,0,0,1,0,0,0,20,11,0),(4407,'2015-03-10 22:38:43','2015-10-11 16:46:35',1,30002689,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(4408,'2015-03-10 22:38:43','2015-10-11 16:46:35',1,30002195,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,1,0,0,0,0,0),(4409,'2015-03-10 22:38:43','2015-10-11 16:46:35',1,30005269,1,1,2,0,1,1,0,0,0,2,0,0,1,2,6,11,10,4,0,0,2,1,3,6),(4410,'2015-03-10 22:38:43','2015-10-11 16:46:35',1,30001729,0,0,1,0,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(4411,'2015-03-10 22:38:43','2015-10-11 16:46:35',1,30002092,0,0,0,0,0,0,0,0,0,4,0,1,0,1,0,0,1,1,2,4,1,0,0,0),(4412,'2015-03-10 22:38:43','2015-03-10 22:38:43',1,30003540,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(4413,'2015-03-10 22:38:43','2015-10-11 16:46:35',1,30002791,2,0,0,0,3,2,1,0,0,2,1,0,0,5,3,2,1,2,0,0,0,3,1,1),(4414,'2015-03-10 22:38:43','2015-10-11 16:46:35',1,30000127,0,0,0,0,0,0,0,0,1,0,0,0,0,0,1,0,0,0,0,0,0,3,2,1),(4415,'2015-03-10 22:38:43','2015-10-11 16:46:35',1,30002539,1,2,5,1,10,12,3,0,0,1,4,2,2,6,9,7,2,2,10,6,11,18,5,2),(4416,'2015-03-10 22:38:43','2015-10-11 16:46:35',1,30002521,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,1,0),(4417,'2015-03-10 22:38:43','2015-03-10 22:38:43',1,30002229,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(4418,'2015-03-10 22:38:43','2015-03-10 22:38:43',1,30003406,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(4419,'2015-03-10 22:38:43','2015-10-11 16:46:35',1,30002765,18,14,3,3,0,1,1,17,3,1,0,6,4,13,1,2,2,3,0,2,1,1,1,3),(4420,'2015-03-10 22:38:43','2015-10-11 16:46:35',1,30001699,0,0,1,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1),(4421,'2015-03-10 22:38:43','2015-10-11 16:46:35',1,30001728,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0),(4422,'2015-03-10 22:38:43','2015-03-10 22:38:43',1,30000571,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(4423,'2015-03-10 22:38:43','2015-03-10 22:38:43',1,30000436,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(4424,'2015-03-10 22:38:43','2015-10-11 16:46:35',1,30004164,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(4425,'2015-03-10 22:38:43','2015-10-11 16:46:35',1,30002411,0,0,2,0,0,0,0,0,0,0,0,0,2,0,0,0,0,0,0,0,0,1,0,0),(4426,'2015-03-10 22:38:43','2015-10-11 16:46:35',1,30003964,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(4427,'2015-03-10 22:38:43','2015-10-11 16:46:35',1,30000964,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,1,0,0,0),(4428,'2015-03-10 22:38:43','2015-10-11 16:46:35',1,30003798,1,0,0,0,0,0,0,1,5,0,1,0,0,0,0,0,0,0,0,1,1,1,0,0),(4429,'2015-03-10 22:38:43','2015-03-10 22:38:43',1,30000479,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(4430,'2015-03-10 22:38:43','2015-03-10 22:38:43',1,30001780,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(4431,'2015-03-10 22:38:43','2015-03-10 22:38:43',1,30001808,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(4432,'2015-03-10 22:38:43','2015-03-10 22:38:43',1,30000763,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(4433,'2015-03-10 22:38:43','2015-03-10 22:38:43',1,30003152,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(4434,'2015-03-10 22:38:43','2015-10-11 16:46:35',1,30001220,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,0,0),(4435,'2015-03-10 22:38:43','2015-03-10 22:38:43',1,30000584,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(4436,'2015-03-10 22:38:43','2015-10-11 16:46:35',1,30001363,0,0,0,0,0,0,1,2,0,1,2,4,0,3,3,1,1,2,1,0,3,2,3,2),(4437,'2015-03-10 22:38:43','2015-10-11 16:46:35',1,30002237,0,0,0,0,0,0,0,0,0,0,0,0,2,0,0,0,0,0,0,0,0,0,0,3),(4438,'2015-03-10 22:38:43','2015-10-11 16:46:35',1,30004273,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,0,0,0,0,0,0,1),(4439,'2015-03-10 22:38:43','2015-10-11 16:46:35',1,30003511,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(4440,'2015-03-10 22:38:43','2015-10-11 16:46:35',1,30003225,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0),(4441,'2015-03-10 22:38:43','2015-10-11 16:46:35',1,30004099,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1),(4442,'2015-03-10 22:38:43','2015-03-10 22:38:43',1,30000009,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(4443,'2015-03-10 22:38:43','2015-10-11 16:46:35',1,30002983,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(4444,'2015-03-10 22:38:43','2015-10-11 16:46:35',1,30005323,0,1,0,0,1,1,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,1,0),(4445,'2015-03-10 22:38:43','2015-10-11 16:46:35',1,30003510,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,1,1,0,0,0),(4446,'2015-03-10 22:38:43','2015-10-11 16:46:35',1,30000089,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0),(4447,'2015-03-10 22:38:43','2015-10-11 16:46:35',1,30003070,0,9,0,1,0,1,1,1,2,2,4,4,1,1,5,4,6,6,0,3,3,4,3,2),(4448,'2015-03-10 22:38:43','2015-10-11 16:46:35',1,30002980,0,2,0,3,3,0,3,1,2,1,0,2,1,0,2,2,2,0,0,0,1,0,0,1),(4449,'2015-03-10 22:38:43','2015-03-10 22:38:43',1,30005218,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(4450,'2015-03-10 22:38:43','2015-10-11 16:46:35',1,30000175,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1),(4451,'2015-03-10 22:38:43','2015-03-10 22:38:43',1,30004272,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(4452,'2015-03-10 22:38:43','2015-10-11 16:46:35',1,30001369,0,0,0,1,3,1,0,2,0,0,0,1,0,0,0,1,1,0,0,1,0,0,0,2),(4453,'2015-03-10 22:38:43','2015-10-11 16:46:35',1,30002575,0,1,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,0,1,0),(4454,'2015-03-10 22:38:43','2015-10-11 16:46:35',1,30005052,0,0,0,0,0,0,0,0,0,0,1,0,0,0,1,0,0,0,0,0,0,2,0,0),(4455,'2015-03-10 22:38:43','2015-10-11 16:46:35',1,30004292,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,1,0,0,0,0,0,0,0,0),(4456,'2015-03-10 22:38:43','2015-10-11 16:46:35',1,30002111,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0),(4457,'2015-03-10 22:38:43','2015-03-10 22:38:43',1,30004570,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(4458,'2015-03-10 22:38:43','2015-03-10 22:38:43',1,30001453,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(4459,'2015-03-10 22:38:43','2015-03-10 22:38:43',1,30001630,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(4460,'2015-03-10 22:38:43','2015-10-11 16:46:35',1,30005141,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(4461,'2015-03-10 22:38:43','2015-03-10 22:38:43',1,30000565,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(4462,'2015-03-10 22:38:43','2015-03-10 22:38:43',1,30002422,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(4463,'2015-03-10 22:38:43','2015-03-10 22:38:43',1,30001288,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(4464,'2015-03-10 22:38:43','2015-10-11 16:46:35',1,30003794,1,2,1,0,3,0,0,2,1,0,2,0,1,0,1,0,0,0,0,4,5,0,0,1),(4465,'2015-03-10 22:38:43','2015-03-10 22:38:43',1,30002675,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(4466,'2015-03-10 22:38:43','2015-10-11 16:46:35',1,30002696,1,2,0,0,0,0,0,0,0,0,0,0,0,4,0,0,0,0,0,0,0,0,0,1),(4467,'2015-03-10 22:38:43','2015-10-11 16:46:35',1,30002711,0,0,0,0,1,0,0,1,0,0,0,0,0,0,1,1,0,0,0,0,0,0,1,0),(4468,'2015-03-10 22:38:43','2015-10-11 16:46:35',1,30003376,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(4469,'2015-03-10 22:38:43','2015-10-11 16:46:35',1,30005333,0,1,1,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,2),(4470,'2015-03-10 22:38:43','2015-03-10 22:38:43',1,30003593,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(4471,'2015-03-10 22:38:43','2015-10-11 16:46:35',1,30003607,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0),(4472,'2015-03-10 22:38:43','2015-03-10 22:38:43',1,30000086,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(4473,'2015-03-10 22:38:43','2015-10-11 16:46:35',1,30002809,4,2,1,9,3,2,0,9,3,3,1,1,0,3,7,4,1,0,1,2,4,3,2,4),(4474,'2015-03-10 22:38:43','2015-10-11 16:46:35',1,30002200,0,0,0,0,0,0,0,0,0,0,0,1,0,1,0,0,0,1,0,0,0,0,1,0),(4475,'2015-03-10 22:38:43','2015-03-10 22:38:43',1,30004101,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(4476,'2015-03-10 22:38:43','2015-10-11 16:46:35',1,30000944,0,0,0,0,0,0,0,0,1,0,0,0,0,1,0,0,0,0,0,0,0,1,2,0),(4477,'2015-03-10 22:38:43','2015-10-11 16:46:35',1,30002801,0,1,1,0,0,0,0,4,0,0,0,0,1,0,1,1,1,1,5,0,0,0,4,1),(4478,'2015-03-10 22:38:43','2015-10-11 16:46:35',1,30002445,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(4479,'2015-03-10 22:38:43','2015-10-11 16:46:35',1,30001158,7,2,2,2,5,0,0,0,3,0,27,0,0,0,3,1,4,1,20,5,5,0,1,1),(4480,'2015-03-10 22:38:43','2015-03-10 22:38:43',1,30004377,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(4481,'2015-03-10 22:38:43','2015-10-11 16:46:35',1,30004758,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1),(4482,'2015-03-10 22:38:43','2015-10-11 16:46:35',1,30004484,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,3,0,0,0),(4483,'2015-03-10 22:38:43','2015-03-10 22:38:43',1,30002835,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(4484,'2015-03-10 22:38:43','2015-03-10 22:38:43',1,30005174,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(4485,'2015-03-10 22:38:43','2015-03-10 22:38:43',1,30000515,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(4486,'2015-03-10 22:38:43','2015-03-10 22:38:43',1,30003667,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(4487,'2015-03-10 22:38:43','2015-10-11 16:46:35',1,30005015,0,0,0,0,2,1,0,0,1,0,1,0,1,3,1,0,0,0,0,3,2,0,0,1),(4488,'2015-03-10 22:38:43','2015-03-10 22:38:43',1,30004143,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(4489,'2015-03-10 22:38:43','2015-03-10 22:38:43',1,30003639,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(4490,'2015-03-10 22:38:43','2015-03-10 22:38:43',1,30000488,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(4491,'2015-03-10 22:38:43','2015-10-11 16:46:35',1,30001096,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0),(4492,'2015-03-10 22:38:43','2015-10-11 16:46:35',1,30004211,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0),(4493,'2015-03-10 22:38:43','2015-03-10 22:38:43',1,30001151,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(4494,'2015-03-10 22:38:43','2015-10-11 16:46:35',1,30001911,0,0,1,0,0,0,0,0,0,1,0,0,0,1,0,0,0,1,0,0,2,0,0,0),(4495,'2015-03-10 22:38:43','2015-03-10 22:38:43',1,30002890,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(4496,'2015-03-10 22:38:43','2015-03-10 22:38:43',1,30004877,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(4497,'2015-03-10 22:38:43','2015-03-10 22:38:43',1,30001633,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(4498,'2015-03-10 22:38:43','2015-10-11 16:46:35',1,30000261,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,0,1,0,0,0,0,2),(4499,'2015-03-10 22:38:43','2015-03-10 22:38:43',1,30003195,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(4500,'2015-03-10 22:38:43','2015-10-11 16:46:35',1,30002382,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(4501,'2015-03-10 22:38:43','2015-10-11 16:46:35',1,30004748,0,0,0,0,0,0,0,0,0,2,0,0,0,1,0,0,0,1,0,0,0,0,0,0),(4502,'2015-03-10 22:38:43','2015-03-10 22:38:43',1,30004729,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(4503,'2015-03-10 22:38:43','2015-03-10 22:38:43',1,30003673,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(4504,'2015-03-10 22:38:43','2015-10-11 16:46:35',1,30003299,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,1,0,0,0,0),(4505,'2015-03-10 22:38:43','2015-03-10 22:38:43',1,30004745,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(4506,'2015-03-10 22:38:43','2015-10-11 16:46:35',1,30001959,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,2,2,2,0,0,1,1,1,2),(4507,'2015-03-10 22:38:43','2015-03-10 22:38:43',1,30000330,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(4508,'2015-03-10 22:38:43','2015-03-10 22:38:43',1,30004352,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(4509,'2015-03-10 22:38:43','2015-10-11 16:46:35',1,30003715,0,0,0,0,0,0,0,0,1,9,16,2,0,12,18,0,0,0,0,0,0,0,0,0),(4510,'2015-03-10 22:38:43','2015-03-10 22:38:43',1,30001631,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(4511,'2015-03-10 22:38:43','2015-03-10 22:38:43',1,30004529,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(4512,'2015-03-10 22:38:43','2015-03-10 22:38:43',1,30004676,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(4513,'2015-03-10 22:38:43','2015-10-11 16:46:35',1,30000303,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,0,1,0),(4514,'2015-03-10 22:38:43','2015-03-10 22:38:43',1,30001771,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(4515,'2015-03-10 22:38:43','2015-03-10 22:38:43',1,30004842,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(4516,'2015-03-10 22:38:43','2015-10-11 16:46:35',1,30003287,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(4517,'2015-03-10 22:38:43','2015-03-10 22:38:43',1,30004735,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(4518,'2015-03-10 22:38:43','2015-10-11 16:46:35',1,30004870,0,0,0,0,0,0,5,0,0,0,0,0,0,0,0,0,0,0,0,0,10,0,0,0),(4519,'2015-03-10 22:38:43','2015-03-10 22:38:43',1,30001548,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(4520,'2015-03-10 22:38:43','2015-03-10 22:38:43',1,30001916,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(4521,'2015-03-10 22:38:43','2015-10-11 16:46:35',1,30003943,1,0,0,0,0,0,1,0,0,0,0,0,0,3,0,0,0,0,0,0,0,0,0,0),(4522,'2015-03-10 22:38:43','2015-10-11 16:46:35',1,30003966,0,1,0,0,0,0,0,0,0,0,0,1,0,1,0,0,0,0,0,0,0,0,0,0),(4523,'2015-03-10 22:38:43','2015-10-11 16:46:35',1,30001228,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,11,12,1,0,0,1,2,1,1),(4524,'2015-03-10 22:38:43','2015-03-10 22:38:43',1,30002841,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(4525,'2015-03-10 22:38:43','2015-10-11 16:46:35',1,30003465,0,2,0,0,1,1,0,0,0,0,1,1,0,0,0,0,0,0,0,0,0,1,1,0),(4526,'2015-03-10 22:38:43','2015-10-11 16:46:35',1,30005070,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0),(4527,'2015-03-10 22:38:43','2015-10-11 16:46:35',1,30002100,0,0,0,1,0,0,3,0,0,0,0,0,0,0,0,0,1,0,1,1,0,0,2,1),(4528,'2015-03-10 22:38:43','2015-10-11 16:46:35',1,30005245,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,2,0,0,0,0,0,0,1,2),(4529,'2015-03-10 22:38:43','2015-10-11 16:46:35',1,30001447,2,4,0,1,10,1,0,0,0,2,0,0,0,0,0,0,1,77,1,0,0,3,0,6),(4530,'2015-03-10 22:38:43','2015-03-10 22:38:43',1,30005143,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(4531,'2015-03-10 22:38:43','2015-10-11 16:46:35',1,30003889,0,0,0,0,0,1,1,0,0,0,0,0,0,0,5,0,0,0,0,0,0,0,0,0),(4532,'2015-03-10 22:38:43','2015-10-11 16:46:35',1,30002813,3,18,21,9,10,11,1,15,25,5,20,26,33,11,27,24,16,13,22,38,12,15,46,29),(4533,'2015-03-10 22:38:43','2015-03-10 22:38:43',1,30003407,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(4534,'2015-03-10 22:38:43','2015-10-11 16:46:35',1,30001437,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(4535,'2015-03-10 22:38:43','2015-10-11 16:46:35',1,30003091,0,2,10,2,0,0,0,0,0,0,3,5,1,0,2,1,1,0,0,3,0,1,0,0),(4536,'2015-03-10 22:38:43','2015-10-11 16:46:35',1,30002812,3,0,0,0,1,1,1,1,0,2,1,3,0,0,1,0,0,0,1,2,1,2,0,3),(4537,'2015-03-10 22:38:43','2015-10-11 16:46:35',1,30000001,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,1,1,0,0,0,1,0),(4538,'2015-03-10 22:38:43','2015-10-11 16:46:35',1,30005199,0,0,0,1,0,0,1,0,1,0,0,0,0,3,0,0,1,1,3,2,3,1,8,6),(4539,'2015-03-10 22:38:43','2015-10-11 16:46:35',1,30002979,3,12,2,1,2,1,0,0,1,0,0,2,0,3,2,3,5,0,0,0,1,0,0,0),(4540,'2015-03-10 22:38:43','2015-10-11 16:46:35',1,30005205,4,0,0,0,0,0,1,3,0,0,0,0,0,0,2,1,1,0,5,0,0,0,0,0),(4541,'2015-03-10 22:38:43','2015-03-10 22:38:43',1,30001441,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(4542,'2015-03-10 22:38:43','2015-03-10 22:38:43',1,30001703,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(4543,'2015-03-10 22:38:43','2015-10-11 16:46:35',1,30002778,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0),(4544,'2015-03-10 22:38:43','2015-10-11 16:46:35',1,30001671,0,3,5,23,3,1,0,4,1,0,1,2,0,1,0,1,1,0,0,1,0,1,0,0),(4545,'2015-03-10 22:38:43','2015-10-11 16:46:35',1,30002274,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(4546,'2015-03-10 22:38:43','2015-10-11 16:46:35',1,30000195,1,0,1,0,0,0,0,0,0,0,1,0,0,0,4,3,1,1,0,0,0,0,0,0),(4547,'2015-03-10 22:38:43','2015-10-11 16:46:35',1,30004937,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,4,3,0,0,1,2,0,0,0),(4548,'2015-03-10 22:38:43','2015-10-11 16:46:35',1,30001051,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0),(4549,'2015-03-10 22:38:43','2015-10-11 16:46:35',1,30002502,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,1),(4550,'2015-03-10 22:38:43','2015-10-11 16:46:35',1,30005089,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,5,0,0,0),(4551,'2015-03-10 22:38:43','2015-10-11 16:46:35',1,30004638,2,0,0,0,1,1,0,0,0,21,3,3,0,3,9,25,21,0,12,1,10,1,0,1),(4552,'2015-03-10 22:38:43','2015-10-11 16:46:35',1,30003907,0,0,0,0,0,0,0,0,0,11,1,0,0,0,6,2,0,0,0,1,0,0,0,1),(4553,'2015-03-10 22:38:43','2015-10-11 16:46:35',1,30045350,2,2,0,0,1,0,2,0,1,0,3,2,1,0,2,2,0,1,0,0,2,0,1,1),(4554,'2015-03-10 22:38:43','2015-03-10 22:38:43',1,30003128,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(4555,'2015-03-10 22:38:43','2015-10-11 16:46:35',1,30005200,0,1,0,0,0,0,1,0,0,0,1,0,0,1,0,0,0,0,0,0,0,0,0,0),(4556,'2015-03-10 22:38:43','2015-10-11 16:46:35',1,30004158,0,0,0,0,0,0,0,0,0,0,0,0,3,0,0,0,0,0,0,0,1,0,0,0),(4557,'2015-03-10 22:38:43','2015-10-11 16:46:35',1,30001645,0,0,1,0,0,0,0,15,0,0,1,2,1,0,0,0,0,0,0,0,0,23,2,0),(4558,'2015-03-10 22:38:43','2015-10-11 16:46:35',1,30002763,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,1,0),(4559,'2015-03-10 22:38:43','2015-10-11 16:46:35',1,30002385,0,0,2,0,24,11,4,0,0,6,0,5,8,0,11,15,14,0,0,0,0,1,0,2),(4560,'2015-03-10 22:38:43','2015-03-10 22:38:43',1,30003507,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(4561,'2015-03-10 22:38:43','2015-10-11 16:46:35',1,30001681,3,0,1,1,3,3,0,0,1,2,0,0,0,7,1,0,3,0,1,2,1,1,0,3),(4562,'2015-03-10 22:38:43','2015-10-11 16:46:35',1,30045335,0,0,0,0,2,2,0,0,0,3,0,1,1,1,2,1,0,1,0,1,0,0,0,0),(4563,'2015-03-10 22:38:43','2015-03-10 22:38:43',1,30000926,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(4564,'2015-03-10 22:38:43','2015-10-11 16:46:35',1,30001733,0,0,0,0,0,1,1,0,1,1,0,0,0,1,0,0,0,0,0,0,0,1,0,0),(4565,'2015-03-10 22:38:43','2015-03-10 22:38:43',1,30002038,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(4566,'2015-03-10 22:38:43','2015-03-10 22:38:43',1,30001760,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(4567,'2015-03-10 22:38:43','2015-10-11 16:46:35',1,30001842,0,0,0,0,1,1,1,0,0,0,1,0,3,0,2,2,1,1,0,0,1,2,2,1),(4568,'2015-03-10 22:38:43','2015-10-11 16:46:35',1,30003000,0,0,1,1,0,0,1,0,0,2,0,0,0,1,0,0,0,0,0,1,0,1,0,0),(4569,'2015-03-10 22:38:43','2015-10-11 16:46:35',1,30001677,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,1),(4570,'2015-03-10 22:38:43','2015-03-10 22:38:43',1,30002966,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(4571,'2015-03-10 22:38:43','2015-10-11 16:46:35',1,30002226,0,0,0,0,0,0,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(4572,'2015-03-10 22:38:43','2015-10-11 16:46:35',1,30002720,0,0,0,0,0,0,0,0,0,0,0,0,0,2,0,0,1,1,1,8,3,0,1,1),(4573,'2015-03-10 22:38:43','2015-10-11 16:46:35',1,30005314,1,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(4574,'2015-03-10 22:38:43','2015-10-11 16:46:35',1,30000069,0,0,1,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(4575,'2015-03-10 22:38:43','2015-03-10 22:38:43',1,30001464,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(4576,'2015-03-10 22:38:43','2015-03-10 22:38:43',1,30000352,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(4577,'2015-03-10 22:38:43','2015-03-10 22:38:43',1,30000076,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(4578,'2015-03-10 22:38:43','2015-10-11 16:46:35',1,30005334,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,1,0),(4579,'2015-03-10 22:38:43','2015-03-10 22:38:43',1,30000100,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(4580,'2015-03-10 22:38:43','2015-10-11 16:46:35',1,30003932,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0),(4581,'2015-03-10 22:38:43','2015-10-11 16:46:35',1,30002784,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1),(4582,'2015-03-10 22:38:43','2015-10-11 16:46:35',1,30001684,0,0,0,0,0,0,0,0,0,0,0,0,2,1,0,0,0,0,0,0,0,0,0,0),(4583,'2015-03-10 22:38:43','2015-10-11 16:46:35',1,30004298,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(4584,'2015-03-10 22:38:43','2015-03-10 22:38:43',1,30001644,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(4585,'2015-03-10 22:38:43','2015-10-11 16:46:35',1,30002474,1,0,0,0,1,1,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0),(4586,'2015-03-10 22:38:43','2015-03-10 22:38:43',1,30000742,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(4587,'2015-03-10 22:38:43','2015-03-10 22:38:43',1,30001908,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(4588,'2015-03-10 22:38:43','2015-03-10 22:38:43',1,30002584,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(4589,'2015-03-10 22:38:43','2015-03-10 22:38:43',1,30004047,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(4590,'2015-03-10 22:38:43','2015-03-10 22:38:43',1,30004960,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(4591,'2015-03-10 22:38:43','2015-03-10 22:38:43',1,30001461,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(4592,'2015-03-10 22:38:43','2015-03-10 22:38:43',1,30001519,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(4593,'2015-03-10 22:38:43','2015-10-11 16:46:35',1,30001407,0,1,2,4,0,0,1,4,5,0,2,0,0,1,3,2,1,5,1,1,6,1,0,1),(4594,'2015-03-10 22:38:43','2015-10-11 16:46:35',1,30032505,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0),(4595,'2015-03-10 22:38:43','2015-10-11 16:46:35',1,30002062,0,0,5,0,2,1,3,3,2,1,0,0,1,0,4,2,3,1,1,5,0,2,2,1),(4596,'2015-03-10 22:38:43','2015-10-11 16:46:35',1,30003383,0,1,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(4597,'2015-03-10 22:38:43','2015-10-11 16:46:35',1,30003052,0,0,0,0,0,1,0,0,0,0,1,1,1,0,0,0,1,1,2,0,0,0,0,5),(4598,'2015-03-10 22:38:43','2015-10-11 16:46:35',1,30003436,0,0,6,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(4599,'2015-03-10 22:38:43','2015-03-10 22:38:43',1,30002532,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(4600,'2015-03-10 22:38:43','2015-10-11 16:46:35',1,30005212,0,0,0,1,0,0,1,0,0,0,0,0,0,0,0,1,1,0,0,0,1,2,0,1),(4601,'2015-03-10 22:38:43','2015-10-11 16:46:35',1,30001429,0,0,0,0,0,0,0,0,0,0,2,1,1,0,5,0,0,0,0,0,0,0,0,0),(4602,'2015-03-10 22:38:43','2015-10-11 16:46:35',1,30003020,0,0,0,0,0,1,1,0,0,0,1,1,0,0,1,0,0,0,0,0,0,0,0,0),(4603,'2015-03-10 22:38:43','2015-10-11 16:46:35',1,30002191,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1),(4604,'2015-03-10 22:38:43','2015-03-10 22:38:43',1,30003402,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(4605,'2015-03-10 22:38:43','2015-10-11 16:46:35',1,30005301,0,1,0,2,1,1,0,0,0,0,1,1,0,0,0,0,0,0,0,0,0,0,0,0),(4606,'2015-03-10 22:38:43','2015-10-11 16:46:35',1,30003606,0,0,0,0,0,0,0,1,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0),(4607,'2015-03-10 22:38:43','2015-03-10 22:38:43',1,30001127,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(4608,'2015-03-10 22:38:43','2015-03-10 22:38:43',1,30002327,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(4609,'2015-03-10 22:38:43','2015-03-10 22:38:43',1,30000588,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(4610,'2015-03-10 22:38:43','2015-10-11 16:46:35',1,30004935,0,0,0,0,0,0,0,0,8,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0),(4611,'2015-03-10 22:38:43','2015-03-10 22:38:43',1,30000641,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(4612,'2015-03-10 22:38:43','2015-10-11 16:46:35',1,30004500,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,1,0,0,0,0,0,0,0),(4613,'2015-03-10 22:38:43','2015-10-11 16:46:35',1,30004452,0,0,0,0,0,0,0,0,0,0,0,0,0,3,0,0,0,0,0,0,31,0,0,0),(4614,'2015-03-10 22:38:43','2015-10-11 16:46:35',1,30005071,0,0,0,0,0,0,0,0,0,2,1,0,0,0,0,0,0,0,0,0,0,0,0,0),(4615,'2015-03-10 22:38:43','2015-10-11 16:46:35',1,30003431,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0),(4616,'2015-03-10 22:38:43','2015-10-11 16:46:35',1,30002069,0,2,2,2,0,0,1,0,0,0,0,4,4,1,0,0,0,0,0,1,1,0,0,0),(4617,'2015-03-10 22:38:43','2015-03-10 22:38:43',1,30002562,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(4618,'2015-03-10 22:38:43','2015-10-11 16:46:35',1,30000869,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(4619,'2015-03-10 22:38:43','2015-10-11 16:46:35',1,30002668,0,0,0,0,0,0,0,0,0,1,0,0,1,0,0,0,0,0,0,0,0,0,0,0),(4620,'2015-03-10 22:38:43','2015-10-11 16:46:35',1,30042715,6,4,9,2,9,5,6,7,1,13,12,12,19,12,15,15,12,15,8,8,12,16,25,7),(4621,'2015-03-10 22:38:43','2015-10-11 16:46:35',1,30002508,0,0,0,0,1,0,0,0,0,0,1,0,0,2,0,0,2,0,0,0,0,0,0,0),(4622,'2015-03-10 22:38:43','2015-10-11 16:46:35',1,30004423,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,3,0,0,0,0,0),(4623,'2015-03-10 22:38:43','2015-10-11 16:46:35',1,30001375,0,0,0,1,1,1,0,1,0,1,2,0,0,2,0,0,0,0,2,0,1,0,0,0),(4624,'2015-03-10 22:38:43','2015-10-11 16:46:35',1,30001412,0,0,0,0,0,0,0,0,0,0,0,0,1,2,0,0,0,0,1,0,0,0,0,0),(4625,'2015-03-10 22:38:43','2015-10-11 16:46:35',1,30045327,0,0,0,0,0,0,0,0,0,0,0,0,0,2,0,0,0,0,0,0,0,0,0,0),(4626,'2015-03-10 22:38:43','2015-10-11 16:46:35',1,30000812,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(4627,'2015-03-10 22:38:43','2015-10-11 16:46:35',1,30003733,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,1,2,0,0,0),(4628,'2015-03-10 22:38:43','2015-10-11 16:46:35',1,30003742,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0),(4629,'2015-03-10 22:38:43','2015-03-10 22:38:43',1,30004634,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(4630,'2015-03-10 22:38:43','2015-03-10 22:38:43',1,30004275,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(4631,'2015-03-10 22:38:43','2015-10-11 16:46:35',1,30001379,1,0,0,0,0,0,1,0,0,0,0,1,0,0,1,0,0,2,1,1,1,0,0,0),(4632,'2015-03-10 22:38:43','2015-10-11 16:46:35',1,30002770,0,2,0,0,0,0,0,0,0,1,0,0,0,1,1,1,3,0,0,0,0,1,0,0),(4633,'2015-03-10 22:38:43','2015-10-11 16:46:35',1,30003064,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,0,0,0),(4634,'2015-03-10 22:38:43','2015-10-11 16:46:35',1,30004098,0,0,0,0,0,0,0,0,0,2,6,0,0,0,0,0,0,0,0,0,0,0,0,0),(4635,'2015-03-10 22:38:43','2015-10-11 16:46:35',1,30002086,0,0,0,0,0,0,0,0,0,0,2,3,2,1,1,0,0,0,3,1,2,4,0,2),(4636,'2015-03-10 22:38:43','2015-10-11 16:46:35',1,30000128,0,0,1,0,1,0,2,0,0,0,0,0,1,1,0,0,0,2,0,0,1,0,1,0),(4637,'2015-03-10 22:38:43','2015-03-10 22:38:43',1,30003958,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(4638,'2015-03-10 22:38:43','2015-10-11 16:46:35',1,30002073,0,0,0,0,0,0,0,0,0,6,6,2,0,0,0,0,0,0,1,0,0,0,1,0),(4639,'2015-03-10 22:38:43','2015-10-11 16:46:35',1,30000263,1,0,1,0,0,0,1,0,0,0,1,1,0,0,0,0,2,0,0,1,0,2,0,0),(4640,'2015-03-10 22:38:43','2015-10-11 16:46:35',1,30002614,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,1,1,0,0,0),(4641,'2015-03-10 22:38:43','2015-10-11 16:46:35',1,30003779,0,0,1,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1),(4642,'2015-03-10 22:38:43','2015-10-11 16:46:35',1,30002901,0,0,0,0,0,0,2,0,0,8,0,1,1,19,2,3,6,0,0,0,8,0,0,1),(4643,'2015-03-10 22:38:43','2015-10-11 16:46:35',1,30003323,0,2,0,2,0,0,0,0,0,0,0,0,0,9,0,0,0,0,1,0,0,0,2,5),(4644,'2015-03-10 22:38:43','2015-10-11 16:46:35',1,30004844,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(4645,'2015-03-10 22:38:43','2015-10-11 16:46:35',1,30000485,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,5,0,0),(4646,'2015-03-10 22:38:43','2015-03-10 22:38:43',1,30002353,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(4647,'2015-03-10 22:38:43','2015-10-11 16:46:35',1,30003891,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0),(4648,'2015-03-10 22:38:43','2015-10-11 16:46:35',1,30000601,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0),(4649,'2015-03-10 22:38:43','2015-10-11 16:46:35',1,30002494,0,1,0,0,0,0,0,0,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(4650,'2015-03-10 22:38:43','2015-03-10 22:38:43',1,30000747,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(4651,'2015-03-10 22:38:43','2015-10-11 16:46:35',1,30002957,0,2,0,0,3,3,13,0,0,3,0,1,1,1,1,0,1,4,1,0,0,1,1,0),(4652,'2015-03-10 22:38:43','2015-03-10 22:38:43',1,30005156,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(4653,'2015-03-10 22:38:43','2015-03-10 22:38:43',1,30004436,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(4654,'2015-03-10 22:38:43','2015-03-10 22:38:43',1,30001788,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(4655,'2015-03-10 22:38:43','2015-10-11 16:46:35',1,30000575,0,0,4,0,4,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(4656,'2015-03-10 22:38:43','2015-10-11 16:46:35',1,30003717,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,0,0,1,0,0,1),(4657,'2015-03-10 22:38:43','2015-10-11 16:46:35',1,30004024,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0),(4658,'2015-03-10 22:38:43','2015-10-11 16:46:35',1,30001997,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0),(4659,'2015-03-10 22:38:43','2015-03-10 22:38:43',1,30000404,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(4660,'2015-03-10 22:38:43','2015-10-11 16:46:35',1,30000660,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(4661,'2015-03-10 22:38:43','2015-03-10 22:38:43',1,30000394,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(4662,'2015-03-10 22:38:43','2015-03-10 22:38:43',1,30004439,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(4663,'2015-03-10 22:38:43','2015-10-11 16:46:35',1,30002463,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0),(4664,'2015-03-10 22:38:43','2015-03-10 22:38:43',1,30000493,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(4665,'2015-03-10 22:38:43','2015-03-10 22:38:43',1,30003637,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(4666,'2015-03-10 22:38:43','2015-03-10 22:38:43',1,30000459,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(4667,'2015-03-10 22:38:43','2015-03-10 22:38:43',1,30000629,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(4668,'2015-03-10 22:38:43','2015-10-11 16:46:35',1,30001155,0,2,0,0,1,0,0,0,0,0,0,2,1,2,0,18,20,1,5,0,1,0,1,1),(4669,'2015-03-10 22:38:43','2015-03-10 22:38:43',1,30003240,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(4670,'2015-03-10 22:38:43','2015-03-10 22:38:43',1,30004594,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(4671,'2015-03-10 22:38:43','2015-10-11 16:46:35',1,30002951,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(4672,'2015-03-10 22:38:43','2015-03-10 22:38:43',1,30000765,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(4673,'2015-03-10 22:38:43','2015-10-11 16:46:35',1,30000878,0,0,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(4674,'2015-03-10 22:38:43','2015-03-10 22:38:43',1,30005131,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(4675,'2015-03-10 22:38:43','2015-10-11 16:46:35',1,30001865,0,0,0,0,0,0,0,0,0,1,1,0,1,0,0,0,0,0,0,3,3,3,0,0),(4676,'2015-03-10 22:38:43','2015-03-10 22:38:43',1,30003347,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(4677,'2015-03-10 22:38:43','2015-03-10 22:38:43',1,30000514,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(4678,'2015-03-10 22:38:43','2015-03-10 22:38:43',1,30004441,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(4679,'2015-03-10 22:38:43','2015-10-11 16:46:35',1,30001585,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,0,0,0,0),(4680,'2015-03-10 22:38:43','2015-03-10 22:38:43',1,30000555,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(4681,'2015-03-10 22:38:43','2015-03-10 22:38:43',1,30000329,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(4682,'2015-03-10 22:38:43','2015-03-10 22:38:43',1,30003623,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(4683,'2015-03-10 22:38:43','2015-10-11 16:46:35',1,30000703,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,0),(4684,'2015-03-10 22:38:43','2015-10-11 16:46:35',1,30001898,0,0,1,0,0,0,0,0,0,0,0,0,1,2,0,0,0,1,0,0,0,0,0,0),(4685,'2015-03-10 22:38:43','2015-10-11 16:46:35',1,30004834,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0),(4686,'2015-03-10 22:38:43','2015-10-11 16:46:35',1,30000948,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0),(4687,'2015-03-10 22:38:43','2015-03-10 22:38:43',1,30002608,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(4688,'2015-03-10 22:38:43','2015-10-11 16:46:35',1,30003372,0,1,0,0,0,0,0,0,0,0,0,0,0,0,5,0,0,0,0,0,0,0,0,0),(4689,'2015-03-10 22:38:43','2015-03-10 22:38:43',1,30005126,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(4690,'2015-03-10 22:38:43','2015-03-10 22:38:43',1,30003663,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(4691,'2015-03-10 22:38:43','2015-10-11 16:46:35',1,30000210,2,0,1,0,2,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(4692,'2015-03-10 22:38:43','2015-03-10 22:38:43',1,30001927,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(4693,'2015-03-10 22:38:43','2015-03-10 22:38:43',1,30004074,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(4694,'2015-03-10 22:38:43','2015-10-11 16:46:35',1,30000527,0,0,0,0,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0),(4695,'2015-03-10 22:38:43','2015-03-10 22:38:43',1,30002488,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(4696,'2015-03-10 22:38:43','2015-10-11 16:46:35',1,30000693,0,0,0,0,1,0,0,0,0,0,1,1,0,0,0,0,0,0,0,0,0,0,0,0),(4697,'2015-03-10 22:38:43','2015-03-10 22:38:43',1,30004202,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(4698,'2015-03-10 22:38:43','2015-10-11 16:46:35',1,30002164,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,2,0,0,0,0,0,0),(4699,'2015-03-10 22:38:43','2015-03-10 22:38:43',1,30000427,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(4700,'2015-03-10 22:38:43','2015-03-10 22:38:43',1,30000644,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(4701,'2015-03-10 22:38:43','2015-03-10 22:38:43',1,30003227,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(4702,'2015-03-10 22:38:43','2015-10-11 16:46:35',1,30002166,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(4703,'2015-03-10 22:38:43','2015-03-10 22:38:43',1,30000419,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(4704,'2015-03-10 22:38:43','2015-03-10 22:38:43',1,30004685,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(4705,'2015-03-10 22:38:43','2015-10-11 16:46:35',1,30002991,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,1,1),(4706,'2015-03-10 22:38:43','2015-03-10 22:38:43',1,30001797,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(4707,'2015-03-10 22:38:43','2015-10-11 16:46:35',1,30002101,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,1,0),(4708,'2015-03-10 22:38:43','2015-03-10 22:38:43',1,30004807,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(4709,'2015-03-10 22:38:43','2015-10-11 16:46:35',1,30004091,0,1,0,0,0,0,0,0,0,3,0,0,0,0,1,0,0,0,0,0,0,0,0,0),(4710,'2015-03-10 22:38:43','2015-10-11 16:46:35',1,30000118,0,0,1,2,0,0,6,0,0,1,0,0,0,4,1,0,0,0,0,0,1,1,0,0),(4711,'2015-03-10 22:38:43','2015-03-10 22:38:43',1,30002361,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(4712,'2015-03-10 22:38:43','2015-10-11 16:46:35',1,30004602,0,2,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(4713,'2015-03-10 22:38:43','2015-03-10 22:38:43',1,30004349,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(4714,'2015-03-10 22:38:43','2015-10-11 16:46:35',1,30004463,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0),(4715,'2015-03-10 22:38:43','2015-03-10 22:38:43',1,30001465,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(4716,'2015-03-10 22:38:43','2015-10-11 16:46:35',1,30000114,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,1,0,0,0,0,0,0),(4717,'2015-03-10 22:38:43','2015-10-11 16:46:35',1,30002473,0,0,0,0,0,0,0,0,0,0,0,0,0,2,0,0,3,0,0,0,1,0,0,0),(4718,'2015-03-10 22:38:43','2015-03-10 22:38:43',1,30001813,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(4719,'2015-03-10 22:38:43','2015-03-10 22:38:43',1,30001618,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(4720,'2015-03-10 22:38:43','2015-03-10 22:38:43',1,30002024,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(4721,'2015-03-10 22:38:43','2015-03-10 22:38:43',1,30001244,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(4722,'2015-03-10 22:38:43','2015-10-11 16:46:35',1,30002209,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0),(4723,'2015-03-10 22:38:43','2015-10-11 16:46:35',1,30045321,0,0,0,0,0,0,11,1,0,0,0,0,5,0,0,0,0,0,0,0,0,0,0,0),(4724,'2015-03-10 22:38:43','2015-10-11 16:46:35',1,30000201,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0),(4725,'2015-03-10 22:38:43','2015-10-11 16:46:35',1,30000997,0,0,0,2,0,0,0,0,1,0,0,0,0,0,2,2,0,0,0,0,0,0,0,0),(4726,'2015-03-10 22:38:43','2015-03-10 22:38:43',1,30004404,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(4727,'2015-03-10 22:38:43','2015-03-10 22:38:43',1,30000819,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(4728,'2015-03-10 22:38:43','2015-10-11 16:46:35',1,30004245,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0),(4729,'2015-03-10 22:38:43','2015-10-11 16:46:35',1,30002825,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0),(4730,'2015-03-10 22:38:43','2015-10-11 16:46:35',1,30002768,7,11,4,13,6,31,6,0,15,3,2,1,1,2,7,12,8,2,3,1,0,5,4,6),(4731,'2015-03-10 22:38:43','2015-10-11 16:46:35',1,30002956,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0),(4732,'2015-03-10 22:38:43','2015-10-11 16:46:35',1,30001368,0,1,0,0,0,0,0,0,8,4,1,0,2,4,2,0,0,1,0,0,1,3,0,0),(4733,'2015-03-10 22:38:43','2015-10-11 16:46:35',1,30000197,0,0,0,1,0,0,0,0,1,0,0,0,0,1,0,0,0,0,0,2,0,2,0,0),(4734,'2015-03-10 22:38:43','2015-03-10 22:38:43',1,30004922,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(4735,'2015-03-10 22:38:43','2015-03-10 22:38:43',1,30001821,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(4736,'2015-03-10 22:38:43','2015-03-10 22:38:43',1,30002503,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(4737,'2015-03-10 22:38:43','2015-03-10 22:38:43',1,30001432,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(4738,'2015-03-10 22:38:43','2015-10-11 16:46:35',1,30004779,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0),(4739,'2015-03-10 22:38:43','2015-10-11 16:46:35',1,30001854,3,0,1,2,0,0,0,2,0,0,0,0,0,1,2,0,0,0,0,0,0,0,0,1),(4740,'2015-03-10 22:38:43','2015-03-10 22:38:43',1,30003352,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(4741,'2015-03-10 22:38:43','2015-10-11 16:46:35',1,30002504,0,0,0,0,0,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(4742,'2015-03-10 22:38:43','2015-03-10 22:38:43',1,30003235,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(4743,'2015-03-10 22:38:43','2015-03-10 22:38:43',1,30000229,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(4744,'2015-03-10 22:38:43','2015-10-11 16:46:35',1,30004706,0,0,0,0,0,0,0,0,5,0,0,0,0,0,0,0,0,0,0,0,0,3,0,0),(4745,'2015-03-10 22:38:43','2015-03-10 22:38:43',1,30001735,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(4746,'2015-03-10 22:38:43','2015-10-11 16:46:35',1,30000101,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0),(4747,'2015-03-10 22:38:43','2015-03-10 22:38:43',1,30002047,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(4748,'2015-03-10 22:38:43','2015-10-11 16:46:35',1,30002083,0,0,0,1,0,0,0,0,0,0,0,0,0,1,0,1,1,0,0,1,4,1,0,1),(4749,'2015-03-10 22:38:43','2015-10-11 16:46:35',1,30030141,12,19,18,22,20,10,11,10,6,30,25,30,24,30,35,28,24,26,11,13,23,16,16,20),(4750,'2015-03-10 22:38:43','2015-10-11 16:46:35',1,30001875,0,0,1,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,0,0,0,0),(4751,'2015-03-10 22:38:43','2015-03-10 22:38:43',1,30002824,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(4752,'2015-03-10 22:38:43','2015-10-11 16:46:35',1,30002955,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,0,0),(4753,'2015-03-10 22:38:43','2015-03-10 22:38:43',1,30002610,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(4754,'2015-03-10 22:38:43','2015-10-11 16:46:35',1,30000177,0,1,0,0,0,0,0,1,0,0,0,0,0,2,3,2,0,0,0,0,0,0,0,0),(4755,'2015-03-10 22:38:43','2015-10-11 16:46:35',1,30003005,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,1,0),(4756,'2015-03-10 22:38:43','2015-10-11 16:46:35',1,30001899,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,3,0),(4757,'2015-03-10 22:38:43','2015-03-10 22:38:43',1,30000313,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(4758,'2015-03-10 22:38:43','2015-10-11 16:46:35',1,30001234,0,0,0,0,0,0,1,1,0,0,1,1,5,0,0,0,0,0,0,0,1,0,0,0),(4759,'2015-03-10 22:38:43','2015-03-10 22:38:43',1,30003004,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(4760,'2015-03-10 22:38:43','2015-03-10 22:38:43',1,30003298,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(4761,'2015-03-10 22:38:43','2015-10-11 16:46:35',1,30000558,0,0,1,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,0,0,0),(4762,'2015-03-10 22:38:43','2015-03-10 22:38:43',1,30000911,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(4763,'2015-03-10 22:38:43','2015-10-11 16:46:35',1,30000858,1,0,0,0,0,0,0,0,0,0,2,1,0,3,3,3,0,1,0,0,0,0,0,0),(4764,'2015-03-10 22:38:43','2015-10-11 16:46:35',1,30000184,1,0,0,2,2,2,0,0,0,0,0,0,0,0,4,4,3,3,1,0,0,2,2,0),(4765,'2015-03-10 22:38:43','2015-10-11 16:46:35',1,30001409,2,1,1,1,4,2,1,0,0,1,1,0,4,1,3,2,6,12,1,1,1,2,0,5),(4766,'2015-03-10 22:38:43','2015-03-10 22:38:43',1,30000282,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(4767,'2015-03-10 22:38:43','2015-10-11 16:46:35',1,30003481,0,0,0,0,0,0,0,0,0,0,0,0,0,2,0,0,0,0,0,0,0,0,0,0),(4768,'2015-03-10 22:38:43','2015-10-11 16:46:35',1,30002707,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0),(4769,'2015-03-10 22:38:43','2015-03-10 22:38:43',1,30002413,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(4770,'2015-03-10 22:38:43','2015-03-10 22:38:43',1,30000965,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(4771,'2015-03-10 22:38:43','2015-10-11 16:46:35',1,30001679,0,0,0,0,0,0,3,0,0,0,0,0,0,0,0,0,0,0,0,1,0,4,0,1),(4772,'2015-03-10 22:38:43','2015-10-11 16:46:35',1,30000129,1,0,2,4,0,0,1,0,0,0,2,1,0,1,1,1,0,0,0,1,2,0,0,1),(4773,'2015-03-10 22:38:43','2015-03-10 22:38:43',1,30001816,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(4774,'2015-03-10 22:38:43','2015-10-11 16:46:35',1,30004495,0,0,1,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0),(4775,'2015-03-10 22:38:43','2015-10-11 16:46:35',1,30001366,0,0,0,1,0,0,1,0,0,6,0,0,0,0,5,0,0,0,0,0,0,0,0,0),(4776,'2015-03-10 22:38:43','2015-10-11 16:46:35',1,30002814,0,1,0,0,0,4,0,1,1,1,0,0,0,1,0,0,0,0,0,0,0,0,0,0),(4777,'2015-03-10 22:38:43','2015-10-11 16:46:35',1,30000151,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0),(4778,'2015-03-10 22:38:43','2015-03-10 22:38:43',1,30001634,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(4779,'2015-03-10 22:38:43','2015-10-11 16:46:35',1,30003799,3,0,0,0,0,0,0,0,4,4,1,1,0,2,2,4,2,6,11,1,0,1,0,2),(4780,'2015-03-10 22:38:43','2015-10-11 16:46:35',1,30003043,0,0,2,0,0,0,2,1,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,1),(4781,'2015-03-10 22:38:43','2015-10-11 16:46:35',1,30000037,1,1,0,0,0,0,0,0,1,2,2,0,0,0,1,1,0,0,0,1,1,0,0,1),(4782,'2015-03-10 22:38:43','2015-03-10 22:38:43',1,30002998,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(4783,'2015-03-10 22:38:43','2015-03-10 22:38:43',1,30003901,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(4784,'2015-03-10 22:38:43','2015-03-10 22:38:43',1,30001208,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(4785,'2015-03-10 22:38:43','2015-03-10 22:38:43',1,30004310,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(4786,'2015-03-10 22:38:43','2015-03-10 22:38:43',1,30003955,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(4787,'2015-03-10 22:38:43','2015-10-11 16:46:35',1,30004938,0,0,0,0,0,0,0,0,0,0,3,0,0,0,1,0,0,0,1,0,0,0,1,0),(4788,'2015-03-10 22:38:43','2015-10-11 16:46:35',1,30001966,0,0,0,0,3,1,0,0,0,0,1,1,0,0,0,0,0,0,0,0,0,2,2,0),(4789,'2015-03-10 22:38:43','2015-10-11 16:46:35',1,30040141,1,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(4790,'2015-03-10 22:38:43','2015-10-11 16:46:35',1,30002070,0,0,0,2,1,1,0,1,0,0,1,2,0,0,1,1,1,1,0,0,0,0,1,1),(4791,'2015-03-10 22:38:43','2015-10-11 16:46:35',1,30000139,7,4,4,3,4,6,0,5,5,4,6,2,2,0,5,2,4,3,0,2,0,9,4,3),(4792,'2015-03-10 22:38:43','2015-10-11 16:46:35',1,30003417,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,1,0,0),(4793,'2015-03-10 22:38:43','2015-10-11 16:46:35',1,30002755,0,0,0,0,0,0,0,1,4,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0),(4794,'2015-03-10 22:38:43','2015-03-10 22:38:43',1,30000382,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(4795,'2015-03-10 22:38:43','2015-03-10 22:38:43',1,30000068,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(4796,'2015-03-10 22:38:43','2015-10-11 16:46:35',1,30002987,0,0,0,0,0,0,0,0,0,1,0,0,1,0,0,0,0,0,0,0,0,0,0,0),(4797,'2015-03-10 22:38:43','2015-03-10 22:38:43',1,30042505,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(4798,'2015-03-10 22:38:43','2015-10-11 16:46:35',1,30004151,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(4799,'2015-03-10 22:38:43','2015-10-11 16:46:35',1,30000921,0,0,0,1,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(4800,'2015-03-10 22:38:43','2015-03-10 22:38:43',1,30004468,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(4801,'2015-03-10 22:38:43','2015-03-10 22:38:43',1,30003306,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(4802,'2015-03-10 22:38:43','2015-10-11 16:46:35',1,30001045,0,0,0,0,0,1,0,0,0,0,0,0,3,5,5,5,5,1,1,4,6,5,2,1),(4803,'2015-03-10 22:38:43','2015-10-11 16:46:35',1,30002049,0,3,3,1,1,1,0,0,0,4,2,2,3,24,14,0,0,2,0,0,1,0,0,2),(4804,'2015-03-10 22:38:43','2015-10-11 16:46:35',1,30045326,1,0,0,0,0,0,12,0,0,0,1,1,0,0,0,0,0,0,0,0,0,0,0,0),(4805,'2015-03-10 22:38:43','2015-10-11 16:46:35',1,30002759,1,1,0,1,3,4,1,2,0,2,1,0,0,2,6,2,1,1,1,1,6,1,0,1),(4806,'2015-03-10 22:38:43','2015-10-11 16:46:35',1,30003077,2,4,2,0,3,3,0,1,0,0,0,0,0,1,0,0,0,0,0,1,1,0,0,0),(4807,'2015-03-10 22:38:43','2015-10-11 16:46:35',1,30003988,0,0,0,0,0,0,0,0,1,0,0,0,0,0,1,1,0,0,0,0,0,0,0,0),(4808,'2015-03-10 22:38:43','2015-03-10 22:38:43',1,30001152,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(4809,'2015-03-10 22:38:43','2015-10-11 16:46:35',1,30001003,0,0,5,0,0,0,0,1,0,0,0,0,0,0,2,2,0,0,0,0,1,0,0,0),(4810,'2015-03-10 22:38:43','2015-03-10 22:38:43',1,30000549,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(4811,'2015-03-10 22:38:43','2015-03-10 22:38:43',1,30001121,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(4812,'2015-03-10 22:38:43','2015-10-11 16:46:35',1,30005150,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(4813,'2015-03-10 22:38:43','2015-03-10 22:38:43',1,30003981,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(4814,'2015-03-10 22:38:43','2015-03-10 22:38:43',1,30000561,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(4815,'2015-03-10 22:38:43','2015-10-11 16:46:35',1,30003536,0,0,1,0,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(4816,'2015-03-10 22:38:43','2015-10-11 16:46:35',1,30000040,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,2,0,0,0,1,0,0,0),(4817,'2015-03-10 22:38:43','2015-03-10 22:38:43',1,30000930,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(4818,'2015-03-10 22:38:43','2015-03-10 22:38:43',1,30005097,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(4819,'2015-03-10 22:38:43','2015-03-10 22:38:43',1,30003965,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(4820,'2015-03-10 22:38:43','2015-10-11 16:46:35',1,30001162,1,0,0,0,0,0,0,0,0,23,13,15,5,21,3,5,4,5,7,38,33,157,2,2),(4821,'2015-03-10 22:38:43','2015-03-10 22:38:43',1,30000434,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(4822,'2015-03-10 22:38:43','2015-03-10 22:38:43',1,30000393,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(4823,'2015-03-10 22:38:43','2015-10-11 16:46:35',1,30000732,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0),(4824,'2015-03-10 22:38:44','2015-10-11 16:46:35',1,30000988,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(4825,'2015-03-10 22:38:44','2015-10-11 16:46:35',1,30001008,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,2,0,0),(4826,'2015-03-10 22:38:44','2015-03-10 22:38:44',1,30001143,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(4827,'2015-03-10 22:38:44','2015-03-10 22:38:44',1,30000674,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(4828,'2015-03-10 22:38:44','2015-10-11 16:46:35',1,30003672,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0),(4829,'2015-03-10 22:38:44','2015-10-11 16:46:35',1,30003953,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(4830,'2015-03-10 22:38:44','2015-10-11 16:46:35',1,30002437,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0),(4831,'2015-03-10 22:38:44','2015-10-11 16:46:35',1,30000264,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,1,0,0,0,0,0,0),(4832,'2015-03-10 22:38:44','2015-03-10 22:38:44',1,30000248,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(4833,'2015-03-10 22:38:44','2015-03-10 22:38:44',1,30002379,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(4834,'2015-03-10 22:38:44','2015-03-10 22:38:44',1,30000755,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(4835,'2015-03-10 22:38:44','2015-10-11 16:46:35',1,30000694,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,1),(4836,'2015-03-10 22:38:44','2015-03-10 22:38:44',1,30001787,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(4837,'2015-03-10 22:38:44','2015-03-10 22:38:44',1,30004406,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(4838,'2015-03-10 22:38:44','2015-03-10 22:38:44',1,30003226,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(4839,'2015-03-10 22:38:44','2015-03-10 22:38:44',1,30003130,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(4840,'2015-03-10 22:38:44','2015-10-11 16:46:35',1,30003194,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(4841,'2015-03-10 22:38:44','2015-10-11 16:46:35',1,30000849,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0),(4842,'2015-03-10 22:38:44','2015-10-11 16:46:35',1,30001892,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0),(4843,'2015-03-10 22:38:44','2015-03-10 22:38:44',1,30003143,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(4844,'2015-03-10 22:38:44','2015-03-10 22:38:44',1,30002862,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(4845,'2015-03-10 22:38:44','2015-10-11 16:46:35',1,30001222,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0),(4846,'2015-03-10 22:38:44','2015-10-11 16:46:35',1,30001084,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(4847,'2015-03-10 22:38:44','2015-10-11 16:46:35',1,30001301,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(4848,'2015-03-10 22:38:44','2015-03-10 22:38:44',1,30000375,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(4849,'2015-03-10 22:38:44','2015-03-10 22:38:44',1,30003294,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(4850,'2015-03-10 22:38:44','2015-03-10 22:38:44',1,30004644,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(4851,'2015-03-10 22:38:44','2015-03-10 22:38:44',1,30000888,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(4852,'2015-03-10 22:38:44','2015-10-11 16:46:35',1,30003666,0,0,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,4,0,0,0),(4853,'2015-03-10 22:38:44','2015-10-11 16:46:35',1,30001015,0,0,0,0,0,0,0,0,1,0,0,0,0,0,1,1,0,0,0,0,1,0,1,1),(4854,'2015-03-10 22:38:44','2015-03-10 22:38:44',1,30000603,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(4855,'2015-03-10 22:38:44','2015-03-10 22:38:44',1,30000984,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(4856,'2015-03-10 22:38:44','2015-03-10 22:38:44',1,30004329,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(4857,'2015-03-10 22:38:44','2015-10-11 16:46:35',1,30001175,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(4858,'2015-03-10 22:38:44','2015-10-11 16:46:35',1,30001383,0,0,0,0,1,1,1,0,0,0,0,0,0,3,1,0,0,0,0,0,0,0,0,0),(4859,'2015-03-10 22:38:44','2015-10-11 16:46:35',1,30000123,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,0,7,0,0,1,0,0),(4860,'2015-03-10 22:38:44','2015-10-11 16:46:35',1,30045331,0,4,0,0,1,1,1,0,0,0,1,1,0,1,3,2,1,0,0,0,1,3,0,1),(4861,'2015-03-10 22:38:44','2015-10-11 16:46:35',1,30005306,1,1,2,0,1,1,1,0,3,0,0,1,1,0,0,0,0,0,1,2,0,0,8,3),(4862,'2015-03-10 22:38:44','2015-03-10 22:38:44',1,30004196,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(4863,'2015-03-10 22:38:44','2015-10-11 16:46:35',1,30000170,0,0,1,0,2,2,7,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1),(4864,'2015-03-10 22:38:44','2015-03-10 22:38:44',1,30004289,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(4865,'2015-03-10 22:38:44','2015-10-11 16:46:35',1,30005029,0,1,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,1,0,0,1),(4866,'2015-03-10 22:38:44','2015-10-11 16:46:35',1,30003483,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0),(4867,'2015-03-10 22:38:44','2015-10-11 16:46:35',1,30004230,0,0,0,0,0,0,1,0,0,0,0,1,2,0,0,0,0,0,1,0,0,0,0,0),(4868,'2015-03-10 22:38:44','2015-10-11 16:46:35',1,30002538,2,0,0,1,0,0,0,3,50,0,2,2,1,2,13,3,0,0,4,1,2,3,0,3),(4869,'2015-03-10 22:38:44','2015-10-11 16:46:35',1,30002400,0,0,0,0,0,0,0,0,0,0,0,2,0,2,0,0,0,0,0,4,4,0,0,0),(4870,'2015-03-10 22:38:44','2015-10-11 16:46:35',1,30000190,0,0,0,0,0,0,0,1,1,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0),(4871,'2015-03-10 22:38:44','2015-10-11 16:46:35',1,30002230,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,4,4,0,0,0),(4872,'2015-03-10 22:38:44','2015-10-11 16:46:35',1,30000173,0,0,0,0,24,24,0,1,9,5,0,0,0,5,1,1,0,1,0,0,0,1,0,1),(4873,'2015-03-10 22:38:44','2015-10-11 16:46:35',1,30003027,0,0,0,0,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0),(4874,'2015-03-10 22:38:44','2015-10-11 16:46:35',1,30005318,1,0,1,0,1,1,0,0,1,0,0,0,0,0,0,0,0,0,1,0,0,0,0,2),(4875,'2015-03-10 22:38:44','2015-10-11 16:46:35',1,30004547,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(4876,'2015-03-10 22:38:44','2015-10-11 16:46:35',1,30000806,0,0,1,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0),(4877,'2015-03-10 22:38:44','2015-03-10 22:38:44',1,30000842,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(4878,'2015-03-10 22:38:44','2015-10-11 16:46:35',1,30001824,0,0,0,0,0,0,0,7,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(4879,'2015-03-10 22:38:44','2015-10-11 16:46:35',1,30005195,1,1,0,0,0,0,0,1,0,0,0,0,0,0,1,1,1,1,0,0,0,1,3,0),(4880,'2015-03-10 22:38:44','2015-03-10 22:38:44',1,30003589,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(4881,'2015-03-10 22:38:44','2015-10-11 16:46:35',1,30004246,0,2,1,0,0,0,1,0,0,1,3,1,0,1,2,0,0,7,0,0,1,1,1,2),(4882,'2015-03-10 22:38:44','2015-10-11 16:46:35',1,30001362,0,0,1,0,0,0,0,0,1,0,0,0,0,2,1,0,0,0,0,0,0,0,0,2),(4883,'2015-03-10 22:38:44','2015-10-11 16:46:35',1,30001380,0,0,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,1),(4884,'2015-03-10 22:38:44','2015-10-11 16:46:35',1,30002798,0,6,0,0,0,0,1,0,0,0,0,0,0,1,1,1,1,0,0,0,0,0,0,4),(4885,'2015-03-10 22:38:44','2015-10-11 16:46:35',1,30004220,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0),(4886,'2015-03-10 22:38:44','2015-10-11 16:46:35',1,30003820,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,1,0,0,0,0,0),(4887,'2015-03-10 22:38:44','2015-10-11 16:46:35',1,30003572,1,0,1,0,0,0,0,1,0,0,1,0,0,0,0,0,0,0,0,0,1,0,0,0),(4888,'2015-03-10 22:38:44','2015-10-11 16:46:35',1,30003790,6,0,1,3,0,1,0,0,0,0,0,0,0,2,3,2,3,2,0,3,3,0,3,1),(4889,'2015-03-10 22:38:44','2015-10-11 16:46:35',1,30003899,0,3,0,0,0,0,2,0,0,0,0,0,1,0,0,0,0,0,1,0,2,0,0,0),(4890,'2015-03-10 22:38:44','2015-03-10 22:38:44',1,30004433,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(4891,'2015-03-10 22:38:44','2015-10-11 16:46:35',1,30002904,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,1,0,0,0,0,0,0,0,0),(4892,'2015-03-10 22:38:44','2015-10-11 16:46:35',1,30001303,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,5,0,2,0,0,0),(4893,'2015-03-10 22:38:44','2015-03-10 22:38:44',1,30001351,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(4894,'2015-03-10 22:38:44','2015-03-10 22:38:44',1,30001794,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(4895,'2015-03-10 22:38:44','2015-03-10 22:38:44',1,30000295,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(4896,'2015-03-10 22:38:44','2015-10-11 16:46:35',1,30004997,3,4,0,6,4,4,8,3,6,3,3,1,0,0,1,0,1,3,0,0,1,1,0,0),(4897,'2015-03-10 22:38:44','2015-03-10 22:38:44',1,30000346,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(4898,'2015-03-10 22:38:44','2015-10-11 16:46:35',1,30003816,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(4899,'2015-03-10 22:38:44','2015-10-11 16:46:35',1,30045309,0,0,0,0,2,1,1,2,0,0,0,0,1,0,0,0,0,1,0,1,0,1,2,0),(4900,'2015-03-10 22:38:44','2015-10-11 16:46:35',1,30004993,9,4,6,4,10,9,4,1,1,7,7,5,1,3,0,3,7,3,6,2,1,14,9,2),(4901,'2015-03-10 22:38:44','2015-03-10 22:38:44',1,30003390,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(4902,'2015-03-10 22:38:44','2015-10-11 16:46:35',1,30002088,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,1,1,1,0,2,2,0),(4903,'2015-03-10 22:38:44','2015-10-11 16:46:35',1,30004991,0,1,0,0,0,0,3,0,0,1,0,0,0,4,0,0,1,0,1,2,1,0,0,0),(4904,'2015-03-10 22:38:44','2015-10-11 16:46:35',1,30002731,2,0,0,0,0,0,0,1,0,1,0,0,1,2,1,0,0,0,0,0,0,0,0,2),(4905,'2015-03-10 22:38:44','2015-10-11 16:46:35',1,30003810,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0),(4906,'2015-03-10 22:38:44','2015-03-10 22:38:44',1,30002487,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(4907,'2015-03-10 22:38:44','2015-03-10 22:38:44',1,30004551,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(4908,'2015-03-10 22:38:44','2015-10-11 16:46:35',1,30000625,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1),(4909,'2015-03-10 22:38:44','2015-10-11 16:46:35',1,30001566,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(4910,'2015-03-10 22:38:44','2015-10-11 16:46:35',1,30003749,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(4911,'2015-03-10 22:38:44','2015-03-10 22:38:44',1,30000927,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(4912,'2015-03-10 22:38:44','2015-10-11 16:46:35',1,30004315,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(4913,'2015-03-10 22:38:44','2015-03-10 22:38:44',1,30003116,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(4914,'2015-03-10 22:38:44','2015-10-11 16:46:35',1,30003339,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1),(4915,'2015-03-10 22:38:44','2015-10-11 16:46:35',1,30003836,8,1,11,4,0,1,1,0,0,2,2,1,1,2,8,2,0,1,0,0,3,0,0,1),(4916,'2015-03-10 22:38:44','2015-03-10 22:38:44',1,30000420,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(4917,'2015-03-10 22:38:44','2015-03-10 22:38:44',1,30004453,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(4918,'2015-03-10 22:38:44','2015-03-10 22:38:44',1,30001925,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(4919,'2015-03-10 22:38:44','2015-10-11 16:46:35',1,30001019,0,0,0,1,3,6,1,0,0,1,0,0,0,6,2,1,0,0,0,1,1,0,0,0),(4920,'2015-03-10 22:38:44','2015-03-10 22:38:44',1,30000322,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(4921,'2015-03-10 22:38:44','2015-10-11 16:46:35',1,30003399,0,0,0,0,0,1,0,0,0,0,0,0,1,1,0,0,0,0,0,0,0,0,0,0),(4922,'2015-03-10 22:38:44','2015-10-11 16:46:35',1,30000193,0,0,0,0,0,0,0,0,0,1,0,4,0,0,0,0,0,0,0,0,0,0,0,0),(4923,'2015-03-10 22:38:44','2015-10-11 16:46:35',1,30002948,0,0,0,0,0,2,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(4924,'2015-03-10 22:38:44','2015-03-10 22:38:44',1,30004943,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(4925,'2015-03-10 22:38:44','2015-10-11 16:46:35',1,30004931,0,0,0,0,0,0,0,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(4926,'2015-03-10 22:38:44','2015-03-10 22:38:44',1,30003175,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(4927,'2015-03-10 22:38:44','2015-03-10 22:38:44',1,30001506,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(4928,'2015-03-10 22:38:44','2015-10-11 16:46:35',1,30003685,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0),(4929,'2015-03-10 22:38:44','2015-03-10 22:38:44',1,30003361,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(4930,'2015-03-10 22:38:44','2015-10-11 16:46:35',1,30002448,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1),(4931,'2015-03-10 22:38:44','2015-03-10 22:38:44',1,30003959,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(4932,'2015-03-10 22:38:44','2015-03-10 22:38:44',1,30001836,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(4933,'2015-03-10 22:38:44','2015-10-11 16:46:35',1,30003129,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(4934,'2015-03-10 22:38:44','2015-10-11 16:46:35',1,30004890,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0),(4935,'2015-03-10 22:38:44','2015-10-11 16:46:35',1,30002573,0,0,0,0,0,0,0,0,0,0,1,1,1,0,0,0,0,0,0,0,0,0,0,0),(4936,'2015-03-10 22:38:44','2015-10-11 16:46:35',1,30001443,1,0,0,0,1,1,0,0,1,0,0,0,0,0,0,0,0,1,0,0,2,1,1,0),(4937,'2015-03-10 22:38:44','2015-10-11 16:46:35',1,30003309,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0),(4938,'2015-03-10 22:38:44','2015-10-11 16:46:35',1,30001073,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0),(4939,'2015-03-10 22:38:44','2015-10-11 16:46:35',1,30001327,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,0,0,0,0,0,0,0),(4940,'2015-03-10 22:38:44','2015-03-10 22:38:44',1,30004457,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(4941,'2015-03-10 22:38:44','2015-03-10 22:38:44',1,30001054,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(4942,'2015-03-10 22:38:44','2015-10-11 16:46:35',1,30005173,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(4943,'2015-03-10 22:38:44','2015-03-10 22:38:44',1,30001541,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(4944,'2015-03-10 22:38:44','2015-03-10 22:38:44',1,30000924,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(4945,'2015-03-10 22:38:44','2015-03-10 22:38:44',1,30004227,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(4946,'2015-03-10 22:38:44','2015-10-11 16:46:35',1,30003098,0,0,0,0,0,0,0,0,0,0,0,0,1,3,0,0,0,1,0,0,1,2,1,0),(4947,'2015-03-10 22:38:44','2015-10-11 16:46:35',1,30002655,3,1,0,0,0,0,0,0,1,0,0,0,0,1,1,1,1,0,1,2,1,0,0,0),(4948,'2015-03-10 22:38:44','2015-10-11 16:46:35',1,30004936,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(4949,'2015-03-10 22:38:44','2015-03-10 22:38:44',1,30001477,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(4950,'2015-03-10 22:38:44','2015-03-10 22:38:44',1,30003247,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(4951,'2015-03-10 22:38:44','2015-10-11 16:46:35',1,30004822,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(4952,'2015-03-10 22:38:44','2015-03-10 22:38:44',1,30002497,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(4953,'2015-03-10 22:38:44','2015-10-11 16:46:35',1,30004392,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(4954,'2015-03-10 22:38:44','2015-10-11 16:46:35',1,30004055,10,1,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(4955,'2015-03-10 22:38:44','2015-03-10 22:38:44',1,30000751,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(4956,'2015-03-10 22:38:44','2015-03-10 22:38:44',1,30000345,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(4957,'2015-03-10 22:38:44','2015-03-10 22:38:44',1,30005177,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(4958,'2015-03-10 22:38:44','2015-03-10 22:38:44',1,30002147,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(4959,'2015-03-10 22:38:44','2015-10-11 16:46:35',1,30004005,0,0,0,0,0,0,0,0,0,1,2,3,0,0,0,0,0,0,0,0,0,0,0,0),(4960,'2015-03-10 22:38:44','2015-10-11 16:46:35',1,30003968,0,1,2,0,0,0,0,0,1,0,0,0,0,2,0,0,0,0,0,0,1,0,0,0),(4961,'2015-03-10 22:38:44','2015-03-10 22:38:44',1,30004753,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(4962,'2015-03-10 22:38:44','2015-10-11 16:46:35',1,30005142,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(4963,'2015-03-10 22:38:44','2015-03-10 22:38:44',1,30000830,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(4964,'2015-03-10 22:38:44','2015-10-11 16:46:35',1,30001250,0,0,0,0,0,0,0,0,0,0,20,14,1,1,1,2,1,2,0,2,2,1,0,0),(4965,'2015-03-10 22:38:44','2015-03-10 22:38:44',1,30001939,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(4966,'2015-03-10 22:38:44','2015-03-10 22:38:44',1,30000532,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(4967,'2015-03-10 22:38:44','2015-03-10 22:38:44',1,30000932,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(4968,'2015-03-10 22:38:44','2015-03-10 22:38:44',1,30000893,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(4969,'2015-03-10 22:38:44','2015-03-10 22:38:44',1,30001897,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(4970,'2015-03-10 22:38:44','2015-03-10 22:38:44',1,30001516,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(4971,'2015-03-10 22:38:44','2015-10-11 16:46:35',1,30001105,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0),(4972,'2015-03-10 22:38:44','2015-03-10 22:38:44',1,30004537,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(4973,'2015-03-10 22:38:44','2015-03-10 22:38:44',1,30003660,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(4974,'2015-03-10 22:38:44','2015-03-10 22:38:44',1,30004538,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(4975,'2015-03-10 22:38:44','2015-03-10 22:38:44',1,30000617,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(4976,'2015-03-10 22:38:44','2015-03-10 22:38:44',1,30001311,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(4977,'2015-03-10 22:38:44','2015-03-10 22:38:44',1,30000367,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(4978,'2015-03-10 22:38:44','2015-03-10 22:38:44',1,30000635,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(4979,'2015-03-10 22:38:44','2015-03-10 22:38:44',1,30002172,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(4980,'2015-03-10 22:38:44','2015-03-10 22:38:44',1,30001095,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(4981,'2015-03-10 22:38:44','2015-03-10 22:38:44',1,30001522,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(4982,'2015-03-10 22:38:44','2015-03-10 22:38:44',1,30003205,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(4983,'2015-03-10 22:38:44','2015-03-10 22:38:44',1,30001502,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(4984,'2015-03-10 22:38:44','2015-03-10 22:38:44',1,30000521,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(4985,'2015-03-10 22:38:44','2015-03-10 22:38:44',1,30003983,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(4986,'2015-03-10 22:38:44','2015-10-11 16:46:35',1,30000894,0,2,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0),(4987,'2015-03-10 22:38:44','2015-03-10 22:38:44',1,30003622,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(4988,'2015-03-10 22:38:44','2015-10-11 16:46:35',1,30001179,0,0,0,0,0,0,0,0,0,1,2,0,0,0,0,0,0,0,0,0,0,0,0,0),(4989,'2015-03-10 22:38:44','2015-03-10 22:38:44',1,30001748,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(4990,'2015-03-10 22:38:44','2015-03-10 22:38:44',1,30003102,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(4991,'2015-03-10 22:38:44','2015-10-11 16:46:35',1,30002787,1,0,2,0,0,0,0,0,0,0,0,0,0,0,0,1,5,0,1,0,0,0,0,0),(4992,'2015-03-10 22:38:44','2015-10-11 16:46:35',1,30000191,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,1,0,0,0,0),(4993,'2015-03-10 22:38:44','2015-10-11 16:46:35',1,30003553,0,0,0,0,0,0,0,0,0,0,0,0,0,3,7,2,0,0,0,1,0,2,2,0),(4994,'2015-03-10 22:38:44','2015-10-11 16:46:35',1,30002790,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0),(4995,'2015-03-10 22:38:44','2015-03-10 22:38:44',1,30004803,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(4996,'2015-03-10 22:38:44','2015-03-10 22:38:44',1,30001872,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(4997,'2015-03-10 22:38:44','2015-10-11 16:46:35',1,30000238,0,0,0,0,1,4,0,0,1,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0),(4998,'2015-03-10 22:38:44','2015-10-11 16:46:35',1,30001160,0,0,0,6,1,2,0,1,8,0,8,3,0,0,0,0,0,0,0,1,4,3,4,2),(4999,'2015-03-10 22:38:44','2015-03-10 22:38:44',1,30001493,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(5000,'2015-03-10 22:38:44','2015-10-11 16:46:35',1,30004847,0,0,0,0,0,0,0,0,0,1,0,0,0,4,0,0,0,0,0,0,0,1,0,0),(5001,'2015-03-10 22:38:44','2015-03-10 22:38:44',1,30000972,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(5002,'2015-03-10 22:38:44','2015-03-10 22:38:44',1,30002415,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(5003,'2015-03-10 22:38:44','2015-10-11 16:46:35',1,30001878,0,0,1,1,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,0,1,1),(5004,'2015-03-10 22:38:44','2015-03-10 22:38:44',1,30003583,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(5005,'2015-03-10 22:38:44','2015-03-10 22:38:44',1,30000326,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(5006,'2015-03-10 22:38:44','2015-03-10 22:38:44',1,30000746,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(5007,'2015-03-10 22:38:44','2015-10-11 16:46:35',1,30001247,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0),(5008,'2015-03-10 22:38:44','2015-03-10 22:38:44',1,30000725,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(5009,'2015-03-10 22:38:44','2015-10-11 16:46:35',1,30002629,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1),(5010,'2015-03-10 22:38:44','2015-10-11 16:46:35',1,30002429,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0),(5011,'2015-03-10 22:38:44','2015-10-11 16:46:35',1,30000871,0,0,0,2,2,2,1,0,0,0,0,0,0,2,2,2,0,0,0,0,0,0,0,0),(5012,'2015-03-10 22:38:44','2015-10-11 16:46:35',1,30001839,1,1,1,1,0,0,1,0,0,0,0,0,0,0,0,0,0,2,0,0,0,0,0,0),(5013,'2015-03-10 22:38:44','2015-03-10 22:38:44',1,30000687,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(5014,'2015-03-10 22:38:44','2015-10-11 16:46:35',1,30001756,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,0,0,0),(5015,'2015-03-10 22:38:44','2015-10-11 16:46:35',1,30000206,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(5016,'2015-03-10 22:38:44','2015-10-11 16:46:35',1,30003422,0,0,0,0,0,1,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0),(5017,'2015-03-10 22:38:44','2015-10-11 16:46:35',1,30002554,0,0,0,0,0,0,0,0,0,0,4,6,0,0,0,0,1,0,0,0,1,0,0,0),(5018,'2015-03-10 22:38:44','2015-10-11 16:46:35',1,30001595,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,2),(5019,'2015-03-10 22:38:44','2015-10-11 16:46:35',1,30001207,0,0,0,0,0,0,0,0,3,7,2,2,0,4,1,1,0,0,0,0,0,0,2,2),(5020,'2015-03-10 22:38:44','2015-03-10 22:38:44',1,30001890,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(5021,'2015-03-10 22:38:44','2015-03-10 22:38:44',1,30001755,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(5022,'2015-03-10 22:38:44','2015-10-11 16:46:35',1,30001173,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,0,0,0,0,0,0,0,0,0),(5023,'2015-03-10 22:38:44','2015-03-10 22:38:44',1,30000372,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(5024,'2015-03-10 22:38:44','2015-10-11 16:46:35',1,30001336,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,0,0,0,0,0,0,0),(5025,'2015-03-10 22:38:44','2015-03-10 22:38:44',1,30001468,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(5026,'2015-03-10 22:38:44','2015-03-10 22:38:44',1,30000315,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(5027,'2015-03-10 22:38:44','2015-10-11 16:46:35',1,30004662,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0),(5028,'2015-03-10 22:38:44','2015-10-11 16:46:35',1,30002854,0,1,0,2,0,0,0,4,0,1,0,0,0,0,0,0,0,1,0,0,0,1,1,0),(5029,'2015-03-10 22:38:44','2015-10-11 16:46:35',1,30001849,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0),(5030,'2015-03-10 22:38:44','2015-03-10 22:38:44',1,30004368,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(5031,'2015-03-10 22:38:44','2015-03-10 22:38:44',1,30000711,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(5032,'2015-03-10 22:38:44','2015-10-11 16:46:35',1,30000928,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0),(5033,'2015-03-10 22:38:44','2015-10-11 16:46:35',1,30002371,0,0,0,0,0,0,0,0,0,0,0,0,1,0,1,1,0,0,0,0,0,0,0,0),(5034,'2015-03-10 22:38:44','2015-10-11 16:46:35',1,30001194,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0),(5035,'2015-03-10 22:38:44','2015-10-11 16:46:35',1,30003696,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1),(5036,'2015-03-10 22:38:44','2015-03-10 22:38:44',1,30000602,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(5037,'2015-03-10 22:38:44','2015-03-10 22:38:44',1,30004864,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(5038,'2015-03-10 22:38:44','2015-03-10 22:38:44',1,30003166,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(5039,'2015-03-10 22:38:44','2015-03-10 22:38:44',1,30000957,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(5040,'2015-03-10 22:38:44','2015-03-10 22:38:44',1,30000433,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(5041,'2015-03-10 22:38:44','2015-03-10 22:38:44',1,30002348,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(5042,'2015-03-10 22:38:44','2015-10-11 16:46:35',1,30000187,0,0,0,1,2,2,0,0,0,1,0,0,0,0,1,1,0,0,0,0,0,1,0,1),(5043,'2015-03-10 22:38:44','2015-10-11 16:46:35',1,30002939,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(5044,'2015-03-10 22:38:44','2015-10-11 16:46:35',1,30003638,0,0,0,0,0,0,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1),(5045,'2015-03-10 22:38:44','2015-10-11 16:46:35',1,30000698,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,0,0,0),(5046,'2015-03-10 22:38:44','2015-10-11 16:46:35',1,30001140,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1),(5047,'2015-03-10 22:38:44','2015-10-11 16:46:35',1,30003216,0,0,0,0,0,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(5048,'2015-03-10 22:38:44','2015-03-10 22:38:44',1,30001998,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(5049,'2015-03-10 22:38:44','2015-03-10 22:38:44',1,30003256,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(5050,'2015-03-10 22:38:44','2015-10-11 16:46:35',1,30003120,0,0,0,0,0,0,0,0,0,1,0,0,0,4,0,0,0,0,0,1,1,0,0,0),(5051,'2015-03-10 22:38:44','2015-03-10 22:38:44',1,30000337,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(5052,'2015-03-10 22:38:44','2015-10-11 16:46:35',1,30004621,0,1,0,0,0,0,1,0,1,0,1,1,0,0,0,1,1,1,0,0,0,0,2,0),(5053,'2015-03-10 22:38:44','2015-03-10 22:38:44',1,30002126,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(5054,'2015-03-10 22:38:44','2015-10-11 16:46:35',1,30005016,0,0,0,0,0,0,0,0,0,0,3,1,1,0,1,0,1,0,0,0,0,0,0,0),(5055,'2015-03-10 22:38:44','2015-10-11 16:46:35',1,30002622,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,8,0),(5056,'2015-03-10 22:38:44','2015-03-10 22:38:44',1,30004840,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(5057,'2015-03-10 22:38:44','2015-03-10 22:38:44',1,30000517,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(5058,'2015-03-10 22:38:44','2015-03-10 22:38:44',1,30004915,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(5059,'2015-03-10 22:38:44','2015-03-10 22:38:44',1,30004173,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(5060,'2015-03-10 22:38:44','2015-10-11 16:46:35',1,30003744,1,1,0,0,0,0,0,0,0,0,1,1,0,0,1,1,1,0,0,0,4,0,0,1),(5061,'2015-03-10 22:38:44','2015-03-10 22:38:44',1,30002148,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(5062,'2015-03-10 22:38:44','2015-10-11 16:46:35',1,30003110,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,1,1,0,0,0),(5063,'2015-03-10 22:38:44','2015-10-11 16:46:35',1,30001978,2,5,4,0,3,2,1,2,0,1,0,0,1,0,0,1,1,0,2,0,1,2,2,5),(5064,'2015-03-10 22:38:44','2015-03-10 22:38:44',1,30003245,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(5065,'2015-03-10 22:38:44','2015-10-11 16:46:35',1,30000541,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(5066,'2015-03-10 22:38:44','2015-10-11 16:46:35',1,30003274,1,0,0,0,0,0,0,0,0,1,0,0,0,2,0,0,0,0,0,0,0,0,0,1),(5067,'2015-03-10 22:38:44','2015-03-10 22:38:44',1,30000882,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(5068,'2015-03-10 22:38:44','2015-03-10 22:38:44',1,30003259,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(5069,'2015-03-10 22:38:44','2015-03-10 22:38:44',1,30004907,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(5070,'2015-03-10 22:38:44','2015-03-10 22:38:44',1,30003173,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(5071,'2015-03-10 22:38:44','2015-10-11 16:46:35',1,30001594,0,0,0,0,0,0,0,0,0,1,10,0,0,0,0,0,0,0,0,0,0,0,0,0),(5072,'2015-03-10 22:38:44','2015-03-10 22:38:44',1,30000339,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(5073,'2015-03-10 22:38:44','2015-10-11 16:46:35',1,30003278,0,0,2,3,0,0,0,1,1,1,0,0,0,1,0,0,1,0,0,0,0,0,0,0),(5074,'2015-03-10 22:38:44','2015-03-10 22:38:44',1,30004075,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(5075,'2015-03-10 22:38:44','2015-03-10 22:38:44',1,30001059,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(5076,'2015-03-10 22:38:44','2015-03-10 22:38:44',1,30003288,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(5077,'2015-03-10 22:38:44','2015-10-11 16:46:35',1,30003770,0,1,0,0,0,0,0,0,0,0,2,1,0,1,0,0,0,0,0,0,0,1,1,1),(5078,'2015-03-10 22:38:44','2015-10-11 16:46:35',1,30002916,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(5079,'2015-03-10 22:38:44','2015-03-10 22:38:44',1,30003208,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(5080,'2015-03-10 22:38:44','2015-03-10 22:38:44',1,30000808,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(5081,'2015-03-10 22:38:44','2015-03-10 22:38:44',1,30000358,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(5082,'2015-03-10 22:38:44','2015-03-10 22:38:44',1,30000833,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(5083,'2015-03-10 22:38:44','2015-03-10 22:38:44',1,30001835,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(5084,'2015-03-10 22:38:44','2015-03-10 22:38:44',1,30001086,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(5085,'2015-03-10 22:38:44','2015-10-11 16:46:35',1,30000713,0,0,0,0,0,0,8,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(5086,'2015-03-10 22:38:44','2015-10-11 16:46:35',1,30002943,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0),(5087,'2015-03-10 22:38:44','2015-10-11 16:46:35',1,30003688,0,1,3,1,1,1,0,1,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0),(5088,'2015-03-10 22:38:44','2015-03-10 22:38:44',1,30001211,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(5089,'2015-03-10 22:38:44','2015-03-10 22:38:44',1,30001249,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(5090,'2015-03-10 22:38:44','2015-10-11 16:46:35',1,30000496,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(5091,'2015-03-10 22:38:44','2015-03-10 22:38:44',1,30000245,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(5092,'2015-03-10 22:38:44','2015-10-11 16:46:35',1,30001967,0,0,0,0,0,0,0,1,0,0,3,3,0,0,0,0,0,0,0,0,1,0,0,0),(5093,'2015-03-10 22:38:44','2015-03-10 22:38:44',1,30004331,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(5094,'2015-03-10 22:38:44','2015-10-11 16:46:35',1,30000777,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0),(5095,'2015-03-10 22:38:44','2015-10-11 16:46:35',1,30003700,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0),(5096,'2015-03-10 22:38:44','2015-10-11 16:46:35',1,30001905,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1),(5097,'2015-03-10 22:38:44','2015-03-10 22:38:44',1,30004416,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(5098,'2015-03-10 22:38:44','2015-10-11 16:46:35',1,30003773,0,0,0,0,0,0,1,0,0,1,0,0,0,38,0,0,0,0,1,0,0,0,0,0),(5099,'2015-03-10 22:38:44','2015-03-10 22:38:44',1,30001490,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(5100,'2015-03-10 22:38:44','2015-03-10 22:38:44',1,30004355,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(5101,'2015-03-10 22:38:44','2015-03-10 22:38:44',1,30000221,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(5102,'2015-03-10 22:38:44','2015-10-11 16:46:35',1,30000664,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0),(5103,'2015-03-10 22:38:44','2015-10-11 16:46:35',1,30000470,0,0,0,0,0,0,0,0,0,1,0,0,0,0,15,9,0,0,0,0,0,0,0,0),(5104,'2015-03-10 22:38:44','2015-03-10 22:38:44',1,30002319,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(5105,'2015-03-10 22:38:44','2015-03-10 22:38:44',1,30000417,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(5106,'2015-03-10 22:38:44','2015-10-11 16:46:35',1,30002946,1,0,0,0,0,0,0,0,3,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(5107,'2015-03-10 22:38:44','2015-10-11 16:46:35',1,30002897,0,0,0,0,0,0,0,0,1,0,0,0,1,12,0,0,0,0,0,0,1,0,0,0),(5108,'2015-03-10 22:38:44','2015-03-10 22:38:44',1,30001093,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(5109,'2015-03-10 22:38:44','2015-10-11 16:46:35',1,30002118,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1),(5110,'2015-03-10 22:38:44','2015-10-11 16:46:35',1,30000889,0,0,0,0,0,0,0,0,0,0,1,1,0,1,0,0,0,0,0,0,0,0,0,0),(5111,'2015-03-10 22:38:44','2015-03-10 22:38:44',1,30001778,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(5112,'2015-03-10 22:38:44','2015-03-10 22:38:44',1,30003224,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(5113,'2015-03-10 22:38:44','2015-10-11 16:46:35',1,30000604,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,1,1,0,0,0),(5114,'2015-03-10 22:38:44','2015-03-10 22:38:44',1,30000293,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(5115,'2015-03-10 22:38:44','2015-10-11 16:46:35',1,30004552,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0),(5116,'2015-03-10 22:38:44','2015-03-10 22:38:44',1,30001958,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(5117,'2015-03-10 22:38:44','2015-03-10 22:38:44',1,30004069,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(5118,'2015-03-10 22:38:44','2015-10-11 16:46:35',1,30004875,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0),(5119,'2015-03-10 22:38:44','2015-10-11 16:46:35',1,30003731,0,1,2,1,0,0,0,0,3,1,19,2,0,2,1,1,3,0,2,9,12,0,0,0),(5120,'2015-03-10 22:38:44','2015-03-10 22:38:44',1,30001973,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(5121,'2015-03-10 22:38:44','2015-10-11 16:46:35',1,30001798,0,0,0,0,0,0,0,0,0,1,0,0,0,8,1,1,0,0,0,0,0,0,0,0),(5122,'2015-03-10 22:38:44','2015-03-10 22:38:44',1,30004613,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(5123,'2015-03-10 22:38:44','2015-10-11 16:46:35',1,30000752,0,0,0,0,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(5124,'2015-03-10 22:38:44','2015-10-11 16:46:35',1,30003263,0,0,0,0,0,0,0,0,1,0,1,1,0,0,0,0,0,0,0,0,0,0,0,0),(5125,'2015-03-10 22:38:44','2015-10-11 16:46:35',1,30003119,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0),(5126,'2015-03-10 22:38:44','2015-10-11 16:46:35',1,30004342,0,0,0,0,1,1,0,0,0,0,0,0,0,1,1,1,0,0,0,0,0,0,0,0),(5127,'2015-03-10 22:38:44','2015-03-10 22:38:44',1,30003252,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(5128,'2015-03-10 22:38:44','2015-03-10 22:38:44',1,30001792,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(5129,'2015-03-10 22:38:44','2015-03-10 22:38:44',1,30004894,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(5130,'2015-03-10 22:38:44','2015-03-10 22:38:44',1,30001999,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(5131,'2015-03-10 22:38:44','2015-03-10 22:38:44',1,30000750,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(5132,'2015-03-10 22:38:44','2015-10-11 16:46:35',1,30000585,0,0,0,0,0,0,0,0,0,0,0,2,0,0,0,0,0,1,0,0,0,0,0,0),(5133,'2015-03-10 22:38:44','2015-03-10 22:38:44',1,30001584,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(5134,'2015-03-10 22:38:44','2015-03-10 22:38:44',1,30002155,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(5135,'2015-03-10 22:38:44','2015-03-10 22:38:44',1,30003313,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(5136,'2015-03-10 22:38:44','2015-03-10 22:38:44',1,30000275,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(5137,'2015-03-10 22:38:44','2015-10-11 16:46:35',1,30000447,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(5138,'2015-03-10 22:38:44','2015-10-11 16:46:35',1,30001552,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0),(5139,'2015-03-10 22:38:44','2015-10-11 16:46:35',1,30004038,0,0,0,0,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(5140,'2015-03-10 22:38:44','2015-03-10 22:38:44',1,30002822,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(5141,'2015-03-10 22:38:44','2015-10-11 16:46:35',1,30001113,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(5142,'2015-03-10 22:38:44','2015-10-11 16:46:35',1,30001089,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(5143,'2015-03-10 22:38:44','2015-03-10 22:38:44',1,30005095,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(5144,'2015-03-10 22:38:44','2015-03-10 22:38:44',1,30004856,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(5145,'2015-03-10 22:38:44','2015-03-10 22:38:44',1,30001753,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(5146,'2015-03-10 22:38:44','2015-10-11 16:46:35',1,30004655,1,0,0,0,0,0,0,0,0,1,0,0,0,0,1,2,4,0,4,1,2,0,0,0),(5147,'2015-03-10 22:38:44','2015-03-10 22:38:44',1,30000237,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(5148,'2015-03-10 22:38:44','2015-10-11 16:46:35',1,30000678,0,0,0,0,0,0,1,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(5149,'2015-03-10 22:38:44','2015-03-10 22:38:44',1,30002122,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(5150,'2015-03-10 22:38:44','2015-10-11 16:46:35',1,30004320,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0),(5151,'2015-03-10 22:38:44','2015-03-10 22:38:44',1,30001325,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(5152,'2015-03-10 22:38:44','2015-03-10 22:38:44',1,30004382,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(5153,'2015-03-10 22:38:44','2015-03-10 22:38:44',1,30000499,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(5154,'2015-03-10 22:38:44','2015-03-10 22:38:44',1,30002600,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(5155,'2015-03-10 22:38:44','2015-10-11 16:46:35',1,30001021,1,0,0,0,0,0,0,1,1,0,0,0,1,0,4,6,3,1,0,0,1,2,1,2),(5156,'2015-03-10 22:38:44','2015-03-10 22:38:44',1,30003228,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(5157,'2015-03-10 22:38:44','2015-10-11 16:46:35',1,30005175,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1),(5158,'2015-03-10 22:38:44','2015-10-11 16:46:35',1,30003326,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1),(5159,'2015-03-10 22:38:44','2015-10-11 16:46:35',1,30004932,0,0,1,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(5160,'2015-03-10 22:38:44','2015-03-10 22:38:44',1,30004062,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(5161,'2015-03-10 22:38:44','2015-03-10 22:38:44',1,30003237,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(5162,'2015-03-10 22:38:44','2015-10-11 16:46:35',1,30004396,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0),(5163,'2015-03-10 22:38:44','2015-03-10 22:38:44',1,30004568,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(5164,'2015-03-10 22:38:44','2015-10-11 16:46:35',1,30004665,0,0,0,0,0,0,0,0,0,0,1,1,4,2,0,7,54,2,0,4,9,0,0,0),(5165,'2015-03-10 22:38:44','2015-10-11 16:46:35',1,30001291,0,0,0,0,0,0,0,0,0,1,0,0,2,0,3,2,2,0,0,7,2,0,0,0),(5166,'2015-03-10 22:38:44','2015-03-10 22:38:44',1,30001932,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(5167,'2015-03-10 22:38:44','2015-03-10 22:38:44',1,30001498,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(5168,'2015-03-10 22:38:44','2015-03-10 22:38:44',1,30002597,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(5169,'2015-03-10 22:38:44','2015-03-10 22:38:44',1,30003207,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(5170,'2015-03-10 22:38:44','2015-10-11 16:46:35',1,30001829,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,0,0),(5171,'2015-03-10 22:38:44','2015-03-10 22:38:44',1,30003265,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(5172,'2015-03-10 22:38:44','2015-03-10 22:38:44',1,30002044,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(5173,'2015-03-10 22:38:44','2015-10-11 16:46:35',1,30002169,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0),(5174,'2015-03-10 22:38:44','2015-10-11 16:46:35',1,30004941,1,0,0,1,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,2,1,0,0),(5175,'2015-03-10 22:38:44','2015-10-11 16:46:35',1,30000958,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,1,0,0,0,0,0,0),(5176,'2015-03-10 22:38:44','2015-03-10 22:38:44',1,30001031,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(5177,'2015-03-10 22:38:44','2015-03-10 22:38:44',1,30004859,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(5178,'2015-03-10 22:38:44','2015-10-11 16:46:35',1,30002162,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,0,0),(5179,'2015-03-10 22:38:44','2015-03-10 22:38:44',1,30002586,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(5180,'2015-03-10 22:38:44','2015-10-11 16:46:35',1,30001039,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,3,0,0,0,1,0,0,0),(5181,'2015-03-10 22:38:44','2015-10-11 16:46:35',1,30003726,2,0,5,0,1,1,6,0,3,2,0,1,0,3,1,0,0,0,4,2,2,3,0,0),(5182,'2015-03-10 22:38:44','2015-03-10 22:38:44',1,30004898,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(5183,'2015-03-10 22:38:44','2015-03-10 22:38:44',1,30002176,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(5184,'2015-03-10 22:38:44','2015-10-11 16:46:35',1,30004763,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,1,0,0,0,0,1,0,0),(5185,'2015-03-10 22:38:44','2015-03-10 22:38:44',1,30004809,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(5186,'2015-03-10 22:38:44','2015-10-11 16:46:35',1,30001255,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0),(5187,'2015-03-10 22:38:44','2015-03-10 22:38:44',1,30000884,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(5188,'2015-03-10 22:38:44','2015-10-11 16:46:35',1,30004171,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0),(5189,'2015-03-10 22:38:44','2015-03-10 22:38:44',1,30000331,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(5190,'2015-03-10 22:38:44','2015-03-10 22:38:44',1,30001791,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(5191,'2015-03-10 22:38:44','2015-10-11 16:46:35',1,30001261,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0),(5192,'2015-03-10 22:38:44','2015-10-11 16:46:35',1,30003342,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1),(5193,'2015-03-10 22:38:44','2015-10-11 16:46:35',1,30001108,0,0,0,1,0,0,0,0,0,3,0,0,0,0,0,0,0,0,0,1,1,0,0,0),(5194,'2015-03-10 22:38:44','2015-10-11 16:46:35',1,30004428,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,0,0,0),(5195,'2015-03-10 22:38:44','2015-03-10 22:38:44',1,30003651,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(5196,'2015-03-10 22:38:44','2015-10-11 16:46:35',1,30000306,0,0,0,1,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0),(5197,'2015-03-10 22:38:44','2015-10-11 16:46:35',1,30000220,0,0,1,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(5198,'2015-03-10 22:38:44','2015-10-11 16:46:35',1,30001846,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,1,1,0,0,0,0,0,0),(5199,'2015-03-10 22:38:44','2015-03-10 22:38:44',1,30002109,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(5200,'2015-03-10 22:38:44','2015-03-10 22:38:44',1,30002037,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(5201,'2015-03-10 22:38:44','2015-03-10 22:38:44',1,30004456,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(5202,'2015-03-10 22:38:44','2015-03-10 22:38:44',1,30002115,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(5203,'2015-03-10 22:38:44','2015-03-10 22:38:44',1,30000918,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(5204,'2015-03-10 22:38:44','2015-03-10 22:38:44',1,30001570,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(5205,'2015-03-10 22:38:44','2015-03-10 22:38:44',1,30001546,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(5206,'2015-03-10 22:38:44','2015-03-10 22:38:44',1,30000729,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(5207,'2015-03-10 22:38:44','2015-03-10 22:38:44',1,30004785,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(5208,'2015-03-10 22:38:44','2015-03-10 22:38:44',1,30000308,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(5209,'2015-03-10 22:38:44','2015-03-10 22:38:44',1,30001058,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(5210,'2015-03-10 22:38:44','2015-10-11 16:46:35',1,30001262,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0),(5211,'2015-03-10 22:38:44','2015-10-11 16:46:35',1,30000947,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,1,0,0,0,0,0,1,0),(5212,'2015-03-10 22:38:44','2015-03-10 22:38:44',1,30001559,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(5213,'2015-03-10 22:38:44','2015-03-10 22:38:44',1,30002466,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(5214,'2015-03-10 22:38:44','2015-10-11 16:46:35',1,30003734,2,0,0,0,0,0,0,0,0,0,0,0,0,0,2,2,1,0,0,0,0,0,0,0),(5215,'2015-03-10 22:38:44','2015-10-11 16:46:35',1,30003307,2,0,1,0,1,1,1,0,0,0,2,1,0,3,0,0,0,2,1,0,0,2,1,2),(5216,'2015-03-10 22:38:44','2015-10-11 16:46:35',1,30002902,0,0,0,0,0,0,3,3,0,12,6,4,0,20,2,3,3,0,1,1,0,0,2,0),(5217,'2015-03-10 22:38:44','2015-10-11 16:46:35',1,30000080,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0),(5218,'2015-03-10 22:38:44','2015-10-11 16:46:35',1,30004286,0,0,0,0,0,0,0,0,0,1,2,0,0,0,0,1,1,1,0,0,0,0,0,0),(5219,'2015-03-10 22:38:44','2015-03-10 22:38:44',1,30002592,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(5220,'2015-03-10 22:38:44','2015-03-10 22:38:44',1,30001701,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(5221,'2015-03-10 22:38:44','2015-10-11 16:46:35',1,30003158,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0),(5222,'2015-03-10 22:38:44','2015-10-11 16:46:35',1,30004111,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,6,0,0,0),(5223,'2015-03-10 22:38:44','2015-10-11 16:46:35',1,30002762,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,0,0),(5224,'2015-03-10 22:38:44','2015-10-11 16:46:35',1,30001713,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,3),(5225,'2015-03-10 22:38:44','2015-10-11 16:46:35',1,30004797,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0),(5226,'2015-03-10 22:38:44','2015-03-10 22:38:44',1,30001525,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(5227,'2015-03-10 22:38:44','2015-03-10 22:38:44',1,30001803,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(5228,'2015-03-10 22:38:44','2015-03-10 22:38:44',1,30000621,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(5229,'2015-03-10 22:38:44','2015-03-10 22:38:44',1,30001915,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(5230,'2015-03-10 22:38:44','2015-03-10 22:38:44',1,30004144,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(5231,'2015-03-10 22:38:44','2015-10-11 16:46:35',1,30001710,0,3,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1),(5232,'2015-03-10 22:38:44','2015-10-11 16:46:35',1,30003514,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1),(5233,'2015-03-10 22:38:44','2015-10-11 16:46:35',1,30004236,0,0,2,0,0,0,0,0,0,0,0,0,0,1,2,2,0,0,0,0,0,1,0,0),(5234,'2015-03-10 22:38:44','2015-03-10 22:38:44',1,30004154,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(5235,'2015-03-10 22:38:44','2015-03-10 22:38:44',1,30004265,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(5236,'2015-03-10 22:38:44','2015-03-10 22:38:44',1,30003872,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(5237,'2015-03-10 22:38:44','2015-10-11 16:46:35',1,30003997,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0),(5238,'2015-03-10 22:38:44','2015-03-10 22:38:44',1,30004838,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(5239,'2015-03-10 22:38:44','2015-03-10 22:38:44',1,30004350,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(5240,'2015-03-10 22:38:44','2015-03-10 22:38:44',1,30000530,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(5241,'2015-03-10 22:38:44','2015-10-11 16:46:35',1,30001204,0,0,1,0,0,0,0,0,0,0,0,0,4,1,6,0,0,0,1,3,0,2,2,1),(5242,'2015-03-10 22:38:44','2015-03-10 22:38:44',1,30004459,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(5243,'2015-03-10 22:38:44','2015-10-11 16:46:35',1,30004051,0,0,3,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(5244,'2015-03-10 22:38:44','2015-10-11 16:46:35',1,30000583,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,2,0,1,1,0,0,0),(5245,'2015-03-10 22:38:44','2015-10-11 16:46:35',1,30004260,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1),(5246,'2015-03-10 22:38:44','2015-10-11 16:46:35',1,30000036,0,0,1,0,0,0,0,0,1,0,0,0,0,0,0,1,1,0,0,0,0,0,0,0),(5247,'2015-03-10 22:38:44','2015-03-10 22:38:44',1,30001353,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(5248,'2015-03-10 22:38:44','2015-10-11 16:46:35',1,30001024,1,0,0,0,0,0,0,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(5249,'2015-03-10 22:38:44','2015-10-11 16:46:35',1,30003690,0,0,5,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(5250,'2015-03-10 22:38:44','2015-10-11 16:46:35',1,30001395,0,0,0,0,1,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0),(5251,'2015-03-10 22:38:44','2015-03-10 22:38:44',1,30000880,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(5252,'2015-03-10 22:38:44','2015-10-11 16:46:35',1,30001118,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,1,0,0,0,0,0,0),(5253,'2015-03-10 22:38:44','2015-03-10 22:38:44',1,30000241,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(5254,'2015-03-10 22:38:44','2015-10-11 16:46:35',1,30002432,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,1,1,0,0,0,1,0,0,0),(5255,'2015-03-10 22:38:44','2015-10-11 16:46:35',1,30001427,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,2,0,0,0),(5256,'2015-03-10 22:38:44','2015-10-11 16:46:35',1,30005017,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,1,1,0,0,0,1,0,0,0),(5257,'2015-03-10 22:38:44','2015-10-11 16:46:35',1,30001668,0,0,0,0,1,0,0,0,0,0,0,0,0,0,2,2,0,0,3,0,0,0,0,2),(5258,'2015-03-10 22:38:44','2015-10-11 16:46:35',1,30004131,0,0,0,0,0,0,0,0,0,4,1,1,0,0,0,0,0,0,0,0,0,0,0,0),(5259,'2015-03-10 22:38:44','2015-03-10 22:38:44',1,30003960,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(5260,'2015-03-10 22:38:44','2015-10-11 16:46:35',1,30003493,0,0,0,0,1,0,0,1,1,0,0,0,0,1,0,0,0,2,0,1,1,0,0,1),(5261,'2015-03-10 22:38:44','2015-10-11 16:46:35',1,30001271,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,1,1,1,0,0,0,0,0,2),(5262,'2015-03-10 22:38:44','2015-10-11 16:46:35',1,30000784,0,0,1,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,0),(5263,'2015-03-10 22:38:44','2015-03-10 22:38:44',1,30003753,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(5264,'2015-03-10 22:38:44','2015-03-10 22:38:44',1,30001758,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(5265,'2015-03-10 22:38:44','2015-03-10 22:38:44',1,30003212,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(5266,'2015-03-10 22:38:44','2015-03-10 22:38:44',1,30004026,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(5267,'2015-03-10 22:38:44','2015-10-11 16:46:35',1,30002794,0,0,1,0,0,0,3,0,0,0,0,0,0,0,0,0,0,1,0,0,3,0,0,1),(5268,'2015-03-10 22:38:44','2015-10-11 16:46:35',1,30003414,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(5269,'2015-03-10 22:38:44','2015-10-11 16:46:35',1,30004627,1,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(5270,'2015-03-10 22:38:44','2015-03-10 22:38:44',1,30003178,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(5271,'2015-03-10 22:38:44','2015-03-10 22:38:44',1,30000408,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(5272,'2015-03-10 22:38:44','2015-03-10 22:38:44',1,30003545,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(5273,'2015-03-10 22:38:44','2015-10-11 16:46:35',1,30005204,0,0,0,0,0,0,0,0,0,0,0,0,0,2,3,1,0,0,2,0,0,0,0,0),(5274,'2015-03-10 22:38:44','2015-03-10 22:38:44',1,30000916,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(5275,'2015-03-10 22:38:44','2015-10-11 16:46:35',1,30000007,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,1,0),(5276,'2015-03-10 22:38:44','2015-03-10 22:38:44',1,30004679,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(5277,'2015-03-10 22:38:44','2015-03-10 22:38:44',1,30004548,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(5278,'2015-03-10 22:38:44','2015-03-10 22:38:44',1,30003588,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(5279,'2015-03-10 22:38:44','2015-10-11 16:46:35',1,30004977,0,2,2,0,2,2,0,2,0,3,1,0,0,0,0,0,0,0,0,0,1,0,2,1),(5280,'2015-03-10 22:38:44','2015-10-11 16:46:35',1,30004561,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(5281,'2015-03-10 22:38:44','2015-10-11 16:46:35',1,30003591,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0),(5282,'2015-03-10 22:38:44','2015-03-10 22:38:44',1,30003567,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(5283,'2015-03-10 22:38:44','2015-03-10 22:38:44',1,30004174,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(5284,'2015-03-10 22:38:44','2015-10-11 16:46:35',1,30003990,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0),(5285,'2015-03-10 22:38:44','2015-10-11 16:46:35',1,30003705,0,0,0,0,0,0,0,0,0,0,2,0,0,1,0,0,0,0,0,0,0,0,0,0),(5286,'2015-03-10 22:38:44','2015-03-10 22:38:44',1,30002310,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(5287,'2015-03-10 22:38:44','2015-10-11 16:46:35',1,30000231,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0),(5288,'2015-03-10 22:38:44','2015-10-11 16:46:35',1,30004617,0,0,8,2,2,1,10,0,0,0,0,0,1,1,0,0,0,0,2,0,0,2,1,4),(5289,'2015-03-10 22:38:44','2015-10-11 16:46:35',1,30002925,0,0,0,1,0,0,0,0,0,0,0,0,0,2,0,0,0,0,0,0,0,0,1,0),(5290,'2015-03-10 22:38:44','2015-10-11 16:46:35',1,30004719,0,5,0,0,0,0,0,0,0,0,0,2,1,2,0,1,2,1,0,3,1,1,0,0),(5291,'2015-03-10 22:38:44','2015-03-10 22:38:44',1,30004554,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(5292,'2015-03-10 22:38:44','2015-03-10 22:38:44',1,30000506,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(5293,'2015-03-10 22:38:44','2015-03-10 22:38:44',1,30004542,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(5294,'2015-03-10 22:38:44','2015-03-10 22:38:44',1,30001956,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(5295,'2015-03-10 22:38:44','2015-10-11 16:46:35',1,30004921,3,0,0,0,0,0,0,0,0,0,0,0,0,0,3,0,0,1,0,0,0,0,0,0),(5296,'2015-03-10 22:38:44','2015-10-11 16:46:35',1,30000266,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,0,0,0,0,0,0,0),(5297,'2015-03-10 22:38:44','2015-03-10 22:38:44',1,30000597,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(5298,'2015-03-10 22:38:44','2015-03-10 22:38:44',1,30001486,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(5299,'2015-03-10 22:38:44','2015-03-10 22:38:44',1,30001074,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(5300,'2015-03-10 22:38:44','2015-03-10 22:38:44',1,30002292,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(5301,'2015-03-10 22:38:44','2015-03-10 22:38:44',1,30001097,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(5302,'2015-03-10 22:38:44','2015-10-11 16:46:35',1,30005132,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1),(5303,'2015-03-10 22:38:44','2015-03-10 22:38:44',1,30002368,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(5304,'2015-03-10 22:38:44','2015-03-10 22:38:44',1,30001454,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(5305,'2015-03-10 22:38:44','2015-10-11 16:46:35',1,30001263,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0),(5306,'2015-03-10 22:38:44','2015-10-11 16:46:35',1,30002141,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0),(5307,'2015-03-10 22:38:44','2015-03-10 22:38:44',1,30000387,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(5308,'2015-03-10 22:38:44','2015-10-11 16:46:35',1,30004341,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(5309,'2015-03-10 22:38:44','2015-03-10 22:38:44',1,30001613,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(5310,'2015-03-10 22:38:44','2015-03-10 22:38:44',1,30003646,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(5311,'2015-03-10 22:38:44','2015-03-10 22:38:44',1,30004965,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(5312,'2015-03-10 22:38:44','2015-03-10 22:38:44',1,30003154,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(5313,'2015-03-10 22:38:44','2015-03-10 22:38:44',1,30002617,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(5314,'2015-03-10 22:38:44','2015-03-10 22:38:44',1,30004425,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(5315,'2015-03-10 22:38:44','2015-03-10 22:38:44',1,30003357,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(5316,'2015-03-10 22:38:44','2015-10-11 16:46:35',1,30001919,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,2,0,0,0,1,0,0),(5317,'2015-03-10 22:38:44','2015-10-11 16:46:35',1,30003783,0,1,0,0,0,0,2,0,0,6,1,1,0,0,2,0,1,0,0,0,2,0,7,3),(5318,'2015-03-10 22:38:44','2015-03-10 22:38:44',1,30003652,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(5319,'2015-03-10 22:38:44','2015-10-11 16:46:35',1,30003991,0,0,0,1,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(5320,'2015-03-10 22:38:44','2015-10-11 16:46:35',1,30001929,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(5321,'2015-03-10 22:38:44','2015-03-10 22:38:44',1,30003989,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(5322,'2015-03-10 22:38:44','2015-03-10 22:38:44',1,30004063,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(5323,'2015-03-10 22:38:44','2015-03-10 22:38:44',1,30003124,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(5324,'2015-03-10 22:38:44','2015-03-10 22:38:44',1,30004666,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(5325,'2015-03-10 22:38:44','2015-03-10 22:38:44',1,30000414,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(5326,'2015-03-10 22:38:44','2015-03-10 22:38:44',1,30001304,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(5327,'2015-03-10 22:38:44','2015-03-10 22:38:44',1,30002337,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(5328,'2015-03-10 22:38:44','2015-03-10 22:38:44',1,30001091,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(5329,'2015-03-10 22:38:44','2015-03-10 22:38:44',1,30000739,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(5330,'2015-03-10 22:38:44','2015-03-10 22:38:44',1,30001582,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(5331,'2015-03-10 22:38:44','2015-10-11 16:46:35',1,30001861,0,0,0,1,0,0,0,1,0,0,0,1,0,0,0,0,0,2,0,0,1,0,0,0),(5332,'2015-03-10 22:38:44','2015-10-11 16:46:35',1,30004607,0,0,0,0,0,0,1,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(5333,'2015-03-10 22:38:44','2015-10-11 16:46:35',1,30001345,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0),(5334,'2015-03-10 22:38:44','2015-10-11 16:46:35',1,30004707,0,0,0,0,0,0,0,1,0,2,3,3,0,0,0,0,1,0,0,0,0,2,1,0),(5335,'2015-03-10 22:38:44','2015-03-10 22:38:44',1,30002137,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(5336,'2015-03-10 22:38:44','2015-10-11 16:46:35',1,30002117,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,0,0),(5337,'2015-03-10 22:38:44','2015-10-11 16:46:35',1,30004584,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(5338,'2015-03-10 22:38:44','2015-10-11 16:46:35',1,30000304,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,2,1),(5339,'2015-03-10 22:38:44','2015-03-10 22:38:44',1,30001455,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(5340,'2015-03-10 22:38:44','2015-10-11 16:46:35',1,30004741,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(5341,'2015-03-10 22:38:44','2015-10-11 16:46:35',1,30003927,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(5342,'2015-03-10 22:38:44','2015-10-11 16:46:35',1,30000006,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0),(5343,'2015-03-10 22:38:44','2015-10-11 16:46:35',1,30003497,0,0,0,0,1,0,0,0,0,0,0,0,0,0,1,0,0,0,0,2,1,0,0,1),(5344,'2015-03-10 22:38:44','2015-10-11 16:46:35',1,30003543,0,7,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0),(5345,'2015-03-10 22:38:44','2015-10-11 16:46:35',1,30005211,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0),(5346,'2015-03-10 22:38:44','2015-10-11 16:46:35',1,30005079,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(5347,'2015-03-10 22:38:44','2015-10-11 16:46:35',1,30002280,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,1,0,1),(5348,'2015-03-10 22:38:44','2015-03-10 22:38:44',1,30003996,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(5349,'2015-03-10 22:38:44','2015-03-10 22:38:44',1,30004290,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(5350,'2015-03-10 22:38:44','2015-03-10 22:38:44',1,30004232,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(5351,'2015-03-10 22:38:44','2015-10-11 16:46:35',1,30004285,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,0,0,0,0,2,0,0),(5352,'2015-03-10 22:38:44','2015-03-10 22:38:44',1,30002121,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(5353,'2015-03-10 22:38:44','2015-03-10 22:38:44',1,30004701,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(5354,'2015-03-10 22:38:44','2015-10-11 16:46:35',1,30004817,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0),(5355,'2015-03-10 22:38:44','2015-10-11 16:46:35',1,30001354,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0),(5356,'2015-03-10 22:38:44','2015-10-11 16:46:35',1,30000719,1,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0),(5357,'2015-03-10 22:38:44','2015-10-11 16:46:35',1,30004704,0,0,0,0,0,0,0,0,0,0,7,0,0,1,0,0,0,0,0,0,0,0,0,0),(5358,'2015-03-10 22:38:44','2015-10-11 16:46:35',1,30001734,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1),(5359,'2015-03-10 22:38:44','2015-10-11 16:46:35',1,30000055,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,4,4,0,0,0,0,0,0,0),(5360,'2015-03-10 22:38:44','2015-10-11 16:46:35',1,30003928,0,2,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1),(5361,'2015-03-10 22:38:44','2015-03-10 22:38:44',1,30000064,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(5362,'2015-03-10 22:38:44','2015-03-10 22:38:44',1,30001765,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(5363,'2015-03-10 22:38:44','2015-03-10 22:38:44',1,30000688,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(5364,'2015-03-10 22:38:44','2015-10-11 16:46:35',1,30001866,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,1,1),(5365,'2015-03-10 22:38:44','2015-03-10 22:38:44',1,30000551,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(5366,'2015-03-10 22:38:44','2015-10-11 16:46:35',1,30001922,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(5367,'2015-03-10 22:38:44','2015-03-10 22:38:44',1,30003618,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(5368,'2015-03-10 22:38:44','2015-03-10 22:38:44',1,30003550,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(5369,'2015-03-10 22:38:44','2015-10-11 16:46:35',1,30005208,0,0,0,1,0,0,0,1,0,0,0,0,0,1,0,0,1,0,0,0,0,0,0,0),(5370,'2015-03-10 22:38:44','2015-03-10 22:38:44',1,30004489,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(5371,'2015-03-10 22:38:44','2015-03-10 22:38:44',1,30004107,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(5372,'2015-03-10 22:38:44','2015-10-11 16:46:35',1,30004127,0,0,0,0,0,0,0,0,0,0,0,0,0,2,0,0,0,0,0,0,0,0,0,1),(5373,'2015-03-10 22:38:44','2015-03-10 22:38:44',1,30005055,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(5374,'2015-03-10 22:38:44','2015-10-11 16:46:35',1,30004140,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,1,0,0,0,1,0),(5375,'2015-03-10 22:38:44','2015-10-11 16:46:35',1,30002203,0,0,3,0,0,0,0,0,0,2,0,0,0,1,0,0,0,0,0,0,0,6,7,0),(5376,'2015-03-10 22:38:44','2015-03-10 22:38:44',1,30003562,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(5377,'2015-03-10 22:38:44','2015-03-10 22:38:44',1,30003939,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(5378,'2015-03-10 22:38:44','2015-10-11 16:46:35',1,30001732,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,1,0,0,0,0,0,1,0),(5379,'2015-03-10 22:38:44','2015-03-10 22:38:44',1,30004363,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(5380,'2015-03-10 22:38:44','2015-03-10 22:38:44',1,30001810,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(5381,'2015-03-10 22:38:44','2015-03-10 22:38:44',1,30000937,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(5382,'2015-03-10 22:38:44','2015-03-10 22:38:44',1,30003619,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(5383,'2015-03-10 22:38:44','2015-10-11 16:46:35',1,30002130,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,0,0,0,0,0,0,0),(5384,'2015-03-10 22:38:44','2015-03-10 22:38:44',1,30001996,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(5385,'2015-03-10 22:38:44','2015-10-11 16:46:35',1,30004888,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,0,0,0,0,0),(5386,'2015-03-10 22:38:44','2015-10-11 16:46:35',1,30004498,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(5387,'2015-03-10 22:38:44','2015-03-10 22:38:44',1,30003658,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(5388,'2015-03-10 22:38:44','2015-03-10 22:38:44',1,30000407,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(5389,'2015-03-10 22:38:44','2015-10-11 16:46:35',1,30002018,0,0,0,3,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(5390,'2015-03-10 22:38:44','2015-10-11 16:46:35',1,30000449,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1),(5391,'2015-03-10 22:38:44','2015-03-10 22:38:44',1,30000296,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(5392,'2015-03-10 22:38:44','2015-03-10 22:38:44',1,30000935,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(5393,'2015-03-10 22:38:44','2015-03-10 22:38:44',1,30004820,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(5394,'2015-03-10 22:38:44','2015-10-11 16:46:35',1,30003289,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(5395,'2015-03-10 22:38:44','2015-03-10 22:38:44',1,30000699,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(5396,'2015-03-10 22:38:44','2015-03-10 22:38:44',1,30000802,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(5397,'2015-03-10 22:38:44','2015-10-11 16:46:35',1,30004882,0,0,0,0,0,0,3,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(5398,'2015-03-10 22:38:44','2015-03-10 22:38:44',1,30001133,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(5399,'2015-03-10 22:38:44','2015-10-11 16:46:35',1,30005221,0,0,5,0,0,0,3,3,0,0,1,0,0,0,1,0,0,0,0,0,1,0,0,0),(5400,'2015-03-10 22:38:44','2015-03-10 22:38:44',1,30001131,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(5401,'2015-03-10 22:38:44','2015-10-11 16:46:35',1,30005067,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,1,0,0),(5402,'2015-03-10 22:38:44','2015-10-11 16:46:35',1,30004081,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(5403,'2015-03-10 22:38:44','2015-03-10 22:38:44',1,30004160,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(5404,'2015-03-10 22:38:44','2015-10-11 16:46:35',1,30002923,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0),(5405,'2015-03-10 22:38:44','2015-10-11 16:46:35',1,30001226,1,0,1,0,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,2),(5406,'2015-03-10 22:38:44','2015-10-11 16:46:35',1,30004496,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,3,4,0,0,1,1,0,0,0),(5407,'2015-03-10 22:38:44','2015-10-11 16:46:35',1,30004469,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0),(5408,'2015-03-10 22:38:44','2015-03-10 22:38:44',1,30002352,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(5409,'2015-03-10 22:38:44','2015-03-10 22:38:44',1,30000328,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(5410,'2015-03-10 22:38:44','2015-03-10 22:38:44',1,30001072,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(5411,'2015-03-10 22:38:44','2015-03-10 22:38:44',1,30003747,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(5412,'2015-03-10 22:38:44','2015-03-10 22:38:44',1,30004660,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(5413,'2015-03-10 22:38:44','2015-03-10 22:38:44',1,30004955,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(5414,'2015-03-10 22:38:44','2015-10-11 16:46:35',1,30004658,0,0,0,0,0,0,0,0,0,0,0,0,0,2,1,0,0,0,0,0,0,0,0,0),(5415,'2015-03-10 22:38:44','2015-03-10 22:38:44',1,30003369,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(5416,'2015-03-10 22:38:44','2015-03-10 22:38:44',1,30001621,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(5417,'2015-03-10 22:38:44','2015-10-11 16:46:35',1,30003272,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1),(5418,'2015-03-10 22:38:44','2015-03-10 22:38:44',1,30001590,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(5419,'2015-03-10 22:38:44','2015-03-10 22:38:44',1,30004687,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(5420,'2015-03-10 22:38:44','2015-03-10 22:38:44',1,30003620,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(5421,'2015-03-10 22:38:44','2015-10-11 16:46:35',1,30004777,0,0,0,0,0,0,0,0,0,1,0,1,9,2,0,0,0,1,1,2,3,0,0,0),(5422,'2015-03-10 22:38:44','2015-03-10 22:38:44',1,30004540,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(5423,'2015-03-10 22:38:44','2015-03-10 22:38:44',1,30004528,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(5424,'2015-03-10 22:38:44','2015-10-11 16:46:35',1,30001168,1,2,0,0,0,1,0,0,0,1,1,0,1,0,0,0,0,0,0,1,3,0,0,0),(5425,'2015-03-10 22:38:44','2015-10-11 16:46:35',1,30004031,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(5426,'2015-03-10 22:38:44','2015-03-10 22:38:44',1,30004437,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(5427,'2015-03-10 22:38:44','2015-10-11 16:46:35',1,30001004,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0),(5428,'2015-03-10 22:38:44','2015-10-11 16:46:35',1,30002360,0,1,0,1,0,0,0,4,1,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0),(5429,'2015-03-10 22:38:44','2015-03-10 22:38:44',1,30000356,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(5430,'2015-03-10 22:38:44','2015-03-10 22:38:44',1,30001807,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(5431,'2015-03-10 22:38:44','2015-03-10 22:38:44',1,30002914,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(8078,'2015-08-19 19:10:02','2015-08-19 19:10:02',1,31000001,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(8081,'2015-08-19 19:10:02','2015-08-19 19:10:02',1,31000002,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(8082,'2015-08-19 19:10:02','2015-08-19 19:10:02',1,31000003,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(8083,'2015-08-19 19:10:02','2015-08-19 19:10:02',1,31000006,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(8087,'2015-08-19 19:10:02','2015-08-19 19:10:02',1,31000004,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0); /*!40000 ALTER TABLE `system_kills_ships` ENABLE KEYS */; UNLOCK TABLES; @@ -849,33 +847,6 @@ LOCK TABLES `system_signature` WRITE; /*!40000 ALTER TABLE `system_signature` ENABLE KEYS */; UNLOCK TABLES; --- --- Table structure for table `system_static` --- - -DROP TABLE IF EXISTS `system_static`; -/*!40101 SET @saved_cs_client = @@character_set_client */; -/*!40101 SET character_set_client = utf8 */; -CREATE TABLE `system_static` ( - `id` int(11) NOT NULL AUTO_INCREMENT, - `constellationId` int(11) NOT NULL, - `security` varchar(5) COLLATE utf8_bin NOT NULL, - `name` varchar(10) COLLATE utf8_bin NOT NULL, - PRIMARY KEY (`id`), - KEY `constellation_id` (`constellationId`) -) ENGINE=InnoDB AUTO_INCREMENT=458 DEFAULT CHARSET=utf8 COLLATE=utf8_bin; -/*!40101 SET character_set_client = @saved_cs_client */; - --- --- Dumping data for table `system_static` --- - -LOCK TABLES `system_static` WRITE; -/*!40000 ALTER TABLE `system_static` DISABLE KEYS */; -INSERT INTO `system_static` VALUES (1,21000001,'H','N110'),(2,21000002,'H','N110'),(3,21000003,'H','N110'),(4,21000004,'H','N110'),(5,21000005,'H','N110'),(6,21000006,'H','N110'),(7,21000007,'H','N110'),(8,21000008,'H','N110'),(9,21000009,'H','N110'),(10,21000010,'H','N110'),(11,21000011,'H','N110'),(12,21000012,'H','N110'),(13,21000013,'H','N110'),(14,21000014,'H','N110'),(15,21000015,'H','N110'),(16,21000016,'H','N110'),(17,21000017,'H','N110'),(18,21000018,'H','N110'),(19,21000019,'H','N110'),(20,21000020,'H','N110'),(21,21000021,'H','B274'),(22,21000022,'H','B274'),(23,21000023,'H','B274'),(24,21000024,'H','B274'),(25,21000025,'H','B274'),(26,21000026,'H','B274'),(27,21000027,'H','B274'),(28,21000028,'H','B274'),(29,21000029,'H','B274'),(30,21000030,'H','B274'),(31,21000021,'C3','O477'),(32,21000022,'C3','O477'),(33,21000023,'C3','O477'),(34,21000024,'C3','O477'),(35,21000025,'C3','O477'),(36,21000026,'C3','O477'),(37,21000027,'C3','O477'),(38,21000028,'C3','O477'),(39,21000029,'C3','O477'),(40,21000030,'C3','O477'),(41,21000031,'H','B274'),(42,21000032,'H','B274'),(43,21000033,'H','B274'),(44,21000034,'H','B274'),(45,21000035,'H','B274'),(46,21000036,'H','B274'),(47,21000037,'H','B274'),(48,21000038,'H','B274'),(49,21000039,'H','B274'),(50,21000040,'H','B274'),(51,21000031,'C4','Y683'),(52,21000032,'C4','Y683'),(53,21000033,'C4','Y683'),(54,21000034,'C4','Y683'),(55,21000035,'C4','Y683'),(56,21000036,'C4','Y683'),(57,21000037,'C4','Y683'),(58,21000038,'C4','Y683'),(59,21000039,'C4','Y683'),(60,21000040,'C4','Y683'),(61,21000041,'L','A239'),(62,21000042,'L','A239'),(63,21000043,'L','A239'),(64,21000044,'L','A239'),(65,21000045,'L','A239'),(66,21000046,'L','A239'),(67,21000047,'L','A239'),(68,21000048,'L','A239'),(69,21000049,'L','A239'),(70,21000050,'L','A239'),(71,21000051,'L','A239'),(72,21000052,'L','A239'),(73,21000053,'L','A239'),(74,21000054,'L','A239'),(75,21000041,'C2','D382'),(76,21000042,'C2','D382'),(77,21000043,'C2','D382'),(78,21000044,'C2','D382'),(79,21000045,'C2','D382'),(80,21000046,'C2','D382'),(81,21000047,'C2','D382'),(82,21000048,'C2','D382'),(83,21000049,'C2','D382'),(84,21000050,'C2','D382'),(85,21000051,'C2','D382'),(86,21000052,'C2','D382'),(87,21000053,'C2','D382'),(88,21000054,'C2','D382'),(89,21000055,'0.0','E545'),(90,21000056,'0.0','E545'),(91,21000057,'0.0','E545'),(92,21000058,'0.0','E545'),(93,21000059,'0.0','E545'),(94,21000055,'C5','N062'),(95,21000056,'C5','N062'),(96,21000057,'C5','N062'),(97,21000058,'C5','N062'),(98,21000059,'C6','R474'),(99,21000060,'H','B274'),(100,21000061,'H','B274'),(101,21000062,'H','B274'),(102,21000063,'H','B274'),(103,21000064,'H','B274'),(104,21000065,'H','B274'),(105,21000066,'H','B274'),(106,21000067,'H','B274'),(107,21000068,'H','B274'),(108,21000069,'H','B274'),(109,21000070,'H','B274'),(110,21000071,'H','B274'),(111,21000072,'H','B274'),(112,21000073,'H','B274'),(113,21000074,'H','B274'),(114,21000075,'H','B274'),(115,21000060,'C1','Z647'),(116,21000061,'C1','Z647'),(117,21000063,'C1','Z647'),(118,21000064,'C1','Z647'),(119,21000065,'C1','Z647'),(120,21000066,'C1','Z647'),(121,21000067,'C1','Z647'),(122,21000068,'C1','Z647'),(123,21000069,'C1','Z647'),(124,21000070,'C1','Z647'),(125,21000071,'C1','Z647'),(126,21000072,'C1','Z647'),(127,21000073,'C1','Z647'),(128,21000074,'C1','Z647'),(129,21000075,'C1','Z647'),(130,21000076,'L','U210'),(131,21000077,'L','U210'),(132,21000078,'L','U210'),(133,21000079,'L','U210'),(134,21000080,'L','U210'),(135,21000081,'L','U210'),(136,21000082,'L','U210'),(137,21000083,'L','U210'),(138,21000084,'L','U210'),(139,21000085,'L','U210'),(140,21000086,'L','U210'),(141,21000087,'L','U210'),(142,21000088,'L','U210'),(143,21000089,'L','U210'),(144,21000090,'L','U210'),(145,21000091,'L','U210'),(146,21000092,'L','U210'),(147,21000093,'L','U210'),(148,21000094,'L','U210'),(149,21000095,'L','U210'),(150,21000096,'L','U210'),(151,21000097,'L','U210'),(152,21000098,'L','U210'),(153,21000099,'L','U210'),(154,21000100,'L','U210'),(155,21000101,'L','U210'),(156,21000102,'L','U210'),(157,21000103,'L','U210'),(158,21000104,'L','U210'),(159,21000105,'L','U210'),(160,21000106,'H','D845'),(161,21000107,'H','D845'),(162,21000108,'H','D845'),(163,21000109,'H','D845'),(164,21000110,'H','D845'),(165,21000111,'H','D845'),(166,21000112,'H','D845'),(167,21000113,'H','D845'),(168,21000114,'H','D845'),(169,21000115,'H','D845'),(170,21000116,'H','D845'),(171,21000117,'H','D845'),(172,21000118,'H','D845'),(173,21000119,'H','D845'),(174,21000120,'H','D845'),(175,21000121,'H','D845'),(176,21000122,'L','U210'),(177,21000123,'L','U210'),(178,21000124,'L','U210'),(179,21000125,'L','U210'),(180,21000126,'L','U210'),(181,21000127,'L','U210'),(182,21000128,'L','U210'),(183,21000129,'0.0','K346'),(184,21000130,'0.0','K346'),(185,21000131,'0.0','K346'),(186,21000132,'0.0','K346'),(187,21000133,'0.0','K346'),(188,21000134,'0.0','K346'),(189,21000135,'0.0','K346'),(190,21000136,'0.0','K346'),(191,21000137,'0.0','K346'),(192,21000138,'0.0','K346'),(193,21000139,'0.0','K346'),(194,21000140,'0.0','K346'),(195,21000141,'0.0','K346'),(196,21000142,'0.0','K346'),(197,21000143,'0.0','K346'),(198,21000144,'L','U210'),(199,21000145,'L','U210'),(200,21000146,'L','U210'),(201,21000147,'L','U210'),(202,21000148,'L','U210'),(203,21000149,'L','U210'),(204,21000150,'L','U210'),(205,21000151,'L','U210'),(206,21000152,'L','U210'),(207,21000153,'C2','N766'),(208,21000154,'C2','N766'),(209,21000155,'C2','N766'),(210,21000156,'C2','N766'),(211,21000157,'C2','N766'),(212,21000158,'C2','N766'),(213,21000159,'C2','N766'),(214,21000160,'C2','N766'),(215,21000161,'C2','N766'),(216,21000162,'C6','U574'),(217,21000163,'C6','U574'),(218,21000164,'C6','U574'),(219,21000165,'C6','U574'),(220,21000166,'C1','P060'),(221,21000167,'C1','P060'),(222,21000168,'C1','P060'),(223,21000169,'C1','P060'),(224,21000170,'C1','P060'),(225,21000171,'C1','P060'),(226,21000172,'C1','P060'),(227,21000173,'C4','X877'),(228,21000174,'C4','X877'),(229,21000175,'C4','X877'),(230,21000176,'C4','X877'),(231,21000177,'C4','X877'),(232,21000178,'C4','X877'),(233,21000179,'C4','X877'),(234,21000180,'C4','X877'),(235,21000181,'C4','X877'),(236,21000182,'C4','X877'),(237,21000183,'C4','X877'),(238,21000184,'C4','X877'),(239,21000185,'C4','X877'),(240,21000186,'C4','X877'),(241,21000187,'C4','X877'),(242,21000188,'C4','X877'),(243,21000189,'C4','X877'),(244,21000190,'C4','X877'),(245,21000191,'C4','X877'),(246,21000192,'C4','X877'),(247,21000193,'C4','X877'),(248,21000194,'C4','X877'),(249,21000195,'C3','C247'),(250,21000196,'C3','C247'),(251,21000197,'C3','C247'),(252,21000198,'C3','C247'),(253,21000199,'C3','C247'),(254,21000200,'C3','C247'),(255,21000201,'C3','C247'),(256,21000202,'C3','C247'),(257,21000203,'C3','C247'),(258,21000204,'C3','C247'),(259,21000205,'C3','C247'),(260,21000206,'C3','C247'),(261,21000207,'C3','C247'),(262,21000208,'C3','C247'),(263,21000209,'C3','C247'),(264,21000210,'C3','C247'),(265,21000211,'C3','C247'),(266,21000212,'C3','C247'),(267,21000213,'C5','H900'),(268,21000214,'C5','H900'),(269,21000215,'C5','H900'),(270,21000216,'C5','H900'),(271,21000217,'C5','H900'),(272,21000218,'C5','H900'),(273,21000219,'C5','H900'),(274,21000220,'C5','H900'),(275,21000221,'C5','H900'),(276,21000222,'C5','H900'),(277,21000223,'C5','H900'),(278,21000224,'C5','H900'),(279,21000225,'C5','H900'),(280,21000226,'C5','H900'),(281,21000227,'C3','C247'),(282,21000228,'C3','C247'),(283,21000229,'C3','C247'),(284,21000230,'C3','C247'),(285,21000231,'C3','C247'),(286,21000232,'C5','H296'),(287,21000233,'C1','Y790'),(288,21000234,'C2','D364'),(289,21000235,'C2','D364'),(290,21000236,'C5','H296'),(291,21000237,'C2','D364'),(292,21000238,'C2','D364'),(293,21000239,'C1','Y790'),(294,21000240,'C5','H296'),(295,21000241,'C5','H296'),(296,21000242,'C5','H296'),(297,21000243,'C5','H296'),(298,21000244,'C5','H296'),(299,21000245,'C5','H296'),(300,21000246,'C5','H296'),(301,21000247,'C5','H296'),(302,21000248,'C5','H296'),(303,21000249,'C5','H296'),(304,21000250,'C5','H296'),(305,21000251,'C5','H296'),(306,21000252,'C5','H296'),(307,21000253,'C5','H296'),(308,21000254,'C5','H296'),(309,21000255,'C5','H296'),(310,21000256,'C6','V753'),(311,21000257,'C6','V753'),(312,21000258,'C6','V753'),(313,21000259,'C6','V753'),(314,21000260,'C6','V753'),(315,21000261,'C6','V753'),(316,21000262,'C6','V753'),(317,21000263,'C6','V753'),(318,21000264,'C6','V753'),(319,21000265,'C3','M267'),(320,21000266,'C3','M267'),(321,21000267,'C3','M267'),(322,21000268,'C3','M267'),(323,21000269,'C3','M267'),(324,21000270,'C3','M267'),(325,21000271,'C3','M267'),(326,21000272,'C3','M267'),(327,21000273,'C3','M267'),(328,21000274,'C5','H296'),(329,21000275,'C5','H296'),(330,21000276,'C5','H296'),(331,21000277,'C5','H296'),(332,21000278,'C5','H296'),(333,21000279,'C5','H296'),(334,21000280,'C5','H296'),(335,21000281,'C5','H296'),(336,21000282,'C5','H296'),(337,21000283,'C5','H296'),(338,21000284,'C5','H296'),(339,21000285,'C5','H296'),(340,21000286,'C4','E175'),(341,21000287,'C4','E175'),(342,21000288,'C4','E175'),(343,21000289,'C4','E175'),(344,21000290,'C4','E175'),(345,21000291,'C4','E175'),(346,21000292,'C4','E175'),(347,21000293,'C4','E175'),(348,21000294,'C4','E175'),(349,21000295,'C4','E175'),(350,21000296,'C4','E175'),(351,21000297,'C2','G024'),(352,21000298,'C6','W237'),(353,21000299,'C5','V911'),(354,21000300,'C3','L477'),(355,21000301,'C1','Q317'),(356,21000302,'C4','Z457'),(357,21000303,'C6','W237'),(358,21000304,'C3','L477'),(359,21000305,'C4','Z457'),(360,21000306,'C5','V911'),(361,21000307,'C5','V911'),(362,21000308,'C5','V911'),(363,21000309,'C5','V911'),(364,21000310,'C5','V911'),(365,21000311,'0.0','Z060'),(366,21000312,'0.0','Z060'),(367,21000313,'0.0','Z060'),(368,21000314,'L','J244'),(369,21000315,'L','J244'),(370,21000316,'L','J244'),(371,21000317,'L','J244'),(372,21000318,'L','J244'),(373,21000319,'L','J244'),(374,21000320,'L','J244'),(375,21000321,'L','J244'),(376,21000322,'L','J244'),(377,21000323,'L','J244'),(378,21000153,'C4','X877'),(379,21000154,'C4','X877'),(380,21000155,'C4','X877'),(381,21000156,'C1','P060'),(382,21000157,'C5','H900'),(383,21000158,'C5','H900'),(384,21000159,'C3','C247'),(385,21000160,'C5','H900'),(386,21000161,'C3','C247'),(387,21000162,'C5','H900'),(388,21000163,'C3','C247'),(389,21000164,'C5','H900'),(390,21000165,'C4','X877'),(391,21000166,'C3','C247'),(392,21000167,'C2','N766'),(393,21000168,'C5','H900'),(394,21000169,'C4','X877'),(395,21000170,'C2','N766'),(396,21000171,'C4','X877'),(397,21000172,'C3','C247'),(398,21000173,'C2','N766'),(399,21000174,'C1','P060'),(400,21000175,'C3',' C247'),(401,21000176,'C3',' C247'),(402,21000177,'C3',' C247'),(403,21000178,'C6','U574'),(404,21000179,'C5','H900'),(405,21000180,'C5','H900'),(406,21000181,'C5','H900'),(407,21000182,'C6','U574'),(408,21000183,'C3',' C247'),(409,21000184,'C3',' C247'),(410,21000185,'C5','H900'),(411,21000186,'C5','H900'),(412,21000187,'C2','N766'),(413,21000188,'C5','H900'),(414,21000189,'C2','N766'),(415,21000190,'C2','N766'),(416,21000191,'C3','C247'),(417,21000192,'C2','N766'),(418,21000193,'C1','P060'),(419,21000194,'C3','C247'),(420,21000195,'C4','X877'),(421,21000196,'C1','P060'),(422,21000197,'C5','H900'),(423,21000198,'C2','N766'),(424,21000199,'C2','N766'),(425,21000200,'C4','X877'),(426,21000201,'C4','X877'),(427,21000202,'C2','N766'),(428,21000203,'C5','H900'),(429,21000204,'C5','H900'),(430,21000205,'C1','P060'),(431,21000206,'C4','X877'),(432,21000207,'C4','X877'),(433,21000208,'C5','H900'),(434,21000209,'C5','H900'),(435,21000210,'C5','H900'),(436,21000211,'C6','U574'),(437,21000212,'C2','N766'),(438,21000213,'C3','C247'),(439,21000214,'C4','X877'),(440,21000215,'C3','C247'),(441,21000216,'C4','X877'),(442,21000217,'C2','N766'),(443,21000218,'C3','C247'),(444,21000219,'C3','C247'),(445,21000220,'C4','X877'),(446,21000221,'C2','N766'),(447,21000222,'C4','X877'),(448,21000223,'C3','C247'),(449,21000224,'C2','N766'),(450,21000225,'C1','P060'),(451,21000226,'C6','U574'),(452,21000227,'C4','X877'),(453,21000228,'C2','N766'),(454,21000229,'C4','X877'),(455,21000230,'C4','X877'),(456,21000231,'C1','P060'),(457,21000329,'C4','E175'); -/*!40000 ALTER TABLE `system_static` ENABLE KEYS */; -UNLOCK TABLES; - -- -- Table structure for table `system_status` -- @@ -938,6 +909,34 @@ INSERT INTO `system_type` VALUES (1,'2015-02-24 23:20:02','2015-08-25 18:02:40', /*!40000 ALTER TABLE `system_type` ENABLE KEYS */; UNLOCK TABLES; +-- +-- Table structure for table `system_wormhole` +-- + +DROP TABLE IF EXISTS `system_wormhole`; +/*!40101 SET @saved_cs_client = @@character_set_client */; +/*!40101 SET character_set_client = utf8 */; +CREATE TABLE `system_wormhole` ( + `id` int(11) NOT NULL AUTO_INCREMENT, + `constellationId` int(11) NOT NULL, + `wormholeId` int(11) NOT NULL, + PRIMARY KEY (`id`), + KEY `constellation_id` (`constellationId`), + KEY `wormhole_id` (`wormholeId`) USING BTREE, + CONSTRAINT `system_wormhole_ibfk_1` FOREIGN KEY (`wormholeId`) REFERENCES `wormhole` (`id`) ON DELETE NO ACTION ON UPDATE NO ACTION +) ENGINE=InnoDB AUTO_INCREMENT=458 DEFAULT CHARSET=utf8 COLLATE=utf8_bin; +/*!40101 SET character_set_client = @saved_cs_client */; + +-- +-- Dumping data for table `system_wormhole` +-- + +LOCK TABLES `system_wormhole` WRITE; +/*!40000 ALTER TABLE `system_wormhole` DISABLE KEYS */; +INSERT INTO `system_wormhole` VALUES (1,21000001,39),(2,21000002,39),(3,21000003,39),(4,21000004,39),(5,21000005,39),(6,21000006,39),(7,21000007,39),(8,21000008,39),(9,21000009,39),(10,21000010,39),(11,21000011,39),(12,21000012,39),(13,21000013,39),(14,21000014,39),(15,21000015,39),(16,21000016,39),(17,21000017,39),(18,21000018,39),(19,21000019,39),(20,21000020,39),(21,21000021,6),(22,21000022,6),(23,21000023,6),(24,21000024,6),(25,21000025,6),(26,21000026,6),(27,21000027,6),(28,21000028,6),(29,21000029,6),(30,21000030,6),(31,21000021,47),(32,21000022,47),(33,21000023,47),(34,21000024,47),(35,21000025,47),(36,21000026,47),(37,21000027,47),(38,21000028,47),(39,21000029,47),(40,21000030,47),(41,21000031,6),(42,21000032,6),(43,21000033,6),(44,21000034,6),(45,21000035,6),(46,21000036,6),(47,21000037,6),(48,21000038,6),(49,21000039,6),(50,21000040,6),(51,21000031,69),(52,21000032,69),(53,21000033,69),(54,21000034,69),(55,21000035,69),(56,21000036,69),(57,21000037,69),(58,21000038,69),(59,21000039,69),(60,21000040,69),(61,21000041,2),(62,21000042,2),(63,21000043,2),(64,21000044,2),(65,21000045,2),(66,21000046,2),(67,21000047,2),(68,21000048,2),(69,21000049,2),(70,21000050,2),(71,21000051,2),(72,21000052,2),(73,21000053,2),(74,21000054,2),(75,21000041,16),(76,21000042,16),(77,21000043,16),(78,21000044,16),(79,21000045,16),(80,21000046,16),(81,21000047,16),(82,21000048,16),(83,21000049,16),(84,21000050,16),(85,21000051,16),(86,21000052,16),(87,21000053,16),(88,21000054,16),(89,21000055,21),(90,21000056,21),(91,21000057,21),(92,21000058,21),(93,21000059,21),(94,21000055,38),(95,21000056,38),(96,21000057,38),(97,21000058,38),(98,21000059,53),(99,21000060,6),(100,21000061,6),(101,21000062,6),(102,21000063,6),(103,21000064,6),(104,21000065,6),(105,21000066,6),(106,21000067,6),(107,21000068,6),(108,21000069,6),(109,21000070,6),(110,21000071,6),(111,21000072,6),(112,21000073,6),(113,21000074,6),(114,21000075,6),(115,21000060,75),(116,21000061,75),(117,21000063,75),(118,21000064,75),(119,21000065,75),(120,21000066,75),(121,21000067,75),(122,21000068,75),(123,21000069,75),(124,21000070,75),(125,21000071,75),(126,21000072,75),(127,21000073,75),(128,21000074,75),(129,21000075,75),(130,21000076,59),(131,21000077,59),(132,21000078,59),(133,21000079,59),(134,21000080,59),(135,21000081,59),(136,21000082,59),(137,21000083,59),(138,21000084,59),(139,21000085,59),(140,21000086,59),(141,21000087,59),(142,21000088,59),(143,21000089,59),(144,21000090,59),(145,21000091,59),(146,21000092,59),(147,21000093,59),(148,21000094,59),(149,21000095,59),(150,21000096,59),(151,21000097,59),(152,21000098,59),(153,21000099,59),(154,21000100,59),(155,21000101,59),(156,21000102,59),(157,21000103,59),(158,21000104,59),(159,21000105,59),(160,21000106,18),(161,21000107,18),(162,21000108,18),(163,21000109,18),(164,21000110,18),(165,21000111,18),(166,21000112,18),(167,21000113,18),(168,21000114,18),(169,21000115,18),(170,21000116,18),(171,21000117,18),(172,21000118,18),(173,21000119,18),(174,21000120,18),(175,21000121,18),(176,21000122,59),(177,21000123,59),(178,21000124,59),(179,21000125,59),(180,21000126,59),(181,21000127,59),(182,21000128,59),(183,21000129,30),(184,21000130,30),(185,21000131,30),(186,21000132,30),(187,21000133,30),(188,21000134,30),(189,21000135,30),(190,21000136,30),(191,21000137,30),(192,21000138,30),(193,21000139,30),(194,21000140,30),(195,21000141,30),(196,21000142,30),(197,21000143,30),(198,21000144,59),(199,21000145,59),(200,21000146,59),(201,21000147,59),(202,21000148,59),(203,21000149,59),(204,21000150,59),(205,21000151,59),(206,21000152,59),(207,21000153,42),(208,21000154,42),(209,21000155,42),(210,21000156,42),(211,21000157,42),(212,21000158,42),(213,21000159,42),(214,21000160,42),(215,21000161,42),(216,21000162,61),(217,21000163,61),(218,21000164,61),(219,21000165,61),(220,21000166,49),(221,21000167,49),(222,21000168,49),(223,21000169,49),(224,21000170,49),(225,21000171,49),(226,21000172,49),(227,21000173,68),(228,21000174,68),(229,21000175,68),(230,21000176,68),(231,21000177,68),(232,21000178,68),(233,21000179,68),(234,21000180,68),(235,21000181,68),(236,21000182,68),(237,21000183,68),(238,21000184,68),(239,21000185,68),(240,21000186,68),(241,21000187,68),(242,21000188,68),(243,21000189,68),(244,21000190,68),(245,21000191,68),(246,21000192,68),(247,21000193,68),(248,21000194,68),(249,21000195,12),(250,21000196,12),(251,21000197,12),(252,21000198,12),(253,21000199,12),(254,21000200,12),(255,21000201,12),(256,21000202,12),(257,21000203,12),(258,21000204,12),(259,21000205,12),(260,21000206,12),(261,21000207,12),(262,21000208,12),(263,21000209,12),(264,21000210,12),(265,21000211,12),(266,21000212,12),(267,21000213,26),(268,21000214,26),(269,21000215,26),(270,21000216,26),(271,21000217,26),(272,21000218,26),(273,21000219,26),(274,21000220,26),(275,21000221,26),(276,21000222,26),(277,21000223,26),(278,21000224,26),(279,21000225,26),(280,21000226,26),(281,21000227,12),(282,21000228,12),(283,21000229,12),(284,21000230,12),(285,21000231,12),(286,21000232,25),(287,21000233,70),(288,21000234,15),(289,21000235,15),(290,21000236,25),(291,21000237,15),(292,21000238,15),(293,21000239,70),(294,21000240,25),(295,21000241,25),(296,21000242,25),(297,21000243,25),(298,21000244,25),(299,21000245,25),(300,21000246,25),(301,21000247,25),(302,21000248,25),(303,21000249,25),(304,21000250,25),(305,21000251,25),(306,21000252,25),(307,21000253,25),(308,21000254,25),(309,21000255,25),(310,21000256,64),(311,21000257,64),(312,21000258,64),(313,21000259,64),(314,21000260,64),(315,21000261,64),(316,21000262,64),(317,21000263,64),(318,21000264,64),(319,21000265,35),(320,21000266,35),(321,21000267,35),(322,21000268,35),(323,21000269,35),(324,21000270,35),(325,21000271,35),(326,21000272,35),(327,21000273,35),(328,21000274,25),(329,21000275,25),(330,21000276,25),(331,21000277,25),(332,21000278,25),(333,21000279,25),(334,21000280,25),(335,21000281,25),(336,21000282,25),(337,21000283,25),(338,21000284,25),(339,21000285,25),(340,21000286,20),(341,21000287,20),(342,21000288,20),(343,21000289,20),(344,21000290,20),(345,21000291,20),(346,21000292,20),(347,21000293,20),(348,21000294,20),(349,21000295,20),(350,21000296,20),(351,21000297,23),(352,21000298,66),(353,21000299,65),(354,21000300,32),(355,21000301,51),(356,21000302,74),(357,21000303,66),(358,21000304,32),(359,21000305,74),(360,21000306,65),(361,21000307,65),(362,21000308,65),(363,21000309,65),(364,21000310,65),(365,21000311,72),(366,21000312,72),(367,21000313,72),(368,21000314,28),(369,21000315,28),(370,21000316,28),(371,21000317,28),(372,21000318,28),(373,21000319,28),(374,21000320,28),(375,21000321,28),(376,21000322,28),(377,21000323,28),(378,21000153,68),(379,21000154,68),(380,21000155,68),(381,21000156,49),(382,21000157,26),(383,21000158,26),(384,21000159,12),(385,21000160,26),(386,21000161,12),(387,21000162,26),(388,21000163,12),(389,21000164,26),(390,21000165,68),(391,21000166,12),(392,21000167,42),(393,21000168,26),(394,21000169,68),(395,21000170,42),(396,21000171,68),(397,21000172,12),(398,21000173,42),(399,21000174,49),(400,21000175,12),(401,21000176,12),(402,21000177,12),(403,21000178,61),(404,21000179,26),(405,21000180,26),(406,21000181,26),(407,21000182,61),(408,21000183,12),(409,21000184,12),(410,21000185,26),(411,21000186,26),(412,21000187,42),(413,21000188,26),(414,21000189,42),(415,21000190,42),(416,21000191,12),(417,21000192,42),(418,21000193,49),(419,21000194,12),(420,21000195,68),(421,21000196,49),(422,21000197,26),(423,21000198,42),(424,21000199,42),(425,21000200,68),(426,21000201,68),(427,21000202,42),(428,21000203,26),(429,21000204,26),(430,21000205,49),(431,21000206,68),(432,21000207,68),(433,21000208,26),(434,21000209,26),(435,21000210,26),(436,21000211,61),(437,21000212,42),(438,21000213,12),(439,21000214,68),(440,21000215,12),(441,21000216,68),(442,21000217,42),(443,21000218,12),(444,21000219,12),(445,21000220,68),(446,21000221,42),(447,21000222,68),(448,21000223,12),(449,21000224,42),(450,21000225,49),(451,21000226,61),(452,21000227,68),(453,21000228,42),(454,21000229,68),(455,21000230,68),(456,21000231,49),(457,21000329,20); +/*!40000 ALTER TABLE `system_wormhole` ENABLE KEYS */; +UNLOCK TABLES; + -- -- Table structure for table `user` -- @@ -949,7 +948,7 @@ CREATE TABLE `user` ( `id` int(11) NOT NULL AUTO_INCREMENT, `created` datetime NOT NULL DEFAULT CURRENT_TIMESTAMP, `updated` timestamp NOT NULL DEFAULT CURRENT_TIMESTAMP ON UPDATE CURRENT_TIMESTAMP, - `lastLogin` timestamp NOT NULL DEFAULT '0000-00-00 00:00:00', + `lastLogin` timestamp NOT NULL DEFAULT '1970-01-01 00:00:01', `active` tinyint(1) NOT NULL DEFAULT '1', `name` varchar(255) COLLATE utf8_bin NOT NULL, `email` varchar(255) COLLATE utf8_bin NOT NULL, @@ -1081,6 +1080,36 @@ LOCK TABLES `user_map` WRITE; /*!40000 ALTER TABLE `user_map` DISABLE KEYS */; /*!40000 ALTER TABLE `user_map` ENABLE KEYS */; UNLOCK TABLES; + +-- +-- Table structure for table `wormhole` +-- + +DROP TABLE IF EXISTS `wormhole`; +/*!40101 SET @saved_cs_client = @@character_set_client */; +/*!40101 SET character_set_client = utf8 */; +CREATE TABLE `wormhole` ( + `id` int(11) NOT NULL AUTO_INCREMENT, + `name` varchar(10) COLLATE utf8_bin NOT NULL, + `security` varchar(5) COLLATE utf8_bin NOT NULL, + `massTotal` varchar(20) COLLATE utf8_bin NOT NULL, + `massIndividual` varchar(20) COLLATE utf8_bin NOT NULL, + `massRegeneration` varchar(20) COLLATE utf8_bin NOT NULL, + `maxStableTime` tinyint(1) NOT NULL, + PRIMARY KEY (`id`), + UNIQUE KEY `name` (`name`) +) ENGINE=InnoDB AUTO_INCREMENT=81 DEFAULT CHARSET=utf8 COLLATE=utf8_bin; +/*!40101 SET character_set_client = @saved_cs_client */; + +-- +-- Dumping data for table `wormhole` +-- + +LOCK TABLES `wormhole` WRITE; +/*!40000 ALTER TABLE `wormhole` DISABLE KEYS */; +INSERT INTO `wormhole` VALUES (1,'A009','','500000000','20000000','0',16),(2,'A239','L','2000000000','300000000','0',24),(3,'A641','H','2000000000','1000000000','0',16),(4,'A982','C6','3000000000','300000000','0',24),(5,'B041','C6','5000000000','300000000','500000000',48),(6,'B274','H','2000000000','300000000','0',24),(7,'B449','H','2000000000','1000000000','0',16),(8,'B520','H','5000000000','300000000','500000000',24),(9,'C008','C5','0','5000000','1',16),(10,'C125','C2','1000000000','20000000','0',16),(11,'C140','L','3000000000','1350000000','0',24),(12,'C247','C3','2000000000','300000000','0',16),(13,'C248','0.0','5000000000','1800000000','500000000',24),(14,'C391','L','5000000000','1800000000','500000000',24),(15,'D364','C2','1000000000','300000000','0',16),(16,'D382','C2','2000000000','300000000','0',16),(17,'D792','H','3000000000','1000000000','0',24),(18,'D845','H','5000000000','300000000','500000000',24),(19,'E004','C1','0','5000000','1',16),(20,'E175','C4','2000000000','300000000','0',16),(21,'E545','0.0','2000000000','300000000','0',24),(22,'G009','C6','0','5000000','0',16),(23,'G024','C2','2000000000','300000000','0',16),(24,'H121','C1','500000000','20000000','0',16),(25,'H296','C5','3000000000','1350000000','0',24),(26,'H900','C5','3000000000','300000000','0',24),(27,'I182','C2','2000000000','300000000','0',16),(28,'J244','L','1000000000','20000000','0',24),(29,'K329','0.0','5000000000','1800000000','500000000',24),(30,'K346','0.0','3000000000','300000000','0',24),(31,'L005','C2','0','5000000','1',16),(32,'L477','C3','2000000000','300000000','0',16),(33,'L614','C5','1000000000','20000000','0',24),(34,'M006','C4','0','5000000','1',16),(35,'M267','C3','1000000000','300000000','0',16),(36,'M555','C5','3000000000','1000000000','0',24),(37,'M609','C4','1000000000','20000000','0',16),(38,'N062','C5','3000000000','300000000','0',24),(39,'N110','H','1000000000','20000000','0',24),(40,'N290','L','5000000000','1800000000','500000000',24),(41,'N432','C5','3000000000','1350000000','0',24),(42,'N766','C2','2000000000','300000000','0',16),(43,'N770','C5','3000000000','300000000','0',24),(44,'N944','L','3000000000','1350000000','0',24),(45,'N968','C3','2000000000','300000000','0',16),(46,'O128','C4','1000000000','300000000','100000000',24),(47,'O477','C3','2000000000','300000000','0',16),(48,'O883','C3','1000000000','20000000','0',16),(49,'P060','C1','500000000','20000000','0',16),(50,'Q003','0.0','0','5000000','1',16),(51,'Q317','C1','500000000','20000000','0',16),(52,'R051','L','3000000000','1000000000','0',16),(53,'R474','C6','3000000000','300000000','0',24),(54,'R943','C2','750000000','300000000','0',16),(55,'S047','H','3000000000','300000000','0',24),(56,'S199','0.0','3000000000','1350000000','0',24),(57,'S804','C6','1000000000','20000000','0',24),(58,'T405','C4','2000000000','300000000','0',16),(59,'U210','L','3000000000','300000000','0',24),(60,'U319','C6','3000000000','1800000000','500000000',48),(61,'U574','C6','3000000000','300000000','0',24),(62,'V283','0.0','3000000000','1000000000','0',24),(63,'V301','C1','500000000','20000000','0',16),(64,'V753','C6','3000000000','1350000000','0',24),(65,'V911','C5','3000000000','1350000000','0',24),(66,'W237','C6','3000000000','1350000000','0',24),(67,'X702','C3','1000000000','300000000','0',24),(68,'X877','C4','2000000000','300000000','0',16),(69,'Y683','C4','2000000000','300000000','0',16),(70,'Y790','C1','500000000','20000000','0',16),(71,'Z006','C3','0','5000000','1',16),(72,'Z060','0.0','1000000000','20000000','0',24),(73,'Z142','0.0','3000000000','1350000000','0',24),(74,'Z457','C4','2000000000','300000000','0',16),(75,'Z647','C1','500000000','20000000','0',16),(76,'Z971','C1','100000000','20000000','0',16),(80,'M001','C4','0','5000000','1',16); +/*!40000 ALTER TABLE `wormhole` ENABLE KEYS */; +UNLOCK TABLES; /*!40103 SET TIME_ZONE=@OLD_TIME_ZONE */; /*!40101 SET SQL_MODE=@OLD_SQL_MODE */; @@ -1091,4 +1120,4 @@ UNLOCK TABLES; /*!40101 SET COLLATION_CONNECTION=@OLD_COLLATION_CONNECTION */; /*!40111 SET SQL_NOTES=@OLD_SQL_NOTES */; --- Dump completed on 2015-10-05 22:34:36 +-- Dump completed on 2015-11-19 21:53:36 diff --git a/public/css/pathfinder.css b/public/css/pathfinder.css index 69106deb..d67a8a99 100644 --- a/public/css/pathfinder.css +++ b/public/css/pathfinder.css @@ -38,4 +38,4 @@ * ======================================================================== * Copyright 2014 Min Hur, The New York Times Company * Licensed under MIT - * ======================================================================== */label.checkbox .toggle,label.checkbox.inline .toggle{margin-left:-20px;margin-right:5px}.toggle{min-width:40px;height:20px;position:relative;overflow:hidden}.toggle input[type="checkbox"]{display:none}.toggle-group{position:absolute;width:200%;top:0;bottom:0;left:0;transition:left 0.35s;-webkit-transition:left 0.35s;-moz-user-select:none;-webkit-user-select:none}.toggle.off .toggle-group{left:-100%}.toggle-on{position:absolute;top:0;bottom:0;left:0;right:50%;margin:0;border:0;border-radius:0}.toggle-off{position:absolute;top:0;bottom:0;left:50%;right:0;margin:0;border:0;border-radius:0}.toggle-handle{position:relative;margin:0 auto;padding-top:0px;padding-bottom:0px;height:100%;width:0px;border-width:0 1px}.toggle-handle.btn-mini{top:-2px}.toggle.btn,button.toggle.DTTT_button,div.toggle.DTTT_button,a.toggle.DTTT_button{min-width:30px}.toggle-on.btn,button.toggle-on.DTTT_button,div.toggle-on.DTTT_button,a.toggle-on.DTTT_button{padding-right:24px}.toggle-off.btn,button.toggle-off.DTTT_button,div.toggle-off.DTTT_button,a.toggle-off.DTTT_button{padding-left:24px}.toggle.btn-large{min-width:40px}.toggle-on.btn-large{padding-right:35px}.toggle-off.btn-large{padding-left:35px}.toggle.btn-small{min-width:25px}.toggle-on.btn-small{padding-right:20px}.toggle-off.btn-small{padding-left:20px}.toggle.btn-mini{min-width:20px}.toggle-on.btn-mini{padding-right:12px}.toggle-off.btn-mini{padding-left:12px}html{margin:0;padding:0;height:100%;position:relative}body{margin:0;padding:0;min-height:100%;direction:ltr}body.mobile-view-activated.hidden-menu{overflow-x:hidden}body.modal-open{overflow:hidden !important}a:hover,a:active,a:focus,button,button:active,button:focus,object,embed,input::-moz-focus-inner{outline:0}h1,h3,h4{margin:0;font-family:"Oxygen Bold","Helvetica Neue",Helvetica,Arial,sans-serif}.page-title{margin:12px 0 28px}.page-title span{font-size:15px;color:#313335;display:inline-block;vertical-align:1px}label{font-weight:normal}*:focus{outline:0 !important}a,input,button{-ms-touch-action:none !important}textarea:focus,select:focus,input[type="text"]:focus,input[type="password"]:focus,input[type="datetime"]:focus,input[type="datetime-local"]:focus,input[type="date"]:focus,input[type="month"]:focus,input[type="time"]:focus,input[type="week"]:focus,input[type="number"]:focus,input[type="email"]:focus,input[type="url"]:focus,input[type="search"]:focus,input[type="tel"]:focus,input[type="color"]:focus,.uneditable-input:focus{outline:0;outline:thin dotted \9;box-shadow:inset -1px 1px 5px 0 rgba(0,0,0,0.8) !important}.input-sm,.input-group-sm>.form-control,.input-group-sm>.input-group-addon,.input-group-sm>.input-group-btn>.btn,.input-group-sm>.input-group-btn>button.DTTT_button,.input-group-sm>.input-group-btn>div.DTTT_button,.input-group-sm>.input-group-btn>a.DTTT_button,.input-lg,.input-group-lg>.form-control,.input-group-lg>.input-group-addon,.input-group-lg>.input-group-btn>.btn,.input-group-lg>.input-group-btn>button.DTTT_button,.input-group-lg>.input-group-btn>div.DTTT_button,.input-group-lg>.input-group-btn>a.DTTT_button,.input-xs,.form-control{border-radius:0px !important;-webkit-border-radius:0px !important;-moz-border-radius:0px !important}.input-xs{height:24px;padding:2px 10px;font-size:11px;line-height:1.5}.btn-xs,.btn-group-xs>.btn,.btn-group-xs>button.DTTT_button,.btn-group-xs>div.DTTT_button,.btn-group-xs>a.DTTT_button{padding:0px 2px;font-size:10px;line-height:1.3}.btn-sm,.btn-group-sm>.btn,.btn-group-sm>button.DTTT_button,.btn-group-sm>div.DTTT_button,.btn-group-sm>a.DTTT_button,button.DTTT_button,div.DTTT_button,a.DTTT_button{padding:5px 8px 4px}.btn-lg,.btn-group-lg>.btn,.btn-group-lg>button.DTTT_button,.btn-group-lg>div.DTTT_button,.btn-group-lg>a.DTTT_button{padding:10px 16px}.no-space{margin:0}.no-space>[class*="col-"]{margin:0 !important;padding-right:0;padding-left:0}h1{letter-spacing:-1px;font-size:22px;margin:10px 0}h1 small{font-size:12px;font-weight:300;letter-spacing:-1px}h2{font-size:20px;margin:20px 0;line-height:normal}h3{display:block;font-size:17px;font-weight:400;margin:20px 0;line-height:normal}h4{line-height:normal;margin:20px 0 10px 0}h5{font-size:14px;font-weight:300;margin-top:0;margin-bottom:10px;line-height:normal}h6{font-size:13px;margin:10px 0;font-weight:bold;line-height:normal}.row-seperator-header{margin:15px 14px 20px;border-bottom:none;display:block;color:#303133;font-size:20px;font-weight:400}.center-canvas,.center-child-canvas>canvas{display:block !important;margin:0 auto !important}.smart-accordion-default.panel-group{margin-bottom:0px}.smart-accordion-default.panel-group .panel+.panel{margin-top:-1px}.smart-accordion-default.panel-group .panel-heading{padding:0px}.smart-accordion-default.panel-group .panel-title a{display:block;padding:10px 15px;text-decoration:none !important}.smart-accordion-default .panel-heading,.panel-group .panel{border-radius:0px;-webkit-border-radius:0px;-moz-border-radius:0px}.smart-accordion-default .panel-default>.panel-heading{background-color:#f3f3f3}.smart-accordion-default .panel-default{border-color:#8d9194}.smart-accordion-default .panel-title>a>:first-child{display:none}.smart-accordion-default .panel-title>a.collapsed>.fa,.smart-accordion-default .pf-landing .pf-landing-list li .panel-title>a.collapsed>i,.pf-landing .pf-landing-list li .smart-accordion-default .panel-title>a.collapsed>i{display:none}.smart-accordion-default .panel-title>a.collapsed>:first-child{display:inline-block}.no-padding .smart-accordion-default>div{border-left:none !important;border-right:none !important}.no-padding .smart-accordion-default>div:first-child{border-top:none !important}.no-padding .smart-accordion-default>div:last-child{border-bottom:none !important}.onoffswitch-container{margin-top:4px;margin-left:7px;display:inline-block}.onoffswitch{position:relative;width:50px;-webkit-user-select:none;-moz-user-select:none;-ms-user-select:none;margin-top:3px;margin-bottom:3px;margin-left:5px;display:inline-block;vertical-align:middle}.onoffswitch-checkbox{display:none}.onoffswitch-label{display:block;overflow:hidden;cursor:pointer;border:1px solid #484c4e;border-radius:50px;border-color:#777b7f #7c8184 #686c6f;-webkit-box-sizing:content-box;-moz-box-sizing:content-box;box-sizing:content-box}.onoffswitch-inner{width:200%;margin-left:-100%;display:block}.onoffswitch-inner:before,.onoffswitch-inner:after{float:left;width:50%;height:15px;padding:0;line-height:15px;font-size:10px;color:#fff;font-family:Trebuchet, Arial, sans-serif;font-weight:bold;-moz-box-sizing:border-box;-webkit-box-sizing:border-box;box-sizing:border-box}.onoffswitch-inner:before{content:attr(data-swchon-text);text-shadow:0 -1px 0 #313335;padding-left:7px;background-color:#3276b1;color:#fff;box-shadow:inset 0 2px 6px rgba(0,0,0,0.5),0 1px 2px rgba(0,0,0,0.05);text-align:left}.onoffswitch-inner:after{content:attr(data-swchoff-text);padding-right:7px;text-shadow:0 -1px 0 #fff;background-color:#fff;color:#3c3f41;text-align:right;box-shadow:inset 0 2px 4px rgba(0,0,0,0.15),0 1px 2px rgba(0,0,0,0.05)}.onoffswitch-switch{width:19px;height:19px;margin:-2px;background:white;border:1px solid #64686b;border-radius:50px;position:absolute;top:0;bottom:0;right:32px;-webkit-box-sizing:content-box;-moz-box-sizing:content-box;box-sizing:content-box;background-color:#eaeaea;background-image:-moz-linear-gradient(top, #fff, #adadad);background-image:-webkit-gradient(linear, 0 0, 0 100%, from(#fff), to(#adadad));background-image:-webkit-linear-gradient(top, #fff, #adadad);background-image:-o-linear-gradient(top, #fff, #adadad);background-image:linear-gradient(to bottom, #ffffff,#adadad);background-repeat:repeat-x;-webkit-box-shadow:1px 1px 4px 0px rgba(0,0,0,0.3);box-shadow:1px 1px 4px 0px rgba(0,0,0,0.3)}.onoffswitch-checkbox+.onoffswitch-label .onoffswitch-switch:before,.onoffswitch-checkbox:checked+.onoffswitch-label .onoffswitch-switch:before{content:"\f00d";color:#a52521;display:block;text-align:center;line-height:19px;font-size:10px;text-shadow:0 -1px 0 #fff;font-weight:bold;font-family:FontAwesome}.onoffswitch-checkbox:checked+.onoffswitch-label .onoffswitch-switch:before{content:"\f00c";color:#428bca}.onoffswitch-checkbox:checked+.onoffswitch-label .onoffswitch-inner{margin-left:0;display:block}.onoffswitch-checkbox:checked+.onoffswitch-label .onoffswitch-switch{right:0px}.onoffswitch-switch:hover{background-color:#adadad}.onoffswitch-switch:active{background-color:#adadad;box-shadow:inset 0 2px 4px rgba(0,0,0,0.15),0 1px 2px rgba(0,0,0,0.05)}.onoffswitch-checkbox:disabled+.onoffswitch-label .onoffswitch-inner:after,.onoffswitch-checkbox:checked:disabled+.onoffswitch-label .onoffswitch-inner:before{text-shadow:0 1px 0 #fff;background:#bfbfbf;color:#313335}.onoffswitch-checkbox:checked:disabled+.onoffswitch-label .onoffswitch-switch,.onoffswitch-checkbox:disabled+.onoffswitch-label .onoffswitch-switch{background-color:#eaeaea;background-image:-moz-linear-gradient(top, #bfbfbf, #eaeaea);background-image:-webkit-gradient(linear, 0 0, 0 100%, from(#bfbfbf), to(#eaeaea));background-image:-webkit-linear-gradient(top, #bfbfbf, #eaeaea);background-image:-o-linear-gradient(top, #bfbfbf, #eaeaea);background-image:linear-gradient(to bottom, #bfbfbf,#eaeaea);box-shadow:none !important}.onoffswitch-checkbox:disabled+.onoffswitch-label,.onoffswitch-checkbox:checked:disabled+.onoffswitch-label .onoffswitch-label{border-color:#74797c #63676a #525558 !important}.onoffswitch-checkbox:checked+.onoffswitch-label{border-color:#3276b1 #2a6395 #255681}.onoffswitch+span,.onoffswitch-title{display:inline-block;vertical-align:middle;margin-top:-5px}.form-control{box-shadow:none !important;-webkit-box-shadow:none !important;-moz-box-shadow:none !important}.form hr{margin-left:-13px;margin-right:-13px;border-color:rgba(0,0,0,0.1);margin-top:20px;margin-bottom:20px}.form fieldset{display:block;border:none;background:rgba(255,255,255,0.9);position:relative}fieldset{position:relative}.form-actions{display:block;padding:13px 14px 15px;border-top:1px solid rgba(0,0,0,0.1);background:rgba(239,239,239,0.9);margin-top:25px;margin-left:-13px;margin-right:-13px;margin-bottom:-13px;text-align:right}.well .form-actions{margin-left:-19px;margin-right:-19px;margin-bottom:-19px}.well.well-lg .form-actions{margin-left:-24px;margin-right:-24px;margin-bottom:-24px}.well.well-sm .form-actions{margin-left:-9px;margin-right:-9px;margin-bottom:-9px}.popover-content .form-actions{margin:0 -14px -9px;border-radius:0 0 3px 3px;padding:9px 14px}.no-padding .form .form-actions{margin:0;display:block;padding:13px 14px 15px;border-top:1px solid rgba(0,0,0,0.1);background:rgba(248,248,248,0.9);text-align:right;margin-top:25px}.form header,legend{display:block;padding:8px 0;border-bottom:1px dashed rgba(0,0,0,0.2);background:#fff;font-size:16px;font-weight:300;color:#2b2b2b;margin:25px 0px 20px}.no-padding .form header{margin:25px 14px 0}.form header:first-child{margin-top:10px}legend{font-weight:400;margin-top:0px;background:none}.input-group-addon{padding:6px 10px;will-change:background-color, border-color;-moz-border-radius:0;-webkit-border-radius:0;border-radius:0;-webkit-transition:all ease-out 0.15s;transition:all ease-out 0.15s}.input-group-addon .fa,.input-group-addon .pf-landing .pf-landing-list li i,.pf-landing .pf-landing-list li .input-group-addon i{font-size:14px}.input-group-addon .fa-lg,.input-group-addon .fa-2x{font-size:2em}.input-group-addon .fa-3x,.input-group-addon .fa-4x,.input-group-addon .fa-5x{font-size:30px}input[type="text"]:focus+.input-group-addon,input[type="password"]:focus+.input-group-addon,input[type="email"]:focus+.input-group-addon{border-color:#568a89;color:#568a89}.has-warning input[type="text"],.has-warning input[type="text"]+.input-group-addon{border-color:#e28a0d}.has-warning input[type="text"]+.input-group-addon{background-color:#fbe3c0;color:#2b2b2b}.has-warning input[type="text"]:focus,.has-warning input[type="text"]:focus+.input-group-addon{border-color:#e28a0d}.has-warning input[type="text"]:focus+.input-group-addon{background-color:#e28a0d;color:#fff}.has-error .input-group-addon{border-color:#d9534f !important;background:#d9534f !important;color:#2b2b2b !important}.has-success .input-group-addon{border-color:#4f9e4f !important;background-color:#2b2b2b !important;color:#4f9e4f !important}.form fieldset .form-group:last-child,.form fieldset .form-group:last-child .note,.form .form-group:last-child,.form .form-group:last-child .note{margin-bottom:0}.note{margin-top:6px;padding:0 1px;font-size:11px;line-height:15px;color:#63676a}.input-icon-right{position:relative}.input-icon-right>i,.input-icon-left>i{position:absolute;right:10px;top:30%;font-size:16px;color:#bfbfbf}.input-icon-left>i{right:auto;left:24px}.input-icon-right .form-control{padding-right:27px}.input-icon-left .form-control{padding-left:29px}input[type="text"].ui-autocomplete-loading,input[type="password"].ui-autocomplete-loading,input[type="datetime"].ui-autocomplete-loading,input[type="datetime-local"].ui-autocomplete-loading,input[type="date"].ui-autocomplete-loading,input[type="month"].ui-autocomplete-loading,input[type="time"].ui-autocomplete-loading,input[type="week"].ui-autocomplete-loading,input[type="number"].ui-autocomplete-loading,input[type="email"].ui-autocomplete-loading,input[type="url"].ui-autocomplete-loading,input[type="search"].ui-autocomplete-loading,input[type="tel"].ui-autocomplete-loading,input[type="color"].ui-autocomplete-loading{background-image:url("../img/select2-spinner.gif") !important;background-repeat:no-repeat;background-position:99% 50%;padding-right:27px}.input-group-addon .checkbox,.input-group-addon .radio{min-height:0px;margin-right:0px !important;padding-top:0}.input-group-addon label input[type="checkbox"].checkbox+span,.input-group-addon label input[type="radio"].radiobox+span,.input-group-addon label input[type="radio"].radiobox+span:before,.input-group-addon label input[type="checkbox"].checkbox+span:before{margin-right:0px}.input-group-addon .onoffswitch,.input-group-addon .onoffswitch-label{margin:0}.alert{margin-bottom:10px;margin-top:0px;padding:5px 15px 5px 34px;color:#675100;border-width:0px;border-left-width:3px;padding:10px}.alert .ui-pnotify-title{line-height:12px}.alert .ui-pnotify-text{font-size:10px}.alert .close{top:0px;right:-5px;line-height:20px}.alert-heading{font-weight:600}.alert-danger{border-color:#a52521;color:#2b2b2b;background:#f6d1d0;text-shadow:none}.alert-danger .ui-pnotify-icon{color:#a52521}.alert-warning{border-color:#e28a0d;color:#2b2b2b;background:#fdedd8}.alert-warning .ui-pnotify-icon{color:#e28a0d}.alert-success{border-color:#4f9e4f;color:#2b2b2b;background:#d1e8d1}.alert-success .ui-pnotify-icon{color:#4f9e4f}.alert-info{border-color:#316490;color:#2b2b2b;background:#abc9e2}.alert-info .ui-pnotify-icon{color:#316490}.progress-micro{height:3px !important;line-height:3px !important}.progress-xs{height:7px !important;line-height:7px !important}.progress-sm{height:14px !important;line-height:14px !important}.progress-lg{height:30px !important;line-height:30px !important}.progress .progress-bar{position:absolute;overflow:hidden;line-height:18px}.progress .progressbar-back-text{position:absolute;width:100%;height:100%;font-size:12px;line-height:20px;text-align:center}.progress .progressbar-front-text{display:block;width:100%;font-size:12px;line-height:20px;text-align:center}.progress.right .progress-bar{right:0}.progress.right .progressbar-front-text{position:absolute;right:0}.progress.vertical{width:25px;height:100%;min-height:150px;margin-right:20px;display:inline-block;margin-bottom:0px}.progress.wide-bar{width:40px}.progress.vertical.bottom{position:relative}.progress.vertical.bottom .progressbar-front-text{position:absolute;bottom:0}.progress.vertical .progress-bar{width:100%;height:0;-webkit-transition:height 0.6s ease;transition:height 0.6s ease}.progress.vertical.bottom .progress-bar{position:absolute;bottom:0}@-webkit-keyframes progress-bar-stripes{from{background-position:40px 0}to{background-position:0 0}}@-moz-keyframes progress-bar-stripes{from{background-position:40px 0}to{background-position:0 0}}@-o-keyframes progress-bar-stripes{from{background-position:0 0}to{background-position:40px 0}}@keyframes progress-bar-stripes{from{background-position:40px 0}to{background-position:0 0}}.progress{position:relative;margin-bottom:20px;overflow:hidden;height:18px;background:#adadad;box-shadow:0 1px 0 transparent,0 0 0 1px #aeb1b3 inset;-webkit-box-shadow:0 1px 0 transparent,0 0 0 1px #aeb1b3 inset;-moz-box-shadow:0 1px 0 transparent,0 0 0 1px #aeb1b3 inset;border-radius:0px;-moz-border-radius:0px;-webkit-border-radius:0px}.progress-bar{float:left;width:0;height:100%;font-size:11px;color:#fff;text-align:center;background-color:#428bca;-webkit-box-shadow:inset 0 -1px 0 rgba(0,0,0,0.15);box-shadow:inset 0 -1px 0 rgba(0,0,0,0.15);font-weight:bold;text-shadow:0 -1px 0 rgba(0,0,0,0.25);-webkit-transition:width 1.5s ease-in-out;transition:width 1.5s ease-in-out}.progress-striped .progress-bar{background-image:-webkit-gradient(linear, 0 100%, 100% 0, color-stop(0.25, rgba(255,255,255,0.15)), color-stop(0.25, transparent), color-stop(0.5, transparent), color-stop(0.5, rgba(255,255,255,0.15)), color-stop(0.75, rgba(255,255,255,0.15)), color-stop(0.75, transparent), to(transparent));background-image:-webkit-linear-gradient(45deg, rgba(255,255,255,0.15) 25%, transparent 25%, transparent 50%, rgba(255,255,255,0.15) 50%, rgba(255,255,255,0.15) 75%, transparent 75%, transparent);background-image:-moz-linear-gradient(45deg, rgba(255,255,255,0.15) 25%, transparent 25%, transparent 50%, rgba(255,255,255,0.15) 50%, rgba(255,255,255,0.15) 75%, transparent 75%, transparent);background-image:linear-gradient(45deg, rgba(255,255,255,0.15) 25%,rgba(0,0,0,0) 25%,rgba(0,0,0,0) 50%,rgba(255,255,255,0.15) 50%,rgba(255,255,255,0.15) 75%,rgba(0,0,0,0) 75%,rgba(0,0,0,0));background-size:40px 40px}.progress.active .progress-bar{-webkit-animation:progress-bar-stripes 2s linear infinite;-moz-animation:progress-bar-stripes 2s linear infinite;-ms-animation:progress-bar-stripes 2s linear infinite;-o-animation:progress-bar-stripes 2s linear infinite;animation:progress-bar-stripes 2s linear infinite}.progress-bar-danger{background-color:#a52521}.progress-striped .progress-bar-danger{background-image:-webkit-gradient(linear, 0 100%, 100% 0, color-stop(0.25, rgba(255,255,255,0.15)), color-stop(0.25, transparent), color-stop(0.5, transparent), color-stop(0.5, rgba(255,255,255,0.15)), color-stop(0.75, rgba(255,255,255,0.15)), color-stop(0.75, transparent), to(transparent));background-image:-webkit-linear-gradient(45deg, rgba(255,255,255,0.15) 25%, transparent 25%, transparent 50%, rgba(255,255,255,0.15) 50%, rgba(255,255,255,0.15) 75%, transparent 75%, transparent);background-image:-moz-linear-gradient(45deg, rgba(255,255,255,0.15) 25%, transparent 25%, transparent 50%, rgba(255,255,255,0.15) 50%, rgba(255,255,255,0.15) 75%, transparent 75%, transparent);background-image:linear-gradient(45deg, rgba(255,255,255,0.15) 25%,rgba(0,0,0,0) 25%,rgba(0,0,0,0) 50%,rgba(255,255,255,0.15) 50%,rgba(255,255,255,0.15) 75%,rgba(0,0,0,0) 75%,rgba(0,0,0,0))}.progress-bar-success{background-color:#4f9e4f}.progress-striped .progress-bar-success{background-image:-webkit-gradient(linear, 0 100%, 100% 0, color-stop(0.25, rgba(255,255,255,0.15)), color-stop(0.25, transparent), color-stop(0.5, transparent), color-stop(0.5, rgba(255,255,255,0.15)), color-stop(0.75, rgba(255,255,255,0.15)), color-stop(0.75, transparent), to(transparent));background-image:-webkit-linear-gradient(45deg, rgba(255,255,255,0.15) 25%, transparent 25%, transparent 50%, rgba(255,255,255,0.15) 50%, rgba(255,255,255,0.15) 75%, transparent 75%, transparent);background-image:-moz-linear-gradient(45deg, rgba(255,255,255,0.15) 25%, transparent 25%, transparent 50%, rgba(255,255,255,0.15) 50%, rgba(255,255,255,0.15) 75%, transparent 75%, transparent);background-image:linear-gradient(45deg, rgba(255,255,255,0.15) 25%,rgba(0,0,0,0) 25%,rgba(0,0,0,0) 50%,rgba(255,255,255,0.15) 50%,rgba(255,255,255,0.15) 75%,rgba(0,0,0,0) 75%,rgba(0,0,0,0))}.progress-bar-warning{background-color:#e28a0d}.progress-striped .progress-bar-warning{background-image:-webkit-gradient(linear, 0 100%, 100% 0, color-stop(0.25, rgba(255,255,255,0.15)), color-stop(0.25, transparent), color-stop(0.5, transparent), color-stop(0.5, rgba(255,255,255,0.15)), color-stop(0.75, rgba(255,255,255,0.15)), color-stop(0.75, transparent), to(transparent));background-image:-webkit-linear-gradient(45deg, rgba(255,255,255,0.15) 25%, transparent 25%, transparent 50%, rgba(255,255,255,0.15) 50%, rgba(255,255,255,0.15) 75%, transparent 75%, transparent);background-image:-moz-linear-gradient(45deg, rgba(255,255,255,0.15) 25%, transparent 25%, transparent 50%, rgba(255,255,255,0.15) 50%, rgba(255,255,255,0.15) 75%, transparent 75%, transparent);background-image:linear-gradient(45deg, rgba(255,255,255,0.15) 25%,rgba(0,0,0,0) 25%,rgba(0,0,0,0) 50%,rgba(255,255,255,0.15) 50%,rgba(255,255,255,0.15) 75%,rgba(0,0,0,0) 75%,rgba(0,0,0,0))}.progress-bar-info{background-color:#316490}.progress-striped .progress-bar-info{background-image:-webkit-gradient(linear, 0 100%, 100% 0, color-stop(0.25, rgba(255,255,255,0.15)), color-stop(0.25, transparent), color-stop(0.5, transparent), color-stop(0.5, rgba(255,255,255,0.15)), color-stop(0.75, rgba(255,255,255,0.15)), color-stop(0.75, transparent), to(transparent));background-image:-webkit-linear-gradient(45deg, rgba(255,255,255,0.15) 25%, transparent 25%, transparent 50%, rgba(255,255,255,0.15) 50%, rgba(255,255,255,0.15) 75%, transparent 75%, transparent);background-image:-moz-linear-gradient(45deg, rgba(255,255,255,0.15) 25%, transparent 25%, transparent 50%, rgba(255,255,255,0.15) 50%, rgba(255,255,255,0.15) 75%, transparent 75%, transparent);background-image:linear-gradient(45deg, rgba(255,255,255,0.15) 25%,rgba(0,0,0,0) 25%,rgba(0,0,0,0) 50%,rgba(255,255,255,0.15) 50%,rgba(255,255,255,0.15) 75%,rgba(0,0,0,0) 75%,rgba(0,0,0,0))}.progress-info .bar,.progress .bar-info{background:#316490}.vertical-bars{padding:0;margin:0}.vertical-bars:after{content:"";display:block;height:0;clear:both}.vertical-bars li{padding:14px 0;width:25%;display:block;float:left;text-align:center}.vertical-bars li:first-child{border-left:none}.vertical-bars>li>.progress.vertical:first-child{margin-left:auto}.vertical-bars>li>.progress.vertical{margin:0 auto;float:none}.nav-tabs{border-bottom:none}.nav-tabs>li>a .badge{font-size:11px;padding:3px 5px 3px 5px;opacity:.5;margin-left:5px;min-width:17px;font-weight:normal}.tabs-left .nav-tabs>li>a .badge{margin-right:5px;margin-left:0px}.nav-tabs>li>a .label{display:inline-block;font-size:11px;margin-left:5px;opacity:.5}.nav-tabs>li>a{color:#adadad;font-family:"Oxygen Bold","Helvetica Neue",Helvetica,Arial,sans-serif}.nav-tabs>li>a:hover{color:#1d1d1d;border-color:transparent transparent #adadad transparent;margin-top:1px;border-top-width:0}.nav-tabs>li.active>a{background-color:#adadad;color:#2b2b2b;border-top-width:0px !important;margin-top:1px !important;font-weight:bold}.tabs-left .nav-tabs>li.active>a{-webkit-box-shadow:-2px 0 0 #428bca;-moz-box-shadow:-2px 0 0 #428bca;box-shadow:-2px 0 0 #428bca;border-top-width:1px !important;border-left:none !important;margin-left:1px !important}.tabs-left .nav-pills>li.active>a{border:none !important;box-shadow:none !important;-webkit-box-shadow:none !important;-moz-box-shadow:none !important}.tabs-right .nav-tabs>li.active>a{-webkit-box-shadow:2px 0 0 #428bca;-moz-box-shadow:2px 0 0 #428bca;box-shadow:2px 0 0 #428bca;border-top-width:1px !important;border-right:none !important;margin-right:1px !important}.tabs-below .nav-tabs>li.active>a{-webkit-box-shadow:0 2px 0 #428bca;-moz-box-shadow:0 2px 0 #428bca;box-shadow:0 2px 0 #428bca;border-bottom-width:0px !important;border-top:none !important;margin-top:0px !important}.tabs-below>.nav-tabs,.tabs-right>.nav-tabs,.tabs-left>.nav-tabs{border-bottom:0}.tab-content>.tab-pane,.pill-content>.pill-pane{display:none}.tab-content>.active,.pill-content>.active{display:block}.tabs-below>.nav-tabs{border-top:1px solid #9b9b9b}.tabs-below>.nav-tabs>li{margin-top:-1px;margin-bottom:0}.tabs-left>.nav-tabs>li,.tabs-right>.nav-tabs>li,.tabs-left>.nav-pills>li,.tabs-right>.nav-pills>li{float:none}.tabs-left>.nav-tabs>li>a,.tabs-right>.nav-tabs>li>a,.tabs-left>.nav-pills>li>a,.tabs-right>.nav-pills>li>a{min-width:74px;margin-right:0;margin-bottom:3px}.tabs-left>.nav-tabs,.tabs-left>.nav-pills{float:left;margin-right:19px;border-right:1px solid #9b9b9b}.tabs-left>.nav-pills{border-right:none}.tabs-left>.nav-tabs>li>a{margin-right:-1px}.tabs-left>.nav-tabs>li>a:hover,.tabs-left>.nav-tabs>li>a:focus{border-color:#adadad #949494 #adadad #adadad}.tabs-left>.nav-tabs .active>a,.tabs-left>.nav-tabs .active>a:hover,.tabs-left>.nav-tabs .active>a:focus{border-color:#949494 transparent #949494 #9b9b9b;*border-right-color:#fff}.tabs-left>.tab-content{margin-left:109px}.tabs-right>.nav-tabs{float:right;margin-left:19px;border-left:1px solid #9b9b9b}.tabs-right>.nav-tabs>li>a{margin-left:-1px}.tabs-right>.nav-tabs>li>a:hover,.tabs-right>.nav-tabs>li>a:focus{border-color:#adadad #adadad #adadad #9b9b9b}.tabs-right>.nav-tabs .active>a,.tabs-right>.nav-tabs .active>a:hover,.tabs-right>.nav-tabs .active>a:focus{border-color:#9b9b9b #9b9b9b #9b9b9b transparent;*border-left-color:#fff}.tabs-below>.nav-tabs,.tabs-right>.nav-tabs,.tabs-left>.nav-tabs{border-bottom:0}.tab-content>.tab-pane,.pill-content>.pill-pane{display:none}.tab-content>.active,.pill-content>.active{display:block}.tabs-below>.nav-tabs{border-top:1px solid #9b9b9b}.tabs-below>.nav-tabs>li{margin-top:-1px;margin-bottom:0}.tabs-below>.nav-tabs>li>a:hover,.tabs-below>.nav-tabs>li>a:focus{border-top-color:#9b9b9b;border-bottom-color:transparent}.tabs-below>.nav-tabs>.active>a,.tabs-below>.nav-tabs>.active>a:hover,.tabs-below>.nav-tabs>.active>a:focus{border-color:transparent #9b9b9b #9b9b9b #9b9b9b}.nav-tabs.bordered{background:#fff;border:1px solid #9b9b9b}.nav-tabs.bordered>:first-child a{border-left-width:0px !important}.nav-tabs.bordered+.tab-content{border:1px solid #9b9b9b;border-top:none}.tabs-pull-right.nav-tabs>li,.tabs-pull-right.nav-pills>li{float:right}.tabs-pull-right.nav-tabs>li:first-child>a,.tabs-pull-right.nav-pills>li:first-child>a{margin-right:1px}.tabs-pull-right.bordered.nav-tabs>li:first-child>a,.tabs-pull-right.bordered.nav-pills>li:first-child>a{border-left-width:1px !important;margin-right:0px;border-right-width:0px}.dropdown-menu-xs{min-width:37px}.dropdown-menu-xs>li>a{padding:3px 10px}.dropdown-menu-xs>li>a:hover i{color:#fff !important}.dropdown-submenu{position:relative}.dropdown-submenu>.dropdown-menu{top:0;left:100%;margin-top:-6px;margin-left:-1px}.dropdown-submenu:hover>.dropdown-menu{display:block}.dropdown-submenu>a:after{display:block;content:" ";float:right;width:0;height:0;border-color:transparent;border-style:solid;border-width:5px 0 5px 5px;border-left-color:#2b2b2b;margin-top:5px;margin-right:-10px}.dropdown-submenu:hover>a:after{border-left-color:#adadad}.dropdown-submenu.pull-left{float:none}.dropdown-submenu.pull-left>.dropdown-menu{left:-100%;margin-left:10px}.pagination>li>a,.pagination>li>span{box-shadow:inset 0 -2px 0 rgba(0,0,0,0.05);-moz-box-shadow:inset 0 -2px 0 rgba(0,0,0,0.05);-webkit-box-shadow:inset 0 -2px 0 rgba(0,0,0,0.05)}.disabled{color:#fff}.btn-default.disabled,button.disabled.DTTT_button,div.disabled.DTTT_button,a.disabled.DTTT_button{color:#adadad}.btn,button.DTTT_button,div.DTTT_button,a.DTTT_button{font-family:"Oxygen Bold","Helvetica Neue",Helvetica,Arial,sans-serif;will-change:background-color, border-color;-moz-border-radius:2px;-webkit-border-radius:2px;border-radius:2px;-webkit-transition:all 0.18s ease-in-out;transition:all 0.18s ease-in-out}.btn.btn-ribbon,button.btn-ribbon.DTTT_button,div.btn-ribbon.DTTT_button,a.btn-ribbon.DTTT_button{background-color:#707070;background-image:-moz-linear-gradient(top, #777, #666);background-image:-webkit-gradient(linear, 0 0, 0 100%, from(#777), to(#666));background-image:-webkit-linear-gradient(top, #777, #666);background-image:-o-linear-gradient(top, #777, #666);background-image:linear-gradient(to bottom, #777777,#666666);background-repeat:repeat-x;filter:progid:DXImageTransform.Microsoft.gradient(startColorstr='#ff777777', endColorstr='#ff666666', GradientType=0);color:white;padding:0 5px;line-height:20px;vertical-align:middle;height:20px;display:block;border:none;float:left;margin:0 8px 0 0;cursor:pointer}.btn.btn-ribbon>i,button.btn-ribbon.DTTT_button>i,div.btn-ribbon.DTTT_button>i,a.btn-ribbon.DTTT_button>i{font-size:111%}.ribbon-button-alignment{padding-top:10px;display:inline-block}.ribbon-button-alignment.pull-right>.btn.btn-ribbon,.ribbon-button-alignment.pull-right>button.btn-ribbon.DTTT_button,.ribbon-button-alignment.pull-right>div.btn-ribbon.DTTT_button,.ribbon-button-alignment.pull-right>a.btn-ribbon.DTTT_button{margin:0 0 0 8px}.panel-purple{border-color:#6e587a}.panel-purple>.panel-heading{color:#fff;background-color:#6e587a;border-color:#6e587a}.panel-greenLight{border-color:#71843f}.panel-greenLight>.panel-heading{color:#fff;background-color:#71843f;border-color:#71843f}.panel-greenDark{border-color:#496949}.panel-greenDark>.panel-heading{color:#fff;background-color:#496949;border-color:#496949}.panel-darken{border-color:#313335}.panel-darken>.panel-heading{color:#fff;background-color:#404040;border-color:#404040}.panel-pink{border-color:#e06fdf}.panel-pink>.panel-heading{color:#fff;background-color:#e06fdf;border-color:#e06fdf}.panel-green{border-color:#5cb85c}.panel-green>.panel-heading{color:#fff;background-color:#5cb85c;border-color:#5cb85c}.panel-blueLight{border-color:#92a2a8}.panel-blueLight>.panel-heading{color:#fff;background-color:#92a2a8;border-color:#92a2a8}.panel-pinkDark{border-color:#a8829f}.panel-pinkDark>.panel-heading{color:#fff;background-color:#a8829f;border-color:#a8829f}.panel-redLight{border-color:#a65858}.panel-redLight>.panel-heading{color:#fff;background-color:#a65858;border-color:#a65858}.panel-red{border-color:#d9534f}.panel-red>.panel-heading{color:#fff;background-color:#d9534f;border-color:#d9534f}.panel-teal{border-color:#568a89}.panel-teal>.panel-heading{color:#fff;background-color:#568a89;border-color:#568a89}.panel-orange{border-color:#e28a0d}.panel-orange>.panel-heading{color:#fff;background-color:#e28a0d;border-color:#e28a0d}.panel-blueDark{border-color:#4c4f53}.panel-blueDark>.panel-heading{color:#fff;background-color:#4c4f53;border-color:#4c4f53}.panel-magenta{border-color:#6e3671}.panel-magenta>.panel-heading{color:#fff;background-color:#6e3671;border-color:#6e3671}.panel-blue{border-color:#428bca}.panel-blue>.panel-heading{color:#fff;background-color:#428bca;border-color:#428bca}.panel-footer>.btn-block{border-radius:0px;-moz-border-radius:0px;-webkit-border-radius:0px;border-bottom:none;border-left:none;border-right:none}.btn-circle{width:30px;height:30px;text-align:center;padding:6px 0;font-size:12px;line-height:18px;border-radius:50%;-moz-border-radius:50%;-webkit-border-radius:50%;-webkit-box-shadow:0 1px 6px 0 rgba(0,0,0,0.12),0 1px 6px 0 rgba(0,0,0,0.12);box-shadow:0 1px 6px 0 rgba(0,0,0,0.12),0 1px 6px 0 rgba(0,0,0,0.12)}.btn-circle.btn-sm,.btn-group-sm>.btn-circle.btn,button.btn-circle.DTTT_button,div.btn-circle.DTTT_button,a.btn-circle.DTTT_button{width:22px;height:22px;padding:4px 0;font-size:12px;line-height:14px;border-radius:50%;-moz-border-radius:50%;-webkit-border-radius:50%}.btn-circle.btn-lg,.btn-group-lg>.btn-circle.btn,.btn-group-lg>button.btn-circle.DTTT_button,.btn-group-lg>div.btn-circle.DTTT_button,.btn-group-lg>a.btn-circle.DTTT_button{width:50px;height:50px;padding:10px 15px;font-size:18px;line-height:30px;border-radius:50%;-moz-border-radius:50%;-webkit-border-radius:50%}.btn-circle.btn-xl{width:70px;height:70px;padding:10px 15px;font-size:24px;line-height:50px;border-radius:50%;-moz-border-radius:50%;-webkit-border-radius:50%}.btn-metro{margin:0 0 20px;padding-top:15px;padding-bottom:15px}.btn-metro>span{display:block;vertical-align:bottom;margin-top:10px;text-transform:uppercase}.btn-metro>span.label{position:absolute;top:0px;right:0px}.btn-label{position:relative;left:-8px;display:inline-block;padding:5px 8px;background:rgba(0,0,0,0.15);border-radius:3px 0 0 3px}.btn-labeled{padding-top:0;padding-bottom:0}.btn-link{box-shadow:none;-webkit-box-shadow:none;font-size:13px}.morris-hover.morris-default-style{border-radius:5px;padding:5px;color:#666;background:rgba(29,29,29,0.9);border:solid 2px #375959;font-family:'Oxygen Bold';font-size:10px;text-align:left;-webkit-box-shadow:0 6px 12px rgba(0,0,0,0.4);box-shadow:0 6px 12px rgba(0,0,0,0.4)}.morris-hover.morris-default-style .morris-hover-row-label{font-weight:bold}.morris-hover.morris-default-style .morris-hover-point{white-space:nowrap}.morris-hover{position:absolute;z-index:903}.fixed-page-footer .morris-hover{z-index:900}.txt-color.txt-color-blue,.txt-color-blue.pf-help,.pf-help:hover,.pf-landing .pf-landing-list li i.pf-help:hover,.pf-landing .pf-landing-list li i.txt-color-blue{color:#428bca !important}.txt-color.txt-color-blueLight,.txt-color-blueLight.pf-help,.pf-landing .pf-landing-list li i.txt-color-blueLight{color:#92a2a8 !important}.txt-color.txt-color-blueDark,.txt-color-blueDark.pf-help,.pf-landing .pf-landing-list li i.txt-color-blueDark{color:#4c4f53 !important}.txt-color.txt-color-grayLightest,.txt-color-grayLightest.pf-help,.pf-landing .pf-landing-list li i.txt-color-grayLightest{color:#eaeaea !important}.txt-color.txt-color-grayLighter,.txt-color-grayLighter.pf-help,.pf-landing .pf-landing-list li i.txt-color-grayLighter{color:#adadad !important}.txt-color.txt-color-grayLight,.txt-color-grayLight.pf-help,.pf-landing .pf-landing-list li i.txt-color-grayLight{color:#63676a !important}.txt-color.txt-color-gray,.pf-help,.pf-landing .pf-landing-list li i.txt-color-gray,.pf-landing .pf-landing-list li i.pf-help{color:#3c3f41 !important}.txt-color.txt-color-grayDark,.txt-color-grayDark.pf-help,.pf-landing .pf-landing-list li i.txt-color-grayDark{color:#313335 !important}.txt-color.txt-color-greenLight,.txt-color-greenLight.pf-help,.pf-landing .pf-landing-list li i.txt-color-greenLight{color:#66c84f !important}.txt-color.txt-color-green,.txt-color-green.pf-help,.pf-help.pf-log-info,.txt-color.pf-log-info,.pf-landing .pf-landing-list li i.pf-log-info,.pf-landing .pf-landing-list li i.txt-color-green{color:#5cb85c !important}.txt-color.txt-color-greenDark,.txt-color-greenDark.pf-help,.pf-landing .pf-landing-list li i.txt-color-greenDark{color:#4f9e4f !important}.txt-color.txt-color-redLight,.txt-color-redLight.pf-help,.pf-landing .pf-landing-list li i.txt-color-redLight{color:#a65858 !important}.txt-color.txt-color-red,.txt-color-red.pf-help,.pf-help.pf-log-error,.txt-color.pf-log-error,.pf-landing .pf-landing-list li i.pf-log-error,.pf-landing .pf-landing-list li i.txt-color-red{color:#d9534f !important}.txt-color.txt-color-redDarker,.txt-color-redDarker.pf-help,.pf-landing .pf-landing-list li i.txt-color-redDarker{color:#a52521 !important}.txt-color.txt-color-yellow,.txt-color-yellow.pf-help,.pf-landing .pf-landing-list li i.txt-color-yellow{color:#b09b5b !important}.txt-color.txt-color-orange,.txt-color-orange.pf-help,.pf-landing .pf-landing-list li i.txt-color-orange{color:#e28a0d !important}.txt-color.txt-color-orangeDark,.txt-color-orangeDark.pf-help,.pf-landing .pf-landing-list li i.txt-color-orangeDark{color:#c2760c !important}.txt-color.txt-color-pink,.txt-color-pink.pf-help,.pf-landing .pf-landing-list li i.txt-color-pink{color:#e06fdf !important}.txt-color.txt-color-pinkDark,.txt-color-pinkDark.pf-help,.pf-landing .pf-landing-list li i.txt-color-pinkDark{color:#a8829f !important}.txt-color.txt-color-purple,.txt-color-purple.pf-help,.pf-landing .pf-landing-list li i.txt-color-purple{color:#6e587a !important}.txt-color.txt-color-darken,.txt-color-darken.pf-help,.pf-landing .pf-landing-list li i.txt-color-darken{color:#404040 !important}.txt-color.txt-color-lighten,.txt-color-lighten.pf-help,.pf-landing .pf-landing-list li i.txt-color-lighten{color:#d5e7ec !important}.txt-color.txt-color-white,.txt-color-white.pf-help,.pf-landing .pf-landing-list li i.txt-color-white{color:#fff !important}.txt-color.txt-color-magenta,.txt-color-magenta.pf-help,.pf-landing .pf-landing-list li i.txt-color-magenta{color:#6e3671 !important}.txt-color.txt-color-tealLighter,.txt-color-tealLighter.pf-help,.pf-landing .pf-landing-list li i{color:#568a89 !important}.txt-color.txt-color-indigoDark,.txt-color-indigoDark.pf-help,.pf-landing .pf-landing-list li i.txt-color-indigoDark{color:#5c6bc0 !important}.txt-color.txt-color-indigoDarkest,.txt-color-indigoDarkest.pf-help,.pf-landing .pf-landing-list li i.txt-color-indigoDarkest{color:#313966 !important}.txt-color.txt-color-primary,.txt-color-primary.pf-help,.pf-landing .pf-landing-list li i.txt-color-primary{color:#375959 !important}.txt-color.txt-color-success,.txt-color-success.pf-help,.pf-landing .pf-landing-list li i.txt-color-success{color:#4f9e4f !important}.txt-color.txt-color-information,.txt-color-information.pf-help,.pf-landing .pf-landing-list li i.txt-color-information{color:#316490 !important}.txt-color.txt-color-warning,.txt-color-warning.pf-help,.pf-help.pf-log-warning,.txt-color.pf-log-warning,.pf-landing .pf-landing-list li i.pf-log-warning,.pf-landing .pf-landing-list li i.txt-color-warning{color:#e28a0d !important}.txt-color.txt-color-danger,.txt-color-danger.pf-help,.pf-landing .pf-landing-list li i.txt-color-danger{color:#a52521 !important}.bg-color.bg-color-blue{background-color:#428bca !important}.bg-color.bg-color-blueLight{background-color:#92a2a8 !important}.bg-color.bg-color-blueDark{background-color:#4c4f53 !important}.bg-color.bg-color-green{background-color:#5cb85c !important}.bg-color.bg-color-greenLight{background-color:#71843f !important}.bg-color.bg-color-greenDark{background-color:#496949 !important}.bg-color.bg-color-red{background-color:#d9534f !important}.bg-color.bg-color-yellow{background-color:#b09b5b !important}.bg-color.bg-color-orange{background-color:#e28a0d !important}.bg-color.bg-color-orangeDark{background-color:#c2760c !important}.bg-color.bg-color-pink{background-color:#e06fdf !important}.bg-color.bg-color-pinkDark{background-color:#a8829f !important}.bg-color.bg-color-purple{background-color:#6e587a !important}.bg-color.bg-color-darken{background-color:#404040 !important}.bg-color.bg-color-lighten{background-color:#d5e7ec !important}.bg-color.bg-color-white{background-color:#fff !important}.bg-color.bg-color-grayDark{background-color:#525252 !important}.bg-color.bg-color-magenta{background-color:#6e3671 !important}.bg-color.bg-color-tealLighter{background-color:#568a89 !important}.bg-color.bg-color-redLight{background-color:#a65858 !important}body{-webkit-touch-callout:none;-webkit-user-select:none;-khtml-user-select:none;-moz-user-select:none;-ms-user-select:none;user-select:none}.pf-body{overflow:hidden}a{color:#477372;will-change:color;text-decoration:none;-webkit-transition:color 0.08s ease-out;transition:color 0.08s ease-out}a:hover{color:#6caead;text-decoration:none}a:focus{color:#477372}em{font-style:italic}em.pf-brand{text-transform:uppercase}.pf-font-capitalize{text-transform:capitalize}.no-padding{padding:0 !important}.pf-help{cursor:pointer;cursor:help;-webkit-transition:color 0.08s ease-out;transition:color 0.08s ease-out}.pf-dialog-icon-button,.pf-sig-table-module .pf-sig-table .pf-sig-table-edit-desc-text.editable-empty,.pf-sig-table-module .pf-sig-table .fa-plus{cursor:pointer;-webkit-transition:color 0.15s ease-out;transition:color 0.15s ease-out}.pf-dialog-icon-button:not(.collapsed),.pf-sig-table-module .pf-sig-table .pf-sig-table-edit-desc-text.editable-empty:not(.collapsed),.pf-sig-table-module .pf-sig-table .fa-plus:not(.collapsed),.pf-dialog-icon-button:hover,.pf-sig-table-module .pf-sig-table .pf-sig-table-edit-desc-text.editable-empty:hover,.pf-sig-table-module .pf-sig-table .fa-plus:hover{color:#e28a0d}.pf-module-icon-button{cursor:pointer;-webkit-transition:color 0.15s ease-out;transition:color 0.15s ease-out}.pf-module-icon-button:hover{color:#e28a0d}.alert{will-change:opacity, transform}.editable-input optgroup[label]{background-color:#3c3f41;color:#63676a}.editable-input optgroup[label] option{background-color:#313335;color:#adadad;font-family:Consolas,monospace,Menlo,Monaco,"Courier New"}select:active,select:hover{outline:none}select:active,select:hover{outline-color:red}.select2-results [class*="col-"]{line-height:22px}.select2 ::-webkit-search-cancel-button{-webkit-appearance:none !important}.select2 .select2-selection__choice__remove{float:left}.select2 .select2-selection--multiple input{box-shadow:none !important}.dataTable th.pf-table-image-cell,.dataTable th.pf-table-image-small-cell{padding-left:0 !important;padding-right:0 !important}.dataTable th.sorting,.dataTable th.sorting_asc,.dataTable th.sorting_desc{padding-right:18px !important}.dataTable td.pf-table-action-cell{cursor:pointer}.dataTable td.pf-table-image-cell{padding:0 !important}.dataTable td.pf-table-image-cell img{width:26px;border-left:1px solid #3c3f41;border-right:1px solid #3c3f41}.dataTable td.pf-table-image-small-cell img{width:24px;border-left:1px solid transparent;border-right:1px solid transparent}.dataTable td.pf-table-counter-cell{color:#63676a}.dataTable td.pf-table-counter-cell .pf-digit-counter-small{width:20px;display:inline-block;font-size:10px}.dataTable td.pf-table-counter-cell .pf-digit-counter-large{width:26px;display:inline-block;font-size:10px}.pf-table-tools{height:45px}.pf-table-tools .btn:not(:last-child),.pf-table-tools button.DTTT_button:not(:last-child),.pf-table-tools div.DTTT_button:not(:last-child),.pf-table-tools a.DTTT_button:not(:last-child){margin-right:10px}.pf-table-tools-action{will-change:height, opacity, display;opacity:0;display:none;height:0;visibility:hidden}.pf-loading-overlay{position:absolute;width:100%;height:100%;top:0;left:0;opacity:0;background:#2b2b2b;z-index:1060;-moz-border-radius:5px;-webkit-border-radius:5px;border-radius:5px}.pf-loading-overlay .pf-loading-overlay-wrapper{width:25px;height:25px;margin:auto;text-align:center;position:absolute;top:0;left:0;bottom:0;right:0}.pf-loading-overlay .pf-loading-overlay-wrapper i{padding:3px}.navbar-nav li:hover:before,.navbar-nav li.active:before{top:-4px;opacity:1}.navbar-nav li:before{content:'';position:absolute;width:100%;height:2px;background-color:#5cb85c;top:0;opacity:0;will-change:opacity, top;-webkit-transition:top 0.15s ease-out,opacity 0.15s ease-out;transition:top 0.15s ease-out,opacity 0.15s ease-out}.pf-site{will-change:transform}.sb-slidebar{will-change:transform}.sb-left .list-group-item{-webkit-box-shadow:inset -10px 0px 5px -5px rgba(0,0,0,0.4);box-shadow:inset -10px 0px 5px -5px rgba(0,0,0,0.4)}.sb-right .list-group-item{-webkit-box-shadow:inset 10px 0px 5px -5px rgba(0,0,0,0.4);box-shadow:inset 10px 0px 5px -5px rgba(0,0,0,0.4)}.mCSB_container,.mCSB_dragger{will-change:top, left}.pf-map-type-private{color:#7986cb}.pf-map-type-corporation{color:#5cb85c}.pf-map-type-alliance{color:#428bca}.pf-map-type-global{color:#568a89}#pf-map-module{margin:20px 10px 0 10px}#pf-map-module #pf-map-tabs .pf-map-type-tab-default{border-top:2px solid transparent}#pf-map-module #pf-map-tabs .pf-map-type-tab-private{border-top:2px solid #7986cb}#pf-map-module #pf-map-tabs .pf-map-type-tab-corporation{border-top:2px solid #5cb85c}#pf-map-module #pf-map-tabs .pf-map-type-tab-alliance{border-top:2px solid #428bca}#pf-map-module #pf-map-tabs .pf-map-type-tab-global{border-top:2px solid #568a89}#pf-map-module #pf-map-tabs .pf-map-tab-icon{margin-right:5px}#pf-map-module #pf-map-tabs .pf-map-tab-shared-icon{margin-left:5px}.pf-map-content-row{margin-top:10px;padding-bottom:40px}.pf-map-content-row .pf-module{font-family:"Oxygen Bold","Helvetica Neue",Helvetica,Arial,sans-serif;background:rgba(60,63,65,0.3);padding:10px;width:100%;margin-bottom:10px;will-change:height, transform, opacity;overflow:hidden;-moz-border-radius:5px;-webkit-border-radius:5px;border-radius:5px}.pf-map-content-row .pf-module:before{content:'';position:absolute;top:0;left:0;border-style:solid;border-width:0 0 6px 6px;border-color:transparent transparent transparent #3c3f41;cursor:pointer}.pf-map-content-row .pf-module .label{margin-bottom:10px}.pf-map-content-row .pf-module .pf-dynamic-area{background:rgba(43,43,43,0.4)}.pf-user-status{color:#a52521}.pf-user-status-corp{color:#5cb85c}.pf-user-status-ally{color:#428bca}.pf-user-status-own{color:#7986cb}.pf-system-effect{display:none;cursor:default;color:#adadad}.pf-system-effect-magnetar{color:#e06fdf;display:inline-block}.pf-system-effect-redgiant{color:#d9534f;display:inline-block}.pf-system-effect-pulsar{color:#428bca;display:inline-block}.pf-system-effect-wolfrayet{color:#e28a0d;display:inline-block}.pf-system-effect-cataclysmic{color:#ffb;display:inline-block}.pf-system-effect-blackhole{color:#000;display:inline-block}.pf-system-info-rally .pf-system-head{background-color:#782d77;background-image:url('data:image/svg+xml;base64,PD94bWwgdmVyc2lvbj0iMS4wIiBlbmNvZGluZz0idXRmLTgiPz4gPHN2ZyB2ZXJzaW9uPSIxLjEiIHhtbG5zPSJodHRwOi8vd3d3LnczLm9yZy8yMDAwL3N2ZyI+PGRlZnM+PGxpbmVhckdyYWRpZW50IGlkPSJncmFkIiBncmFkaWVudFVuaXRzPSJvYmplY3RCb3VuZGluZ0JveCIgeDE9IjEuMCIgeTE9IjEuMCIgeDI9IjAuMCIgeTI9IjAuMCI+PHN0b3Agb2Zmc2V0PSIyNSUiIHN0b3AtY29sb3I9IiMzZTI2NGUiLz48c3RvcCBvZmZzZXQ9IjI1JSIgc3RvcC1jb2xvcj0iIzAwMDAwMCIgc3RvcC1vcGFjaXR5PSIwLjAiLz48c3RvcCBvZmZzZXQ9IjUwJSIgc3RvcC1jb2xvcj0iIzAwMDAwMCIgc3RvcC1vcGFjaXR5PSIwLjAiLz48c3RvcCBvZmZzZXQ9IjUwJSIgc3RvcC1jb2xvcj0iIzNlMjY0ZSIvPjxzdG9wIG9mZnNldD0iNzUlIiBzdG9wLWNvbG9yPSIjM2UyNjRlIi8+PHN0b3Agb2Zmc2V0PSI3NSUiIHN0b3AtY29sb3I9IiMwMDAwMDAiIHN0b3Atb3BhY2l0eT0iMC4wIi8+PHN0b3Agb2Zmc2V0PSIxMDAlIiBzdG9wLWNvbG9yPSIjMDAwMDAwIiBzdG9wLW9wYWNpdHk9IjAuMCIvPjwvbGluZWFyR3JhZGllbnQ+PC9kZWZzPjxyZWN0IHg9IjAiIHk9IjAiIHdpZHRoPSIxMDAlIiBoZWlnaHQ9IjEwMCUiIGZpbGw9InVybCgjZ3JhZCkiIC8+PC9zdmc+IA==');background-size:100%;background-image:-moz-linear-gradient(135deg, #3e264e 25%,rgba(0,0,0,0) 25%,rgba(0,0,0,0) 50%,#3e264e 50%,#3e264e 75%,rgba(0,0,0,0) 75%,rgba(0,0,0,0));background-image:-webkit-linear-gradient(135deg, #3e264e 25%,rgba(0,0,0,0) 25%,rgba(0,0,0,0) 50%,#3e264e 50%,#3e264e 75%,rgba(0,0,0,0) 75%,rgba(0,0,0,0));background-image:linear-gradient(-45deg, #3e264e 25%,rgba(0,0,0,0) 25%,rgba(0,0,0,0) 50%,#3e264e 50%,#3e264e 75%,rgba(0,0,0,0) 75%,rgba(0,0,0,0));background-size:25px 25px;-webkit-animation:move 3s linear infinite;-moz-animation:move 3s linear infinite;-ms-animation:move 3s linear infinite;animation:move 3s linear infinite}.pf-system-security-0-0{color:#be0000}.pf-system-security-0-1{color:#ab2600}.pf-system-security-0-2{color:#be3900}.pf-system-security-0-3{color:#c24e02}.pf-system-security-0-4{color:#ab5f00}.pf-system-security-0-5{color:#bebe00}.pf-system-security-0-6{color:#73bf26}.pf-system-security-0-7{color:#00bf00}.pf-system-security-0-8{color:#00bf39}.pf-system-security-0-9{color:#39bf99}.pf-system-security-1-0{color:#28c0bf}.pf-system-sec{margin-right:5px;cursor:-moz-grab;cursor:-webkit-grab}.pf-system-sec-highSec{color:#5cb85c}.pf-system-sec-lowSec{color:#e28a0d}.pf-system-sec-nullSec{color:#d9534f}.pf-system-sec-high{color:#d9534f}.pf-system-sec-mid{color:#e28a0d}.pf-system-sec-low{color:#428bca}.pf-system-status-friendly{border-color:#428bca !important;color:#428bca}.pf-system-status-occupied{border-color:#e28a0d !important;color:#e28a0d}.pf-system-status-hostile{border-color:#d9534f !important;color:#d9534f}.pf-system-status-empty{border-color:#5cb85c !important;color:#5cb85c}.pf-system-status-unscanned{border-color:#568a89 !important;color:#568a89}.pf-system-info-status-label{background-color:#63676a;color:#000;will-change:background-color;-webkit-transition:background-color 0.5s ease-out;transition:background-color 0.5s ease-out}.pf-system-info-status-label.pf-system-status-friendly{background-color:#428bca}.pf-system-info-status-label.pf-system-status-occupied{background-color:#e28a0d}.pf-system-info-status-label.pf-system-status-hostile{background-color:#d9534f}.pf-system-info-status-label.pf-system-status-empty{background-color:#5cb85c}.pf-system-info-status-label.pf-system-status-unscanned{background-color:#568a89}.pf-system-effect-dialog-wrapper .table,.pf-jump-info-dialog .table{margin:15px 0}.pf-system-effect-dialog-wrapper .table td,.pf-jump-info-dialog .table td{text-transform:capitalize}.pf-fake-connection{box-sizing:content-box;display:inline-block;width:70px;height:4px;margin-right:5px;border-top:2px solid #63676a;border-bottom:2px solid #63676a;background-color:#3c3f41;position:relative;font-family:"Oxygen","Helvetica Neue",Helvetica,Arial,sans-serif}.pf-fake-connection.pf-map-connection-stargate{background-color:#313966;border-color:#63676a}.pf-fake-connection.pf-map-connection-jumpbridge{background-color:#6caead;border-color:#3c3f41;background:repeating-linear-gradient(to right, #6caead, #6caead 10px, #3c3f41 10px, #3c3f41 20px)}.pf-fake-connection.pf-map-connection-wh-eol{border-color:#d747d6}.pf-fake-connection.pf-map-connection-wh-reduced{background-color:#e28a0d}.pf-fake-connection.pf-map-connection-wh-critical{background-color:#a52521}.pf-fake-connection.pf-map-connection-frig{border-style:dashed;border-left:none;border-right:none}.pf-fake-connection.pf-map-connection-frig:after{content:'frig';background-color:#e28a0d;color:#1d1d1d;padding:0px 3px;position:absolute;left:25px;top:-6px;font-family:"Oxygen Bold","Helvetica Neue",Helvetica,Arial,sans-serif;-moz-border-radius:3px;-webkit-border-radius:3px;border-radius:3px}.pf-fake-connection.pf-map-connection-preserve-mass:after{content:'save mass';background-color:#a52521;color:#eaeaea;padding:0px 3px;position:absolute;left:9px;top:-6px;font-family:"Oxygen Bold","Helvetica Neue",Helvetica,Arial,sans-serif;-moz-border-radius:3px;-webkit-border-radius:3px;border-radius:3px}.tooltip-inner{color:#5cb85c;background-color:#3c3f41;font-family:"Oxygen Bold","Helvetica Neue",Helvetica,Arial,sans-serif;padding:5px 5px;-moz-border-radius:3px;-webkit-border-radius:3px;border-radius:3px;-webkit-box-shadow:0 6px 12px rgba(0,0,0,0.4);box-shadow:0 6px 12px rgba(0,0,0,0.4)}.modal .tooltip{z-index:1060}.modal .tooltip .tooltip-inner{color:#313335;background-color:#adadad}.tooltip.top .tooltip-arrow{border-top-color:#63676a}.tooltip.right .tooltip-arrow{border-right-color:#63676a}.tooltip.bottom .tooltip-arrow{border-bottom-color:#63676a}.tooltip.left .tooltip-arrow{border-left-color:#63676a}.popover{z-index:1060}.popover img{-moz-border-radius:5px;-webkit-border-radius:5px;border-radius:5px}.popover h4{color:#adadad}.popover table{color:#adadad;font-family:"Oxygen Bold","Helvetica Neue",Helvetica,Arial,sans-serif;line-height:16px;font-size:11px}.popover table td{padding:0 5px}.pf-dynamic-area{padding:10px;min-height:100px;position:relative;background-color:#313335;overflow:hidden;-moz-border-radius:5px;-webkit-border-radius:5px;border-radius:5px}.pf-dynamic-area .dl-horizontal{margin-bottom:0}.pf-dynamic-area .dl-horizontal dd{min-width:100px}#pf-logo-wrapper{display:block}#pf-head{margin-bottom:0px}#pf-head a{-webkit-transition:color 0.15s ease-out;transition:color 0.15s ease-out;will-change:color}#pf-head a:focus{color:#477372}#pf-head a:focus img{border-color:#3c3f41}#pf-head a:hover{text-decoration:none}#pf-head a:hover .badge{color:#6caead}#pf-head a:hover img{border-color:#568a89}#pf-head i{margin-right:2px}#pf-head .pf-brand-desc{margin:6px 10px 0 90px;width:180px}#pf-head .pf-head-menu{padding:3px 10px;line-height:24px}#pf-head .pf-head-menu .pf-head-menu-logo{width:24px;height:24px;display:inline-block;float:left}#pf-head .badge{background-color:#3c3f41;color:#adadad}#pf-head .pf-head-user-character,#pf-head .pf-head-user-ship{opacity:0;visibility:hidden}#pf-head .pf-head-active-user,#pf-head .pf-head-current-location{display:none}#pf-head .pf-head-active-user .badge,#pf-head .pf-head-current-location .badge{-webkit-transition:color 0.3s ease-out;transition:color 0.3s ease-out}#pf-head .pf-head-user-character-image,#pf-head .pf-head-user-ship-image{display:inline-block;margin-top:-6px;margin-bottom:-6px;width:27px;border:1px solid #3c3f41;margin-right:3px;-webkit-transition:border-color 0.15s ease-out;transition:border-color 0.15s ease-out;will-change:border-color}#pf-head .pf-head-program-status{cursor:pointer}#pf-head .navbar-text{min-width:60px}#pf-head .tooltip .tooltip-inner{color:#adadad}.pf-head{-webkit-box-shadow:0 6px 12px rgba(0,0,0,0.4);box-shadow:0 6px 12px rgba(0,0,0,0.4)}#pf-footer{position:absolute;bottom:0;left:0;width:100%;margin:0;background:rgba(60,63,65,0.3)}#pf-footer a{font-family:"Oxygen Bold","Helvetica Neue",Helvetica,Arial,sans-serif;color:#375959}#pf-footer a:hover{color:#477372;text-decoration:none}@-webkit-keyframes move{0%{background-position:0 0}100%{background-position:50px 50px}}@-moz-keyframes move{0%{background-position:0 0}100%{background-position:50px 50px}}@-ms-keyframes move{0%{background-position:0 0}100%{background-position:50px 50px}}@keyframes move{0%{background-position:0 0}100%{background-position:50px 50px}}.pf-animate{visibility:hidden;opacity:0}.pf-color-line{height:3px;background-image:url('data:image/svg+xml;base64,PD94bWwgdmVyc2lvbj0iMS4wIiBlbmNvZGluZz0idXRmLTgiPz4gPHN2ZyB2ZXJzaW9uPSIxLjEiIHhtbG5zPSJodHRwOi8vd3d3LnczLm9yZy8yMDAwL3N2ZyI+PGRlZnM+PGxpbmVhckdyYWRpZW50IGlkPSJncmFkIiBncmFkaWVudFVuaXRzPSJvYmplY3RCb3VuZGluZ0JveCIgeDE9IjAuMCIgeTE9IjAuNSIgeDI9IjEuMCIgeTI9IjAuNSI+PHN0b3Agb2Zmc2V0PSIwJSIgc3RvcC1jb2xvcj0iIzY2Yzg0ZiIvPjxzdG9wIG9mZnNldD0iMTAwJSIgc3RvcC1jb2xvcj0iIzY2Yzg0ZiIvPjwvbGluZWFyR3JhZGllbnQ+PC9kZWZzPjxyZWN0IHg9IjAiIHk9IjAiIHdpZHRoPSIxMDAlIiBoZWlnaHQ9IjEwMCUiIGZpbGw9InVybCgjZ3JhZCkiIC8+PC9zdmc+IA==');background-size:100%;background-image:-webkit-gradient(linear, 0% 50%, 100% 50%, color-stop(0%, #66c84f),color-stop(100%, #66c84f));background-image:-moz-linear-gradient(left, #66c84f,#66c84f 100%);background-image:-webkit-linear-gradient(left, #66c84f,#66c84f 100%);background-image:linear-gradient(to right, #66c84f,#66c84f 100%)}.pf-splash{position:absolute;z-index:2000;background-color:#1d1d1d;color:#63676a;top:0;bottom:0;left:0;right:0;will-change:opacity}.pf-splash .pf-splash-title{text-align:center;max-width:500px;margin:15% auto;padding:20px}@media (max-width: 1200px){.pf-landing #pf-logo-container{margin:5px auto}.pf-landing .pf-brand-desc{display:none}.pf-landing .navbar .navbar-brand{margin-left:10px}}.pf-landing section{min-height:200px;padding:20px 0 40px 0;border-bottom:1px solid #2b2b2b}.pf-landing section h4{font-size:18px;font-family:"Oxygen","Helvetica Neue",Helvetica,Arial,sans-serif;margin:5px 0 10px 0;border-bottom:1px solid #2b2b2b;line-height:34px}.pf-landing .container>.row{margin-bottom:30px}.pf-landing .alert{box-shadow:0 4px 10px rgba(0,0,0,0.4)}.pf-landing a[data-gallery]{position:relative}.pf-landing a[data-gallery]:before{content:'\f002';font-family:'FontAwesome';font-size:20px;line-height:20px;color:#e28a0d;position:absolute;top:9px;left:8px;height:100%;width:100%;padding-top:calc(50% - 10px);z-index:10;text-align:center;-webkit-transition:transform 0.1s 0.06s ease-in,opacity 0.1s ease-out;transition:transform 0.1s 0.06s ease-in,opacity 0.1s ease-out;will-change:transform, opacity;transform:scale(0, 0);opacity:0}.pf-landing a[data-gallery]:hover img{border-color:#6caead;-webkit-filter:brightness(50%);filter:brightness(50%)}.pf-landing a[data-gallery]:hover:before{-webkit-transition-delay:0.1s;transition-delay:0.1s;transform:scale(1, 1);opacity:1}.pf-landing a[data-gallery] .pf-landing-image-preview{border-width:1px;border-style:solid;border-color:#1d1d1d;margin:5px 0 15px 0;display:inline-block;will-change:all;-webkit-filter:brightness(100%);filter:brightness(100%);-webkit-transition:all 0.2s ease-out;transition:all 0.2s ease-out;-webkit-box-shadow:0 4px 10px rgba(0,0,0,0.4);box-shadow:0 4px 10px rgba(0,0,0,0.4)}.pf-landing a[data-gallery] .pf-landing-image-preview.pf-landing-image-preview-small{height:160px}.pf-landing a[data-gallery] .pf-landing-image-preview.pf-landing-image-preview-medium{height:256px}#pf-landing-top{height:450px;border-bottom:1px solid #313335;position:relative}#pf-landing-top:before{content:'';width:100%;height:100%;position:absolute;background:url("../img/pf-bg.jpg") #05050a;background-repeat:no-repeat;background-position:0 0;-webkit-filter:brightness(0.9);filter:brightness(0.9)}#pf-landing-top.pf-logo-fallback{height:370px}#pf-landing-top.pf-logo-fallback:after{content:'';width:100%;height:100%;position:absolute;background:url("../img/logo_alpha.png");background-repeat:no-repeat;background-position:50% 0;margin-top:50px}#pf-landing-top #pf-header-container{position:absolute;width:100%;background-position:center center}#pf-landing-top #pf-header-container #pf-header-canvas{position:absolute;visibility:hidden;top:0;left:0}#pf-landing-top #pf-header-container #pf-logo-container{z-index:110}#pf-landing-top #pf-header-container #pf-header-preview-container{position:absolute;left:400px;width:590px;height:350px;top:92px}#pf-landing-top #pf-header-container #pf-header-preview-container .pf-header-preview-element{position:relative;margin-left:12px;margin-top:12px;height:155px;width:180px;padding:7px;opacity:0;will-change:opacity, transform;-moz-border-radius:5px;-webkit-border-radius:5px;border-radius:5px;background-color:rgba(43,43,43,0.5)}#pf-landing-top #pf-header-container #pf-header-preview-container .pf-header-preview-element:nth-child(n+4){box-shadow:0 4px 10px rgba(0,0,0,0.4)}#pf-landing-top #pf-header-container #pf-header-preview-container .pf-header-preview-element:after{content:'';position:absolute;width:calc(100% - 14px);height:calc(100% - 14px);-moz-border-radius:3px;-webkit-border-radius:3px;border-radius:3px;background-repeat:no-repeat;background-position:50% 50%;background-color:rgba(29,29,29,0.75)}#pf-landing-top .container{position:relative;margin-top:50px}#pf-header-preview-intel:after{background-image:url("../img/landing/intel.png")}#pf-header-preview-map:after{background-image:url("../img/landing/map.png")}#pf-header-preview-scope:after{background-image:url("../img/landing/scope.png")}#pf-header-preview-signature:after{background-image:url("../img/landing/signature.png")}#pf-header-preview-data:after{background-image:url("../img/landing/data.png")}#pf-header-preview-gameplay:after{background-image:url("../img/landing/gameplay.png")}#pf-landing-login{padding-top:40px}#pf-landing-login .row{margin-bottom:0px}#pf-header-map{position:relative;margin:0 auto;height:380px;width:600px;pointer-events:none}#pf-header-map .pf-header-svg-layer{position:absolute;top:0;left:0;right:0;bottom:0}#pf-header-map #pf-header-systems{z-index:100}#pf-header-map #pf-header-connectors{z-index:90}#pf-header-map #pf-header-connections{z-index:80}#pf-header-map #pf-header-background{z-index:70}#pf-header-map #pf-header-background .pf-header-system{display:none}#pf-header-map-bg{position:absolute;left:0;top:0;width:100%;height:100%;pointer-events:none}#pf-header-map-bg img{pointer-events:none}#pf-header-map-bg #pf-map-bg-image{opacity:0;position:absolute;bottom:0;right:0;width:100%;height:100%}#pf-header-map-bg #pf-map-neocom{opacity:0;height:665px;width:21px}#pf-header-map-bg #pf-map-browser{opacity:0;position:absolute;top:110px;left:21px;height:560px;width:515px}#pf-landing-gallery-carousel{background-image:url("../img/pf-header-bg.jpg")}#pf-landing-gallery-carousel .slide-content{border-radius:5px}#pf-landing-gallery-carousel h3{width:100%;text-align:left}.pf-landing-pricing-panel{margin-top:20px}.pricing-big{-webkit-box-shadow:0 4px 10px rgba(0,0,0,0.4);box-shadow:0 4px 10px rgba(0,0,0,0.4)}.pricing-big .panel-heading{border-color:#3c3f41}.pricing-big .the-price{padding:1px 0;background:#2d3031;text-align:center}.pricing-big .the-price .subscript{font-size:12px;color:#63676a}.pricing-big .price-features{background:#3c3f41;color:#adadad;padding:20px 15px;min-height:205px;line-height:22px}#pf-landing-about .pf-landing-about-me{width:256px;height:256px;border:none;-webkit-box-shadow:0 4px 10px rgba(0,0,0,0.4);box-shadow:0 4px 10px rgba(0,0,0,0.4)}.pf-landing-footer{padding:30px 0;font-family:"Oxygen Bold","Helvetica Neue",Helvetica,Arial,sans-serif;background-color:#171717}.pf-landing-footer .pf-social-networks>li{display:inline-block;line-height:1}.pf-landing-footer .pf-social-networks>li a{display:inline-block;background:rgba(99,103,106,0.5);line-height:24px;text-align:center;font-size:12px;margin-right:5px;width:28px;height:24px}#pf-static-logo-svg{opacity:0;position:absolute;z-index:105;overflow:visible}#pf-static-logo-svg path{will-change:fill, opacity, transform, translateZ, translateX, translateY;pointer-events:all;-moz-transform:translate3d(0, 0, 0);-ms-transform:translate3d(0, 0, 0);-webkit-transform:translate3d(0, 0, 0);transform:translate3d(0, 0, 0)}.logo-ploygon-top-right{fill:#477372;fill-rule:evenodd;stroke:#477372;stroke-width:0px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1;fill-opacity:1}.logo-ploygon-bottom-left{fill:#5cb85c;fill-rule:evenodd;stroke:#5cb85c;stroke-width:0px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1;fill-opacity:1}.logo-ploygon-bottom-right{fill:#375959;fill-rule:evenodd;stroke:#375959;stroke-width:0px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1;fill-opacity:1}.logo-ploygon-top-left{fill:#63676a;fill-opacity:1;fill-rule:evenodd;stroke:#63676a;stroke-width:0px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1}@-webkit-keyframes bounce{0%, 20%, 50%, 80%, 100%{-webkit-transform:translateY(0)}40%{-webkit-transform:translateY(-8px)}60%{-webkit-transform:translateY(-4px)}}@keyframes bounce{0%, 20%, 50%, 80%, 100%{transform:translateY(0)}40%{transform:translateY(-8px)}60%{transform:translateY(-4px)}}#pf-map-tab-element{max-width:2515px;margin:0 auto}.pf-map-tab-content .pf-map-wrapper{position:relative;width:100%;max-width:2515px;height:550px;overflow:auto;padding:5px;background:rgba(43,43,43,0.93);box-shadow:inset -3px 3px 10px 0 rgba(0,0,0,0.3);border-bottom-right-radius:5px;border-bottom-left-radius:5px;border-width:1px;border-style:solid;border-color:#313335}.pf-map-overlay{position:absolute;display:none;z-index:10000;height:36px;right:10px;background:rgba(0,0,0,0.25);-moz-border-radius:5px;-webkit-border-radius:5px;border-radius:5px}.pf-map-overlay.pf-map-overlay-timer{width:36px;bottom:23px}.pf-map-overlay.pf-map-overlay-info{top:8px;color:#2b2b2b;padding:3px;line-height:26px;min-height:36px;min-width:36px}.pf-map-overlay.pf-map-overlay-info i{display:none;margin:2px;width:26px;height:26px;opacity:0.8;color:#c2760c}.pf-map-overlay.pf-map-overlay-info i.fa,.pf-map-overlay.pf-map-overlay-info .pf-landing .pf-landing-list li i,.pf-landing .pf-landing-list li .pf-map-overlay.pf-map-overlay-info i{font-size:26px}.pf-map-overlay.pf-map-overlay-info i.glyphicon{margin-left:4px;font-size:25px}.pf-grid-small{background:url('data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAACgAAAAoCAYAAACM/rhtAAAACXBIWXMAAAsTAAALEwEAmpwYAAAKT2lDQ1BQaG90b3Nob3AgSUNDIHByb2ZpbGUAAHjanVNnVFPpFj333vRCS4iAlEtvUhUIIFJCi4AUkSYqIQkQSoghodkVUcERRUUEG8igiAOOjoCMFVEsDIoK2AfkIaKOg6OIisr74Xuja9a89+bN/rXXPues852zzwfACAyWSDNRNYAMqUIeEeCDx8TG4eQuQIEKJHAAEAizZCFz/SMBAPh+PDwrIsAHvgABeNMLCADATZvAMByH/w/qQplcAYCEAcB0kThLCIAUAEB6jkKmAEBGAYCdmCZTAKAEAGDLY2LjAFAtAGAnf+bTAICd+Jl7AQBblCEVAaCRACATZYhEAGg7AKzPVopFAFgwABRmS8Q5ANgtADBJV2ZIALC3AMDOEAuyAAgMADBRiIUpAAR7AGDIIyN4AISZABRG8lc88SuuEOcqAAB4mbI8uSQ5RYFbCC1xB1dXLh4ozkkXKxQ2YQJhmkAuwnmZGTKBNA/g88wAAKCRFRHgg/P9eM4Ors7ONo62Dl8t6r8G/yJiYuP+5c+rcEAAAOF0ftH+LC+zGoA7BoBt/qIl7gRoXgugdfeLZrIPQLUAoOnaV/Nw+H48PEWhkLnZ2eXk5NhKxEJbYcpXff5nwl/AV/1s+X48/Pf14L7iJIEyXYFHBPjgwsz0TKUcz5IJhGLc5o9H/LcL//wd0yLESWK5WCoU41EScY5EmozzMqUiiUKSKcUl0v9k4t8s+wM+3zUAsGo+AXuRLahdYwP2SycQWHTA4vcAAPK7b8HUKAgDgGiD4c93/+8//UegJQCAZkmScQAAXkQkLlTKsz/HCAAARKCBKrBBG/TBGCzABhzBBdzBC/xgNoRCJMTCQhBCCmSAHHJgKayCQiiGzbAdKmAv1EAdNMBRaIaTcA4uwlW4Dj1wD/phCJ7BKLyBCQRByAgTYSHaiAFiilgjjggXmYX4IcFIBBKLJCDJiBRRIkuRNUgxUopUIFVIHfI9cgI5h1xGupE7yAAygvyGvEcxlIGyUT3UDLVDuag3GoRGogvQZHQxmo8WoJvQcrQaPYw2oefQq2gP2o8+Q8cwwOgYBzPEbDAuxsNCsTgsCZNjy7EirAyrxhqwVqwDu4n1Y8+xdwQSgUXACTYEd0IgYR5BSFhMWE7YSKggHCQ0EdoJNwkDhFHCJyKTqEu0JroR+cQYYjIxh1hILCPWEo8TLxB7iEPENyQSiUMyJ7mQAkmxpFTSEtJG0m5SI+ksqZs0SBojk8naZGuyBzmULCAryIXkneTD5DPkG+Qh8lsKnWJAcaT4U+IoUspqShnlEOU05QZlmDJBVaOaUt2ooVQRNY9aQq2htlKvUYeoEzR1mjnNgxZJS6WtopXTGmgXaPdpr+h0uhHdlR5Ol9BX0svpR+iX6AP0dwwNhhWDx4hnKBmbGAcYZxl3GK+YTKYZ04sZx1QwNzHrmOeZD5lvVVgqtip8FZHKCpVKlSaVGyovVKmqpqreqgtV81XLVI+pXlN9rkZVM1PjqQnUlqtVqp1Q61MbU2epO6iHqmeob1Q/pH5Z/YkGWcNMw09DpFGgsV/jvMYgC2MZs3gsIWsNq4Z1gTXEJrHN2Xx2KruY/R27iz2qqaE5QzNKM1ezUvOUZj8H45hx+Jx0TgnnKKeX836K3hTvKeIpG6Y0TLkxZVxrqpaXllirSKtRq0frvTau7aedpr1Fu1n7gQ5Bx0onXCdHZ4/OBZ3nU9lT3acKpxZNPTr1ri6qa6UbobtEd79up+6Ynr5egJ5Mb6feeb3n+hx9L/1U/W36p/VHDFgGswwkBtsMzhg8xTVxbzwdL8fb8VFDXcNAQ6VhlWGX4YSRudE8o9VGjUYPjGnGXOMk423GbcajJgYmISZLTepN7ppSTbmmKaY7TDtMx83MzaLN1pk1mz0x1zLnm+eb15vft2BaeFostqi2uGVJsuRaplnutrxuhVo5WaVYVVpds0atna0l1rutu6cRp7lOk06rntZnw7Dxtsm2qbcZsOXYBtuutm22fWFnYhdnt8Wuw+6TvZN9un2N/T0HDYfZDqsdWh1+c7RyFDpWOt6azpzuP33F9JbpL2dYzxDP2DPjthPLKcRpnVOb00dnF2e5c4PziIuJS4LLLpc+Lpsbxt3IveRKdPVxXeF60vWdm7Obwu2o26/uNu5p7ofcn8w0nymeWTNz0MPIQ+BR5dE/C5+VMGvfrH5PQ0+BZ7XnIy9jL5FXrdewt6V3qvdh7xc+9j5yn+M+4zw33jLeWV/MN8C3yLfLT8Nvnl+F30N/I/9k/3r/0QCngCUBZwOJgUGBWwL7+Hp8Ib+OPzrbZfay2e1BjKC5QRVBj4KtguXBrSFoyOyQrSH355jOkc5pDoVQfujW0Adh5mGLw34MJ4WHhVeGP45wiFga0TGXNXfR3ENz30T6RJZE3ptnMU85ry1KNSo+qi5qPNo3ujS6P8YuZlnM1VidWElsSxw5LiquNm5svt/87fOH4p3iC+N7F5gvyF1weaHOwvSFpxapLhIsOpZATIhOOJTwQRAqqBaMJfITdyWOCnnCHcJnIi/RNtGI2ENcKh5O8kgqTXqS7JG8NXkkxTOlLOW5hCepkLxMDUzdmzqeFpp2IG0yPTq9MYOSkZBxQqohTZO2Z+pn5mZ2y6xlhbL+xW6Lty8elQfJa7OQrAVZLQq2QqboVFoo1yoHsmdlV2a/zYnKOZarnivN7cyzytuQN5zvn//tEsIS4ZK2pYZLVy0dWOa9rGo5sjxxedsK4xUFK4ZWBqw8uIq2Km3VT6vtV5eufr0mek1rgV7ByoLBtQFr6wtVCuWFfevc1+1dT1gvWd+1YfqGnRs+FYmKrhTbF5cVf9go3HjlG4dvyr+Z3JS0qavEuWTPZtJm6ebeLZ5bDpaql+aXDm4N2dq0Dd9WtO319kXbL5fNKNu7g7ZDuaO/PLi8ZafJzs07P1SkVPRU+lQ27tLdtWHX+G7R7ht7vPY07NXbW7z3/T7JvttVAVVN1WbVZftJ+7P3P66Jqun4lvttXa1ObXHtxwPSA/0HIw6217nU1R3SPVRSj9Yr60cOxx++/p3vdy0NNg1VjZzG4iNwRHnk6fcJ3/ceDTradox7rOEH0x92HWcdL2pCmvKaRptTmvtbYlu6T8w+0dbq3nr8R9sfD5w0PFl5SvNUyWna6YLTk2fyz4ydlZ19fi753GDborZ752PO32oPb++6EHTh0kX/i+c7vDvOXPK4dPKy2+UTV7hXmq86X23qdOo8/pPTT8e7nLuarrlca7nuer21e2b36RueN87d9L158Rb/1tWeOT3dvfN6b/fF9/XfFt1+cif9zsu72Xcn7q28T7xf9EDtQdlD3YfVP1v+3Njv3H9qwHeg89HcR/cGhYPP/pH1jw9DBY+Zj8uGDYbrnjg+OTniP3L96fynQ89kzyaeF/6i/suuFxYvfvjV69fO0ZjRoZfyl5O/bXyl/erA6xmv28bCxh6+yXgzMV70VvvtwXfcdx3vo98PT+R8IH8o/2j5sfVT0Kf7kxmTk/8EA5jz/GMzLdsAAAAgY0hSTQAAeiUAAICDAAD5/wAAgOkAAHUwAADqYAAAOpgAABdvkl/FRgAAAG1JREFUeNrs18EJgDAQRNGJpoQQSC+CWMSWEwhYrCAWYRNz2MP/BQzvOiUi5Op5vzl6u+VrbUoeQIAAAQIECBAgQICpK8d5zay40dtenR+CTwIQIECAAAECBAgQYLaqpGX8EHLuSdIPAAD//wMAuMQN2uF+ypQAAAAASUVORK5CYII=') !important}.pf-map{width:2500px;height:520px;position:relative;font-family:"Oxygen Bold","Helvetica Neue",Helvetica,Arial,sans-serif}.pf-map ._jsPlumb_overlay{opacity:1;pointer-events:none;will-change:opacity;-webkit-transition:opacity 0.18s ease-out;transition:opacity 0.18s ease-out}.pf-map ._jsPlumb_hover._jsPlumb_overlay{opacity:0 !important}.pf-map ._jsPlumb_hover:not(._jsPlumb_overlay){-webkit-animation-duration:1s;animation-duration:1s;-webkit-animation-delay:0.5s;animation-delay:0.5s;-webkit-animation-fill-mode:both;animation-fill-mode:both;-webkit-animation-timing-function:linear;animation-timing-function:linear;animation-iteration-count:infinite;-webkit-animation-iteration-count:infinite;-webkit-animation-name:bounce;animation-name:bounce}.pf-map ._jsPlumb_target_hover,.pf-map ._jsPlumb_source_hover{-webkit-animation-duration:1s;animation-duration:1s;-webkit-animation-delay:0.5s;animation-delay:0.5s;-webkit-animation-fill-mode:both;animation-fill-mode:both;-webkit-animation-timing-function:linear;animation-timing-function:linear;animation-iteration-count:infinite;-webkit-animation-iteration-count:infinite;-webkit-animation-name:bounce;animation-name:bounce;-webkit-box-shadow:0 6px 12px rgba(0,0,0,0.3);box-shadow:0 6px 12px rgba(0,0,0,0.3)}.pf-map .pf-system{position:absolute;min-width:60px;height:auto;overflow:hidden;background-color:#313335;font-family:"Oxygen Bold","Helvetica Neue",Helvetica,Arial,sans-serif;z-index:100;will-change:top, left, opacity, transform;border-width:2px;border-style:solid;border-color:#63676a;-moz-border-radius:5px;-webkit-border-radius:5px;border-radius:5px;-webkit-transition:border-color 0.5s ease-out,box-shadow 0.2s ease-out;transition:border-color 0.5s ease-out,box-shadow 0.2s ease-out;-moz-transform:translate3d(0, 0, 0);-ms-transform:translate3d(0, 0, 0);-webkit-transform:translate3d(0, 0, 0);transform:translate3d(0, 0, 0)}.pf-map .pf-system:hover{-webkit-box-shadow:0 6px 12px rgba(0,0,0,0.3);box-shadow:0 6px 12px rgba(0,0,0,0.3);-moz-transform:translate3d(0, -2px, 0);-ms-transform:translate3d(0, -2px, 0);-webkit-transform:translate3d(0, -2px, 0);transform:translate3d(0, -2px, 0)}.pf-map .pf-system .pf-system-head{padding:0px 3px 0px 3px;cursor:pointer;font-family:Arial;font-weight:bold}.pf-map .pf-system .pf-system-head .pf-system-head-name{border:none;display:inline-block;min-width:41px;color:#adadad;margin-right:2px}.pf-map .pf-system .pf-system-head .fa-lock{display:none}.pf-map .pf-system .pf-system-head .pf-system-head-expand{margin-left:2px;color:#63676a;display:none}.pf-map .pf-system .pf-system-head .editable-empty{font-style:normal}.pf-map .pf-system .pf-system-body{height:0px;width:100%;overflow:hidden;cursor:-moz-grab;cursor:-webkit-grab;cursor:grab;padding:0 4px;white-space:nowrap;display:none;will-change:width;border-top-width:1px;border-top-style:dashed;border-top-color:#63676a}.pf-map .pf-system .pf-system-body .pf-system-body-item{color:#63676a;font-size:10px}.pf-map .pf-system .pf-system-body .pf-system-body-item .pf-system-body-right{text-overflow:ellipsis;float:right;color:#f0ad4e;display:none}.pf-map .pf-system .pf-system-body .pf-system-body-item .pf-user-status{font-size:7px;width:10px}.pf-map .pf-system .pf-system-body .pf-system-body-item .pf-system-body-item-name{display:inline-block;width:65px;overflow:hidden;height:11px;white-space:nowrap;text-overflow:ellipsis}.pf-map .pf-system .tooltip.in{opacity:1}.pf-map .pf-system .tooltip .tooltip-inner{color:#313335;background-color:#adadad;padding:3px 3px}.pf-map .pf-system-active:not(.pf-map-endpoint-source):not(.pf-map-endpoint-target){-webkit-box-shadow:#ffb 0px 0px 8px 0px;box-shadow:#ffb 0px 0px 8px 0px}.pf-map .pf-system-selected:not(.pf-map-endpoint-source):not(.pf-map-endpoint-target),.pf-map .jsPlumb_dragged:not(.pf-map-endpoint-source):not(.pf-map-endpoint-target){-webkit-box-shadow:#58100d 0px 0px 8px 0px;box-shadow:#58100d 0px 0px 8px 0px}.pf-map .pf-system-selected:not(.pf-map-endpoint-source):not(.pf-map-endpoint-target) .pf-system-head,.pf-map .jsPlumb_dragged:not(.pf-map-endpoint-source):not(.pf-map-endpoint-target) .pf-system-head,.pf-map .pf-system-selected:not(.pf-map-endpoint-source):not(.pf-map-endpoint-target) .pf-system-body,.pf-map .jsPlumb_dragged:not(.pf-map-endpoint-source):not(.pf-map-endpoint-target) .pf-system-body{background-color:#58100d}.pf-map .pf-system-locked .pf-system-sec{cursor:default !important}.pf-map .pf-system-locked .pf-system-body{cursor:default !important}.pf-map .pf-system-locked .fa-lock{color:#63676a !important;display:inline-block !important}.pf-map .pf-map-endpoint-source,.pf-map .pf-map-endpoint-target{z-index:90}.pf-map .pf-map-endpoint-source svg,.pf-map .pf-map-endpoint-target svg{overflow:visible}.pf-map .pf-map-endpoint-source svg circle,.pf-map .pf-map-endpoint-target svg circle{-webkit-transition:stroke 0.18s ease-out,fill 0.18s ease-out;transition:stroke 0.18s ease-out,fill 0.18s ease-out}.pf-map .pf-map-endpoint-source svg *,.pf-map .pf-map-endpoint-target svg *{stroke:#63676a;stroke-width:2;fill:#3c3f41;cursor:pointer}.pf-map .pf-map-endpoint-source:hover circle,.pf-map .pf-map-endpoint-target:hover circle{stroke:#e28a0d !important}.pf-map .pf-map-endpoint-source._jsPlumb_hover,.pf-map .pf-map-endpoint-target._jsPlumb_hover{z-index:95}.pf-map .pf-map-endpoint-source._jsPlumb_dragging circle,.pf-map .pf-map-endpoint-target._jsPlumb_dragging circle{stroke:#e28a0d}.pf-map ._jsPlumb_endpoint_drop_allowed circle{stroke:#5cb85c !important;fill:#5cb85c !important}.pf-map ._jsPlumb_endpoint_drop_forbidden circle{stroke:#a52521 !important;fill:#a52521 !important}.pf-map svg._jsPlumb_connector{cursor:pointer;stroke-linecap:round;-webkit-transition:stroke 0.18s ease-out;transition:stroke 0.18s ease-out;will-change:all}.pf-map svg._jsPlumb_connector path{-webkit-transition:stroke 0.18s ease-out;transition:stroke 0.18s ease-out}.pf-map svg._jsPlumb_connector path:not(:first-child){stroke:#3c3f41}.pf-map svg._jsPlumb_connector path:first-child{stroke:#63676a}.pf-map svg._jsPlumb_connector._jsPlumb_hover{z-index:80}.pf-map svg._jsPlumb_connector._jsPlumb_hover path:first-child{stroke:#eaeaea}.pf-map svg._jsPlumb_connector._jsPlumb_dragging{-webkit-transition:opacity 0.18s ease-out;transition:opacity 0.18s ease-out;opacity:0.4;z-index:80}.pf-map svg.pf-map-connection-jumpbridge{z-index:50}.pf-map svg.pf-map-connection-jumpbridge path:first-child{stroke:rgba(255,255,255,0)}.pf-map svg.pf-map-connection-jumpbridge path:not(:first-child){stroke:#568a89}.pf-map svg.pf-map-connection-jumpbridge:hover path:first-child{stroke:rgba(255,255,255,0)}.pf-map svg.pf-map-connection-jumpbridge:hover path:not(:first-child){stroke:#eaeaea}.pf-map svg.pf-map-connection-stargate{z-index:60}.pf-map svg.pf-map-connection-stargate path:first-child{stroke:#63676a}.pf-map svg.pf-map-connection-stargate path:not(:first-child){stroke:#313966}.pf-map svg.pf-map-connection-stargate:hover path:first-child{stroke:#eaeaea}.pf-map svg.pf-map-connection-wh-fresh,.pf-map svg.pf-map-connection-wh-reduced,.pf-map svg.pf-map-connection-wh-critical,.pf-map svg.pf-map-connection-wh-eol{z-index:70}.pf-map svg.pf-map-connection-wh-eol path:first-child{stroke:#d747d6}.pf-map svg.pf-map-connection-wh-eol:hover path:first-child{stroke:#eaeaea}.pf-map svg.pf-map-connection-wh-reduced path:not(:first-child){stroke:#e28a0d}.pf-map svg.pf-map-connection-wh-critical path:not(:first-child){stroke:#a52521}.pf-map .pf-map-connection-overlay{padding:1px 4px;font-size:11px;z-index:1020;-moz-border-radius:8px;-webkit-border-radius:8px;border-radius:8px;-webkit-box-shadow:0 6px 12px rgba(0,0,0,0.4);box-shadow:0 6px 12px rgba(0,0,0,0.4)}.pf-map .frig{background-color:#f0ad4e;color:#1d1d1d}.pf-map .mass{background-color:#a52521;color:#eaeaea}.ui-dialog-content label{min-width:60px}.dropdown-menu{font-family:"Oxygen Bold","Helvetica Neue",Helvetica,Arial,sans-serif;z-index:1020;will-change:opacity, top, left, transform}.dropdown-menu i{width:20px}.pf-system-tooltip-inner{color:#adadad;padding:2px 4px;min-width:25px;-webkit-transition:color 0.2s ease-out;transition:color 0.2s ease-out}.pf-system-info-popover{display:initial}.pf-system-info-popover img{width:39px}.pf-system-info-popover h6{white-space:nowrap;margin-right:50px}.pf-system-info-popover h6:before,.pf-system-info-popover h6:after{content:" ";display:table}.pf-system-info-popover h6:after{clear:both}.pf-system-info-popover .well{margin-top:7px;margin-bottom:10px}.pf-system-info-module h5{text-transform:capitalize}.pf-system-info-module .pf-system-info-description-area{min-height:123px}.pf-system-info-module .pf-system-info-description-area .pf-system-info-description{width:330px}.pf-system-info-module .pf-system-info-table{font-size:11px;white-space:nowrap}.pf-sig-table-module .pf-sig-table-clear-button{will-change:opacity, transform;display:none}.pf-sig-table-module .pf-sig-table{font-size:10px}.pf-sig-table-module .pf-sig-table .pf-sig-table-edit-desc-text{white-space:normal}.pf-sig-table-module .pf-sig-table .pf-sig-table-edit-desc-text.editable-empty{border-bottom:none}.pf-sig-table-module .pf-sig-table .pf-editable-description{background-color:#2b2b2b;max-height:50px}.pf-sig-table-module .pf-sig-table .pf-sig-table-edit-name-input{text-transform:uppercase}.pf-system-graph-module .pf-system-graph{width:100%;height:100px}.pf-system-route-module .pf-system-route-table{width:100%;font-size:11px}.pf-system-route-module .pf-system-route-table td{text-transform:capitalize}.pf-system-route-module .pf-system-route-table td>.fa,.pf-system-route-module .pf-system-route-table .pf-landing .pf-landing-list li td>i,.pf-landing .pf-landing-list li .pf-system-route-module .pf-system-route-table td>i{font-size:10px}.pf-system-killboard-module .pf-system-killboard-graph-kills{width:100%;height:100px;position:relative;margin-bottom:30px}.pf-system-killboard-module .pf-system-killboard-list{padding-bottom:10px;border-bottom:1px solid #2b2b2b}.pf-system-killboard-module .pf-system-killboard-list li{margin-left:0;overflow:visible;min-height:50px;will-change:margin-left;-webkit-transition:margin-left 0.12s cubic-bezier(0.3, 0.8, 0.8, 1.7);transition:margin-left 0.12s cubic-bezier(0.3, 0.8, 0.8, 1.7)}.pf-system-killboard-module .pf-system-killboard-list li h5{white-space:nowrap}.pf-system-killboard-module .pf-system-killboard-list li h3{width:120px;display:inline-block}.pf-system-killboard-module .pf-system-killboard-list li .pf-system-killboard-img-corp{margin-right:10px;width:16px}.pf-system-killboard-module .pf-system-killboard-list li .pf-system-killboard-img-ship{width:50px;margin-right:10px;border:1px solid #2b2b2b;transform:translateZ(1px);will-change:border-color;-moz-border-radius:25px;-webkit-border-radius:25px;border-radius:25px;-webkit-transition:border-color 0.12s ease-out;transition:border-color 0.12s ease-out}.pf-system-killboard-module .pf-system-killboard-list li:before{content:"\f054";font-family:FontAwesome;position:absolute;z-index:10;left:-25px;top:15px;color:#477372;opacity:0;will-change:opacity, left;-webkit-transition:all 0.12s ease-out;transition:all 0.12s ease-out}.pf-system-killboard-module .pf-system-killboard-list li:hover{margin-left:20px}.pf-system-killboard-module .pf-system-killboard-list li:hover .pf-system-killboard-img-ship{border-color:#568a89}.pf-system-killboard-module .pf-system-killboard-list li:hover:before{opacity:1;left:-20px}input,select{background-color:#313335;color:#adadad;border:1px solid #63676a;font-family:"Oxygen Bold","Helvetica Neue",Helvetica,Arial,sans-serif}input:focus,select:focus{border-color:#568a89}input:-webkit-autofill,select:-webkit-autofill{background-color:#313335 !important;-webkit-box-shadow:0 0 0 50px #313335 inset !important;box-shadow:0 0 0 50px #313335 inset !important;-webkit-text-fill-color:#adadad}input:-webkit-autofill:focus,select:-webkit-autofill:focus{-webkit-box-shadow:0 0 0 50px #313335 inset !important;box-shadow:0 0 0 50px #313335 inset !important;-webkit-text-fill-color:#adadad}input::-webkit-file-upload-button,select::-webkit-file-upload-button{background-color:transparent;border:none;color:#63676a;outline:none}.pf-form-dropzone{border:2px dashed #2b2b2b;height:100px;background-color:#353739;text-align:center;font-size:20px;line-height:100px;margin:15px 0;color:#2b2b2b;-moz-border-radius:10px;-webkit-border-radius:10px;border-radius:10px;-webkit-transition:color 0.18s ease-out,border-color 0.18s ease-out;transition:color 0.18s ease-out,border-color 0.18s ease-out}.pf-form-dropzone:hover{color:#568a89;border-color:#568a89;cursor:-moz-grabbing;cursor:-webkit-grabbing;cursor:grabbing}.toggle.btn:active,button.toggle.DTTT_button:active,div.toggle.DTTT_button:active,a.toggle.DTTT_button:active{box-shadow:none}.toggle .toggle-group .btn,.toggle .toggle-group button.DTTT_button,.toggle .toggle-group div.DTTT_button,.toggle .toggle-group a.DTTT_button{padding:0px 5px}.pf-icon{display:inline-block}.pf-icon-dotlan{background:url('data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAABEAAAARCAYAAAA7bUf6AAAACXBIWXMAAAsTAAALEwEAmpwYAAAKT2lDQ1BQaG90b3Nob3AgSUNDIHByb2ZpbGUAAHjanVNnVFPpFj333vRCS4iAlEtvUhUIIFJCi4AUkSYqIQkQSoghodkVUcERRUUEG8igiAOOjoCMFVEsDIoK2AfkIaKOg6OIisr74Xuja9a89+bN/rXXPues852zzwfACAyWSDNRNYAMqUIeEeCDx8TG4eQuQIEKJHAAEAizZCFz/SMBAPh+PDwrIsAHvgABeNMLCADATZvAMByH/w/qQplcAYCEAcB0kThLCIAUAEB6jkKmAEBGAYCdmCZTAKAEAGDLY2LjAFAtAGAnf+bTAICd+Jl7AQBblCEVAaCRACATZYhEAGg7AKzPVopFAFgwABRmS8Q5ANgtADBJV2ZIALC3AMDOEAuyAAgMADBRiIUpAAR7AGDIIyN4AISZABRG8lc88SuuEOcqAAB4mbI8uSQ5RYFbCC1xB1dXLh4ozkkXKxQ2YQJhmkAuwnmZGTKBNA/g88wAAKCRFRHgg/P9eM4Ors7ONo62Dl8t6r8G/yJiYuP+5c+rcEAAAOF0ftH+LC+zGoA7BoBt/qIl7gRoXgugdfeLZrIPQLUAoOnaV/Nw+H48PEWhkLnZ2eXk5NhKxEJbYcpXff5nwl/AV/1s+X48/Pf14L7iJIEyXYFHBPjgwsz0TKUcz5IJhGLc5o9H/LcL//wd0yLESWK5WCoU41EScY5EmozzMqUiiUKSKcUl0v9k4t8s+wM+3zUAsGo+AXuRLahdYwP2SycQWHTA4vcAAPK7b8HUKAgDgGiD4c93/+8//UegJQCAZkmScQAAXkQkLlTKsz/HCAAARKCBKrBBG/TBGCzABhzBBdzBC/xgNoRCJMTCQhBCCmSAHHJgKayCQiiGzbAdKmAv1EAdNMBRaIaTcA4uwlW4Dj1wD/phCJ7BKLyBCQRByAgTYSHaiAFiilgjjggXmYX4IcFIBBKLJCDJiBRRIkuRNUgxUopUIFVIHfI9cgI5h1xGupE7yAAygvyGvEcxlIGyUT3UDLVDuag3GoRGogvQZHQxmo8WoJvQcrQaPYw2oefQq2gP2o8+Q8cwwOgYBzPEbDAuxsNCsTgsCZNjy7EirAyrxhqwVqwDu4n1Y8+xdwQSgUXACTYEd0IgYR5BSFhMWE7YSKggHCQ0EdoJNwkDhFHCJyKTqEu0JroR+cQYYjIxh1hILCPWEo8TLxB7iEPENyQSiUMyJ7mQAkmxpFTSEtJG0m5SI+ksqZs0SBojk8naZGuyBzmULCAryIXkneTD5DPkG+Qh8lsKnWJAcaT4U+IoUspqShnlEOU05QZlmDJBVaOaUt2ooVQRNY9aQq2htlKvUYeoEzR1mjnNgxZJS6WtopXTGmgXaPdpr+h0uhHdlR5Ol9BX0svpR+iX6AP0dwwNhhWDx4hnKBmbGAcYZxl3GK+YTKYZ04sZx1QwNzHrmOeZD5lvVVgqtip8FZHKCpVKlSaVGyovVKmqpqreqgtV81XLVI+pXlN9rkZVM1PjqQnUlqtVqp1Q61MbU2epO6iHqmeob1Q/pH5Z/YkGWcNMw09DpFGgsV/jvMYgC2MZs3gsIWsNq4Z1gTXEJrHN2Xx2KruY/R27iz2qqaE5QzNKM1ezUvOUZj8H45hx+Jx0TgnnKKeX836K3hTvKeIpG6Y0TLkxZVxrqpaXllirSKtRq0frvTau7aedpr1Fu1n7gQ5Bx0onXCdHZ4/OBZ3nU9lT3acKpxZNPTr1ri6qa6UbobtEd79up+6Ynr5egJ5Mb6feeb3n+hx9L/1U/W36p/VHDFgGswwkBtsMzhg8xTVxbzwdL8fb8VFDXcNAQ6VhlWGX4YSRudE8o9VGjUYPjGnGXOMk423GbcajJgYmISZLTepN7ppSTbmmKaY7TDtMx83MzaLN1pk1mz0x1zLnm+eb15vft2BaeFostqi2uGVJsuRaplnutrxuhVo5WaVYVVpds0atna0l1rutu6cRp7lOk06rntZnw7Dxtsm2qbcZsOXYBtuutm22fWFnYhdnt8Wuw+6TvZN9un2N/T0HDYfZDqsdWh1+c7RyFDpWOt6azpzuP33F9JbpL2dYzxDP2DPjthPLKcRpnVOb00dnF2e5c4PziIuJS4LLLpc+Lpsbxt3IveRKdPVxXeF60vWdm7Obwu2o26/uNu5p7ofcn8w0nymeWTNz0MPIQ+BR5dE/C5+VMGvfrH5PQ0+BZ7XnIy9jL5FXrdewt6V3qvdh7xc+9j5yn+M+4zw33jLeWV/MN8C3yLfLT8Nvnl+F30N/I/9k/3r/0QCngCUBZwOJgUGBWwL7+Hp8Ib+OPzrbZfay2e1BjKC5QRVBj4KtguXBrSFoyOyQrSH355jOkc5pDoVQfujW0Adh5mGLw34MJ4WHhVeGP45wiFga0TGXNXfR3ENz30T6RJZE3ptnMU85ry1KNSo+qi5qPNo3ujS6P8YuZlnM1VidWElsSxw5LiquNm5svt/87fOH4p3iC+N7F5gvyF1weaHOwvSFpxapLhIsOpZATIhOOJTwQRAqqBaMJfITdyWOCnnCHcJnIi/RNtGI2ENcKh5O8kgqTXqS7JG8NXkkxTOlLOW5hCepkLxMDUzdmzqeFpp2IG0yPTq9MYOSkZBxQqohTZO2Z+pn5mZ2y6xlhbL+xW6Lty8elQfJa7OQrAVZLQq2QqboVFoo1yoHsmdlV2a/zYnKOZarnivN7cyzytuQN5zvn//tEsIS4ZK2pYZLVy0dWOa9rGo5sjxxedsK4xUFK4ZWBqw8uIq2Km3VT6vtV5eufr0mek1rgV7ByoLBtQFr6wtVCuWFfevc1+1dT1gvWd+1YfqGnRs+FYmKrhTbF5cVf9go3HjlG4dvyr+Z3JS0qavEuWTPZtJm6ebeLZ5bDpaql+aXDm4N2dq0Dd9WtO319kXbL5fNKNu7g7ZDuaO/PLi8ZafJzs07P1SkVPRU+lQ27tLdtWHX+G7R7ht7vPY07NXbW7z3/T7JvttVAVVN1WbVZftJ+7P3P66Jqun4lvttXa1ObXHtxwPSA/0HIw6217nU1R3SPVRSj9Yr60cOxx++/p3vdy0NNg1VjZzG4iNwRHnk6fcJ3/ceDTradox7rOEH0x92HWcdL2pCmvKaRptTmvtbYlu6T8w+0dbq3nr8R9sfD5w0PFl5SvNUyWna6YLTk2fyz4ydlZ19fi753GDborZ752PO32oPb++6EHTh0kX/i+c7vDvOXPK4dPKy2+UTV7hXmq86X23qdOo8/pPTT8e7nLuarrlca7nuer21e2b36RueN87d9L158Rb/1tWeOT3dvfN6b/fF9/XfFt1+cif9zsu72Xcn7q28T7xf9EDtQdlD3YfVP1v+3Njv3H9qwHeg89HcR/cGhYPP/pH1jw9DBY+Zj8uGDYbrnjg+OTniP3L96fynQ89kzyaeF/6i/suuFxYvfvjV69fO0ZjRoZfyl5O/bXyl/erA6xmv28bCxh6+yXgzMV70VvvtwXfcdx3vo98PT+R8IH8o/2j5sfVT0Kf7kxmTk/8EA5jz/GMzLdsAAAAgY0hSTQAAeiUAAICDAAD5/wAAgOkAAHUwAADqYAAAOpgAABdvkl/FRgAAAwpJREFUeNqslE9oXFUUxr9z7333vZk3k3+1JGkyldI44KYKFbSIihbauBOrNkgXdeGqVnAhFnfiQgTFCtJNEQndVDDSFrRBWiGutEYFi2mlhQraP2km02by8ubdd/8cF8WJi+z0bA/nx3cO5/uImfFfSwHAwh9PbNR7EMBLBGoyuA3gKwCzAEAEbLu/gqkXLuLUFzchNhjeAuAXSWJBkXyFwcOSxOOK5FkCMYDnN1QSAoOIQIQnBdGcAP2a+3Kb8dbZYBuCZCcW0Y00io8IiBnP4QMCvSnEvyBbRxMstsuGKXiOJD5ZLlcP586cFJr3S025Z1vtlmY5s90HhpL6dKKi30wIf+W5/xjAvXWmTyzuyLJwvr8eXejYtcOZ6/4ZV2g/Z/rZsqVTu6wpEvJcUK7dLlYDI7zsLB+VUj3cU/L1mSX9yM6+YzzsjmeuOJHEary7pOjulURzoNPs8VN11E4NNnnROHdppcxHtsjKwSRWsgeJRDzvOMyvlMUmpXHAZvLVO5criiQPqzgMMeOd7LpuRqk/UBsPr+fGHOw68z4xobfO9ocIHXSQGzuhpECwdArAcRHxRQbWQAAJ3mdzqYnoZwC7looOCl+uQ9q3gIg1pKTbITCE4jEA37GjfhD2AgA7WpBRKAE0AviaFhKSxDqkdcuM9Im0OZCk10wRrug+/2H/RPGZL+mYzSTKVfl7bax8rD5unzEFb45IfTqcDqbBYqx3k92Tm8bjKmZil3xbkfGurjGt2hh/RIRDZkUdkjqg3jA7g+DzocRbg2maO8vZ5hG9F8B1YmbcyXfjdttO+hJnhcBky6zMd71t6YS8lDjHAROl4e0I9PaArr03OlQzP1y4Ozc0GO156tHv7ym5sViCCLMQeINIzN6XDBzJbFcYa/e5MjQF0Zm6VDPVOK5pEfHqmr3a2JrsSVOx/rFEPRsc9RxuEuhkf1R916sw7REuC9CIJPlNAO9w7E+zw3P1usQ/CaA2MODnDP7Ssn+NQC8KiKcBFI79jwCmAFwiArxfjxD6P/Lk7wEA9Dls2LsiUxoAAAAASUVORK5CYII=');width:17px;height:17px;opacity:0.8;margin:-5px 0px 0 10px}.pf-icon-wormhol-es{background:url('data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAABEAAAARCAYAAAA7bUf6AAAACXBIWXMAAAsTAAALEwEAmpwYAAAKT2lDQ1BQaG90b3Nob3AgSUNDIHByb2ZpbGUAAHjanVNnVFPpFj333vRCS4iAlEtvUhUIIFJCi4AUkSYqIQkQSoghodkVUcERRUUEG8igiAOOjoCMFVEsDIoK2AfkIaKOg6OIisr74Xuja9a89+bN/rXXPues852zzwfACAyWSDNRNYAMqUIeEeCDx8TG4eQuQIEKJHAAEAizZCFz/SMBAPh+PDwrIsAHvgABeNMLCADATZvAMByH/w/qQplcAYCEAcB0kThLCIAUAEB6jkKmAEBGAYCdmCZTAKAEAGDLY2LjAFAtAGAnf+bTAICd+Jl7AQBblCEVAaCRACATZYhEAGg7AKzPVopFAFgwABRmS8Q5ANgtADBJV2ZIALC3AMDOEAuyAAgMADBRiIUpAAR7AGDIIyN4AISZABRG8lc88SuuEOcqAAB4mbI8uSQ5RYFbCC1xB1dXLh4ozkkXKxQ2YQJhmkAuwnmZGTKBNA/g88wAAKCRFRHgg/P9eM4Ors7ONo62Dl8t6r8G/yJiYuP+5c+rcEAAAOF0ftH+LC+zGoA7BoBt/qIl7gRoXgugdfeLZrIPQLUAoOnaV/Nw+H48PEWhkLnZ2eXk5NhKxEJbYcpXff5nwl/AV/1s+X48/Pf14L7iJIEyXYFHBPjgwsz0TKUcz5IJhGLc5o9H/LcL//wd0yLESWK5WCoU41EScY5EmozzMqUiiUKSKcUl0v9k4t8s+wM+3zUAsGo+AXuRLahdYwP2SycQWHTA4vcAAPK7b8HUKAgDgGiD4c93/+8//UegJQCAZkmScQAAXkQkLlTKsz/HCAAARKCBKrBBG/TBGCzABhzBBdzBC/xgNoRCJMTCQhBCCmSAHHJgKayCQiiGzbAdKmAv1EAdNMBRaIaTcA4uwlW4Dj1wD/phCJ7BKLyBCQRByAgTYSHaiAFiilgjjggXmYX4IcFIBBKLJCDJiBRRIkuRNUgxUopUIFVIHfI9cgI5h1xGupE7yAAygvyGvEcxlIGyUT3UDLVDuag3GoRGogvQZHQxmo8WoJvQcrQaPYw2oefQq2gP2o8+Q8cwwOgYBzPEbDAuxsNCsTgsCZNjy7EirAyrxhqwVqwDu4n1Y8+xdwQSgUXACTYEd0IgYR5BSFhMWE7YSKggHCQ0EdoJNwkDhFHCJyKTqEu0JroR+cQYYjIxh1hILCPWEo8TLxB7iEPENyQSiUMyJ7mQAkmxpFTSEtJG0m5SI+ksqZs0SBojk8naZGuyBzmULCAryIXkneTD5DPkG+Qh8lsKnWJAcaT4U+IoUspqShnlEOU05QZlmDJBVaOaUt2ooVQRNY9aQq2htlKvUYeoEzR1mjnNgxZJS6WtopXTGmgXaPdpr+h0uhHdlR5Ol9BX0svpR+iX6AP0dwwNhhWDx4hnKBmbGAcYZxl3GK+YTKYZ04sZx1QwNzHrmOeZD5lvVVgqtip8FZHKCpVKlSaVGyovVKmqpqreqgtV81XLVI+pXlN9rkZVM1PjqQnUlqtVqp1Q61MbU2epO6iHqmeob1Q/pH5Z/YkGWcNMw09DpFGgsV/jvMYgC2MZs3gsIWsNq4Z1gTXEJrHN2Xx2KruY/R27iz2qqaE5QzNKM1ezUvOUZj8H45hx+Jx0TgnnKKeX836K3hTvKeIpG6Y0TLkxZVxrqpaXllirSKtRq0frvTau7aedpr1Fu1n7gQ5Bx0onXCdHZ4/OBZ3nU9lT3acKpxZNPTr1ri6qa6UbobtEd79up+6Ynr5egJ5Mb6feeb3n+hx9L/1U/W36p/VHDFgGswwkBtsMzhg8xTVxbzwdL8fb8VFDXcNAQ6VhlWGX4YSRudE8o9VGjUYPjGnGXOMk423GbcajJgYmISZLTepN7ppSTbmmKaY7TDtMx83MzaLN1pk1mz0x1zLnm+eb15vft2BaeFostqi2uGVJsuRaplnutrxuhVo5WaVYVVpds0atna0l1rutu6cRp7lOk06rntZnw7Dxtsm2qbcZsOXYBtuutm22fWFnYhdnt8Wuw+6TvZN9un2N/T0HDYfZDqsdWh1+c7RyFDpWOt6azpzuP33F9JbpL2dYzxDP2DPjthPLKcRpnVOb00dnF2e5c4PziIuJS4LLLpc+Lpsbxt3IveRKdPVxXeF60vWdm7Obwu2o26/uNu5p7ofcn8w0nymeWTNz0MPIQ+BR5dE/C5+VMGvfrH5PQ0+BZ7XnIy9jL5FXrdewt6V3qvdh7xc+9j5yn+M+4zw33jLeWV/MN8C3yLfLT8Nvnl+F30N/I/9k/3r/0QCngCUBZwOJgUGBWwL7+Hp8Ib+OPzrbZfay2e1BjKC5QRVBj4KtguXBrSFoyOyQrSH355jOkc5pDoVQfujW0Adh5mGLw34MJ4WHhVeGP45wiFga0TGXNXfR3ENz30T6RJZE3ptnMU85ry1KNSo+qi5qPNo3ujS6P8YuZlnM1VidWElsSxw5LiquNm5svt/87fOH4p3iC+N7F5gvyF1weaHOwvSFpxapLhIsOpZATIhOOJTwQRAqqBaMJfITdyWOCnnCHcJnIi/RNtGI2ENcKh5O8kgqTXqS7JG8NXkkxTOlLOW5hCepkLxMDUzdmzqeFpp2IG0yPTq9MYOSkZBxQqohTZO2Z+pn5mZ2y6xlhbL+xW6Lty8elQfJa7OQrAVZLQq2QqboVFoo1yoHsmdlV2a/zYnKOZarnivN7cyzytuQN5zvn//tEsIS4ZK2pYZLVy0dWOa9rGo5sjxxedsK4xUFK4ZWBqw8uIq2Km3VT6vtV5eufr0mek1rgV7ByoLBtQFr6wtVCuWFfevc1+1dT1gvWd+1YfqGnRs+FYmKrhTbF5cVf9go3HjlG4dvyr+Z3JS0qavEuWTPZtJm6ebeLZ5bDpaql+aXDm4N2dq0Dd9WtO319kXbL5fNKNu7g7ZDuaO/PLi8ZafJzs07P1SkVPRU+lQ27tLdtWHX+G7R7ht7vPY07NXbW7z3/T7JvttVAVVN1WbVZftJ+7P3P66Jqun4lvttXa1ObXHtxwPSA/0HIw6217nU1R3SPVRSj9Yr60cOxx++/p3vdy0NNg1VjZzG4iNwRHnk6fcJ3/ceDTradox7rOEH0x92HWcdL2pCmvKaRptTmvtbYlu6T8w+0dbq3nr8R9sfD5w0PFl5SvNUyWna6YLTk2fyz4ydlZ19fi753GDborZ752PO32oPb++6EHTh0kX/i+c7vDvOXPK4dPKy2+UTV7hXmq86X23qdOo8/pPTT8e7nLuarrlca7nuer21e2b36RueN87d9L158Rb/1tWeOT3dvfN6b/fF9/XfFt1+cif9zsu72Xcn7q28T7xf9EDtQdlD3YfVP1v+3Njv3H9qwHeg89HcR/cGhYPP/pH1jw9DBY+Zj8uGDYbrnjg+OTniP3L96fynQ89kzyaeF/6i/suuFxYvfvjV69fO0ZjRoZfyl5O/bXyl/erA6xmv28bCxh6+yXgzMV70VvvtwXfcdx3vo98PT+R8IH8o/2j5sfVT0Kf7kxmTk/8EA5jz/GMzLdsAAAAgY0hSTQAAeiUAAICDAAD5/wAAgOkAAHUwAADqYAAAOpgAABdvkl/FRgAAA5xJREFUeNp8lMtrXGUAxc/33e++Z+ZO5pHJZJK0STSx6UMqYrFYqF1I42NRFxVK3dhF3QiCLkQXbrpzoeBOi0iRbHQhWqEIohJRtAmW1tKaZiZSJ4+ZZObOnZl779zHdz8XkYJIe/6Aw+Fwfoc8e3IR95MggBpJCBk/vJ7rPy3HUlONaT89UDa1kC0FMudEAAwPkJQQyJzmlqYabw3UKGO6ahM0UdtGWDlQL3w8ZpuX+mr0XxMCQNxLIZD2FFydbL7TV2Jj/tres6HCB5QT9eZY69yfZfulim1epkCb3osdS5oSSWU1liwjZLTQM1DP9V/csrxDR6qlCwM1bvly7Ppq3N6/nv+IcRKsljpn9JCBCSJg+Qpqhd752oj9nDpQtghBONzVq77Op7K+Uiv29V93Uj6oIOBUgHHijNupK9Wic3q6aX1OjZChZQYnboy1To2101+XHePKiGMs3y7Zj0oJZRqXjWqh83wqkEEAUAFwKvStjP/4kKutEMBlRJDS8p7t1yda6cWDdwsfemoEPWTIeMrt1RHnVStUozsjzgtlJ3WLcepkPMX+fc/Oa7YRzMzfmDgzkHmfXa+0zxNB4sfuFi+0UgMAgKdwDPf079fy3WMRFftKrsl+e2jzDRZLAhCinQqmn1wrvQdgg1MBaoRsiyVEhIyb9/YBAZZQUAE3YIl1sFHcLPqmXwgML8t1cbQ2+mmup37jqhGIAOhsw1pIiKArw51Xij0dWizB8hXUs/0Tns6fKnf12rcPr031lCDnqIN82/BKm5a7TwCMgOzuaW7qXEgF1W9W2qclQHPUeDKS+eS1idbZyY7V2cj2CiVb/+7A34UPTF9etlx15Xpl52UjkAc5T/sjlhIwV4kxahtfekp2ej3XP55wiSdypI130k1XDSkLSXX/Rv6Trh5yJmg772h3xtuZY7VS99S4nfoKMjwyf3IRBIAZMCQEOpcSE4JIXBJzP83U336iWn5XD9nPAeMgAIgAtIiN/jhX/2xmc+jisGMsUPJvma4aw1diP5KSnVhKGlpIfzAHytZf+d4zWiTtIkEEjFBGM+MfjYlAypfXEiJA/0cugIQIcCrE3m3ri3quf7yvRofTA1nKuhpimjyyNNl4c3ZzaCHrqb9EjN+fYl/hqNjm5UbWnV+cq78/1DVWFU7c9Zx7aKKdujrdtC7aZgAiCMiD/kRKCADMbmf8IwPG9UiOs5RTMtW0LiVUbHC6y/w/AwBZTrZC1ec/kgAAAABJRU5ErkJggg==');width:17px;height:17px;opacity:0.8;margin:-5px 0px 0 10px}.modal-content h2{font-family:"Oxygen","Helvetica Neue",Helvetica,Arial,sans-serif;letter-spacing:0px;font-size:14px;margin:20px 0;line-height:normal}.modal-content .dataTable,.modal-content .table{font-size:10px;font-family:"Oxygen Bold","Helvetica Neue",Helvetica,Arial,sans-serif}.modal-content hr{margin:5px 0 15px 0;border-color:#63676a}.modal-content .pf-wizard-navigation{margin:0}.modal-content .pf-wizard-navigation li:not(:last-child):before{border-top:1px solid #63676a;content:"";display:block;font-size:0;overflow:hidden;position:relative;top:12px;left:71px;right:1px;width:100%}.modal-content .pf-wizard-navigation li.finished:before{-moz-border-image:-moz-linear-gradient(left, #375959,#375959) 1 1%;-moz-border-image:linear-gradient(to right, #375959,#375959) 1 1%;-o-border-image:linear-gradient(to right, #375959,#375959) 1 1%;-webkit-border-image:-webkit-linear-gradient(left, #375959,#375959) 1 1%;-webkit-border-image:linear-gradient(to right, #375959,#375959) 1 1%;border-image:-moz-linear-gradient(left, #375959,#375959) 1 1%;border-image:-webkit-linear-gradient(left, #375959,#375959) 1 1%;border-image:linear-gradient(to right, #375959,#375959) 1 1%;border-bottom:0}.modal-content .pf-wizard-navigation li.active:before{-moz-border-image:-moz-linear-gradient(left, #4f9e4f,#63676a) 1 1%;-moz-border-image:linear-gradient(to right, #4f9e4f,#63676a) 1 1%;-o-border-image:linear-gradient(to right, #4f9e4f,#63676a) 1 1%;-webkit-border-image:-webkit-linear-gradient(left, #4f9e4f,#63676a) 1 1%;-webkit-border-image:linear-gradient(to right, #4f9e4f,#63676a) 1 1%;border-image:-moz-linear-gradient(left, #4f9e4f,#63676a) 1 1%;border-image:-webkit-linear-gradient(left, #4f9e4f,#63676a) 1 1%;border-image:linear-gradient(to right, #4f9e4f,#63676a) 1 1%;border-bottom:0}.modal-content .pf-wizard-navigation li>h6{color:#63676a;font-size:11px;margin:5px}.modal-content .pf-wizard-navigation li a:hover+h6{color:#adadad}.modal-content .pf-wizard-navigation li.active a:not(.btn-danger)+h6{color:#adadad}.modal-content .pf-dialog-finish-button,.modal-content .pf-dialog-prev-button{display:none}#pf-settings-dialog .form-group .btn-sm,#pf-settings-dialog .form-group .btn-group-sm>.btn,#pf-settings-dialog .form-group button.DTTT_button,#pf-settings-dialog .form-group div.DTTT_button,#pf-settings-dialog .form-group a.DTTT_button{padding:4px 7px 3px}#pf-settings-dialog .pf-dialog-api-row:not(:nth-last-child(3)) .pf-dialog-clone-button{display:none}#pf-settings-dialog .pf-dialog-api-row:nth-child(2):nth-last-child(3) .pf-dialog-delete-button{display:none}#pf-settings-dialog #pf-dialog-captcha-wrapper{margin:0;padding:3px 0}#pf-settings-dialog .pf-dynamic-area{display:inline-block;margin:10px 5px 20px 5px;padding:10px 10px 5px 10px;-moz-border-radius:10px;-webkit-border-radius:10px;border-radius:10px}#pf-settings-dialog .pf-dynamic-area .pf-dialog-image-wrapper{opacity:0;width:128px;border:2px solid #63676a;-moz-border-radius:8px;-webkit-border-radius:8px;border-radius:8px;-webkit-transition:border-color 0.2s ease-out,box-shadow 0.2s ease-out;transition:border-color 0.2s ease-out,box-shadow 0.2s ease-out;-moz-transform:translate3d(0, 0, 0);-ms-transform:translate3d(0, 0, 0);-webkit-transform:translate3d(0, 0, 0);transform:translate3d(0, 0, 0);will-change:border-color, transition;overflow:hidden;cursor:pointer;display:inline-block;background-color:#2b2b2b;box-sizing:content-box}#pf-settings-dialog .pf-dynamic-area .pf-dialog-image-wrapper:before{content:"\f005";font-family:FontAwesome;position:absolute;z-index:10;left:6px;top:4px;color:#adadad;-webkit-transition:color 0.2s ease-out;transition:color 0.2s ease-out}#pf-settings-dialog .pf-dynamic-area .pf-dialog-image-wrapper.pf-dialog-character-main{border-color:#c2760c}#pf-settings-dialog .pf-dynamic-area .pf-dialog-image-wrapper.pf-dialog-character-main:hover{border-color:#e28a0d}#pf-settings-dialog .pf-dynamic-area .pf-dialog-image-wrapper.pf-dialog-character-main:before{color:#e28a0d}#pf-settings-dialog .pf-dynamic-area .pf-dialog-image-wrapper:hover{border-color:#375959;-webkit-box-shadow:0 4px 10px rgba(0,0,0,0.4);box-shadow:0 4px 10px rgba(0,0,0,0.4)}#pf-settings-dialog .pf-dynamic-area .pf-dialog-image-wrapper:hover .pf-dialog-character-name{color:#568a89}#pf-settings-dialog .pf-dynamic-area .pf-dialog-image-wrapper:hover .pf-dialog-character-image{-webkit-filter:grayscale(50%);filter:grayscale(50%)}#pf-settings-dialog .pf-dynamic-area .pf-dialog-image-wrapper:hover:before{color:#e28a0d}#pf-settings-dialog .pf-dynamic-area .pf-dialog-image-wrapper .pf-dialog-image{overflow:hidden;width:128px;height:128px;position:relative}#pf-settings-dialog .pf-dynamic-area .pf-dialog-image-wrapper .pf-dialog-image .pf-dialog-character-info{position:absolute;top:0;left:0;width:0;height:100%;background:rgba(60,63,65,0.8);overflow:hidden;will-change:width, transition;padding:10px 0}#pf-settings-dialog .pf-dynamic-area .pf-dialog-image-wrapper .pf-dialog-image .pf-dialog-character-info .pf-dialog-character-info-text{line-height:25px}#pf-settings-dialog .pf-dynamic-area .pf-dialog-image-wrapper .pf-dialog-character-name{font-size:13px;line-height:30px;border-top:1px solid #313335;-webkit-transition:color 0.2s ease-out;transition:color 0.2s ease-out}#pf-settings-dialog .pf-dynamic-area .pf-dialog-image-wrapper .pf-dialog-character-image{-webkit-transition:all 0.3s ease-out;transition:all 0.3s ease-out;-webkit-filter:grayscale(0%);filter:grayscale(0%)}#pf-map-dialog #pf-map-dialog-user-select,#pf-map-dialog #pf-map-dialog-corporation-select,#pf-map-dialog #pf-map-dialog-alliance-select{width:300px}#pf-manual-scrollspy{position:relative;height:500px;overflow:auto}.pf-system-dialog-select{width:270px !important}h2.pf-dynamic-area,h4.pf-dynamic-area{min-height:0}.pf-credits-dialog .pf-credits-logo-background{overflow:visible;background:url("../img/logo_bg.png");padding:20px;margin-bottom:20px}.pf-credits-dialog #pf-logo-container{width:355px;height:366px;margin:0 auto}.pf-log-graph{height:100px;width:100%}.pf-animation-slide-in{-moz-animation-duration:1.2s;-webkit-animation-duration:1.2s;-moz-animation-name:pfSlideIn;-webkit-animation-name:pfSlideIn;position:relative}@-webkit-keyframes pfSlideIn{from{opacity:0;top:-20px}to{opacity:1;top:0px}}@-moz-keyframes pfSlideIn{from{opacity:0;top:-20px}to{opacity:1;top:0px}}@-ms-keyframes pfSlideIn{from{opacity:0;top:-20px}to{opacity:1;top:0px}}@keyframes pfSlideIn{from{opacity:0;top:-20px}to{opacity:1;top:0px}}.pf-animation-pulse-success{-webkit-animation:pulseBackgroundSuccess 3s 1;animation:pulseBackgroundSuccess 3s 1;-webkit-animation-timing-function:cubic-bezier(0.53, -0.03, 0.68, 0.38);animation-timing-function:cubic-bezier(0.53, -0.03, 0.68, 0.38)}.pf-animation-pulse-success .sorting_1{-webkit-animation:pulseBackgroundSuccessActive 3s 1;animation:pulseBackgroundSuccessActive 3s 1;-webkit-animation-timing-function:cubic-bezier(0.53, -0.03, 0.68, 0.38);animation-timing-function:cubic-bezier(0.53, -0.03, 0.68, 0.38)}.pf-animation-pulse-warning{-webkit-animation:pulseBackgroundWarning 3s 1;animation:pulseBackgroundWarning 3s 1;-webkit-animation-timing-function:cubic-bezier(0.53, -0.03, 0.68, 0.38);animation-timing-function:cubic-bezier(0.53, -0.03, 0.68, 0.38)}.pf-animation-pulse-warning .sorting_1{-webkit-animation:pulseBackgroundWarningActive 3s 1;animation:pulseBackgroundWarningActive 3s 1;-webkit-animation-timing-function:cubic-bezier(0.53, -0.03, 0.68, 0.38);animation-timing-function:cubic-bezier(0.53, -0.03, 0.68, 0.38)}@-webkit-keyframes pulseBackgroundSuccess{5%{background-color:#5cb85c;color:#313335}}@-moz-keyframes pulseBackgroundSuccess{5%{background-color:#5cb85c;color:#313335}}@-ms-keyframes pulseBackgroundSuccess{5%{background-color:#5cb85c;color:#313335}}@keyframes pulseBackgroundSuccess{5%{background-color:#5cb85c;color:#313335}}@-webkit-keyframes pulseBackgroundSuccessActive{5%{background-color:#4cae4c;color:#313335}}@-moz-keyframes pulseBackgroundSuccessActive{5%{background-color:#4cae4c;color:#313335}}@-ms-keyframes pulseBackgroundSuccessActive{5%{background-color:#4cae4c;color:#313335}}@keyframes pulseBackgroundSuccessActive{5%{background-color:#4cae4c;color:#313335}}@-webkit-keyframes pulseBackgroundWarning{5%{background-color:#e28a0d;color:#2b2b2b}}@-moz-keyframes pulseBackgroundWarning{5%{background-color:#e28a0d;color:#2b2b2b}}@-ms-keyframes pulseBackgroundWarning{5%{background-color:#e28a0d;color:#2b2b2b}}@keyframes pulseBackgroundWarning{5%{background-color:#e28a0d;color:#2b2b2b}}@-webkit-keyframes pulseBackgroundWarningActive{5%{background-color:#ca7b0c;color:#2b2b2b}}@-moz-keyframes pulseBackgroundWarningActive{5%{background-color:#ca7b0c;color:#2b2b2b}}@-ms-keyframes pulseBackgroundWarningActive{5%{background-color:#ca7b0c;color:#2b2b2b}}@keyframes pulseBackgroundWarningActive{5%{background-color:#ca7b0c;color:#2b2b2b}}.ribbon-wrapper{width:72px;height:88px;overflow:hidden;position:absolute;top:-3px;right:7px}.ribbon{font:bold 12px "Oxygen Bold","Helvetica Neue",Helvetica,Arial,sans-serif;color:#2b2b2b;text-align:center;text-shadow:rgba(255,255,255,0.2) 0px 1px 0px;position:relative;padding:3px 0;left:-4px;top:16px;width:99px;-webkit-box-shadow:2px 3px 3px rgba(0,0,0,0.2);box-shadow:2px 3px 3px rgba(0,0,0,0.2);-moz-transform:rotate(45deg);-ms-transform:rotate(45deg);-webkit-transform:rotate(45deg);transform:rotate(45deg)}.ribbon:before,.ribbon:after{content:"";border-left:3px solid transparent;border-right:3px solid transparent;position:absolute;bottom:-3px}.ribbon.ribbon-green{background-color:#5cb85c;background-image:url('data:image/svg+xml;base64,PD94bWwgdmVyc2lvbj0iMS4wIiBlbmNvZGluZz0idXRmLTgiPz4gPHN2ZyB2ZXJzaW9uPSIxLjEiIHhtbG5zPSJodHRwOi8vd3d3LnczLm9yZy8yMDAwL3N2ZyI+PGRlZnM+PGxpbmVhckdyYWRpZW50IGlkPSJncmFkIiBncmFkaWVudFVuaXRzPSJvYmplY3RCb3VuZGluZ0JveCIgeDE9IjAuNSIgeTE9IjAuMCIgeDI9IjAuNSIgeTI9IjEuMCI+PHN0b3Agb2Zmc2V0PSIwJSIgc3RvcC1jb2xvcj0iIzUxYjM1MSIvPjxzdG9wIG9mZnNldD0iMTAwJSIgc3RvcC1jb2xvcj0iIzRhOTQ0YSIvPjwvbGluZWFyR3JhZGllbnQ+PC9kZWZzPjxyZWN0IHg9IjAiIHk9IjAiIHdpZHRoPSIxMDAlIiBoZWlnaHQ9IjEwMCUiIGZpbGw9InVybCgjZ3JhZCkiIC8+PC9zdmc+IA==');background-size:100%;background-image:-webkit-gradient(linear, 50% 0%, 50% 100%, color-stop(0%, #51b351),color-stop(100%, #4a944a));background-image:-moz-linear-gradient(top, #51b351,#4a944a);background-image:-webkit-linear-gradient(top, #51b351,#4a944a);background-image:linear-gradient(to bottom, #51b351,#4a944a)}.ribbon.ribbon-green:before,.ribbon.ribbon-green:after{border-top:3px solid #285028}.ribbon.ribbon-orange{background-color:#e28a0d;background-image:url('data:image/svg+xml;base64,PD94bWwgdmVyc2lvbj0iMS4wIiBlbmNvZGluZz0idXRmLTgiPz4gPHN2ZyB2ZXJzaW9uPSIxLjEiIHhtbG5zPSJodHRwOi8vd3d3LnczLm9yZy8yMDAwL3N2ZyI+PGRlZnM+PGxpbmVhckdyYWRpZW50IGlkPSJncmFkIiBncmFkaWVudFVuaXRzPSJvYmplY3RCb3VuZGluZ0JveCIgeDE9IjAuNSIgeTE9IjAuMCIgeDI9IjAuNSIgeTI9IjEuMCI+PHN0b3Agb2Zmc2V0PSIwJSIgc3RvcC1jb2xvcj0iI2Q0ODEwYyIvPjxzdG9wIG9mZnNldD0iMTAwJSIgc3RvcC1jb2xvcj0iI2I0NmQwYiIvPjwvbGluZWFyR3JhZGllbnQ+PC9kZWZzPjxyZWN0IHg9IjAiIHk9IjAiIHdpZHRoPSIxMDAlIiBoZWlnaHQ9IjEwMCUiIGZpbGw9InVybCgjZ3JhZCkiIC8+PC9zdmc+IA==');background-size:100%;background-image:-webkit-gradient(linear, 50% 0%, 50% 100%, color-stop(0%, #d4810c),color-stop(100%, #b46d0b));background-image:-moz-linear-gradient(top, #d4810c,#b46d0b);background-image:-webkit-linear-gradient(top, #d4810c,#b46d0b);background-image:linear-gradient(to bottom, #d4810c,#b46d0b)}.ribbon.ribbon-orange:before,.ribbon.ribbon-orange:after{border-top:3px solid #6c4107}.ribbon:before{left:0}.ribbon:after{right:0} + * ======================================================================== */label.checkbox .toggle,label.checkbox.inline .toggle{margin-left:-20px;margin-right:5px}.toggle{min-width:40px;height:20px;position:relative;overflow:hidden}.toggle input[type="checkbox"]{display:none}.toggle-group{position:absolute;width:200%;top:0;bottom:0;left:0;transition:left 0.35s;-webkit-transition:left 0.35s;-moz-user-select:none;-webkit-user-select:none}.toggle.off .toggle-group{left:-100%}.toggle-on{position:absolute;top:0;bottom:0;left:0;right:50%;margin:0;border:0;border-radius:0}.toggle-off{position:absolute;top:0;bottom:0;left:50%;right:0;margin:0;border:0;border-radius:0}.toggle-handle{position:relative;margin:0 auto;padding-top:0px;padding-bottom:0px;height:100%;width:0px;border-width:0 1px}.toggle-handle.btn-mini{top:-2px}.toggle.btn,button.toggle.DTTT_button,div.toggle.DTTT_button,a.toggle.DTTT_button{min-width:30px}.toggle-on.btn,button.toggle-on.DTTT_button,div.toggle-on.DTTT_button,a.toggle-on.DTTT_button{padding-right:24px}.toggle-off.btn,button.toggle-off.DTTT_button,div.toggle-off.DTTT_button,a.toggle-off.DTTT_button{padding-left:24px}.toggle.btn-large{min-width:40px}.toggle-on.btn-large{padding-right:35px}.toggle-off.btn-large{padding-left:35px}.toggle.btn-small{min-width:25px}.toggle-on.btn-small{padding-right:20px}.toggle-off.btn-small{padding-left:20px}.toggle.btn-mini{min-width:20px}.toggle-on.btn-mini{padding-right:12px}.toggle-off.btn-mini{padding-left:12px}html{margin:0;padding:0;height:100%;position:relative}body{margin:0;padding:0;min-height:100%;direction:ltr}body.mobile-view-activated.hidden-menu{overflow-x:hidden}body.modal-open{overflow:hidden !important}a:hover,a:active,a:focus,button,button:active,button:focus,object,embed,input::-moz-focus-inner{outline:0}h1,h3,h4{margin:0;font-family:"Oxygen Bold","Helvetica Neue",Helvetica,Arial,sans-serif}.page-title{margin:12px 0 28px}.page-title span{font-size:15px;color:#313335;display:inline-block;vertical-align:1px}label{font-weight:normal}*:focus{outline:0 !important}a,input,button{-ms-touch-action:none !important}textarea:focus,select:focus,input[type="text"]:focus,input[type="password"]:focus,input[type="datetime"]:focus,input[type="datetime-local"]:focus,input[type="date"]:focus,input[type="month"]:focus,input[type="time"]:focus,input[type="week"]:focus,input[type="number"]:focus,input[type="email"]:focus,input[type="url"]:focus,input[type="search"]:focus,input[type="tel"]:focus,input[type="color"]:focus,.uneditable-input:focus{outline:0;outline:thin dotted \9;box-shadow:inset -1px 1px 5px 0 rgba(0,0,0,0.8) !important}.input-sm,.input-group-sm>.form-control,.input-group-sm>.input-group-addon,.input-group-sm>.input-group-btn>.btn,.input-group-sm>.input-group-btn>button.DTTT_button,.input-group-sm>.input-group-btn>div.DTTT_button,.input-group-sm>.input-group-btn>a.DTTT_button,.input-lg,.input-group-lg>.form-control,.input-group-lg>.input-group-addon,.input-group-lg>.input-group-btn>.btn,.input-group-lg>.input-group-btn>button.DTTT_button,.input-group-lg>.input-group-btn>div.DTTT_button,.input-group-lg>.input-group-btn>a.DTTT_button,.input-xs,.form-control{border-radius:0px !important;-webkit-border-radius:0px !important;-moz-border-radius:0px !important}.input-xs{height:24px;padding:2px 10px;font-size:11px;line-height:1.5}.btn-xs,.btn-group-xs>.btn,.btn-group-xs>button.DTTT_button,.btn-group-xs>div.DTTT_button,.btn-group-xs>a.DTTT_button{padding:0px 2px;font-size:10px;line-height:1.3}.btn-sm,.btn-group-sm>.btn,.btn-group-sm>button.DTTT_button,.btn-group-sm>div.DTTT_button,.btn-group-sm>a.DTTT_button,button.DTTT_button,div.DTTT_button,a.DTTT_button{padding:5px 8px 4px}.btn-lg,.btn-group-lg>.btn,.btn-group-lg>button.DTTT_button,.btn-group-lg>div.DTTT_button,.btn-group-lg>a.DTTT_button{padding:10px 16px}.no-space{margin:0}.no-space>[class*="col-"]{margin:0 !important;padding-right:0;padding-left:0}h1{letter-spacing:-1px;font-size:22px;margin:10px 0}h1 small{font-size:12px;font-weight:300;letter-spacing:-1px}h2{font-size:20px;margin:20px 0;line-height:normal}h3{display:block;font-size:17px;font-weight:400;margin:20px 0;line-height:normal}h4{line-height:normal;margin:20px 0 10px 0}h5{font-size:14px;font-weight:300;margin-top:0;margin-bottom:10px;line-height:normal}h6{font-size:13px;margin:10px 0;font-weight:bold;line-height:normal}.row-seperator-header{margin:15px 14px 20px;border-bottom:none;display:block;color:#303133;font-size:20px;font-weight:400}.center-canvas,.center-child-canvas>canvas{display:block !important;margin:0 auto !important}.smart-accordion-default.panel-group{margin-bottom:0px}.smart-accordion-default.panel-group .panel+.panel{margin-top:-1px}.smart-accordion-default.panel-group .panel-heading{padding:0px}.smart-accordion-default.panel-group .panel-title a{display:block;padding:10px 15px;text-decoration:none !important}.smart-accordion-default .panel-heading,.panel-group .panel{border-radius:0px;-webkit-border-radius:0px;-moz-border-radius:0px}.smart-accordion-default .panel-default>.panel-heading{background-color:#f3f3f3}.smart-accordion-default .panel-default{border-color:#8d9194}.smart-accordion-default .panel-title>a>:first-child{display:none}.smart-accordion-default .panel-title>a.collapsed>.fa,.smart-accordion-default .pf-landing .pf-landing-list li .panel-title>a.collapsed>i,.pf-landing .pf-landing-list li .smart-accordion-default .panel-title>a.collapsed>i{display:none}.smart-accordion-default .panel-title>a.collapsed>:first-child{display:inline-block}.no-padding .smart-accordion-default>div{border-left:none !important;border-right:none !important}.no-padding .smart-accordion-default>div:first-child{border-top:none !important}.no-padding .smart-accordion-default>div:last-child{border-bottom:none !important}.onoffswitch-container{margin-top:4px;margin-left:7px;display:inline-block}.onoffswitch{position:relative;width:50px;-webkit-user-select:none;-moz-user-select:none;-ms-user-select:none;margin-top:3px;margin-bottom:3px;margin-left:5px;display:inline-block;vertical-align:middle}.onoffswitch-checkbox{display:none}.onoffswitch-label{display:block;overflow:hidden;cursor:pointer;border:1px solid #484c4e;border-radius:50px;border-color:#777b7f #7c8184 #686c6f;-webkit-box-sizing:content-box;-moz-box-sizing:content-box;box-sizing:content-box}.onoffswitch-inner{width:200%;margin-left:-100%;display:block}.onoffswitch-inner:before,.onoffswitch-inner:after{float:left;width:50%;height:15px;padding:0;line-height:15px;font-size:10px;color:#fff;font-family:Trebuchet, Arial, sans-serif;font-weight:bold;-moz-box-sizing:border-box;-webkit-box-sizing:border-box;box-sizing:border-box}.onoffswitch-inner:before{content:attr(data-swchon-text);text-shadow:0 -1px 0 #313335;padding-left:7px;background-color:#3276b1;color:#fff;box-shadow:inset 0 2px 6px rgba(0,0,0,0.5),0 1px 2px rgba(0,0,0,0.05);text-align:left}.onoffswitch-inner:after{content:attr(data-swchoff-text);padding-right:7px;text-shadow:0 -1px 0 #fff;background-color:#fff;color:#3c3f41;text-align:right;box-shadow:inset 0 2px 4px rgba(0,0,0,0.15),0 1px 2px rgba(0,0,0,0.05)}.onoffswitch-switch{width:19px;height:19px;margin:-2px;background:white;border:1px solid #64686b;border-radius:50px;position:absolute;top:0;bottom:0;right:32px;-webkit-box-sizing:content-box;-moz-box-sizing:content-box;box-sizing:content-box;background-color:#eaeaea;background-image:-moz-linear-gradient(top, #fff, #adadad);background-image:-webkit-gradient(linear, 0 0, 0 100%, from(#fff), to(#adadad));background-image:-webkit-linear-gradient(top, #fff, #adadad);background-image:-o-linear-gradient(top, #fff, #adadad);background-image:linear-gradient(to bottom, #ffffff,#adadad);background-repeat:repeat-x;-webkit-box-shadow:1px 1px 4px 0px rgba(0,0,0,0.3);box-shadow:1px 1px 4px 0px rgba(0,0,0,0.3)}.onoffswitch-checkbox+.onoffswitch-label .onoffswitch-switch:before,.onoffswitch-checkbox:checked+.onoffswitch-label .onoffswitch-switch:before{content:"\f00d";color:#a52521;display:block;text-align:center;line-height:19px;font-size:10px;text-shadow:0 -1px 0 #fff;font-weight:bold;font-family:FontAwesome}.onoffswitch-checkbox:checked+.onoffswitch-label .onoffswitch-switch:before{content:"\f00c";color:#428bca}.onoffswitch-checkbox:checked+.onoffswitch-label .onoffswitch-inner{margin-left:0;display:block}.onoffswitch-checkbox:checked+.onoffswitch-label .onoffswitch-switch{right:0px}.onoffswitch-switch:hover{background-color:#adadad}.onoffswitch-switch:active{background-color:#adadad;box-shadow:inset 0 2px 4px rgba(0,0,0,0.15),0 1px 2px rgba(0,0,0,0.05)}.onoffswitch-checkbox:disabled+.onoffswitch-label .onoffswitch-inner:after,.onoffswitch-checkbox:checked:disabled+.onoffswitch-label .onoffswitch-inner:before{text-shadow:0 1px 0 #fff;background:#bfbfbf;color:#313335}.onoffswitch-checkbox:checked:disabled+.onoffswitch-label .onoffswitch-switch,.onoffswitch-checkbox:disabled+.onoffswitch-label .onoffswitch-switch{background-color:#eaeaea;background-image:-moz-linear-gradient(top, #bfbfbf, #eaeaea);background-image:-webkit-gradient(linear, 0 0, 0 100%, from(#bfbfbf), to(#eaeaea));background-image:-webkit-linear-gradient(top, #bfbfbf, #eaeaea);background-image:-o-linear-gradient(top, #bfbfbf, #eaeaea);background-image:linear-gradient(to bottom, #bfbfbf,#eaeaea);box-shadow:none !important}.onoffswitch-checkbox:disabled+.onoffswitch-label,.onoffswitch-checkbox:checked:disabled+.onoffswitch-label .onoffswitch-label{border-color:#74797c #63676a #525558 !important}.onoffswitch-checkbox:checked+.onoffswitch-label{border-color:#3276b1 #2a6395 #255681}.onoffswitch+span,.onoffswitch-title{display:inline-block;vertical-align:middle;margin-top:-5px}.form-control{box-shadow:none !important;-webkit-box-shadow:none !important;-moz-box-shadow:none !important}.form hr{margin-left:-13px;margin-right:-13px;border-color:rgba(0,0,0,0.1);margin-top:20px;margin-bottom:20px}.form fieldset{display:block;border:none;background:rgba(255,255,255,0.9);position:relative}fieldset{position:relative}.form-actions{display:block;padding:13px 14px 15px;border-top:1px solid rgba(0,0,0,0.1);background:rgba(239,239,239,0.9);margin-top:25px;margin-left:-13px;margin-right:-13px;margin-bottom:-13px;text-align:right}.well .form-actions{margin-left:-19px;margin-right:-19px;margin-bottom:-19px}.well.well-lg .form-actions{margin-left:-24px;margin-right:-24px;margin-bottom:-24px}.well.well-sm .form-actions{margin-left:-9px;margin-right:-9px;margin-bottom:-9px}.popover-content .form-actions{margin:0 -14px -9px;border-radius:0 0 3px 3px;padding:9px 14px}.no-padding .form .form-actions{margin:0;display:block;padding:13px 14px 15px;border-top:1px solid rgba(0,0,0,0.1);background:rgba(248,248,248,0.9);text-align:right;margin-top:25px}.form header,legend{display:block;padding:8px 0;border-bottom:1px dashed rgba(0,0,0,0.2);background:#fff;font-size:16px;font-weight:300;color:#2b2b2b;margin:25px 0px 20px}.no-padding .form header{margin:25px 14px 0}.form header:first-child{margin-top:10px}legend{font-weight:400;margin-top:0px;background:none}.input-group-addon{padding:6px 10px;will-change:background-color, border-color;-moz-border-radius:0;-webkit-border-radius:0;border-radius:0;-webkit-transition:all ease-out 0.15s;transition:all ease-out 0.15s}.input-group-addon .fa,.input-group-addon .pf-landing .pf-landing-list li i,.pf-landing .pf-landing-list li .input-group-addon i{font-size:14px}.input-group-addon .fa-lg,.input-group-addon .fa-2x{font-size:2em}.input-group-addon .fa-3x,.input-group-addon .fa-4x,.input-group-addon .fa-5x{font-size:30px}input[type="text"]:focus+.input-group-addon,input[type="password"]:focus+.input-group-addon,input[type="email"]:focus+.input-group-addon{border-color:#568a89;color:#568a89}.has-warning input[type="text"],.has-warning input[type="text"]+.input-group-addon{border-color:#e28a0d}.has-warning input[type="text"]+.input-group-addon{background-color:#fbe3c0;color:#2b2b2b}.has-warning input[type="text"]:focus,.has-warning input[type="text"]:focus+.input-group-addon{border-color:#e28a0d}.has-warning input[type="text"]:focus+.input-group-addon{background-color:#e28a0d;color:#fff}.has-error .input-group-addon{border-color:#d9534f !important;background:#d9534f !important;color:#2b2b2b !important}.has-success .input-group-addon{border-color:#4f9e4f !important;background-color:#2b2b2b !important;color:#4f9e4f !important}.form fieldset .form-group:last-child,.form fieldset .form-group:last-child .note,.form .form-group:last-child,.form .form-group:last-child .note{margin-bottom:0}.note{margin-top:6px;padding:0 1px;font-size:11px;line-height:15px;color:#63676a}.input-icon-right{position:relative}.input-icon-right>i,.input-icon-left>i{position:absolute;right:10px;top:30%;font-size:16px;color:#bfbfbf}.input-icon-left>i{right:auto;left:24px}.input-icon-right .form-control{padding-right:27px}.input-icon-left .form-control{padding-left:29px}input[type="text"].ui-autocomplete-loading,input[type="password"].ui-autocomplete-loading,input[type="datetime"].ui-autocomplete-loading,input[type="datetime-local"].ui-autocomplete-loading,input[type="date"].ui-autocomplete-loading,input[type="month"].ui-autocomplete-loading,input[type="time"].ui-autocomplete-loading,input[type="week"].ui-autocomplete-loading,input[type="number"].ui-autocomplete-loading,input[type="email"].ui-autocomplete-loading,input[type="url"].ui-autocomplete-loading,input[type="search"].ui-autocomplete-loading,input[type="tel"].ui-autocomplete-loading,input[type="color"].ui-autocomplete-loading{background-image:url("../img/select2-spinner.gif") !important;background-repeat:no-repeat;background-position:99% 50%;padding-right:27px}.input-group-addon .checkbox,.input-group-addon .radio{min-height:0px;margin-right:0px !important;padding-top:0}.input-group-addon label input[type="checkbox"].checkbox+span,.input-group-addon label input[type="radio"].radiobox+span,.input-group-addon label input[type="radio"].radiobox+span:before,.input-group-addon label input[type="checkbox"].checkbox+span:before{margin-right:0px}.input-group-addon .onoffswitch,.input-group-addon .onoffswitch-label{margin:0}.alert{margin-bottom:10px;margin-top:0px;padding:5px 15px 5px 34px;color:#675100;border-width:0px;border-left-width:3px;padding:10px}.alert .ui-pnotify-title{line-height:12px}.alert .ui-pnotify-text{font-size:10px}.alert .close{top:0px;right:-5px;line-height:20px}.alert-heading{font-weight:600}.alert-danger{border-color:#a52521;color:#2b2b2b;background:#f6d1d0;text-shadow:none}.alert-danger .ui-pnotify-icon{color:#a52521}.alert-warning{border-color:#e28a0d;color:#2b2b2b;background:#fdedd8}.alert-warning .ui-pnotify-icon{color:#e28a0d}.alert-success{border-color:#4f9e4f;color:#2b2b2b;background:#d1e8d1}.alert-success .ui-pnotify-icon{color:#4f9e4f}.alert-info{border-color:#316490;color:#2b2b2b;background:#abc9e2}.alert-info .ui-pnotify-icon{color:#316490}.progress-micro{height:3px !important;line-height:3px !important}.progress-xs{height:7px !important;line-height:7px !important}.progress-sm{height:14px !important;line-height:14px !important}.progress-lg{height:30px !important;line-height:30px !important}.progress .progress-bar{position:absolute;overflow:hidden;line-height:18px}.progress .progressbar-back-text{position:absolute;width:100%;height:100%;font-size:12px;line-height:20px;text-align:center}.progress .progressbar-front-text{display:block;width:100%;font-size:12px;line-height:20px;text-align:center}.progress.right .progress-bar{right:0}.progress.right .progressbar-front-text{position:absolute;right:0}.progress.vertical{width:25px;height:100%;min-height:150px;margin-right:20px;display:inline-block;margin-bottom:0px}.progress.wide-bar{width:40px}.progress.vertical.bottom{position:relative}.progress.vertical.bottom .progressbar-front-text{position:absolute;bottom:0}.progress.vertical .progress-bar{width:100%;height:0;-webkit-transition:height 0.6s ease;transition:height 0.6s ease}.progress.vertical.bottom .progress-bar{position:absolute;bottom:0}@-webkit-keyframes progress-bar-stripes{from{background-position:40px 0}to{background-position:0 0}}@-moz-keyframes progress-bar-stripes{from{background-position:40px 0}to{background-position:0 0}}@-o-keyframes progress-bar-stripes{from{background-position:0 0}to{background-position:40px 0}}@keyframes progress-bar-stripes{from{background-position:40px 0}to{background-position:0 0}}.progress{position:relative;margin-bottom:20px;overflow:hidden;height:18px;background:#adadad;box-shadow:0 1px 0 transparent,0 0 0 1px #aeb1b3 inset;-webkit-box-shadow:0 1px 0 transparent,0 0 0 1px #aeb1b3 inset;-moz-box-shadow:0 1px 0 transparent,0 0 0 1px #aeb1b3 inset;border-radius:0px;-moz-border-radius:0px;-webkit-border-radius:0px}.progress-bar{float:left;width:0;height:100%;font-size:11px;color:#fff;text-align:center;background-color:#428bca;-webkit-box-shadow:inset 0 -1px 0 rgba(0,0,0,0.15);box-shadow:inset 0 -1px 0 rgba(0,0,0,0.15);font-weight:bold;text-shadow:0 -1px 0 rgba(0,0,0,0.25);-webkit-transition:width 1.5s ease-in-out;transition:width 1.5s ease-in-out}.progress-striped .progress-bar{background-image:-webkit-gradient(linear, 0 100%, 100% 0, color-stop(0.25, rgba(255,255,255,0.15)), color-stop(0.25, transparent), color-stop(0.5, transparent), color-stop(0.5, rgba(255,255,255,0.15)), color-stop(0.75, rgba(255,255,255,0.15)), color-stop(0.75, transparent), to(transparent));background-image:-webkit-linear-gradient(45deg, rgba(255,255,255,0.15) 25%, transparent 25%, transparent 50%, rgba(255,255,255,0.15) 50%, rgba(255,255,255,0.15) 75%, transparent 75%, transparent);background-image:-moz-linear-gradient(45deg, rgba(255,255,255,0.15) 25%, transparent 25%, transparent 50%, rgba(255,255,255,0.15) 50%, rgba(255,255,255,0.15) 75%, transparent 75%, transparent);background-image:linear-gradient(45deg, rgba(255,255,255,0.15) 25%,rgba(0,0,0,0) 25%,rgba(0,0,0,0) 50%,rgba(255,255,255,0.15) 50%,rgba(255,255,255,0.15) 75%,rgba(0,0,0,0) 75%,rgba(0,0,0,0));background-size:40px 40px}.progress.active .progress-bar{-webkit-animation:progress-bar-stripes 2s linear infinite;-moz-animation:progress-bar-stripes 2s linear infinite;-ms-animation:progress-bar-stripes 2s linear infinite;-o-animation:progress-bar-stripes 2s linear infinite;animation:progress-bar-stripes 2s linear infinite}.progress-bar-danger{background-color:#a52521}.progress-striped .progress-bar-danger{background-image:-webkit-gradient(linear, 0 100%, 100% 0, color-stop(0.25, rgba(255,255,255,0.15)), color-stop(0.25, transparent), color-stop(0.5, transparent), color-stop(0.5, rgba(255,255,255,0.15)), color-stop(0.75, rgba(255,255,255,0.15)), color-stop(0.75, transparent), to(transparent));background-image:-webkit-linear-gradient(45deg, rgba(255,255,255,0.15) 25%, transparent 25%, transparent 50%, rgba(255,255,255,0.15) 50%, rgba(255,255,255,0.15) 75%, transparent 75%, transparent);background-image:-moz-linear-gradient(45deg, rgba(255,255,255,0.15) 25%, transparent 25%, transparent 50%, rgba(255,255,255,0.15) 50%, rgba(255,255,255,0.15) 75%, transparent 75%, transparent);background-image:linear-gradient(45deg, rgba(255,255,255,0.15) 25%,rgba(0,0,0,0) 25%,rgba(0,0,0,0) 50%,rgba(255,255,255,0.15) 50%,rgba(255,255,255,0.15) 75%,rgba(0,0,0,0) 75%,rgba(0,0,0,0))}.progress-bar-success{background-color:#4f9e4f}.progress-striped .progress-bar-success{background-image:-webkit-gradient(linear, 0 100%, 100% 0, color-stop(0.25, rgba(255,255,255,0.15)), color-stop(0.25, transparent), color-stop(0.5, transparent), color-stop(0.5, rgba(255,255,255,0.15)), color-stop(0.75, rgba(255,255,255,0.15)), color-stop(0.75, transparent), to(transparent));background-image:-webkit-linear-gradient(45deg, rgba(255,255,255,0.15) 25%, transparent 25%, transparent 50%, rgba(255,255,255,0.15) 50%, rgba(255,255,255,0.15) 75%, transparent 75%, transparent);background-image:-moz-linear-gradient(45deg, rgba(255,255,255,0.15) 25%, transparent 25%, transparent 50%, rgba(255,255,255,0.15) 50%, rgba(255,255,255,0.15) 75%, transparent 75%, transparent);background-image:linear-gradient(45deg, rgba(255,255,255,0.15) 25%,rgba(0,0,0,0) 25%,rgba(0,0,0,0) 50%,rgba(255,255,255,0.15) 50%,rgba(255,255,255,0.15) 75%,rgba(0,0,0,0) 75%,rgba(0,0,0,0))}.progress-bar-warning{background-color:#e28a0d}.progress-striped .progress-bar-warning{background-image:-webkit-gradient(linear, 0 100%, 100% 0, color-stop(0.25, rgba(255,255,255,0.15)), color-stop(0.25, transparent), color-stop(0.5, transparent), color-stop(0.5, rgba(255,255,255,0.15)), color-stop(0.75, rgba(255,255,255,0.15)), color-stop(0.75, transparent), to(transparent));background-image:-webkit-linear-gradient(45deg, rgba(255,255,255,0.15) 25%, transparent 25%, transparent 50%, rgba(255,255,255,0.15) 50%, rgba(255,255,255,0.15) 75%, transparent 75%, transparent);background-image:-moz-linear-gradient(45deg, rgba(255,255,255,0.15) 25%, transparent 25%, transparent 50%, rgba(255,255,255,0.15) 50%, rgba(255,255,255,0.15) 75%, transparent 75%, transparent);background-image:linear-gradient(45deg, rgba(255,255,255,0.15) 25%,rgba(0,0,0,0) 25%,rgba(0,0,0,0) 50%,rgba(255,255,255,0.15) 50%,rgba(255,255,255,0.15) 75%,rgba(0,0,0,0) 75%,rgba(0,0,0,0))}.progress-bar-info{background-color:#316490}.progress-striped .progress-bar-info{background-image:-webkit-gradient(linear, 0 100%, 100% 0, color-stop(0.25, rgba(255,255,255,0.15)), color-stop(0.25, transparent), color-stop(0.5, transparent), color-stop(0.5, rgba(255,255,255,0.15)), color-stop(0.75, rgba(255,255,255,0.15)), color-stop(0.75, transparent), to(transparent));background-image:-webkit-linear-gradient(45deg, rgba(255,255,255,0.15) 25%, transparent 25%, transparent 50%, rgba(255,255,255,0.15) 50%, rgba(255,255,255,0.15) 75%, transparent 75%, transparent);background-image:-moz-linear-gradient(45deg, rgba(255,255,255,0.15) 25%, transparent 25%, transparent 50%, rgba(255,255,255,0.15) 50%, rgba(255,255,255,0.15) 75%, transparent 75%, transparent);background-image:linear-gradient(45deg, rgba(255,255,255,0.15) 25%,rgba(0,0,0,0) 25%,rgba(0,0,0,0) 50%,rgba(255,255,255,0.15) 50%,rgba(255,255,255,0.15) 75%,rgba(0,0,0,0) 75%,rgba(0,0,0,0))}.progress-info .bar,.progress .bar-info{background:#316490}.vertical-bars{padding:0;margin:0}.vertical-bars:after{content:"";display:block;height:0;clear:both}.vertical-bars li{padding:14px 0;width:25%;display:block;float:left;text-align:center}.vertical-bars li:first-child{border-left:none}.vertical-bars>li>.progress.vertical:first-child{margin-left:auto}.vertical-bars>li>.progress.vertical{margin:0 auto;float:none}.nav-tabs{border-bottom:none}.nav-tabs>li>a .badge{font-size:11px;padding:3px 5px 3px 5px;opacity:.5;margin-left:5px;min-width:17px;font-weight:normal}.tabs-left .nav-tabs>li>a .badge{margin-right:5px;margin-left:0px}.nav-tabs>li>a .label{display:inline-block;font-size:11px;margin-left:5px;opacity:.5}.nav-tabs>li>a{color:#adadad;font-family:"Oxygen Bold","Helvetica Neue",Helvetica,Arial,sans-serif}.nav-tabs>li>a:hover{color:#1d1d1d;border-color:transparent transparent #adadad transparent;margin-top:1px;border-top-width:0}.nav-tabs>li.active>a{background-color:#adadad;color:#2b2b2b;border-top-width:0px !important;margin-top:1px !important;font-weight:bold}.tabs-left .nav-tabs>li.active>a{-webkit-box-shadow:-2px 0 0 #428bca;-moz-box-shadow:-2px 0 0 #428bca;box-shadow:-2px 0 0 #428bca;border-top-width:1px !important;border-left:none !important;margin-left:1px !important}.tabs-left .nav-pills>li.active>a{border:none !important;box-shadow:none !important;-webkit-box-shadow:none !important;-moz-box-shadow:none !important}.tabs-right .nav-tabs>li.active>a{-webkit-box-shadow:2px 0 0 #428bca;-moz-box-shadow:2px 0 0 #428bca;box-shadow:2px 0 0 #428bca;border-top-width:1px !important;border-right:none !important;margin-right:1px !important}.tabs-below .nav-tabs>li.active>a{-webkit-box-shadow:0 2px 0 #428bca;-moz-box-shadow:0 2px 0 #428bca;box-shadow:0 2px 0 #428bca;border-bottom-width:0px !important;border-top:none !important;margin-top:0px !important}.tabs-below>.nav-tabs,.tabs-right>.nav-tabs,.tabs-left>.nav-tabs{border-bottom:0}.tab-content>.tab-pane,.pill-content>.pill-pane{display:none}.tab-content>.active,.pill-content>.active{display:block}.tabs-below>.nav-tabs{border-top:1px solid #9b9b9b}.tabs-below>.nav-tabs>li{margin-top:-1px;margin-bottom:0}.tabs-left>.nav-tabs>li,.tabs-right>.nav-tabs>li,.tabs-left>.nav-pills>li,.tabs-right>.nav-pills>li{float:none}.tabs-left>.nav-tabs>li>a,.tabs-right>.nav-tabs>li>a,.tabs-left>.nav-pills>li>a,.tabs-right>.nav-pills>li>a{min-width:74px;margin-right:0;margin-bottom:3px}.tabs-left>.nav-tabs,.tabs-left>.nav-pills{float:left;margin-right:19px;border-right:1px solid #9b9b9b}.tabs-left>.nav-pills{border-right:none}.tabs-left>.nav-tabs>li>a{margin-right:-1px}.tabs-left>.nav-tabs>li>a:hover,.tabs-left>.nav-tabs>li>a:focus{border-color:#adadad #949494 #adadad #adadad}.tabs-left>.nav-tabs .active>a,.tabs-left>.nav-tabs .active>a:hover,.tabs-left>.nav-tabs .active>a:focus{border-color:#949494 transparent #949494 #9b9b9b;*border-right-color:#fff}.tabs-left>.tab-content{margin-left:109px}.tabs-right>.nav-tabs{float:right;margin-left:19px;border-left:1px solid #9b9b9b}.tabs-right>.nav-tabs>li>a{margin-left:-1px}.tabs-right>.nav-tabs>li>a:hover,.tabs-right>.nav-tabs>li>a:focus{border-color:#adadad #adadad #adadad #9b9b9b}.tabs-right>.nav-tabs .active>a,.tabs-right>.nav-tabs .active>a:hover,.tabs-right>.nav-tabs .active>a:focus{border-color:#9b9b9b #9b9b9b #9b9b9b transparent;*border-left-color:#fff}.tabs-below>.nav-tabs,.tabs-right>.nav-tabs,.tabs-left>.nav-tabs{border-bottom:0}.tab-content>.tab-pane,.pill-content>.pill-pane{display:none}.tab-content>.active,.pill-content>.active{display:block}.tabs-below>.nav-tabs{border-top:1px solid #9b9b9b}.tabs-below>.nav-tabs>li{margin-top:-1px;margin-bottom:0}.tabs-below>.nav-tabs>li>a:hover,.tabs-below>.nav-tabs>li>a:focus{border-top-color:#9b9b9b;border-bottom-color:transparent}.tabs-below>.nav-tabs>.active>a,.tabs-below>.nav-tabs>.active>a:hover,.tabs-below>.nav-tabs>.active>a:focus{border-color:transparent #9b9b9b #9b9b9b #9b9b9b}.nav-tabs.bordered{background:#fff;border:1px solid #9b9b9b}.nav-tabs.bordered>:first-child a{border-left-width:0px !important}.nav-tabs.bordered+.tab-content{border:1px solid #9b9b9b;border-top:none}.tabs-pull-right.nav-tabs>li,.tabs-pull-right.nav-pills>li{float:right}.tabs-pull-right.nav-tabs>li:first-child>a,.tabs-pull-right.nav-pills>li:first-child>a{margin-right:1px}.tabs-pull-right.bordered.nav-tabs>li:first-child>a,.tabs-pull-right.bordered.nav-pills>li:first-child>a{border-left-width:1px !important;margin-right:0px;border-right-width:0px}.dropdown-menu-xs{min-width:37px}.dropdown-menu-xs>li>a{padding:3px 10px}.dropdown-menu-xs>li>a:hover i{color:#fff !important}.dropdown-submenu{position:relative}.dropdown-submenu>.dropdown-menu{top:0;left:100%;margin-top:-6px;margin-left:-1px}.dropdown-submenu:hover>.dropdown-menu{display:block}.dropdown-submenu>a:after{display:block;content:" ";float:right;width:0;height:0;border-color:transparent;border-style:solid;border-width:5px 0 5px 5px;border-left-color:#2b2b2b;margin-top:5px;margin-right:-10px}.dropdown-submenu:hover>a:after{border-left-color:#adadad}.dropdown-submenu.pull-left{float:none}.dropdown-submenu.pull-left>.dropdown-menu{left:-100%;margin-left:10px}.pagination>li>a,.pagination>li>span{box-shadow:inset 0 -2px 0 rgba(0,0,0,0.05);-moz-box-shadow:inset 0 -2px 0 rgba(0,0,0,0.05);-webkit-box-shadow:inset 0 -2px 0 rgba(0,0,0,0.05)}.disabled{color:#fff}.btn-default.disabled,button.disabled.DTTT_button,div.disabled.DTTT_button,a.disabled.DTTT_button{color:#adadad}.btn,button.DTTT_button,div.DTTT_button,a.DTTT_button{font-family:"Oxygen Bold","Helvetica Neue",Helvetica,Arial,sans-serif;will-change:background-color, border-color;-moz-border-radius:2px;-webkit-border-radius:2px;border-radius:2px;-webkit-transition:all 0.18s ease-in-out;transition:all 0.18s ease-in-out}.btn.btn-ribbon,button.btn-ribbon.DTTT_button,div.btn-ribbon.DTTT_button,a.btn-ribbon.DTTT_button{background-color:#707070;background-image:-moz-linear-gradient(top, #777, #666);background-image:-webkit-gradient(linear, 0 0, 0 100%, from(#777), to(#666));background-image:-webkit-linear-gradient(top, #777, #666);background-image:-o-linear-gradient(top, #777, #666);background-image:linear-gradient(to bottom, #777777,#666666);background-repeat:repeat-x;filter:progid:DXImageTransform.Microsoft.gradient(startColorstr='#ff777777', endColorstr='#ff666666', GradientType=0);color:white;padding:0 5px;line-height:20px;vertical-align:middle;height:20px;display:block;border:none;float:left;margin:0 8px 0 0;cursor:pointer}.btn.btn-ribbon>i,button.btn-ribbon.DTTT_button>i,div.btn-ribbon.DTTT_button>i,a.btn-ribbon.DTTT_button>i{font-size:111%}.ribbon-button-alignment{padding-top:10px;display:inline-block}.ribbon-button-alignment.pull-right>.btn.btn-ribbon,.ribbon-button-alignment.pull-right>button.btn-ribbon.DTTT_button,.ribbon-button-alignment.pull-right>div.btn-ribbon.DTTT_button,.ribbon-button-alignment.pull-right>a.btn-ribbon.DTTT_button{margin:0 0 0 8px}.panel-purple{border-color:#6e587a}.panel-purple>.panel-heading{color:#fff;background-color:#6e587a;border-color:#6e587a}.panel-greenLight{border-color:#71843f}.panel-greenLight>.panel-heading{color:#fff;background-color:#71843f;border-color:#71843f}.panel-greenDark{border-color:#496949}.panel-greenDark>.panel-heading{color:#fff;background-color:#496949;border-color:#496949}.panel-darken{border-color:#313335}.panel-darken>.panel-heading{color:#fff;background-color:#404040;border-color:#404040}.panel-pink{border-color:#e06fdf}.panel-pink>.panel-heading{color:#fff;background-color:#e06fdf;border-color:#e06fdf}.panel-green{border-color:#5cb85c}.panel-green>.panel-heading{color:#fff;background-color:#5cb85c;border-color:#5cb85c}.panel-blueLight{border-color:#92a2a8}.panel-blueLight>.panel-heading{color:#fff;background-color:#92a2a8;border-color:#92a2a8}.panel-pinkDark{border-color:#a8829f}.panel-pinkDark>.panel-heading{color:#fff;background-color:#a8829f;border-color:#a8829f}.panel-redLight{border-color:#a65858}.panel-redLight>.panel-heading{color:#fff;background-color:#a65858;border-color:#a65858}.panel-red{border-color:#d9534f}.panel-red>.panel-heading{color:#fff;background-color:#d9534f;border-color:#d9534f}.panel-teal{border-color:#568a89}.panel-teal>.panel-heading{color:#fff;background-color:#568a89;border-color:#568a89}.panel-orange{border-color:#e28a0d}.panel-orange>.panel-heading{color:#fff;background-color:#e28a0d;border-color:#e28a0d}.panel-blueDark{border-color:#4c4f53}.panel-blueDark>.panel-heading{color:#fff;background-color:#4c4f53;border-color:#4c4f53}.panel-magenta{border-color:#6e3671}.panel-magenta>.panel-heading{color:#fff;background-color:#6e3671;border-color:#6e3671}.panel-blue{border-color:#428bca}.panel-blue>.panel-heading{color:#fff;background-color:#428bca;border-color:#428bca}.panel-footer>.btn-block{border-radius:0px;-moz-border-radius:0px;-webkit-border-radius:0px;border-bottom:none;border-left:none;border-right:none}.btn-circle{width:30px;height:30px;text-align:center;padding:6px 0;font-size:12px;line-height:18px;border-radius:50%;-moz-border-radius:50%;-webkit-border-radius:50%;-webkit-box-shadow:0 1px 6px 0 rgba(0,0,0,0.12),0 1px 6px 0 rgba(0,0,0,0.12);box-shadow:0 1px 6px 0 rgba(0,0,0,0.12),0 1px 6px 0 rgba(0,0,0,0.12)}.btn-circle.btn-sm,.btn-group-sm>.btn-circle.btn,button.btn-circle.DTTT_button,div.btn-circle.DTTT_button,a.btn-circle.DTTT_button{width:22px;height:22px;padding:4px 0;font-size:12px;line-height:14px;border-radius:50%;-moz-border-radius:50%;-webkit-border-radius:50%}.btn-circle.btn-lg,.btn-group-lg>.btn-circle.btn,.btn-group-lg>button.btn-circle.DTTT_button,.btn-group-lg>div.btn-circle.DTTT_button,.btn-group-lg>a.btn-circle.DTTT_button{width:50px;height:50px;padding:10px 15px;font-size:18px;line-height:30px;border-radius:50%;-moz-border-radius:50%;-webkit-border-radius:50%}.btn-circle.btn-xl{width:70px;height:70px;padding:10px 15px;font-size:24px;line-height:50px;border-radius:50%;-moz-border-radius:50%;-webkit-border-radius:50%}.btn-metro{margin:0 0 20px;padding-top:15px;padding-bottom:15px}.btn-metro>span{display:block;vertical-align:bottom;margin-top:10px;text-transform:uppercase}.btn-metro>span.label{position:absolute;top:0px;right:0px}.btn-label{position:relative;left:-8px;display:inline-block;padding:5px 8px;background:rgba(0,0,0,0.15);border-radius:3px 0 0 3px}.btn-labeled{padding-top:0;padding-bottom:0}.btn-link{box-shadow:none;-webkit-box-shadow:none;font-size:13px}.morris-hover.morris-default-style{border-radius:5px;padding:5px;color:#666;background:rgba(29,29,29,0.9);border:solid 2px #375959;font-family:'Oxygen Bold';font-size:10px;text-align:left;-webkit-box-shadow:0 6px 12px rgba(0,0,0,0.4);box-shadow:0 6px 12px rgba(0,0,0,0.4)}.morris-hover.morris-default-style .morris-hover-row-label{font-weight:bold}.morris-hover.morris-default-style .morris-hover-point{white-space:nowrap}.morris-hover{position:absolute;z-index:903}.fixed-page-footer .morris-hover{z-index:900}.txt-color.txt-color-blue,.txt-color-blue.pf-help,.pf-help:hover,.pf-landing .pf-landing-list li i.pf-help:hover,.pf-landing .pf-landing-list li i.txt-color-blue{color:#428bca !important}.txt-color.txt-color-blueLight,.txt-color-blueLight.pf-help,.pf-landing .pf-landing-list li i.txt-color-blueLight{color:#92a2a8 !important}.txt-color.txt-color-blueDark,.txt-color-blueDark.pf-help,.pf-landing .pf-landing-list li i.txt-color-blueDark{color:#4c4f53 !important}.txt-color.txt-color-grayLightest,.txt-color-grayLightest.pf-help,.pf-landing .pf-landing-list li i.txt-color-grayLightest{color:#eaeaea !important}.txt-color.txt-color-grayLighter,.txt-color-grayLighter.pf-help,.pf-landing .pf-landing-list li i.txt-color-grayLighter{color:#adadad !important}.txt-color.txt-color-grayLight,.txt-color-grayLight.pf-help,.pf-landing .pf-landing-list li i.txt-color-grayLight{color:#63676a !important}.txt-color.txt-color-gray,.pf-help,.pf-landing .pf-landing-list li i.txt-color-gray,.pf-landing .pf-landing-list li i.pf-help{color:#3c3f41 !important}.txt-color.txt-color-grayDark,.txt-color-grayDark.pf-help,.pf-landing .pf-landing-list li i.txt-color-grayDark{color:#313335 !important}.txt-color.txt-color-greenLight,.txt-color-greenLight.pf-help,.pf-landing .pf-landing-list li i.txt-color-greenLight{color:#66c84f !important}.txt-color.txt-color-green,.txt-color-green.pf-help,.pf-help.pf-log-info,.txt-color.pf-log-info,.pf-landing .pf-landing-list li i.pf-log-info,.pf-landing .pf-landing-list li i.txt-color-green{color:#5cb85c !important}.txt-color.txt-color-greenDark,.txt-color-greenDark.pf-help,.pf-landing .pf-landing-list li i.txt-color-greenDark{color:#4f9e4f !important}.txt-color.txt-color-redLight,.txt-color-redLight.pf-help,.pf-landing .pf-landing-list li i.txt-color-redLight{color:#a65858 !important}.txt-color.txt-color-red,.txt-color-red.pf-help,.pf-help.pf-log-error,.txt-color.pf-log-error,.pf-landing .pf-landing-list li i.pf-log-error,.pf-landing .pf-landing-list li i.txt-color-red{color:#d9534f !important}.txt-color.txt-color-redDarker,.txt-color-redDarker.pf-help,.pf-landing .pf-landing-list li i.txt-color-redDarker{color:#a52521 !important}.txt-color.txt-color-yellow,.txt-color-yellow.pf-help,.pf-landing .pf-landing-list li i.txt-color-yellow{color:#b09b5b !important}.txt-color.txt-color-orange,.txt-color-orange.pf-help,.pf-landing .pf-landing-list li i.txt-color-orange{color:#e28a0d !important}.txt-color.txt-color-orangeDark,.txt-color-orangeDark.pf-help,.pf-landing .pf-landing-list li i.txt-color-orangeDark{color:#c2760c !important}.txt-color.txt-color-pink,.txt-color-pink.pf-help,.pf-landing .pf-landing-list li i.txt-color-pink{color:#e06fdf !important}.txt-color.txt-color-pinkDark,.txt-color-pinkDark.pf-help,.pf-landing .pf-landing-list li i.txt-color-pinkDark{color:#a8829f !important}.txt-color.txt-color-purple,.txt-color-purple.pf-help,.pf-landing .pf-landing-list li i.txt-color-purple{color:#6e587a !important}.txt-color.txt-color-darken,.txt-color-darken.pf-help,.pf-landing .pf-landing-list li i.txt-color-darken{color:#404040 !important}.txt-color.txt-color-lighten,.txt-color-lighten.pf-help,.pf-landing .pf-landing-list li i.txt-color-lighten{color:#d5e7ec !important}.txt-color.txt-color-white,.txt-color-white.pf-help,.pf-landing .pf-landing-list li i.txt-color-white{color:#fff !important}.txt-color.txt-color-magenta,.txt-color-magenta.pf-help,.pf-landing .pf-landing-list li i.txt-color-magenta{color:#6e3671 !important}.txt-color.txt-color-tealLighter,.txt-color-tealLighter.pf-help,.pf-landing .pf-landing-list li i{color:#568a89 !important}.txt-color.txt-color-indigoDark,.txt-color-indigoDark.pf-help,.pf-landing .pf-landing-list li i.txt-color-indigoDark{color:#5c6bc0 !important}.txt-color.txt-color-indigoDarkest,.txt-color-indigoDarkest.pf-help,.pf-landing .pf-landing-list li i.txt-color-indigoDarkest{color:#313966 !important}.txt-color.txt-color-primary,.txt-color-primary.pf-help,.pf-landing .pf-landing-list li i.txt-color-primary{color:#375959 !important}.txt-color.txt-color-success,.txt-color-success.pf-help,.pf-landing .pf-landing-list li i.txt-color-success{color:#4f9e4f !important}.txt-color.txt-color-information,.txt-color-information.pf-help,.pf-landing .pf-landing-list li i.txt-color-information{color:#316490 !important}.txt-color.txt-color-warning,.txt-color-warning.pf-help,.pf-help.pf-log-warning,.txt-color.pf-log-warning,.pf-landing .pf-landing-list li i.pf-log-warning,.pf-landing .pf-landing-list li i.txt-color-warning{color:#e28a0d !important}.txt-color.txt-color-danger,.txt-color-danger.pf-help,.pf-landing .pf-landing-list li i.txt-color-danger{color:#a52521 !important}.bg-color.bg-color-blue{background-color:#428bca !important}.bg-color.bg-color-blueLight{background-color:#92a2a8 !important}.bg-color.bg-color-blueDark{background-color:#4c4f53 !important}.bg-color.bg-color-green{background-color:#5cb85c !important}.bg-color.bg-color-greenLight{background-color:#71843f !important}.bg-color.bg-color-greenDark{background-color:#496949 !important}.bg-color.bg-color-red{background-color:#d9534f !important}.bg-color.bg-color-yellow{background-color:#b09b5b !important}.bg-color.bg-color-orange{background-color:#e28a0d !important}.bg-color.bg-color-orangeDark{background-color:#c2760c !important}.bg-color.bg-color-pink{background-color:#e06fdf !important}.bg-color.bg-color-pinkDark{background-color:#a8829f !important}.bg-color.bg-color-purple{background-color:#6e587a !important}.bg-color.bg-color-darken{background-color:#404040 !important}.bg-color.bg-color-lighten{background-color:#d5e7ec !important}.bg-color.bg-color-white{background-color:#fff !important}.bg-color.bg-color-grayDark{background-color:#525252 !important}.bg-color.bg-color-magenta{background-color:#6e3671 !important}.bg-color.bg-color-tealLighter{background-color:#568a89 !important}.bg-color.bg-color-redLight{background-color:#a65858 !important}body{-webkit-touch-callout:none;-webkit-user-select:none;-khtml-user-select:none;-moz-user-select:none;-ms-user-select:none;user-select:none}.pf-body{overflow:hidden}a{color:#477372;will-change:color;text-decoration:none;-webkit-transition:color 0.08s ease-out;transition:color 0.08s ease-out}a:hover{color:#6caead;text-decoration:none}a:focus{color:#477372}em{font-style:italic}em.pf-brand{text-transform:uppercase}.pf-font-capitalize{text-transform:capitalize}.no-padding{padding:0 !important}.pf-help{cursor:pointer;cursor:help;-webkit-transition:color 0.08s ease-out;transition:color 0.08s ease-out}.pf-dialog-icon-button,.pf-sig-table-module .pf-sig-table .pf-sig-table-edit-desc-text.editable-empty,.pf-sig-table-module .pf-sig-table .fa-plus{cursor:pointer;-webkit-transition:color 0.15s ease-out;transition:color 0.15s ease-out}.pf-dialog-icon-button:not(.collapsed),.pf-sig-table-module .pf-sig-table .pf-sig-table-edit-desc-text.editable-empty:not(.collapsed),.pf-sig-table-module .pf-sig-table .fa-plus:not(.collapsed),.pf-dialog-icon-button:hover,.pf-sig-table-module .pf-sig-table .pf-sig-table-edit-desc-text.editable-empty:hover,.pf-sig-table-module .pf-sig-table .fa-plus:hover{color:#e28a0d}.pf-module-icon-button{cursor:pointer;-webkit-transition:color 0.15s ease-out;transition:color 0.15s ease-out}.pf-module-icon-button:hover{color:#e28a0d}.alert{will-change:opacity, transform}.editable-input optgroup[label]{background-color:#3c3f41;color:#63676a}.editable-input optgroup[label] option{background-color:#313335;color:#adadad;font-family:Consolas,monospace,Menlo,Monaco,"Courier New"}select:active,select:hover{outline:none}select:active,select:hover{outline-color:red}.select2-results [class*="col-"]{line-height:22px}.select2 ::-webkit-search-cancel-button{-webkit-appearance:none !important}.select2 .select2-selection__choice__remove{float:left}.select2 .select2-selection--multiple input{box-shadow:none !important}.dataTable th.pf-table-image-cell,.dataTable th.pf-table-image-small-cell{padding-left:0 !important;padding-right:0 !important}.dataTable th.sorting,.dataTable th.sorting_asc,.dataTable th.sorting_desc{padding-right:18px !important}.dataTable td.pf-table-action-cell{cursor:pointer}.dataTable td.pf-table-image-cell{padding:0 !important}.dataTable td.pf-table-image-cell img{width:26px;border-left:1px solid #3c3f41;border-right:1px solid #3c3f41}.dataTable td.pf-table-image-small-cell img{width:24px;border-left:1px solid transparent;border-right:1px solid transparent}.dataTable td.pf-table-counter-cell{color:#63676a}.dataTable td.pf-table-counter-cell .pf-digit-counter-small{width:20px;display:inline-block;font-size:10px}.dataTable td.pf-table-counter-cell .pf-digit-counter-large{width:26px;display:inline-block;font-size:10px}.pf-table-tools{height:45px}.pf-table-tools .btn:not(:last-child),.pf-table-tools button.DTTT_button:not(:last-child),.pf-table-tools div.DTTT_button:not(:last-child),.pf-table-tools a.DTTT_button:not(:last-child){margin-right:10px}.pf-table-tools-action{will-change:height, opacity, display;opacity:0;display:none;height:0;visibility:hidden}.pf-loading-overlay{position:absolute;width:100%;height:100%;top:0;left:0;opacity:0;background:#2b2b2b;z-index:1060;-moz-border-radius:5px;-webkit-border-radius:5px;border-radius:5px}.pf-loading-overlay .pf-loading-overlay-wrapper{width:25px;height:25px;margin:auto;text-align:center;position:absolute;top:0;left:0;bottom:0;right:0}.pf-loading-overlay .pf-loading-overlay-wrapper i{padding:3px}.navbar-nav li:hover:before,.navbar-nav li.active:before{top:-4px;opacity:1}.navbar-nav li:before{content:'';position:absolute;width:100%;height:2px;background-color:#5cb85c;top:0;opacity:0;will-change:opacity, top;-webkit-transition:top 0.15s ease-out,opacity 0.15s ease-out;transition:top 0.15s ease-out,opacity 0.15s ease-out}.pf-site{will-change:transform}.sb-slidebar{will-change:transform}.sb-left .list-group-item{-webkit-box-shadow:inset -10px 0px 5px -5px rgba(0,0,0,0.4);box-shadow:inset -10px 0px 5px -5px rgba(0,0,0,0.4)}.sb-right .list-group-item{-webkit-box-shadow:inset 10px 0px 5px -5px rgba(0,0,0,0.4);box-shadow:inset 10px 0px 5px -5px rgba(0,0,0,0.4)}.mCSB_container,.mCSB_dragger{will-change:top, left}.pf-map-type-private{color:#7986cb}.pf-map-type-corporation{color:#5cb85c}.pf-map-type-alliance{color:#428bca}.pf-map-type-global{color:#568a89}#pf-map-module{margin:20px 10px 0 10px}#pf-map-module #pf-map-tabs .pf-map-type-tab-default{border-top:2px solid transparent}#pf-map-module #pf-map-tabs .pf-map-type-tab-private{border-top:2px solid #7986cb}#pf-map-module #pf-map-tabs .pf-map-type-tab-corporation{border-top:2px solid #5cb85c}#pf-map-module #pf-map-tabs .pf-map-type-tab-alliance{border-top:2px solid #428bca}#pf-map-module #pf-map-tabs .pf-map-type-tab-global{border-top:2px solid #568a89}#pf-map-module #pf-map-tabs .pf-map-tab-icon{margin-right:5px}#pf-map-module #pf-map-tabs .pf-map-tab-shared-icon{margin-left:5px}.pf-map-content-row{margin-top:10px;padding-bottom:40px}.pf-map-content-row .pf-module{font-family:"Oxygen Bold","Helvetica Neue",Helvetica,Arial,sans-serif;background:rgba(60,63,65,0.3);padding:10px;width:100%;margin-bottom:10px;will-change:height, transform, opacity;overflow:hidden;-moz-border-radius:5px;-webkit-border-radius:5px;border-radius:5px}.pf-map-content-row .pf-module:before{content:'';position:absolute;top:0;left:0;border-style:solid;border-width:0 0 6px 6px;border-color:transparent transparent transparent #3c3f41;cursor:pointer}.pf-map-content-row .pf-module .label{margin-bottom:10px}.pf-map-content-row .pf-module .pf-dynamic-area{background:rgba(43,43,43,0.4)}.pf-user-status{color:#a52521}.pf-user-status-corp{color:#5cb85c}.pf-user-status-ally{color:#428bca}.pf-user-status-own{color:#7986cb}.pf-system-effect{display:none;cursor:default;color:#adadad}.pf-system-effect-magnetar{color:#e06fdf;display:inline-block}.pf-system-effect-redgiant{color:#d9534f;display:inline-block}.pf-system-effect-pulsar{color:#428bca;display:inline-block}.pf-system-effect-wolfrayet{color:#e28a0d;display:inline-block}.pf-system-effect-cataclysmic{color:#ffb;display:inline-block}.pf-system-effect-blackhole{color:#000;display:inline-block}.pf-system-info-rally .pf-system-head{background-color:#782d77;background-image:url('data:image/svg+xml;base64,PD94bWwgdmVyc2lvbj0iMS4wIiBlbmNvZGluZz0idXRmLTgiPz4gPHN2ZyB2ZXJzaW9uPSIxLjEiIHhtbG5zPSJodHRwOi8vd3d3LnczLm9yZy8yMDAwL3N2ZyI+PGRlZnM+PGxpbmVhckdyYWRpZW50IGlkPSJncmFkIiBncmFkaWVudFVuaXRzPSJvYmplY3RCb3VuZGluZ0JveCIgeDE9IjEuMCIgeTE9IjEuMCIgeDI9IjAuMCIgeTI9IjAuMCI+PHN0b3Agb2Zmc2V0PSIyNSUiIHN0b3AtY29sb3I9IiMzZTI2NGUiLz48c3RvcCBvZmZzZXQ9IjI1JSIgc3RvcC1jb2xvcj0iIzAwMDAwMCIgc3RvcC1vcGFjaXR5PSIwLjAiLz48c3RvcCBvZmZzZXQ9IjUwJSIgc3RvcC1jb2xvcj0iIzAwMDAwMCIgc3RvcC1vcGFjaXR5PSIwLjAiLz48c3RvcCBvZmZzZXQ9IjUwJSIgc3RvcC1jb2xvcj0iIzNlMjY0ZSIvPjxzdG9wIG9mZnNldD0iNzUlIiBzdG9wLWNvbG9yPSIjM2UyNjRlIi8+PHN0b3Agb2Zmc2V0PSI3NSUiIHN0b3AtY29sb3I9IiMwMDAwMDAiIHN0b3Atb3BhY2l0eT0iMC4wIi8+PHN0b3Agb2Zmc2V0PSIxMDAlIiBzdG9wLWNvbG9yPSIjMDAwMDAwIiBzdG9wLW9wYWNpdHk9IjAuMCIvPjwvbGluZWFyR3JhZGllbnQ+PC9kZWZzPjxyZWN0IHg9IjAiIHk9IjAiIHdpZHRoPSIxMDAlIiBoZWlnaHQ9IjEwMCUiIGZpbGw9InVybCgjZ3JhZCkiIC8+PC9zdmc+IA==');background-size:100%;background-image:-moz-linear-gradient(135deg, #3e264e 25%,rgba(0,0,0,0) 25%,rgba(0,0,0,0) 50%,#3e264e 50%,#3e264e 75%,rgba(0,0,0,0) 75%,rgba(0,0,0,0));background-image:-webkit-linear-gradient(135deg, #3e264e 25%,rgba(0,0,0,0) 25%,rgba(0,0,0,0) 50%,#3e264e 50%,#3e264e 75%,rgba(0,0,0,0) 75%,rgba(0,0,0,0));background-image:linear-gradient(-45deg, #3e264e 25%,rgba(0,0,0,0) 25%,rgba(0,0,0,0) 50%,#3e264e 50%,#3e264e 75%,rgba(0,0,0,0) 75%,rgba(0,0,0,0));background-size:25px 25px;-webkit-animation:move 3s linear infinite;-moz-animation:move 3s linear infinite;-ms-animation:move 3s linear infinite;animation:move 3s linear infinite}.pf-system-security-0-0{color:#be0000}.pf-system-security-0-1{color:#ab2600}.pf-system-security-0-2{color:#be3900}.pf-system-security-0-3{color:#c24e02}.pf-system-security-0-4{color:#ab5f00}.pf-system-security-0-5{color:#bebe00}.pf-system-security-0-6{color:#73bf26}.pf-system-security-0-7{color:#00bf00}.pf-system-security-0-8{color:#00bf39}.pf-system-security-0-9{color:#39bf99}.pf-system-security-1-0{color:#28c0bf}.pf-system-sec{margin-right:5px;cursor:-moz-grab;cursor:-webkit-grab}.pf-system-sec-highSec{color:#5cb85c}.pf-system-sec-lowSec{color:#e28a0d}.pf-system-sec-nullSec{color:#d9534f}.pf-system-sec-high{color:#d9534f}.pf-system-sec-mid{color:#e28a0d}.pf-system-sec-low{color:#428bca}.pf-system-sec-unknown{color:#7986cb}.pf-system-status-friendly{border-color:#428bca !important;color:#428bca}.pf-system-status-occupied{border-color:#e28a0d !important;color:#e28a0d}.pf-system-status-hostile{border-color:#d9534f !important;color:#d9534f}.pf-system-status-empty{border-color:#5cb85c !important;color:#5cb85c}.pf-system-status-unscanned{border-color:#568a89 !important;color:#568a89}.pf-system-info-status-label{background-color:#63676a;color:#000;will-change:background-color;-webkit-transition:background-color 0.5s ease-out;transition:background-color 0.5s ease-out}.pf-system-info-status-label.pf-system-status-friendly{background-color:#428bca}.pf-system-info-status-label.pf-system-status-occupied{background-color:#e28a0d}.pf-system-info-status-label.pf-system-status-hostile{background-color:#d9534f}.pf-system-info-status-label.pf-system-status-empty{background-color:#5cb85c}.pf-system-info-status-label.pf-system-status-unscanned{background-color:#568a89}.pf-system-effect-dialog-wrapper .table,.pf-jump-info-dialog .table{margin:15px 0}.pf-system-effect-dialog-wrapper .table td,.pf-jump-info-dialog .table td{text-transform:capitalize}.pf-fake-connection{box-sizing:content-box;display:inline-block;width:70px;height:4px;margin-right:5px;border-top:2px solid #63676a;border-bottom:2px solid #63676a;background-color:#3c3f41;position:relative;font-family:"Oxygen","Helvetica Neue",Helvetica,Arial,sans-serif}.pf-fake-connection.pf-map-connection-stargate{background-color:#313966;border-color:#63676a}.pf-fake-connection.pf-map-connection-jumpbridge{background-color:#6caead;border-color:#3c3f41;background:repeating-linear-gradient(to right, #6caead, #6caead 10px, #3c3f41 10px, #3c3f41 20px)}.pf-fake-connection.pf-map-connection-wh-eol{border-color:#d747d6}.pf-fake-connection.pf-map-connection-wh-reduced{background-color:#e28a0d}.pf-fake-connection.pf-map-connection-wh-critical{background-color:#a52521}.pf-fake-connection.pf-map-connection-frig{border-style:dashed;border-left:none;border-right:none}.pf-fake-connection.pf-map-connection-frig:after{content:'frig';background-color:#e28a0d;color:#1d1d1d;padding:0px 3px;position:absolute;left:25px;top:-6px;font-family:"Oxygen Bold","Helvetica Neue",Helvetica,Arial,sans-serif;-moz-border-radius:3px;-webkit-border-radius:3px;border-radius:3px}.pf-fake-connection.pf-map-connection-preserve-mass:after{content:'save mass';background-color:#a52521;color:#eaeaea;padding:0px 3px;position:absolute;left:9px;top:-6px;font-family:"Oxygen Bold","Helvetica Neue",Helvetica,Arial,sans-serif;-moz-border-radius:3px;-webkit-border-radius:3px;border-radius:3px}.tooltip-inner{color:#5cb85c;background-color:#3c3f41;font-family:"Oxygen Bold","Helvetica Neue",Helvetica,Arial,sans-serif;padding:5px 5px;-moz-border-radius:3px;-webkit-border-radius:3px;border-radius:3px;-webkit-box-shadow:0 6px 12px rgba(0,0,0,0.4);box-shadow:0 6px 12px rgba(0,0,0,0.4)}.modal .tooltip{z-index:1060}.modal .tooltip .tooltip-inner{color:#313335;background-color:#adadad}.tooltip.top .tooltip-arrow{border-top-color:#63676a}.tooltip.right .tooltip-arrow{border-right-color:#63676a}.tooltip.bottom .tooltip-arrow{border-bottom-color:#63676a}.tooltip.left .tooltip-arrow{border-left-color:#63676a}.popover{z-index:1060}.popover img{-moz-border-radius:5px;-webkit-border-radius:5px;border-radius:5px}.popover h4{color:#adadad}.popover table{color:#adadad;font-family:"Oxygen Bold","Helvetica Neue",Helvetica,Arial,sans-serif;line-height:16px;font-size:11px}.popover table td{padding:0 5px}.pf-dynamic-area{padding:10px;min-height:100px;position:relative;background-color:#313335;overflow:hidden;-moz-border-radius:5px;-webkit-border-radius:5px;border-radius:5px}.pf-dynamic-area .dl-horizontal{margin-bottom:0}.pf-dynamic-area .dl-horizontal dd{min-width:100px}#pf-logo-wrapper{display:block}#pf-head{margin-bottom:0px}#pf-head a{-webkit-transition:color 0.15s ease-out;transition:color 0.15s ease-out;will-change:color}#pf-head a:focus{color:#477372}#pf-head a:focus img{border-color:#3c3f41}#pf-head a:hover{text-decoration:none}#pf-head a:hover .badge{color:#6caead}#pf-head a:hover img{border-color:#568a89}#pf-head i{margin-right:2px}#pf-head .pf-brand-desc{margin:6px 10px 0 90px;width:180px}#pf-head .pf-head-menu{padding:3px 10px;line-height:24px}#pf-head .pf-head-menu .pf-head-menu-logo{width:24px;height:24px;display:inline-block;float:left}#pf-head .badge{background-color:#3c3f41;color:#adadad}#pf-head .pf-head-user-character,#pf-head .pf-head-user-ship{opacity:0;visibility:hidden}#pf-head .pf-head-active-user,#pf-head .pf-head-current-location{display:none}#pf-head .pf-head-active-user .badge,#pf-head .pf-head-current-location .badge{-webkit-transition:color 0.3s ease-out;transition:color 0.3s ease-out}#pf-head .pf-head-user-character-image,#pf-head .pf-head-user-ship-image{display:inline-block;margin-top:-6px;margin-bottom:-6px;width:27px;border:1px solid #3c3f41;margin-right:3px;-webkit-transition:border-color 0.15s ease-out;transition:border-color 0.15s ease-out;will-change:border-color}#pf-head .pf-head-program-status{cursor:pointer}#pf-head .navbar-text{min-width:60px}#pf-head .tooltip .tooltip-inner{color:#adadad}.pf-head{-webkit-box-shadow:0 6px 12px rgba(0,0,0,0.4);box-shadow:0 6px 12px rgba(0,0,0,0.4)}#pf-footer{position:absolute;bottom:0;left:0;width:100%;margin:0;background:rgba(60,63,65,0.3)}#pf-footer a{font-family:"Oxygen Bold","Helvetica Neue",Helvetica,Arial,sans-serif;color:#375959}#pf-footer a:hover{color:#477372;text-decoration:none}@-webkit-keyframes move{0%{background-position:0 0}100%{background-position:50px 50px}}@-moz-keyframes move{0%{background-position:0 0}100%{background-position:50px 50px}}@-ms-keyframes move{0%{background-position:0 0}100%{background-position:50px 50px}}@keyframes move{0%{background-position:0 0}100%{background-position:50px 50px}}.pf-animate{visibility:hidden;opacity:0}.pf-color-line{height:3px;background-image:url('data:image/svg+xml;base64,PD94bWwgdmVyc2lvbj0iMS4wIiBlbmNvZGluZz0idXRmLTgiPz4gPHN2ZyB2ZXJzaW9uPSIxLjEiIHhtbG5zPSJodHRwOi8vd3d3LnczLm9yZy8yMDAwL3N2ZyI+PGRlZnM+PGxpbmVhckdyYWRpZW50IGlkPSJncmFkIiBncmFkaWVudFVuaXRzPSJvYmplY3RCb3VuZGluZ0JveCIgeDE9IjAuMCIgeTE9IjAuNSIgeDI9IjEuMCIgeTI9IjAuNSI+PHN0b3Agb2Zmc2V0PSIwJSIgc3RvcC1jb2xvcj0iIzY2Yzg0ZiIvPjxzdG9wIG9mZnNldD0iMTAwJSIgc3RvcC1jb2xvcj0iIzY2Yzg0ZiIvPjwvbGluZWFyR3JhZGllbnQ+PC9kZWZzPjxyZWN0IHg9IjAiIHk9IjAiIHdpZHRoPSIxMDAlIiBoZWlnaHQ9IjEwMCUiIGZpbGw9InVybCgjZ3JhZCkiIC8+PC9zdmc+IA==');background-size:100%;background-image:-webkit-gradient(linear, 0% 50%, 100% 50%, color-stop(0%, #66c84f),color-stop(100%, #66c84f));background-image:-moz-linear-gradient(left, #66c84f,#66c84f 100%);background-image:-webkit-linear-gradient(left, #66c84f,#66c84f 100%);background-image:linear-gradient(to right, #66c84f,#66c84f 100%)}.pf-splash{position:absolute;z-index:2000;background-color:#1d1d1d;color:#63676a;top:0;bottom:0;left:0;right:0;will-change:opacity}.pf-splash .pf-splash-title{text-align:center;max-width:500px;margin:15% auto;padding:20px}@media (max-width: 1200px){.pf-landing #pf-logo-container{margin:5px auto}.pf-landing .pf-brand-desc{display:none}.pf-landing .navbar .navbar-brand{margin-left:10px}}.pf-landing section{min-height:200px;padding:20px 0 40px 0;border-bottom:1px solid #2b2b2b}.pf-landing section h4{font-size:18px;font-family:"Oxygen","Helvetica Neue",Helvetica,Arial,sans-serif;margin:5px 0 10px 0;border-bottom:1px solid #2b2b2b;line-height:34px}.pf-landing .container>.row{margin-bottom:30px}.pf-landing .alert{box-shadow:0 4px 10px rgba(0,0,0,0.4)}.pf-landing a[data-gallery]{position:relative}.pf-landing a[data-gallery]:before{content:'\f002';font-family:'FontAwesome';font-size:20px;line-height:20px;color:#e28a0d;position:absolute;top:9px;left:8px;height:100%;width:100%;padding-top:calc(50% - 10px);z-index:10;text-align:center;-webkit-transition:transform 0.1s 0.06s ease-in,opacity 0.1s ease-out;transition:transform 0.1s 0.06s ease-in,opacity 0.1s ease-out;will-change:transform, opacity;transform:scale(0, 0);opacity:0}.pf-landing a[data-gallery]:hover img{border-color:#6caead;-webkit-filter:brightness(50%);filter:brightness(50%)}.pf-landing a[data-gallery]:hover:before{-webkit-transition-delay:0.1s;transition-delay:0.1s;transform:scale(1, 1);opacity:1}.pf-landing a[data-gallery] .pf-landing-image-preview{border-width:1px;border-style:solid;border-color:#1d1d1d;margin:5px 0 15px 0;display:inline-block;will-change:all;-webkit-filter:brightness(100%);filter:brightness(100%);-webkit-transition:all 0.2s ease-out;transition:all 0.2s ease-out;-webkit-box-shadow:0 4px 10px rgba(0,0,0,0.4);box-shadow:0 4px 10px rgba(0,0,0,0.4)}.pf-landing a[data-gallery] .pf-landing-image-preview.pf-landing-image-preview-small{height:160px}.pf-landing a[data-gallery] .pf-landing-image-preview.pf-landing-image-preview-medium{height:256px}#pf-landing-top{height:450px;border-bottom:1px solid #313335;position:relative}#pf-landing-top:before{content:'';width:100%;height:100%;position:absolute;background:url("../img/pf-bg.jpg") #05050a;background-repeat:no-repeat;background-position:0 0;-webkit-filter:brightness(0.9);filter:brightness(0.9)}#pf-landing-top.pf-logo-fallback{height:370px}#pf-landing-top.pf-logo-fallback:after{content:'';width:100%;height:100%;position:absolute;background:url("../img/logo_alpha.png");background-repeat:no-repeat;background-position:50% 0;margin-top:50px}#pf-landing-top #pf-header-container{position:absolute;width:100%;background-position:center center}#pf-landing-top #pf-header-container #pf-header-canvas{position:absolute;visibility:hidden;top:0;left:0}#pf-landing-top #pf-header-container #pf-logo-container{z-index:110}#pf-landing-top #pf-header-container #pf-header-preview-container{position:absolute;left:400px;width:590px;height:350px;top:92px}#pf-landing-top #pf-header-container #pf-header-preview-container .pf-header-preview-element{position:relative;margin-left:12px;margin-top:12px;height:155px;width:180px;padding:7px;opacity:0;will-change:opacity, transform;-moz-border-radius:5px;-webkit-border-radius:5px;border-radius:5px;background-color:rgba(43,43,43,0.5)}#pf-landing-top #pf-header-container #pf-header-preview-container .pf-header-preview-element:nth-child(n+4){box-shadow:0 4px 10px rgba(0,0,0,0.4)}#pf-landing-top #pf-header-container #pf-header-preview-container .pf-header-preview-element:after{content:'';position:absolute;width:calc(100% - 14px);height:calc(100% - 14px);-moz-border-radius:3px;-webkit-border-radius:3px;border-radius:3px;background-repeat:no-repeat;background-position:50% 50%;background-color:rgba(29,29,29,0.75)}#pf-landing-top .container{position:relative;margin-top:50px}#pf-header-preview-intel:after{background-image:url("../img/landing/intel.png")}#pf-header-preview-map:after{background-image:url("../img/landing/map.png")}#pf-header-preview-scope:after{background-image:url("../img/landing/scope.png")}#pf-header-preview-signature:after{background-image:url("../img/landing/signature.png")}#pf-header-preview-data:after{background-image:url("../img/landing/data.png")}#pf-header-preview-gameplay:after{background-image:url("../img/landing/gameplay.png")}#pf-landing-login{padding-top:40px}#pf-landing-login .row{margin-bottom:0px}#pf-header-map{position:relative;margin:0 auto;height:380px;width:600px;pointer-events:none}#pf-header-map .pf-header-svg-layer{position:absolute;top:0;left:0;right:0;bottom:0}#pf-header-map #pf-header-systems{z-index:100}#pf-header-map #pf-header-connectors{z-index:90}#pf-header-map #pf-header-connections{z-index:80}#pf-header-map #pf-header-background{z-index:70}#pf-header-map #pf-header-background .pf-header-system{display:none}#pf-header-map-bg{position:absolute;left:0;top:0;width:100%;height:100%;pointer-events:none}#pf-header-map-bg img{pointer-events:none}#pf-header-map-bg #pf-map-bg-image{opacity:0;position:absolute;bottom:0;right:0;width:100%;height:100%}#pf-header-map-bg #pf-map-neocom{opacity:0;height:665px;width:21px}#pf-header-map-bg #pf-map-browser{opacity:0;position:absolute;top:110px;left:21px;height:560px;width:515px}#pf-landing-gallery-carousel{background-image:url("../img/pf-header-bg.jpg")}#pf-landing-gallery-carousel .slide-content{border-radius:5px}#pf-landing-gallery-carousel h3{width:100%;text-align:left}.pf-landing-pricing-panel{margin-top:20px}.pricing-big{-webkit-box-shadow:0 4px 10px rgba(0,0,0,0.4);box-shadow:0 4px 10px rgba(0,0,0,0.4)}.pricing-big .panel-heading{border-color:#3c3f41}.pricing-big .the-price{padding:1px 0;background:#2d3031;text-align:center}.pricing-big .the-price .subscript{font-size:12px;color:#63676a}.pricing-big .price-features{background:#3c3f41;color:#adadad;padding:20px 15px;min-height:205px;line-height:22px}#pf-landing-about .pf-landing-about-me{width:256px;height:256px;border:none;-webkit-box-shadow:0 4px 10px rgba(0,0,0,0.4);box-shadow:0 4px 10px rgba(0,0,0,0.4)}.pf-landing-footer{padding:30px 0;font-family:"Oxygen Bold","Helvetica Neue",Helvetica,Arial,sans-serif;background-color:#171717}.pf-landing-footer .pf-social-networks>li{display:inline-block;line-height:1}.pf-landing-footer .pf-social-networks>li a{display:inline-block;background:rgba(99,103,106,0.5);line-height:24px;text-align:center;font-size:12px;margin-right:5px;width:28px;height:24px}#pf-static-logo-svg{opacity:0;position:absolute;z-index:105;overflow:visible}#pf-static-logo-svg path{will-change:fill, opacity, transform, translateZ, translateX, translateY;pointer-events:all;-moz-transform:translate3d(0, 0, 0);-ms-transform:translate3d(0, 0, 0);-webkit-transform:translate3d(0, 0, 0);transform:translate3d(0, 0, 0)}.logo-ploygon-top-right{fill:#477372;fill-rule:evenodd;stroke:#477372;stroke-width:0px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1;fill-opacity:1}.logo-ploygon-bottom-left{fill:#5cb85c;fill-rule:evenodd;stroke:#5cb85c;stroke-width:0px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1;fill-opacity:1}.logo-ploygon-bottom-right{fill:#375959;fill-rule:evenodd;stroke:#375959;stroke-width:0px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1;fill-opacity:1}.logo-ploygon-top-left{fill:#63676a;fill-opacity:1;fill-rule:evenodd;stroke:#63676a;stroke-width:0px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1}@-webkit-keyframes bounce{0%, 20%, 50%, 80%, 100%{-webkit-transform:translateY(0)}40%{-webkit-transform:translateY(-8px)}60%{-webkit-transform:translateY(-4px)}}@keyframes bounce{0%, 20%, 50%, 80%, 100%{transform:translateY(0)}40%{transform:translateY(-8px)}60%{transform:translateY(-4px)}}#pf-map-tab-element{max-width:2515px;margin:0 auto}.pf-map-tab-content .pf-map-wrapper{position:relative;width:100%;max-width:2515px;height:550px;overflow:auto;padding:5px;background:rgba(43,43,43,0.93);box-shadow:inset -3px 3px 10px 0 rgba(0,0,0,0.3);border-bottom-right-radius:5px;border-bottom-left-radius:5px;border-width:1px;border-style:solid;border-color:#313335}.pf-map-overlay{position:absolute;display:none;z-index:10000;height:36px;right:10px;background:rgba(0,0,0,0.25);-moz-border-radius:5px;-webkit-border-radius:5px;border-radius:5px}.pf-map-overlay.pf-map-overlay-timer{width:36px;bottom:23px}.pf-map-overlay.pf-map-overlay-info{top:8px;color:#2b2b2b;padding:3px;line-height:26px;min-height:36px;min-width:36px}.pf-map-overlay.pf-map-overlay-info i{display:none;margin:2px;width:26px;height:26px;opacity:0.8;color:#c2760c}.pf-map-overlay.pf-map-overlay-info i.fa,.pf-map-overlay.pf-map-overlay-info .pf-landing .pf-landing-list li i,.pf-landing .pf-landing-list li .pf-map-overlay.pf-map-overlay-info i{font-size:26px}.pf-map-overlay.pf-map-overlay-info i.glyphicon{margin-left:4px;font-size:25px}.pf-grid-small{background:url('data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAACgAAAAoCAYAAACM/rhtAAAACXBIWXMAAAsTAAALEwEAmpwYAAAKT2lDQ1BQaG90b3Nob3AgSUNDIHByb2ZpbGUAAHjanVNnVFPpFj333vRCS4iAlEtvUhUIIFJCi4AUkSYqIQkQSoghodkVUcERRUUEG8igiAOOjoCMFVEsDIoK2AfkIaKOg6OIisr74Xuja9a89+bN/rXXPues852zzwfACAyWSDNRNYAMqUIeEeCDx8TG4eQuQIEKJHAAEAizZCFz/SMBAPh+PDwrIsAHvgABeNMLCADATZvAMByH/w/qQplcAYCEAcB0kThLCIAUAEB6jkKmAEBGAYCdmCZTAKAEAGDLY2LjAFAtAGAnf+bTAICd+Jl7AQBblCEVAaCRACATZYhEAGg7AKzPVopFAFgwABRmS8Q5ANgtADBJV2ZIALC3AMDOEAuyAAgMADBRiIUpAAR7AGDIIyN4AISZABRG8lc88SuuEOcqAAB4mbI8uSQ5RYFbCC1xB1dXLh4ozkkXKxQ2YQJhmkAuwnmZGTKBNA/g88wAAKCRFRHgg/P9eM4Ors7ONo62Dl8t6r8G/yJiYuP+5c+rcEAAAOF0ftH+LC+zGoA7BoBt/qIl7gRoXgugdfeLZrIPQLUAoOnaV/Nw+H48PEWhkLnZ2eXk5NhKxEJbYcpXff5nwl/AV/1s+X48/Pf14L7iJIEyXYFHBPjgwsz0TKUcz5IJhGLc5o9H/LcL//wd0yLESWK5WCoU41EScY5EmozzMqUiiUKSKcUl0v9k4t8s+wM+3zUAsGo+AXuRLahdYwP2SycQWHTA4vcAAPK7b8HUKAgDgGiD4c93/+8//UegJQCAZkmScQAAXkQkLlTKsz/HCAAARKCBKrBBG/TBGCzABhzBBdzBC/xgNoRCJMTCQhBCCmSAHHJgKayCQiiGzbAdKmAv1EAdNMBRaIaTcA4uwlW4Dj1wD/phCJ7BKLyBCQRByAgTYSHaiAFiilgjjggXmYX4IcFIBBKLJCDJiBRRIkuRNUgxUopUIFVIHfI9cgI5h1xGupE7yAAygvyGvEcxlIGyUT3UDLVDuag3GoRGogvQZHQxmo8WoJvQcrQaPYw2oefQq2gP2o8+Q8cwwOgYBzPEbDAuxsNCsTgsCZNjy7EirAyrxhqwVqwDu4n1Y8+xdwQSgUXACTYEd0IgYR5BSFhMWE7YSKggHCQ0EdoJNwkDhFHCJyKTqEu0JroR+cQYYjIxh1hILCPWEo8TLxB7iEPENyQSiUMyJ7mQAkmxpFTSEtJG0m5SI+ksqZs0SBojk8naZGuyBzmULCAryIXkneTD5DPkG+Qh8lsKnWJAcaT4U+IoUspqShnlEOU05QZlmDJBVaOaUt2ooVQRNY9aQq2htlKvUYeoEzR1mjnNgxZJS6WtopXTGmgXaPdpr+h0uhHdlR5Ol9BX0svpR+iX6AP0dwwNhhWDx4hnKBmbGAcYZxl3GK+YTKYZ04sZx1QwNzHrmOeZD5lvVVgqtip8FZHKCpVKlSaVGyovVKmqpqreqgtV81XLVI+pXlN9rkZVM1PjqQnUlqtVqp1Q61MbU2epO6iHqmeob1Q/pH5Z/YkGWcNMw09DpFGgsV/jvMYgC2MZs3gsIWsNq4Z1gTXEJrHN2Xx2KruY/R27iz2qqaE5QzNKM1ezUvOUZj8H45hx+Jx0TgnnKKeX836K3hTvKeIpG6Y0TLkxZVxrqpaXllirSKtRq0frvTau7aedpr1Fu1n7gQ5Bx0onXCdHZ4/OBZ3nU9lT3acKpxZNPTr1ri6qa6UbobtEd79up+6Ynr5egJ5Mb6feeb3n+hx9L/1U/W36p/VHDFgGswwkBtsMzhg8xTVxbzwdL8fb8VFDXcNAQ6VhlWGX4YSRudE8o9VGjUYPjGnGXOMk423GbcajJgYmISZLTepN7ppSTbmmKaY7TDtMx83MzaLN1pk1mz0x1zLnm+eb15vft2BaeFostqi2uGVJsuRaplnutrxuhVo5WaVYVVpds0atna0l1rutu6cRp7lOk06rntZnw7Dxtsm2qbcZsOXYBtuutm22fWFnYhdnt8Wuw+6TvZN9un2N/T0HDYfZDqsdWh1+c7RyFDpWOt6azpzuP33F9JbpL2dYzxDP2DPjthPLKcRpnVOb00dnF2e5c4PziIuJS4LLLpc+Lpsbxt3IveRKdPVxXeF60vWdm7Obwu2o26/uNu5p7ofcn8w0nymeWTNz0MPIQ+BR5dE/C5+VMGvfrH5PQ0+BZ7XnIy9jL5FXrdewt6V3qvdh7xc+9j5yn+M+4zw33jLeWV/MN8C3yLfLT8Nvnl+F30N/I/9k/3r/0QCngCUBZwOJgUGBWwL7+Hp8Ib+OPzrbZfay2e1BjKC5QRVBj4KtguXBrSFoyOyQrSH355jOkc5pDoVQfujW0Adh5mGLw34MJ4WHhVeGP45wiFga0TGXNXfR3ENz30T6RJZE3ptnMU85ry1KNSo+qi5qPNo3ujS6P8YuZlnM1VidWElsSxw5LiquNm5svt/87fOH4p3iC+N7F5gvyF1weaHOwvSFpxapLhIsOpZATIhOOJTwQRAqqBaMJfITdyWOCnnCHcJnIi/RNtGI2ENcKh5O8kgqTXqS7JG8NXkkxTOlLOW5hCepkLxMDUzdmzqeFpp2IG0yPTq9MYOSkZBxQqohTZO2Z+pn5mZ2y6xlhbL+xW6Lty8elQfJa7OQrAVZLQq2QqboVFoo1yoHsmdlV2a/zYnKOZarnivN7cyzytuQN5zvn//tEsIS4ZK2pYZLVy0dWOa9rGo5sjxxedsK4xUFK4ZWBqw8uIq2Km3VT6vtV5eufr0mek1rgV7ByoLBtQFr6wtVCuWFfevc1+1dT1gvWd+1YfqGnRs+FYmKrhTbF5cVf9go3HjlG4dvyr+Z3JS0qavEuWTPZtJm6ebeLZ5bDpaql+aXDm4N2dq0Dd9WtO319kXbL5fNKNu7g7ZDuaO/PLi8ZafJzs07P1SkVPRU+lQ27tLdtWHX+G7R7ht7vPY07NXbW7z3/T7JvttVAVVN1WbVZftJ+7P3P66Jqun4lvttXa1ObXHtxwPSA/0HIw6217nU1R3SPVRSj9Yr60cOxx++/p3vdy0NNg1VjZzG4iNwRHnk6fcJ3/ceDTradox7rOEH0x92HWcdL2pCmvKaRptTmvtbYlu6T8w+0dbq3nr8R9sfD5w0PFl5SvNUyWna6YLTk2fyz4ydlZ19fi753GDborZ752PO32oPb++6EHTh0kX/i+c7vDvOXPK4dPKy2+UTV7hXmq86X23qdOo8/pPTT8e7nLuarrlca7nuer21e2b36RueN87d9L158Rb/1tWeOT3dvfN6b/fF9/XfFt1+cif9zsu72Xcn7q28T7xf9EDtQdlD3YfVP1v+3Njv3H9qwHeg89HcR/cGhYPP/pH1jw9DBY+Zj8uGDYbrnjg+OTniP3L96fynQ89kzyaeF/6i/suuFxYvfvjV69fO0ZjRoZfyl5O/bXyl/erA6xmv28bCxh6+yXgzMV70VvvtwXfcdx3vo98PT+R8IH8o/2j5sfVT0Kf7kxmTk/8EA5jz/GMzLdsAAAAgY0hSTQAAeiUAAICDAAD5/wAAgOkAAHUwAADqYAAAOpgAABdvkl/FRgAAAG1JREFUeNrs18EJgDAQRNGJpoQQSC+CWMSWEwhYrCAWYRNz2MP/BQzvOiUi5Op5vzl6u+VrbUoeQIAAAQIECBAgQICpK8d5zay40dtenR+CTwIQIECAAAECBAgQYLaqpGX8EHLuSdIPAAD//wMAuMQN2uF+ypQAAAAASUVORK5CYII=') !important}.pf-map{width:2500px;height:520px;position:relative;font-family:"Oxygen Bold","Helvetica Neue",Helvetica,Arial,sans-serif}.pf-map ._jsPlumb_overlay{opacity:1;pointer-events:none;will-change:opacity;-webkit-transition:opacity 0.18s ease-out;transition:opacity 0.18s ease-out}.pf-map ._jsPlumb_hover._jsPlumb_overlay{opacity:0 !important}.pf-map ._jsPlumb_hover:not(._jsPlumb_overlay){-webkit-animation-duration:1s;animation-duration:1s;-webkit-animation-delay:0.5s;animation-delay:0.5s;-webkit-animation-fill-mode:both;animation-fill-mode:both;-webkit-animation-timing-function:linear;animation-timing-function:linear;animation-iteration-count:infinite;-webkit-animation-iteration-count:infinite;-webkit-animation-name:bounce;animation-name:bounce}.pf-map ._jsPlumb_target_hover,.pf-map ._jsPlumb_source_hover{-webkit-animation-duration:1s;animation-duration:1s;-webkit-animation-delay:0.5s;animation-delay:0.5s;-webkit-animation-fill-mode:both;animation-fill-mode:both;-webkit-animation-timing-function:linear;animation-timing-function:linear;animation-iteration-count:infinite;-webkit-animation-iteration-count:infinite;-webkit-animation-name:bounce;animation-name:bounce;-webkit-box-shadow:0 6px 12px rgba(0,0,0,0.3);box-shadow:0 6px 12px rgba(0,0,0,0.3)}.pf-map .pf-system{position:absolute;min-width:60px;height:auto;overflow:hidden;background-color:#313335;font-family:"Oxygen Bold","Helvetica Neue",Helvetica,Arial,sans-serif;z-index:100;will-change:top, left, opacity, transform;border-width:2px;border-style:solid;border-color:#63676a;-moz-border-radius:5px;-webkit-border-radius:5px;border-radius:5px;-webkit-transition:border-color 0.5s ease-out,box-shadow 0.2s ease-out;transition:border-color 0.5s ease-out,box-shadow 0.2s ease-out;-moz-transform:translate3d(0, 0, 0);-ms-transform:translate3d(0, 0, 0);-webkit-transform:translate3d(0, 0, 0);transform:translate3d(0, 0, 0)}.pf-map .pf-system:hover{-webkit-box-shadow:0 6px 12px rgba(0,0,0,0.3);box-shadow:0 6px 12px rgba(0,0,0,0.3);-moz-transform:translate3d(0, -2px, 0);-ms-transform:translate3d(0, -2px, 0);-webkit-transform:translate3d(0, -2px, 0);transform:translate3d(0, -2px, 0)}.pf-map .pf-system .pf-system-head{padding:0px 3px 0px 3px;cursor:pointer;font-family:Arial;font-weight:bold}.pf-map .pf-system .pf-system-head .pf-system-head-name{border:none;display:inline-block;min-width:41px;color:#adadad;margin-right:2px}.pf-map .pf-system .pf-system-head .fa-lock{display:none}.pf-map .pf-system .pf-system-head .pf-system-head-expand{margin-left:2px;color:#63676a;display:none}.pf-map .pf-system .pf-system-head .editable-empty{font-style:normal}.pf-map .pf-system .pf-system-body{height:0px;width:100%;overflow:hidden;cursor:-moz-grab;cursor:-webkit-grab;cursor:grab;padding:0 4px;white-space:nowrap;display:none;will-change:width;border-top-width:1px;border-top-style:dashed;border-top-color:#63676a}.pf-map .pf-system .pf-system-body .pf-system-body-item{color:#63676a;font-size:10px}.pf-map .pf-system .pf-system-body .pf-system-body-item .pf-system-body-right{text-overflow:ellipsis;float:right;color:#f0ad4e;display:none}.pf-map .pf-system .pf-system-body .pf-system-body-item .pf-user-status{font-size:7px;width:10px}.pf-map .pf-system .pf-system-body .pf-system-body-item .pf-system-body-item-name{display:inline-block;width:65px;overflow:hidden;height:11px;white-space:nowrap;text-overflow:ellipsis}.pf-map .pf-system .tooltip.in{opacity:1}.pf-map .pf-system .tooltip .tooltip-inner{color:#313335;background-color:#adadad;padding:3px 3px}.pf-map .pf-system-active:not(.pf-map-endpoint-source):not(.pf-map-endpoint-target){-webkit-box-shadow:#ffb 0px 0px 8px 0px;box-shadow:#ffb 0px 0px 8px 0px}.pf-map .pf-system-selected:not(.pf-map-endpoint-source):not(.pf-map-endpoint-target),.pf-map .jsPlumb_dragged:not(.pf-map-endpoint-source):not(.pf-map-endpoint-target){-webkit-box-shadow:#58100d 0px 0px 8px 0px;box-shadow:#58100d 0px 0px 8px 0px}.pf-map .pf-system-selected:not(.pf-map-endpoint-source):not(.pf-map-endpoint-target) .pf-system-head,.pf-map .jsPlumb_dragged:not(.pf-map-endpoint-source):not(.pf-map-endpoint-target) .pf-system-head,.pf-map .pf-system-selected:not(.pf-map-endpoint-source):not(.pf-map-endpoint-target) .pf-system-body,.pf-map .jsPlumb_dragged:not(.pf-map-endpoint-source):not(.pf-map-endpoint-target) .pf-system-body{background-color:#58100d}.pf-map .pf-system-locked .pf-system-sec{cursor:default !important}.pf-map .pf-system-locked .pf-system-body{cursor:default !important}.pf-map .pf-system-locked .fa-lock{color:#63676a !important;display:inline-block !important}.pf-map .pf-map-endpoint-source,.pf-map .pf-map-endpoint-target{z-index:90}.pf-map .pf-map-endpoint-source svg,.pf-map .pf-map-endpoint-target svg{overflow:visible}.pf-map .pf-map-endpoint-source svg circle,.pf-map .pf-map-endpoint-target svg circle{-webkit-transition:stroke 0.18s ease-out,fill 0.18s ease-out;transition:stroke 0.18s ease-out,fill 0.18s ease-out}.pf-map .pf-map-endpoint-source svg *,.pf-map .pf-map-endpoint-target svg *{stroke:#63676a;stroke-width:2;fill:#3c3f41;cursor:pointer}.pf-map .pf-map-endpoint-source:hover circle,.pf-map .pf-map-endpoint-target:hover circle{stroke:#e28a0d !important}.pf-map .pf-map-endpoint-source._jsPlumb_hover,.pf-map .pf-map-endpoint-target._jsPlumb_hover{z-index:95}.pf-map .pf-map-endpoint-source._jsPlumb_dragging circle,.pf-map .pf-map-endpoint-target._jsPlumb_dragging circle{stroke:#e28a0d}.pf-map ._jsPlumb_endpoint_drop_allowed circle{stroke:#5cb85c !important;fill:#5cb85c !important}.pf-map ._jsPlumb_endpoint_drop_forbidden circle{stroke:#a52521 !important;fill:#a52521 !important}.pf-map svg._jsPlumb_connector{cursor:pointer;stroke-linecap:round;-webkit-transition:stroke 0.18s ease-out;transition:stroke 0.18s ease-out;will-change:all}.pf-map svg._jsPlumb_connector path{-webkit-transition:stroke 0.18s ease-out;transition:stroke 0.18s ease-out}.pf-map svg._jsPlumb_connector path:not(:first-child){stroke:#3c3f41}.pf-map svg._jsPlumb_connector path:first-child{stroke:#63676a}.pf-map svg._jsPlumb_connector._jsPlumb_hover{z-index:80}.pf-map svg._jsPlumb_connector._jsPlumb_hover path:first-child{stroke:#eaeaea}.pf-map svg._jsPlumb_connector._jsPlumb_dragging{-webkit-transition:opacity 0.18s ease-out;transition:opacity 0.18s ease-out;opacity:0.4;z-index:80}.pf-map svg.pf-map-connection-jumpbridge{z-index:50}.pf-map svg.pf-map-connection-jumpbridge path:first-child{stroke:rgba(255,255,255,0)}.pf-map svg.pf-map-connection-jumpbridge path:not(:first-child){stroke:#568a89}.pf-map svg.pf-map-connection-jumpbridge:hover path:first-child{stroke:rgba(255,255,255,0)}.pf-map svg.pf-map-connection-jumpbridge:hover path:not(:first-child){stroke:#eaeaea}.pf-map svg.pf-map-connection-stargate{z-index:60}.pf-map svg.pf-map-connection-stargate path:first-child{stroke:#63676a}.pf-map svg.pf-map-connection-stargate path:not(:first-child){stroke:#313966}.pf-map svg.pf-map-connection-stargate:hover path:first-child{stroke:#eaeaea}.pf-map svg.pf-map-connection-wh-fresh,.pf-map svg.pf-map-connection-wh-reduced,.pf-map svg.pf-map-connection-wh-critical,.pf-map svg.pf-map-connection-wh-eol{z-index:70}.pf-map svg.pf-map-connection-wh-eol path:first-child{stroke:#d747d6}.pf-map svg.pf-map-connection-wh-eol:hover path:first-child{stroke:#eaeaea}.pf-map svg.pf-map-connection-wh-reduced path:not(:first-child){stroke:#e28a0d}.pf-map svg.pf-map-connection-wh-critical path:not(:first-child){stroke:#a52521}.pf-map .pf-map-connection-overlay{padding:1px 4px;font-size:11px;z-index:1020;-moz-border-radius:8px;-webkit-border-radius:8px;border-radius:8px;-webkit-box-shadow:0 6px 12px rgba(0,0,0,0.4);box-shadow:0 6px 12px rgba(0,0,0,0.4)}.pf-map .frig{background-color:#f0ad4e;color:#1d1d1d}.pf-map .mass{background-color:#a52521;color:#eaeaea}.ui-dialog-content label{min-width:60px}.dropdown-menu{font-family:"Oxygen Bold","Helvetica Neue",Helvetica,Arial,sans-serif;z-index:1020;will-change:opacity, top, left, transform}.dropdown-menu i{width:20px}.pf-system-tooltip-inner{color:#adadad;padding:2px 4px;min-width:25px;-webkit-transition:color 0.2s ease-out;transition:color 0.2s ease-out}.pf-system-info-popover{display:initial}.pf-system-info-popover img{width:39px}.pf-system-info-popover h6{white-space:nowrap;margin-right:50px}.pf-system-info-popover h6:before,.pf-system-info-popover h6:after{content:" ";display:table}.pf-system-info-popover h6:after{clear:both}.pf-system-info-popover .well{margin-top:7px;margin-bottom:10px}.pf-system-info-module h5{text-transform:capitalize}.pf-system-info-module .pf-system-info-description-area{min-height:123px}.pf-system-info-module .pf-system-info-description-area .pf-system-info-description{width:330px}.pf-system-info-module .pf-system-info-table{font-size:11px;white-space:nowrap}.pf-sig-table-module .pf-sig-table-clear-button{will-change:opacity, transform;display:none}.pf-sig-table-module .pf-sig-table{font-size:10px}.pf-sig-table-module .pf-sig-table .pf-sig-table-edit-desc-text{white-space:normal}.pf-sig-table-module .pf-sig-table .pf-sig-table-edit-desc-text.editable-empty{border-bottom:none}.pf-sig-table-module .pf-sig-table .pf-editable-description{background-color:#2b2b2b;max-height:50px}.pf-sig-table-module .pf-sig-table .pf-sig-table-edit-name-input{text-transform:uppercase}.pf-system-graph-module .pf-system-graph{width:100%;height:100px}.pf-system-route-module .pf-system-route-table{width:100%;font-size:11px}.pf-system-route-module .pf-system-route-table td{text-transform:capitalize}.pf-system-route-module .pf-system-route-table td>.fa,.pf-system-route-module .pf-system-route-table .pf-landing .pf-landing-list li td>i,.pf-landing .pf-landing-list li .pf-system-route-module .pf-system-route-table td>i{font-size:10px}.pf-system-killboard-module .pf-system-killboard-graph-kills{width:100%;height:100px;position:relative;margin-bottom:30px}.pf-system-killboard-module .pf-system-killboard-list{padding-bottom:10px;border-bottom:1px solid #2b2b2b}.pf-system-killboard-module .pf-system-killboard-list li{margin-left:0;overflow:visible;min-height:50px;will-change:margin-left;-webkit-transition:margin-left 0.12s cubic-bezier(0.3, 0.8, 0.8, 1.7);transition:margin-left 0.12s cubic-bezier(0.3, 0.8, 0.8, 1.7)}.pf-system-killboard-module .pf-system-killboard-list li h5{white-space:nowrap}.pf-system-killboard-module .pf-system-killboard-list li h3{width:120px;display:inline-block}.pf-system-killboard-module .pf-system-killboard-list li .pf-system-killboard-img-corp{margin-right:10px;width:16px}.pf-system-killboard-module .pf-system-killboard-list li .pf-system-killboard-img-ship{width:50px;margin-right:10px;border:1px solid #2b2b2b;transform:translateZ(1px);will-change:border-color;-moz-border-radius:25px;-webkit-border-radius:25px;border-radius:25px;-webkit-transition:border-color 0.12s ease-out;transition:border-color 0.12s ease-out}.pf-system-killboard-module .pf-system-killboard-list li:before{content:"\f054";font-family:FontAwesome;position:absolute;z-index:10;left:-25px;top:15px;color:#477372;opacity:0;will-change:opacity, left;-webkit-transition:all 0.12s ease-out;transition:all 0.12s ease-out}.pf-system-killboard-module .pf-system-killboard-list li:hover{margin-left:20px}.pf-system-killboard-module .pf-system-killboard-list li:hover .pf-system-killboard-img-ship{border-color:#568a89}.pf-system-killboard-module .pf-system-killboard-list li:hover:before{opacity:1;left:-20px}input,select{background-color:#313335;color:#adadad;border:1px solid #63676a;font-family:"Oxygen Bold","Helvetica Neue",Helvetica,Arial,sans-serif}input:focus,select:focus{border-color:#568a89}input:-webkit-autofill,select:-webkit-autofill{background-color:#313335 !important;-webkit-box-shadow:0 0 0 50px #313335 inset !important;box-shadow:0 0 0 50px #313335 inset !important;-webkit-text-fill-color:#adadad}input:-webkit-autofill:focus,select:-webkit-autofill:focus{-webkit-box-shadow:0 0 0 50px #313335 inset !important;box-shadow:0 0 0 50px #313335 inset !important;-webkit-text-fill-color:#adadad}input::-webkit-file-upload-button,select::-webkit-file-upload-button{background-color:transparent;border:none;color:#63676a;outline:none}.pf-form-dropzone{border:2px dashed #2b2b2b;height:100px;background-color:#353739;text-align:center;font-size:20px;line-height:100px;margin:15px 0;color:#2b2b2b;-moz-border-radius:10px;-webkit-border-radius:10px;border-radius:10px;-webkit-transition:color 0.18s ease-out,border-color 0.18s ease-out;transition:color 0.18s ease-out,border-color 0.18s ease-out}.pf-form-dropzone:hover{color:#568a89;border-color:#568a89;cursor:-moz-grabbing;cursor:-webkit-grabbing;cursor:grabbing}.toggle.btn:active,button.toggle.DTTT_button:active,div.toggle.DTTT_button:active,a.toggle.DTTT_button:active{box-shadow:none}.toggle .toggle-group .btn,.toggle .toggle-group button.DTTT_button,.toggle .toggle-group div.DTTT_button,.toggle .toggle-group a.DTTT_button{padding:0px 5px}.pf-icon{display:inline-block}.pf-icon-dotlan{background:url('data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAABEAAAARCAYAAAA7bUf6AAAACXBIWXMAAAsTAAALEwEAmpwYAAAKT2lDQ1BQaG90b3Nob3AgSUNDIHByb2ZpbGUAAHjanVNnVFPpFj333vRCS4iAlEtvUhUIIFJCi4AUkSYqIQkQSoghodkVUcERRUUEG8igiAOOjoCMFVEsDIoK2AfkIaKOg6OIisr74Xuja9a89+bN/rXXPues852zzwfACAyWSDNRNYAMqUIeEeCDx8TG4eQuQIEKJHAAEAizZCFz/SMBAPh+PDwrIsAHvgABeNMLCADATZvAMByH/w/qQplcAYCEAcB0kThLCIAUAEB6jkKmAEBGAYCdmCZTAKAEAGDLY2LjAFAtAGAnf+bTAICd+Jl7AQBblCEVAaCRACATZYhEAGg7AKzPVopFAFgwABRmS8Q5ANgtADBJV2ZIALC3AMDOEAuyAAgMADBRiIUpAAR7AGDIIyN4AISZABRG8lc88SuuEOcqAAB4mbI8uSQ5RYFbCC1xB1dXLh4ozkkXKxQ2YQJhmkAuwnmZGTKBNA/g88wAAKCRFRHgg/P9eM4Ors7ONo62Dl8t6r8G/yJiYuP+5c+rcEAAAOF0ftH+LC+zGoA7BoBt/qIl7gRoXgugdfeLZrIPQLUAoOnaV/Nw+H48PEWhkLnZ2eXk5NhKxEJbYcpXff5nwl/AV/1s+X48/Pf14L7iJIEyXYFHBPjgwsz0TKUcz5IJhGLc5o9H/LcL//wd0yLESWK5WCoU41EScY5EmozzMqUiiUKSKcUl0v9k4t8s+wM+3zUAsGo+AXuRLahdYwP2SycQWHTA4vcAAPK7b8HUKAgDgGiD4c93/+8//UegJQCAZkmScQAAXkQkLlTKsz/HCAAARKCBKrBBG/TBGCzABhzBBdzBC/xgNoRCJMTCQhBCCmSAHHJgKayCQiiGzbAdKmAv1EAdNMBRaIaTcA4uwlW4Dj1wD/phCJ7BKLyBCQRByAgTYSHaiAFiilgjjggXmYX4IcFIBBKLJCDJiBRRIkuRNUgxUopUIFVIHfI9cgI5h1xGupE7yAAygvyGvEcxlIGyUT3UDLVDuag3GoRGogvQZHQxmo8WoJvQcrQaPYw2oefQq2gP2o8+Q8cwwOgYBzPEbDAuxsNCsTgsCZNjy7EirAyrxhqwVqwDu4n1Y8+xdwQSgUXACTYEd0IgYR5BSFhMWE7YSKggHCQ0EdoJNwkDhFHCJyKTqEu0JroR+cQYYjIxh1hILCPWEo8TLxB7iEPENyQSiUMyJ7mQAkmxpFTSEtJG0m5SI+ksqZs0SBojk8naZGuyBzmULCAryIXkneTD5DPkG+Qh8lsKnWJAcaT4U+IoUspqShnlEOU05QZlmDJBVaOaUt2ooVQRNY9aQq2htlKvUYeoEzR1mjnNgxZJS6WtopXTGmgXaPdpr+h0uhHdlR5Ol9BX0svpR+iX6AP0dwwNhhWDx4hnKBmbGAcYZxl3GK+YTKYZ04sZx1QwNzHrmOeZD5lvVVgqtip8FZHKCpVKlSaVGyovVKmqpqreqgtV81XLVI+pXlN9rkZVM1PjqQnUlqtVqp1Q61MbU2epO6iHqmeob1Q/pH5Z/YkGWcNMw09DpFGgsV/jvMYgC2MZs3gsIWsNq4Z1gTXEJrHN2Xx2KruY/R27iz2qqaE5QzNKM1ezUvOUZj8H45hx+Jx0TgnnKKeX836K3hTvKeIpG6Y0TLkxZVxrqpaXllirSKtRq0frvTau7aedpr1Fu1n7gQ5Bx0onXCdHZ4/OBZ3nU9lT3acKpxZNPTr1ri6qa6UbobtEd79up+6Ynr5egJ5Mb6feeb3n+hx9L/1U/W36p/VHDFgGswwkBtsMzhg8xTVxbzwdL8fb8VFDXcNAQ6VhlWGX4YSRudE8o9VGjUYPjGnGXOMk423GbcajJgYmISZLTepN7ppSTbmmKaY7TDtMx83MzaLN1pk1mz0x1zLnm+eb15vft2BaeFostqi2uGVJsuRaplnutrxuhVo5WaVYVVpds0atna0l1rutu6cRp7lOk06rntZnw7Dxtsm2qbcZsOXYBtuutm22fWFnYhdnt8Wuw+6TvZN9un2N/T0HDYfZDqsdWh1+c7RyFDpWOt6azpzuP33F9JbpL2dYzxDP2DPjthPLKcRpnVOb00dnF2e5c4PziIuJS4LLLpc+Lpsbxt3IveRKdPVxXeF60vWdm7Obwu2o26/uNu5p7ofcn8w0nymeWTNz0MPIQ+BR5dE/C5+VMGvfrH5PQ0+BZ7XnIy9jL5FXrdewt6V3qvdh7xc+9j5yn+M+4zw33jLeWV/MN8C3yLfLT8Nvnl+F30N/I/9k/3r/0QCngCUBZwOJgUGBWwL7+Hp8Ib+OPzrbZfay2e1BjKC5QRVBj4KtguXBrSFoyOyQrSH355jOkc5pDoVQfujW0Adh5mGLw34MJ4WHhVeGP45wiFga0TGXNXfR3ENz30T6RJZE3ptnMU85ry1KNSo+qi5qPNo3ujS6P8YuZlnM1VidWElsSxw5LiquNm5svt/87fOH4p3iC+N7F5gvyF1weaHOwvSFpxapLhIsOpZATIhOOJTwQRAqqBaMJfITdyWOCnnCHcJnIi/RNtGI2ENcKh5O8kgqTXqS7JG8NXkkxTOlLOW5hCepkLxMDUzdmzqeFpp2IG0yPTq9MYOSkZBxQqohTZO2Z+pn5mZ2y6xlhbL+xW6Lty8elQfJa7OQrAVZLQq2QqboVFoo1yoHsmdlV2a/zYnKOZarnivN7cyzytuQN5zvn//tEsIS4ZK2pYZLVy0dWOa9rGo5sjxxedsK4xUFK4ZWBqw8uIq2Km3VT6vtV5eufr0mek1rgV7ByoLBtQFr6wtVCuWFfevc1+1dT1gvWd+1YfqGnRs+FYmKrhTbF5cVf9go3HjlG4dvyr+Z3JS0qavEuWTPZtJm6ebeLZ5bDpaql+aXDm4N2dq0Dd9WtO319kXbL5fNKNu7g7ZDuaO/PLi8ZafJzs07P1SkVPRU+lQ27tLdtWHX+G7R7ht7vPY07NXbW7z3/T7JvttVAVVN1WbVZftJ+7P3P66Jqun4lvttXa1ObXHtxwPSA/0HIw6217nU1R3SPVRSj9Yr60cOxx++/p3vdy0NNg1VjZzG4iNwRHnk6fcJ3/ceDTradox7rOEH0x92HWcdL2pCmvKaRptTmvtbYlu6T8w+0dbq3nr8R9sfD5w0PFl5SvNUyWna6YLTk2fyz4ydlZ19fi753GDborZ752PO32oPb++6EHTh0kX/i+c7vDvOXPK4dPKy2+UTV7hXmq86X23qdOo8/pPTT8e7nLuarrlca7nuer21e2b36RueN87d9L158Rb/1tWeOT3dvfN6b/fF9/XfFt1+cif9zsu72Xcn7q28T7xf9EDtQdlD3YfVP1v+3Njv3H9qwHeg89HcR/cGhYPP/pH1jw9DBY+Zj8uGDYbrnjg+OTniP3L96fynQ89kzyaeF/6i/suuFxYvfvjV69fO0ZjRoZfyl5O/bXyl/erA6xmv28bCxh6+yXgzMV70VvvtwXfcdx3vo98PT+R8IH8o/2j5sfVT0Kf7kxmTk/8EA5jz/GMzLdsAAAAgY0hSTQAAeiUAAICDAAD5/wAAgOkAAHUwAADqYAAAOpgAABdvkl/FRgAAAwpJREFUeNqslE9oXFUUxr9z7333vZk3k3+1JGkyldI44KYKFbSIihbauBOrNkgXdeGqVnAhFnfiQgTFCtJNEQndVDDSFrRBWiGutEYFi2mlhQraP2km02by8ubdd/8cF8WJi+z0bA/nx3cO5/uImfFfSwHAwh9PbNR7EMBLBGoyuA3gKwCzAEAEbLu/gqkXLuLUFzchNhjeAuAXSWJBkXyFwcOSxOOK5FkCMYDnN1QSAoOIQIQnBdGcAP2a+3Kb8dbZYBuCZCcW0Y00io8IiBnP4QMCvSnEvyBbRxMstsuGKXiOJD5ZLlcP586cFJr3S025Z1vtlmY5s90HhpL6dKKi30wIf+W5/xjAvXWmTyzuyLJwvr8eXejYtcOZ6/4ZV2g/Z/rZsqVTu6wpEvJcUK7dLlYDI7zsLB+VUj3cU/L1mSX9yM6+YzzsjmeuOJHEary7pOjulURzoNPs8VN11E4NNnnROHdppcxHtsjKwSRWsgeJRDzvOMyvlMUmpXHAZvLVO5criiQPqzgMMeOd7LpuRqk/UBsPr+fGHOw68z4xobfO9ocIHXSQGzuhpECwdArAcRHxRQbWQAAJ3mdzqYnoZwC7looOCl+uQ9q3gIg1pKTbITCE4jEA37GjfhD2AgA7WpBRKAE0AviaFhKSxDqkdcuM9Im0OZCk10wRrug+/2H/RPGZL+mYzSTKVfl7bax8rD5unzEFb45IfTqcDqbBYqx3k92Tm8bjKmZil3xbkfGurjGt2hh/RIRDZkUdkjqg3jA7g+DzocRbg2maO8vZ5hG9F8B1YmbcyXfjdttO+hJnhcBky6zMd71t6YS8lDjHAROl4e0I9PaArr03OlQzP1y4Ozc0GO156tHv7ym5sViCCLMQeINIzN6XDBzJbFcYa/e5MjQF0Zm6VDPVOK5pEfHqmr3a2JrsSVOx/rFEPRsc9RxuEuhkf1R916sw7REuC9CIJPlNAO9w7E+zw3P1usQ/CaA2MODnDP7Ssn+NQC8KiKcBFI79jwCmAFwiArxfjxD6P/Lk7wEA9Dls2LsiUxoAAAAASUVORK5CYII=');width:17px;height:17px;opacity:0.8;margin:-5px 0px 0 10px}.pf-icon-wormhol-es{background:url('data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAABEAAAARCAYAAAA7bUf6AAAACXBIWXMAAAsTAAALEwEAmpwYAAAKT2lDQ1BQaG90b3Nob3AgSUNDIHByb2ZpbGUAAHjanVNnVFPpFj333vRCS4iAlEtvUhUIIFJCi4AUkSYqIQkQSoghodkVUcERRUUEG8igiAOOjoCMFVEsDIoK2AfkIaKOg6OIisr74Xuja9a89+bN/rXXPues852zzwfACAyWSDNRNYAMqUIeEeCDx8TG4eQuQIEKJHAAEAizZCFz/SMBAPh+PDwrIsAHvgABeNMLCADATZvAMByH/w/qQplcAYCEAcB0kThLCIAUAEB6jkKmAEBGAYCdmCZTAKAEAGDLY2LjAFAtAGAnf+bTAICd+Jl7AQBblCEVAaCRACATZYhEAGg7AKzPVopFAFgwABRmS8Q5ANgtADBJV2ZIALC3AMDOEAuyAAgMADBRiIUpAAR7AGDIIyN4AISZABRG8lc88SuuEOcqAAB4mbI8uSQ5RYFbCC1xB1dXLh4ozkkXKxQ2YQJhmkAuwnmZGTKBNA/g88wAAKCRFRHgg/P9eM4Ors7ONo62Dl8t6r8G/yJiYuP+5c+rcEAAAOF0ftH+LC+zGoA7BoBt/qIl7gRoXgugdfeLZrIPQLUAoOnaV/Nw+H48PEWhkLnZ2eXk5NhKxEJbYcpXff5nwl/AV/1s+X48/Pf14L7iJIEyXYFHBPjgwsz0TKUcz5IJhGLc5o9H/LcL//wd0yLESWK5WCoU41EScY5EmozzMqUiiUKSKcUl0v9k4t8s+wM+3zUAsGo+AXuRLahdYwP2SycQWHTA4vcAAPK7b8HUKAgDgGiD4c93/+8//UegJQCAZkmScQAAXkQkLlTKsz/HCAAARKCBKrBBG/TBGCzABhzBBdzBC/xgNoRCJMTCQhBCCmSAHHJgKayCQiiGzbAdKmAv1EAdNMBRaIaTcA4uwlW4Dj1wD/phCJ7BKLyBCQRByAgTYSHaiAFiilgjjggXmYX4IcFIBBKLJCDJiBRRIkuRNUgxUopUIFVIHfI9cgI5h1xGupE7yAAygvyGvEcxlIGyUT3UDLVDuag3GoRGogvQZHQxmo8WoJvQcrQaPYw2oefQq2gP2o8+Q8cwwOgYBzPEbDAuxsNCsTgsCZNjy7EirAyrxhqwVqwDu4n1Y8+xdwQSgUXACTYEd0IgYR5BSFhMWE7YSKggHCQ0EdoJNwkDhFHCJyKTqEu0JroR+cQYYjIxh1hILCPWEo8TLxB7iEPENyQSiUMyJ7mQAkmxpFTSEtJG0m5SI+ksqZs0SBojk8naZGuyBzmULCAryIXkneTD5DPkG+Qh8lsKnWJAcaT4U+IoUspqShnlEOU05QZlmDJBVaOaUt2ooVQRNY9aQq2htlKvUYeoEzR1mjnNgxZJS6WtopXTGmgXaPdpr+h0uhHdlR5Ol9BX0svpR+iX6AP0dwwNhhWDx4hnKBmbGAcYZxl3GK+YTKYZ04sZx1QwNzHrmOeZD5lvVVgqtip8FZHKCpVKlSaVGyovVKmqpqreqgtV81XLVI+pXlN9rkZVM1PjqQnUlqtVqp1Q61MbU2epO6iHqmeob1Q/pH5Z/YkGWcNMw09DpFGgsV/jvMYgC2MZs3gsIWsNq4Z1gTXEJrHN2Xx2KruY/R27iz2qqaE5QzNKM1ezUvOUZj8H45hx+Jx0TgnnKKeX836K3hTvKeIpG6Y0TLkxZVxrqpaXllirSKtRq0frvTau7aedpr1Fu1n7gQ5Bx0onXCdHZ4/OBZ3nU9lT3acKpxZNPTr1ri6qa6UbobtEd79up+6Ynr5egJ5Mb6feeb3n+hx9L/1U/W36p/VHDFgGswwkBtsMzhg8xTVxbzwdL8fb8VFDXcNAQ6VhlWGX4YSRudE8o9VGjUYPjGnGXOMk423GbcajJgYmISZLTepN7ppSTbmmKaY7TDtMx83MzaLN1pk1mz0x1zLnm+eb15vft2BaeFostqi2uGVJsuRaplnutrxuhVo5WaVYVVpds0atna0l1rutu6cRp7lOk06rntZnw7Dxtsm2qbcZsOXYBtuutm22fWFnYhdnt8Wuw+6TvZN9un2N/T0HDYfZDqsdWh1+c7RyFDpWOt6azpzuP33F9JbpL2dYzxDP2DPjthPLKcRpnVOb00dnF2e5c4PziIuJS4LLLpc+Lpsbxt3IveRKdPVxXeF60vWdm7Obwu2o26/uNu5p7ofcn8w0nymeWTNz0MPIQ+BR5dE/C5+VMGvfrH5PQ0+BZ7XnIy9jL5FXrdewt6V3qvdh7xc+9j5yn+M+4zw33jLeWV/MN8C3yLfLT8Nvnl+F30N/I/9k/3r/0QCngCUBZwOJgUGBWwL7+Hp8Ib+OPzrbZfay2e1BjKC5QRVBj4KtguXBrSFoyOyQrSH355jOkc5pDoVQfujW0Adh5mGLw34MJ4WHhVeGP45wiFga0TGXNXfR3ENz30T6RJZE3ptnMU85ry1KNSo+qi5qPNo3ujS6P8YuZlnM1VidWElsSxw5LiquNm5svt/87fOH4p3iC+N7F5gvyF1weaHOwvSFpxapLhIsOpZATIhOOJTwQRAqqBaMJfITdyWOCnnCHcJnIi/RNtGI2ENcKh5O8kgqTXqS7JG8NXkkxTOlLOW5hCepkLxMDUzdmzqeFpp2IG0yPTq9MYOSkZBxQqohTZO2Z+pn5mZ2y6xlhbL+xW6Lty8elQfJa7OQrAVZLQq2QqboVFoo1yoHsmdlV2a/zYnKOZarnivN7cyzytuQN5zvn//tEsIS4ZK2pYZLVy0dWOa9rGo5sjxxedsK4xUFK4ZWBqw8uIq2Km3VT6vtV5eufr0mek1rgV7ByoLBtQFr6wtVCuWFfevc1+1dT1gvWd+1YfqGnRs+FYmKrhTbF5cVf9go3HjlG4dvyr+Z3JS0qavEuWTPZtJm6ebeLZ5bDpaql+aXDm4N2dq0Dd9WtO319kXbL5fNKNu7g7ZDuaO/PLi8ZafJzs07P1SkVPRU+lQ27tLdtWHX+G7R7ht7vPY07NXbW7z3/T7JvttVAVVN1WbVZftJ+7P3P66Jqun4lvttXa1ObXHtxwPSA/0HIw6217nU1R3SPVRSj9Yr60cOxx++/p3vdy0NNg1VjZzG4iNwRHnk6fcJ3/ceDTradox7rOEH0x92HWcdL2pCmvKaRptTmvtbYlu6T8w+0dbq3nr8R9sfD5w0PFl5SvNUyWna6YLTk2fyz4ydlZ19fi753GDborZ752PO32oPb++6EHTh0kX/i+c7vDvOXPK4dPKy2+UTV7hXmq86X23qdOo8/pPTT8e7nLuarrlca7nuer21e2b36RueN87d9L158Rb/1tWeOT3dvfN6b/fF9/XfFt1+cif9zsu72Xcn7q28T7xf9EDtQdlD3YfVP1v+3Njv3H9qwHeg89HcR/cGhYPP/pH1jw9DBY+Zj8uGDYbrnjg+OTniP3L96fynQ89kzyaeF/6i/suuFxYvfvjV69fO0ZjRoZfyl5O/bXyl/erA6xmv28bCxh6+yXgzMV70VvvtwXfcdx3vo98PT+R8IH8o/2j5sfVT0Kf7kxmTk/8EA5jz/GMzLdsAAAAgY0hSTQAAeiUAAICDAAD5/wAAgOkAAHUwAADqYAAAOpgAABdvkl/FRgAAA5xJREFUeNp8lMtrXGUAxc/33e++Z+ZO5pHJZJK0STSx6UMqYrFYqF1I42NRFxVK3dhF3QiCLkQXbrpzoeBOi0iRbHQhWqEIohJRtAmW1tKaZiZSJ4+ZZObOnZl779zHdz8XkYJIe/6Aw+Fwfoc8e3IR95MggBpJCBk/vJ7rPy3HUlONaT89UDa1kC0FMudEAAwPkJQQyJzmlqYabw3UKGO6ahM0UdtGWDlQL3w8ZpuX+mr0XxMCQNxLIZD2FFydbL7TV2Jj/tres6HCB5QT9eZY69yfZfulim1epkCb3osdS5oSSWU1liwjZLTQM1DP9V/csrxDR6qlCwM1bvly7Ppq3N6/nv+IcRKsljpn9JCBCSJg+Qpqhd752oj9nDpQtghBONzVq77Op7K+Uiv29V93Uj6oIOBUgHHijNupK9Wic3q6aX1OjZChZQYnboy1To2101+XHePKiGMs3y7Zj0oJZRqXjWqh83wqkEEAUAFwKvStjP/4kKutEMBlRJDS8p7t1yda6cWDdwsfemoEPWTIeMrt1RHnVStUozsjzgtlJ3WLcepkPMX+fc/Oa7YRzMzfmDgzkHmfXa+0zxNB4sfuFi+0UgMAgKdwDPf079fy3WMRFftKrsl+e2jzDRZLAhCinQqmn1wrvQdgg1MBaoRsiyVEhIyb9/YBAZZQUAE3YIl1sFHcLPqmXwgML8t1cbQ2+mmup37jqhGIAOhsw1pIiKArw51Xij0dWizB8hXUs/0Tns6fKnf12rcPr031lCDnqIN82/BKm5a7TwCMgOzuaW7qXEgF1W9W2qclQHPUeDKS+eS1idbZyY7V2cj2CiVb/+7A34UPTF9etlx15Xpl52UjkAc5T/sjlhIwV4kxahtfekp2ej3XP55wiSdypI130k1XDSkLSXX/Rv6Trh5yJmg772h3xtuZY7VS99S4nfoKMjwyf3IRBIAZMCQEOpcSE4JIXBJzP83U336iWn5XD9nPAeMgAIgAtIiN/jhX/2xmc+jisGMsUPJvma4aw1diP5KSnVhKGlpIfzAHytZf+d4zWiTtIkEEjFBGM+MfjYlAypfXEiJA/0cugIQIcCrE3m3ri3quf7yvRofTA1nKuhpimjyyNNl4c3ZzaCHrqb9EjN+fYl/hqNjm5UbWnV+cq78/1DVWFU7c9Zx7aKKdujrdtC7aZgAiCMiD/kRKCADMbmf8IwPG9UiOs5RTMtW0LiVUbHC6y/w/AwBZTrZC1ec/kgAAAABJRU5ErkJggg==');width:17px;height:17px;opacity:0.8;margin:-5px 0px 0 10px}.modal-content h2{font-family:"Oxygen","Helvetica Neue",Helvetica,Arial,sans-serif;letter-spacing:0px;font-size:14px;margin:20px 0;line-height:normal}.modal-content .dataTable,.modal-content .table{font-size:10px;font-family:"Oxygen Bold","Helvetica Neue",Helvetica,Arial,sans-serif}.modal-content hr{margin:5px 0 15px 0;border-color:#63676a}.modal-content .pf-wizard-navigation{margin:0}.modal-content .pf-wizard-navigation li:not(:last-child):before{border-top:1px solid #63676a;content:"";display:block;font-size:0;overflow:hidden;position:relative;top:12px;left:71px;right:1px;width:100%}.modal-content .pf-wizard-navigation li.finished:before{-moz-border-image:-moz-linear-gradient(left, #375959,#375959) 1 1%;-moz-border-image:linear-gradient(to right, #375959,#375959) 1 1%;-o-border-image:linear-gradient(to right, #375959,#375959) 1 1%;-webkit-border-image:-webkit-linear-gradient(left, #375959,#375959) 1 1%;-webkit-border-image:linear-gradient(to right, #375959,#375959) 1 1%;border-image:-moz-linear-gradient(left, #375959,#375959) 1 1%;border-image:-webkit-linear-gradient(left, #375959,#375959) 1 1%;border-image:linear-gradient(to right, #375959,#375959) 1 1%;border-bottom:0}.modal-content .pf-wizard-navigation li.active:before{-moz-border-image:-moz-linear-gradient(left, #4f9e4f,#63676a) 1 1%;-moz-border-image:linear-gradient(to right, #4f9e4f,#63676a) 1 1%;-o-border-image:linear-gradient(to right, #4f9e4f,#63676a) 1 1%;-webkit-border-image:-webkit-linear-gradient(left, #4f9e4f,#63676a) 1 1%;-webkit-border-image:linear-gradient(to right, #4f9e4f,#63676a) 1 1%;border-image:-moz-linear-gradient(left, #4f9e4f,#63676a) 1 1%;border-image:-webkit-linear-gradient(left, #4f9e4f,#63676a) 1 1%;border-image:linear-gradient(to right, #4f9e4f,#63676a) 1 1%;border-bottom:0}.modal-content .pf-wizard-navigation li>h6{color:#63676a;font-size:11px;margin:5px}.modal-content .pf-wizard-navigation li a:hover+h6{color:#adadad}.modal-content .pf-wizard-navigation li.active a:not(.btn-danger)+h6{color:#adadad}.modal-content .pf-dialog-finish-button,.modal-content .pf-dialog-prev-button{display:none}#pf-settings-dialog .form-group .btn-sm,#pf-settings-dialog .form-group .btn-group-sm>.btn,#pf-settings-dialog .form-group button.DTTT_button,#pf-settings-dialog .form-group div.DTTT_button,#pf-settings-dialog .form-group a.DTTT_button{padding:4px 7px 3px}#pf-settings-dialog .pf-dialog-api-row:not(:nth-last-child(3)) .pf-dialog-clone-button{display:none}#pf-settings-dialog .pf-dialog-api-row:nth-child(2):nth-last-child(3) .pf-dialog-delete-button{display:none}#pf-settings-dialog #pf-dialog-captcha-wrapper{margin:0;padding:3px 0}#pf-settings-dialog .pf-dynamic-area{display:inline-block;margin:10px 5px 20px 5px;padding:10px 10px 5px 10px;-moz-border-radius:10px;-webkit-border-radius:10px;border-radius:10px}#pf-settings-dialog .pf-dynamic-area .pf-dialog-image-wrapper{opacity:0;width:128px;border:2px solid #63676a;-moz-border-radius:8px;-webkit-border-radius:8px;border-radius:8px;-webkit-transition:border-color 0.2s ease-out,box-shadow 0.2s ease-out;transition:border-color 0.2s ease-out,box-shadow 0.2s ease-out;-moz-transform:translate3d(0, 0, 0);-ms-transform:translate3d(0, 0, 0);-webkit-transform:translate3d(0, 0, 0);transform:translate3d(0, 0, 0);will-change:border-color, transition;overflow:hidden;cursor:pointer;display:inline-block;background-color:#2b2b2b;box-sizing:content-box}#pf-settings-dialog .pf-dynamic-area .pf-dialog-image-wrapper:before{content:"\f005";font-family:FontAwesome;position:absolute;z-index:10;left:6px;top:4px;color:#adadad;-webkit-transition:color 0.2s ease-out;transition:color 0.2s ease-out}#pf-settings-dialog .pf-dynamic-area .pf-dialog-image-wrapper.pf-dialog-character-main{border-color:#c2760c}#pf-settings-dialog .pf-dynamic-area .pf-dialog-image-wrapper.pf-dialog-character-main:hover{border-color:#e28a0d}#pf-settings-dialog .pf-dynamic-area .pf-dialog-image-wrapper.pf-dialog-character-main:before{color:#e28a0d}#pf-settings-dialog .pf-dynamic-area .pf-dialog-image-wrapper:hover{border-color:#375959;-webkit-box-shadow:0 4px 10px rgba(0,0,0,0.4);box-shadow:0 4px 10px rgba(0,0,0,0.4)}#pf-settings-dialog .pf-dynamic-area .pf-dialog-image-wrapper:hover .pf-dialog-character-name{color:#568a89}#pf-settings-dialog .pf-dynamic-area .pf-dialog-image-wrapper:hover .pf-dialog-character-image{-webkit-filter:grayscale(50%);filter:grayscale(50%)}#pf-settings-dialog .pf-dynamic-area .pf-dialog-image-wrapper:hover:before{color:#e28a0d}#pf-settings-dialog .pf-dynamic-area .pf-dialog-image-wrapper .pf-dialog-image{overflow:hidden;width:128px;height:128px;position:relative}#pf-settings-dialog .pf-dynamic-area .pf-dialog-image-wrapper .pf-dialog-image .pf-dialog-character-info{position:absolute;top:0;left:0;width:0;height:100%;background:rgba(60,63,65,0.8);overflow:hidden;will-change:width, transition;padding:10px 0}#pf-settings-dialog .pf-dynamic-area .pf-dialog-image-wrapper .pf-dialog-image .pf-dialog-character-info .pf-dialog-character-info-text{line-height:25px}#pf-settings-dialog .pf-dynamic-area .pf-dialog-image-wrapper .pf-dialog-character-name{font-size:13px;line-height:30px;border-top:1px solid #313335;-webkit-transition:color 0.2s ease-out;transition:color 0.2s ease-out}#pf-settings-dialog .pf-dynamic-area .pf-dialog-image-wrapper .pf-dialog-character-image{-webkit-transition:all 0.3s ease-out;transition:all 0.3s ease-out;-webkit-filter:grayscale(0%);filter:grayscale(0%)}#pf-map-dialog #pf-map-dialog-user-select,#pf-map-dialog #pf-map-dialog-corporation-select,#pf-map-dialog #pf-map-dialog-alliance-select{width:300px}#pf-manual-scrollspy{position:relative;height:500px;overflow:auto}.pf-system-dialog-select{width:270px !important}h2.pf-dynamic-area,h4.pf-dynamic-area{min-height:0}.pf-credits-dialog .pf-credits-logo-background{overflow:visible;background:url("../img/logo_bg.png");padding:20px;margin-bottom:20px}.pf-credits-dialog #pf-logo-container{width:355px;height:366px;margin:0 auto}.pf-log-graph{height:100px;width:100%}.pf-animation-slide-in{-moz-animation-duration:1.2s;-webkit-animation-duration:1.2s;-moz-animation-name:pfSlideIn;-webkit-animation-name:pfSlideIn;position:relative}@-webkit-keyframes pfSlideIn{from{opacity:0;top:-20px}to{opacity:1;top:0px}}@-moz-keyframes pfSlideIn{from{opacity:0;top:-20px}to{opacity:1;top:0px}}@-ms-keyframes pfSlideIn{from{opacity:0;top:-20px}to{opacity:1;top:0px}}@keyframes pfSlideIn{from{opacity:0;top:-20px}to{opacity:1;top:0px}}.pf-animation-pulse-success{-webkit-animation:pulseBackgroundSuccess 3s 1;animation:pulseBackgroundSuccess 3s 1;-webkit-animation-timing-function:cubic-bezier(0.53, -0.03, 0.68, 0.38);animation-timing-function:cubic-bezier(0.53, -0.03, 0.68, 0.38)}.pf-animation-pulse-success .sorting_1{-webkit-animation:pulseBackgroundSuccessActive 3s 1;animation:pulseBackgroundSuccessActive 3s 1;-webkit-animation-timing-function:cubic-bezier(0.53, -0.03, 0.68, 0.38);animation-timing-function:cubic-bezier(0.53, -0.03, 0.68, 0.38)}.pf-animation-pulse-warning{-webkit-animation:pulseBackgroundWarning 3s 1;animation:pulseBackgroundWarning 3s 1;-webkit-animation-timing-function:cubic-bezier(0.53, -0.03, 0.68, 0.38);animation-timing-function:cubic-bezier(0.53, -0.03, 0.68, 0.38)}.pf-animation-pulse-warning .sorting_1{-webkit-animation:pulseBackgroundWarningActive 3s 1;animation:pulseBackgroundWarningActive 3s 1;-webkit-animation-timing-function:cubic-bezier(0.53, -0.03, 0.68, 0.38);animation-timing-function:cubic-bezier(0.53, -0.03, 0.68, 0.38)}@-webkit-keyframes pulseBackgroundSuccess{5%{background-color:#5cb85c;color:#313335}}@-moz-keyframes pulseBackgroundSuccess{5%{background-color:#5cb85c;color:#313335}}@-ms-keyframes pulseBackgroundSuccess{5%{background-color:#5cb85c;color:#313335}}@keyframes pulseBackgroundSuccess{5%{background-color:#5cb85c;color:#313335}}@-webkit-keyframes pulseBackgroundSuccessActive{5%{background-color:#4cae4c;color:#313335}}@-moz-keyframes pulseBackgroundSuccessActive{5%{background-color:#4cae4c;color:#313335}}@-ms-keyframes pulseBackgroundSuccessActive{5%{background-color:#4cae4c;color:#313335}}@keyframes pulseBackgroundSuccessActive{5%{background-color:#4cae4c;color:#313335}}@-webkit-keyframes pulseBackgroundWarning{5%{background-color:#e28a0d;color:#2b2b2b}}@-moz-keyframes pulseBackgroundWarning{5%{background-color:#e28a0d;color:#2b2b2b}}@-ms-keyframes pulseBackgroundWarning{5%{background-color:#e28a0d;color:#2b2b2b}}@keyframes pulseBackgroundWarning{5%{background-color:#e28a0d;color:#2b2b2b}}@-webkit-keyframes pulseBackgroundWarningActive{5%{background-color:#ca7b0c;color:#2b2b2b}}@-moz-keyframes pulseBackgroundWarningActive{5%{background-color:#ca7b0c;color:#2b2b2b}}@-ms-keyframes pulseBackgroundWarningActive{5%{background-color:#ca7b0c;color:#2b2b2b}}@keyframes pulseBackgroundWarningActive{5%{background-color:#ca7b0c;color:#2b2b2b}}.ribbon-wrapper{width:72px;height:88px;overflow:hidden;position:absolute;top:-3px;right:7px}.ribbon{font:bold 12px "Oxygen Bold","Helvetica Neue",Helvetica,Arial,sans-serif;color:#2b2b2b;text-align:center;text-shadow:rgba(255,255,255,0.2) 0px 1px 0px;position:relative;padding:3px 0;left:-4px;top:16px;width:99px;-webkit-box-shadow:2px 3px 3px rgba(0,0,0,0.2);box-shadow:2px 3px 3px rgba(0,0,0,0.2);-moz-transform:rotate(45deg);-ms-transform:rotate(45deg);-webkit-transform:rotate(45deg);transform:rotate(45deg)}.ribbon:before,.ribbon:after{content:"";border-left:3px solid transparent;border-right:3px solid transparent;position:absolute;bottom:-3px}.ribbon.ribbon-green{background-color:#5cb85c;background-image:url('data:image/svg+xml;base64,PD94bWwgdmVyc2lvbj0iMS4wIiBlbmNvZGluZz0idXRmLTgiPz4gPHN2ZyB2ZXJzaW9uPSIxLjEiIHhtbG5zPSJodHRwOi8vd3d3LnczLm9yZy8yMDAwL3N2ZyI+PGRlZnM+PGxpbmVhckdyYWRpZW50IGlkPSJncmFkIiBncmFkaWVudFVuaXRzPSJvYmplY3RCb3VuZGluZ0JveCIgeDE9IjAuNSIgeTE9IjAuMCIgeDI9IjAuNSIgeTI9IjEuMCI+PHN0b3Agb2Zmc2V0PSIwJSIgc3RvcC1jb2xvcj0iIzUxYjM1MSIvPjxzdG9wIG9mZnNldD0iMTAwJSIgc3RvcC1jb2xvcj0iIzRhOTQ0YSIvPjwvbGluZWFyR3JhZGllbnQ+PC9kZWZzPjxyZWN0IHg9IjAiIHk9IjAiIHdpZHRoPSIxMDAlIiBoZWlnaHQ9IjEwMCUiIGZpbGw9InVybCgjZ3JhZCkiIC8+PC9zdmc+IA==');background-size:100%;background-image:-webkit-gradient(linear, 50% 0%, 50% 100%, color-stop(0%, #51b351),color-stop(100%, #4a944a));background-image:-moz-linear-gradient(top, #51b351,#4a944a);background-image:-webkit-linear-gradient(top, #51b351,#4a944a);background-image:linear-gradient(to bottom, #51b351,#4a944a)}.ribbon.ribbon-green:before,.ribbon.ribbon-green:after{border-top:3px solid #285028}.ribbon.ribbon-orange{background-color:#e28a0d;background-image:url('data:image/svg+xml;base64,PD94bWwgdmVyc2lvbj0iMS4wIiBlbmNvZGluZz0idXRmLTgiPz4gPHN2ZyB2ZXJzaW9uPSIxLjEiIHhtbG5zPSJodHRwOi8vd3d3LnczLm9yZy8yMDAwL3N2ZyI+PGRlZnM+PGxpbmVhckdyYWRpZW50IGlkPSJncmFkIiBncmFkaWVudFVuaXRzPSJvYmplY3RCb3VuZGluZ0JveCIgeDE9IjAuNSIgeTE9IjAuMCIgeDI9IjAuNSIgeTI9IjEuMCI+PHN0b3Agb2Zmc2V0PSIwJSIgc3RvcC1jb2xvcj0iI2Q0ODEwYyIvPjxzdG9wIG9mZnNldD0iMTAwJSIgc3RvcC1jb2xvcj0iI2I0NmQwYiIvPjwvbGluZWFyR3JhZGllbnQ+PC9kZWZzPjxyZWN0IHg9IjAiIHk9IjAiIHdpZHRoPSIxMDAlIiBoZWlnaHQ9IjEwMCUiIGZpbGw9InVybCgjZ3JhZCkiIC8+PC9zdmc+IA==');background-size:100%;background-image:-webkit-gradient(linear, 50% 0%, 50% 100%, color-stop(0%, #d4810c),color-stop(100%, #b46d0b));background-image:-moz-linear-gradient(top, #d4810c,#b46d0b);background-image:-webkit-linear-gradient(top, #d4810c,#b46d0b);background-image:linear-gradient(to bottom, #d4810c,#b46d0b)}.ribbon.ribbon-orange:before,.ribbon.ribbon-orange:after{border-top:3px solid #6c4107}.ribbon:before{left:0}.ribbon:after{right:0} diff --git a/public/js/v0.0.15/app/landingpage.js b/public/js/v0.0.15/app/landingpage.js deleted file mode 100644 index 3ff34375..00000000 --- a/public/js/v0.0.15/app/landingpage.js +++ /dev/null @@ -1,15 +0,0 @@ -!function(t,e){"object"==typeof module&&"object"==typeof module.exports?module.exports=t.document?e(t,!0):function(t){if(!t.document)throw new Error("jQuery requires a window with a document");return e(t)}:e(t)}("undefined"!=typeof window?window:this,function(t,e){function i(t){var e="length"in t&&t.length,i=at.type(t);return"function"===i||at.isWindow(t)?!1:1===t.nodeType&&e?!0:"array"===i||0===e||"number"==typeof e&&e>0&&e-1 in t}function n(t,e,i){if(at.isFunction(e))return at.grep(t,function(t,n){return!!e.call(t,n,t)!==i});if(e.nodeType)return at.grep(t,function(t){return t===e!==i});if("string"==typeof e){if(pt.test(e))return at.filter(e,t,i);e=at.filter(e,t)}return at.grep(t,function(t){return at.inArray(t,e)>=0!==i})}function a(t,e){do t=t[e];while(t&&1!==t.nodeType);return t}function o(t){var e=wt[t]={};return at.each(t.match(bt)||[],function(t,i){e[i]=!0}),e}function s(){ft.addEventListener?(ft.removeEventListener("DOMContentLoaded",r,!1),t.removeEventListener("load",r,!1)):(ft.detachEvent("onreadystatechange",r),t.detachEvent("onload",r))}function r(){(ft.addEventListener||"load"===event.type||"complete"===ft.readyState)&&(s(),at.ready())}function l(t,e,i){if(void 0===i&&1===t.nodeType){var n="data-"+e.replace(_t,"-$1").toLowerCase();if(i=t.getAttribute(n),"string"==typeof i){try{i="true"===i?!0:"false"===i?!1:"null"===i?null:+i+""===i?+i:Tt.test(i)?at.parseJSON(i):i}catch(a){}at.data(t,e,i)}else i=void 0}return i}function c(t){var e;for(e in t)if(("data"!==e||!at.isEmptyObject(t[e]))&&"toJSON"!==e)return!1;return!0}function u(t,e,i,n){if(at.acceptData(t)){var a,o,s=at.expando,r=t.nodeType,l=r?at.cache:t,c=r?t[s]:t[s]&&s;if(c&&l[c]&&(n||l[c].data)||void 0!==i||"string"!=typeof e)return c||(c=r?t[s]=X.pop()||at.guid++:s),l[c]||(l[c]=r?{}:{toJSON:at.noop}),("object"==typeof e||"function"==typeof e)&&(n?l[c]=at.extend(l[c],e):l[c].data=at.extend(l[c].data,e)),o=l[c],n||(o.data||(o.data={}),o=o.data),void 0!==i&&(o[at.camelCase(e)]=i),"string"==typeof e?(a=o[e],null==a&&(a=o[at.camelCase(e)])):a=o,a}}function d(t,e,i){if(at.acceptData(t)){var n,a,o=t.nodeType,s=o?at.cache:t,r=o?t[at.expando]:at.expando;if(s[r]){if(e&&(n=i?s[r]:s[r].data)){at.isArray(e)?e=e.concat(at.map(e,at.camelCase)):e in n?e=[e]:(e=at.camelCase(e),e=e in n?[e]:e.split(" ")),a=e.length;for(;a--;)delete n[e[a]];if(i?!c(n):!at.isEmptyObject(n))return}(i||(delete s[r].data,c(s[r])))&&(o?at.cleanData([t],!0):it.deleteExpando||s!=s.window?delete s[r]:s[r]=null)}}}function p(){return!0}function h(){return!1}function f(){try{return ft.activeElement}catch(t){}}function m(t){var e=Lt.split("|"),i=t.createDocumentFragment();if(i.createElement)for(;e.length;)i.createElement(e.pop());return i}function g(t,e){var i,n,a=0,o=typeof t.getElementsByTagName!==St?t.getElementsByTagName(e||"*"):typeof t.querySelectorAll!==St?t.querySelectorAll(e||"*"):void 0;if(!o)for(o=[],i=t.childNodes||t;null!=(n=i[a]);a++)!e||at.nodeName(n,e)?o.push(n):at.merge(o,g(n,e));return void 0===e||e&&at.nodeName(t,e)?at.merge([t],o):o}function v(t){It.test(t.type)&&(t.defaultChecked=t.checked)}function y(t,e){return at.nodeName(t,"table")&&at.nodeName(11!==e.nodeType?e:e.firstChild,"tr")?t.getElementsByTagName("tbody")[0]||t.appendChild(t.ownerDocument.createElement("tbody")):t}function b(t){return t.type=(null!==at.find.attr(t,"type"))+"/"+t.type,t}function w(t){var e=Yt.exec(t.type);return e?t.type=e[1]:t.removeAttribute("type"),t}function C(t,e){for(var i,n=0;null!=(i=t[n]);n++)at._data(i,"globalEval",!e||at._data(e[n],"globalEval"))}function x(t,e){if(1===e.nodeType&&at.hasData(t)){var i,n,a,o=at._data(t),s=at._data(e,o),r=o.events;if(r){delete s.handle,s.events={};for(i in r)for(n=0,a=r[i].length;a>n;n++)at.event.add(e,i,r[i][n])}s.data&&(s.data=at.extend({},s.data))}}function S(t,e){var i,n,a;if(1===e.nodeType){if(i=e.nodeName.toLowerCase(),!it.noCloneEvent&&e[at.expando]){a=at._data(e);for(n in a.events)at.removeEvent(e,n,a.handle);e.removeAttribute(at.expando)}"script"===i&&e.text!==t.text?(b(e).text=t.text,w(e)):"object"===i?(e.parentNode&&(e.outerHTML=t.outerHTML),it.html5Clone&&t.innerHTML&&!at.trim(e.innerHTML)&&(e.innerHTML=t.innerHTML)):"input"===i&&It.test(t.type)?(e.defaultChecked=e.checked=t.checked,e.value!==t.value&&(e.value=t.value)):"option"===i?e.defaultSelected=e.selected=t.defaultSelected:("input"===i||"textarea"===i)&&(e.defaultValue=t.defaultValue)}}function T(e,i){var n,a=at(i.createElement(e)).appendTo(i.body),o=t.getDefaultComputedStyle&&(n=t.getDefaultComputedStyle(a[0]))?n.display:at.css(a[0],"display");return a.detach(),o}function _(t){var e=ft,i=Jt[t];return i||(i=T(t,e),"none"!==i&&i||(Zt=(Zt||at("